/* =================================================================
   MJCI BEAUTY CENTER — Système de design v4
   Institut de beauté · Abomey-Calavi, Bénin

   Direction : blanc dominant · rose profond · prune
   Le rose ne vient pas d'un nuancier « institut de beauté » : il est
   tiré du bain de pédicure aux agrumes (magenta franc), et la prune
   des ombres du bouquet de mariée. Pas de pastel — un rose qui a du
   corps, posé sur du blanc, avec la prune pour la gravité.

   Formes : arrondies. Boutons en pastille, photos aux angles doux —
   par écho aux perles et aux pétales du travail de l'institut.

   Typo : Fraunces (titres) · Karla (texte) · DM Mono (prix, données)

   Sommaire
     1. Jetons — primitives
     2. Jetons — rôles sémantiques
     3. Remise à zéro & base
     4. Typographie
     5. Primitives de mise en page
     6. Boutons & liens
     7. En-tête, pastille horaires, tiroir
     8. Ouverture
     9. Titres de section
    10. L'institut
    11. La carte (élément signature)
    12. Galerie
    13. Avis
    14. Rendez-vous & formulaire
    15. Pied
    16. WhatsApp flottant
    17. Mouvement
   ================================================================= */

/* ---------- 1. Jetons — primitives ---------- */
:root {
  /* Blancs & blush — le fond du site */
  --blanc:      #FFFFFF;
  --blush-50:   #FEF7F9;
  --blush-100:  #FCEDF2;
  --blush-200:  #F7DCE5;
  --blush-300:  #EFC2D2;

  /* Roses — l'accent, tiré du bain de pédicure */
  --rose-400:   #DE7BA5;
  --rose-500:   #C9427B;
  --rose-600:   #A82D62;
  --rose-700:   #8E2453;

  /* Prunes — l'encre et les bandes sombres */
  --prune-600:  #6B4A58;
  --prune-800:  #3D1226;
  --prune-900:  #2A0B19;

  /* Or — réservé aux étoiles de la note Google */
  --or:         #C79A3C;

  /* Échelle d'espacement */
  --e0: .25rem;  --e1: .5rem;   --e2: .75rem;  --e3: 1rem;
  --e4: 1.5rem;  --e5: 2rem;    --e6: 3rem;    --e7: 4.5rem;  --e8: 6.5rem;

  /* Rayons */
  --r1: 3px;  --r2: 8px;  --r3: 16px;  --r4: 26px;  --rond: 999px;

  /* Traits */
  --t1: 1px;  --t2: 1.5px;  --t3: 2px;

  /* Ombres — teintées rose, jamais grises */
  --ombre-1: 0 2px 8px -4px rgba(61, 18, 38, .12);
  --ombre-2: 0 14px 34px -22px rgba(168, 45, 98, .30);
  --ombre-3: 0 34px 70px -40px rgba(168, 45, 98, .38);

  /* Mouvement */
  --vite: .18s;  --moyen: .34s;  --lent: .62s;
  --ease:     cubic-bezier(.2, .65, .3, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);

  /* Plans */
  --z-nav: 60;  --z-flottant: 70;  --z-tiroir: 80;

  /* Familles */
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --texte:   "Karla", "Helvetica Neue", Arial, sans-serif;
  --mono:    "DM Mono", ui-monospace, SFMono-Regular, monospace;

  /* Mesure */
  --maxw: 1180px;
  --gutter: clamp(1.25rem, 5vw, 3.5rem);
}

/* ---------- 2. Jetons — rôles sémantiques ----------
   Les composants n'utilisent que ces rôles, jamais les primitives.
   Les bandes sombres redéfinissent les mêmes noms : un composant
   posé sur `.sur-prune` se réencre tout seul.                     */
:root {
  --fond:          var(--blanc);
  --surface:       var(--blanc);
  --surface-creux: var(--blush-100);

  --encre:         var(--prune-900);
  --encre-douce:   var(--prune-600);
  --encre-tenue:   #8C7480;

  --accent:        var(--rose-600);
  --accent-clair:  var(--rose-400);
  --accent-voile:  var(--blush-100);
  --sur-accent:    var(--blanc);

  --ligne:         var(--blush-200);
  --ligne-forte:   var(--blush-300);

  --focus:         var(--rose-600);
}

.sur-prune {
  --fond:          var(--prune-900);
  --surface:       var(--prune-800);
  --surface-creux: rgba(255, 255, 255, .05);

  --encre:         var(--blanc);
  --encre-douce:   var(--blush-200);
  --encre-tenue:   #B9909F;

  --accent:        var(--rose-400);
  --accent-clair:  var(--blush-300);
  --accent-voile:  rgba(222, 123, 165, .14);
  --sur-accent:    var(--prune-900);

  --ligne:         rgba(239, 194, 210, .22);
  --ligne-forte:   rgba(239, 194, 210, .38);

  --focus:         var(--blush-300);

  background: var(--fond);
  color: var(--encre);
}

.sur-blush { background: var(--blush-50); }

/* ---------- 3. Remise à zéro & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--texte);
  background: var(--fond);
  color: var(--encre);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }

:focus-visible {
  outline: var(--t3) solid var(--focus);
  outline-offset: 3px;
  border-radius: var(--r1);
}
::selection { background: var(--accent-voile); color: var(--rose-700); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* ---------- 4. Typographie ---------- */
h1, h2, h3, .display {
  font-family: var(--display);
  font-variation-settings: "SOFT" 46, "WONK" 1, "opsz" 120;
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -.02em;
  color: var(--encre);
  text-wrap: balance;
}

.t-xl { font-size: clamp(2.75rem, 8vw, 5.5rem); }
.t-lg { font-size: clamp(2.05rem, 5vw, 3.4rem); }
.t-md { font-size: clamp(1.35rem, 2.6vw, 1.9rem); letter-spacing: -.012em; }
.t-sm {
  font-size: 1.08rem;
  font-variation-settings: "SOFT" 46, "WONK" 0, "opsz" 30;
  letter-spacing: -.004em;
}

/* L'italique rose : le seul endroit où le titre change de voix */
.voix {
  display: block;
  font-variation-settings: "SOFT" 70, "WONK" 1, "opsz" 144;
  font-weight: 300;
  font-style: italic;
  color: var(--accent);
  letter-spacing: -.01em;
}

.mention {
  display: inline-block;
  font-family: var(--mono);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
}

.chapo {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.62;
  color: var(--encre-douce);
  max-width: 54ch;
}

.etiquette {
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--encre-tenue);
}

.etoiles { color: var(--or); letter-spacing: .1em; }

/* ---------- 5. Primitives de mise en page ---------- */
.enveloppe {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.bloc { padding-block: clamp(var(--e7), 10vw, var(--e8)); }


/* ---------- 6. Boutons & liens ---------- */
.bouton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--e1);
  padding: .95rem 1.7rem;
  border-radius: var(--rond);
  border: var(--t2) solid transparent;
  font-family: var(--mono);
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background var(--moyen) var(--ease),
              color var(--moyen) var(--ease),
              border-color var(--moyen) var(--ease),
              box-shadow var(--moyen) var(--ease),
              transform var(--vite) var(--ease);
}
.bouton svg { width: 17px; height: 17px; flex: none; }
.bouton:active { transform: translateY(1px); }

.bouton-plein {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--sur-accent);
  box-shadow: var(--ombre-2);
}
.bouton-plein:hover {
  background: var(--rose-700);
  border-color: var(--rose-700);
  box-shadow: var(--ombre-3);
}
.sur-prune .bouton-plein:hover { background: var(--blush-300); border-color: var(--blush-300); }

.bouton-contour {
  border-color: var(--ligne-forte);
  color: var(--accent);
}
.bouton-contour:hover { border-color: var(--accent); background: var(--accent-voile); }

.bouton-discret { color: var(--encre); border-color: transparent; padding-inline: var(--e2); }
.bouton-discret:hover { color: var(--accent); }

.bouton-large { width: 100%; }
.bouton-petit { padding: .68rem 1.15rem; font-size: .68rem; }

/* ---------- 7. En-tête ---------- */
.entete {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  background: rgba(255, 255, 255, .88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: var(--t1) solid var(--ligne);
}
.entete .enveloppe {
  display: flex;
  align-items: center;
  gap: clamp(var(--e3), 3vw, var(--e5));
  min-height: 78px;
}

.marque { display: flex; align-items: center; gap: var(--e2); flex: none; }
.marque img { width: 36px; height: 36px; border-radius: var(--rond); }
.marque-nom {
  display: block;
  font-family: var(--display);
  font-variation-settings: "SOFT" 46, "WONK" 1, "opsz" 40;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--encre);
  line-height: 1;
}
.marque-sous {
  display: block;
  font-family: var(--mono);
  font-size: .57rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: .28rem;
}

.liens-nav { display: none; gap: var(--e4); margin-left: auto; }
.liens-nav a {
  position: relative;
  font-size: .93rem;
  color: var(--encre-douce);
  padding-block: .35rem;
  transition: color var(--vite) var(--ease);
}
.liens-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: var(--t2);
  border-radius: var(--rond);
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--moyen) var(--ease-out);
}
.liens-nav a:hover { color: var(--accent); }
.liens-nav a:hover::after { transform: scaleX(1); }

.actions-nav { display: flex; align-items: center; gap: var(--e2); margin-left: auto; }
.liens-nav + .actions-nav { margin-left: 0; }

/* Pastille ouvert / fermé — à l'heure du Bénin */
.pastille {
  display: none;
  align-items: center;
  gap: var(--e1);
  padding: .42rem .85rem;
  border-radius: var(--rond);
  background: var(--surface-creux);
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .06em;
  color: var(--encre-douce);
  white-space: nowrap;
}
.pastille .point {
  width: 7px; height: 7px;
  border-radius: var(--rond);
  background: var(--encre-tenue);
  flex: none;
}
.pastille[data-etat="ouvert"] .point {
  background: #17A34A;
  box-shadow: 0 0 0 3px rgba(23, 163, 74, .16);
}
.pastille[data-etat="ferme"] .point { background: var(--accent-clair); }

.bascule { display: inline-flex; padding: var(--e1); color: var(--encre); border-radius: var(--rond); }
.bascule svg { width: 24px; height: 24px; }

@media (min-width: 940px) {
  .liens-nav { display: flex; }
  .pastille { display: inline-flex; }
  .bascule { display: none; }
}

/* Tiroir mobile */
.tiroir {
  position: fixed;
  inset: 0;
  z-index: var(--z-tiroir);
  visibility: hidden;
  opacity: 0;
  transition: opacity var(--moyen) var(--ease), visibility var(--moyen) var(--ease);
}
.tiroir[data-ouvert] { visibility: visible; opacity: 1; }

.tiroir-voile { position: absolute; inset: 0; background: rgba(42, 11, 25, .48); }

.tiroir-panneau {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(350px, 88vw);
  background: var(--blanc);
  padding: var(--e4) var(--gutter) var(--e6);
  display: flex;
  flex-direction: column;
  gap: var(--e5);
  overflow-y: auto;
  box-shadow: var(--ombre-3);
  transform: translateX(100%);
  transition: transform var(--moyen) var(--ease-out);
}
.tiroir[data-ouvert] .tiroir-panneau { transform: none; }

.tiroir-haut { display: flex; align-items: center; justify-content: space-between; }
.tiroir-fermer { padding: var(--e0); color: var(--encre); border-radius: var(--rond); }
.tiroir-fermer svg { width: 24px; height: 24px; }

.tiroir-liens { display: flex; flex-direction: column; }
.tiroir-liens a {
  font-family: var(--display);
  font-variation-settings: "SOFT" 46, "WONK" 1, "opsz" 40;
  font-size: 1.55rem;
  color: var(--encre);
  padding-block: .85rem;
  border-bottom: var(--t1) solid var(--ligne);
  transition: color var(--vite) var(--ease);
}
.tiroir-liens a:hover { color: var(--accent); }
.tiroir-actions { display: flex; flex-direction: column; gap: var(--e2); margin-top: auto; }

/* ---------- 8. Ouverture ---------- */
.ouverture { position: relative; background: var(--fond); overflow: hidden; }
.ouverture::before {
  content: "";
  position: absolute;
  top: -30%; right: -12%;
  width: 62vw; height: 62vw;
  max-width: 780px; max-height: 780px;
  border-radius: var(--rond);
  background: radial-gradient(circle, var(--blush-100), transparent 68%);
  pointer-events: none;
}
.ouverture .enveloppe {
  position: relative;
  display: grid;
  gap: clamp(var(--e6), 5vw, var(--e7));
  padding-block: clamp(var(--e6), 8vw, var(--e8));
}

.ouverture-texte > * + * { margin-top: var(--e4); }
.ouverture h1 { max-width: 15ch; }

.ouverture-actions { display: flex; flex-wrap: wrap; gap: var(--e2); }

.faits {
  display: flex;
  flex-wrap: wrap;
  gap: var(--e1) var(--e5);
  padding-top: var(--e4);
  border-top: var(--t1) solid var(--ligne);
  font-family: var(--mono);
  font-size: .75rem;
  letter-spacing: .05em;
  color: var(--encre-douce);
}
.faits b { color: var(--accent); font-weight: 500; }

/* Le cliché d'ouverture */
.ouverture-photo { position: relative; isolation: isolate; }
.ouverture-photo figure {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: var(--r4);
  aspect-ratio: 4 / 5;
  box-shadow: var(--ombre-3);
}
.ouverture-photo img { width: 100%; height: 100%; object-fit: cover; }
/* Cadre décalé : posé derrière le cliché, mais au-dessus du fond de section.
   Un z-index négatif le ferait passer sous le fond et disparaître. */
.ouverture-photo::after {
  content: "";
  position: absolute;
  inset: 20px -20px -20px 20px;
  border: var(--t2) solid var(--ligne-forte);
  border-radius: var(--r4);
  z-index: 0;
}
.ouverture-legende { margin-top: var(--e4); }

/* Vignette de la note, posée sur le cliché */
.jeton-note {
  position: absolute;
  z-index: 2; /* au-dessus du cliché, qui est en z-index 1 */
  left: calc(var(--e4) * -1);
  bottom: var(--e5);
  display: flex;
  align-items: center;
  gap: var(--e2);
  padding: var(--e2) var(--e3);
  border-radius: var(--rond);
  background: var(--blanc);
  box-shadow: var(--ombre-3);
}
.jeton-note .valeur {
  font-family: var(--display);
  font-variation-settings: "SOFT" 46, "WONK" 1, "opsz" 40;
  font-size: 1.35rem;
  line-height: 1;
}
.jeton-note small {
  display: block;
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .08em;
  color: var(--encre-tenue);
}
/* Sur petit écran, la vignette rentre dans le cliché :
   en débord elle sortirait du cadre de l'écran. */
@media (max-width: 640px) {
  .jeton-note { left: var(--e3); bottom: var(--e3); }
}

@media (min-width: 940px) {
  .ouverture .enveloppe {
    grid-template-columns: 1.02fr .98fr;
    align-items: center;
    gap: clamp(var(--e6), 6vw, 5.5rem);
  }
  .ouverture-photo figure { aspect-ratio: 3 / 4; }
}

/* ---------- 9. Titres de section ---------- */
.tete { max-width: 62ch; }
.tete > * + * { margin-top: var(--e3); }
.tete .t-lg { margin-top: var(--e2); }

/* ---------- 10. L'institut ---------- */
.institut { display: grid; gap: clamp(var(--e6), 6vw, var(--e7)); align-items: center; }

.institut-images { display: grid; grid-template-columns: 1fr 1fr; gap: var(--e2); }
.institut-images figure { overflow: hidden; border-radius: var(--r3); background: var(--surface-creux); }
.institut-images img { width: 100%; height: 100%; object-fit: cover; }
.institut-images .grande { grid-column: 1 / -1; aspect-ratio: 16 / 10; border-radius: var(--r4); }
.institut-images .petite { aspect-ratio: 1 / 1; }

.institut-texte > * + * { margin-top: var(--e3); }

.points { display: grid; gap: var(--e4); margin-top: var(--e5); }
.points li { display: grid; grid-template-columns: auto 1fr; gap: var(--e3); align-items: start; }
.points .num {
  display: grid;
  place-items: center;
  width: 2.4rem; height: 2.4rem;
  border-radius: var(--rond);
  background: var(--accent-voile);
  color: var(--accent);
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .04em;
}
.points strong { display: block; font-weight: 700; margin-bottom: .15rem; }
.points p { color: var(--encre-douce); font-size: .98rem; }

@media (min-width: 940px) { .institut { grid-template-columns: .95fr 1.05fr; } }

/* ---------- 11. La carte — élément signature ---------- */
.carte-liste { margin-top: clamp(var(--e5), 5vw, var(--e6)); border-top: var(--t1) solid var(--ligne); }

.soin { border-bottom: var(--t1) solid var(--ligne); }

.soin-tete {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: baseline;
  gap: var(--e1) var(--e2);
  width: 100%;
  text-align: left;
  padding: var(--e4) var(--e2);
  border-radius: var(--r2);
  transition: background var(--moyen) var(--ease);
}
.soin-tete:hover { background: var(--blush-50); }
.soin[data-ouvert] .soin-tete { background: var(--blush-50); }

.soin-nom {
  font-family: var(--display);
  font-variation-settings: "SOFT" 46, "WONK" 1, "opsz" 60;
  font-size: clamp(1.2rem, 2.4vw, 1.72rem);
  font-weight: 500;
  color: var(--encre);
  transition: color var(--vite) var(--ease);
}
.soin-tete:hover .soin-nom, .soin[data-ouvert] .soin-nom { color: var(--accent); }

/* Les pointillés de conduite — comme sur une carte imprimée */
.soin-conduite {
  border-bottom: var(--t2) dotted var(--ligne-forte);
  transform: translateY(-.35rem);
  min-width: 1.5rem;
}

.soin-prix {
  font-family: var(--mono);
  font-size: .95rem;
  color: var(--accent);
  white-space: nowrap;
}
.soin-prix .des {
  font-size: .66rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--encre-tenue);
  margin-right: .35rem;
}

.soin-plus {
  position: relative;
  width: 26px; height: 26px;
  flex: none;
  align-self: center;
  border-radius: var(--rond);
  background: var(--accent-voile);
  transition: background var(--moyen) var(--ease);
}
.soin-tete:hover .soin-plus { background: var(--blush-200); }
.soin-plus::before, .soin-plus::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 11px; height: var(--t2);
  margin: calc(var(--t2) / -2) 0 0 -5.5px;
  border-radius: var(--rond);
  background: var(--accent);
  transition: transform var(--moyen) var(--ease);
}
.soin-plus::after { transform: rotate(90deg); }
.soin[data-ouvert] .soin-plus::after { transform: rotate(0deg); }

.soin-panneau {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--lent) var(--ease-out);
}
.soin[data-ouvert] .soin-panneau { grid-template-rows: 1fr; }
.soin-interieur { overflow: hidden; }

.soin-contenu {
  display: grid;
  gap: var(--e4);
  padding: 0 var(--e2) var(--e5);
  opacity: 0;
  transition: opacity var(--moyen) var(--ease) .12s;
}
.soin[data-ouvert] .soin-contenu { opacity: 1; }

.soin-contenu figure { overflow: hidden; border-radius: var(--r3); aspect-ratio: 16 / 10; }
.soin-contenu img { width: 100%; height: 100%; object-fit: cover; }
.soin-texte > * + * { margin-top: var(--e3); }
.soin-texte p { color: var(--encre-douce); }

@media (min-width: 760px) {
  .soin-contenu { grid-template-columns: 1fr 1.12fr; align-items: center; gap: var(--e6); }
}

/* Une mention légale se lit, elle ne crie pas : monospace mais pas de capitales. */
.carte-note {
  margin-top: var(--e5);
  font-family: var(--mono);
  font-size: .74rem;
  letter-spacing: .02em;
  text-transform: none;
  color: var(--encre-tenue);
}

/* ---------- 12. Galerie ---------- */
.galerie {
  margin-top: clamp(var(--e5), 5vw, var(--e6));
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(var(--e1), 1.6vw, var(--e3));
}
.galerie figure {
  position: relative;
  overflow: hidden;
  border-radius: var(--r3);
  background: var(--surface-creux);
  aspect-ratio: 4 / 5;
}
.galerie img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--lent) var(--ease); }
.galerie figure:hover img { transform: scale(1.05); }
.galerie figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: var(--e6) var(--e3) var(--e2);
  font-family: var(--mono);
  font-size: .66rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blanc);
  background: linear-gradient(to top, rgba(42, 11, 25, .82), transparent);
}
.galerie .vedette { grid-column: 1 / -1; aspect-ratio: 4 / 3; border-radius: var(--r4); }

@media (min-width: 760px) {
  .galerie { grid-template-columns: repeat(4, 1fr); }
  .galerie figure { aspect-ratio: 1 / 1; }
  /* La vedette couvre 2 colonnes et 2 rangées : un carré exact,
     sinon sa hauteur intrinsèque gonflerait les rangées. */
  .galerie .vedette { grid-column: span 2; grid-row: span 2; aspect-ratio: 1 / 1; }
}

/* ---------- 13. Avis ---------- */
.avis-tete { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: var(--e5); }

.note-google {
  display: flex;
  align-items: center;
  gap: var(--e2);
  padding: var(--e2) var(--e4);
  border-radius: var(--rond);
  background: var(--blanc);
  border: var(--t1) solid var(--ligne);
  box-shadow: var(--ombre-1);
}
.note-google svg { width: 26px; height: 26px; flex: none; }
.note-google .valeur {
  font-family: var(--display);
  font-variation-settings: "SOFT" 46, "WONK" 1, "opsz" 40;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
}
.note-google small { font-family: var(--mono); font-size: .66rem; color: var(--encre-tenue); }

.avis-grille { margin-top: clamp(var(--e5), 4vw, var(--e6)); display: grid; gap: var(--e3); }

.avis {
  display: flex;
  flex-direction: column;
  gap: var(--e3);
  padding: var(--e5) var(--e4);
  border-radius: var(--r3);
  background: var(--blanc);
  border: var(--t1) solid var(--ligne);
  transition: box-shadow var(--moyen) var(--ease), transform var(--moyen) var(--ease);
}
.avis:hover { box-shadow: var(--ombre-2); transform: translateY(-3px); }
.avis .guillemet {
  font-family: var(--display);
  font-size: 3rem;
  line-height: .55;
  color: var(--accent-clair);
  height: 1.1rem;
}
.avis figcaption {
  display: flex;
  align-items: center;
  gap: var(--e2);
  margin-top: auto;
  padding-top: var(--e3);
  border-top: var(--t1) solid var(--ligne);
}
.avis .initiale {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: var(--rond);
  background: var(--accent-voile);
  color: var(--accent);
  font-family: var(--display);
  font-size: 1.05rem;
  flex: none;
}
.avis .qui strong { display: block; font-size: .95rem; }
.avis .qui span { font-family: var(--mono); font-size: .66rem; letter-spacing: .06em; color: var(--encre-tenue); }

@media (min-width: 820px) { .avis-grille { grid-template-columns: repeat(3, 1fr); } }

/* ---------- 14. Rendez-vous & formulaire ---------- */
.rdv { display: grid; gap: clamp(var(--e6), 5vw, var(--e7)); margin-top: clamp(var(--e5), 5vw, var(--e6)); }

.coordonnees { display: grid; gap: var(--e2); align-content: start; }
.coord {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--e3);
  align-items: start;
  padding: var(--e4);
  border-radius: var(--r3);
  border: var(--t1) solid var(--ligne);
  transition: border-color var(--moyen) var(--ease), background var(--moyen) var(--ease);
}
a.coord:hover { border-color: var(--ligne-forte); background: var(--surface-creux); }
.coord .icone {
  display: grid; place-items: center;
  width: 40px; height: 40px;
  border-radius: var(--rond);
  background: var(--accent-voile);
  color: var(--accent);
}
.coord .icone svg { width: 19px; height: 19px; }
.coord h3 {
  font-family: var(--mono);
  font-variation-settings: normal;
  font-size: .66rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--encre-tenue);
  margin-bottom: .3rem;
}
.coord p { font-size: 1.02rem; }
.coord .sous { font-size: .85rem; color: var(--encre-tenue); margin-top: .1rem; }

.horaires { margin-top: var(--e1); padding: var(--e4); border-radius: var(--r3); border: var(--t1) solid var(--ligne); }
.horaires li {
  display: flex;
  justify-content: space-between;
  gap: var(--e3);
  padding: .55rem 0;
  font-size: .95rem;
  border-bottom: var(--t1) dotted var(--ligne);
}
.horaires li:last-child { border-bottom: 0; }
.horaires .jour { color: var(--encre-douce); }
.horaires .heure { font-family: var(--mono); font-size: .85rem; color: var(--accent); }
.horaires .surrdv { font-family: var(--mono); font-size: .76rem; color: var(--encre-tenue); }

.formulaire {
  padding: clamp(var(--e4), 4vw, var(--e6));
  border-radius: var(--r4);
  background: var(--surface);
  border: var(--t1) solid var(--ligne);
  align-self: start;
}
.formulaire > * + * { margin-top: var(--e4); }
.formulaire form > * + * { margin-top: var(--e4); }
.formulaire form > .note-forme { margin-top: var(--e2); }
.formulaire p.intro { color: var(--encre-douce); font-size: .95rem; }

.champs { display: grid; gap: var(--e3); }
.duo { display: grid; gap: var(--e3); }
@media (min-width: 520px) { .duo { grid-template-columns: 1fr 1fr; } }

.champ { display: grid; gap: var(--e0); }
.champ label {
  font-family: var(--mono);
  font-size: .64rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--encre-tenue);
}
.champ input, .champ select, .champ textarea {
  width: 100%;
  padding: .88rem 1rem;
  border-radius: var(--r2);
  background: var(--surface-creux);
  border: var(--t1) solid var(--ligne);
  color: var(--encre);
  font-size: 1rem;
  transition: border-color var(--vite) var(--ease), background var(--vite) var(--ease);
}
.champ input::placeholder, .champ textarea::placeholder { color: var(--encre-tenue); }
.champ input:focus, .champ select:focus, .champ textarea:focus {
  border-color: var(--accent);
  background: var(--blanc);
  outline: none;
}
.sur-prune .champ input:focus,
.sur-prune .champ select:focus,
.sur-prune .champ textarea:focus { background: rgba(255, 255, 255, .1); }
.champ select { appearance: none; }
.champ select option { background: var(--blanc); color: var(--prune-900); }
.champ textarea { resize: vertical; min-height: 94px; }

.note-forme {
  font-family: var(--mono);
  font-size: .66rem;
  letter-spacing: .04em;
  color: var(--encre-tenue);
  text-align: center;
}

@media (min-width: 940px) { .rdv { grid-template-columns: 1fr 1fr; } }

/* ---------- 15. Pied ---------- */
.pied { padding-block: clamp(var(--e6), 6vw, var(--e7)) 0; }
.pied-grille { display: grid; gap: var(--e6); }
.pied h4 {
  font-family: var(--mono);
  font-variation-settings: normal;
  font-size: .64rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--e3);
}
.pied-a-propos { margin-top: var(--e3); font-size: .93rem; max-width: 38ch; color: var(--encre-douce); }
.pied li + li { margin-top: var(--e1); }
.pied a { font-size: .93rem; color: var(--encre-douce); transition: color var(--vite) var(--ease); }
.pied a:hover { color: var(--accent); }
.pied-contact li { display: grid; grid-template-columns: auto 1fr; gap: var(--e2); align-items: start; font-size: .93rem; color: var(--encre-douce); }
.pied-contact svg { width: 16px; height: 16px; color: var(--accent); margin-top: .25rem; }

.reseaux { display: flex; gap: var(--e1); margin-top: var(--e4); }
.reseaux a {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: var(--rond);
  border: var(--t1) solid var(--ligne);
  color: var(--encre-douce);
  transition: border-color var(--vite) var(--ease), color var(--vite) var(--ease), background var(--vite) var(--ease);
}
.reseaux a:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-voile); }
.reseaux svg { width: 17px; height: 17px; }

.pied-bas {
  margin-top: clamp(var(--e5), 5vw, var(--e6));
  padding-block: var(--e4);
  border-top: var(--t1) solid var(--ligne);
  display: flex;
  flex-wrap: wrap;
  gap: var(--e1) var(--e4);
  justify-content: space-between;
  font-family: var(--mono);
  font-size: .66rem;
  letter-spacing: .05em;
  color: var(--encre-tenue);
}

@media (min-width: 700px) { .pied-grille { grid-template-columns: 1.6fr 1fr 1fr; } }
@media (min-width: 1000px) { .pied-grille { grid-template-columns: 1.8fr 1fr 1fr 1.2fr; } }

/* ---------- 16. WhatsApp flottant ---------- */
.wa-flottant {
  position: fixed;
  right: clamp(var(--e3), 3vw, var(--e4));
  bottom: clamp(var(--e3), 3vw, var(--e4));
  z-index: var(--z-flottant);
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: var(--rond);
  background: #1FA855;
  color: #fff;
  box-shadow: 0 14px 32px -12px rgba(31, 168, 85, .6);
  transition: transform var(--moyen) var(--ease);
}
.wa-flottant:hover { transform: scale(1.08); }
.wa-flottant svg { width: 27px; height: 27px; }

/* ---------- 17. Mouvement ---------- */
.paraitre {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--lent) var(--ease-out), transform var(--lent) var(--ease-out);
}
.paraitre.vu { opacity: 1; transform: none; }
.d1 { transition-delay: .08s; }
.d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  .paraitre { opacity: 1; transform: none; }
}
