/* =========================
   RESET & BASE
   ========================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Inter", system-ui, sans-serif;
  background: #ffffff;
  color: #1d1d1f;
  font-size: 19px;
  line-height: 1.5;
  font-weight: 400;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: opacity .25s ease; }
a:hover { opacity: 0.7; }
ul { list-style: none; }

:root {
  --ink: #1d1d1f;
  --ink-2: #424245;
  --muted: #86868b;
  --line: #d2d2d7;
  --bg: #ffffff;
  --bg-alt: #fafafa;
  --black: #000000;
  --accent: #0066cc;
}

/* =========================
   NAV
   ========================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
  /* START: Surgical modification for logo integration */
  display: flex; /* Make it a flex container */
  align-items: center; /* Vertically align items */
  gap: 8px; /* Space between logo and text */
  /* END: Surgical modification for logo integration */
}
.freestyle-injected-logo {
  height: 40px; /* Recommended height */
  width: auto; /* Maintain aspect ratio */
  flex-shrink: 0; /* Prevent logo from shrinking */
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-size: 13px;
  color: var(--ink);
  font-weight: 400;
}
.nav-cta {
  font-size: 13px;
  font-weight: 500;
  background: var(--accent);
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 999px;
}
.nav-cta:hover { opacity: 0.85; }

/* =========================
   REVEAL ANIMATION
   ========================= */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease-out, transform .8s ease-out;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   HERO
   ========================= */
.hero {
  padding: 140px 24px 80px;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-eyebrow {
  /* Ligne metier = element DOMINANT du hero (regle : plus grand que le titre) */
  font-size: clamp(34px, 5.5vw, 60px);
  font-weight: 500;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-transform: none;
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(26px, 3.6vw, 40px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink-2);
}
.hero-italic {
  font-style: italic;
  font-weight: 300;
  color: var(--muted);
}
.hero-sub {
  margin: 32px auto 0;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 400;
  color: var(--ink-2);
  max-width: 620px;
  line-height: 1.4;
}
.hero-cta {
  margin: 48px 0 80px;
  display: flex;
  gap: 28px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--accent);
  color: #fff !important;
  padding: 14px 32px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
}
.btn-primary:hover { opacity: 0.88; }
.btn-primary.big {
  padding: 18px 44px;
  font-size: 18px;
}
.btn-link {
  color: var(--accent);
  font-size: 16px;
  font-weight: 400;
}
.btn-link.muted { color: var(--muted); }

.hero-media {
  margin: 64px auto 0;
  max-width: 1000px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.15);
  aspect-ratio: 16/10;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}
.hero-media:hover img { transform: scale(1.02); }

.hero-meta {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.hero-meta > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero-meta span {
  font-size: 17px;
  color: var(--ink);
  font-weight: 500;
}
.hero-meta small {
  font-size: 13px;
  color: var(--muted);
}

/* =========================
   SHARED HEADINGS
   ========================= */
.eyebrow {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}
.eyebrow-light { color: var(--accent); }

.big-title {
  font-size: clamp(44px, 6.5vw, 88px);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--ink);
}
.big-title.light { color: var(--ink); }
.muted-title {
  color: var(--muted);
  font-style: italic;
  font-weight: 300;
}

/* =========================
   DARK SECTION (Approche)
   ========================= */
.dark {
  background: #f4f7fb;
  color: var(--ink);
  padding: 110px 24px;
  text-align: center;
}
.dark-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.dark-lead {
  margin: 36px auto 56px;
  max-width: 640px;
  color: var(--ink-2);
  font-size: 21px;
  line-height: 1.5;
}

/* =========================
   SOINS
   ========================= */
.soins {
  padding: 110px 24px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.soins-split {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border-radius: 24px;
  overflow: hidden;
}
.soin-block {
  background: #ffffff;
  padding: 64px 48px;
  text-align: left;
}
.soin-block-alt {
  background: #fafafa;
}
.soin-tag {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
  font-weight: 500;
}
.soin-block h3 {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 28px;
  color: var(--ink);
}
.soin-block p {
  color: var(--ink-2);
  margin-bottom: 36px;
  max-width: 420px;
  line-height: 1.5;
}
.soin-list li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-size: 16px;
  color: var(--ink);
}
.soin-list li:last-child { border-bottom: 1px solid var(--line); }

/* =========================
   QUOTE SECTION
   ========================= */
.quote-section {
  padding: 110px 24px;
  text-align: center;
  background: #fafafa;
}
.quote {
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1.15;
  color: var(--ink);
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.quote em {
  font-style: italic;
  color: var(--accent);
  font-weight: 300;
}
.q-mark {
  color: var(--line);
  font-size: 1.1em;
  line-height: 0;
  vertical-align: -0.2em;
}
.quote-source {
  margin-top: 56px;
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* =========================
   CABINET
   ========================= */
.cabinet {
  padding: 110px 24px;
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 96px;
  align-items: center;
}
.cabinet-text { max-width: 480px; }
.cabinet-p {
  margin: 32px 0 40px;
  color: var(--ink-2);
  line-height: 1.55;
}
.cabinet-image {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 30px 60px -25px rgba(0,0,0,0.18);
}
.cabinet-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s ease;
}
.cabinet-image:hover img { transform: scale(1.03); }

/* =========================
   TEMOIGNAGES
   ========================= */
.temoignages {
  padding: 110px 24px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.reviews-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border-radius: 24px;
  overflow: hidden;
}
.review {
  background: #fff;
  padding: 56px 48px;
  text-align: left;
}
.review:nth-child(even) { background: #fafafa; }
.stars {
  color: #e8a317;
  font-size: 14px;
  letter-spacing: 0.15em;
  margin-bottom: 24px;
}
.review p {
  font-size: 19px;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 28px;
  font-weight: 400;
}
.review-author {
  font-size: 13px;
  color: var(--muted);
}

/* =========================
   CONTACT
   ========================= */
.contact {
  padding: 110px 24px;
  text-align: center;
  background: #f4f7fb;
  color: var(--ink);
}
.contact-title {
  font-size: clamp(56px, 9vw, 112px);
  font-weight: 300;
  letter-spacing: -0.045em;
  line-height: 1.02;
  color: var(--ink);
}
.contact-title .hero-italic { color: var(--muted); }
.contact-sub {
  margin-top: 28px;
  font-size: 22px;
  color: var(--ink-2);
}
.contact-grid {
  margin: 56px auto 48px;
  max-width: 1000px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-radius: 24px;
  overflow: hidden;
}
.contact-card {
  background: #fff;
  padding: 48px 32px;
  text-align: left;
}
.contact-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  font-weight: 500;
}
.contact-value {
  font-size: 19px;
  color: var(--ink);
  line-height: 1.4;
  margin-bottom: 24px;
  font-weight: 400;
}
.contact-value a { color: var(--accent); }
.contact-card .btn-link { color: var(--accent); font-size: 14px; }
.contact-card .btn-link.muted { color: var(--muted); }
.contact-final { margin-top: 40px; }

/* =========================
   FOOTER
   ========================= */
footer {
  background: #f5f5f7;
  padding: 64px 24px 48px;
  color: var(--ink-2);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.footer-brand {
  font-size: 19px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.footer-info {
  font-size: 14px;
  color: var(--ink-2);
  margin-bottom: 24px;
}
.footer-info a { color: var(--accent); }
.footer-legal {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

/* =========================
   ACCOMPAGNEMENT / COACHING DE VIE
   ========================= */
.vie {
  padding: 110px 24px;
  background: var(--bg-alt);
  text-align: center;
}
.vie-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.vie-lead {
  margin: 36px auto 56px;
  max-width: 640px;
  color: var(--ink-2);
  font-size: 21px;
  line-height: 1.55;
}
.vie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: left;
}
.vie-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 44px 36px;
  transition: transform .4s ease, box-shadow .4s ease;
}
.vie-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -28px rgba(0,0,0,0.22);
}
.vie-icon {
  font-size: 34px;
  line-height: 1;
  margin-bottom: 28px;
}
.vie-card h3 {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: var(--ink);
}
.vie-card p {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.55;
}

/* =========================
   ACTUALITES
   ========================= */
.actus {
  padding: 110px 24px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.actus-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: left;
}
.actu-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  transition: transform .4s ease, box-shadow .4s ease;
}
.actu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -28px rgba(0,0,0,0.22);
}
.actu-meta {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 24px;
}
.actu-card h3 {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--ink);
}
.actu-card p {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.55;
  margin-bottom: 28px;
}
.actu-tag {
  margin-top: auto;
  align-self: flex-start;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  background: rgba(0,102,204,0.08);
  padding: 6px 14px;
  border-radius: 999px;
}

/* =========================
   RESERVATION EN LIGNE (BOOKING BAND)
   ========================= */
.booking {
  padding: 140px 24px;
  background: linear-gradient(135deg, #0066cc 0%, #0a4fa3 100%);
  color: #fff;
  text-align: center;
}
.booking-inner {
  max-width: 760px;
  margin: 0 auto;
}
.booking-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  background: rgba(255,255,255,0.15);
  color: #fff;
  padding: 9px 18px;
  border-radius: 999px;
  margin-bottom: 36px;
}
.booking-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #6fffa8;
  box-shadow: 0 0 0 0 rgba(111,255,168,0.7);
  animation: bookingPulse 2s infinite;
}
@keyframes bookingPulse {
  0% { box-shadow: 0 0 0 0 rgba(111,255,168,0.6); }
  70% { box-shadow: 0 0 0 10px rgba(111,255,168,0); }
  100% { box-shadow: 0 0 0 0 rgba(111,255,168,0); }
}
@media (prefers-reduced-motion: reduce) { .booking-dot { animation: none; } }
.booking-title {
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: #fff;
}
.booking-title .hero-italic { color: rgba(255,255,255,0.7); }
.booking-sub {
  margin: 28px auto 44px;
  max-width: 540px;
  font-size: 19px;
  line-height: 1.5;
  color: rgba(255,255,255,0.88);
}
.booking-btn {
  background: #fff;
  color: #0066cc !important;
}
.booking-btn:hover { opacity: 0.92; }
.booking-note {
  margin-top: 22px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}

/* =========================
   INFOS PRATIQUES / HORAIRES
   ========================= */
.infos {
  padding: 110px 24px;
  background: var(--bg-alt);
  text-align: center;
}
.infos-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.infos-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: left;
}
.infos-block {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
}
.infos-h3 {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 28px;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  font-size: 15px;
  color: var(--ink);
}
.hours-list li:last-child { border-bottom: 1px solid var(--line); }
.hours-list li span:first-child { color: var(--ink); font-weight: 500; }
.hours-list li span:last-child { color: var(--ink-2); text-align: right; }
.hours-list li.closed span { color: var(--muted); }
.info-lines li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-size: 16px;
  color: var(--ink);
  line-height: 1.5;
}
.info-lines li:first-child { border-top: none; padding-top: 0; }
.info-lines li strong { font-weight: 500; }
.info-lines li.muted-line { color: var(--muted); font-size: 14px; }
.info-lines li a { color: var(--accent); }
.infos-cta {
  margin-top: 32px;
  align-self: flex-start;
  text-align: center;
}

/* =========================
   POUR QUI ?
   ========================= */
.pour-qui { padding: 110px 24px; max-width: 1200px; margin: 0 auto; text-align: center; }
.pq-grid { margin-top: 56px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: left; }
.pq-card { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 32px 28px; transition: transform .4s ease, box-shadow .4s ease; }
.pq-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px -26px rgba(0,0,0,0.2); }
.pq-ico { font-size: 30px; display: block; margin-bottom: 16px; line-height: 1; }
.pq-card h3 { font-size: 20px; font-weight: 500; margin-bottom: 8px; color: var(--ink); letter-spacing: -0.01em; }
.pq-card p { font-size: 15px; color: var(--ink-2); line-height: 1.5; }
.pq-note { margin-top: 36px; font-size: 14px; color: var(--muted); }

/* =========================
   SEANCE (deroule)
   ========================= */
.seance { padding: 110px 24px; background: var(--bg-alt); text-align: center; }
.seance-inner { max-width: 1100px; margin: 0 auto; }

/* grille : .reveal = simple declencheur (on neutralise le fondu generique) */
.seance-steps {
  position: relative;
  margin-top: 56px; padding-top: 26px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: left;
  opacity: 1 !important; transform: none !important;
}

/* ---- ETAPE : devoilee par balayage (clip-path wipe) + chiffre fantome ---- */
.seance-step {
  position: relative;
  padding-top: 22px;
  opacity: 0; transform: none;
  clip-path: inset(0 100% 0 0);
}
.step-ghost {
  position: absolute; top: 0; right: 2px; z-index: 0;
  font-size: 74px; font-weight: 800; line-height: .8; letter-spacing: -.05em;
  color: rgba(0,102,204,0.07); pointer-events: none;
  opacity: 0; transform: translateY(14px);
}
.seance-step .step-num, .seance-step h3, .seance-step p { position: relative; z-index: 1; }
.step-num {
  position: relative; display: inline-block;
  font-size: 14px; color: var(--accent); letter-spacing: .08em; font-weight: 600;
  margin-bottom: 24px; padding-bottom: 12px; font-variant-numeric: tabular-nums;
}
.step-num::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 34px;
  background: linear-gradient(90deg, var(--accent), #5aa6ff);
  transform: scaleX(0); transform-origin: left;
}
.seance-step h3 { font-size: 20px; font-weight: 500; margin-bottom: 10px; color: var(--ink); letter-spacing: -0.01em; }
.seance-step p { font-size: 15px; color: var(--ink-2); line-height: 1.5; }

@keyframes stepWipe  { to { opacity: 1; clip-path: inset(0 0 0 0); } }
@keyframes ghostRise { to { opacity: 1; transform: translateY(0); } }
@keyframes underDraw { to { transform: scaleX(1); } }

.seance-steps.is-visible .seance-step { animation: stepWipe .7s cubic-bezier(.6,0,.2,1) both; }
.seance-steps.is-visible .seance-step .step-ghost { animation: ghostRise .8s cubic-bezier(.22,.61,.36,1) both; }
.seance-steps.is-visible .seance-step .step-num::after { animation: underDraw .6s cubic-bezier(.22,.61,.36,1) both; }
.seance-steps.is-visible .seance-step:nth-child(1),
.seance-steps.is-visible .seance-step:nth-child(1) .step-ghost,
.seance-steps.is-visible .seance-step:nth-child(1) .step-num::after { animation-delay: .25s; }
.seance-steps.is-visible .seance-step:nth-child(2),
.seance-steps.is-visible .seance-step:nth-child(2) .step-ghost,
.seance-steps.is-visible .seance-step:nth-child(2) .step-num::after { animation-delay: .50s; }
.seance-steps.is-visible .seance-step:nth-child(3),
.seance-steps.is-visible .seance-step:nth-child(3) .step-ghost,
.seance-steps.is-visible .seance-step:nth-child(3) .step-num::after { animation-delay: .75s; }
.seance-steps.is-visible .seance-step:nth-child(4),
.seance-steps.is-visible .seance-step:nth-child(4) .step-ghost,
.seance-steps.is-visible .seance-step:nth-child(4) .step-num::after { animation-delay: 1.0s; }

/* ---- FLUX : ligne pointillee "data flow" + noeuds losange ---- */
.seance-flow {
  position: absolute; top: 13px; left: 0; right: 0; height: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  align-items: center; pointer-events: none; z-index: 2;
}
.flow-line {
  position: absolute; top: 0; transform: translateY(-50%);
  left: calc(12.5% - 12px); right: calc(12.5% - 12px); height: 2px;
}
.flow-line::before {                 /* pointilles qui defilent */
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(90deg, rgba(0,102,204,0.32) 0 6px, transparent 6px 12px);
}
.flow-line::after {                  /* trait plein qui se remplit gauche -> droite */
  content: ''; position: absolute; left: 0; top: 0; height: 2px; width: 0;
  background: linear-gradient(90deg, var(--accent), #5aa6ff);
  box-shadow: 0 0 8px rgba(0,102,204,0.6);
}
.flow-node {
  justify-self: center; align-self: center;
  width: 12px; height: 12px;
  background: #fff; border: 2px solid rgba(0,102,204,0.3);
  transform: rotate(45deg) scale(.5); opacity: .5;   /* losange */
}
@keyframes flowFill  { to { width: 100%; } }
@keyframes flowDash  { to { background-position: 12px 0; } }
@keyframes diamondOn {
  to { transform: rotate(45deg) scale(1); opacity: 1; background: var(--accent); border-color: var(--accent);
       box-shadow: 0 0 0 4px rgba(0,102,204,0.14), 0 0 14px rgba(0,102,204,0.8); }
}
.seance-steps.is-visible .flow-line::before { animation: flowDash 1.1s linear infinite; }
.seance-steps.is-visible .flow-line::after  { animation: flowFill 1.5s cubic-bezier(.4,0,.2,1) .2s both; }
.seance-steps.is-visible .flow-node { animation: diamondOn .5s ease forwards; }
.seance-steps.is-visible .flow-node:nth-of-type(1) { animation-delay: .35s; }
.seance-steps.is-visible .flow-node:nth-of-type(2) { animation-delay: .70s; }
.seance-steps.is-visible .flow-node:nth-of-type(3) { animation-delay: 1.05s; }
.seance-steps.is-visible .flow-node:nth-of-type(4) { animation-delay: 1.40s; }

@media (prefers-reduced-motion: reduce) {
  .seance-step { opacity: 1; clip-path: none; animation: none; }
  .seance-step .step-ghost { opacity: 1; transform: none; animation: none; }
  .seance-step .step-num::after { transform: scaleX(1); animation: none; }
  .seance-flow .flow-line::before { animation: none; }
  .seance-flow .flow-line::after { width: 100%; animation: none; }
  .seance-flow .flow-node { transform: rotate(45deg) scale(1); opacity: 1; background: var(--accent); border-color: var(--accent); animation: none; }
}

/* =========================
   RATING BADGE
   ========================= */
.rating-badge { margin-top: 28px; display: inline-flex; align-items: center; flex-wrap: wrap; gap: 10px; justify-content: center; font-size: 15px; }
.rating-stars { color: #e8a317; letter-spacing: 0.12em; }
.rating-value { font-weight: 600; color: var(--ink); }
.rating-meta { color: var(--muted); }
.rating-link { color: var(--accent); font-size: 14px; margin-left: 6px; }

/* =========================
   FAQ
   ========================= */
.faq { padding: 110px 24px; max-width: 880px; margin: 0 auto; text-align: center; }
.faq-list { margin-top: 56px; text-align: left; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { list-style: none; cursor: pointer; padding: 22px 44px 22px 0; position: relative; font-size: 18px; font-weight: 500; color: var(--ink); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; position: absolute; right: 6px; top: 50%; transform: translateY(-50%); font-size: 26px; font-weight: 300; color: var(--accent); transition: transform .3s ease; }
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p { padding: 0 0 24px; color: var(--ink-2); line-height: 1.6; font-size: 16px; }

/* =========================
   FOOTER ZONES
   ========================= */
.footer-zones { font-size: 12px; color: var(--muted); line-height: 1.6; max-width: 720px; margin: 0 auto 20px; }
.footer-legal a { color: var(--accent); }

/* =========================
   STICKY CTA (mobile-first)
   ========================= */
.sticky-cta { position: fixed; z-index: 9000; right: 18px; bottom: 18px; display: flex; gap: 10px; }
.sticky-cta a { display: inline-flex; align-items: center; gap: 8px; padding: 13px 20px; border-radius: 999px; font-size: 15px; font-weight: 600; box-shadow: 0 8px 24px rgba(0,0,0,0.18); }
.sticky-call { background: #fff; color: var(--accent) !important; border: 1px solid var(--line); }
.sticky-book { background: var(--accent); color: #fff !important; }
.sticky-cta a:hover { opacity: .92; }
.sticky-ico { font-size: 16px; line-height: 1; }

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 900px) {
  .pour-qui { padding: 72px 20px; }
  .pq-grid { grid-template-columns: 1fr; gap: 18px; margin-top: 40px; }
  .seance { padding: 72px 20px; }
  .seance-steps { grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 40px; padding-top: 0; }
  .seance-flow { display: none; }
  .faq { padding: 72px 20px; }
  .sticky-cta { left: 12px; right: 12px; bottom: 12px; }
  .sticky-cta a { flex: 1; justify-content: center; padding: 14px; }
}
@media (max-width: 480px) {
  .seance-steps { grid-template-columns: 1fr; }
  .faq-item summary { font-size: 16px; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-inner { padding: 12px 20px; }
  .hero { padding: 140px 20px 80px; }
  .hero-meta { grid-template-columns: 1fr; gap: 24px; }
  .dark { padding: 120px 20px; }
  .dark-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .dark-lead { margin-bottom: 64px; }
  .soins { padding: 120px 20px; }
  .soins-split { grid-template-columns: 1fr; margin-top: 64px; }
  .soin-block { padding: 48px 28px; }
  .quote-section { padding: 120px 20px; }
  .cabinet {
    padding: 72px 20px;
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .vie { padding: 120px 20px; }
  .vie-lead { margin-bottom: 64px; }
  .vie-grid { grid-template-columns: 1fr; gap: 20px; }
  .vie-card { padding: 36px 28px; }
  .actus { padding: 120px 20px; }
  .actus-grid { grid-template-columns: 1fr; margin-top: 56px; gap: 20px; }
  .actu-card { padding: 36px 28px; }
  .booking { padding: 90px 20px; }
  .infos { padding: 120px 20px; }
  .infos-grid { grid-template-columns: 1fr; margin-top: 56px; gap: 20px; }
  .infos-block { padding: 36px 28px; }
  .temoignages { padding: 120px 20px; }
  .reviews-grid { grid-template-columns: 1fr; margin-top: 56px; }
  .review { padding: 40px 28px; }
  .contact { padding: 120px 20px; }
  .contact-grid {
    grid-template-columns: 1fr;
    margin: 64px auto 56px;
  }
  .contact-card { padding: 36px 28px; }
}

@media (max-width: 480px) {
  body { font-size: 17px; }
  .nav-logo { font-size: 15px; }
  .nav-cta { padding: 7px 14px; font-size: 12px; }
  .hero-cta { flex-direction: column; gap: 18px; }
  .btn-primary { width: 100%; max-width: 280px; text-align: center; }
  .dark-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-media { border-radius: 18px; }
  .cabinet-image { border-radius: 18px; }
}

/* =========================
   SECTION AVIS / RETOUR PRIVE
   ========================= */
.avis-eyebrow { text-align: center; }

.avis-rating {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.avis-stars { color: #f5a623; font-size: 20px; letter-spacing: 2px; }
.avis-rating-text { color: var(--muted); font-size: 14px; letter-spacing: 0.04em; }

.avis-google-btn { margin-top: 36px; }

.avis-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 520px;
  margin: 56px auto 36px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.03em;
}
.avis-divider::before,
.avis-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.avis-form {
  max-width: 520px;
  margin: 0 auto;
  text-align: left;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.03);
}
.avis-honey { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

.avis-field { margin-bottom: 24px; }
.avis-field label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 10px;
}
.avis-opt { color: var(--muted); font-weight: 400; }

.avis-field input,
.avis-field textarea {
  width: 100%;
  font: inherit;
  font-size: 16px;
  color: var(--ink);
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 16px;
  transition: border-color 0.2s, background 0.2s;
}
.avis-field input:focus,
.avis-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--bg);
}
.avis-field textarea { resize: vertical; min-height: 100px; }

.avis-stars-select { display: flex; gap: 6px; }
.avis-star {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
  color: var(--line);
  padding: 0;
  transition: color 0.15s, transform 0.15s;
}
.avis-star:hover { transform: scale(1.12); }
.avis-star.is-active { color: #f5a623; }

.avis-submit { width: 100%; max-width: none; border: none; cursor: pointer; margin-top: 4px; }

.avis-feedback {
  margin-top: 18px;
  font-size: 14px;
  text-align: center;
  min-height: 18px;
}
.avis-feedback.is-success { color: #1a8f4c; }
.avis-feedback.is-error { color: #c0392b; }

.avis-form.is-sent .avis-field,
.avis-form.is-sent .avis-submit { display: none; }

@media (max-width: 480px) {
  .avis-form { padding: 32px 22px; }
}


/* Consentement RGPD du formulaire d avis */
.avis-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 4px 0 20px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
  text-align: left;
  cursor: pointer;
}
.avis-consent input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
  cursor: pointer;
}
.avis-consent a { color: var(--accent); text-decoration: underline; }


/* ============================================================
   Design partage (deplace depuis index.html le 2026-06-25).
   S applique a TOUTES les langues via <base href="../"> -> un
   changement de design ne necessite plus de re-traduire.
   ============================================================ */
  .btn-wibbi { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: 999px; border: 1.5px solid var(--accent); color: var(--accent); font-size: 16px; font-weight: 500; text-decoration: none; transition: background .15s ease, color .15s ease; }
  .btn-wibbi:hover { background: var(--accent); color: #fff; }
  @media (max-width: 640px) { .btn-wibbi { width: 100%; max-width: 280px; justify-content: center; } }

  /* Motif reutilisable : lignes elegantes animees en arriere-plan */
  @keyframes bgLineFlow { to { stroke-dashoffset: -260; } }
  .bg-lines { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }
  .bg-lines path { fill: none; stroke: var(--accent); stroke-width: 1.4; stroke-linecap: round; opacity: .14; stroke-dasharray: 6 16; animation: bgLineFlow 18s linear infinite; }
  .bg-lines path:nth-child(2) { opacity: .10; stroke-width: 1; animation-duration: 26s; animation-direction: reverse; }
  .bg-lines path:nth-child(3) { opacity: .08; animation-duration: 32s; }
  .bg-lines path:nth-child(4) { opacity: .06; stroke-width: 1; animation-duration: 40s; animation-direction: reverse; }
  .bg-lines--light path { stroke: #ffffff; opacity: .24; }
  .bg-lines--light path:nth-child(2) { opacity: .17; }
  .bg-lines--light path:nth-child(3) { opacity: .13; }
  .bg-lines--light path:nth-child(4) { opacity: .10; }
  /* hotes : empilement correct */
  .dark, .booking, .contact { position: relative; overflow: hidden; }
  .dark .dark-inner, .booking .booking-inner,
  .contact .contact-title, .contact .contact-sub, .contact .contact-grid, .contact .contact-final { position: relative; z-index: 1; }
  @media (prefers-reduced-motion: reduce) { .bg-lines path { animation: none; } }

  /* Fond global du site : ambiance estampe (peche -> sauge), continu et fixe */
  body {
    background:
      radial-gradient(115% 85% at 12% 4%, rgba(243,213,194,0.80) 0%, rgba(243,213,194,0) 46%),
      radial-gradient(120% 100% at 94% 100%, rgba(198,206,201,0.75) 0%, rgba(198,206,201,0) 56%),
      linear-gradient(162deg, #f1d7c6 0%, #ece7df 46%, #d2d8d3 100%) !important;
    background-attachment: fixed !important;
  }
  /* sections claires -> transparentes pour laisser passer le fond (le CTA Doctolib bleu reste l'accent) */
  .dark, .soins, .pour-qui, .quote-section, .vie, .seance, .cabinet,
  .temoignages, .actus, .parcours, .faq, .infos, .contact, .app-band,
  .lh-map-section, footer {
    background: transparent !important;
  }

  /* ===== NAV premium + responsive (burger) ===== */
  .nav { background: rgba(255,255,255,0.62) !important; border-bottom: 1px solid rgba(20,23,28,0.06) !important;
    transition: background .3s ease, box-shadow .3s ease; }
  .nav.scrolled { background: rgba(255,255,255,0.85) !important; box-shadow: 0 8px 28px rgba(20,23,28,0.07); }
  .freestyle-injected-logo { height: 38px !important; }
  .nav-logo { font-weight: 600; color: #15171c; }
  .nav-links { gap: 26px; }
  .nav-links a { position: relative; font-size: 13.5px; font-weight: 500; color: #2c2f36; padding: 4px 1px; transition: color .2s ease; }
  .nav-links a::after { content: ''; position: absolute; left: 0; right: 100%; bottom: -3px; height: 2px;
    background: var(--accent); border-radius: 2px; transition: right .28s cubic-bezier(.4,0,.2,1); }
  .nav-links a:hover { color: var(--accent); }
  .nav-links a:hover::after { right: 0; }
  .nav-actions { display: flex; align-items: center; gap: 12px; }
  .nav-cta { box-shadow: 0 6px 16px rgba(0,102,204,.22); transition: transform .18s ease, box-shadow .18s ease; }
  .nav-cta:hover { transform: translateY(-1px); box-shadow: 0 10px 22px rgba(0,102,204,.3); opacity: 1; }
  /* burger */
  .nav-burger { display: none; width: 42px; height: 42px; border: none; background: transparent; cursor: pointer; padding: 10px; border-radius: 12px; }
  .nav-burger span { display: block; height: 2px; width: 100%; background: #15171c; border-radius: 2px; transition: transform .3s ease, opacity .2s ease; }
  .nav-burger span + span { margin-top: 5px; }
  .nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-burger.open span:nth-child(2) { opacity: 0; }
  .nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  /* drawer mobile */
  .nav-mobile { display: none; }
  @media (max-width: 860px) {
    .nav-links { display: none !important; }
    .nav-cta { display: none !important; }
    .nav-burger { display: block; }
    .nav-mobile { display: flex; flex-direction: column; max-height: 0; overflow: hidden;
      background: rgba(255,255,255,0.94); backdrop-filter: saturate(180%) blur(20px); -webkit-backdrop-filter: saturate(180%) blur(20px);
      border-top: 1px solid rgba(20,23,28,0.06); padding: 0 22px;
      transition: max-height .4s cubic-bezier(.4,0,.2,1), padding .4s cubic-bezier(.4,0,.2,1); }
    .nav.open .nav-mobile { max-height: 86vh; padding: 8px 22px 22px; box-shadow: 0 16px 30px rgba(20,23,28,0.08); }
    .nav-mobile a { font-size: 16px; font-weight: 500; color: #1c1f25; padding: 15px 4px; border-bottom: 1px solid rgba(20,23,28,0.06); }
    .nav-mobile a:last-of-type { border-bottom: none; }
    .nav-mobile .nav-mobile-cta { margin-top: 16px; text-align: center; background: var(--accent); color: #fff !important;
      border-radius: 999px; padding: 15px 18px; border-bottom: none; box-shadow: 0 8px 20px rgba(0,102,204,.25); }
  }
  @media (max-width: 380px) { .nav-logo span { font-size: 14px; } .freestyle-injected-logo { height: 32px !important; } }

    .app-band { position: relative; overflow: hidden; padding: 100px 24px; color: #15171c;
      background:
        radial-gradient(120% 110% at 14% 16%, rgba(243,213,194,0.95) 0%, rgba(243,213,194,0) 52%),
        radial-gradient(120% 120% at 92% 96%, rgba(198,206,201,0.85) 0%, rgba(198,206,201,0) 55%),
        linear-gradient(115deg, #f1d7c6 0%, #ece7df 46%, #cfd5d0 100%); }
    .app-lines { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }
    .app-lines path { fill: none; stroke: var(--accent); stroke-width: 1.4; stroke-linecap: round; opacity: .16; stroke-dasharray: 6 16; animation: appFlow 16s linear infinite; }
    .app-lines path:nth-child(2) { opacity: .12; stroke-width: 1; animation-duration: 24s; animation-direction: reverse; }
    .app-lines path:nth-child(3) { opacity: .09; animation-duration: 30s; }
    .app-lines path:nth-child(4) { opacity: .07; stroke-width: 1; animation-duration: 38s; animation-direction: reverse; }
    @keyframes appFlow { to { stroke-dashoffset: -260; } }
    .app-inner { position: relative; z-index: 1; max-width: 1040px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
    .app-eyebrow { font-size: 13px; letter-spacing: .8px; text-transform: uppercase; color: var(--accent); font-weight: 600; margin-bottom: 16px; }
    .app-band h2 { font-size: clamp(28px, 3.6vw, 40px); line-height: 1.08; margin: 0 0 18px; font-weight: 700; letter-spacing: -.5px; }
    .app-band p { font-size: 16px; line-height: 1.65; color: #54585f; margin: 0 0 28px; max-width: 46ch; }
    .app-btn { display: inline-flex; align-items: center; gap: 10px; background: #15171c; color: #fff; padding: 15px 28px; border-radius: 999px; font-weight: 600; text-decoration: none; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; box-shadow: 0 8px 24px rgba(21,23,28,.16); }
    .app-btn:hover { transform: translateY(-2px); background: var(--accent); box-shadow: 0 12px 30px rgba(0,102,204,.28); }
    .app-stores { display: flex; gap: 18px; margin-top: 18px; font-size: 13px; }
    .app-stores a { color: #8a8f98; text-decoration: none; border-bottom: 1px solid #e4e6ea; padding-bottom: 1px; transition: color .15s, border-color .15s; }
    .app-stores a:hover { color: var(--accent); border-color: var(--accent); }
    .app-visual { display: flex; justify-content: center; }
    .app-phone-wrap { position: relative; display: grid; place-items: center; width: 230px; height: 230px; }
    .app-phone-wrap::before { content: ''; position: absolute; inset: 0; border-radius: 50%; background: radial-gradient(circle, rgba(0,102,204,.12), rgba(0,102,204,0) 68%); }
    .app-phone-wrap::after { content: ''; position: absolute; width: 188px; height: 188px; border-radius: 50%; border: 1px solid rgba(0,102,204,.28); animation: appPulse 4.5s ease-in-out infinite; }
    @keyframes appPulse { 0%,100% { transform: scale(1); opacity: .55; } 50% { transform: scale(1.09); opacity: .2; } }
    .app-visual .app-phone { position: relative; font-size: 122px; line-height: 1; filter: drop-shadow(0 16px 30px rgba(21,23,28,.18)); }
    @media (prefers-reduced-motion: reduce) { .app-lines path, .app-phone-wrap::after { animation: none; } }
    @media (max-width: 760px) { .app-inner { grid-template-columns: 1fr; text-align: center; } .app-band p { margin-left: auto; margin-right: auto; } .app-stores { justify-content: center; } .app-visual { order: -1; } }
  

    .vie-sub { max-width: 56ch; margin: 60px auto 0; padding-top: 42px; border-top: 1px solid rgba(0,0,0,.09); text-align: center; }
    .vie-sub-title { font-size: clamp(22px, 2.6vw, 28px); font-weight: 700; margin: 0 0 14px; }
    .vie-sub p { font-size: 16px; line-height: 1.7; color: #555; margin: 0; }
  

    .parcours { padding: 88px 24px; background: #fafafa; }
    .parcours-inner { max-width: 1000px; margin: 0 auto; }
    .parcours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 40px; }
    .parcours-col h3 { font-size: 15px; text-transform: uppercase; letter-spacing: .6px; color: #c8941a; margin: 0 0 22px; }
    .timeline { list-style: none; margin: 0; padding: 0; border-left: 2px solid #e6e2d8; }
    .timeline li { position: relative; padding: 0 0 26px 26px; }
    .timeline li::before { content: ''; position: absolute; left: -7px; top: 4px; width: 12px; height: 12px; border-radius: 50%; background: #c8941a; box-shadow: 0 0 0 4px #fafafa; }
    .timeline li:last-child { padding-bottom: 0; }
    .tl-year { font-weight: 700; font-size: 14px; color: #1a1a1a; display: block; }
    .tl-label { font-size: 15px; color: #444; }
    @media (max-width: 760px) { .parcours-grid { grid-template-columns: 1fr; gap: 36px; } }
  

    .contact-note { font-size: 13px; line-height: 1.5; color: #8a8a8a; margin: 10px 0 14px; max-width: 34ch; }
  

/* ===== Galerie photos + lightbox (ajout 2026-06-26) ===== */
.gallery { padding: 88px 24px; max-width: 1100px; margin: 0 auto; }
.gallery-group { font-size: 14px; text-transform: uppercase; letter-spacing: .6px; color: var(--accent); margin: 40px 0 18px; font-weight: 600; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 12px; }
.gallery-item { padding: 0; border: none; background: none; cursor: pointer; border-radius: 14px; overflow: hidden; aspect-ratio: 4 / 3; box-shadow: 0 8px 24px rgba(20,23,28,.08); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.lightbox { position: fixed; inset: 0; z-index: 1000; background: rgba(12,12,14,.94); display: none; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lb-img { max-width: 92vw; max-height: 88vh; object-fit: contain; border-radius: 6px; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.lb-btn { position: absolute; background: rgba(255,255,255,.12); color: #fff; border: none; cursor: pointer; width: 48px; height: 48px; border-radius: 999px; font-size: 26px; line-height: 1; display: flex; align-items: center; justify-content: center; transition: background .15s ease; backdrop-filter: blur(4px); }
.lb-btn:hover { background: rgba(255,255,255,.25); }
.lb-close { top: 18px; right: 18px; }
.lb-prev { left: 18px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 18px; top: 50%; transform: translateY(-50%); }
@media (max-width: 640px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } .lb-prev { left: 8px; } .lb-next { right: 8px; } .lb-btn { width: 42px; height: 42px; } }

.parcours-portrait { width: 185px; height: 185px; border-radius: 50%; object-fit: cover; object-position: center center; display: block; margin: 6px auto 30px; box-shadow: 0 10px 30px rgba(20,23,28,.18); border: 4px solid #fff; }

/* =========================
   NAV — menus déroulants groupés
   ========================= */
.nav-links { align-items: center; }
.nav-group { position: relative; display: inline-flex; }
.nav-group-btn {
  display: inline-flex; align-items: center; gap: 5px;
  background: none; border: none; cursor: pointer; font: inherit;
  font-size: 13.5px; font-weight: 500; color: #2c2f36; padding: 4px 1px;
  transition: color .2s ease;
}
.nav-group-btn:hover, .nav-group:hover .nav-group-btn, .nav-group:focus-within .nav-group-btn { color: var(--accent); }
.nav-solo { font-size: 13.5px; font-weight: 500; color: #2c2f36; }
.nav-caret { font-size: 9px; opacity: .55; transition: transform .25s ease; }
.nav-group:hover .nav-caret, .nav-group:focus-within .nav-caret { transform: rotate(180deg); }
.nav-menu {
  position: absolute; top: calc(100% + 12px); left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 212px; background: rgba(255,255,255,0.97);
  -webkit-backdrop-filter: saturate(180%) blur(20px); backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid rgba(20,23,28,0.07); border-radius: 14px;
  box-shadow: 0 18px 44px rgba(20,23,28,0.14);
  padding: 8px; display: flex; flex-direction: column; gap: 2px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .2s ease, transform .2s ease; z-index: 130;
}
/* pont invisible bouton -> menu pour ne pas perdre le hover */
.nav-menu::before { content: ''; position: absolute; top: -12px; left: 0; right: 0; height: 12px; }
.nav-group:hover .nav-menu, .nav-group:focus-within .nav-menu, .nav-group.open .nav-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-menu a {
  font-size: 13.5px; color: #2c2f36; font-weight: 500;
  padding: 9px 12px; border-radius: 9px; white-space: nowrap;
  transition: background .15s ease, color .15s ease;
}
.nav-menu a::after { display: none !important; }
.nav-menu a:hover { background: rgba(0,102,204,0.08); color: var(--accent); opacity: 1; }

/* Mobile : liste groupée à plat (en-têtes non cliquables) */
.m-head {
  display: block; font-size: 11.5px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--accent);
  padding: 18px 4px 2px; margin-top: 6px;
}
