@import url('fonts.css');

/* =========================================================================
   I.BROW LAB — feuille de style unique
   Palette et polices reprises du site Squarespace d'origine.
   ========================================================================= */

/* Palette reprise du site Squarespace d'origine. Les valeurs marquées d'un
   ratio ont été ajustées après mesure des contrastes (voir _src/contraste.py) :
   la palette est douce, beige sur beige, et c'est exactement le réglage où un
   texte devient illisible au soleil ou sur un écran fatigué. */
:root {
  --sand:  #ece4da;   /* fond principal — couleur d'origine */
  --cream: #f6f3ec;   /* fond alterné   — couleur d'origine */
  --white: #fffdfa;
  --ink:   #36302a;   /* titres         — couleur d'origine, 10.3 sur sable */
  --text:  #574c3f;   /* texte courant  — couleur d'origine, 6.6 sur sable */
  --muted: #716558;   /* texte discret  — assombri : 3.2 -> 4.5 sur sable */
  --tan:   #b9a590;   /* accent DÉCORATIF : filets, puces, fonds. Jamais du
                         texte sur fond clair — il n'y plafonne qu'à 1.9. */
  --tan-fonce: #8c7359; /* accent TEXTUEL sur fond clair — 3.5 sur sable */
  --rose:  #c7a8a0;   /* accent rosé — s'écrit en --ink par-dessus (5.9),
                         jamais en blanc (2.2). */
  --line:  #ddd2c4;

  --serif: 'Sansita', Georgia, 'Times New Roman', serif;
  --sans:  'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --wrap: 1140px;
  --gutter: clamp(1.25rem, 5vw, 3rem);
  --radius: 4px;
  --shadow: 0 2px 24px rgba(54, 48, 42, .09);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Réinitialisation ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  background: var(--sand);
  color: var(--text);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, picture, svg { display: block; max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--ink);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -.01em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.25rem, 6vw, 4rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); font-weight: 700; }
p  { text-wrap: pretty; }

a { color: inherit; text-decoration-color: var(--tan); text-underline-offset: .2em; }
a:hover { text-decoration-color: var(--ink); }

:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; border-radius: 2px; }

/* ---------- Utilitaires ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: 760px; }
.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }

/* Marge haute réduite sur la première section de chaque page. L'en-tête collant
   tient déjà lieu de respiration ; le grand vide au-dessus du premier titre
   repoussait le contenu trop bas. Une seule règle plutôt que huit pages
   retouchées — elle vaut aussi bien pour la section hero (accueil, pages
   prestation) que pour les pages qui ouvrent sur du texte (FAQ, contact…). */
main > section:first-child { padding-top: clamp(1.75rem, 4vw, 3rem); }

.section--cream { background: var(--cream); }
.section--ink { background: var(--ink); color: #d9d1c6; }
.section--ink h2, .section--ink h3 { color: var(--cream); }

.eyebrow {
  font-size: .75rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 1rem;
}
.section--ink .eyebrow { color: var(--tan); }

.lead { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--text); }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--ink); color: var(--cream); padding: .75rem 1.25rem;
}
.skip:focus { left: 1rem; top: 1rem; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .95rem 1.9rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
  font-weight: 700;
  font-size: .875rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
}
.btn:hover { background: var(--text); border-color: var(--text); transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--cream); }

.section--ink .btn { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.section--ink .btn:hover { background: var(--tan); border-color: var(--tan); }

.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; }

/* ---------- En-tête ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(236, 228, 218, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease);
}
.header[data-scrolled] { border-bottom-color: var(--line); }

.header__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  min-height: 76px;
}
.header__logo { flex-shrink: 0; }
.header__logo img { width: 58px; height: auto; }

.nav { display: flex; align-items: center; gap: clamp(1rem, 2.2vw, 2rem); }
.nav__link {
  font-size: .95rem; font-weight: 600; text-decoration: none;
  padding-block: .35rem; position: relative; white-space: nowrap;
}
.nav__link::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0;
  background: var(--ink); transition: width .25s var(--ease);
}
.nav__link:hover::after, .nav__link[aria-current='page']::after { width: 100%; }

/* ---------- Sous-menu « Prestations » ----------
   Desktop : déroulant au survol, au focus clavier, ou au clic (aria-expanded).
   Le lien parent mène toujours à /prestations ; le chevron révèle les 3 pages. */
.nav__item--menu { position: relative; display: flex; align-items: center; gap: .15rem; }
.nav__toggle {
  border: 0; background: none; cursor: pointer; color: inherit;
  display: grid; place-items: center; width: 26px; height: 26px; padding: 0;
}
.nav__chevron {
  display: block; width: 7px; height: 7px; margin-top: -3px;
  border-right: 1.6px solid currentColor; border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg);
  transition: transform .25s var(--ease);
}
.nav__submenu {
  list-style: none; margin: 0; padding: .4rem; z-index: 60;
  position: absolute; top: 100%; left: -.5rem; min-width: 215px;
  background: var(--cream); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(7px);
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
}
/* Pont invisible : évite que le survol « décroche » dans l'espace entre le
   menu et le déroulant. */
.nav__submenu::before { content: ''; position: absolute; left: 0; right: 0; top: -9px; height: 9px; }
.nav__submenu a {
  display: block; padding: .6rem .8rem; border-radius: 3px;
  font-size: .92rem; font-weight: 600; text-decoration: none; white-space: nowrap;
}
.nav__submenu a:hover, .nav__submenu a:focus-visible { background: var(--sand); }
.nav__item--menu:hover .nav__submenu,
.nav__item--menu:focus-within .nav__submenu,
.nav__toggle[aria-expanded='true'] + .nav__submenu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav__item--menu:hover .nav__chevron,
.nav__toggle[aria-expanded='true'] .nav__chevron { transform: rotate(225deg); margin-top: 3px; }

.burger {
  display: none; width: 44px; height: 44px; border: 0; background: none;
  cursor: pointer; padding: 10px; margin-right: -10px;
}
.burger span {
  display: block; height: 1.5px; background: var(--ink); border-radius: 2px;
  transition: transform .28s var(--ease), opacity .2s var(--ease);
}
.burger span + span { margin-top: 6px; }
.burger[aria-expanded='true'] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded='true'] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 900px) {
  .burger { display: block; }
  .nav {
    position: fixed; inset: 76px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--sand);
    border-bottom: 1px solid var(--line);
    padding: 1rem var(--gutter) 2rem;
    transform: translateY(-120%);
    transition: transform .32s var(--ease);
    max-height: calc(100dvh - 76px); overflow-y: auto;
  }
  .nav[data-open] { transform: translateY(0); }
  .nav__link { padding-block: 1rem; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav__link::after { display: none; }
  .nav .btn { margin-top: 1.25rem; }

  /* Sous-menu en accordéon : le lien parent et le chevron sur une ligne, les
     3 prestations en dessous. On n'ouvre qu'au clic du chevron (pas au survol,
     inexistant ici) — d'où le display:none tant que le bouton n'est pas activé. */
  .nav__item--menu { flex-wrap: wrap; align-items: stretch; gap: 0; border-bottom: 1px solid var(--line); }
  .nav__item--menu .nav__link { flex: 1; border-bottom: 0; }
  .nav__toggle { width: 48px; align-self: stretch; }
  .nav__submenu {
    position: static; display: none; width: 100%;
    opacity: 1; visibility: visible; transform: none;
    background: none; border: 0; box-shadow: none; min-width: 0;
    padding: 0 0 .75rem 1rem;
  }
  .nav__toggle[aria-expanded='true'] + .nav__submenu { display: block; }
  .nav__submenu a { padding: .7rem .4rem; font-size: 1rem; }
}

/* ---------- Hero ---------- */
.hero { padding-block: clamp(2.5rem, 7vw, 5rem) clamp(3rem, 7vw, 5rem); }
.hero__grid {
  display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center;
  grid-template-columns: 1.05fr .95fr;
}
.hero h1 { margin-bottom: 1.25rem; }
.hero h1 em { font-style: normal; color: var(--tan-fonce); }
.hero__lead { font-size: clamp(1.05rem, 1.7vw, 1.25rem); margin-bottom: 2rem; max-width: 34ch; }
.hero__media { position: relative; }
.hero__media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; }

/* ---------- Carrousel (hero de l'accueil) ----------
   Sans JS : défilement tactile avec accroche (scroll-snap). site.js ajoute
   flèches, points et défilement auto — jamais montrés s'ils ne fonctionnent pas.
   L'arrondi et l'ombre sont portés par le cadre, pas par chaque image, sinon
   ils apparaîtraient entre les diapositives pendant le défilement. */
.carousel { position: relative; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.carousel__track {
  display: flex; margin: 0; padding: 0; list-style: none;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__slide { flex: 0 0 100%; scroll-snap-align: start; scroll-snap-stop: always; position: relative; margin: 0; }
.carousel__slide img { display: block; width: 100%; border-radius: 0; box-shadow: none; }
.carousel__slide figcaption {
  position: absolute; top: .8rem; left: .8rem;
  background: rgba(54, 48, 42, .78); color: var(--cream);
  font-family: var(--sans); font-size: .68rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .3rem .7rem; border-radius: 999px;
}

/* Contrôles ajoutés par JS : masqués tant que la classe .js n'est pas posée. */
.carousel__nav, .carousel__dots { display: none; }
.js .carousel__nav {
  display: grid; place-items: center;
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 40px; height: 40px; border: 0; border-radius: 999px; cursor: pointer;
  background: rgba(255, 253, 250, .9); color: var(--ink); font-size: 1.4rem; line-height: 1;
  box-shadow: 0 1px 6px rgba(54, 48, 42, .25);
  transition: background .2s var(--ease);
}
.js .carousel__nav:hover { background: var(--cream); }
.carousel__prev { left: .6rem; }
.carousel__next { right: .6rem; }
.js .carousel__dots {
  display: flex; gap: .45rem; justify-content: center; z-index: 2;
  position: absolute; left: 0; right: 0; bottom: .9rem;
}
.carousel__dot {
  width: 8px; height: 8px; padding: 0; border: 0; border-radius: 999px; cursor: pointer;
  background: rgba(255, 253, 250, .55);
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.carousel__dot[aria-current="true"] { background: var(--cream); transform: scale(1.35); }

@media (prefers-reduced-motion: reduce) {
  .carousel__track { scroll-behavior: auto; }
}

.hero__proof {
  display: flex; flex-wrap: wrap; gap: 1.5rem 2.5rem;
  margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--line);
}
.hero__proof div { line-height: 1.35; }
.hero__proof strong { display: block; font-family: var(--serif); font-size: 1.5rem; color: var(--ink); }
.hero__proof span { font-size: .82rem; color: var(--muted); }
.hero__proof a { color: inherit; }

/* Note Google. Les étoiles sont un ornement : c'est le chiffre qui porte
   l'information, et il est en --ink. Le nombre d'avis est ce qui rend la note
   crédible — une note sans effectif ne veut rien dire. */
.note-google { display: flex; align-items: baseline; gap: .4rem; white-space: nowrap; }
.note-google__etoiles { color: var(--tan-fonce); font-size: 1.05rem; letter-spacing: .05em; }

/* Sur mobile, la promesse et le bouton de réservation doivent tenir dans le
   premier écran : le texte passe avant l'image, et l'image est bridée en
   hauteur pour ne pas repousser la suite. */
@media (max-width: 860px) {
  .hero { padding-top: 1.5rem; }
  .hero__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero__lead { max-width: none; margin-bottom: 1.5rem; }
  .hero__media { max-width: 380px; margin-inline: auto; }
  /* Ce bridage en hauteur ne vaut que pour une photo UNIQUE (pages prestation),
     où il évite qu'elle repousse le contenu. */
  .hero__media img { max-height: 46vh; object-fit: cover; object-position: center 30%; }
  /* Le carrousel, lui, montre des avant/après : il faut voir toute la photo.
     On rétablit donc son format d'origine (4:5), sans recadrage. */
  .carousel__slide img { max-height: none; object-fit: fill; }
  .hero__proof { margin-top: 0; gap: 1rem 2rem; }
  .hero__proof strong { font-size: 1.15rem; }
}

/* ---------- Page institut : le récit à gauche, la photo à droite ----------
   Le texte est bien plus haut que la photo. Sans « sticky », celle-ci sortirait
   de l'écran dès le premier paragraphe et laisserait une colonne vide sur la
   moitié de la page. Collée, elle accompagne la lecture. */
.about-grid {
  display: grid; gap: clamp(2rem, 5vw, 4.5rem); align-items: start;
  grid-template-columns: 1.1fr .9fr;
}
.about-media { position: sticky; top: calc(76px + 2rem); }
.about-media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; }
.about-grid .prose h1 { margin-bottom: 0; }
.about-grid .prose .lead { margin-bottom: 2rem; }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  /* Sur mobile, c'est une page de rencontre : le visage passe avant le récit. */
  .about-media { position: static; order: -1; max-width: 340px; margin-inline: auto; }
  .about-media img { max-height: 52vh; object-fit: cover; object-position: center 20%; }
}

/* ---------- Le lieu (page institut) ----------
   Une vue large de la pièce à côté d'un portrait vertical. Chacune garde son
   format : recadrer la pièce en portrait détruirait ce qu'elle montre — la
   lumière et le volume. Les deux hauteurs diffèrent donc, et c'est assumé ;
   elles s'alignent par le haut. */
.lieu-duo { display: grid; gap: 1.5rem; grid-template-columns: 1.4fr 1fr; align-items: start; }
.lieu-duo figure { margin: 0; }
.lieu-duo img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); }
.lieu-duo figcaption { margin-top: .75rem; font-size: .82rem; color: var(--muted); }
@media (max-width: 760px) {
  .lieu-duo { grid-template-columns: 1fr; }
  .lieu-duo figure:last-child { max-width: 340px; margin-inline: auto; }
}

/* ---------- Grille de cartes ---------- */
.cards { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  display: flex; flex-direction: column; gap: .75rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card__price { font-family: var(--serif); font-size: 1.75rem; color: var(--ink); font-weight: 800; }
.card__meta { font-size: .82rem; color: var(--muted); letter-spacing: .04em; }
.card p { font-size: .95rem; }
.card__link { margin-top: auto; padding-top: .75rem; font-weight: 700; font-size: .875rem; text-decoration: none; }
.card__link::after { content: ' →'; transition: margin .2s var(--ease); }
.card__link:hover::after { margin-left: .3rem; }

/* ---------- Tarifs ---------- */
.pricing { display: grid; gap: 0; border-top: 1px solid var(--line); }
.price-row {
  display: grid; grid-template-columns: 1fr auto auto;
  gap: 1rem 2rem; align-items: baseline;
  padding: 1.4rem 0; border-bottom: 1px solid var(--line);
}
.price-row__name { font-family: var(--serif); font-size: 1.15rem; color: var(--ink); font-weight: 700; }
.price-row__badge {
  display: inline-block; margin-left: .6rem; vertical-align: middle;
  font-family: var(--sans); font-size: .68rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  /* Libellé en --ink et non en blanc : le rose est clair, du blanc dessus ne
     donne que 2.2 de contraste. En foncé, 5.9. */
  color: var(--ink); background: var(--rose);
  padding: .25rem .6rem; border-radius: 999px; white-space: nowrap;
}
.price-row__desc { grid-column: 1 / -1; font-size: .9rem; color: var(--muted); margin-top: -.5rem; }
.price-row__time { font-size: .85rem; color: var(--muted); white-space: nowrap; }
.price-row__price { font-family: var(--serif); font-size: 1.3rem; color: var(--ink); font-weight: 800; white-space: nowrap; }
@media (max-width: 560px) {
  .price-row { grid-template-columns: 1fr auto; }
  .price-row__time { grid-column: 1; grid-row: 2; }
}

/* ---------- Galerie ---------- */
.gallery { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.gallery figure { margin: 0; position: relative; overflow: hidden; border-radius: var(--radius); background: var(--tan); }
.gallery img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  transition: transform .5s var(--ease);
}
.gallery figure:hover img { transform: scale(1.04); }
.gallery figcaption {
  position: absolute; inset: auto 0 0 0;
  background: linear-gradient(transparent, rgba(54, 48, 42, .88));
  color: var(--cream); font-size: .78rem; line-height: 1.4;
  padding: 2.5rem .9rem .9rem;
  opacity: 0; transform: translateY(8px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.gallery figure:hover figcaption, .gallery figure:focus-within figcaption { opacity: 1; transform: translateY(0); }
@media (hover: none) { .gallery figcaption { opacity: 1; transform: none; } }

/* Sur mobile, la galerie tombait en une seule colonne : huit grandes photos à
   faire défiler avant la suite de la page. On passe en miniatures — plusieurs
   par ligne, déjà cliquables (un appui ouvre la photo en grand). La légende
   disparaît (illisible à cette taille), mais reste affichée dans la vue agrandie. */
@media (max-width: 600px) {
  .gallery { grid-template-columns: repeat(auto-fill, minmax(92px, 1fr)); gap: .5rem; }
  .gallery figcaption { display: none; }
}

/* ---------- Agrandissement des photos ----------
   Le bouton est créé par le script : sans JavaScript il n'existe pas, et la
   photo reste une simple image — jamais un bouton qui ne ferait rien. */
.gallery__zoom {
  display: block; width: 100%; padding: 0; border: 0; background: none;
  cursor: zoom-in; border-radius: var(--radius); overflow: hidden;
}
.gallery__zoom:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }

.lightbox {
  padding: 0; border: 0; background: none;
  max-width: 100vw; max-height: 100dvh;
  width: 100%; height: 100%;
  overflow: hidden;
  align-items: center; justify-content: center;
  gap: clamp(.5rem, 2vw, 1.5rem);
}
.lightbox[open] { display: flex; }
.lightbox::backdrop { background: rgba(30, 26, 22, .92); }

.lightbox__fig {
  margin: 0; display: flex; flex-direction: column; align-items: center;
  gap: .9rem; min-width: 0;
}
.lightbox__fig img {
  max-width: min(92vw, 720px);
  /* La légende et les marges doivent rester visibles : on borne la hauteur. */
  max-height: 80dvh;
  width: auto; height: auto; object-fit: contain;
  border-radius: var(--radius);
  background: var(--ink);
}
.lightbox__fig figcaption {
  color: var(--sand); font-size: .85rem; text-align: center;
  letter-spacing: .04em;
}

.lightbox__btn {
  flex-shrink: 0;
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid rgba(236, 228, 218, .35);
  background: rgba(30, 26, 22, .6);
  color: var(--sand); font-size: 1.6rem; line-height: 1;
  display: grid; place-items: center; cursor: pointer;
  transition: background .2s var(--ease), border-color .2s var(--ease);
}
.lightbox__btn:hover { background: var(--sand); color: var(--ink); border-color: var(--sand); }
.lightbox__btn:focus-visible { outline: 2px solid var(--sand); outline-offset: 3px; }
.lightbox__close { position: fixed; top: 1rem; right: 1rem; z-index: 1; }

@media (max-width: 620px) {
  /* Sur mobile, les flèches passent sous la photo : sur les côtés elles
     mangeraient la largeur de l'image, qui est le sujet. */
  .lightbox { flex-direction: column; }
  .lightbox__fig { order: -1; }
  .lightbox__fig img { max-width: 94vw; max-height: 68dvh; }
  .lightbox__prev { position: absolute; bottom: 1.25rem; left: calc(50% - 3.5rem); }
  .lightbox__next { position: absolute; bottom: 1.25rem; right: calc(50% - 3.5rem); }
}

/* ---------- Avis ---------- */
.reviews { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.review {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.75rem; display: flex; flex-direction: column;
}
.review__quote { font-size: .97rem; margin-bottom: 1.25rem; }
.review__quote::before { content: '“'; font-family: var(--serif); font-size: 3rem; color: var(--tan); line-height: 0; vertical-align: -.35em; margin-right: .15rem; }
.review__author { margin-top: auto; font-weight: 700; font-size: .85rem; letter-spacing: .05em; color: var(--ink); }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none;
  padding: 1.5rem 3rem 1.5rem 0; position: relative;
  font-family: var(--serif); font-size: clamp(1.05rem, 1.8vw, 1.25rem); font-weight: 700; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ''; position: absolute; right: .5rem; top: 50%;
  width: 11px; height: 11px; margin-top: -7px;
  /* Le chevron indique qu'on peut déplier : c'est une commande, pas un ornement.
     Il lui faut le contraste d'un élément d'interface. */
  border-right: 1.5px solid var(--tan-fonce); border-bottom: 1.5px solid var(--tan-fonce);
  transform: rotate(45deg); transition: transform .25s var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -3px; }
.faq__body { padding-bottom: 1.75rem; max-width: 68ch; }
.faq__body > * + * { margin-top: .85rem; }
.faq__body ul { padding-left: 1.15rem; }
.faq__body li + li { margin-top: .4rem; }

/* ---------- Prose ---------- */
.prose > * + * { margin-top: 1.15rem; }
.prose h2 { margin-top: 2.75rem; }
.prose h3 { margin-top: 2rem; }
.prose ul { padding-left: 1.25rem; }
.prose li + li { margin-top: .45rem; }
.prose li::marker { color: var(--tan); }
.prose strong { color: var(--ink); }

/* ---------- Encadré ---------- */
.callout {
  background: var(--cream); border-left: 3px solid var(--tan);
  border-radius: var(--radius); padding: 1.5rem 1.75rem;
}
.callout p { font-size: .95rem; }
.callout > * + * { margin-top: .6rem; }
.callout ul { margin: 0; padding-left: 1.15rem; font-size: .95rem; }
.callout li + li { margin-top: .5rem; }
.callout li::marker { color: var(--tan); }

/* Une consigne qu'on ne peut pas rater : arriver maquillée ou avec ses
   lentilles, c'est la séance qui ne peut pas se faire. Un simple paragraphe
   se lirait comme une remarque parmi d'autres. */
.callout--important {
  background: var(--white); border-left-width: 3px; border-left-color: var(--rose);
  box-shadow: var(--shadow);
}
.callout--important li::marker { color: var(--rose); }

/* ---------- Bouton flottant WhatsApp (mobile) ----------
   Masqué par défaut ; n'apparaît que sur mobile, là où le pouce l'attend en bas
   à droite. En vert WhatsApp, à dessein : c'est le seul endroit où l'on garde la
   couleur de la marque, parce qu'un bouton de contact flottant se reconnaît à sa
   couleur avant même qu'on lise l'icône — c'est ce qui fait cliquer. */
.wa-fab { display: none; }
@media (max-width: 900px) {
  .wa-fab {
    display: grid; place-items: center;
    position: fixed; z-index: 40;
    right: 1rem; bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
    width: 54px; height: 54px; border-radius: 999px;
    background: #25d366; color: #fff;
    box-shadow: 0 4px 14px rgba(54, 48, 42, .32);
    transition: transform .2s var(--ease);
  }
  .wa-fab:active { transform: scale(.92); }
  .wa-fab svg { width: 30px; height: 30px; fill: currentColor; }
}
/* Menu mobile ouvert : on efface le bouton, qui sinon flotterait par-dessus. */
body:has(.nav[data-open]) .wa-fab { display: none; }

/* ---------- Bandeau d'appel ---------- */
.cta-band { text-align: center; }
.cta-band h2 { margin-bottom: 1rem; }
.cta-band p { max-width: 52ch; margin-inline: auto; margin-bottom: 2rem; }
.cta-band .btn-row { justify-content: center; }

/* ---------- Contact ---------- */
/* WhatsApp est le canal principal : une cliente qui hésite envoie une photo et
   obtient une réponse. On lui donne la couleur de la marque, pas le vert
   WhatsApp, pour ne pas dénaturer la page. */
.callout--wa { border-left-color: var(--rose); }
.btn--wa { background: var(--rose); border-color: var(--rose); color: var(--ink); }
.btn--wa:hover { background: var(--ink); border-color: var(--ink); color: var(--cream); }

.contact-grid { display: grid; gap: clamp(2rem, 5vw, 4rem); grid-template-columns: 1fr 1fr; align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-list { display: grid; gap: .25rem; list-style: none; padding: 0; }
.contact-list a {
  display: flex; align-items: center; gap: .85rem;
  padding: .85rem 0; text-decoration: none; font-weight: 600;
  border-bottom: 1px solid var(--line);
}
.contact-list a:hover { color: var(--ink); }
.contact-list svg { width: 19px; height: 19px; flex-shrink: 0; stroke: var(--tan-fonce); fill: none; stroke-width: 1.6; }

.hours { list-style: none; padding: 0; font-size: .95rem; }
.hours li { display: flex; justify-content: space-between; gap: 2rem; padding: .5rem 0; border-bottom: 1px dotted var(--line); }
.hours span:last-child { color: var(--muted); white-space: nowrap; }

/* ---------- Pied de page ---------- */
.footer { background: var(--ink); color: #b8ac9d; padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; font-size: .9rem; }
.footer a { text-decoration: none; }
.footer a:hover { color: var(--cream); }
.footer__grid { display: grid; gap: 2.5rem; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; }
@media (max-width: 980px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer__grid { grid-template-columns: 1fr; gap: 2rem; } }
.footer h3 { font-family: var(--sans); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--tan); margin-bottom: 1rem; font-weight: 700; }
.footer ul { list-style: none; padding: 0; display: grid; gap: .55rem; }
.footer__logo { width: 62px; margin-bottom: 1.25rem; filter: invert(1) brightness(1.6) contrast(.9); opacity: .85; }
.footer__bottom {
  margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between;
  font-size: .8rem; color: #a1978b;   /* éclairci : 3.3 -> 4.5 sur le fond sombre */
}
.footer__legal { display: flex; flex-wrap: wrap; gap: 1.25rem; }

/* ---------- Apparition au défilement ----------
   Conditionné à la classe .js, posée par un script en tête de page.
   Sans JavaScript (fichier bloqué, erreur réseau, navigateur ancien), la règle
   ne s'applique jamais et le contenu reste simplement visible : une animation
   ratée ne doit pas rendre les prestations et les avis invisibles. */
@media (prefers-reduced-motion: no-preference) {
  .js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
  .js .reveal[data-visible] { opacity: 1; transform: none; }
}
