/* =====================================================================
   Laura Derone Réflexologie — styles.css
   Design system : vert clair #99AB83 (haut du logo) · fond #FDF7E7 ·
   nuance verte foncée #495739 · serif Petrona
   ===================================================================== */

/* ---------- Variables ---------- */
:root {
  /* Couleurs signature (identité Laura Derone) */
  --sage: #99AB83;          /* vert principal clair (haut du logo) */
  --sage-dark: #495739;     /* nuance verte plus foncée (liens, survols, textes) */
  --sage-deep: #495739;     /* nuance foncée (titres, CTA final, footer) */
  --sage-tint: #EDF2DF;     /* fond vert très clair dérivé de #99AB83 */
  --sage-mist: #D6E2C6;     /* teinte intermédiaire (bordures, icônes) */
  --cream: #FDF7E7;         /* fond de page (fond du logo) */
  --cream-strong: #F5EDD9;
  --white: #FFFFFF;
  --ink: #2B2B2B;           /* texte principal */
  --ink-soft: #5C6652;      /* texte secondaire (vert-gris) */
  --muted: #6E6E6E;
  --line: rgba(73, 87, 57, 0.14);
  --gold: #C9A86A;          /* accent discret */

  /* Typographie */
  --font-serif: "Petrona", Georgia, "Times New Roman", serif;
  --font-sans: "Roboto", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;

  /* Divers */
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 4px 14px rgba(43, 42, 36, 0.06);
  --shadow-md: 0 14px 34px rgba(43, 42, 36, 0.10);
  --container: 1140px;
  --transition: 0.22s ease;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.2;
  font-weight: 700;
  color: var(--sage-deep);
}

/* ---------- Accessibilité ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--sage);
  color: var(--sage-deep);
  padding: 0.6rem 1rem;
  border-radius: 0 0 8px 0;
  z-index: 300;
}
.skip-link:focus { left: 0; }

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

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

/* =====================================================================
   Barre supérieure + Header
   ===================================================================== */
.topbar {
  background: var(--sage);
  color: var(--sage-deep);
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(73, 87, 57, 0.12);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.45rem;
  flex-wrap: wrap;
}
.topbar-text, .topbar-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.topbar-phone { font-weight: 700; color: var(--sage-deep); }
.topbar-phone:hover { text-decoration: underline; }
.topbar svg, .topbar-phone svg { width: 1em; height: 1em; flex: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

/* Bandeau vert + en-tête : l’ensemble reste collant en haut lors du défilement */
.site-top { position: sticky; top: 0; z-index: 100; }
.site-top .site-header { position: static; }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.8rem;
}

/* Logo / marque */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  flex: none;
}
.brand-logo {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage), var(--sage-mist));
  color: var(--sage-deep);
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-sm);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--sage-deep);
  letter-spacing: 0.01em;
}
.brand-text span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--sage-dark);
  font-weight: 600;
}

/* Navigation bureau */
.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.nav-list { display: flex; align-items: center; flex-wrap: wrap; gap: 0.55rem 1.1rem; }
.nav-list a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  padding-block: 0.35rem;
  position: relative;
  white-space: nowrap;
}
.nav-list a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 2px;
  background: var(--sage);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.nav-list a:hover { color: var(--sage-dark); }
.nav-list a:hover::after,
.nav-list a.is-active::after { transform: scaleX(1); }
.nav-list a.is-active { color: var(--sage-dark); font-weight: 700; }

/* Menu mobile (pur CSS) */
.nav-toggle, .nav-burger { display: none; }

/* =====================================================================
   Boutons
   ===================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background var(--transition), box-shadow var(--transition), color var(--transition), border-color var(--transition);
  text-align: center;
}
.btn svg { width: 1.1em; height: 1.1em; }
.btn-primary { background: var(--sage); color: var(--sage-deep); box-shadow: 0 8px 20px rgba(153, 171, 131, 0.45); }
.btn-primary:hover { background: var(--sage-deep); color: #fff; transform: translateY(-2px); }
.btn-outline { border-color: var(--sage); color: var(--sage-dark); background: transparent; }
.btn-outline:hover { background: var(--sage); border-color: var(--sage); color: var(--sage-deep); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--sage-dark); box-shadow: var(--shadow-sm); }
.btn-light:hover { background: var(--sage-tint); transform: translateY(-2px); }
.btn-cta-nav { padding: 0.6rem 1.25rem; font-size: 0.9rem; box-shadow: none; }
.btn-lg { padding: 1rem 2.2rem; font-size: 1.05rem; }

/* =====================================================================
   Héro (Accueil)
   ===================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(600px 420px at 88% -10%, rgba(201, 168, 106, 0.3), transparent 60%),
    radial-gradient(520px 400px at -5% 15%, rgba(153, 171, 131, 0.28), transparent 60%),
    var(--cream);
  padding-block: clamp(3rem, 8vw, 5.5rem);
}
.hero::before {
  content: "";
  position: absolute;
  width: 340px; height: 340px;
  border-radius: 50%;
  right: -120px; top: -120px;
  background: rgba(201, 168, 106, 0.25);
  filter: blur(2px);
}
.hero-inner { max-width: 780px; position: relative; z-index: 1; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-dark);
  background: rgba(153, 171, 131, 0.16);
  border: 1px solid rgba(153, 171, 131, 0.4);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--sage); }
.hero h1 {
  font-size: clamp(2.1rem, 5.4vw, 3.5rem);
  letter-spacing: -0.015em;
  margin-bottom: 1.1rem;
  max-width: 16ch;
}
.lead { font-size: clamp(1.05rem, 2vw, 1.22rem); color: var(--ink-soft); max-width: 58ch; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.2rem; }

.chips { display: flex; flex-wrap: wrap; gap: 0.6rem 1.4rem; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.chip svg { width: 1.05em; height: 1.05em; color: var(--sage); }

/* =====================================================================
   En-tête de pages intérieures
   ===================================================================== */
.page-hero {
  background:
    radial-gradient(480px 320px at 90% 0%, rgba(201, 168, 106, 0.28), transparent 60%),
    linear-gradient(180deg, var(--sage-tint), var(--cream));
  border-bottom: 1px solid var(--line);
  padding-block: clamp(2.6rem, 6vw, 4rem);
}
.page-hero .eyebrow { margin-bottom: 1rem; }
.page-hero h1 { font-size: clamp(2rem, 4.6vw, 3rem); margin-bottom: 0.8rem; }
.page-hero p.sub { max-width: 60ch; color: var(--ink-soft); font-size: 1.05rem; }
.breadcrumb { display: flex; gap: 0.5rem; flex-wrap: wrap; font-size: 0.85rem; color: var(--muted); margin-bottom: 1.1rem; }
.breadcrumb a { color: var(--sage-dark); font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }

/* =====================================================================
   Sections génériques
   ===================================================================== */
.section { padding-block: clamp(2.8rem, 6vw, 4.6rem); }
.section--white { background: var(--white); }
.section--sage { background: var(--sage-tint); }
.section--cream { background: var(--cream); }

.section-head { max-width: 640px; margin-bottom: 2.4rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 0.9rem; }
.section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin-bottom: 0.8rem; }
.section-head p { color: var(--ink-soft); }

/* Grilles & cartes */
.grid { display: grid; gap: 1.4rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card .card-icon {
  width: 54px; height: 54px;
  display: grid; place-items: center;
  border-radius: 16px;
  background: var(--sage-tint);
  color: var(--sage-dark);
  margin-bottom: 1.1rem;
}
.card .card-icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.28rem; margin-bottom: 0.55rem; }
.card p { font-size: 0.96rem; color: var(--ink-soft); margin-bottom: 0.9rem; }
.card .card-link { margin-top: auto; font-weight: 700; color: var(--sage-dark); font-size: 0.95rem; }
.card .card-link:hover { color: var(--sage-dark); text-decoration: underline; }

/* Bandeau citation */
.quote-band {
  background:
    radial-gradient(560px 320px at 88% 0%, rgba(255, 255, 255, 0.5), transparent 60%),
    var(--sage);
  color: var(--sage-deep);
  text-align: center;
  padding-block: clamp(3rem, 7vw, 4.6rem);
  border-block: 1px solid var(--sage-mist);
}
.quote-band blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.4rem, 3.4vw, 2.1rem);
  font-weight: 600;
  max-width: 30ch;
  margin-inline: auto;
  margin-bottom: 0.8rem;
  line-height: 1.35;
}
.quote-band cite { font-style: normal; font-size: 0.95rem; opacity: 0.85; letter-spacing: 0.05em; }

/* Checklist */
.checklist { display: grid; gap: 0.9rem; }
.checklist li {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.1rem;
  font-weight: 500;
}
.checklist svg { width: 22px; height: 22px; color: var(--sage); flex: none; margin-top: 2px; }

/* Bandeau CTA final — teinte claire pour ne pas se confondre avec le footer */
.cta-band {
  background:
    radial-gradient(620px 320px at 12% 0%, rgba(255, 255, 255, 0.65), transparent 60%),
    radial-gradient(560px 340px at 92% 110%, rgba(201, 168, 106, 0.4), transparent 60%),
    linear-gradient(135deg, #AFC19A, var(--sage));
  color: var(--sage-deep);
  border-block: 1px solid var(--sage-mist);
  text-align: center;
  padding-block: clamp(2.8rem, 6vw, 4.2rem);
}
.cta-band h2 { color: var(--sage-deep); font-size: clamp(1.7rem, 3.6vw, 2.5rem); margin-bottom: 0.8rem; }
.cta-band p { color: #53614A; max-width: 52ch; margin: 0 auto 1.8rem; font-size: 1.05rem; }
.cta-band .btn-outline {
  border-color: var(--sage-deep) !important;
  color: var(--sage-deep) !important;
  background: transparent;
}
.cta-band .btn-outline:hover {
  background: var(--sage-deep) !important;
  border-color: var(--sage-deep) !important;
  color: #fff !important;
}
.cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* Étapes (timeline) */
.steps { display: grid; gap: 1.6rem; counter-reset: step; }
.step { display: flex; gap: 1.2rem; counter-increment: step; }
.step-num {
  flex: none;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--sage-deep);
  display: grid; place-items: center;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(153, 171, 131, 0.45);
}
.step h3 { font-size: 1.25rem; margin-bottom: 0.35rem; }
.step p { color: var(--ink-soft); }
.step-body { padding-top: 0.2rem; }

/* Deux colonnes génériques */
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 2.6rem; align-items: center; }

/* Bloc décoratif */
.deco {
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 30% 30%, rgba(153, 171, 131, 0.55), transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(201, 168, 106, 0.45), transparent 55%),
    var(--sage-tint);
  min-height: 320px;
  display: grid;
  place-items: center;
  color: var(--sage-dark);
}
.deco svg { width: 80px; height: 80px; opacity: 0.8; }

/* Tableau des prix */
.table-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; }
.table-card table { width: 100%; border-collapse: collapse; }
.table-card caption { text-align: left; padding: 1.2rem 1.4rem 0.4rem; font-family: var(--font-serif); font-size: 1.15rem; font-weight: 700; color: var(--sage-deep); }
.table-card th, .table-card td { padding: 0.9rem 1.2rem; text-align: left; font-size: 0.96rem; }
.table-card thead th { background: var(--sage-tint); color: var(--sage-deep); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; }
.table-card tbody tr { border-top: 1px solid var(--line); }
.table-card tbody tr:nth-child(even) { background: #FCFAF5; }
.table-card .price { font-weight: 800; color: var(--sage-deep); white-space: nowrap; font-family: var(--font-serif); font-size: 1.02rem; }
.table-card .price small { display: block; font-weight: 500; color: var(--muted); font-family: var(--font-sans); font-size: 0.8rem; }
.table-card .tarif-name { font-weight: 700; }
.table-card .note-row td { font-size: 0.88rem; color: var(--ink-soft); background: var(--cream); }

/* Liste de communes */
.town-list { columns: 3; column-gap: 1.6rem; }
.town-list li { break-inside: avoid; padding: 0.32rem 0; border-bottom: 1px dashed var(--line); display: flex; gap: 0.6rem; align-items: center; font-size: 0.94rem; }
.town-list svg { width: 15px; height: 15px; color: var(--sage); flex: none; }

/* FAQ */
.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1rem 1.3rem;
  margin-bottom: 0.9rem;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--sage-deep);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq summary::after { content: "+"; font-size: 1.4rem; line-height: 1; color: var(--sage-dark); transition: transform 0.2s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin-top: 0.7rem; color: var(--ink-soft); }

/* Info boxes */
.notice {
  display: flex;
  gap: 0.9rem;
  background: var(--sage-tint);
  border: 1px solid rgba(153, 171, 131, 0.55);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  color: var(--sage-deep);
}
.notice svg { width: 22px; height: 22px; flex: none; margin-top: 2px; }
.notice p { font-size: 0.95rem; }

/* =====================================================================
   Cartes Rendez-vous / Contact
   ===================================================================== */
.big-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.4rem; }
.big-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.big-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.big-card .big-icon {
  width: 60px; height: 60px; margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--sage-tint);
  color: var(--sage-dark);
  display: grid; place-items: center;
}
.big-card .big-icon svg { width: 28px; height: 28px; }
.big-card h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.big-card p { color: var(--ink-soft); font-size: 0.95rem; }
.big-card .big-link { display: inline-block; margin-top: 0.9rem; font-weight: 700; color: var(--sage-dark); }
.big-card .big-link:hover { text-decoration: underline; }

/* Horaires */
.hours { display: grid; grid-template-columns: 1fr auto; gap: 0.5rem 1rem; max-width: 440px; }
.hours dt { font-weight: 600; }
.hours dd { text-align: right; color: var(--ink-soft); }
.hours dd.closed { color: var(--gold); font-weight: 700; }

/* Formulaire (statique -> mailto) */
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.field label { display: block; font-size: 0.9rem; font-weight: 600; margin-bottom: 0.35rem; color: var(--sage-deep); }
.field input, .field textarea, .field select {
  width: 100%;
  font: inherit;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #FCFAF5;
  color: var(--ink);
}
.field textarea { min-height: 130px; resize: vertical; }
.field select { cursor: pointer; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--sage); box-shadow: 0 0 0 3px rgba(153, 171, 131, 0.4); background: #fff; }

/* =====================================================================
   Footer
   ===================================================================== */
.site-footer {
  background: linear-gradient(160deg, var(--sage-deep), #3A4533);
  color: #DCE3D2;
  font-size: 0.95rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.1fr 1.3fr;
  gap: 2.2rem;
  padding-block: 3rem 2.2rem;
}
.footer-about p { margin-top: 1rem; max-width: 36ch; }
.brand--footer .brand-logo { background: #fff; color: var(--sage-deep); }
.brand--footer .brand-text strong { color: #fff; }
.brand--footer .brand-text span { color: #C9D4BB; }
.footer-title {
  color: #fff;
  font-size: 1.02rem;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}
.footer-col ul { display: grid; gap: 0.55rem; }
.footer-col a:hover { color: #fff; text-decoration: underline; }
.footer-contact li { display: flex; gap: 0.6rem; align-items: flex-start; }
.footer-contact svg { width: 17px; height: 17px; margin-top: 4px; color: #C9D4BB; flex: none; }
.social { display: flex; gap: 0.7rem; margin-top: 1.2rem; }
.social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: grid; place-items: center;
  transition: background var(--transition), transform var(--transition);
}
.social a:hover { background: var(--sage); transform: translateY(-2px); }
.social a:hover svg { fill: var(--sage-deep); }
.social svg { width: 19px; height: 19px; fill: #fff; }

.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.12); padding-block: 1.1rem; font-size: 0.85rem; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.footer-legal { display: flex; gap: 1.4rem; }
.footer-credit { margin-top: 0.7rem; text-align: center; }
.footer-credit a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.footer-credit a:hover { color: var(--sage); }

/* =====================================================================
   Pages juridiques
   ===================================================================== */
.legal article { max-width: 820px; }
.legal h2 { font-size: 1.4rem; margin: 1.6rem 0 0.5rem; }
.legal p, .legal li { color: var(--ink-soft); margin-bottom: 0.6rem; }
.legal ul { list-style: disc; padding-left: 1.3rem; }

/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 980px) {
  .nav-list { display: none; }
  .nav-burger { display: grid; gap: 5px; cursor: pointer; padding: 8px; }
  .nav-burger-bar { width: 26px; height: 3px; background: var(--sage-deep); border-radius: 3px; transition: transform 0.25s ease, opacity 0.25s ease; }
  .nav-toggle:checked ~ .nav-burger .nav-burger-bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle:checked ~ .nav-burger .nav-burger-bar:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ .nav-burger .nav-burger-bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .site-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.4rem 1.25rem 1.2rem;
    display: none;
  }
  .nav-toggle:checked ~ .site-nav { display: flex; }
  .nav-list { display: grid; gap: 0.2rem; padding-block: 0.5rem; }
  .nav-list a { padding-block: 0.7rem; border-bottom: 1px solid var(--line); }
  .nav-list a::after { display: none; }
  .nav-list a.is-active { color: var(--sage-dark); }
  .btn-cta-nav { margin-top: 0.8rem; }

  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .town-list { columns: 2; }
}

@media (max-width: 700px) {
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 1.8rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; padding-block: 2.2rem 1.6rem; }
  .town-list { columns: 1; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; }
  .topbar-phone { display: none; }
  .topbar-inner { justify-content: center; }
}

@media (max-width: 420px) {
  .brand-text span { display: none; }
}

/* =====================================================================
   Avis & témoignages
   ===================================================================== */
.stars { display: inline-flex; gap: 2px; color: var(--gold); }
.stars svg { width: 15px; height: 15px; fill: currentColor; }
.stars--lg svg { width: 19px; height: 19px; }

.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  height: 100%;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); transition: transform var(--transition), box-shadow var(--transition); }
.review-card blockquote {
  flex: 1;
  font-size: 0.98rem;
  color: var(--ink);
  line-height: 1.65;
}
.review-card blockquote::before { content: "“"; font-family: var(--font-serif); font-size: 2rem; line-height: 0; color: var(--sage); display: block; height: 0.6rem; margin-bottom: 0.4rem; }
.review-meta {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}
.review-avatar {
  width: 46px; height: 46px;
  flex: none;
  border-radius: 50%;
  background: var(--sage-tint);
  color: var(--sage-deep);
  display: grid; place-items: center;
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 0.95rem;
}
.review-meta .who strong { display: block; font-size: 0.98rem; color: var(--sage-deep); }
.review-meta .who span { font-size: 0.8rem; color: var(--muted); }

.google-score {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.google-score .big-note {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--sage-deep);
  line-height: 1;
}
.google-score .g-logo { width: 22px; height: 22px; }

/* =====================================================================
   Logo principal (en-tête)
   ===================================================================== */
.brand-img {
  display: block;
  height: 88px;
  width: auto;
  border-radius: 12px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
@media (max-width: 900px) {
  .brand-img { height: 68px; }
}
@media (max-width: 480px) {
  .brand-img { height: 58px; }
}

/* =====================================================================
   Photo d'illustration (section « Vous vous reconnaissez ? »)
   ===================================================================== */
.media-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.media-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* =====================================================================
   Carte mise en avant — Réflexologie combinée
   ===================================================================== */
.card-feature {
  background: linear-gradient(135deg, #ffffff, var(--sage-tint));
  color: var(--sage-deep);
  border: 1px solid var(--sage-mist);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  align-items: flex-start;
  margin-bottom: 1.6rem;
}
.card-feature:hover { transform: none; }
.card-feature .card-icon {
  background: var(--sage);
  color: var(--sage-deep);
}
.card-feature .card-feature-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9A7B33;
}
.card-feature h3 { color: var(--sage-deep); font-size: clamp(1.4rem, 3vw, 1.8rem); margin-bottom: 0.3rem; }
.card-feature p { color: var(--ink-soft); }
.card-feature .btn-light { color: var(--sage-dark); }
.card-feature .btn-light:hover { background: var(--sage-mist); }
@media (min-width: 900px) {
  .card-feature { flex-direction: row; align-items: center; }
  .card-feature .card-feature-body { flex: 1; }
}

/* =====================================================================
   Photos des auteurs d'avis
   ===================================================================== */
.review-avatar-photo {
  width: 50px;
  height: 50px;
  flex: none;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--sage-tint);
}

/* =====================================================================
   Bouton « retour en haut de page »
   ===================================================================== */
.to-top {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 130;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: var(--sage-deep);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(73, 87, 57, 0.4);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease;
}
.to-top svg { width: 22px; height: 22px; }
.to-top.is-visible { opacity: 1; transform: translateY(0); }
.to-top:hover { background: var(--sage-dark); }
.to-top:hover.is-visible { transform: translateY(-2px); }
.to-top:focus-visible { outline: 3px solid var(--sage); outline-offset: 3px; }
@media (min-width: 900px) {
  .to-top { right: 1.6rem; bottom: 1.6rem; }
}

/* Ancres : décalage pour le bloc bannière + header collants */
[id] { scroll-margin-top: 130px; }
@media (max-width: 900px) { [id] { scroll-margin-top: 124px; } }

/* =====================================================================
   Accès rapide « Professionnels » — menu déroulant par profil
   ===================================================================== */
.pro-jump {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.9rem 1.1rem;
  background: var(--sage-tint);
  border: 1px solid var(--sage-mist);
  border-radius: var(--radius);
  padding: 1.05rem 1.3rem;
  box-shadow: var(--shadow-sm);
}
.pro-jump-label {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--sage-deep);
  font-size: 1.08rem;
}
.pro-jump-menu { position: relative; }
.pro-jump-menu summary {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  cursor: pointer;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--sage-deep);
  background: var(--sage);
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(153, 171, 131, 0.45);
  transition: background 0.2s ease, transform 0.15s ease;
}
.pro-jump-menu summary::-webkit-details-marker { display: none; }
.pro-jump-menu summary::after {
  content: "";
  width: 9px; height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-3px);
  transition: transform 0.2s ease;
}
.pro-jump-menu[open] summary::after { transform: rotate(225deg) translateY(-1px); }
.pro-jump-menu summary:hover { background: var(--sage-mist); }
.pro-jump-menu ul {
  position: absolute;
  left: 0;
  min-width: 330px;
  top: calc(100% + 8px);
  z-index: 90;
  display: grid;
  gap: 2px;
  background: #fff;
  border: 1px solid var(--sage-mist);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  padding: 0.45rem;
  margin: 0;
}
.pro-jump-menu li { margin: 0; }
.pro-jump-menu li a {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.68rem 0.85rem;
  border-radius: 10px;
  color: var(--sage-dark);
  font-weight: 600;
  font-size: 0.96rem;
}
.pro-jump-menu li a:hover,
.pro-jump-menu li a:focus-visible { background: var(--sage-tint); color: var(--sage-deep); }
@media (max-width: 520px) {
  .pro-jump { padding: 1rem; }
  .pro-jump-menu ul { left: 50%; transform: translateX(-50%); min-width: min(330px, 92vw); }
  .pro-jump-menu { width: 100%; }
  .pro-jump-menu summary { justify-content: center; width: 100%; }
}

/* =====================================================================
   Photos intégrées (cartes & colonnes)
   ===================================================================== */
.media-photo figcaption {
  padding: 0.7rem 0.2rem 0;
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
  text-align: center;
}
.photo-stack { display: grid; gap: 1.2rem; }
.photo-stack .card { margin: 0; }
.card-photo {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1.1rem;
  box-shadow: var(--shadow-sm);
}
