/* =========================================================================
   Cabinet Dr LAMBOUR Gautier — Design System
   Refonte 2026 · statique · sans dépendance JS externe
   ========================================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Palette — teal médical calme + accent terracotta chaleureux */
  --ink:        #10302f;
  --ink-soft:   #34514f;
  --muted:      #5c716f;
  --line:       #e2ebe9;
  --line-strong:#c9d8d6;

  --teal-900:   #0a4f4a;
  --teal-700:   #0c6b64;
  --teal-600:   #0e7d74;
  --teal-500:   #159c90;
  --teal-300:   #6fc6bc;
  --teal-100:   #cfe9e5;
  --mint-50:    #eef7f5;
  --mint-25:    #f5faf9;

  --accent:     #e07a53;   /* terracotta chaleureux — CTA / highlights */
  --accent-dark:#c9603a;
  --accent-50:  #fdf1ec;

  --sand:       #f7f4ee;
  --paper:      #ffffff;

  --danger:     #c0392b;

  /* Typographie */
  --font-head: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Rythme & rayons */
  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 2px rgba(16,48,47,.06), 0 2px 8px rgba(16,48,47,.05);
  --shadow:    0 8px 30px rgba(16,48,47,.09);
  --shadow-lg: 0 24px 60px rgba(16,48,47,.14);

  --container: 1160px;
  --gutter: clamp(20px, 5vw, 48px);

  --header-h: 76px;
}

/* ---------- Reset léger ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--teal-700); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--teal-900); }
strong { font-weight: 650; color: var(--ink); }
:focus-visible { outline: 3px solid var(--teal-500); outline-offset: 2px; border-radius: 4px; }

/* ---------- Typographie ---------- */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 550; line-height: 1.12; color: var(--ink); letter-spacing: -.01em; }
h1 { font-size: clamp(2.3rem, 5.2vw, 3.7rem); }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.05rem; font-weight: 600; }
p  { color: var(--ink-soft); }
.lead { font-size: clamp(1.1rem, 2vw, 1.35rem); color: var(--ink-soft); line-height: 1.55; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: .82rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--teal-700);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--accent); border-radius: 2px; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container-narrow { max-width: 820px; }
.section { padding-block: clamp(56px, 9vw, 108px); }
.section-tight { padding-block: clamp(40px, 6vw, 68px); }
.bg-mint { background: var(--mint-50); }
.bg-sand { background: var(--sand); }
.bg-ink  { background: var(--ink); color: #dfe9e7; }
.bg-ink h1, .bg-ink h2, .bg-ink h3 { color: #fff; }
.center { text-align: center; }
.section-head { max-width: 640px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head.center { margin-inline: auto; }
.section-head p { margin-top: 14px; }

.grid { display: grid; gap: clamp(18px, 2.5vw, 28px); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  padding: 13px 24px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; text-decoration: none; transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 8px 22px rgba(224,122,83,.32); }
.btn-primary:hover { background: var(--accent-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(224,122,83,.4); }
.btn-teal { background: var(--teal-600); color: #fff; box-shadow: 0 8px 22px rgba(14,125,116,.28); }
.btn-teal:hover { background: var(--teal-700); color: #fff; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--teal-600); color: var(--teal-700); background: var(--mint-25); }
.btn-white { background: #fff; color: var(--ink); }
.btn-white:hover { background: #fff; color: var(--teal-700); transform: translateY(-2px); }
.btn-lg { padding: 16px 30px; font-size: 1.05rem; }
.btn-block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--teal-900); color: #cdeae5; font-size: .86rem;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 40px; padding-block: 6px; }
.topbar a { color: #eafaf7; text-decoration: none; }
.topbar a:hover { color: #fff; }
.topbar .tb-left { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar .tb-item { display: inline-flex; align-items: center; gap: 7px; }
.topbar svg { width: 15px; height: 15px; opacity: .85; }
@media (max-width: 720px) { .topbar .tb-hours { display: none; } }
@media (max-width: 480px) { .topbar .tb-addr { display: none; } }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.86); backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; min-height: var(--header-h); gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.brand-mark { width: 42px; height: 42px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: var(--font-head); font-weight: 600; font-size: 1.16rem; color: var(--ink); }
.brand-sub { font-size: .72rem; letter-spacing: .04em; color: var(--muted); text-transform: uppercase; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-weight: 500; font-size: .96rem; color: var(--ink-soft); text-decoration: none;
  padding: 9px 13px; border-radius: 8px; transition: color .15s, background .15s;
}
.nav a:hover { color: var(--teal-700); background: var(--mint-50); }
.nav a[aria-current="page"] { color: var(--teal-700); background: var(--mint-50); font-weight: 600; }
.nav a { white-space: nowrap; }
@media (min-width: 1001px) and (max-width: 1240px) {
  .nav { gap: 2px; }
  .nav a { font-size: .92rem; padding: 8px 10px; }
}
.header-cta { display: flex; align-items: center; gap: 10px; }

.nav-toggle { display: none; background: none; border: 1.5px solid var(--line-strong); border-radius: 10px; width: 44px; height: 44px; align-items: center; justify-content: center; cursor: pointer; color: var(--ink); }
.nav-toggle svg { width: 22px; height: 22px; }

@media (max-width: 1000px) {
  .nav, .header-cta .btn-ghost { display: none; }
  .nav-toggle { display: inline-flex; }
}
/* Mobile nav panel */
.mobile-nav {
  position: fixed; inset: var(--header-h) 0 0 0; z-index: 55;
  background: rgba(255,255,255,.98); backdrop-filter: blur(8px);
  transform: translateX(100%); transition: transform .3s ease; visibility: hidden;
  padding: 24px var(--gutter) 40px; overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); visibility: visible; }
.mobile-nav a { display: block; font-size: 1.15rem; font-weight: 500; color: var(--ink); text-decoration: none; padding: 15px 4px; border-bottom: 1px solid var(--line); }
.mobile-nav a[aria-current="page"] { color: var(--teal-700); }
.mobile-nav .btn { margin-top: 22px; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--mint-50); }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(60% 55% at 82% 12%, rgba(111,198,188,.45), transparent 60%),
    radial-gradient(50% 50% at 8% 95%, rgba(224,122,83,.14), transparent 60%),
    linear-gradient(180deg, #f0f8f6, #eaf5f2);
}
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 64px); align-items: center; padding-block: clamp(48px, 8vw, 92px); }
.hero h1 { margin-top: 18px; }
.hero .lead { margin-top: 20px; max-width: 30ch; }
.hero .btn-row { margin-top: 30px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px 20px; margin-top: 30px; }
.trust-chip { display: inline-flex; align-items: center; gap: 8px; font-size: .9rem; font-weight: 500; color: var(--ink-soft); }
.trust-chip svg { width: 18px; height: 18px; color: var(--teal-600); flex: none; }
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero .lead { margin-inline: auto; }
  .hero .btn-row, .hero-trust { justify-content: center; }
  .hero-art { order: -1; max-width: 380px; margin-inline: auto; }
}

/* Hero artwork card */
.hero-art { position: relative; }
.hero-card {
  background: #fff; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg);
  padding: 30px; border: 1px solid var(--line);
}
.hero-card .art-emblem { width: 100%; height: auto; border-radius: var(--radius-lg); }
.hero-badge {
  position: absolute; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 12px 16px; display: flex; align-items: center; gap: 11px; border: 1px solid var(--line);
}
.hero-badge svg { width: 26px; height: 26px; color: var(--teal-600); flex: none; }
.hero-badge b { display: block; font-family: var(--font-head); font-size: 1.15rem; color: var(--ink); line-height: 1; }
.hero-badge span { font-size: .78rem; color: var(--muted); }
.hero-badge-1 { top: 18px; left: -18px; }
.hero-badge-2 { bottom: 24px; right: -14px; }
@media (max-width: 520px) { .hero-badge-1 { left: 6px; } .hero-badge-2 { right: 6px; } }

/* ---------- Cards ---------- */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--teal-100); }
.card .icon-box {
  width: 52px; height: 52px; border-radius: 14px; display: inline-flex; align-items: center; justify-content: center;
  background: var(--mint-50); color: var(--teal-600); margin-bottom: 18px;
}
.card .icon-box svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 8px; }
.card p { font-size: .98rem; }
.card ul { margin: 10px 0 0; padding-left: 18px; color: var(--ink-soft); font-size: .95rem; }
.card ul li { margin-bottom: 4px; }
.card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-weight: 600; font-size: .93rem; text-decoration: none; color: var(--teal-700); }
.card-link svg { width: 16px; height: 16px; transition: transform .2s; }
.card:hover .card-link svg { transform: translateX(3px); }

/* Feature list */
.feature { display: flex; gap: 16px; align-items: flex-start; }
.feature .icon-box { flex: none; margin-bottom: 0; }
.feature h4 { margin-bottom: 4px; }
.feature p { font-size: .96rem; margin: 0; }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { text-align: center; padding: 8px; }
.stat b { display: block; font-family: var(--font-head); font-size: clamp(2rem, 4vw, 2.9rem); color: var(--teal-600); line-height: 1; }
.stat span { display: block; margin-top: 8px; font-size: .92rem; color: var(--muted); }
@media (max-width: 620px) { .stats { grid-template-columns: repeat(2, 1fr); gap: 26px 12px; } }

/* Steps */
.steps { counter-reset: step; display: grid; gap: 22px; }
.step { display: flex; gap: 18px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; box-shadow: var(--shadow-sm); }
.step::before {
  counter-increment: step; content: counter(step);
  flex: none; width: 44px; height: 44px; border-radius: 50%;
  background: var(--teal-600); color: #fff; font-family: var(--font-head); font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
}
.step h4 { margin-bottom: 4px; }
.step p { margin: 0; font-size: .97rem; }

/* Practitioner / about */
.about-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(28px, 5vw, 56px); align-items: center; }
@media (max-width: 800px) { .about-grid { grid-template-columns: 1fr; } }
.portrait {
  aspect-ratio: 4/5; border-radius: var(--radius-xl); overflow: hidden;
  background: linear-gradient(150deg, var(--teal-600), var(--teal-900));
  display: flex; align-items: flex-end; justify-content: center; position: relative; box-shadow: var(--shadow-lg);
}
.portrait .monogram { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 5rem; color: rgba(255,255,255,.9); }
.portrait figcaption { position: relative; z-index: 1; width: 100%; padding: 18px 20px; background: linear-gradient(transparent, rgba(10,79,74,.85)); color: #fff; font-size: .9rem; text-align: center; }

/* ---------- Ribbon / callout ---------- */
.ribbon { border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 44px); }
.ribbon.urgent { background: linear-gradient(120deg, #fbe9e4, #fdf1ec); border: 1px solid #f3cfc2; }
.ribbon.urgent .u-head { display: flex; align-items: center; gap: 14px; }
.ribbon.urgent .u-head svg { width: 34px; height: 34px; color: var(--accent-dark); flex: none; }
.callout {
  display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center;
  background: linear-gradient(120deg, var(--teal-700), var(--teal-900)); color: #eafaf7;
  border-radius: var(--radius-xl); padding: clamp(32px, 5vw, 56px);
}
.callout h2 { color: #fff; }
.callout p { color: #cdeae5; margin-top: 10px; }
@media (max-width: 720px) { .callout { grid-template-columns: 1fr; text-align: center; } .callout .btn-row { justify-content: center; } }

/* ---------- Tables & prose ---------- */
.prose { max-width: 760px; }
.prose h2 { margin-top: 44px; margin-bottom: 14px; }
.prose h3 { margin-top: 28px; margin-bottom: 8px; }
.prose p, .prose ul, .prose ol { margin-bottom: 16px; }
.prose ul, .prose ol { padding-left: 22px; }
.prose li { margin-bottom: 7px; color: var(--ink-soft); }
.prose a { font-weight: 500; }
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
table { width: 100%; border-collapse: collapse; background: #fff; }
th, td { text-align: left; padding: 13px 18px; border-bottom: 1px solid var(--line); }
thead th { background: var(--mint-50); font-family: var(--font-body); font-weight: 600; color: var(--ink); font-size: .92rem; letter-spacing: .02em; }
tbody tr:last-child td { border-bottom: 0; }
tbody tr:hover { background: var(--mint-25); }
.hours-table td:last-child { font-weight: 600; color: var(--ink); }
.is-closed { color: var(--muted) !important; font-weight: 500 !important; }
figcaption { font-size: .86rem; color: var(--muted); margin-top: 10px; }

/* Info card (contact blocks) */
.info-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px 28px; box-shadow: var(--shadow-sm); }
.info-card h3 { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.info-card h3 svg { width: 22px; height: 22px; color: var(--teal-600); }
.info-list { list-style: none; padding: 0; }
.info-list li { display: flex; gap: 12px; padding: 9px 0; border-bottom: 1px dashed var(--line); }
.info-list li:last-child { border-bottom: 0; }
.info-list .k { color: var(--muted); min-width: 92px; font-size: .92rem; }
.info-list .v { color: var(--ink); font-weight: 500; }

/* Pill list / tags */
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.pill { display: inline-flex; align-items: center; gap: 7px; background: #fff; border: 1px solid var(--line-strong); border-radius: 999px; padding: 7px 14px; font-size: .9rem; font-weight: 500; color: var(--ink-soft); }
.pill svg { width: 15px; height: 15px; color: var(--teal-600); }

/* Page hero (interior pages) */
.page-hero { background: var(--mint-50); position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(55% 60% at 88% 20%, rgba(111,198,188,.35), transparent 62%); }
.page-hero .container { position: relative; padding-block: clamp(44px, 7vw, 76px); }
.breadcrumb { font-size: .86rem; color: var(--muted); margin-bottom: 14px; }
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--teal-700); }
.page-hero h1 { max-width: 18ch; }
.page-hero .lead { margin-top: 16px; max-width: 60ch; }

/* Map consent */
.map-consent { background: #fff; border: 1px dashed var(--line-strong); border-radius: var(--radius-lg); padding: 32px 24px; text-align: center; }
.map-consent svg.mc-icon { width: 40px; height: 40px; color: var(--teal-500); margin: 0 auto 14px; }
.map-consent p { max-width: 46ch; margin-inline: auto; font-size: .96rem; }
.map-frame { width: 100%; height: 380px; border: 0; border-radius: var(--radius-lg); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #b9cdca; padding-block: clamp(48px, 7vw, 72px) 30px; font-size: .95rem; }
.site-footer a { color: #d5e6e3; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .brand-name { color: #fff; }
.footer-brand p { color: #9db6b3; font-size: .92rem; margin-top: 14px; max-width: 32ch; }
.footer-col h4 { color: #fff; font-family: var(--font-body); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; display: grid; gap: 10px; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; color: #b9cdca; }
.footer-contact svg { width: 18px; height: 18px; color: var(--teal-300); flex: none; margin-top: 2px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 44px; padding-top: 24px; display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; align-items: center; color: #8ba7a3; font-size: .86rem; }
.footer-bottom a { color: #8ba7a3; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.footer-disclaimer { color: #7a9591; font-size: .82rem; margin-top: 6px; max-width: 70ch; }

/* ---------- Sticky mobile CTA ---------- */
.mobile-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 50; display: none; gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); background: rgba(255,255,255,.96); backdrop-filter: blur(10px); border-top: 1px solid var(--line); box-shadow: 0 -4px 20px rgba(16,48,47,.08); }
.mobile-cta .btn { flex: 1; padding: 13px; }
@media (max-width: 1000px) { .mobile-cta { display: flex; } body { padding-bottom: 72px; } }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed; left: 50%; transform: translateX(-50%); bottom: 20px; z-index: 90;
  width: min(680px, calc(100% - 32px)); background: #fff; border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 20px 22px;
  display: grid; grid-template-columns: 1fr auto; gap: 16px 22px; align-items: center;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner p { font-size: .9rem; margin: 0; }
.cookie-banner .cb-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-banner .btn { padding: 10px 18px; font-size: .92rem; }
@media (max-width: 620px) { .cookie-banner { grid-template-columns: 1fr; bottom: 82px; } .cookie-banner .cb-actions .btn { flex: 1; } }

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 18px; }
.mt-3 { margin-top: 28px; }
.mb-2 { margin-bottom: 18px; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0; z-index: 100; }
.skip-link:focus { left: 0; color: #fff; }
.text-accent { color: var(--accent-dark); }
.divider { height: 1px; background: var(--line); border: 0; margin-block: 40px; }
.tel-big { font-family: var(--font-head); font-size: clamp(1.6rem, 4vw, 2.2rem); color: var(--teal-700); text-decoration: none; font-weight: 600; }
.tel-big:hover { color: var(--teal-900); }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* anchor offset under sticky header */
[id] { scroll-margin-top: calc(var(--header-h) + 24px); }

/* ---------- Forms ---------- */
.form { display: grid; gap: 18px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(22px, 3vw, 34px); box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { display: grid; gap: 7px; }
.field label { font-weight: 600; font-size: .92rem; color: var(--ink); }
.field .req { color: var(--accent-dark); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: 12px 14px; border: 1.5px solid var(--line-strong); border-radius: 10px; background: var(--mint-25);
  transition: border-color .15s, box-shadow .15s, background .15s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal-500); background: #fff; box-shadow: 0 0 0 3px rgba(21,156,144,.15); }
.field textarea { resize: vertical; min-height: 130px; }
.check { display: flex; gap: 11px; align-items: flex-start; font-size: .92rem; color: var(--ink-soft); }
.check input { width: 20px; height: 20px; margin-top: 2px; flex: none; accent-color: var(--teal-600); }
.form-note { font-size: .88rem; color: var(--muted); }
.notice { background: var(--accent-50); border: 1px solid #f3cfc2; border-radius: var(--radius); padding: 14px 18px; font-size: .92rem; color: var(--ink-soft); }
.notice strong { color: var(--accent-dark); }

/* highlight placeholder text to complete (legal pages) */
.todo { background: #fff6d6; border-bottom: 1px dashed #d9b430; padding: 0 3px; border-radius: 3px; color: #7a5b00; font-style: normal; }

/* two-column content layout */
.split { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(28px, 4vw, 52px); align-items: start; }
@media (max-width: 840px) { .split { grid-template-columns: 1fr; } }
.aside-sticky { position: sticky; top: calc(var(--header-h) + 20px); }

/* ---------- Avis / reviews ---------- */
.reviews-cta { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px 28px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 22px 28px; box-shadow: var(--shadow-sm); }
.rc-brand { display: flex; align-items: center; gap: 15px; }
.rc-brand > svg { width: 40px; height: 40px; flex: none; }
.rc-meta b { font-family: var(--font-head); font-size: 1.05rem; color: var(--ink); display: block; line-height: 1.1; }
.rc-meta span { font-size: .86rem; color: var(--muted); }
.stars { color: #f5b301; letter-spacing: 2px; font-size: 1.05rem; line-height: 1; }
.rc-meta .stars { color: #f5b301; display: block; margin-bottom: 2px; }
.review { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; height: 100%; }
.review .stars { margin-bottom: 12px; }
.review p { font-style: italic; color: var(--ink-soft); margin: 0; flex: 1; }
.review .who { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.review .avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--teal-100); color: var(--teal-700); display: flex; align-items: center; justify-content: center; font-weight: 600; font-family: var(--font-head); flex: none; }
.review .who b { display: block; font-size: .95rem; color: var(--ink); }
.review .who span { font-size: .82rem; color: var(--muted); }
.review-example { position: relative; }
.review-example::after { content: "Exemple · à remplacer"; position: absolute; top: 12px; right: 12px; background: #fff6d6; color: #7a5b00; border: 1px dashed #d9b430; font-size: .68rem; font-weight: 600; padding: 2px 8px; border-radius: 999px; }

/* soin block (nos-soins) */
.soin { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(22px, 3vw, 32px); box-shadow: var(--shadow-sm); }
.soin h3 { display: flex; align-items: center; gap: 12px; }
.soin h3 .icon-box { margin: 0; width: 44px; height: 44px; }
.soin h3 .icon-box svg { width: 22px; height: 22px; }
