/* New York FR — feuille de style unique (design-system/newyorkfr/MASTER.md).
   Mobile-first. Aucune autre feuille ni <style> sur les pages. Aucune police
   CDN (voir fonts.css), aucun script tiers. */

:root {
  --color-bg: #FAF8F3;
  --color-surface: #FFFFFF;
  --color-ink: #101418;
  --color-muted: #4A5058;
  --color-border: #E6E2D8;
  --color-primary: #0B3D2E;        /* vert Central Park : CTA, liens */
  --color-primary-hover: #072A20;
  --color-primary-soft: #E6F0EB;
  --color-accent: #F5C518;         /* jaune taxi : une seule audace par écran */
  --color-ink-deep: #0E1116;       /* hero sombre, nuit new-yorkaise */
  --color-warn: #B54708;
  --color-warn-soft: #FFF4E5;
  --color-ok: #067647;
  --color-ok-soft: #ECFDF3;
  --color-danger: #B42318;
  --color-danger-soft: #FEF3F2;
  --color-focus: #0B3D2E;
  /* Pastilles de ligne (seules exceptions à la règle du jaune) */
  --line-p: #00753A; --line-l: #0039A6; --line-d: #FF6319; --line-q: #D0281F; --line-b: #FCCC0A;
  --font-title: 'Bricolage Grotesque', 'Segoe UI', Arial, sans-serif;
  --font-text: 'Public Sans', 'Segoe UI', Arial, sans-serif;
  --s-1: 8px; --s-2: 16px; --s-3: 24px; --s-4: 32px; --s-5: 40px; --s-6: 48px; --s-8: 64px;
  --r-card: 12px; --r-field: 8px;
  --shadow: 0 1px 2px rgba(16, 20, 24, .06);
  --shell: 1120px;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; background: var(--color-bg); color: var(--color-ink);
  font-family: var(--font-text); font-size: 17px; line-height: 1.6;
  overflow-x: hidden;
}
img, svg { max-width: 100%; }
img { height: auto; display: block; }
a { color: var(--color-primary); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--color-primary-hover); }
h1, h2, h3, h4 {
  font-family: var(--font-title); font-weight: 800; line-height: 1.15;
  letter-spacing: -0.015em; text-wrap: balance; margin: 0 0 var(--s-2);
}
h1 { font-size: 34px; }
h2 { font-size: 27px; margin-top: var(--s-6); }
h3 { font-size: 21px; font-weight: 600; margin-top: var(--s-4); }
h4 { font-size: 18px; font-weight: 600; margin-top: var(--s-3); }
p, ul, ol { margin: 0 0 var(--s-2); }
ul, ol { padding-left: 1.3em; }
li + li { margin-top: 4px; }
small, .small { font-size: 14px; }
strong { font-weight: 700; }
table { border-collapse: collapse; width: 100%; font-variant-numeric: tabular-nums; }
th, td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--color-border); vertical-align: top; }
th { font-family: var(--font-title); font-weight: 600; font-size: 15px; background: var(--color-primary-soft); }
.table-wrap { overflow-x: auto; margin: var(--s-3) 0; border: 1px solid var(--color-border); border-radius: var(--r-card); background: var(--color-surface); }
.table-wrap table { margin: 0; min-width: 480px; }
.tool .table-wrap table { min-width: 360px; }
hr { border: 0; border-top: 1px solid var(--color-border); margin: var(--s-5) 0; }
:focus-visible { outline: 3px solid var(--color-focus); outline-offset: 2px; border-radius: 4px; }
.skip-link { position: absolute; left: -999px; top: 8px; background: var(--color-ink); color: #fff; padding: 8px 12px; border-radius: 6px; z-index: 100; }
.skip-link:focus { left: 8px; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.eyebrow { font-family: var(--font-title); font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--color-primary); margin-bottom: var(--s-1); display: flex; align-items: center; gap: 8px; }
.lead { font-size: 20px; color: var(--color-muted); max-width: 68ch; }
.prose { max-width: 68ch; }
.muted { color: var(--color-muted); }
.mt-0 { margin-top: 0; }

/* ---------- Layout ---------- */
.shell { width: min(100% - 2 * var(--s-2), var(--shell)); margin-inline: auto; }
.page-pad { padding-block: var(--s-4) var(--s-8); }
.grid { display: grid; gap: var(--s-2); }
@media (min-width: 640px) { .grid--2 { grid-template-columns: repeat(2, 1fr); } .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } .grid--4 { grid-template-columns: repeat(4, 1fr); } }
.two-col { display: grid; gap: var(--s-4); grid-template-columns: minmax(0, 1fr); }
.two-col > * { min-width: 0; }
@media (min-width: 900px) { .two-col { grid-template-columns: minmax(0, 1fr) 320px; align-items: start; } }
.sticky-aside { position: sticky; top: 80px; }

/* ---------- Pastilles de ligne (signature) ---------- */
.line { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 999px; font-family: var(--font-title); font-weight: 800; font-size: 16px; line-height: 1; color: #fff; flex: none; letter-spacing: 0; }
.line--lg { width: 44px; height: 44px; font-size: 22px; }
.line--sm { width: 22px; height: 22px; font-size: 12px; }
.line--p { background: var(--line-p); --ring: var(--line-p); }
.line--l { background: var(--line-l); --ring: var(--line-l); }
.line--d { background: var(--line-d); color: var(--color-ink); --ring: var(--line-d); }
.line--q { background: var(--line-q); --ring: var(--line-q); }
.line--b { background: var(--line-b); color: var(--color-ink); --ring: var(--line-b); }
.line--i { background: var(--color-ink); --ring: var(--color-ink); }
.line--o { background: var(--color-primary); --ring: var(--color-primary); }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(250, 248, 243, .92); backdrop-filter: blur(8px); border-bottom: 1px solid var(--color-border); transition: box-shadow .2s ease; }
.site-header.is-scrolled { box-shadow: 0 6px 18px -12px rgba(16, 20, 24, .35); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: var(--s-2); min-height: 64px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--color-ink); font-family: var(--font-title); font-weight: 800; font-size: 20px; letter-spacing: -0.01em; }
.brand svg { flex: none; }
.brand-text em { font-style: normal; color: var(--color-primary); }
.nav-toggle { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border: 1px solid var(--color-border); background: var(--color-surface); border-radius: var(--r-field); cursor: pointer; color: var(--color-ink); }
.site-nav { display: none; }
.site-nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.site-nav li + li { margin-top: 0; }
.site-nav a { display: block; padding: 10px 12px; border-radius: var(--r-field); color: var(--color-ink); text-decoration: none; font-weight: 500; font-size: 15px; min-height: 44px; line-height: 24px; }
.site-nav a:hover, .site-nav a[aria-current="page"] { background: var(--color-primary-soft); color: var(--color-primary-hover); }
.site-nav.is-open { display: block; position: absolute; left: 0; right: 0; top: 64px; background: var(--color-surface); border-bottom: 1px solid var(--color-border); padding: var(--s-2); box-shadow: 0 8px 24px rgba(16, 20, 24, .08); }
.site-nav .nav-cta { margin-top: var(--s-1); color: #fff; } /* .site-nav a (ink) l'emportait sur .btn--primary : texte sombre sur vert (revue DevOps 09/09) */
.site-nav .nav-cta:hover { color: #fff; }
@media (min-width: 1000px) {
  .nav-toggle { display: none; }
  .site-nav { display: flex !important; position: static; align-items: center; gap: var(--s-2); background: none; border: 0; padding: 0; box-shadow: none; }
  .site-nav ul { flex-direction: row; gap: 0; }
  .site-nav a { padding: 10px 9px; }
  .site-nav .nav-cta { margin: 0 0 0 var(--s-1); }
}

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 44px; padding: 10px 18px; border-radius: var(--r-field);
  font-family: var(--font-title); font-weight: 600; font-size: 16px; line-height: 1;
  text-decoration: none; cursor: pointer; border: 1px solid transparent;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.btn--primary { background: var(--color-primary); color: #fff; box-shadow: 0 1px 0 rgba(16, 20, 24, .08), 0 8px 20px -12px rgba(11, 61, 46, .7); }
.btn--primary:hover { background: var(--color-primary-hover); color: #fff; transform: translateY(-1px); }
.btn--ghost { background: var(--color-surface); color: var(--color-primary); border-color: var(--color-border); }
.btn--ghost:hover { border-color: var(--color-primary); background: var(--color-primary-soft); }
.btn--sm { min-height: 40px; padding: 6px 12px; font-size: 14px; }
.btn[disabled] { opacity: .5; cursor: not-allowed; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: var(--s-3); }
.btn svg { transition: transform .18s ease; }
.btn:hover svg { transform: translateX(2px); }

/* ---------- Hero sombre + skyline (signature) ---------- */
.hero-dark { background: var(--color-ink-deep); color: #fff; padding: var(--s-6) 0 var(--s-5); position: relative; overflow: hidden; }
.hero-dark .shell { position: relative; z-index: 1; }
.hero-dark .eyebrow { color: var(--color-accent); }
.hero-dark h1 { color: #fff; font-size: clamp(36px, 6.2vw, 62px); letter-spacing: -0.025em; max-width: 16ch; }
.hero-dark .lead { color: #C7CCD3; }
.hero-dark .btn--ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .35); }
.hero-dark .btn--ghost:hover { background: rgba(255, 255, 255, .08); border-color: #fff; color: #fff; }
.hero-dark .btn--primary { background: var(--color-accent); color: var(--color-ink); box-shadow: none; }
.hero-dark .btn--primary:hover { background: #FFD43B; color: var(--color-ink); }
.hero-dark--sub { padding-block: var(--s-5) var(--s-4); }
.hero-dark--sub h1 { font-size: clamp(30px, 4.6vw, 46px); max-width: 20ch; }
.hero-dark--sub .lead { font-size: 18px; }
/* Mot-clé du H1 : trait jaune taxi qui se trace de gauche à droite. */
.mark { background: linear-gradient(var(--color-accent), var(--color-accent)) no-repeat 0 92% / 0 .16em; padding-bottom: .04em; animation: mark-draw .7s cubic-bezier(.2, .7, .2, 1) 1.1s forwards; }
@keyframes mark-draw { to { background-size: 100% .16em; } }
/* Skyline maison : silhouettes tracées trait par trait, fenêtres qui s'allument. */
.skyline { position: absolute; left: 0; right: 0; bottom: 0; width: 100%; height: 40%; min-height: 150px; pointer-events: none; z-index: 0; }
.skyline__bldg { fill: rgba(255, 255, 255, .025); stroke: rgba(255, 255, 255, .42); stroke-width: 1.5; stroke-linejoin: round; stroke-dasharray: 2400; stroke-dashoffset: 2400; animation: bldg-draw 1.8s cubic-bezier(.4, 0, .2, 1) var(--d, 0s) forwards; }
.skyline__win { fill: var(--color-accent); opacity: 0; animation: win-on .35s ease var(--d, 0s) forwards; }
.skyline__win.is-dim { opacity: .25; }
.skyline__ground { stroke: rgba(255, 255, 255, .5); stroke-width: 1.5; }
@keyframes bldg-draw { to { stroke-dashoffset: 0; } }
@keyframes win-on { to { opacity: .9; } }
.hero-dark--sub .skyline { height: 55%; opacity: .55; }
/* Chiffres clés (compteurs) */
.stats { display: grid; gap: var(--s-2); margin-top: var(--s-4); }
@media (min-width: 640px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { background: rgba(14, 17, 22, .84); backdrop-filter: blur(3px); border: 1px solid rgba(255, 255, 255, .16); border-radius: 12px; padding: var(--s-2) var(--s-2); opacity: 0; transform: translateY(12px); animation: tile-in .45s cubic-bezier(.2, .7, .2, 1) forwards; }
.stat:nth-child(2) { animation-delay: .08s; } .stat:nth-child(3) { animation-delay: .16s; } .stat:nth-child(4) { animation-delay: .24s; }
.stat .big { display: block; font-family: var(--font-title); font-weight: 800; font-size: 34px; line-height: 1; color: #fff; font-variant-numeric: tabular-nums; min-width: 3ch; }
.stat p { margin: 6px 0 0; color: #C7CCD3; font-size: 14px; }
.stat p a { color: #fff; }
@keyframes tile-in { to { opacity: 1; transform: none; } }
.hero-note { margin-top: var(--s-2); font-size: 14px; color: #B3BAC3; position: relative; z-index: 1; display: inline-block; max-width: 100%; padding: 6px 10px; border-radius: 8px; background: rgba(14, 17, 22, .78); } /* lisible par-dessus les fenêtres de la skyline (revue DevOps 09/09) */
.hero-dark .page-meta { color: #C7CCD3; }
.hero-dark .breadcrumbs { color: #C7CCD3; }
.hero-dark .breadcrumbs a { color: #fff; }

/* ---------- Trust band ---------- */
.trust-band { display: grid; gap: var(--s-2); padding: var(--s-3) 0; border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
.trust-band > div { display: flex; gap: 12px; align-items: flex-start; }
.trust-band svg { flex: none; color: var(--color-primary); width: 34px; height: 34px; padding: 8px; border-radius: 10px; background: var(--color-primary-soft); }
.trust-band p { margin: 0; font-size: 15px; color: var(--color-muted); }
.trust-band strong { display: block; color: var(--color-ink); font-family: var(--font-title); font-weight: 600; }
@media (min-width: 640px) { .trust-band { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Cartes ---------- */
.cards { display: grid; gap: var(--s-2); margin: var(--s-3) 0; }
@media (min-width: 640px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .cards { grid-template-columns: repeat(3, 1fr); } .cards--2 { grid-template-columns: repeat(2, 1fr); } }
.card {
  display: block; background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--r-card); padding: var(--s-3); color: var(--color-ink); text-decoration: none;
  box-shadow: var(--shadow); position: relative;
  transition: border-color .18s ease, transform .22s cubic-bezier(.2, .7, .2, 1), box-shadow .22s ease;
}
a.card:hover { border-color: var(--color-primary); transform: translateY(-3px); box-shadow: 0 14px 28px -16px rgba(16, 20, 24, .28); }
a.card:focus-visible { transform: translateY(-3px); }
.card h3 { margin-top: 0; font-size: 19px; }
.card p { margin-bottom: 0; color: var(--color-muted); font-size: 16px; }
.card-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--color-primary-soft); color: var(--color-primary); display: inline-flex; align-items: center; justify-content: center; margin-bottom: var(--s-2); transition: background-color .18s ease, color .18s ease, transform .22s cubic-bezier(.2, 1.3, .3, 1); }
a.card:hover .card-icon { background: var(--color-primary); color: #fff; transform: rotate(-6deg) scale(1.06); }
.card-meta { margin-top: var(--s-2); font-size: 14px; color: var(--color-muted); }
a.card::after { content: "→"; position: absolute; right: var(--s-3); bottom: var(--s-2); font-family: var(--font-title); font-weight: 800; color: var(--color-primary); opacity: 0; transform: translateX(-6px); transition: opacity .18s ease, transform .22s ease; }
a.card:hover::after { opacity: 1; transform: none; }
.card .line { margin-bottom: var(--s-2); }

/* Grandes sections (pastilles) sur l'accueil */
.sections { display: grid; gap: var(--s-2); margin: var(--s-3) 0; }
@media (min-width: 640px) { .sections { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .sections { grid-template-columns: repeat(5, 1fr); } }
.section-card { display: flex; flex-direction: column; gap: 10px; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--r-card); padding: var(--s-3) var(--s-2); text-decoration: none; color: var(--color-ink); transition: border-color .18s ease, transform .22s cubic-bezier(.2, .7, .2, 1), box-shadow .22s ease; }
.section-card:hover { transform: translateY(-3px); border-color: var(--color-primary); box-shadow: 0 14px 28px -16px rgba(16, 20, 24, .28); }
.section-card strong { font-family: var(--font-title); font-weight: 800; font-size: 19px; }
.section-card span:not(.line) { font-size: 14px; color: var(--color-muted); }

/* ---------- Cartes quartier (signature) ---------- */
.qcards { display: grid; gap: var(--s-2); margin: var(--s-3) 0; }
@media (min-width: 640px) { .qcards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .qcards { grid-template-columns: repeat(3, 1fr); } }
.qcard { display: flex; flex-direction: column; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--r-card); overflow: hidden; text-decoration: none; color: var(--color-ink); transition: border-color .18s ease, transform .22s cubic-bezier(.2, .7, .2, 1), box-shadow .22s ease; }
.qcard:hover { transform: translateY(-3px); border-color: var(--color-primary); box-shadow: 0 14px 28px -16px rgba(16, 20, 24, .28); }
.qcard__art { height: 84px; background: var(--color-ink-deep); position: relative; overflow: hidden; }
.qcard__art svg { position: absolute; inset: auto 0 0 0; width: 100%; height: 100%; }
.qcard__body { padding: var(--s-2) var(--s-3) var(--s-3); display: flex; flex-direction: column; gap: 8px; }
.qcard h3 { margin: 0; font-size: 20px; font-weight: 800; }
.qcard__note { font-family: var(--font-title); font-weight: 600; color: var(--color-primary); font-size: 15px; }
.qcard__note::before { content: "« "; } .qcard__note::after { content: " »"; }
.qcard p { margin: 0; color: var(--color-muted); font-size: 15px; }
.qcard__meta { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-top: auto; padding-top: 6px; font-size: 13px; color: var(--color-muted); }
.vibe { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-title); font-weight: 600; font-size: 12px; padding: 3px 10px; border-radius: 999px; background: var(--color-primary-soft); color: var(--color-primary); }
.vibe::before { content: ""; width: 8px; height: 8px; border-radius: 999px; background: currentColor; }
.vibe--nuit { background: #E8EAF6; color: #283593; }
.vibe--calme { background: var(--color-ok-soft); color: var(--color-ok); }
.vibe--foule { background: var(--color-warn-soft); color: var(--color-warn); }
.vibe--branche { background: #FCE4EC; color: #AD1457; }
.price { font-family: var(--font-title); font-weight: 800; color: var(--color-ink); }

/* ---------- AnswerBox / KeyFacts / Sources / Warning / Fresh ---------- */
.answer { background: var(--color-primary-soft); border-left: 4px solid var(--color-primary); border-radius: 0 var(--r-card) var(--r-card) 0; padding: var(--s-2) var(--s-3); margin: var(--s-3) 0; }
.answer .eyebrow { margin-bottom: 4px; }
.answer p { margin: 0; font-size: 18px; }
.answer p + p { margin-top: var(--s-1); }
.keyfacts { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--r-card); padding: var(--s-2) var(--s-3); margin: var(--s-3) 0; }
.keyfacts h2, .keyfacts h3 { margin-top: 0; font-size: 17px; font-weight: 800; }
.keyfacts ul { margin: 0; padding-left: 1.2em; }
.source-card { display: flex; gap: 12px; align-items: flex-start; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--r-card); padding: var(--s-2); margin: var(--s-2) 0; font-size: 15px; }
.source-card svg { flex: none; color: var(--color-primary); margin-top: 2px; }
.source-card strong { font-family: var(--font-title); font-weight: 600; display: block; }
.source-card a { word-break: break-all; }
.source-card .fresh { margin-top: 6px; }
.warn-card { background: var(--color-warn-soft); border: 1px solid #F7D9B5; border-radius: var(--r-card); padding: var(--s-2) var(--s-3); margin: var(--s-3) 0; color: #7A2E0E; }
.warn-card strong { color: var(--color-warn); font-family: var(--font-title); }
.warn-card p:last-child, .warn-card ul:last-child { margin-bottom: 0; }
.fresh { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; font-family: var(--font-title); color: var(--color-ok); background: var(--color-ok-soft); border-radius: 999px; padding: 4px 10px; }
.fresh svg { flex: none; }
.fresh--warn { color: var(--color-warn); background: var(--color-warn-soft); }
.unverified { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 600; font-family: var(--font-title); color: var(--color-warn); background: var(--color-warn-soft); border-radius: 999px; padding: 2px 8px; vertical-align: middle; white-space: nowrap; }
.page-meta { display: flex; flex-wrap: wrap; gap: 10px 16px; align-items: center; font-size: 14px; color: var(--color-muted); margin: var(--s-1) 0 var(--s-3); }

/* ---------- Affiliation ---------- */
.affiliate { background: var(--color-surface); border: 1px dashed var(--color-border); border-radius: var(--r-card); padding: var(--s-2) var(--s-3); margin: var(--s-3) 0; }
.affiliate .tag { font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--color-muted); }
.affiliate h3 { margin-top: 4px; font-size: 18px; }
.affiliate p:last-child { margin-bottom: 0; }
.affiliate .soon { display: inline-block; font-size: 13px; font-weight: 600; color: var(--color-muted); border: 1px solid var(--color-border); border-radius: 999px; padding: 3px 10px; }

/* ---------- FAQ ---------- */
.faq details { border-top: 1px solid var(--color-border); padding: 14px 0; }
.faq details:last-of-type { border-bottom: 1px solid var(--color-border); }
.faq summary { cursor: pointer; font-family: var(--font-title); font-weight: 600; font-size: 17px; list-style: none; display: flex; justify-content: space-between; gap: 12px; min-height: 28px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--color-primary); font-weight: 800; display: inline-block; transition: transform .22s cubic-bezier(.2, .7, .2, 1); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > p { margin: 10px 0 0; color: var(--color-muted); }
.faq summary { transition: color .18s ease; }
.faq summary:hover { color: var(--color-primary); }
.faq details[open] > p { animation: faq-in .28s cubic-bezier(.2, .7, .2, 1); }
@keyframes faq-in { from { opacity: 0; transform: translateY(-4px); } }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { font-size: 14px; color: var(--color-muted); margin: var(--s-2) 0; }
.breadcrumbs ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.breadcrumbs li + li::before { content: "›"; margin-right: 6px; }
.breadcrumbs a { color: inherit; }

/* ---------- Itinéraires : ligne de métro verticale (signature) ---------- */
.metro { list-style: none; margin: var(--s-4) 0; padding: 0; position: relative; --line-color: var(--color-primary); }
.metro::before { content: ""; position: absolute; left: 21px; top: 10px; bottom: 10px; width: 6px; border-radius: 3px; background: var(--line-color); }
/* Wow 2 : avec JS, ::before devient le rail pâle et ::after la ligne qui se
   trace du haut vers le bas quand la journée entre à l'écran. Sans JS les deux
   se superposent : rien ne manque. */
.metro::after { content: ""; position: absolute; left: 21px; top: 10px; bottom: 10px; width: 6px; border-radius: 3px; background: var(--line-color); transform-origin: top; }
.reveal-ready .metro::before { opacity: .22; }
.reveal-ready .metro::after { transform: scaleY(0); transition: transform 1.6s cubic-bezier(.4, 0, .2, 1) .1s; }
.reveal-ready .metro.is-in::after { transform: scaleY(1); }
.metro--q { --line-color: var(--line-q); } .metro--l { --line-color: var(--line-l); } .metro--d { --line-color: var(--line-d); } .metro--b { --line-color: var(--line-b); }
.metro__stop { position: relative; padding-left: 64px; padding-bottom: var(--s-4); margin: 0; }
.metro__stop:last-child { padding-bottom: 0; }
.metro__dot { position: absolute; left: 14px; top: 4px; width: 20px; height: 20px; border-radius: 999px; background: #fff; border: 5px solid var(--line-color); box-sizing: border-box; }
.metro__stop--transfer { padding-bottom: var(--s-3); }
.metro__stop--transfer .metro__dot { left: 18px; top: 6px; width: 12px; height: 12px; border-width: 3px; background: var(--color-bg); }
.metro__stop--transfer .metro__time { color: var(--color-muted); }
.metro__stop--transfer .metro__body { background: transparent; border: 1px dashed var(--color-border); }
.metro__time { font-family: var(--font-title); font-weight: 800; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; color: var(--line-color); display: block; margin-bottom: 4px; }
.metro--b .metro__time, .metro--d .metro__time { color: var(--color-ink); }
.metro__body { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--r-card); padding: var(--s-2) var(--s-3); }
.metro__body h3 { margin: 0 0 6px; font-size: 19px; font-weight: 800; }
.metro__body p:last-child { margin-bottom: 0; }
.metro__body .small { color: var(--color-muted); }
/* Wow 2 : chaque station est observée individuellement (reveal.js) et
   s'allume quand elle entre à l'écran, avec une cascade courte au sein d'un
   même lot (--reveal-delay). Le point « pop » puis émet un anneau de la
   couleur de la ligne. */
.reveal-ready .metro__stop { opacity: 0; transform: translateX(-8px); transition: opacity .45s ease var(--reveal-delay, 0s), transform .45s cubic-bezier(.2, .7, .2, 1) var(--reveal-delay, 0s); }
.reveal-ready .metro__stop.is-in { opacity: 1; transform: none; }
.reveal-ready .metro__dot { transform: scale(.4); transition: transform .5s cubic-bezier(.2, 1.5, .3, 1) calc(var(--reveal-delay, 0s) + .12s); }
.reveal-ready .metro__stop.is-in .metro__dot { transform: none; animation: stop-on .8s ease-out calc(var(--reveal-delay, 0s) + .12s) both; }
@keyframes stop-on { from { box-shadow: 0 0 0 0 var(--line-color); } to { box-shadow: 0 0 0 14px transparent; } }
.day-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin: var(--s-3) 0 0; padding: 0; list-style: none; }
.day-tabs a { display: inline-flex; align-items: center; gap: 8px; min-height: 40px; padding: 6px 12px; border: 1px solid var(--color-border); border-radius: 999px; background: var(--color-surface); text-decoration: none; color: var(--color-ink); font-weight: 600; font-size: 14px; transition: border-color .18s ease, background-color .18s ease, color .18s ease, transform .18s ease; }
.day-tabs a:hover { border-color: var(--color-primary); transform: translateY(-1px); }
/* Jour courant (site.js pose aria-current sur l'onglet dont la section occupe le milieu de l'écran). */
.day-tabs a[aria-current="true"] { background: var(--color-ink); border-color: var(--color-ink); color: #fff; }

/* ---------- Formulaires & outils ---------- */
.tool { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--r-card); padding: var(--s-3); margin: var(--s-3) 0; box-shadow: var(--shadow); }
.field { margin-bottom: var(--s-2); }
.field--flush { margin: 0; }
.field label, .field legend { display: block; font-family: var(--font-title); font-weight: 600; font-size: 15px; margin-bottom: 6px; }
.field .help { display: block; font-size: 14px; color: var(--color-muted); margin-top: 4px; }
.field input[type="text"], .field input[type="email"], .field input[type="number"], .field input[type="date"], .field select {
  width: 100%; min-height: 44px; padding: 10px 12px; font: inherit; color: var(--color-ink);
  background: var(--color-surface); border: 1px solid #C9C5BA; border-radius: var(--r-field);
}
.field input:focus, .field select:focus { border-color: var(--color-primary); outline: 3px solid var(--color-focus); outline-offset: 1px; }
.field-row { display: grid; gap: var(--s-2); }
@media (min-width: 640px) { .field-row { grid-template-columns: repeat(3, 1fr); } .field-row--2 { grid-template-columns: repeat(2, 1fr); } }
.choices { display: grid; gap: 8px; }
@media (min-width: 640px) { .choices--2 { grid-template-columns: repeat(2, 1fr); } }
.choice { display: flex; gap: 10px; align-items: flex-start; padding: 10px 12px; border: 1px solid var(--color-border); border-radius: var(--r-field); background: var(--color-surface); cursor: pointer; min-height: 44px; }
.choice:has(input:checked) { border-color: var(--color-primary); background: var(--color-primary-soft); }
.choice input { margin-top: 4px; accent-color: var(--color-primary); width: 18px; height: 18px; flex: none; }
.choice small { display: block; color: var(--color-muted); }
fieldset { border: 0; padding: 0; margin: 0 0 var(--s-2); }
.result { border-radius: var(--r-card); padding: var(--s-2) var(--s-3); margin-top: var(--s-3); border: 1px solid var(--color-border); background: var(--color-surface); }
.result[hidden] { display: none; }
.result:not([hidden]) { animation: result-in .38s cubic-bezier(.2, .9, .3, 1); }
@keyframes result-in { from { opacity: 0; transform: translateY(10px) scale(.985); } to { opacity: 1; transform: none; } }
.result h3 { margin-top: 0; }
.result--ok { border-color: #A6E3C0; background: var(--color-ok-soft); }
.result--check { border-color: #F7D9B5; background: var(--color-warn-soft); }
.result--no { border-color: #F4B3AE; background: var(--color-danger-soft); }
.result--unknown { background: var(--color-primary-soft); }
.result p:last-child { margin-bottom: 0; }
.error { color: var(--color-danger); font-size: 14px; margin-top: 6px; }
/* Calculateur de budget */
.budget-table th, .budget-table td { padding: 8px 10px; font-size: 15px; }
.budget-table input[type="number"] { width: 100%; min-width: 88px; min-height: 40px; padding: 6px 8px; font: inherit; font-variant-numeric: tabular-nums; border: 1px solid #C9C5BA; border-radius: var(--r-field); color: var(--color-ink); background: var(--color-surface); }
.budget-table input:focus { border-color: var(--color-primary); outline: 3px solid var(--color-focus); outline-offset: 1px; }
.budget-table td.num { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; }
.budget-table .unit { display: block; font-size: 12px; color: var(--color-muted); }
.totals { display: grid; gap: var(--s-2); margin-top: var(--s-3); }
@media (min-width: 640px) { .totals { grid-template-columns: repeat(3, 1fr); } }
.total { background: var(--color-ink-deep); color: #fff; border-radius: var(--r-card); padding: var(--s-2) var(--s-3); }
.total .lbl { display: block; font-family: var(--font-title); font-weight: 600; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--color-accent); }
.total .big { display: block; font-family: var(--font-title); font-weight: 800; font-size: 30px; line-height: 1.1; font-variant-numeric: tabular-nums; margin-top: 4px; }
.total .small { color: #C7CCD3; }
.total--light { background: var(--color-primary-soft); color: var(--color-ink); }
.total--light .lbl { color: var(--color-primary); }
.bar { display: flex; height: 14px; border-radius: 999px; overflow: hidden; background: var(--color-border); margin: var(--s-2) 0 6px; }
.bar span { display: block; height: 100%; transition: width .3s ease; }
.bar-legend { display: flex; flex-wrap: wrap; gap: 6px 14px; font-size: 13px; color: var(--color-muted); padding: 0; list-style: none; margin: 0 0 var(--s-2); }
.bar-legend li { display: inline-flex; align-items: center; gap: 6px; margin: 0; }
.bar-legend i { width: 10px; height: 10px; border-radius: 2px; display: inline-block; }
.recap { width: 100%; min-height: 160px; font: 14px/1.5 ui-monospace, SFMono-Regular, Consolas, monospace; padding: 10px; border: 1px solid var(--color-border); border-radius: var(--r-field); background: var(--color-bg); color: var(--color-ink); margin-top: var(--s-2); }
/* Quel pass */
.sites { display: grid; gap: 8px; }
@media (min-width: 640px) { .sites { grid-template-columns: repeat(2, 1fr); } }
.sites .choice { align-items: center; }
.sites .choice .tags { margin-left: auto; display: flex; gap: 4px; flex: none; }
.chip { font-family: var(--font-title); font-weight: 600; font-size: 11px; padding: 2px 7px; border-radius: 999px; background: var(--color-primary-soft); color: var(--color-primary); white-space: nowrap; }
.chip--muted { background: var(--color-bg); color: var(--color-muted); border: 1px solid var(--color-border); }
.compare { list-style: none; padding: 0; margin: var(--s-2) 0; display: grid; gap: 8px; }
.compare li { display: flex; justify-content: space-between; gap: 12px; align-items: baseline; padding: 8px 12px; border: 1px solid var(--color-border); border-radius: var(--r-field); background: var(--color-surface); margin: 0; }
.compare li.is-best { border-color: var(--color-primary); background: var(--color-primary-soft); }
.compare .price { font-size: 18px; }

/* ---------- Bento outils ---------- */
.bento { display: grid; gap: var(--s-2); margin: var(--s-3) 0; }
@media (min-width: 640px) { .bento { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .bento { grid-template-columns: repeat(3, 1fr); } .bento .card--wide { grid-column: span 2; } }
.card--wide { border: 1px solid transparent; background: linear-gradient(var(--color-primary-soft), var(--color-primary-soft)) padding-box, linear-gradient(120deg, var(--color-primary) 0%, var(--color-primary) 60%, var(--color-accent) 100%) border-box; }
.card--wide h3 { font-size: 22px; font-weight: 800; }
a.card--wide:hover { border-color: transparent; }

/* ---------- Comparatif pass / tableau de choix ---------- */
.pros { list-style: none; padding: 0; margin: 0; }
.pros li { padding-left: 24px; position: relative; }
.pros li::before { content: ""; position: absolute; left: 0; top: 9px; width: 12px; height: 12px; border-radius: 999px; background: var(--color-primary-soft); border: 3px solid var(--color-primary); box-sizing: border-box; }
.pros--no li::before { border-color: var(--color-warn); background: var(--color-warn-soft); }

/* ---------- Newsletter ---------- */
.newsletter { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--r-card); padding: var(--s-4); margin: var(--s-6) 0; }
.newsletter h2 { margin-top: 0; }
.newsletter__form { display: grid; gap: 10px; margin-top: var(--s-2); }
@media (min-width: 640px) { .newsletter__form { grid-template-columns: 1fr auto; align-items: end; } }
.newsletter__consent { grid-column: 1 / -1; font-size: 14px; color: var(--color-muted); display: flex; gap: 8px; align-items: flex-start; }
.newsletter__consent input { margin-top: 4px; width: 18px; height: 18px; flex: none; accent-color: var(--color-primary); }

/* ---------- Parcours / suite ---------- */
.next { display: flex; flex-wrap: wrap; gap: var(--s-2); margin: var(--s-4) 0; }
.next a { flex: 1 1 240px; display: flex; flex-direction: column; gap: 4px; padding: var(--s-2) var(--s-3); border: 1px solid var(--color-border); border-radius: var(--r-card); background: var(--color-surface); text-decoration: none; color: var(--color-ink); transition: border-color .18s ease, transform .22s ease; }
.next a:hover { border-color: var(--color-primary); transform: translateY(-2px); }
.next .lbl { font-family: var(--font-title); font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--color-muted); }
.next strong { font-family: var(--font-title); font-weight: 800; }

/* ---------- Auteur ---------- */
.author { display: flex; gap: 12px; align-items: center; font-size: 15px; color: var(--color-muted); margin: var(--s-4) 0; padding-top: var(--s-2); border-top: 1px solid var(--color-border); }
.author strong { color: var(--color-ink); font-family: var(--font-title); }

/* ---------- Footer ---------- */
.site-footer { margin-top: var(--s-8); background: var(--color-ink-deep); color: #C7CCD3; padding: var(--s-5) 0 var(--s-4); font-size: 15px; }
.site-footer .container { width: min(100% - 2 * var(--s-2), var(--shell)); margin-inline: auto; }
.site-footer__brand { font-family: var(--font-title); font-weight: 800; color: #fff; margin-bottom: 4px; font-size: 18px; }
.site-footer__tagline { color: var(--color-accent); font-family: var(--font-title); font-weight: 600; margin-bottom: var(--s-3); }
.site-footer__notice { max-width: 80ch; margin: 0 0 var(--s-3); }
.site-footer__nav { list-style: none; margin: 0 0 var(--s-3); padding: 0; display: flex; flex-wrap: wrap; gap: 8px 20px; }
.site-footer__nav a { color: #fff; text-decoration: none; }
.site-footer__nav a:hover { text-decoration: underline; }
.site-footer__legal { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px 20px; }
.site-footer__legal a { color: #fff; }
.site-footer li + li { margin-top: 0; }
.site-footer__sisters { margin-top: var(--s-3); font-size: 14px; color: #9AA3AD; }
.site-footer__sisters a { color: #C7CCD3; }

/* ---------- Reveal au scroll ---------- */
.reveal-ready [data-reveal] { opacity: 0; transform: translateY(14px); transition: opacity .5s ease var(--reveal-delay, 0s), transform .5s cubic-bezier(.2, .7, .2, 1) var(--reveal-delay, 0s); }
.reveal-ready [data-reveal].is-in { opacity: 1; transform: none; }
.reveal-ready .trust-band > div { opacity: 0; transform: translateY(10px); transition: opacity .5s ease, transform .5s cubic-bezier(.2, .7, .2, 1); }
.reveal-ready .trust-band.is-in > div { opacity: 1; transform: none; }
.reveal-ready .trust-band.is-in > div:nth-child(2) { transition-delay: .08s; }
.reveal-ready .trust-band.is-in > div:nth-child(3) { transition-delay: .16s; }

/* ---------- Consentement (CNIL) ---------- */
.consent-banner { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 90; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: 12px; padding: var(--s-2) var(--s-3); box-shadow: 0 12px 32px rgba(16, 20, 24, .14); display: grid; gap: 12px; max-width: 640px; margin-inline: auto; }
.consent-banner[hidden] { display: none; }
.consent-texte { margin: 0; font-size: 15px; }
.consent-actions { display: flex; gap: 10px; }
.consent-btn { flex: 1; min-height: 44px; border-radius: 8px; border: 1px solid var(--color-border); background: var(--color-surface); font: inherit; font-weight: 600; cursor: pointer; color: var(--color-ink); }
.consent-btn[data-consent-accept] { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }

/* ---------- Wow 2 (CEO 09/09, ui-ux-pro-max : motion signifiante, une audace par écran, état final en reduced-motion) ---------- */
/* 1. Taxi jaune : SVG maison (caisse + vitres + roues + enseigne + faisceau),
   traverse le pied de la skyline en boucle lente via offset-path. Sans prise
   en charge d'offset-path il n'est pas affiché (jamais figé au mauvais
   endroit). Reduced-motion : arrêté aux deux tiers, phares fixes. */
.taxi { display: none; }
@supports (offset-path: path("M0 0H1")) {
  .taxi { display: block; offset-path: path("M -90 236 H 1290"); offset-rotate: 0deg; opacity: 0; animation: taxi-run 28s linear 2.4s infinite; }
  .taxi.is-paused { animation-play-state: paused; }
}
.taxi__body { fill: var(--color-accent); }
.taxi__glass { fill: var(--color-ink-deep); opacity: .78; }
.taxi__wheel { fill: #05070A; stroke: #3A4048; stroke-width: 1.2; }
.taxi__sign { fill: #fff; }
.taxi__beam { fill: var(--color-accent); opacity: .14; transform-box: fill-box; transform-origin: 0% 50%; animation: beam-sweep 2.6s ease-in-out infinite alternate; }
@keyframes taxi-run { 0% { offset-distance: 0%; opacity: 0; } 3% { opacity: 1; } 97% { opacity: 1; } 100% { offset-distance: 100%; opacity: 0; } }
@keyframes beam-sweep { from { transform: rotate(-4deg) scaleX(.9); opacity: .1; } to { transform: rotate(3deg) scaleX(1.08); opacity: .22; } }
/* 2. Fenêtres qui scintillent : skyline.js pose .is-lit à la fin de l'allumage
   (l'animation « forwards » gardait sinon la main sur .is-dim), puis éteint et
   rallume quelques fenêtres en fondu. */
.skyline__win.is-lit { animation: none; opacity: .9; transition: opacity .9s ease; }
.skyline__win.is-lit.is-dim { opacity: .18; }
/* 3. Compteurs : petit pop quand le chiffre atteint sa valeur (site.js). */
.stat .big.is-done { animation: num-pop .32s cubic-bezier(.2, 1.4, .3, 1); }
@keyframes num-pop { 40% { transform: scale(1.08); } }
/* 4. Pastilles P L D Q B : elles « claquent » en cascade au reveal, et un
   anneau de leur couleur pulse au survol / focus de la carte. */
.line { position: relative; }
.reveal-ready .sections .line { opacity: 0; transform: scale(.35); transition: opacity .3s ease, transform .55s cubic-bezier(.2, 1.5, .3, 1); }
.reveal-ready .is-in .sections .line { opacity: 1; transform: none; }
.reveal-ready .is-in .section-card:nth-child(2) .line { transition-delay: .09s; } .reveal-ready .is-in .section-card:nth-child(3) .line { transition-delay: .18s; }
.reveal-ready .is-in .section-card:nth-child(4) .line { transition-delay: .27s; } .reveal-ready .is-in .section-card:nth-child(5) .line { transition-delay: .36s; }
.section-card .line::after, .day-tabs .line::after { content: ""; position: absolute; inset: 0; border-radius: 999px; border: 2px solid var(--ring, var(--color-primary)); opacity: 0; pointer-events: none; }
.section-card:hover .line::after, .section-card:focus-visible .line::after, .day-tabs a:hover .line::after { animation: ring-pulse 1.2s ease-out infinite; }
@keyframes ring-pulse { from { transform: scale(1); opacity: .85; } to { transform: scale(1.9); opacity: 0; } }
/* 5. Cartes quartier : reflet qui traverse la mini-skyline, titre qui passe
   au vert, pastille d'ambiance qui tourne d'un cran. */
.qcard__art::after { content: ""; position: absolute; inset: 0; background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, .16) 50%, transparent 70%); transform: translateX(-110%); transition: transform .7s cubic-bezier(.2, .7, .2, 1); pointer-events: none; }
.qcard:hover .qcard__art::after, .qcard:focus-visible .qcard__art::after { transform: translateX(110%); }
.qcard h3 { transition: color .18s ease; }
.qcard:hover h3 { color: var(--color-primary); }
.vibe { transition: transform .22s cubic-bezier(.2, 1.3, .3, 1); }
.qcard:hover .vibe { transform: rotate(-3deg) scale(1.04); }
/* 6. Calculateur de budget : les totaux « roulent » vers leur valeur
   (NYFR.roll), les tuiles pulsent, la barre de répartition glisse (spans
   persistants), le récap arrive en glissant. */
.total { position: relative; --pulse: var(--color-accent); }
.total--light { --pulse: var(--color-primary); }
.total.is-updated { animation: tile-pulse .55s ease; }
@keyframes tile-pulse { 30% { box-shadow: 0 0 0 3px var(--pulse); } }
.bar span { transition: width .5s cubic-bezier(.2, .7, .2, 1), background-color .3s ease; }
.recap.is-fresh { animation: recap-in .45s cubic-bezier(.2, .7, .2, 1); }
@keyframes recap-in { from { opacity: .35; transform: translateY(6px); border-color: var(--color-primary); } }
/* 7. Quel pass : le verdict surgit, la comparaison se remplit en barres (--w
   posé par outil-pass.js, cascade --i), la meilleure option en vert. */
.result h3 { animation: verdict-in .45s cubic-bezier(.2, 1.3, .3, 1) .08s both; }
@keyframes verdict-in { from { opacity: 0; transform: translateY(6px) scale(.97); } }
.compare li { position: relative; overflow: hidden; }
.compare li > * { position: relative; }
.compare li::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: var(--w, 0%); background: rgba(16, 20, 24, .06); transform: scaleX(0); transform-origin: left; animation: fill-in .7s cubic-bezier(.2, .7, .2, 1) calc(.2s + var(--i, 0) * .09s) forwards; }
.compare li.is-best::before { background: rgba(11, 61, 46, .14); }
@keyframes fill-in { to { transform: scaleX(1); } }
/* 8. CTA principal du hero : un reflet unique au chargement, puis hover calme ;
   retour tactile à l'appui sur tous les boutons. */
.hero-dark .btn--primary { position: relative; overflow: hidden; }
.hero-dark .btn--primary::after { content: ""; position: absolute; inset: 0; background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, .55) 50%, transparent 65%); transform: translateX(-120%); animation: sheen 1.1s ease 2.1s 1; pointer-events: none; }
@keyframes sheen { to { transform: translateX(120%); } }
.btn:active { transform: translateY(0) scale(.98); }
/* 9. Rail de lecture sous le header (site.js) : la ligne verte avance avec la
   lecture, la pointe jaune est le train. Créé par JS seulement sur les pages
   longues. */
.read-progress { position: absolute; left: 0; right: 0; bottom: -1px; height: 3px; overflow: hidden; pointer-events: none; }
.read-progress span { display: block; height: 100%; background: var(--color-primary); transform: scaleX(var(--p, 0)); transform-origin: left; }
.read-progress i { position: absolute; top: 0; height: 100%; width: 14px; background: var(--color-accent); left: calc(var(--p, 0) * 100%); transform: translateX(-100%); }
/* 10. AnswerBox : le filet vert se trace de haut en bas à l'arrivée. */
.answer { position: relative; border-left-color: transparent; }
.answer::before { content: ""; position: absolute; left: -4px; top: 0; bottom: 0; width: 4px; background: var(--color-primary); transform: scaleY(0); transform-origin: top; animation: answer-draw .6s cubic-bezier(.4, 0, .2, 1) .2s forwards; }
@keyframes answer-draw { to { transform: none; } }
/* 11. Liens « la suite » : la flèche apparaît avec le soulèvement. */
.next strong::after { content: " →"; opacity: 0; transition: opacity .18s ease; }
.next a:hover strong::after { opacity: 1; }

/* ---------- Mouvement ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
  .stat, .reveal-ready [data-reveal], .reveal-ready .trust-band > div, .reveal-ready .metro__stop, .reveal-ready .metro__dot, .reveal-ready .sections .line { opacity: 1 !important; transform: none !important; }
  .skyline__bldg { stroke-dashoffset: 0 !important; }
  .skyline__win { opacity: .9 !important; }
  .mark { background-size: 100% .16em !important; }
  /* Wow 2 : état final rendu */
  .taxi { opacity: 1 !important; offset-distance: 66%; }
  .taxi__beam { transform: none !important; opacity: .16 !important; }
  .reveal-ready .metro::after, .compare li::before, .answer::before { transform: none !important; }
  .reveal-ready .metro::before { opacity: 1; }
  .hero-dark .btn--primary::after, .qcard__art::after, .section-card .line::after, .day-tabs .line::after { display: none !important; }
  .result h3 { opacity: 1 !important; }
}
@media print {
  .site-header, .newsletter, .btn, .nav-toggle, .consent-banner, .skyline, .sticky-aside { display: none !important; }
  body { background: #fff; }
  .hero-dark { background: #fff; color: #000; }
  .hero-dark h1 { color: #000; }
}
