/* ════════════════════════════════════════════════════════════
   Evolucia : Site styles (custom layer)
   Loaded AFTER evolucia.css. Holds everything the design-system
   component layer does not: navigation, footer, hero decor,
   responsive grids, the guarantee band, the time-lost
   calculator, the demo-widget placeholder, and small layout
   helpers reused across pages (Services, Contact).
   All values pull from design-system tokens. No hardcoded hex.
   ════════════════════════════════════════════════════════════ */

/* ── Document basics ────────────────────────────────────────── */
html { scroll-behavior: smooth; }

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

/* Anchored sections clear the sticky nav when jumped to */
[id] { scroll-margin-top: calc(var(--space-20) + var(--space-4)); }

body { min-height: 100vh; }

/* ── Layout helpers ─────────────────────────────────────────── */
.site-section { padding-block: var(--section-y); }
.site-section--tight { padding-block: var(--space-16); }

/* A faint inset band (used by the "Méthode" section) */
.site-band {
  background: var(--paper-100);
  border-top: var(--bw) solid var(--border);
  border-bottom: var(--bw) solid var(--border);
}

/* Section heads: eyebrow / title / sub, centered by default */
.site-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  text-align: center;
  max-width: 46rem;
  margin-inline: auto;
  margin-bottom: var(--space-12);
}
.site-head__sub {
  font-size: var(--t-body-lg);
  line-height: var(--lh-relaxed);
  color: var(--text-muted);
}
.site-head--left {
  align-items: flex-start;
  text-align: left;
  margin-inline: 0;
}

/* Vertical stack utility */
.site-stack { display: flex; flex-direction: column; }
.site-stack > * + * { margin-top: var(--space-4); }

/* Centered actions row (buttons under a section) */
.site-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
  align-items: center;
}
.site-actions--center { margin-top: var(--space-12); }

/* ── Responsive grids ───────────────────────────────────────── */
.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: var(--space-6);
}
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* 4-up collapses to 2-up on mid screens, all collapse to 1 on small */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .grid-2,
  .grid-3,
  .grid-4 { grid-template-columns: minmax(0, 1fr); }
}

/* ── Navigation ─────────────────────────────────────────────── */
.site-nav-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  padding-top: var(--space-5);
  padding-bottom: var(--space-2);
}
/* Soft fade so the floating pill reads cleanly over scrolling content */
.site-nav-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--bg) 35%, transparent);
  pointer-events: none;
  z-index: -1;
}

.site-nav {
  max-width: var(--container);
  margin-inline: auto;
}
.site-nav__brand { height: 1.55rem; width: auto; display: block; }

/* Right-hand cluster: links + CTA */
.site-nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}
.site-nav__link {
  font-size: var(--t-sm);
  font-weight: var(--w-medium);
  color: var(--text-muted);
  transition: color var(--dur) var(--ease-out);
}
.site-nav__link:hover { color: var(--text-strong); }
.site-nav__link.is-active {
  color: var(--text-strong);
  font-weight: var(--w-semibold);
}

/* Hamburger : hidden on desktop, shown under 860px */
.site-nav__toggle {
  display: none;
  flex: none;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: var(--bw) solid var(--border-strong);
  border-radius: var(--r-pill);
  color: var(--text-strong);
  cursor: pointer;
  box-shadow: var(--shadow-xs);
  transition: background var(--dur) var(--ease-out);
}
.site-nav__toggle:hover { background: var(--paper-100); }
.site-nav__toggle svg { width: 1.25rem; height: 1.25rem; }
.site-nav__toggle .site-nav__icon-close { display: none; }

@media (max-width: 860px) {
  .site-nav__toggle { display: inline-flex; }

  /* Collapse the links into a stacked panel under the pill */
  .site-nav__links {
    position: absolute;
    top: calc(100% + var(--space-3));
    left: var(--gutter);
    right: var(--gutter);
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-2);
    padding: var(--space-4);
    background: var(--white);
    border: var(--bw) solid var(--border);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity var(--dur) var(--ease-out),
                transform var(--dur) var(--ease-out);
  }
  .site-nav.is-open .site-nav__links {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .site-nav.is-open .site-nav__toggle .site-nav__icon-open { display: none; }
  .site-nav.is-open .site-nav__toggle .site-nav__icon-close { display: block; }

  .site-nav__link {
    padding: var(--space-3) var(--space-2);
    font-size: var(--t-body);
  }
  .site-nav__links .ev-btn { width: 100%; justify-content: center; }
}

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  text-align: center;
  padding-block: clamp(3rem, 6vw, 6rem) var(--section-y);
  overflow: hidden;
}
/* Secondary heroes (Contact) sit tighter, less empty space above the content */
.hero--compact { padding-block: clamp(2rem, 4vw, 3.25rem) var(--space-8); }
/* Soft warm bloom behind the headline */
.hero__bloom {
  position: absolute;
  top: -18%;
  left: 50%;
  transform: translateX(-50%);
  width: min(46rem, 90vw);
  height: 34rem;
  background: radial-gradient(closest-side, var(--cream-tint), transparent 72%);
  pointer-events: none;
  z-index: 0;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
  max-width: 52rem;
  margin-inline: auto;
}
.hero__title { max-width: 18ch; }
.hero__serif {
  font-size: clamp(2rem, 1.2rem + 3vw, 3.25rem);
  line-height: 1.1;
}
.hero__lead { max-width: 42rem; }
.hero__actions { margin-top: var(--space-2); }

/* Decorative flecks (positioned by hand within a relative parent) */
.ev-fleck { position: absolute; z-index: 0; pointer-events: none; }
.ev-fleck--a { top: 14%; left: 12%; }
.ev-fleck--b { top: 26%; right: 14%; width: 7px; height: 7px; opacity: 0.4; }
.ev-fleck--c { bottom: 16%; left: 20%; width: 6px; height: 6px; opacity: 0.35; }
.ev-fleck--d { top: 40%; right: 22%; width: 5px; height: 5px; opacity: 0.3; }

@media (max-width: 720px) {
  .ev-fleck { display: none; }
}

/* ── Guarantee band (full-bleed espresso, cream text) ───────── */
.guarantee-band {
  background: var(--surface-dark);
  color: var(--text-on-dark);
  border-radius: var(--r-xl);
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1.5rem, 5vw, 4rem);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.guarantee-band__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-5);
  max-width: 44rem;
  margin-inline: auto;
}
.guarantee-band__text {
  font-family: var(--font-sans);
  font-weight: var(--w-bold);
  font-size: clamp(1.375rem, 1rem + 1.6vw, 2rem);
  line-height: var(--lh-snug);
  letter-spacing: var(--ls-snug);
  color: var(--text-on-dark);
}
.guarantee-band__text em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: var(--w-medium);
  color: var(--tan-400);
}
.guarantee-band .ev-chip { background: color-mix(in oklab, var(--white) 8%, transparent); color: var(--tan-400); border-color: color-mix(in oklab, var(--white) 16%, transparent); }
.guarantee-band__terms { display: inline-block; margin-left: 0.5rem; color: var(--text-on-dark); font-size: var(--t-sm); font-weight: var(--w-semibold); text-decoration: underline; text-underline-offset: 2px; opacity: 0.85; white-space: nowrap; }
.guarantee-band__terms:hover { opacity: 1; }

/* ── Statement (signature) block ────────────────────────────── */
.statement {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-5);
}
.statement__serif { font-size: clamp(1.75rem, 1.2rem + 2vw, 2.75rem); line-height: 1.12; }
.statement__note {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  text-align: left;
  max-width: 34rem;
  margin-top: var(--space-4);
}
.statement__note .ev-feature__body { color: var(--text-body); }

/* ── Numbered step cards (Méthode) ──────────────────────────── */
.step-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: var(--space-6);
  overflow: hidden;
}
.step-card__num {
  position: absolute;
  top: var(--space-4);
  right: var(--space-5);
  font-family: var(--font-serif);
  font-weight: var(--w-bold);
  font-size: 2.75rem;
  line-height: 1;
  color: var(--paper-300);
  pointer-events: none;
  user-select: none;
}
.step-card__head { display: flex; align-items: center; gap: var(--space-3); }

/* ── Feature cards (Pourquoi / Aperçu) ──────────────────────── */
.feature-card { height: 100%; }
.feature-card .ev-feature { gap: var(--space-3); }

/* The compact "aperçu services" tile: icon + name + one line */
.pillar {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  height: 100%;
}
.pillar__title {
  font-family: var(--font-sans);
  font-weight: var(--w-bold);
  font-size: var(--t-title);
  color: var(--text-strong);
  letter-spacing: -0.01em;
}
.pillar__body {
  font-size: var(--t-sm);
  color: var(--text-muted);
  line-height: var(--lh-relaxed);
}

/* ── Pillar detail cards (Services : "Les quatre piliers") ───── */
.pillar-detail {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  height: 100%;
}
.pillar-detail__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-2);
  padding-top: var(--space-5);
  border-top: var(--bw) solid var(--border);
}

/* ── Flow : numbered "Comment ça marche" steps ──────────────── */
.flow {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  max-width: 44rem;
  margin-inline: auto;
  list-style: none;
}
.flow__step {
  display: flex;
  align-items: flex-start;
  gap: var(--space-5);
  padding: var(--space-5) var(--space-6);
}
.flow__num {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--r-pill);
  background: var(--espresso-700);
  color: var(--text-on-dark);
  font-family: var(--font-sans);
  font-weight: var(--w-extrabold);
  font-size: var(--t-body);
  font-variant-numeric: tabular-nums;
}
.flow__body { display: flex; flex-direction: column; gap: var(--space-1); }
.flow__title {
  font-family: var(--font-sans);
  font-weight: var(--w-bold);
  font-size: var(--t-body-lg);
  color: var(--text-strong);
  letter-spacing: -0.01em;
}
.flow__text {
  font-size: var(--t-sm);
  color: var(--text-muted);
  line-height: var(--lh-relaxed);
}

/* ── Founder cohort (scarcity, no price) ────────────────────── */
.founder {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-5);
}
.founder__faint {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--t-body);
  color: var(--espresso-500);
}

/* ── "Est-ce pour vous" cards ───────────────────────────────── */
.fit-card { display: flex; flex-direction: column; gap: var(--space-5); height: 100%; }
.fit-card__title {
  font-family: var(--font-sans);
  font-weight: var(--w-bold);
  font-size: var(--t-h4);
  letter-spacing: var(--ls-snug);
  color: var(--text-strong);
}
.fit-card--no .fit-card__title { color: var(--terracotta-600); }
.fit-card__list { display: flex; flex-direction: column; gap: var(--space-4); }

/* ── Calculator ─────────────────────────────────────────────── */
.calc {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-8);
  align-items: start;
}
@media (max-width: 920px) {
  .calc { grid-template-columns: minmax(0, 1fr); }
}

.calc__panel { padding: var(--space-8); }
.calc__rows { display: flex; flex-direction: column; gap: var(--space-6); }
.calc__row { display: flex; flex-direction: column; gap: var(--space-3); }
.calc__row-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-4);
}
.calc__label {
  font-size: var(--t-sm);
  font-weight: var(--w-medium);
  color: var(--text-body);
}
.calc__value {
  font-family: var(--font-sans);
  font-weight: var(--w-bold);
  font-size: var(--t-body);
  color: var(--espresso-700);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

/* Range slider : warm, on-brand */
.calc__slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: var(--r-pill);
  background: var(--paper-300);
  cursor: pointer;
  outline-offset: 4px;
}
.calc__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--espresso-700);
  border: 3px solid var(--white);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-out);
}
.calc__slider::-webkit-slider-thumb:hover { transform: scale(1.1); }
.calc__slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--espresso-700);
  border: 3px solid var(--white);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}
.calc__slider:focus-visible { box-shadow: var(--shadow-focus); }

/* Result panel */
.calc__result {
  position: sticky;
  top: calc(var(--space-20) + var(--space-6));
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  text-align: center;
}
@media (max-width: 920px) {
  .calc__result { position: static; }
}
/* Live region wraps only the changing numbers; keeps the column gap */
.calc__live {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.calc__big {
  font-family: var(--font-sans);
  font-weight: var(--w-extrabold);
  font-size: clamp(3rem, 2rem + 4vw, 4.5rem);
  line-height: 1;
  letter-spacing: var(--ls-tight);
  color: var(--text-strong);
}
.calc__big-unit { font-size: 0.5em; font-weight: var(--w-bold); color: var(--espresso-500); }
.calc__caption {
  font-size: var(--t-sm);
  color: var(--text-muted);
  margin-top: var(--space-2);
}
.calc__secondary {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding-block: var(--space-5);
  border-top: var(--bw) solid var(--border);
  border-bottom: var(--bw) solid var(--border);
}
.calc__secondary-line {
  font-family: var(--font-sans);
  font-weight: var(--w-semibold);
  font-size: var(--t-body-lg);
  color: var(--text-body);
}
.calc__secondary-line strong { color: var(--text-strong); font-weight: var(--w-extrabold); }
.calc__reassure {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--t-body);
  line-height: var(--lh-relaxed);
  color: var(--espresso-500);
}

/* ── Demo widget placeholder (Services : "Testez Émilie") ────── */
/* A finished-looking, intentional placeholder : a polished chat
   frame, a clear "Bientôt disponible" badge, and a CTA. Not broken. */
.demo-widget {
  position: relative;
  border: var(--bw) solid var(--border);
  border-radius: var(--r-xl);
  background: var(--paper-100);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
  text-align: center;
  padding: clamp(1.75rem, 5vw, 3rem);
  box-shadow: var(--shadow-sm);
}
.demo-widget__note { font-size: var(--t-sm); color: var(--text-muted); max-width: 30rem; line-height: var(--lh-relaxed); }

/* "Bientôt disponible" badge : clearly visible, on-brand pill */
.demo-widget__badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-sans);
  font-weight: var(--w-bold);
  font-size: var(--t-eyebrow);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--text-on-dark);
  background: var(--espresso-700);
  border-radius: var(--r-pill);
  padding: var(--space-2) var(--space-4);
  box-shadow: var(--shadow-sm);
}

/* The chat frame : a white phone-like card, visibly disabled */
.demo-widget__frame {
  width: 100%;
  max-width: 26rem;
  background: var(--white);
  border: var(--bw) solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  text-align: left;
  opacity: 0.92;
}
.demo-widget__chrome {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  border-bottom: var(--bw) solid var(--border);
  background: var(--paper-100);
}
.demo-widget__avatar { background: var(--espresso-700); color: var(--tan-400); flex: none; }
.demo-widget__id { display: flex; flex-direction: column; gap: 2px; }
.demo-widget__name {
  font-family: var(--font-sans);
  font-weight: var(--w-bold);
  font-size: var(--t-sm);
  color: var(--text-strong);
}
.demo-widget__status { font-size: var(--t-xs); color: var(--text-faint); }

.demo-widget__thread {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-5);
}
.demo-widget__bubble {
  max-width: 80%;
  font-size: var(--t-sm);
  line-height: var(--lh-normal);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--r-md);
}
.demo-widget__bubble--in {
  align-self: flex-start;
  background: var(--paper-200);
  color: var(--text-body);
  border-bottom-left-radius: var(--space-1);
}
.demo-widget__bubble--out {
  align-self: flex-end;
  background: var(--espresso-700);
  color: var(--text-on-dark);
  border-bottom-right-radius: var(--space-1);
}
.demo-widget__inputbar {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  border-top: var(--bw) solid var(--border);
  background: var(--paper-100);
}
.demo-widget__input {
  flex: 1;
  min-width: 0;
  font-family: var(--font-sans);
  font-size: var(--t-sm);
  color: var(--text-muted);
  background: var(--white);
  border: var(--bw) solid var(--border);
  border-radius: var(--r-pill);
  padding: var(--space-3) var(--space-4);
  cursor: not-allowed;
}
.demo-widget__input:disabled { opacity: 1; }
.demo-widget__input::placeholder { color: var(--text-faint); }
.demo-widget__send {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--r-pill);
  background: var(--espresso-700);
  color: var(--text-on-dark);
  opacity: 0.55;
}
.demo-widget__send svg { width: 1.125rem; height: 1.125rem; }

/* ── Contact layout helpers (used by Contact page later) ────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: start;
}
@media (max-width: 860px) {
  .contact-grid { grid-template-columns: minmax(0, 1fr); }
}
.contact-aside { display: flex; flex-direction: column; gap: var(--space-6); }
.contact-detail { display: flex; align-items: flex-start; gap: var(--space-4); }
.contact-detail__label {
  font-size: var(--t-xs);
  font-weight: var(--w-semibold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--text-faint);
}
.contact-detail__value { font-size: var(--t-body); color: var(--text-body); }
.contact-detail__value a:hover { color: var(--espresso-700); }

/* The small clock + "45 minutes" row inside the aside */
.contact-fact {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.contact-fact__text { display: flex; flex-direction: column; gap: 2px; }
.contact-fact__lead {
  font-family: var(--font-sans);
  font-weight: var(--w-bold);
  font-size: var(--t-body);
  color: var(--text-strong);
}
.contact-fact__sub { font-size: var(--t-sm); color: var(--text-muted); }

/* A faint reassurance line in the aside */
.contact-reassure {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--t-body);
  line-height: var(--lh-relaxed);
  color: var(--espresso-500);
}

/* ── Booking embed (GoHighLevel calendar widget) ────────────── */
/* A clean white frame that holds the iframe; the noscript fallback
   lives inside and only shows if the widget script never loads. */
.booking-embed {
  padding: 0;
  background: transparent;
  position: relative;
  min-height: 740px;
}
.booking-embed iframe {
  display: block;
  width: 100%;
  border: none;
  position: relative;
  z-index: 1;
}
/* Loading skeleton behind the calendar iframe, hidden once it loads */
.booking-embed__skeleton {
  position: absolute;
  inset: 0;
  z-index: 2;
  transition: opacity 0.35s var(--ease-out);
  display: grid;
  place-items: center;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background:
    repeating-linear-gradient(0deg, transparent 0 63px, color-mix(in oklab, var(--paper-300) 55%, transparent) 63px 64px),
    var(--paper-100);
}
.booking-embed__loading {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: var(--t-sm); font-weight: var(--w-semibold); color: var(--text-muted);
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-pill);
  padding: 0.55rem 1.15rem; box-shadow: var(--shadow-sm);
}
.booking-embed__loading::before {
  content: ""; width: 14px; height: 14px; border-radius: 50%;
  border: 2px solid var(--border-strong); border-top-color: var(--espresso-600);
  animation: ev-spin 0.8s linear infinite;
}
@keyframes ev-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .booking-embed__loading::before { animation: none; } }
.booking-embed.is-loaded .booking-embed__skeleton { opacity: 0; pointer-events: none; }

/* Merged "what you get" + 45-min fact row */
.booking-card__fact {
  display: flex; align-items: center; gap: var(--space-4);
  margin-top: var(--space-6); padding-top: var(--space-5);
  border-top: 1px solid var(--border);
  font-size: var(--t-sm); color: var(--text-body); line-height: var(--lh-normal);
}
.booking-card__fact strong { color: var(--text-strong); }
.booking-embed__fallback {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-6);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
}
.booking-embed__fallback p {
  font-size: var(--t-body);
  color: var(--text-body);
  line-height: var(--lh-relaxed);
}

/* ── Final CTA block ────────────────────────────────────────── */
.cta-final {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-5);
}
.cta-final__faint {
  font-size: var(--t-sm);
  color: var(--text-faint);
}

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer { margin-top: var(--space-24); }
.site-footer__inner { padding-block: var(--space-16) var(--space-8); }
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--space-12);
}
@media (max-width: 760px) {
  .site-footer__grid { grid-template-columns: minmax(0, 1fr); gap: var(--space-10); }
}
.site-footer__brand-img { height: 1.7rem; width: auto; display: block; margin-bottom: var(--space-4); }
.site-footer__tagline {
  font-size: var(--t-sm);
  color: var(--text-muted);
  line-height: var(--lh-relaxed);
  max-width: 26rem;
}
.site-footer__col-title {
  font-size: var(--t-xs);
  font-weight: var(--w-bold);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: var(--space-4);
}
.site-footer__links { display: flex; flex-direction: column; gap: var(--space-3); }
.site-footer__link {
  font-size: var(--t-sm);
  color: var(--text-muted);
  transition: color var(--dur) var(--ease-out);
}
.site-footer__link:hover { color: var(--text-strong); }
.site-footer__loc {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-5);
  font-size: var(--t-sm);
  color: var(--text-muted);
}
.site-footer__loc svg { width: 1rem; height: 1rem; color: var(--tan-600); flex: none; }
.site-footer__bottom {
  margin-top: var(--space-12);
  padding-top: var(--space-6);
  border-top: var(--bw) solid var(--border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}
.site-footer__copy { font-size: var(--t-xs); color: var(--text-faint); }
.site-footer__legal { display: flex; flex-wrap: wrap; gap: var(--space-5); }
.site-footer__legal a {
  font-size: var(--t-xs);
  color: var(--text-faint);
  transition: color var(--dur) var(--ease-out);
}
.site-footer__legal a:hover { color: var(--text-body); }

/* ── Legal prose (Politique de confidentialité, Conditions) ──── */
/* A readable, calm long-form wrapper. Token-based spacing and
   color; comfortable measure for body text. */
.legal {
  max-width: 44rem;
  margin-inline: auto;
  color: var(--text-body);
}
.legal > h1 {
  margin-bottom: var(--space-3);
}
.legal__updated {
  font-size: var(--t-sm);
  color: var(--text-faint);
  margin-bottom: var(--space-10);
}
.legal__intro {
  font-size: var(--t-body-lg);
  line-height: var(--lh-relaxed);
  color: var(--text-muted);
  margin-bottom: var(--space-10);
}
.legal h2 {
  font-family: var(--font-sans);
  font-weight: var(--w-bold);
  font-size: var(--t-h4);
  letter-spacing: var(--ls-snug);
  color: var(--text-strong);
  margin-top: var(--space-10);
  margin-bottom: var(--space-4);
  padding-top: var(--space-8);
  border-top: var(--bw) solid var(--border);
}
.legal h2:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}
.legal p {
  font-size: var(--t-body);
  line-height: var(--lh-relaxed);
  color: var(--text-body);
}
.legal p + p { margin-top: var(--space-4); }
.legal a {
  color: var(--espresso-700);
  font-weight: var(--w-medium);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal a:hover { color: var(--espresso-500); }
.legal ul {
  margin-top: var(--space-4);
  padding-left: var(--space-6);
  list-style: disc;
}
.legal li {
  font-size: var(--t-body);
  line-height: var(--lh-relaxed);
  color: var(--text-body);
}
.legal li + li { margin-top: var(--space-2); }
.legal strong { color: var(--text-strong); font-weight: var(--w-semibold); }

/* ── Icon presence ──────────────────────────────────────────────
   The design-system chips render glyphs at 48% of the tile, which
   reads small and faint against the bold editorial type. Bump the
   glyph size inside chips and checklist marks, and give the beige
   tiles a hairline so they sit as defined objects on white cards. */
.ev-chip svg { width: 54%; height: 54%; }
.ev-chip--lg svg { width: 50%; height: 50%; }
.ev-chip--sm svg { width: 56%; height: 56%; }
.ev-chip { border: 1px solid var(--line-200); }
.ev-chip--solid, .ev-chip--negative, .ev-chip--tan { border-color: transparent; }
.ev-check__mark svg { width: 66%; height: 66%; }

/* ── Contact booking layout (full-width calendar) ───────────── */
.booking-intro { align-items: start; }
.contact-reassure--center { text-align: center; }
.booking-embed--full { padding: 0; }

/* ── Small utilities ────────────────────────────────────────── */
.u-icon-inline { display: inline-flex; vertical-align: -0.15em; }
.u-mt-6 { margin-top: var(--space-6); }
.u-mt-8 { margin-top: var(--space-8); }
