/* ══════════════════════════════════════════════════════════════════════
   MDF · Simulateur 04 — FISCAL FR · V3 ÉDITORIAL FRONTALIER
   Barlow only · palette stricte · scrollytelling 60/40
   ══════════════════════════════════════════════════════════════════════ */

:root {
  --white: #ffffff;
  --g-50:  #f9fafb;
  --g-100: #f3f4f6;
  --g-200: #e5e7eb;
  --g-300: #d1d5db;
  --g-400: #9ca3af;
  --g-500: #6b7280;
  --g-600: #4b5563;
  --ink:   #1f2937;
  --dark:  #111827;
  --red:   #c4232b;
  --red-ink: #7a1519;
  --red-soft: #fde2e3;
  --gold:  #c09a4b;
  --copper:#b87333;

  --fs-xs: 12px;
  --fs-sm: 14px;
  --fs-md: 16px;
  --fs-lg: 18px;
  --fs-xl: 22px;

  --max: 1440px;
  --gutter: clamp(16px, 4vw, 64px);

  --ease: cubic-bezier(.4, 0, .2, 1);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--white);
  color: var(--ink);
  font-family: 'Barlow', -apple-system, system-ui, sans-serif;
  font-weight: 400;
  font-size: var(--fs-lg);
  line-height: 1.55;
  font-feature-settings: "tnum" 1, "kern" 1;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--red);
  color: #fff;
  padding: 12px 20px;
  z-index: 9999;
  font-weight: 600;
}
.skip-link:focus { left: 16px; top: 16px; }

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 2px;
}

/* ── reveal default (js off fallback: visible) ── */
.chapter, .hero__grid, .ai-zone__inner, .legal__inner {
  opacity: 1;
}
.js-on .chapter,
.js-on .hero__grid > *,
.js-on .ai-zone__inner {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}
.js-on .chapter.is-visible,
.js-on .hero__grid > .is-visible,
.js-on .hero__grid.is-visible > *,
.js-on .ai-zone__inner.is-visible {
  opacity: 1;
  transform: none;
}
.js-on .hero__grid.is-visible > * { opacity: 1; transform: none; }

/* ══════════════════════ TOP RULE ══════════════════════ */
.top-rule {
  position: sticky;
  top: 0;
  height: 6px;
  background: var(--red);
  z-index: 100;
}

/* ══════════════════════ MASTHEAD ══════════════════════ */
.masthead {
  border-bottom: 1px solid var(--g-200);
  background: var(--white);
  position: sticky;
  top: 6px;
  z-index: 90;
}
.masthead__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.masthead__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.logo-diamond {
  width: 14px;
  height: 14px;
  background: var(--red);
  transform: rotate(45deg);
  display: inline-block;
}
.logo-word { line-height: 1; }
.masthead__nav {
  display: flex;
  gap: 18px;
  flex: 1;
  justify-content: center;
  flex-wrap: wrap;
}
.masthead__meta {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--g-500);
}
.masthead__cta {
  background: var(--red);
  color: #fff;
  padding: 10px 18px;
  font-weight: 600;
  font-size: 14px;
  transition: background 200ms var(--ease);
}
.masthead__cta:hover { background: var(--red-ink); }

/* ══════════════════════ HERO — LA UNE ══════════════════════ */
.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(32px, 6vw, 96px) var(--gutter) clamp(48px, 8vw, 120px);
  position: relative;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 3vw, 28px);
  position: relative;
}
.hero__kicker {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--red);
}
.hero__chapter {
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: clamp(90px, 16vw, 200px);
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 2px var(--red);
  letter-spacing: -0.03em;
  margin: -10px 0 -20px;
  position: relative;
  z-index: 0;
}
@supports not (-webkit-text-stroke: 1px red) {
  .hero__chapter { color: var(--red); }
}
.hero__title {
  font-weight: 800;
  font-size: clamp(56px, 10vw, 128px);
  line-height: 0.92;
  letter-spacing: -0.028em;
  color: var(--ink);
  margin: 0;
  max-width: 18ch;
}
.hero__lead {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
  color: var(--g-600);
  max-width: 64ch;
  margin: 8px 0 0;
}
.hero__signature {
  font-size: 14px;
  color: var(--g-600);
  margin: 4px 0 0;
  font-weight: 400;
}
.hero__signature em {
  color: var(--red);
  font-style: italic;
  font-weight: 400;
}
.hero__facts {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  border-top: 2px solid var(--red);
  padding-top: 18px;
  font-size: 13px;
  color: var(--g-600);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero__facts strong {
  color: var(--ink);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.01em;
  text-transform: none;
  display: inline-block;
  margin-right: 4px;
}
.hero__rule {
  position: absolute;
  left: var(--gutter);
  right: var(--gutter);
  bottom: 0;
  height: 1px;
  background: var(--copper);
}

/* ══════════════════════ DOSSIER LAYOUT ══════════════════════ */
.dossier {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 1024px) {
  .dossier {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 64px;
  }
}

/* ── SOMMAIRE ── */
.toc {
  position: static;
  padding: 24px 0;
  border-top: 2px solid var(--red);
  border-bottom: 1px solid var(--g-200);
}
@media (min-width: 1024px) {
  .toc {
    position: sticky;
    top: 80px;
    align-self: start;
    border-bottom: none;
    padding: 32px 0 0;
  }
}
.toc__label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--red);
  margin: 0 0 16px;
}
.toc__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
@media (min-width: 1024px) {
  .toc__list { display: block; }
  .toc__list li { margin-bottom: 18px; }
}
.toc__list a {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 8px 0;
  position: relative;
  transition: color 200ms var(--ease);
}
.toc__num {
  font-size: 22px;
  font-weight: 800;
  color: var(--red);
  min-width: 32px;
  letter-spacing: -0.02em;
}
.toc__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}
.toc__bar {
  display: none;
  position: absolute;
  left: -16px;
  top: 50%;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 500ms var(--ease);
  transform: translateY(-50%);
}
@media (min-width: 1024px) {
  .toc__bar { display: block; }
}
.toc a.is-active .toc__bar { width: 12px; }
.toc a.is-active .toc__title { color: var(--red); }
.toc__foot {
  margin: 24px 0 0;
  font-size: 11px;
  color: var(--g-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: none;
}
@media (min-width: 1024px) {
  .toc__foot { display: block; padding-top: 18px; border-top: 1px solid var(--copper); }
}

/* ══════════════════════ ARTICLE / CHAPITRES ══════════════════════ */
.article { min-width: 0; }

.chapter {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding: clamp(48px, 8vw, 120px) 0;
  min-height: auto;
}
@media (min-width: 1024px) {
  .chapter {
    grid-template-columns: 60% 40%;
    gap: 48px;
    min-height: 80vh;
    align-items: start;
  }
}
.chapter__body { min-width: 0; }
.chapter__eyebrow {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--red);
  margin: 0 0 16px;
}
.chapter__title {
  font-weight: 800;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 18px;
}
.chapter__dek {
  font-size: 20px;
  line-height: 1.5;
  color: var(--g-600);
  max-width: 52ch;
  margin: 0 0 36px;
}
.chapter__note {
  margin: 24px 0 0;
  padding: 16px 20px;
  background: var(--g-50);
  border-left: 4px solid var(--gold);
  font-size: 16px;
  color: var(--g-600);
}
.chapter__note strong {
  color: var(--ink);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

/* ── PROSE ── */
.prose { max-width: 62ch; }
.prose p {
  font-size: 19px;
  line-height: 1.65;
  color: var(--ink);
  margin: 0 0 24px;
}
.prose strong { font-weight: 600; color: var(--ink); }

.drop-cap {
  float: left;
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: 96px;
  line-height: 0.8;
  color: var(--red);
  padding: 8px 12px 0 0;
  margin: 0;
  letter-spacing: -0.04em;
}

/* ── FIELDS ── */
.field {
  margin: 32px 0;
  padding: 24px 0 20px;
  border-top: 1px solid var(--g-200);
  border-bottom: 1px solid var(--g-200);
}
.field__label {
  display: block;
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 8px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.field__hint {
  font-size: 14px;
  color: var(--g-500);
  margin: 0 0 16px;
}
.field__row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  border-bottom: 2px solid var(--red);
  padding: 4px 0;
}
.field__row input[type="number"] {
  flex: 1;
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: var(--ink);
  padding: 0;
  letter-spacing: -0.02em;
  font-feature-settings: "tnum" 1;
  min-width: 0;
  outline: none;
  -moz-appearance: textfield;
}
.field__row input[type="number"]::-webkit-outer-spin-button,
.field__row input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.field__unit {
  font-size: 14px;
  color: var(--g-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  flex-shrink: 0;
}

.field input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 2px;
  background: var(--g-200);
  margin-top: 18px;
  outline: none;
}
.field input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--red);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--red);
  cursor: pointer;
  transition: transform 200ms var(--ease);
}
.field input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.15); }
.field input[type="range"]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--red);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--red);
  cursor: pointer;
}

.field__choices {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.field__choices label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--g-300);
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  transition: all 200ms var(--ease);
}
.field__choices label:has(input:checked) {
  border-color: var(--red);
  background: var(--red-soft);
  color: var(--red-ink);
}
.field__choices input[type="radio"] { accent-color: var(--red); }

/* ── GIGA LINES ── */
.giga-line {
  font-size: 19px;
  line-height: 1.4;
  margin: 28px 0;
  color: var(--ink);
  max-width: 62ch;
}
.giga-line--xl {
  font-size: 22px;
  line-height: 1.35;
}
.giga {
  display: inline-block;
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 7vw, 80px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--ink);
  font-feature-settings: "tnum" 1;
  vertical-align: baseline;
  margin: 0 2px;
}
.giga--red { color: var(--red); }
.giga--copper { color: var(--copper); }
.giga__unit {
  font-size: 14px;
  font-weight: 600;
  color: var(--g-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-right: 8px;
}

/* ── PULL QUOTE ── */
.pull-quote {
  font-style: italic;
  font-weight: 400;
  font-size: clamp(26px, 3.6vw, 44px);
  line-height: 1.25;
  color: var(--ink);
  margin: 48px 0;
  padding: 12px 0 12px 28px;
  border-left: 4px solid var(--red);
  max-width: 28ch;
}
.pull-quote em { color: var(--red); font-style: italic; }

/* ── BARÈME TABLE ── */
.bareme {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: 16px;
  font-variant-numeric: tabular-nums;
}
.bareme th {
  text-align: left;
  padding: 10px 8px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
  border-bottom: 2px solid var(--red);
}
.bareme td {
  padding: 14px 8px;
  border-bottom: 1px solid var(--g-200);
  color: var(--ink);
}
.bareme tr.is-active td {
  background: var(--red-soft);
  color: var(--red-ink);
  font-weight: 600;
}
.bareme tr.is-active td:first-child {
  box-shadow: inset 4px 0 0 var(--red);
}
.tranche-amt {
  font-weight: 800;
  color: var(--ink);
}

/* ══════════════════════ VIZ STICKY ══════════════════════ */
.viz {
  position: relative;
  padding: 32px 24px;
  background: var(--g-50);
  border-top: 2px solid var(--red);
}
@media (min-width: 1024px) {
  .viz {
    position: sticky;
    top: 120px;
    align-self: start;
  }
}
.viz__title {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--red);
  margin: 0 0 18px;
}
.viz__svg {
  width: 100%;
  height: auto;
  overflow: visible;
}
.viz__svg--thermo { max-height: 460px; }

.viz-lbl {
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  fill: var(--g-600);
}
.viz-lbl--gold { fill: var(--gold); }
.viz-val {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 800;
  fill: var(--ink);
  font-feature-settings: "tnum" 1;
}
.viz-val--gold { fill: var(--gold); }
.viz-caption {
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  fill: var(--g-500);
  font-style: italic;
}
.viz-bar {
  transition: width 600ms var(--ease);
}
.viz-bar--red    { fill: var(--red); }
.viz-bar--grey   { fill: var(--g-300); }
.viz-bar--copper { fill: var(--copper); }
.viz-bar--dark   { fill: var(--ink); }
.viz-bar--gold   { fill: var(--gold); }

.thermo-lbl {
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: 16px;
  fill: #fff;
  text-anchor: middle;
}
.thermo-amt {
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  fill: var(--g-600);
  font-feature-settings: "tnum" 1;
}
.thermo-marker-lbl {
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  font-weight: 800;
  fill: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
#thermo-marker {
  transition: transform 700ms var(--ease);
}

/* ── PROSPER NOTE (chroniqueur invité) ── */
.prosper-note {
  margin: 32px 0 0;
  padding: 20px 20px 18px;
  background: var(--g-100);
  border-left: 4px solid var(--red);
  position: relative;
}
.prosper-svg {
  width: 56px;
  height: 56px;
  margin-bottom: 8px;
}
.prosper-note blockquote {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
  font-style: italic;
}
.prosper-note figcaption {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
}

/* ── ORNAMENT ── */
.ornament {
  display: block;
  padding: 0;
  max-width: 400px;
  margin: 0 auto;
}
.ornament span {
  display: block;
}
.ornament span:first-child {
  height: 2px;
  background: var(--red);
  margin-bottom: 3px;
}
.ornament span:last-child {
  height: 1px;
  background: var(--copper);
}

/* ══════════════════════ VERDICT KPI GRID ══════════════════════ */
.prose--verdict { max-width: none; }
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin: 36px 0 0;
  padding: 0;
  background: var(--g-200);
  border-top: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
}
@media (min-width: 640px) {
  .kpi-grid { grid-template-columns: repeat(4, 1fr); }
}
.kpi {
  background: var(--white);
  padding: 24px 18px 20px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}
.kpi dt {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
  margin: 0;
}
.kpi dd {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: var(--ink);
  margin: 0;
  line-height: 0.9;
  letter-spacing: -0.02em;
  font-feature-settings: "tnum" 1;
}
.kpi__unit {
  font-size: 13px;
  color: var(--g-500);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ══════════════════════ ZONE IA — MOT DE LA FIN ══════════════════════ */
.ai-zone {
  background: var(--dark);
  color: #fff;
  padding: clamp(48px, 8vw, 120px) var(--gutter);
  margin-top: clamp(48px, 6vw, 80px);
  position: relative;
}
.ai-zone::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--red);
}
.ai-zone__inner {
  max-width: var(--max);
  margin: 0 auto;
}
.ai-zone__kicker {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--red);
}
.ai-zone__title {
  font-weight: 800;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0 0 24px;
  max-width: 18ch;
}
.ai-zone__rule {
  width: 100%;
  max-width: 280px;
  height: 1px;
  background: var(--red);
  margin: 0 0 36px;
  position: relative;
}
.ai-zone__rule::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 140px;
  height: 1px;
  background: var(--copper);
}
.ai-zone__cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 900px) {
  .ai-zone__cols { grid-template-columns: 1.4fr 1fr; gap: 64px; }
}
.ai-zone__lead {
  font-size: 18px;
  line-height: 1.65;
  color: #e5e7eb;
  margin: 0;
}
.ai-drop-cap {
  float: left;
  font-size: 90px;
  font-weight: 800;
  line-height: 0.8;
  color: var(--gold);
  padding: 6px 12px 0 0;
  letter-spacing: -0.03em;
}
.ai-zone__status {
  margin: 12px 0 0;
  font-size: 12px;
  color: var(--g-400);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  min-height: 16px;
}
.ai-zone__col--aside {
  padding: 24px;
  background: rgba(255,255,255,0.04);
  border-left: 2px solid var(--red);
}
.ai-form__label {
  display: block;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
  margin: 0 0 10px;
}
.ai-form textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 15px;
  resize: vertical;
  outline: none;
  transition: border-color 200ms var(--ease);
}
.ai-form textarea:focus { border-color: var(--red); }
.ai-form__row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.ai-btn {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
  padding: 10px 20px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 200ms var(--ease);
}
.ai-btn:hover:not(:disabled) { border-color: var(--red); color: var(--red); }
.ai-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.ai-btn--primary { background: var(--red); border-color: var(--red); }
.ai-btn--primary:hover:not(:disabled) { background: var(--red-ink); color: #fff; }
.ai-zone__cta-line {
  margin: 24px 0 0;
  font-size: 13px;
  color: var(--g-400);
}
.ai-zone__cta {
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
}

/* ══════════════════════ LEGAL ══════════════════════ */
.legal {
  background: var(--white);
  color: var(--g-600);
  padding: 48px var(--gutter);
  border-top: 1px solid var(--g-200);
  font-size: 13px;
  line-height: 1.55;
}
.legal__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 16px;
}
.legal__warn {
  margin: 0;
  padding: 14px 16px;
  background: var(--g-50);
  border-left: 3px solid var(--red);
}
.legal__warn strong { color: var(--red); }
.legal__sources a {
  color: var(--g-600);
  border-bottom: 1px solid var(--g-300);
  transition: color 200ms var(--ease), border-color 200ms var(--ease);
}
.legal__sources a:hover { color: var(--red); border-color: var(--red); }
.legal__meta {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--g-500);
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid var(--g-200);
}

/* ══════════════════════ REDUCED MOTION ══════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
  .js-on .chapter,
  .js-on .hero__grid > *,
  .js-on .ai-zone__inner {
    opacity: 1;
    transform: none;
  }
}

/* ══════════════════════ CRÉDIBILITÉ — V3 ÉDITORIAL ══════════════════════ */

/* Ours — bandeau magazine smallcaps */
.ours {
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 64px);
  max-width: 1440px;
}
.ours__rule {
  height: 1px;
  background: var(--red);
}
.ours__rule--bot { background: var(--copper); }
.ours__inner {
  padding: 14px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(10px, 1.6vw, 24px);
  flex-wrap: wrap;
  font-family: 'Barlow', system-ui, sans-serif;
}
.ours__label {
  margin: 0;
  font-variant: small-caps;
  letter-spacing: 0.2em;
  font-size: 11px;
  color: var(--copper);
  font-weight: 800;
}
.ours__chip {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink);
  white-space: nowrap;
  font-variant: small-caps;
  letter-spacing: 0.06em;
}
.ours__v {
  font-weight: 800;
  color: var(--red);
  font-variant-numeric: tabular-nums;
  font-size: 14px;
  letter-spacing: 0;
}
.ours__l { color: #4B5563; font-weight: 600; }
.ours__sep {
  width: 1px;
  height: 20px;
  background: #D1D5DB;
  display: inline-block;
}
.cred-ico {
  width: 16px;
  height: 16px;
  color: var(--copper);
  flex-shrink: 0;
}
.cred-ico--ext { width: 14px; height: 14px; color: var(--red); }

@media (max-width: 900px) {
  .ours__inner { justify-content: flex-start; }
  .ours__sep { display: none; }
  .ours__chip { flex: 1 1 44%; }
}

/* Phrase fun — hero accroche journalistique */
.hero__punch {
  margin: 14px 0 4px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  font-family: 'Barlow', system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.4;
  color: var(--ink);
  font-style: italic;
  max-width: 760px;
}
.hero__punch-mark {
  display: inline-block;
  width: 11px;
  height: 11px;
  background: var(--red);
  transform: rotate(45deg);
  flex-shrink: 0;
  position: relative;
  top: 1px;
}
.hero__punch-txt { flex: 1 1 auto; }
.hero__punch-txt em { font-style: italic; color: var(--red); font-weight: 800; }
.hero__punch-sig {
  font-variant: small-caps;
  letter-spacing: 0.14em;
  font-size: 11px;
  color: var(--copper);
  font-weight: 800;
  font-style: normal;
}

/* Chapitre LE CABINET */
.chapter--cabinet .cabinet-chapter__tel {
  margin: 12px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
}
.chapter--cabinet .cabinet-chapter__tel a {
  color: var(--red);
  border-bottom: 1px solid var(--red);
}
.cabinet-chapter__cta {
  display: inline-block;
  margin-top: 6px;
  padding: 12px 22px;
  background: var(--red);
  color: #FFFFFF !important;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.01em;
  border-bottom: 0 !important;
  transition: background 180ms ease;
}
.cabinet-chapter__cta:hover { background: var(--red-ink); }

.viz--cabinet { background: transparent; border: 0; padding: 0; }
.cabinet-chapter__portrait {
  margin: 0;
  text-align: center;
}
.cabinet-chapter__portrait img {
  display: block;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 2px solid var(--red);
  box-shadow: 10px 10px 0 0 var(--copper);
  margin: 0 auto 18px;
}
.cabinet-chapter__portrait figcaption {
  font-family: 'Barlow', system-ui, sans-serif;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.55;
  text-align: center;
  font-variant: small-caps;
  letter-spacing: 0.06em;
}
.cabinet-chapter__portrait figcaption strong {
  color: var(--red);
  font-weight: 800;
  font-size: 16px;
}
.cabinet-chapter__portrait figcaption em {
  color: var(--copper);
  font-style: italic;
}

/* Press sources — numérotées style press */
.press-sources {
  padding: 80px 0 60px;
  border-top: 1px solid var(--copper);
  margin-top: 40px;
}
.press-sources__head {
  max-width: 720px;
  margin: 0 auto 36px;
  text-align: center;
}
.press-sources__eyebrow {
  margin: 0 0 8px;
  font-variant: small-caps;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: var(--copper);
  font-weight: 800;
}
.press-sources__title {
  margin: 0;
  font-family: 'Barlow', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.15;
  color: var(--ink);
}
.press-sources__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0;
  max-width: 960px;
  margin: 0 auto;
}
.press-sources__item {
  display: flex;
  gap: 18px;
  padding: 24px 20px;
  border-top: 1px solid var(--red);
}
.press-sources__num {
  font-family: 'Barlow', system-ui, sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--red);
  font-variant-numeric: tabular-nums;
  line-height: 1;
  flex-shrink: 0;
}
.press-sources__body { flex: 1 1 auto; }
.press-sources__body a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  border-bottom: 0;
  margin-bottom: 4px;
}
.press-sources__k {
  font-variant: small-caps;
  letter-spacing: 0.08em;
  font-size: 15px;
  font-weight: 800;
  color: var(--copper);
}
.press-sources__body a:hover .press-sources__k { color: var(--red); }
.press-sources__d {
  margin: 0;
  font-size: 14px;
  color: #4B5563;
  line-height: 1.5;
}

@media (min-width: 900px) {
  .press-sources__list { grid-template-columns: repeat(2, 1fr); column-gap: 40px; }
}

/* ══════════════════════ RESPONSIVE MOBILE TIGHTENING ══════════════════════ */
@media (max-width: 640px) {
  .hero__facts { gap: 18px; font-size: 12px; }
  .hero__facts strong { font-size: 18px; display: block; }
  .masthead__nav { display: none; }
  .chapter { padding: 64px 0; }
  .drop-cap { font-size: 72px; }
  .giga { font-size: 56px; }
  .viz { padding: 24px 16px; }
  .pull-quote { font-size: 24px; padding-left: 20px; }
  .field__label { font-size: 18px; }
  .hero__punch { font-size: 15px; }
  .press-sources { padding: 48px 16px; }
  .cabinet-chapter__portrait img { max-width: 240px; box-shadow: 6px 6px 0 0 var(--copper); }
}
