/* =====================================================================
   LYON VTC — Chauffeur privé
   Système visuel : adaptation "or sur blanc, lumineux & raffiné" du
   design system ONYX (discipline éditoriale : coins nets, filets 1px,
   Hanken Grotesk display 500, tracking négatif, pas d'emoji, vouvoiement).
   ===================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Hanken+Grotesk:wght@400;500;600;700&family=Cormorant+Garamond:ital,wght@0,500;0,600;1,500&display=swap");

:root {
  /* ---- Or (accent unique) ---- */
  --gold-deep: #8a6a2c;       /* texte or lisible sur blanc, eyebrows */
  --gold: #b8924a;            /* or métallique principal */
  --gold-bright: #d9be7e;
  --gold-pale: #f4ecda;       /* teinte de fond */
  --gold-line: #e7dcc1;       /* filet or */
  --gradient-gold: linear-gradient(135deg, #8a6a2c 0%, #bd9b54 36%, #e7ce8c 60%, #a98a3f 100%);
  --gradient-gold-soft: linear-gradient(135deg, #c8a861, #e3cd91);

  /* ---- Encre / texte ---- */
  --ink: #1a1a1a;             /* display, titres */
  --ink-soft: #33312d;
  --body: #565248;           /* texte courant sur clair */
  --muted: #8c877c;          /* légendes */
  --on-dark: #ffffff;
  --on-dark-soft: #cfc8b8;
  --on-dark-muted: #8d887c;

  /* ---- Surfaces ---- */
  --white: #ffffff;
  --paper: #faf8f3;          /* blanc cassé chaud */
  --soft: #f3efe6;           /* bande alternée claire */
  --dark: #15140f;           /* fond sombre cinématique (hero/footer) */
  --dark-2: #1e1c16;

  /* ---- Filets ---- */
  --hairline: #e8e3d8;
  --hairline-strong: #d7d0c1;
  --hairline-dark: #2c2a22;

  /* ---- Espacement (échelle ONYX 4/8px) ---- */
  --space-xxxs: 4px; --space-xxs: 8px; --space-xs: 16px; --space-sm: 24px;
  --space-md: 32px; --space-lg: 48px; --space-xl: 64px; --space-xxl: 96px;
  --space-super: 128px;
  --container-max: 1240px;

  /* ---- Rayons (nets par défaut) ---- */
  --radius-none: 0px; --radius-sm: 4px; --radius-full: 9999px;

  /* ---- Type ---- */
  --font-sans: "Hanken Grotesk", -apple-system, system-ui, "Segoe UI", sans-serif;
  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --w-body: 400; --w-display: 500; --w-label: 600; --w-strong: 700;

  --nav-h: 84px;
  --shadow-soft: 0 18px 50px -28px rgba(26, 20, 8, 0.45);
  --shadow-card: 0 24px 60px -36px rgba(26, 20, 8, 0.5);
}

* , *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
::selection { background: var(--gold); color: #fff; }

/* ---------------------------------------------------------------- Type */
.eyebrow {
  font: var(--w-label) 12px/1.4 var(--font-sans);
  letter-spacing: 2.4px; text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px; background: var(--gold);
  display: inline-block;
}
.eyebrow.center { justify-content: center; }
.eyebrow.solo::before { display: none; }

h1, h2, h3, h4 { margin: 0; color: var(--ink); font-weight: var(--w-display); }
.display-mega { font-size: clamp(40px, 7vw, 82px); line-height: 1.02; letter-spacing: -1.6px; }
.display-xl   { font-size: clamp(34px, 5vw, 58px); line-height: 1.06; letter-spacing: -1.1px; }
.display-lg   { font-size: clamp(28px, 3.4vw, 40px); line-height: 1.12; letter-spacing: -0.5px; }
.display-md   { font-size: clamp(22px, 2.4vw, 28px); line-height: 1.25; letter-spacing: -0.2px; }
.lead { font-size: clamp(17px, 1.5vw, 20px); line-height: 1.62; color: var(--body); }
.serif-accent { font-family: var(--font-serif); font-style: italic; font-weight: 500; }
.gold-text { color: var(--gold-deep); }
.on-dark { color: var(--on-dark); }
.on-dark .lead, .on-dark p { color: var(--on-dark-soft); }
.on-dark h1, .on-dark h2, .on-dark h3 { color: #fff; }

/* ---------------------------------------------------------------- Layout */
.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 880px; }
.container.wide { max-width: 1360px; }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section.tight { padding: clamp(48px, 6vw, 80px) 0; }
.band-paper { background: var(--paper); }
.band-soft { background: var(--soft); }
.band-dark { background: var(--dark); color: var(--on-dark-soft); }
.divider { height: 1px; background: var(--hairline); border: 0; margin: 0; }

.grid { display: grid; gap: var(--space-lg); }
.section-head { max-width: 720px; }
.section-head.center { margin: 0 auto; text-align: center; }
.section-head .display-lg { margin-top: 18px; }
.section-head p { margin: 18px 0 0; }

/* ---------------------------------------------------------------- Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font: var(--w-strong) 13.5px/1 var(--font-sans);
  letter-spacing: 1.6px; text-transform: uppercase;
  padding: 17px 30px; border: 1px solid transparent; border-radius: var(--radius-none);
  cursor: pointer; transition: transform .12s ease, background .15s ease, color .15s ease, border-color .15s ease;
  white-space: nowrap; min-height: 52px;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary { background: var(--gradient-gold); color: #fff; position: relative; }
.btn-primary { box-shadow: 0 14px 30px -16px rgba(138, 106, 44, .8); }
.btn-primary:active { transform: translateY(1px); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline-gold { background: transparent; color: var(--gold-deep); border-color: var(--gold); }
.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn-ghost-light:active { background: rgba(255,255,255,.08); }
.btn-block { width: 100%; }
.btn-lg { padding: 20px 38px; min-height: 60px; font-size: 14px; }
.btn-sm { padding: 12px 20px; min-height: 44px; font-size: 12px; letter-spacing: 1.2px; }
.link-arrow {
  display: inline-flex; align-items: center; gap: 9px;
  font: var(--w-label) 13px/1 var(--font-sans); letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--gold-deep); padding-bottom: 4px; border-bottom: 1px solid var(--gold-line);
  transition: gap .15s ease;
}
.link-arrow svg { width: 16px; height: 16px; }
.link-arrow:active { gap: 13px; }

/* ---------------------------------------------------------------- Navigation */
.site-nav {
  position: sticky; top: 0; z-index: 60;
  background: #ffffff;
  border-bottom: 1px solid var(--hairline);
}
.nav-inner { height: var(--nav-h); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-logo img { height: 54px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font: var(--w-label) 13px/1 var(--font-sans); letter-spacing: .6px; text-transform: uppercase;
  color: var(--ink-soft); padding: 8px 0; position: relative; transition: color .15s ease;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1.5px;
  background: var(--gold); transition: width .18s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a.active::after, .nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.nav-phone {
  display: inline-flex; align-items: center; gap: 8px;
  font: var(--w-label) 14px/1 var(--font-sans); color: var(--ink); letter-spacing: .3px;
}
.nav-phone svg { width: 16px; height: 16px; color: var(--gold-deep); }
.nav-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; color: var(--ink); }
.nav-toggle svg { width: 26px; height: 26px; }

/* dropdown (services / zones) */
.nav-item-has-menu { position: relative; }
.nav-menu {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: #fff; border: 1px solid var(--hairline); box-shadow: var(--shadow-card);
  min-width: 280px; padding: 10px; opacity: 0; visibility: hidden; transition: all .16s ease;
}
.nav-item-has-menu:hover .nav-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-menu a {
  display: block; padding: 11px 14px; text-transform: none; letter-spacing: 0; font-weight: 500;
  font-size: 14px; color: var(--ink-soft);
}
.nav-menu a::after { display: none; }
.nav-menu a:hover { background: var(--gold-pale); color: var(--gold-deep); }
.nav-menu .menu-eyebrow {
  font: var(--w-label) 10.5px/1 var(--font-sans); letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); padding: 8px 14px 6px;
}

/* mobile drawer */
.mobile-drawer {
  position: fixed; inset: 0; z-index: 200; background: rgba(21,20,15,.5);
  opacity: 0; visibility: hidden; transition: opacity .2s ease;
}
.mobile-drawer.open { opacity: 1; visibility: visible; }
.mobile-panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(420px, 86vw);
  background: #fff; transform: translateX(100%); transition: transform .26s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column; padding: 22px;
}
.mobile-drawer.open .mobile-panel { transform: translateX(0); }
.mobile-panel .mp-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.mobile-panel .mp-head img { height: 46px; }
.mobile-panel .mp-close { background: none; border: 0; padding: 8px; cursor: pointer; color: var(--ink); }
.mobile-panel .mp-close svg { width: 26px; height: 26px; }
.mobile-links { display: flex; flex-direction: column; margin-top: 8px; flex: 1; overflow-y: auto; }
.mobile-links a {
  padding: 16px 4px; border-bottom: 1px solid var(--hairline);
  font: var(--w-display) 19px/1 var(--font-sans); letter-spacing: -.3px; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center;
}
.mobile-links a .chev { color: var(--gold); }
.mobile-sub { font-size: 14px !important; font-weight: 500 !important; color: var(--body) !important; padding-left: 18px !important; }
.mobile-panel .mp-foot { padding-top: 18px; display: grid; gap: 12px; }
.mobile-panel .mp-phone {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font: var(--w-label) 16px/1 var(--font-sans); color: var(--ink); padding: 8px;
}
.mobile-panel .mp-phone svg { width: 18px; height: 18px; color: var(--gold-deep); }

/* ---------------------------------------------------------------- Hero */
.hero { position: relative; min-height: clamp(560px, 86vh, 820px); display: flex; align-items: flex-end; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media .plate { position: absolute; inset: 0; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,11,8,.42) 0%, rgba(12,11,8,.12) 32%, rgba(12,11,8,.18) 55%, rgba(12,11,8,.82) 100%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(48px, 7vw, 92px); padding-top: 60px; }
.hero h1 { color: #fff; max-width: 16ch; }
.hero .lead { color: rgba(255,255,255,.86); max-width: 52ch; margin-top: 22px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 36px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 44px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.18); }
.hero-trust .ht { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.9); font-size: 14px; }
.hero-trust .ht svg { width: 18px; height: 18px; color: var(--gold-bright); }

/* cinematic photographic plates (placeholders élégants, swap photos plus tard) */
.plate { background-size: cover; background-position: center; position: relative; }
.plate-night {
  background:
    radial-gradient(120% 90% at 72% 22%, rgba(231,206,140,.16), rgba(231,206,140,0) 52%),
    radial-gradient(120% 120% at 18% 88%, rgba(184,146,74,.18), rgba(184,146,74,0) 58%),
    linear-gradient(180deg, #26221a 0%, #16140f 58%, #0b0a07 100%);
}
.plate-leather {
  background:
    radial-gradient(110% 90% at 30% 20%, rgba(231,206,140,.12), transparent 55%),
    linear-gradient(160deg, #2a2118 0%, #1a150f 60%, #100c08 100%);
}
.plate-dusk {
  background:
    radial-gradient(130% 80% at 75% 18%, rgba(231,206,140,.22), transparent 50%),
    linear-gradient(180deg, #3a2f20 0%, #211a12 55%, #100c08 100%);
}
.plate-soft {
  background:
    radial-gradient(120% 100% at 70% 10%, rgba(184,146,74,.10), transparent 55%),
    linear-gradient(160deg, #f7f2e8 0%, #efe7d6 100%);
}
.plate.has-photo { background-size: cover; background-position: center; }
.plate-label { position: absolute; left: 16px; bottom: 14px; font: 600 10px/1 var(--font-sans); letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.42); z-index:3; }
.plate-soft .plate-label { color: rgba(26,26,26,.34); }

/* ---------------------------------------------------------------- Cards */
.card-grid { display: grid; gap: 24px; }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }

.svc-card {
  background: #fff; border: 1px solid var(--hairline); padding: 36px 32px;
  display: flex; flex-direction: column; gap: 16px; position: relative; transition: border-color .18s ease, transform .18s ease;
  min-height: 100%;
}
.svc-card:hover { border-color: var(--gold); }
.svc-icon { width: 46px; height: 46px; color: var(--gold-deep); }
.svc-icon svg { width: 100%; height: 100%; stroke-width: 1.4; }
.svc-card h3 { font-size: 21px; letter-spacing: -.3px; }
.svc-card p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--body); }
.svc-card .link-arrow { margin-top: auto; }
.svc-num { position: absolute; top: 28px; right: 30px; font: var(--w-display) 14px/1 var(--font-sans); color: var(--gold); letter-spacing: 1px; }

.fleet-card { background: #fff; border: 1px solid var(--hairline); display: flex; flex-direction: column; }
.fleet-card .fc-media { aspect-ratio: 16/10; }
.fleet-card .fc-body { padding: 26px 26px 30px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.fleet-card .fc-cat { font: var(--w-label) 11px/1 var(--font-sans); letter-spacing: 2px; text-transform: uppercase; color: var(--gold-deep); }
.fleet-card h3 { font-size: 24px; letter-spacing: -.4px; }
.fleet-card .fc-desc { font-size: 14.5px; color: var(--body); margin: 0; }
.fc-specs { display: flex; gap: 22px; margin-top: 4px; padding-top: 16px; border-top: 1px solid var(--hairline); }
.fc-spec { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--ink-soft); }
.fc-spec svg { width: 17px; height: 17px; color: var(--gold-deep); }
.fc-foot { margin-top: auto; padding-top: 18px; display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.fc-from { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 1.4px; }
.fc-price { font: var(--w-display) 24px/1 var(--font-sans); color: var(--ink); letter-spacing: -.5px; }
.fc-price small { font-size: 13px; color: var(--muted); font-weight: 400; letter-spacing: 0; }

/* stat row */
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--hairline); border: 1px solid var(--hairline); }
.stat-cell { background: #fff; padding: 34px 26px; text-align: center; }
.stat-cell.on-dark-cell { background: var(--dark-2); }
.stat-num { font: var(--w-display) clamp(38px, 4vw, 52px)/1 var(--font-sans); letter-spacing: -1.5px; color: var(--ink); }
.on-dark-cell .stat-num { color: #fff; }
.stat-num .unit { color: var(--gold-deep); }
.stat-label { margin-top: 10px; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); }

/* feature split */
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(40px, 6vw, 96px); }
.split.reverse .split-media { order: 2; }
.split-media { aspect-ratio: 4/5; min-height: 420px; }
.split-body .display-lg { margin: 18px 0 0; }
.split-body p { margin-top: 20px; }

/* checklist */
.check-list { display: grid; gap: 16px; margin: 28px 0 0; padding: 0; list-style: none; }
.check-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 15.5px; color: var(--ink-soft); }
.check-list li svg { width: 22px; height: 22px; color: var(--gold-deep); flex: none; margin-top: 1px; }

/* steps (process) */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.proc-step { position: relative; padding-top: 28px; border-top: 2px solid var(--gold); }
.proc-step .pn { font: var(--w-display) 13px/1 var(--font-sans); letter-spacing: 2px; color: var(--gold-deep); }
.proc-step h3 { font-size: 19px; margin: 16px 0 10px; letter-spacing: -.3px; }
.proc-step p { font-size: 14.5px; margin: 0; color: var(--body); }

/* testimonial */
.quote-card { background: #fff; border: 1px solid var(--hairline); padding: 40px 38px; display: flex; flex-direction: column; gap: 22px; }
.quote-card .qmark { font-family: var(--font-serif); font-size: 56px; line-height: .5; color: var(--gold); height: 24px; }
.quote-card blockquote { margin: 0; font-size: 18px; line-height: 1.6; color: var(--ink-soft); font-weight: 500; }
.quote-card .qby { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.qavatar { width: 46px; height: 46px; border-radius: var(--radius-full); background: var(--gradient-gold-soft); display: grid; place-items: center; color: #fff; font-weight: 600; }
.qby .qn { font-weight: 600; color: var(--ink); font-size: 14.5px; }
.qby .qr { font-size: 12.5px; color: var(--muted); }
.stars { display: flex; gap: 3px; color: var(--gold); }
.stars svg { width: 16px; height: 16px; }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-q { width: 100%; background: none; border: 0; cursor: pointer; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 26px 0; font: var(--w-display) clamp(17px,2vw,20px)/1.35 var(--font-sans); color: var(--ink); letter-spacing: -.2px; }
.faq-q .fi { width: 24px; height: 24px; flex: none; color: var(--gold-deep); transition: transform .2s ease; }
.faq-item.open .faq-q .fi { transform: rotate(45deg); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height .28s ease; }
.faq-a-inner { padding: 0 0 28px; max-width: 760px; font-size: 15.5px; line-height: 1.7; color: var(--body); }
.faq-item.open .faq-a { max-height: 520px; }

/* pill / badge */
.badge { display: inline-flex; align-items: center; gap: 7px; padding: 7px 14px; border-radius: var(--radius-full);
  background: var(--gold-pale); color: var(--gold-deep); font: var(--w-label) 12px/1 var(--font-sans); letter-spacing: .6px; }
.badge svg { width: 14px; height: 14px; }
.badge-line { background: transparent; border: 1px solid var(--gold-line); }

/* ---------------------------------------------------------------- Footer */
.site-footer { background: var(--dark); color: var(--on-dark-soft); padding: clamp(64px,8vw,96px) 0 36px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 48px; }
.footer-brand .fb-mark { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.footer-brand .fb-mark img { height: 64px; width: auto; }
.footer-brand .fb-word { font: var(--w-display) 22px/1 var(--font-sans); letter-spacing: 1px; color: #fff; }
.footer-brand .fb-word b { color: var(--gold-bright); font-weight: 500; }
.footer-brand .fb-sub { display: block; font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--on-dark-muted); margin-top: 4px; }
.footer-brand p { font-size: 14.5px; line-height: 1.7; color: var(--on-dark-soft); max-width: 34ch; }
.footer-col h4 { color: #fff; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; margin-bottom: 20px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 13px; }
.footer-col a { font-size: 14.5px; color: var(--on-dark-soft); transition: color .15s ease; }
.footer-col a:hover { color: var(--gold-bright); }
.footer-contact .fc-item { display: flex; gap: 12px; margin-bottom: 18px; font-size: 14.5px; line-height: 1.5; }
.footer-contact .fc-item svg { width: 18px; height: 18px; color: var(--gold-bright); flex: none; margin-top: 2px; }
.footer-bottom { margin-top: 56px; padding-top: 26px; border-top: 1px solid var(--hairline-dark);
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-bottom p { font-size: 13px; color: var(--on-dark-muted); margin: 0; }
.footer-bottom .fb-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-bottom .fb-links a { font-size: 13px; color: var(--on-dark-muted); }
.footer-bottom .fb-links a:hover { color: var(--gold-bright); }

/* ---------------------------------------------------------------- Mobile sticky CTA */
.mobile-cta-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 80; display: none;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.95); backdrop-filter: blur(12px); border-top: 1px solid var(--hairline);
  gap: 12px;
}
.mobile-cta-bar .btn { flex: 1; }
.mobile-cta-bar .call-btn { flex: none; width: 54px; padding: 0; }

/* ---------------------------------------------------------------- CTA band */
.cta-band { position: relative; overflow: hidden; }
.cta-band .plate { position: absolute; inset: 0; z-index: 0; }
.cta-band::after { content:""; position:absolute; inset:0; background: linear-gradient(120deg, rgba(12,11,8,.86), rgba(12,11,8,.55)); z-index:1; }
.cta-band .container { position: relative; z-index: 2; }

/* prose (SEO long-form) */
.prose { max-width: 820px; }
.prose h2 { font: var(--w-display) clamp(26px,3vw,34px)/1.18 var(--font-sans); letter-spacing: -.5px; color: var(--ink); margin: 56px 0 18px; }
.prose h3 { font: var(--w-display) clamp(20px,2.2vw,24px)/1.25 var(--font-sans); letter-spacing: -.3px; color: var(--ink); margin: 38px 0 14px; }
.prose p { font-size: 16.5px; line-height: 1.75; color: var(--body); margin: 0 0 18px; }
.prose ul, .prose ol { margin: 0 0 22px; padding-left: 4px; list-style: none; display: grid; gap: 12px; }
.prose ul li { position: relative; padding-left: 26px; font-size: 16px; line-height: 1.65; color: var(--body); }
.prose ul li::before { content: ""; position: absolute; left: 4px; top: 11px; width: 7px; height: 7px; background: var(--gold); }
.prose ol { counter-reset: c; }
.prose ol li { position: relative; padding-left: 38px; font-size: 16px; line-height: 1.65; color: var(--body); counter-increment: c; }
.prose ol li::before { content: counter(c,decimal-leading-zero); position: absolute; left: 0; top: 0; font: var(--w-display) 14px/1.6 var(--font-sans); color: var(--gold-deep); }
.prose strong { color: var(--ink-soft); font-weight: 600; }
.prose a { color: var(--gold-deep); border-bottom: 1px solid var(--gold-line); }
.prose blockquote { margin: 30px 0; padding: 4px 0 4px 28px; border-left: 2px solid var(--gold); font-family: var(--font-serif); font-style: italic; font-size: 22px; line-height: 1.45; color: var(--ink-soft); }

.toc { background: var(--paper); border: 1px solid var(--hairline); padding: 28px 30px; position: sticky; top: calc(var(--nav-h) + 20px); }
.toc h4 { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin: 0 0 16px; font-weight: 600; }
.toc ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.toc a { font-size: 14px; color: var(--ink-soft); display: block; line-height: 1.4; transition: color .15s ease; }
.toc a:hover { color: var(--gold-deep); }

.doc-layout { display: grid; grid-template-columns: 268px 1fr; gap: clamp(40px, 5vw, 72px); align-items: start; }
.doc-layout .prose { max-width: 760px; }
@media (max-width: 900px) { .doc-layout { grid-template-columns: 1fr; } .doc-layout .toc { display: none; } }

/* info table */
.price-table { width: 100%; border-collapse: collapse; border: 1px solid var(--hairline); background: #fff; }
.price-table th, .price-table td { text-align: left; padding: 18px 22px; border-bottom: 1px solid var(--hairline); font-size: 15px; }
.price-table th { font: var(--w-label) 11px/1 var(--font-sans); letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); background: var(--paper); }
.price-table td.amount { font-weight: 600; color: var(--ink); text-align: right; white-space: nowrap; }
.price-table tr:last-child td { border-bottom: 0; }

/* breadcrumb */
.crumbs { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: 12.5px; color: var(--muted); letter-spacing: .3px; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--gold-deep); }
.crumbs span.sep { color: var(--gold); }

/* inner-page hero */
.subhero { position: relative; overflow: hidden; padding: clamp(72px,10vw,124px) 0 clamp(54px,7vw,82px); background: var(--dark); }
.subhero .plate { position: absolute; inset: 0; z-index: 0; }
.subhero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,11,8,.5), rgba(12,11,8,.82)); z-index: 1; }
.subhero .container { position: relative; z-index: 2; }
.subhero .crumbs, .subhero .crumbs a, .subhero .crumbs span { color: rgba(255,255,255,.62); }
.subhero .crumbs a:hover { color: var(--gold-bright); }
.subhero .crumbs span.sep { color: var(--gold); }
.subhero .section-head { margin-top: 24px; }
.subhero h1 { color: #fff; }
.subhero .lead { color: rgba(255,255,255,.84); }
.subhero .eyebrow { color: var(--gold-bright); }

/* Fade-in retiré : le contenu est TOUJOURS visible (fiabilité + SEO — jamais de
   texte masqué en opacity:0 si le JS ne le révèle pas). .reveal/.in neutralisés. */
.reveal, .reveal-ready .reveal, .reveal.in { opacity: 1 !important; transform: none !important; transition: none !important; }

/* ---------------------------------------------------------------- Responsive */
@media (max-width: 1080px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 960px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: inline-flex; }
  .cols-4 { grid-template-columns: repeat(2, 1fr); }
  .cols-3 { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); gap: 32px 28px; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse .split-media { order: 0; }
  .split-media { min-height: 340px; aspect-ratio: 16/10; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .section { padding: 56px 0; }
  .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .mobile-cta-bar { display: flex; }
  body.has-mobile-cta { padding-bottom: 84px; }
  .hero-trust { gap: 16px 24px; }
  .btn { width: 100%; }
  .hero-cta .btn { width: 100%; }
  .stat-row { grid-template-columns: 1fr 1fr; }
}
