/* =========================================================
   Echo Digital — Page de présentation V2
   HTML/CSS/JS vanilla, sans build step.
   Tokens issus de la collection Figma `Echo Digital / Tokens`
   (collection unique, mode unique). Dump 2026-05-18.
   ========================================================= */

/* ---------- 1. TOKENS ---------- */
:root {
  /* === Couleurs (Figma) === */
  --color-ocre-900: rgb(95, 35, 0);
  --color-ocre-800: rgb(130, 48, 0);
  --color-ocre-700: rgb(163, 65, 0);
  --color-ocre-600: rgb(186, 93, 29);
  --color-ocre-500: rgb(208, 121, 64);
  --color-ocre-400: rgb(227, 160, 114);
  --color-ocre-300: rgb(239, 200, 170);
  --color-ocre-200: rgb(246, 224, 205);
  --color-ocre-100: rgb(252, 239, 228);
  --color-paper-50: rgb(255, 253, 250);
  --color-paper-100: rgb(253, 245, 237);
  --color-paper-200: rgb(246, 235, 225);
  --color-paper-300: rgb(236, 223, 210);
  --color-ink-900: rgb(29, 20, 13);
  --color-ink-800: rgb(49, 38, 30);
  --color-ink-700: rgb(75, 64, 55);
  --color-ink-600: rgb(102, 91, 83);
  --color-ink-500: rgb(131, 120, 112);
  --color-ink-400: rgb(166, 156, 149);
  --color-ink-300: rgb(202, 194, 189);
  --color-bleu-portrait: rgb(0, 48, 114);
  --color-check-bg: rgb(207, 238, 210);
  --color-check-fg: rgb(0, 114, 42);

  /* === Aliases sémantiques (DESIGN.md) === */
  --accent: var(--color-ocre-700);
  --accent-deep: var(--color-ocre-800);
  --accent-dark: var(--color-ocre-900);
  --accent-soft: var(--color-ocre-200);
  --bg: var(--color-paper-50);
  --bg-warm: var(--color-ocre-100);
  --bg-card: var(--color-paper-100);
  --bg-ink: var(--color-ink-900);
  --border: var(--color-paper-300);
  --border-warm: var(--color-ocre-300);
  --text: var(--color-ink-900);
  --text-body: var(--color-ink-800);
  --text-mid: var(--color-ink-700);
  --text-muted: var(--color-ink-600);
  --text-faint: var(--color-ink-500);

  /* === Espacements (Figma) === */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 20px;
  --s-6: 24px;
  --s-8: 32px;
  --s-10: 40px;
  --s-12: 48px;
  --s-14: 56px;
  --s-16: 64px;
  --s-20: 80px;
  --s-24: 96px;
  --s-32: 128px;

  /* === Rayons === */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 18px;
  --r-pill: 999px;

  /* === Tailles de texte === */
  --t-xs: 12px;
  --t-sm: 14px;
  --t-base: 16px;
  --t-md: 18px;
  --t-lg: 20px;
  --t-xl: 22px;
  --t-2xl: 28px;
  --t-3xl: 32px;
  --t-4xl: 40px;
  --t-5xl: 48px;
  --t-6xl: 58px;
  --t-7xl: 64px;
  --t-8xl: 72px;

  /* === Shell (Figma V2 : 1344 outer, 32 padding interne) === */
  --shell-max: 1344px;
  --shell-px: 32px;

  /* === Familles typo === */
  --ff-display: "Recoleta", "Source Serif 4", Iowan Old Style, "Apple Garamond", Georgia, serif;
  --ff-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* === Ombres calibrées chaud (Hot Shadow Rule) === */
  --shadow-cta: 0 1px 0 var(--color-ocre-800), 0 6px 20px -8px rgba(186, 93, 29, 0.4);
  --shadow-cta-hover: 0 1px 0 var(--color-ocre-900), 0 10px 26px -10px rgba(186, 93, 29, 0.5);
  --shadow-pack: 0 1px 0 var(--color-ocre-200), 0 30px 60px -32px rgba(186, 93, 29, 0.32);
  --shadow-hero: 0 24px 48px -28px rgba(46, 41, 36, 0.35);
  --shadow-diptych-before: 0 24px 48px -28px rgba(46, 41, 36, 0.35);
  --shadow-diptych-after: 0 30px 60px -32px rgba(46, 41, 36, 0.45);
  --shadow-portrait: 0 30px 60px -28px rgba(13, 46, 107, 0.4);
  --shadow-report: 0 24px 48px -28px rgba(46, 41, 36, 0.25);

  /* === Motion === */
  --ease-out-expo: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fast: 180ms;
  --dur-base: 240ms;
  --dur-slow: 320ms;
}

/* ---------- 2. WEB FONTS ---------- */
@font-face {
  font-family: "Recoleta";
  src: url("Ressources/Fonts/Recoleta%20Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Recoleta";
  src: url("Ressources/Fonts/Recoleta%20Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Recoleta";
  src: url("Ressources/Fonts/Recoleta%20SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ---------- 3. RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--s-24);
}
body {
  min-height: 100vh;
  font-family: var(--ff-body);
  font-size: var(--t-base);
  font-weight: 400;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11";
  overflow-x: hidden;
}
img, svg, video, picture { display: block; max-width: 100%; height: auto; }
img { background: transparent; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
a { color: inherit; text-decoration: none; transition: color var(--dur-base) var(--ease-out-expo); }
ul, ol { list-style: none; }
hr { border: 0; height: 1px; background: var(--border); }

:focus-visible {
  outline: 2px solid var(--text);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; top: -100px; left: var(--s-4);
  background: var(--text); color: var(--color-paper-50);
  padding: 10px 14px; border-radius: var(--r-md);
  z-index: 100; font-weight: 500; font-size: var(--t-sm);
}
.skip-link:focus { top: var(--s-3); }

/* ---------- 4. TYPO UTILITIES ---------- */
.display {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(36px, 3.2vw + 14px, var(--t-6xl));
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  text-wrap: wrap;
}
.headline {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(28px, 2.1vw + 12px, var(--t-4xl));
  line-height: 1.15;
  letter-spacing: -0.012em;
  color: var(--text);
  text-wrap: balance;
}
.title-lg {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(22px, 1vw + 16px, var(--t-2xl));
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text);
  text-wrap: balance;
}
.title {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: var(--t-xl);
  line-height: 1.2;
  letter-spacing: -0.005em;
  color: var(--text);
  text-wrap: balance;
}
.eyebrow {
  font-family: var(--ff-body);
  font-size: var(--t-sm);
  font-weight: 600;
  line-height: 17px;
  letter-spacing: 0;
  color: var(--accent);
}
.eyebrow--inverse { color: var(--color-ocre-400); }
.lede {
  font-family: var(--ff-body);
  font-size: var(--t-lg);
  font-weight: 400;
  line-height: 1.45;
  color: var(--text-muted);
}
.body-lg {
  font-family: var(--ff-body);
  font-size: var(--t-md);
  line-height: 1.55;
  color: var(--text-mid);
}

/* ---------- 5. SHELL ---------- */
.shell {
  width: 100%;
  max-width: var(--shell-max);
  margin: 0 auto;
  padding-inline: var(--shell-px);
}

main { display: block; }
main > section + section { /* sections separated by their own padding */ }

/* ---------- 6. BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  font-family: var(--ff-body);
  font-weight: 500;
  letter-spacing: -0.005em;
  border-radius: var(--r-pill);
  white-space: nowrap;
  cursor: pointer;
  transition: background-color var(--dur-base) var(--ease-out-expo),
              color var(--dur-base) var(--ease-out-expo),
              box-shadow var(--dur-base) var(--ease-out-expo),
              transform var(--dur-base) var(--ease-out-expo);
}
.btn .i-arrow { width: 20px; height: 20px; transition: transform var(--dur-base) var(--ease-out-expo); }
.btn:hover .i-arrow { transform: translateX(4px); }
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-cta);
}
.btn-primary:hover { background: var(--accent-deep); box-shadow: var(--shadow-cta-hover); }
.btn-primary:focus-visible { outline-color: var(--text); }

/* btn sizes — Figma: lh AUTO on Inter Medium → ratio ~1.22 of font-size */
.btn-lg { padding: var(--s-4) var(--s-6); font-size: var(--t-md); line-height: 22px; }
.btn-xl { padding: 19px var(--s-8); font-size: var(--t-lg); line-height: 24px; }

.btn-secondary {
  background: transparent;
  color: var(--text-mid);
  padding: 10px 14px 10px var(--s-4);
  font-size: var(--t-sm);
  border: 1px solid var(--border);
  gap: var(--s-1);
}
.btn-secondary:hover {
  color: var(--text);
  border-color: var(--accent);
  background: var(--bg-warm);
}
.btn-secondary .i-arrow { width: 16px; height: 16px; }

.btn-on-photo {
  background: #fff;
  color: var(--color-ink-800);
  padding: 13px 22px;
  gap: 6px;
  font-size: var(--t-base);
  line-height: 19px;
  letter-spacing: 0;
}
.btn-on-photo:hover { background: var(--color-paper-100); color: var(--text); }
.btn-on-photo:focus-visible { outline-color: #fff; }

.btn-on-ocre {
  background: #fff;
  color: var(--accent-deep);
  padding: 19px var(--s-8);
  gap: var(--s-2);
  font-size: var(--t-lg);
  line-height: 24px;
  letter-spacing: 0;
}
.btn-on-ocre .i-arrow { width: 24px; height: 24px; }
.btn-on-ocre:hover { background: var(--color-paper-100); color: var(--accent-dark); }
.btn-on-ocre:focus-visible { outline-color: #fff; }

/* ---------- 7. HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 250, 0.84);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  backdrop-filter: saturate(160%) blur(12px);
  border-block-end: 1px solid transparent;
  transition: background-color var(--dur-base) var(--ease-out-expo),
              border-color var(--dur-base) var(--ease-out-expo);
}
.site-header.is-scrolled {
  background: rgba(255, 253, 250, 0.94);
  border-block-end-color: var(--border);
}
.shell--header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  padding-block: var(--s-5);
  padding-inline: var(--shell-px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  color: var(--text);
}
.brand-logo { width: 32px; height: 32px; }
.brand-wordmark {
  font-family: var(--ff-body);
  font-size: var(--t-lg);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
}

/* ---------- 8. HERO ----------
   Figma : hero HORIZONTAL pad 80/32/96/32 gap 80 align CENTER y.
   hero-text  : FILL grow 1
   hero-figure: FILL grow 1, maxWidth 560, height 520 fixed
   → flex 1/1 avec hero-figure plafonné à 560 ; à 1440 viewport,
     hero-text récupère 640 et figure 560 (= mesures Figma).
*/
.hero { padding-block: var(--s-20) var(--s-24); }
.hero-shell {
  display: flex;
  align-items: center;
  gap: var(--s-20);
}

/* hero-text : FILL, VERTICAL gap 24 */
.hero-text {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-6);
}

/* Hero container : VERTICAL gap 24 (badge → h1) */
.hero-container {
  display: flex;
  flex-direction: column;
  gap: var(--s-6);
}

/* Hero sub-container : VERTICAL gap 48 (lede → cta-row) */
.hero-sub-container {
  display: flex;
  flex-direction: column;
  gap: var(--s-12);
}

/* Badge group : HORIZONTAL pad 4/8/4/4 gap 8 align CENTER y */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  background: var(--color-paper-100);
  border-radius: var(--r-pill);
  padding: var(--s-1) var(--s-2) var(--s-1) var(--s-1);
  width: fit-content;
  transition: background-color var(--dur-base) var(--ease-out-expo);
}
.hero-badge:hover { background: var(--color-paper-200); }

/* Badge container : HORIZONTAL pad 2/2/2/2, 32x32 white pill */
.hero-badge-icon {
  display: inline-flex;
  align-items: center;
  padding: 2px;
  width: 32px;
  height: 32px;
  background: #fff;
  border-radius: var(--r-pill);
  flex-shrink: 0;
  overflow: hidden;
}
.hero-badge-icon img {
  width: 28px;
  height: 28px;
  object-fit: cover;
}

/* Content (badge text + arrow) : HORIZONTAL gap 4 align CENTER y */
.hero-badge-content {
  display: inline-flex;
  align-items: center;
  gap: var(--s-1);
}
.hero-badge-text {
  font-family: var(--ff-body);
  font-size: var(--t-sm);
  line-height: 20px;
  font-weight: 500;
  color: var(--color-ink-800);
}
.hero-badge-arrow {
  width: 16px;
  height: 16px;
  color: rgb(115, 115, 115);
  transition: transform var(--dur-base) var(--ease-out-expo);
  flex-shrink: 0;
}
.hero-badge:hover .hero-badge-arrow { transform: translateX(3px); }

/* hero-cta-row : HORIZONTAL gap 20 align CENTER y. Subtext FILL grow 1 */
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: var(--s-5);
}
.hero-cta-subtext {
  flex: 1 1 0;
  min-width: 0;
  font-family: var(--ff-body);
  font-size: var(--t-sm);
  line-height: 20px;
  color: var(--text);
}

/* hero-figure : FILL grow 1, max-width 560, height 520 fixed, radius 18 */
.hero-figure {
  flex: 1 1 0;
  max-width: 560px;
  height: 520px;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hero);
}
.hero-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.t-accent { color: var(--accent); }

/* ---------- 9. TRUST BAND ---------- */
.trust-band { padding-block: 0 var(--s-24); }
.trust-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
}
.trust-tile {
  background: var(--color-paper-100);
  border-radius: var(--r-md);
  padding: var(--s-10) var(--s-5);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-5);
  text-align: center;
}
.trust-tile img {
  width: 80px; height: 80px;
  object-fit: contain;
}
.trust-tile-label {
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: var(--t-base);
  color: var(--text);
  line-height: 1.3;
  letter-spacing: -0.005em;
}

/* ---------- 10. SECTION HEAD (eyebrow + h2) ---------- */
.section-head {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  margin-block-end: var(--s-20);
  max-width: 800px;
}
.section-head .headline { color: var(--text); }
.section-head--centered {
  text-align: center;
  align-items: center;
  margin-inline: auto;
}

/* ---------- 11. PROBLÈME ----------
   Figma : Container problem (pad 32) > problem-frame (gradient bg, radius 18, pad 64/48, gap 80)
   > section-head (gap 16, h2 maxW 800) + problem-list (HORIZONTAL gap 64)
   problem-item (FILL grow 1, VERTICAL gap 32) : icon 80x80 + content (gap 8 title→desc)
*/
.problem-section { padding-block: var(--s-8); }

.problem-frame {
  display: flex;
  flex-direction: column;
  gap: var(--s-20);
  background: linear-gradient(to bottom, rgb(255,255,255) 0%, rgb(252,242,227) 88.27%);
  border-radius: var(--r-lg);
  padding: var(--s-16) var(--s-12);
}

.problem-frame .section-head {
  gap: var(--s-4);
  margin-block-end: 0;
  max-width: none;  /* override global .section-head { max-width: 800px } — Figma : section-head FILL 1184 */
}
.problem-frame .section-head .headline { max-width: 800px; }  /* Figma : h2 maxW 800 */

.problem-list {
  display: flex;
  gap: var(--s-16);
}
.problem-item {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-8);
}
.problem-icon {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}
.problem-item-content {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
.problem-item-title {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: var(--t-xl);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--text);
  text-wrap: balance;
}
.problem-item-desc {
  font-family: var(--ff-body);
  font-size: var(--t-base);
  line-height: 1.5;
  color: var(--text-mid);
}

/* ---------- 12. TRANSFORMATIONS ----------
   Figma : transformation pad 168/32/96/32 gap 80 VERTICAL FILL
   > section-head (gap 16, h2 maxW 800) + transform-rows container (gap 96)
   > transform-row (HORIZONTAL gap 80, FILL) avec alternance media gauche (row 2)
   > transform-text FILL grow 1 (gap 20) : step-number + step-content (gap 16)
   > transform-media 560x420 FIXED, radius 10, image CROP
   Row 2 : badge conformité 96x96 overlap bottom-right -18px
*/
.transformation-section { padding-block: 168px var(--s-24); }

.transformation-section .shell {
  display: flex;
  flex-direction: column;
  gap: var(--s-20);
}

.transformation-section .section-head {
  gap: var(--s-4);
  margin-block-end: 0;
  max-width: none;
}
.transformation-section .section-head .headline { max-width: 800px; }

.transform-list {
  display: flex;
  flex-direction: column;
  gap: var(--s-24);
}

.transform-row {
  display: flex;
  align-items: center;
  gap: var(--s-20);
}

.transform-text {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
}
.step-number {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: var(--t-7xl);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--color-ocre-500);
}
.step-content {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}
.step-title {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: var(--t-2xl);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text);
}
.step-desc {
  font-family: var(--ff-body);
  font-size: var(--t-md);
  line-height: 1.55;
  color: var(--text-mid);
}

.transform-media {
  flex: 0 0 560px;
  width: 560px;
  aspect-ratio: 560 / 420;
  position: relative;
  margin: 0;
}
.transform-media > img:not(.transform-badge) {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-hero);
  display: block;
}
.transform-badge {
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 96px;
  height: 96px;
  z-index: 1;
}

/* ---------- 13. MID-CTA (V2 1:1 Figma 271:3544) ---------- */
.mid-cta-section { padding-block: var(--s-24) 168px; }
.mid-cta {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  padding: 72px var(--s-16);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--s-12);
  color: #fff;
  isolation: isolate;
  background:
    linear-gradient(to right,
      rgba(46, 26, 15, 0.62) 0%,
      rgba(46, 26, 15, 0.35) 45%,
      rgba(46, 26, 15, 0) 85%
    ),
    url("Ressources/Photos/Photo%20CTA.jpg") center / cover no-repeat;
}
.mid-cta-title {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: var(--t-4xl);
  line-height: 1.1;
  letter-spacing: -0.005em;
  color: #fff;
  width: 640px;
  max-width: 100%;
  text-wrap: balance;
}

/* ---------- 14. RÉFÉRENCE BILLIÈME (V2 1:1 Figma 271:3551) ---------- */
.reference {
  background: var(--bg-ink);
  color: var(--color-paper-100);
  padding-block: var(--s-32);
}
.reference-inner {
  width: 100%;
  max-width: 1344px;
  margin: 0 auto;
  padding-inline: var(--s-8);
  display: flex;
  flex-direction: column;
  gap: var(--s-20);
}
.reference-head {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.reference-titles {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}
.reference-name { color: var(--color-paper-100); }
.reference-visit {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-paper-100);
  font-family: var(--ff-body);
  font-size: var(--t-base);
  line-height: 24px;
  font-weight: 500;
  border-bottom: 1px solid var(--color-paper-100);
}
.reference-visit:hover { color: var(--color-ocre-300); border-bottom-color: var(--color-ocre-300); }
.reference-visit .i-arrow { width: 20px; height: 20px; transition: transform var(--dur-base) var(--ease-out-expo); }
.reference-visit:hover .i-arrow { transform: translateX(3px); }

.diptych {
  display: flex;
  gap: var(--s-14);
  align-items: flex-start;
}
.diptych-side { display: flex; flex-direction: column; gap: var(--s-4); margin: 0; min-width: 0; }
.diptych-side--before { flex: 1 1 513px; }
.diptych-side--after { flex: 1 1 695px; }
.diptych-meta { display: flex; flex-direction: column; gap: var(--s-1); }
.diptych-label {
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: var(--t-base);
  line-height: 19px;
  color: #fff;
}
.diptych-desc {
  font-size: var(--t-sm);
  color: var(--color-ink-300);
  line-height: 1.45;
}
.diptych-image {
  width: 100%;
  object-fit: cover;
  display: block;
}
.diptych-image--before {
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-diptych-before);
  aspect-ratio: 513 / 339;
}
.diptych-image--after {
  border-radius: var(--r-md);
  box-shadow: var(--shadow-diptych-after);
  aspect-ratio: 695 / 459;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: var(--s-12);
  margin: 0;
}
.testimonial[hidden] { display: none; }
.testimonial-quote {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: var(--t-2xl);
  line-height: 1.35;
  letter-spacing: -0.005em;
  color: var(--color-paper-100);
  max-width: 768px;
}
.testimonial-quote .quote-mark { color: var(--color-ocre-400); }
.testimonial-cite {
  display: flex;
  align-items: flex-start;
  gap: var(--s-4);
  font-style: normal;
}
.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: var(--r-pill);
  background: #fff;
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  padding: 7px;
}
.testimonial-avatar img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1 1 0;
  min-width: 0;
}
.testimonial-author {
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: var(--t-md);
  line-height: 28px;
  color: var(--color-paper-100);
}
.testimonial-role {
  font-family: var(--ff-body);
  font-size: var(--t-base);
  line-height: 24px;
  color: var(--color-ink-300);
}

/* ---------- 15. GARANTIES (V2 1:1 Figma 271:3715) ---------- */
.guarantees { padding-block: 168px var(--s-8); }
.guarantees .section-head { margin-block-end: var(--s-20); }
.guarantee-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: var(--s-20);
  row-gap: var(--s-16);
}
.guarantee-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.guarantee-head {
  display: flex;
  align-items: center;
  gap: 10px;
}
.guarantee-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.guarantee-item .title {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: var(--t-xl);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text);
  text-wrap: balance;
}
.guarantee-item p {
  font-family: var(--ff-body);
  font-size: var(--t-base);
  line-height: 1.5;
  color: var(--text-mid);
  margin: 0;
}

/* ---------- 16. OFFRE (V2 1:1 Figma 271:3580) ---------- */
.offer {
  padding-block: 168px;
  background: var(--color-paper-50);
}
.offer .section-head { margin-block-end: var(--s-20); }

.offer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--s-32);
  align-items: stretch;
  margin-block-end: var(--s-16);
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: var(--s-12);
  list-style: none;
  padding: 0;
  margin: 0;
}
.feature {
  display: flex;
  gap: var(--s-4);
  align-items: flex-start;
}
.feature-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: var(--r-pill);
  background: var(--color-paper-100);
  display: inline-grid;
  place-items: center;
}
.feature-icon img { width: 20px; height: 20px; display: block; }
.feature > div {
  flex: 1 1 0;
  min-width: 0;
  padding-top: 6px;
  display: flex;
  flex-direction: column;
  gap: var(--s-1);
}
.feature-title {
  font-family: var(--ff-body);
  font-size: var(--t-md);
  font-weight: 600;
  line-height: 28px;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 0;
}
.feature p:not(.feature-title) {
  font-family: var(--ff-body);
  font-size: var(--t-base);
  line-height: 1.5;
  color: var(--text-mid);
  margin: 0;
}

.pack {
  background: var(--accent);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 44px;
  display: flex;
  flex-direction: column;
  gap: var(--s-8);
  isolation: isolate;
}
.pack > .tier-selector { margin-block-end: var(--s-4); } /* gap 32 + 16 = 48 Figma */
.pack-intro { display: flex; flex-direction: column; gap: var(--s-3); }
.pack-title {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: var(--t-3xl);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #fff;
}
.pack-tagline {
  font-family: var(--ff-body);
  font-size: var(--t-md);
  line-height: 1.4;
  color: var(--color-paper-300);
  margin: 0;
}

.tier-selector { display: flex; flex-direction: column; gap: var(--s-4); }
.tier-label {
  font-family: var(--ff-body);
  font-size: var(--t-base);
  line-height: 19px;
  font-weight: 500;
  color: #fff;
  margin: 0;
}
.tier-buttons {
  display: flex;
  background: #fff;
  border-radius: var(--r-pill);
  padding: var(--s-1);
  gap: 0;
}
.tier-btn {
  flex: 1 1 0;
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: var(--t-sm);
  line-height: 17px;
  color: var(--color-ink-700);
  padding: 11px 18px;
  border-radius: var(--r-pill);
  text-align: center;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: background-color var(--dur-base) var(--ease-out-expo),
              color var(--dur-base) var(--ease-out-expo);
}
.tier-btn:hover:not(.is-active) {
  color: var(--text);
  background: rgba(0, 0, 0, 0.04);
}
.tier-btn.is-active {
  background: var(--color-ocre-900);
  color: #fff;
}
.tier-btn:focus-visible { outline-color: var(--accent-dark); }

.pack-price {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
  margin: 0;
}
.pack-price-amount {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: var(--t-6xl);
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.pack-price-suffix {
  font-family: var(--ff-body);
  font-size: var(--t-base);
  line-height: 19px;
  color: var(--color-paper-300);
}

.pack-sep {
  height: 1px;
  border: 0;
  margin: 0;
  background: rgba(255, 255, 255, 0.3);
}

.pack-features {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  list-style: none;
  padding: 0;
  margin: 0;
}
.pack-features li {
  display: flex;
  gap: var(--s-3);
  align-items: flex-start;
}
.pack-check {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: inline-flex;
}
.pack-check img { width: 24px; height: 24px; display: block; }
.pack-features li > div {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-1);
}
.pack-feature-title {
  font-family: var(--ff-body);
  font-size: var(--t-base);
  font-weight: 600;
  line-height: 24px;
  color: #fff;
  margin: 0;
}
.pack-features li > div > p:last-child {
  font-family: var(--ff-body);
  font-size: var(--t-base);
  line-height: 1.5;
  color: var(--color-paper-300);
  margin: 0;
}
/* Forfait */
.forfait {
  background: var(--color-paper-100);
  border-radius: var(--r-lg);
  padding: 44px;
  display: flex;
  flex-direction: column;
  gap: var(--s-6);
  margin-block-end: var(--s-16);
}
.forfait-head {
  display: flex;
  gap: var(--s-14);
  align-items: flex-start;
  padding-block-end: var(--s-8);
}
.forfait-headline {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.forfait-tag { display: none; } /* pas dans Figma V2 */
.forfait-title {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: var(--t-2xl);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 0;
}
.forfait-desc {
  font-family: var(--ff-body);
  font-size: var(--t-md);
  line-height: 1.5;
  color: var(--text-mid);
  margin: 0;
}
.forfait-price-block {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--s-2);
}
.forfait-price {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  margin: 0;
}
.forfait-price-amount {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: var(--t-5xl);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.forfait-price-suffix {
  font-family: var(--ff-body);
  font-size: var(--t-base);
  line-height: 19px;
  color: var(--text-faint);
}
.forfait-sub {
  font-family: var(--ff-body);
  font-size: var(--t-sm);
  line-height: 17px;
  color: var(--text-faint);
  margin: 0;
}

.forfait-sep {
  height: 1px;
  border: 0;
  margin: 0;
  background: var(--border);
}

.forfait-incl { display: flex; flex-direction: column; gap: var(--s-5); }
.forfait-incl-title {
  font-family: var(--ff-body);
  font-size: var(--t-sm);
  font-weight: 600;
  line-height: 17px;
  color: var(--text-faint);
  margin: 0;
}
.forfait-incl ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: var(--s-12);
  row-gap: var(--s-4);
  list-style: none;
  padding: 0;
  margin: 0;
}
.forfait-incl li {
  display: flex;
  gap: var(--s-3);
  font-family: var(--ff-body);
  font-size: var(--t-base);
  line-height: 1.5;
  color: var(--text-mid);
  align-items: flex-start;
}
.forfait-incl li strong {
  font-weight: 600;
  color: var(--text);
}
.forfait-check {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: inline-flex;
}
.forfait-check img { width: 24px; height: 24px; display: block; }
.forfait-note {
  font-family: var(--ff-body);
  font-size: var(--t-sm);
  line-height: 1.5;
  color: var(--text-faint);
  margin: 0;
}

/* Modules */
.modules {
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
}
.modules-title {
  font-family: var(--ff-body);
  font-size: var(--t-sm);
  font-weight: 600;
  line-height: 17px;
  color: var(--text-faint);
  margin: 0;
}
.modules-list {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0;
  margin: 0;
}
.module {
  display: grid;
  grid-template-columns: 398px 1fr auto;
  gap: var(--s-6);
  align-items: baseline;
  padding-block: var(--s-4);
  border-block-start: 1px solid var(--border);
}
.module:last-child { border-block-end: 1px solid var(--border); }
.module-name {
  font-family: var(--ff-body);
  font-size: var(--t-base);
  font-weight: 600;
  line-height: 19px;
  color: var(--text);
}
.module-desc {
  font-family: var(--ff-body);
  font-size: var(--t-sm);
  line-height: 1.5;
  color: var(--color-ink-600);
}
.module-price {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: var(--t-md);
  line-height: 24px;
  letter-spacing: -0.01em;
  color: var(--text);
  white-space: nowrap;
  text-align: right;
}

/* ---------- 17. PROCESS (V2 1:1 Figma 271:3788) ---------- */
.process { padding-block: var(--s-8) 144px; }
.process .section-head { margin-block-end: var(--s-20); }
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-block-end: var(--s-20);
}
.timeline-step {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  padding-inline: var(--s-3);
}
.timeline-num {
  width: 44px;
  height: 44px;
  border-radius: var(--r-pill);
  background: #fff;
  border: 1px solid var(--border-warm);
  display: grid;
  place-items: center;
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: var(--t-md);
  line-height: 24px;
  color: var(--text);
}
.timeline-title { color: var(--text); margin: 0; }
.timeline-step p {
  font-family: var(--ff-body);
  font-size: var(--t-sm);
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0;
}
.process-flex {
  max-width: 800px;
  font-family: var(--ff-body);
  font-size: var(--t-base);
  line-height: 1.55;
  color: var(--text-mid);
  margin: 0;
}
.process-flex em { font-style: italic; }

/* ---------- 18. WHO ---------- */
/* ---------- 18. WHO (V2 1:1 Figma 271:3814) ---------- */
.who { padding-block: var(--s-16) 144px; }
.who-shell {
  display: flex;
  gap: 72px;
  align-items: center;
}
.who-portrait {
  flex: 0 0 340px;
  width: 340px;
  aspect-ratio: 340 / 425;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--color-bleu-portrait);
  box-shadow: var(--shadow-portrait);
  margin: 0;
}
.who-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.who-text {
  flex: 1 1 0;
  min-width: 0;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}
.who-text .headline { color: var(--text); margin: 0; }
.who-text .body-lg {
  color: var(--text-mid);
  margin: var(--s-2) 0 0;
  font-family: var(--ff-body);
  font-size: var(--t-md);
  line-height: 1.55;
}

/* ---------- 19. FINAL CTA (V2 1:1 Figma 271:3822) ---------- */
.final-cta-wrap { padding-block: var(--s-10) var(--s-24); }
.final-cta {
  background: var(--accent);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 112px var(--s-16);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-12);
  text-align: center;
}
.final-cta-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-5);
  width: 100%;
  max-width: 800px;
}
.final-cta-title {
  color: #fff;
  max-width: 800px;
  margin: 0;
}
.final-cta-desc {
  color: #fff;
  max-width: 720px;
  font-size: var(--t-lg);
  line-height: 1.5;
  margin: 0;
}
.final-cta-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-3);
}
.final-cta-email {
  font-family: var(--ff-body);
  font-size: var(--t-sm);
  line-height: 17px;
  color: #fff;
  margin: 0;
}
.final-cta-email a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 255, 255, 0.45);
}
.final-cta-email a:hover {
  color: var(--color-paper-100);
  text-decoration-color: rgba(255, 255, 255, 0.8);
}

/* ---------- 20. FOOTER (V2 1:1 Figma 271:3833) ---------- */
.site-footer { padding-block: 0 var(--s-14); }
.footer-top {
  padding-block: var(--s-16) var(--s-10);
  display: grid;
  grid-template-columns: minmax(0, 505fr) minmax(0, 316fr) minmax(0, 315fr);
  gap: var(--s-16);
  border-block-start: 1px solid var(--border);
  border-block-end: 1px solid var(--border);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}
.footer-tagline {
  font-family: var(--ff-body);
  font-size: var(--t-sm);
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 380px;
  margin: 0;
}
.footer-col { display: flex; flex-direction: column; gap: var(--s-4); }
.footer-col .eyebrow { margin: 0; }
.footer-links { display: flex; flex-direction: column; gap: var(--s-2); list-style: none; padding: 0; margin: 0; }
.footer-links a {
  font-family: var(--ff-body);
  font-size: var(--t-sm);
  line-height: 1.5;
  color: var(--text-mid);
}
.footer-links a:hover { color: var(--accent-deep); }

.footer-bottom {
  padding-block: var(--s-6) 0;
  font-family: var(--ff-body);
  font-size: var(--t-xs);
  line-height: 1.25;
  color: var(--text-faint);
}
.footer-bottom p { margin: 0; }

/* ---------- 21. RESPONSIVE ---------- */

/* Tablet / petit desktop */
@media (max-width: 1100px) {
  .transform-row { flex-direction: column; align-items: stretch; gap: var(--s-10); }
  .transform-media { flex: 0 0 auto; width: 100%; max-width: 560px; }
  .offer-grid { grid-template-columns: 1fr; gap: var(--s-12); }
  .guarantee-list { grid-template-columns: repeat(2, 1fr); row-gap: var(--s-16); }
  .forfait-head { flex-direction: column; gap: var(--s-6); align-items: stretch; }
  .forfait-price-block { align-items: flex-start; text-align: left; }
  .forfait-incl ul { grid-template-columns: 1fr; }
  .module { grid-template-columns: 1fr auto; row-gap: var(--s-1); }
  .module-desc { grid-column: 1 / -1; }
  .diptych { flex-direction: column; gap: var(--s-10); align-items: stretch; }
  .diptych-side--before, .diptych-side--after { flex: 0 0 auto; width: 100%; }
  .who-shell { flex-direction: column; align-items: stretch; gap: var(--s-10); }
  .who-portrait { flex: 0 0 auto; width: 100%; max-width: 320px; margin-inline: auto; aspect-ratio: 340 / 425; }
  .who-text { max-width: none; }
  .timeline { grid-template-columns: repeat(2, 1fr); row-gap: var(--s-10); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: var(--s-10); }
}

/* Tablet portrait / mobile large — stack hero column once flex items get too narrow */
@media (max-width: 980px) {
  .hero-shell {
    flex-direction: column;
    align-items: stretch;
    gap: var(--s-14);
  }
  .hero-figure {
    flex: 0 0 auto;
    max-width: none;
    width: 100%;
    height: auto;
    aspect-ratio: 560 / 520;
  }
  .problem-list { flex-direction: column; gap: var(--s-12); }
  .problem-frame { padding: var(--s-14) var(--s-10); }
}

/* Mobile */
@media (max-width: 600px) {
  :root { --shell-px: 20px; }
  html { scroll-padding-top: 72px; }

  .brand-wordmark { display: none; }
  .shell--header { min-height: 64px; padding-block: var(--s-3); }

  .hero { padding-block: var(--s-12) var(--s-16); }
  .hero-shell { gap: var(--s-10); }
  .hero-cta-row { flex-wrap: wrap; gap: var(--s-3); }
  .hero-cta-subtext { flex: 0 1 auto; }
  .hero-figure { aspect-ratio: 4 / 3; }

  .trust-band { padding-block-end: var(--s-12); }
  .trust-tiles { grid-template-columns: 1fr; gap: var(--s-3); }
  .trust-tile { flex-direction: row; padding: var(--s-4) var(--s-5); gap: var(--s-4); text-align: left; }
  .trust-tile img { width: 48px; height: 48px; }
  .trust-tile-label { text-align: left; }

  .problem-section { padding-block: var(--s-4); }
  .problem-frame { padding: var(--s-10) var(--s-6); gap: var(--s-14); }
  .problem-list { gap: var(--s-10); }
  .problem-item { gap: var(--s-6); }
  .problem-icon { width: 64px; height: 64px; }

  .transformation-section { padding-block: var(--s-16) var(--s-14); }
  .transformation-section .shell { gap: var(--s-14); }
  .transform-list { gap: var(--s-16); }
  .transform-row { gap: var(--s-8); }
  .transform-text { gap: var(--s-4); }
  .step-number { font-size: var(--t-5xl); }
  .step-title { font-size: 24px; }
  .step-desc { font-size: var(--t-base); }
  .transform-badge { width: 72px; height: 72px; right: -var(--s-3); bottom: -var(--s-3); }

  .mid-cta-section { padding-block: var(--s-12) var(--s-20); }
  .mid-cta {
    padding: var(--s-12) var(--s-6);
    gap: var(--s-6);
    border-radius: 14px;
    background:
      linear-gradient(to bottom,
        rgba(46, 26, 15, 0.7) 0%,
        rgba(46, 26, 15, 0.5) 100%
      ),
      url("Ressources/Photos/Photo%20CTA.jpg") center / cover no-repeat;
  }
  .mid-cta-title { font-size: var(--t-2xl); width: 100%; }

  .reference { padding-block: var(--s-16); }
  .reference-inner { gap: var(--s-12); padding-inline: var(--s-5); }
  .reference-head { flex-direction: column; gap: var(--s-4); }
  .reference-titles { gap: var(--s-3); }
  .reference-name { font-size: var(--t-2xl); }
  .diptych { gap: var(--s-8); }
  .testimonial-quote { font-size: var(--t-xl); }
  .testimonial { gap: var(--s-6); }
  .testimonial-cite { gap: var(--s-3); }

  .guarantees { padding-block: var(--s-16) 0; }
  .guarantee-list { grid-template-columns: 1fr; row-gap: var(--s-10); }
  .guarantee-item { max-width: none; }

  .offer { padding-block: var(--s-16); }
  .pack { padding: var(--s-6); gap: var(--s-6); }
  .tier-buttons { grid-template-columns: 1fr; }
  .tier-btn { padding: var(--s-3) var(--s-4); }
  .pack-price-amount { font-size: var(--t-5xl); }
  .forfait { padding: var(--s-6); }
  .module { grid-template-columns: 1fr; gap: var(--s-1); padding-block: var(--s-3); }
  .module-price { margin-block-start: var(--s-1); }

  .process { padding-block: var(--s-10) var(--s-16); }
  .timeline { grid-template-columns: 1fr; gap: var(--s-8); }

  .who { padding-block: var(--s-10) var(--s-16); }
  .who-portrait { max-width: 240px; }

  .final-cta-wrap { padding-block: var(--s-4) var(--s-16); }
  .final-cta { padding: var(--s-16) var(--s-6); gap: var(--s-8); }
  .final-cta-desc { margin-block-start: 0; }

  .footer-top { padding-block: var(--s-12) var(--s-6); grid-template-columns: 1fr; gap: var(--s-8); }
}

/* ---------- 22. LEGAL PAGES (mentions légales / politique de confidentialité) ---------- */
.legal { padding-block: var(--s-20) var(--s-24); }
.legal .shell { max-width: 800px; }
.legal-header {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  margin-block-end: var(--s-16);
}
.legal-header .display { font-size: clamp(32px, 2.6vw + 14px, var(--t-5xl)); }
.legal-updated {
  font-family: var(--ff-body);
  font-size: var(--t-sm);
  color: var(--text-faint);
}
.legal-body { display: flex; flex-direction: column; gap: var(--s-12); }
.legal-section { display: flex; flex-direction: column; gap: var(--s-3); }
.legal-section h2 {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: var(--t-2xl);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 0;
}
.legal-section h3 {
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: var(--t-md);
  line-height: 1.4;
  color: var(--text);
  margin-block-start: var(--s-3);
  margin-block-end: 0;
}
.legal-section p, .legal-section li {
  font-family: var(--ff-body);
  font-size: var(--t-base);
  line-height: 1.6;
  color: var(--text-mid);
  margin: 0;
}
.legal-section ul { padding-inline-start: var(--s-5); display: flex; flex-direction: column; gap: var(--s-2); }
.legal-section li { list-style: disc; }
.legal-section a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(163, 65, 0, 0.35);
}
.legal-section a:hover { color: var(--accent-deep); text-decoration-color: var(--accent-deep); }
.legal-todo {
  display: inline-block;
  padding: 2px 6px;
  background: var(--color-paper-200);
  border-radius: var(--r-sm);
  font-family: var(--ff-body);
  font-size: var(--t-sm);
  color: var(--text-faint);
  font-style: italic;
}

/* ---------- 23. REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
