/* ============================================================
   Centre C.L.O.E - Aura Medical Excellence
   Design system: luxury medical aesthetic
   Palette: Champagne Gold + Forest Green on warm off-white
   Type:    Playfair Display (editorial serif) + Inter (functional)
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Brand - palette officielle du site en ligne (vert #38503b, or #dbaa29) */
  --champagne-gold: #dbaa29;
  --champagne-gold-soft: #ecc861;
  --champagne-gold-deep: #a87f15;
  --forest-green: #38503b;
  --forest-green-deep: #2a3d2c;
  --sage-wash: #7eaf84;
  --clinical-white: #ffffff;

  /* Surfaces */
  --surface: #f8f8f8;
  --surface-2: #f2f2f2;
  --soft-stone: #e7efe8;
  --soft-stone-dim: #d7e5d9;

  /* Ink */
  --ink: #1a1a1a;
  --ink-soft: #4a4a4a;
  --ink-faint: #656565;
  --hairline: #d7e5d9;

  /* Type */
  --display: "Playfair Display", Georgia, "Times New Roman", serif;
  --body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Rhythm - per DESIGN.md (container 1280, gutter 24/mobile 20, stacks 80/48/24) */
  --container: 1280px;
  --gutter: clamp(20px, 3vw, 24px);
  --stack-lg: clamp(48px, 9vw, 80px);
  --stack-md: clamp(32px, 5vw, 48px);
  --stack-sm: 24px;

  /* Shape - per DESIGN.md rounded scale */
  --r-sm: 0.25rem;
  --r: 0.5rem;
  --r-md: 0.75rem;
  --r-lg: 1rem;
  --r-xl: 1.5rem;
  --r-full: 9999px;

  /* Depth - soft, forest-tinted ambient shadows */
  --shadow-sm: 0 2px 10px -4px rgba(45, 64, 47, 0.12);
  --shadow-md: 0 18px 40px -24px rgba(45, 64, 47, 0.28);
  --shadow-lg: 0 40px 80px -36px rgba(45, 64, 47, 0.34);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

* { margin: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: var(--champagne-gold); color: var(--clinical-white); }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--surface); }
::-webkit-scrollbar-thumb { background: var(--soft-stone-dim); border-radius: 999px; border: 3px solid var(--surface); }
::-webkit-scrollbar-thumb:hover { background: var(--champagne-gold); }

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

.section { padding-block: var(--stack-lg); }
.section--tight { padding-block: var(--stack-md); }

/* Lists used as custom layouts: remove default browser indent (fixes shifted text) */
.nav__links, .drawer__links, .footer ul, .hours, .book-card ul, .faq, .price-nav { padding: 0; margin: 0; list-style: none; }

/* ---------- Type scale ---------- */
.eyebrow {                      /* label-caps: 12px / 600 / 0.1em */
  font-family: var(--body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--champagne-gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--champagne-gold);
  display: inline-block;
}
.eyebrow.is-centered::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--champagne-gold);
  display: inline-block;
}

.display {                      /* display-lg: 48px desktop / 36px mobile */
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-size: clamp(2.25rem, 4.4vw, 3rem);
  color: var(--forest-green);
}
.h2 {                           /* headline-md: 32px / 500 */
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.01em;
  font-size: clamp(1.6rem, 3vw, 2rem);
  color: var(--forest-green);
}
.h3 {                           /* headline-sm: 24px / 500 */
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: var(--forest-green);
  line-height: 1.4;
}
.lead {                         /* body-lg: 18px / 1.6 */
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--ink-soft);
}
.muted { color: var(--ink-soft); }
.gold { color: var(--champagne-gold-deep); }
.serif-italic { font-family: var(--display); font-style: italic; font-weight: 500; }

/* ---------- Buttons ---------- */
.btn {                          /* button: 14px / 500 / 0.05em, rounded-lg (0.5rem) per maquette */
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 1em 2em;
  border-radius: var(--r);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease),
    color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  will-change: transform;
}
.btn .material-symbols-outlined { font-size: 1.1em; }
.btn:active { transform: scale(0.97); }

.btn--gold { background: var(--champagne-gold); color: var(--forest-green-deep); box-shadow: var(--shadow-md); }
.btn--gold:hover { background: var(--champagne-gold-soft); transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn--forest { background: var(--forest-green); color: var(--clinical-white); }
.btn--forest:hover { background: var(--forest-green-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn--ghost { border: 1px solid var(--champagne-gold); color: var(--champagne-gold-deep); }
.btn--ghost:hover { background: var(--champagne-gold); color: var(--clinical-white); transform: translateY(-2px); }

.btn--light { background: var(--clinical-white); color: var(--forest-green); }
.btn--light:hover { background: var(--soft-stone); transform: translateY(-2px); }

/* arrow link */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--champagne-gold-deep);
  transition: gap 0.35s var(--ease);
}
.arrow-link:hover { gap: 0.9em; }

/* ---------- Material symbols ---------- */
.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
  line-height: 1;
  user-select: none;
}
.ms-fill { font-variation-settings: "FILL" 1, "wght" 300; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease),
    backdrop-filter 0.4s var(--ease);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.nav.is-stuck {
  background: rgba(251, 249, 248, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
}
.nav.is-stuck .nav__inner { height: 70px; }

/* Transparent nav over dark hero / pagehead - keep it legible */
.nav:not(.is-stuck) .brand { color: var(--clinical-white); }
.nav:not(.is-stuck) .brand small { color: var(--champagne-gold-soft); }
.nav:not(.is-stuck) .nav__links a { color: rgba(255, 255, 255, 0.82); }
.nav:not(.is-stuck) .nav__links a:hover,
.nav:not(.is-stuck) .nav__links a[aria-current="page"] { color: var(--clinical-white); }
.nav:not(.is-stuck) .nav__burger { color: var(--clinical-white); }

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--forest-green);
}
.brand__mark { height: 52px; width: auto; display: block; flex: none; transition: height 0.4s var(--ease); }
.nav.is-stuck .brand__mark { height: 44px; }
.brand__wm { display: flex; flex-direction: column; line-height: 1.05; }
.brand small {
  font-family: var(--body);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--champagne-gold-deep);
  margin-top: 0.3rem;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.4vw, 2.4rem);
  list-style: none;
}
.nav__links a {
  position: relative;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  padding-block: 0.4em;
  transition: color 0.3s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1.5px;
  background: var(--champagne-gold);
  transition: width 0.35s var(--ease);
}
.nav__links a:hover,
.nav__links a[aria-current="page"] { color: var(--forest-green); }
.nav__links a:hover::after,
.nav__links a[aria-current="page"]::after { width: 100%; }

.nav__cta { display: inline-flex; }

.nav__burger {
  display: none;
  width: 46px; height: 46px;
  align-items: center;
  justify-content: center;
  color: var(--forest-green);
}
.nav__burger .material-symbols-outlined { font-size: 1.8rem; }

/* mobile drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  padding: var(--gutter);
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
  visibility: hidden;
}
.drawer.is-open { transform: translateX(0); visibility: visible; }
.drawer__top { display: flex; justify-content: space-between; align-items: center; height: 70px; }
.drawer__links { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; margin-top: 2rem; }
.drawer__links a {
  font-family: var(--display);
  font-size: 1.8rem;
  color: var(--forest-green);
  padding-block: 0.5rem;
  border-bottom: 1px solid var(--hairline);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.drawer__links a .material-symbols-outlined { color: var(--champagne-gold); }
.drawer .btn { margin-top: auto; justify-content: center; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-top: 84px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  animation: heroZoom 16s var(--ease) forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(31, 45, 32, 0.62) 0%, rgba(31, 45, 32, 0.28) 45%, rgba(31, 45, 32, 0.05) 100%);
}
.hero__grain { position: absolute; inset: 0; opacity: 0.5; mix-blend-mode: overlay; pointer-events: none; }
.hero__inner { position: relative; z-index: 2; width: 100%; }
.hero__card {
  max-width: 640px;
  background: rgba(251, 249, 248, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-left: 3px solid var(--champagne-gold);
  border-radius: var(--r-xl);
  padding: clamp(2rem, 4vw, 3.2rem);
  box-shadow: var(--shadow-lg);
}
.hero__card .display { margin-block: 0.6rem 1.2rem; }
.hero__loc {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--ink-soft);
  margin-bottom: 1.8rem;
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.hero__loc .material-symbols-outlined { color: var(--champagne-gold); font-size: 1.2em; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }

.scroll-hint {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--clinical-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.scroll-hint .material-symbols-outlined { animation: bob 2s var(--ease) infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* compact page header (interior pages) */
.pagehead {
  position: relative;
  padding-top: calc(84px + var(--stack-md));
  padding-bottom: var(--stack-md);
  background: var(--forest-green);
  color: var(--clinical-white);
  overflow: hidden;
}
.pagehead::after {
  content: "";
  position: absolute;
  right: -120px; top: -120px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(219, 170, 41, 0.32), transparent 70%);
  pointer-events: none;
}
.pagehead .display { color: var(--clinical-white); }
.pagehead .eyebrow { color: var(--champagne-gold-soft); }
.pagehead .eyebrow::before, .pagehead .eyebrow::after { background: var(--champagne-gold-soft); }
.pagehead .lead { color: rgba(255, 255, 255, 0.78); max-width: 60ch; margin-top: 1rem; }
.breadcrumb { font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 1.4rem; display: flex; flex-wrap: wrap; gap: 0.6em; }
.breadcrumb a:hover { color: var(--champagne-gold-soft); }

/* ============================================================
   GENERIC SECTIONS
   ============================================================ */
.section-head { max-width: 60ch; margin-bottom: var(--stack-md); }
.section-head.is-centered { margin-inline: auto; text-align: center; }
.section-head .h2 { margin-top: 0.8rem; }
.section-head .lead { margin-top: 1rem; }

/* two-col editorial */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--stack-md);
  align-items: center;
}
.split--portrait { grid-template-columns: 0.9fr 1.1fr; }

.media {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.media img { width: 100%; height: 100%; object-fit: cover; }
.media--portrait { aspect-ratio: 4 / 5; }
.media--square { aspect-ratio: 1; }
.cta-band--square { aspect-ratio: 1; display: flex; flex-direction: column; justify-content: center; }
.media__halo {
  position: absolute;
  width: 240px; height: 240px;
  border-radius: 999px;
  background: var(--champagne-gold);
  filter: blur(70px);
  opacity: 0.3;
  z-index: -1;
}
.media__halo--br { bottom: -60px; right: -50px; }
.media__halo--tl { top: -60px; left: -50px; background: var(--sage-wash); }

.prose p + p { margin-top: 1.1rem; }
.prose strong { color: var(--forest-green); font-weight: 600; }

/* value markers */
.feature-list { display: grid; gap: 1.6rem; margin-top: var(--stack-sm); }
.feature {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}
.feature__icon {
  flex: none;
  width: 52px; height: 52px;
  border-radius: 999px;
  background: var(--soft-stone);
  display: grid;
  place-items: center;
  color: var(--forest-green);
  transition: background 0.4s var(--ease), color 0.4s var(--ease), transform 0.4s var(--ease);
}
.feature:hover .feature__icon { background: var(--champagne-gold); color: var(--clinical-white); transform: rotate(-6deg) scale(1.05); }
.feature h4 { font-family: var(--display); font-weight: 500; font-size: 1.15rem; color: var(--forest-green); margin-bottom: 0.25rem; }
.feature p { color: var(--ink-soft); font-size: 0.98rem; }

/* about icon row (Sécurité / Précision / Soin) */
.about-icons { display: flex; gap: clamp(1.5rem, 5vw, 3rem); margin-top: var(--stack-sm); }
.about-icon { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.5rem; }
.about-icon .material-symbols-outlined { font-size: 2.4rem; color: var(--champagne-gold); }
.about-icon span:last-child { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink); }

/* stat row */
.stats { display: flex; gap: clamp(1.5rem, 5vw, 4rem); flex-wrap: wrap; margin-top: var(--stack-sm); }
.stat__num { font-family: var(--display); font-size: clamp(2.2rem, 4vw, 3rem); color: var(--champagne-gold-deep); line-height: 1; }
.stat__label { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-faint); margin-top: 0.5rem; }

/* ---------- Bento services ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 250px;
  gap: 1.5rem;
}
.tile {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.tile img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.tile:hover img { transform: scale(1.07); }
.tile__scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(31,45,32,0.85) 0%, rgba(31,45,32,0.12) 55%, transparent 100%); }
.tile__body { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.5rem; color: var(--clinical-white); z-index: 2; }
.tile__body h3 { font-family: var(--display); font-size: 1.4rem; margin-bottom: 0.3rem; }
.tile__body p { font-size: 0.92rem; opacity: 0.88; max-width: 38ch; }
.tile--solid { background: var(--forest-green); display: flex; flex-direction: column; justify-content: flex-end; padding: 1.6rem; color: var(--clinical-white); }
.tile--solid .tile__ic { position: absolute; top: 1.3rem; right: 1.3rem; color: var(--champagne-gold); font-size: 2.4rem; }
.tile--solid h3 { font-family: var(--display); font-size: 1.4rem; margin-bottom: 0.4rem; }
.tile--solid p { font-size: 0.92rem; color: rgba(255,255,255,0.78); margin-bottom: 1rem; }
.tile--solid .arrow-link { color: var(--champagne-gold-soft); }

.col-8 { grid-column: span 8; }
.col-6 { grid-column: span 6; }
.col-4 { grid-column: span 4; }
.row-2 { grid-row: span 2; }

/* chip */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  padding: 0.4em 0.9em;
  border-radius: 999px;
  background: rgba(126, 175, 132, 0.16);
  color: var(--forest-green);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---------- Card grid (services index) ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(290px, 100%), 1fr)); gap: 1.4rem; }
.card {
  background: var(--clinical-white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card__img { aspect-ratio: 16 / 11; overflow: hidden; }
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.card:hover .card__img img { transform: scale(1.06); }
.card__body { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.card__body h3 { font-family: var(--display); font-size: 1.3rem; color: var(--forest-green); }
.card__body p { font-size: 0.94rem; color: var(--ink-soft); flex: 1; }
.card__body .arrow-link { margin-top: 0.4rem; }
.card__icon {
  width: 46px; height: 46px;
  border-radius: var(--r-md);
  background: var(--soft-stone);
  color: var(--forest-green);
  display: grid; place-items: center;
  margin-bottom: 0.2rem;
}

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  isolation: isolate;
  background: var(--forest-green);
  color: var(--clinical-white);
  border-radius: var(--r-xl);
  padding: clamp(2.5rem, 6vw, 4.5rem);
  overflow: hidden;
  text-align: center;
}
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("/assets/img/centre.webp") center/cover no-repeat;
  filter: blur(1px) brightness(0.92) saturate(1.05);
  transform: scale(1.06);
  pointer-events: none;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: -40%;
  z-index: -1;
  background:
    linear-gradient(160deg, rgba(24,42,32,0.55), rgba(24,42,32,0.38)),
    radial-gradient(circle at 30% 30%, rgba(219,170,41,0.34), transparent 55%);
  pointer-events: none;
}
.cta-band .h2 { color: var(--clinical-white); position: relative; text-shadow: 0 2px 12px rgba(0,0,0,0.35); }
.cta-band .lead { color: rgba(255,255,255,0.92); position: relative; max-width: 52ch; margin: 1rem auto 1.8rem; text-shadow: 0 1px 8px rgba(0,0,0,0.3); }
.cta-band .hero__actions { justify-content: center; position: relative; }

/* ============================================================
   PRICING (tarifs)
   ============================================================ */
.price-nav { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: var(--stack-md); }
.price-nav a {
  padding: 0.55em 1.1em;
  border-radius: 999px;
  border: 1px solid var(--hairline);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: all 0.3s var(--ease);
}
.price-nav a:hover { border-color: var(--champagne-gold); color: var(--forest-green); background: var(--clinical-white); }

.price-group { margin-bottom: var(--stack-md); scroll-margin-top: 110px; }
.price-group__head { display: flex; align-items: baseline; gap: 1rem; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 2px solid var(--soft-stone); }
.price-group__head .material-symbols-outlined { color: var(--champagne-gold); font-size: 1.8rem; }
.price-group__head h2 { font-family: var(--display); font-size: 1.7rem; color: var(--forest-green); }

.price-table { display: grid; gap: 0.2rem; }
.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 1rem;
  padding: 0.9rem 1.2rem;
  border-radius: var(--r-sm);
  transition: background 0.3s var(--ease);
}
.price-row:hover { background: var(--clinical-white); }
.price-row__name { color: var(--ink); font-weight: 500; }
.price-row__note { display: block; font-size: 0.82rem; color: var(--ink-faint); font-weight: 400; margin-top: 0.15rem; }
.price-row__dots { border-bottom: 1px dotted var(--soft-stone-dim); flex: 1; }
.price-row__price { font-family: var(--display); font-size: 1.15rem; color: var(--champagne-gold-deep); white-space: nowrap; }
.price-row__price small { font-family: var(--body); font-size: 0.7rem; color: var(--ink-faint); letter-spacing: 0.04em; }
.price-free { color: var(--sage-wash); font-weight: 600; }

.price-note { background: var(--soft-stone); border-radius: var(--r-md); padding: 1.4rem 1.6rem; font-size: 0.92rem; color: var(--ink-soft); display: flex; gap: 0.9rem; align-items: flex-start; }
.price-note .material-symbols-outlined { color: var(--champagne-gold-deep); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: var(--stack-md); align-items: stretch; }
.map-frame { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-md); min-height: 420px; }
.map-frame iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }
.info-card { background: var(--clinical-white); border-radius: var(--r-xl); padding: clamp(1.8rem, 3vw, 2.6rem); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 1.6rem; }
.info-item { display: flex; gap: 1rem; align-items: flex-start; }
.info-item .material-symbols-outlined { color: var(--champagne-gold-deep); flex: none; }
.info-item h4 { font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 0.25rem; }
.info-item p, .info-item a { color: var(--ink); font-size: 1.05rem; }
.info-item a:hover { color: var(--champagne-gold-deep); }

/* form */
.form { display: grid; gap: 1.2rem; }
.form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; min-width: 0; }
.field label { font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-faint); font-weight: 600; }
.field input, .field select, .field textarea {
  font-family: var(--body);
  font-size: 0.98rem;
  width: 100%;
  min-width: 0;
  padding: 0.85em 1em;
  border: 1px solid var(--soft-stone-dim);
  border-radius: var(--r-md);
  background: var(--surface);
  color: var(--ink);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--champagne-gold);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.18);
}
.field textarea { resize: vertical; min-height: 130px; }
.form__note { font-size: 0.82rem; color: var(--ink-faint); }

/* steps (rdv) */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.4rem; counter-reset: step; }
.step { background: var(--clinical-white); border-radius: var(--r-xl); padding: 2rem 1.6rem; box-shadow: var(--shadow-sm); position: relative; }
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--display);
  font-size: 2.6rem;
  color: var(--soft-stone-dim);
  line-height: 1;
}
.step h3 { font-family: var(--display); font-size: 1.25rem; color: var(--forest-green); margin: 0.6rem 0 0.4rem; }
.step p { font-size: 0.94rem; color: var(--ink-soft); }

/* booking channels (Planity / Doctolib) */
.booking-split { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; align-items: stretch; }
.book-card { background: var(--clinical-white); border-radius: var(--r-xl); padding: clamp(1.8rem, 3vw, 2.6rem); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 1rem; border-top: 4px solid var(--champagne-gold); }
.book-card--doctolib { border-top-color: var(--forest-green); }
.book-card__tag { display: inline-flex; align-items: center; gap: 0.5em; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--champagne-gold-deep); }
.book-card--doctolib .book-card__tag { color: var(--forest-green); }
.book-card h3 { font-family: var(--display); font-size: 1.5rem; color: var(--forest-green); }
.book-card > p { color: var(--ink-soft); font-size: 0.98rem; }
.book-card ul { list-style: none; display: grid; gap: 0.5rem; margin: 0.2rem 0; }
.book-card li { display: flex; gap: 0.6em; align-items: flex-start; font-size: 0.95rem; color: var(--ink-soft); }
.book-card li .material-symbols-outlined { color: var(--champagne-gold); font-size: 1.2em; flex: none; }
.book-card--doctolib li .material-symbols-outlined { color: var(--forest-green); }
.book-card .btn { margin-top: auto; align-self: flex-start; }

/* Liste "fiche" (Indications / En pratique sur les pages de prestation) :
   pastille d'icône + texte, séparés par de fins filets. Remplace le
   détournement de .book-card qui laissait une bordure dorée traverser le texte. */
.speclist { list-style: none; display: flex; flex-direction: column; margin-top: 1.4rem; }
.speclist li {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--hairline);
  font-size: 1.02rem;
  line-height: 1.45;
  color: var(--ink);
}
.speclist li:first-child { padding-top: 0; }
.speclist li:last-child { border-bottom: none; }
.speclist li .material-symbols-outlined {
  flex: none;
  display: grid;
  place-items: center;
  width: 2.1rem; height: 2.1rem;
  border-radius: 50%;
  background: rgba(219, 170, 41, 0.14);
  color: var(--champagne-gold-deep);
  font-size: 1.15rem;
}

/* Planity embed */
.planity-embed { min-height: 120px; }
.planity-hint { text-align: center; color: var(--ink-faint); font-size: 0.92rem; padding: 2.4rem 1.6rem; border: 1px dashed var(--soft-stone-dim); border-radius: var(--r-lg); background: var(--clinical-white); }
.planity-hint a { color: var(--champagne-gold-deep); text-decoration: underline; }
#planity:not(:empty) + .planity-hint { display: none; }

/* hours */
.hours { list-style: none; display: grid; gap: 0.6rem; }
.hours li { display: flex; justify-content: space-between; padding-bottom: 0.6rem; border-bottom: 1px solid var(--hairline); font-size: 0.95rem; }
.hours li span:last-child { color: var(--ink-faint); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--forest-green-deep); color: rgba(255, 255, 255, 0.78); padding-block: var(--stack-md) 2rem; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: var(--stack-sm); }
.footer .brand { color: var(--clinical-white); }
.footer .brand small { color: var(--champagne-gold-soft); }
.footer p { font-size: 0.92rem; margin-top: 1rem; max-width: 34ch; }
.footer h5 { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--champagne-gold-soft); margin-bottom: 1.1rem; }
.footer ul { list-style: none; display: grid; gap: 0.6rem; }
.footer ul a { font-size: 0.92rem; transition: color 0.3s var(--ease); }
.footer ul a:hover { color: var(--clinical-white); }
.footer__social { display: flex; gap: 0.8rem; margin-top: 1.4rem; }
.footer__social a {
  width: 42px; height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  display: grid; place-items: center;
  color: var(--clinical-white);
  transition: all 0.35s var(--ease);
}
.footer__social a:hover { background: var(--champagne-gold); border-color: var(--champagne-gold); transform: translateY(-3px); }
/* Logo Facebook officiel : couleur de marque fixe (#1877F2), non modifiable au survol
   (charte Meta Brand Resource Center - le logo doit rester complet et non altéré). */
.footer__social a.footer__social-fb { background: #1877F2; border-color: #1877F2; }
.footer__social a.footer__social-fb:hover { background: #1877F2; border-color: #1877F2; transform: translateY(-3px); box-shadow: 0 6px 16px rgba(24,119,242,0.45); }
.footer__bar { margin-top: var(--stack-sm); padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.12); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.footer__bar a:hover { color: var(--champagne-gold-soft); }

/* ============================================================
   IMAGE PLACEHOLDERS (on-brand, self-contained)
   Swap any .ph block for a real <img> when photography is ready.
   ============================================================ */
.ph {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #34492f 0%, #2d402f 45%, #1f2d20 100%);
}
.media .ph, .card__img .ph, .hero .ph { position: absolute; }
.ph::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 78% 18%, rgba(197, 160, 89, 0.5), transparent 45%),
    radial-gradient(circle at 12% 88%, rgba(126, 175, 132, 0.35), transparent 40%);
}
.ph::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.5;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.ph__mark {
  position: relative;
  z-index: 2;
  font-family: var(--display);
  font-size: clamp(2rem, 6vw, 3.4rem);
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.16);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
}
.ph__mark .material-symbols-outlined { font-size: 2.6rem; color: rgba(197, 160, 89, 0.55); }
.ph--gold { background: linear-gradient(135deg, #d8bd84 0%, #c5a059 50%, #9a7a36 100%); }
.ph--gold .ph__mark { color: rgba(31, 45, 32, 0.18); }
.ph--gold .ph__mark .material-symbols-outlined { color: rgba(31, 45, 32, 0.35); }
.ph--stone { background: linear-gradient(135deg, #f2efe8 0%, #eae7e0 50%, #ddd8cd 100%); }
.ph--stone .ph__mark { color: rgba(45, 64, 47, 0.14); }
.ph--stone .ph__mark .material-symbols-outlined { color: rgba(197, 160, 89, 0.6); }
.ph--alt::before {
  background-image:
    radial-gradient(circle at 20% 22%, rgba(197, 160, 89, 0.5), transparent 42%),
    radial-gradient(circle at 85% 80%, rgba(126, 175, 132, 0.4), transparent 45%);
}

/* ============================================================
   BOOKING MODAL (Planity / Doctolib chooser)
   ============================================================ */
.bk-modal { position: fixed; inset: 0; z-index: 300; display: flex; align-items: center; justify-content: center; padding: var(--gutter); }
.bk-modal[hidden] { display: none; }
.bk-modal__overlay { position: absolute; inset: 0; background: rgba(42, 61, 44, 0.55); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.bk-modal__panel { position: relative; z-index: 1; background: var(--clinical-white); border-radius: var(--r-xl); padding: clamp(1.8rem, 4vw, 2.8rem); max-width: 560px; width: 100%; box-shadow: var(--shadow-lg); animation: bkIn 0.4s var(--ease); }
@keyframes bkIn { from { opacity: 0; transform: translateY(16px) scale(0.98); } to { opacity: 1; transform: none; } }
.bk-modal__close { position: absolute; top: 1rem; right: 1rem; width: 40px; height: 40px; border-radius: 999px; display: grid; place-items: center; color: var(--ink-soft); transition: background 0.3s var(--ease); }
.bk-modal__close:hover { background: var(--soft-stone); }
.bk-modal__panel h3 { margin: 0.5rem 0 1.3rem; }
.bk-choices { display: grid; gap: 1rem; }
.bk-choice { display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto; column-gap: 1rem; align-items: center; padding: 1.1rem 1.3rem; border: 1px solid var(--hairline); border-radius: var(--r-lg); transition: border-color 0.3s var(--ease), background 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.bk-choice:hover { border-color: var(--champagne-gold); background: var(--surface); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.bk-choice--doctolib:hover { border-color: var(--forest-green); }
.bk-choice > .material-symbols-outlined { grid-row: 1 / 3; width: 48px; height: 48px; border-radius: 999px; background: var(--soft-stone); color: var(--forest-green); display: grid; place-items: center; }
.bk-choice__t { font-family: var(--display); font-size: 1.15rem; color: var(--forest-green); }
.bk-choice__s { font-size: 0.85rem; color: var(--ink-faint); }
.bk-modal__tel { margin-top: 1.2rem; text-align: center; font-size: 0.92rem; color: var(--ink-soft); }
.bk-modal__tel a { color: var(--champagne-gold-deep); font-weight: 600; }
.ok-modal__icon { display: grid; place-items: center; margin-bottom: 0.6rem; }
.ok-modal__icon .material-symbols-outlined { font-size: 3.4rem; color: var(--sage-wash); font-variation-settings: "FILL" 1; }

/* honeypot (anti-spam) + form states */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__note.is-error { color: #ba1a1a; font-weight: 600; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq { display: grid; gap: 0.8rem; max-width: 820px; margin-inline: auto; }
.faq__item { background: var(--clinical-white); border-radius: var(--r-lg); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq__item summary { cursor: pointer; list-style: none; padding: 1.2rem 1.4rem; font-family: var(--display); font-size: 1.12rem; color: var(--forest-green); display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "add"; font-family: "Material Symbols Outlined"; font-weight: 300; color: var(--champagne-gold); }
.faq__item[open] summary::after { content: "remove"; }
.faq__item p { padding: 0 1.4rem 1.3rem; color: var(--ink-soft); }
.faq__item p a { color: var(--champagne-gold-deep); text-decoration: underline; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.12s; }
.reveal[data-delay="2"] { transition-delay: 0.24s; }
.reveal[data-delay="3"] { transition-delay: 0.36s; }
.reveal[data-delay="4"] { transition-delay: 0.48s; }

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

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .split, .split--portrait { grid-template-columns: 1fr; }
  .split .media { order: -1; }
  /* La photo portrait (ratio 4/5, très haute) passe au-dessus du texte sur mobile ;
     on la raccourcit pour qu'elle ne domine plus l'écran avant le texte. */
  .media--portrait { aspect-ratio: 4 / 3; }
  .contact-grid { grid-template-columns: 1fr; }
  .booking-split { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .col-8, .col-6, .col-4 { grid-column: span 12; }
  .row-2 { grid-row: span 1; }
  .bento { grid-auto-rows: 240px; }
  .about-icons { justify-content: center; }
  .cta-band--square { aspect-ratio: auto; padding-block: clamp(2rem, 6vw, 3rem); }
}

@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; }
  .form .row2 { grid-template-columns: 1fr; }
  /* Marque plus compacte pour ne jamais déborder la barre sur petit écran */
  .brand { font-size: 1.1rem; gap: 0.5rem; }
  .brand__mark { height: 44px; }
  .nav.is-stuck .brand__mark { height: 40px; }
  .hero__actions .btn { flex: 1; justify-content: center; }
  .price-nav { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 0.5rem; }
  .price-nav a { white-space: nowrap; }
  /* Hero mobile : la carte quasi-opaque en pleine largeur masquait la photo de fond,
     et son bouton pouvait chevaucher le repère de défilement en bas d'écran. */
  .hero__card { background: rgba(251, 249, 248, 0.8); padding: 1.6rem; }
  .scroll-hint { display: none; }
}
