/* ===================================================================
   PRO IA — Design system partagé
   Extrait des pages source (Accueil / Catégorie / Article).
   Utilisé par : a-propos · formations · contact · 404 · search
   =================================================================== */

/* ---------- Tokens ---------- */
:root {
  --bg:      #F5F0E8;
  --bg2:     #EDE8DF;
  --bg3:     #E5DFD5;
  --border:  #CEC9C0;
  --text:    #0D0C0A;
  --muted:   #6A6560;
  --red:     oklch(0.62 0.22 25);
  --gold:    oklch(0.60 0.15 72);
  --nav-bg:  rgba(245,240,232,0.95);
  --f-display: 'Barlow Condensed', sans-serif;
  --f-body:    'Lora', Georgia, serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.7;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }

::selection { background: var(--red); color: var(--bg); }

/* ---------- Logo ---------- */
.logo-mark {
  display: inline-flex; align-items: center;
  gap: 0.32em;
  font-family: var(--f-display); font-weight: 900;
  font-size: 34px; letter-spacing: 0.02em;
  text-transform: uppercase; line-height: 1;
  text-decoration: none;
}
.logo-mark .logo-stars { height: 1em; width: auto; flex-shrink: 0; display: block; }
.logo-mark .star-red  { fill: var(--red); }
.logo-mark .star-gold { fill: var(--gold); }
.logo-mark .logo-pro  { color: var(--text); }
.logo-mark .logo-ia   { color: var(--red); }
.logo-mark.inv .logo-pro { color: var(--bg); }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute; top: -100px; left: 12px;
  background: var(--text); color: var(--bg);
  padding: 10px 16px; z-index: 200;
  font-family: var(--f-display); font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; font-size: 12px;
}
.skip-link:focus { top: 12px; }
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }

/* ---------- Placeholder image ---------- */
.ph { position: relative; background: var(--bg3); overflow: hidden; }
.ph::after {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 12px, rgba(0,0,0,0.03) 12px, rgba(0,0,0,0.03) 13px);
}
.ph .ph-label {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  font-family: monospace; font-size: 10px; color: rgba(0,0,0,0.4);
}
.ph.dark { background: #1A1814; }
.ph.dark::after { background: repeating-linear-gradient(-45deg, transparent, transparent 12px, rgba(242,237,228,0.03) 12px, rgba(242,237,228,0.03) 13px); }

/* ---------- NAV ---------- */
nav.site-nav {
  position: sticky; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 64px;
  background: var(--nav-bg);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-links { display: flex; gap: 32px; align-items: center; margin: 0; padding: 0; }
.nav-links > li { position: relative; list-style: none; }
.nav-links a, .nav-links button.nav-trigger {
  font-family: var(--f-display); font-size: 12px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); transition: color 0.2s;
  background: none; border: none; padding: 0; cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
  height: 64px;
}
.nav-links a:hover, .nav-links a.active, .nav-links a[aria-current="page"],
.nav-links button.nav-trigger:hover,
.nav-links li.has-dropdown:hover > button.nav-trigger { color: var(--text); }
.nav-trigger .chev {
  display: inline-block;
  border: solid currentColor;
  border-width: 0 1.5px 1.5px 0;
  padding: 2.5px; transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s;
}
.has-dropdown:hover .nav-trigger .chev,
.has-dropdown:focus-within .nav-trigger .chev { transform: rotate(-135deg) translateY(2px); }

.dropdown {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 260px;
  background: var(--bg);
  border: 1px solid var(--border);
  box-shadow: 0 12px 40px rgba(13,12,10,0.12);
  padding: 12px 0;
  margin: 0; list-style: none;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 110;
}
.has-dropdown:hover > .dropdown,
.has-dropdown:focus-within > .dropdown {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown li { list-style: none; }
.dropdown a {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 20px; height: auto;
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em;
  color: var(--text); transition: background 0.15s, color 0.15s;
  width: 100%;
}
.dropdown a:hover { background: var(--bg2); color: var(--red); }
.dropdown .dd-dot { width: 6px; height: 6px; background: var(--red); flex-shrink: 0; }
.dropdown .dd-all {
  border-top: 1px solid var(--border);
  margin-top: 6px; padding-top: 14px;
  font-size: 11px; color: var(--muted);
  letter-spacing: 0.18em;
}
.dropdown .dd-all .dd-dot { background: var(--muted); }
.dropdown .dd-all:hover .dd-dot { background: var(--red); }
.nav-cta {
  display: inline-block;
  font-family: var(--f-display); font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 10px 18px;
  background: var(--red); color: var(--bg);
  border: none; cursor: pointer; transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.85; }
.nav-toggle { display: none; background: none; border: none; color: var(--text); width: 38px; height: 38px; }

/* ---------- DARK MASTHEAD ---------- */
.mast {
  background: var(--text);
  color: var(--bg);
  padding: 56px 48px 64px;
  position: relative; overflow: hidden;
}
.mast-top {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(242,237,228,0.18);
  font-family: var(--f-display); font-weight: 700;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(242,237,228,0.6);
}
.mast-top a { color: rgba(242,237,228,0.6); transition: color 0.2s; }
.mast-top a:hover { color: var(--bg); }
.mast-top .here { color: var(--red); }
.mast-top .sep { color: rgba(242,237,228,0.3); margin: 0 12px; }

.mast-body {
  padding: 56px 0 0;
  display: flex; flex-direction: column; gap: 32px;
}
.mast-row {
  display: grid; grid-template-columns: auto 1fr;
  gap: 56px; align-items: start;
}
.mast-icon {
  width: 120px; height: 120px;
  border: 1.5px solid rgba(242,237,228,0.3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mast-head { display: flex; flex-direction: column; gap: 18px; }
.mast-id-line {
  font-family: var(--f-display); font-size: 12px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--red);
}
.mast-id-line b { color: rgba(242,237,228,0.85); font-weight: 800; }
.mast-title {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(80px, 9vw, 160px);
  line-height: 0.85; letter-spacing: -0.05em;
  color: var(--bg); margin: 0;
}
.mast-title em { color: var(--red); font-style: normal; }
.mast-quote {
  font-family: var(--f-body); font-style: italic; font-weight: 400;
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1.3; letter-spacing: -0.005em;
  color: rgba(242,237,228,0.78);
  margin: 12px 0 0;
}
.mast-quote em {
  font-family: var(--f-display); font-style: normal;
  font-weight: 800; color: var(--bg);
}
.mast-byline {
  margin-top: 8px;
  font-family: var(--f-display); font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(242,237,228,0.5);
}

/* ---------- SPEC ROW ---------- */
.spec-row {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  display: grid; grid-template-columns: repeat(5, 1fr);
  align-items: stretch;
}
.spec {
  padding: 24px 24px 24px 0;
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 4px;
}
.spec:nth-child(n+2) { padding-left: 24px; }
.spec:first-child   { padding-left: 48px; }
.spec:last-child    { padding-right: 48px; border-right: none; }
.spec-l {
  font-family: var(--f-display); font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted);
}
.spec-v {
  font-family: var(--f-display); font-weight: 800; font-size: 26px;
  letter-spacing: -0.02em; line-height: 1; color: var(--text);
}
.spec-v em { color: var(--red); font-style: normal; }
.spec-v small {
  display: block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  color: var(--muted); margin-top: 4px;
}

/* ---------- MAIN ---------- */
.main { padding: 64px 48px 80px; }
.main-h {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 24px; gap: 24px;
  border-bottom: 2px solid var(--text);
  padding-bottom: 18px;
}
.main-h h2 {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1; letter-spacing: -0.03em;
}
.main-h h2 em { color: var(--red); font-style: normal; }
.main-h .meta {
  font-family: var(--f-display); font-weight: 700;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Section title (générique) ---------- */
.sect { padding: 56px 48px; }
.sect-h {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(28px, 2.6vw, 44px);
  line-height: 1.05; letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.sect-h em { color: var(--red); font-style: normal; }
.sect-lead { color: var(--muted); max-width: 64ch; font-size: 17px; }
.sect-divider { height: 2px; background: var(--text); width: 100%; margin: 0 0 32px; }

/* ---------- Pills / niveaux ---------- */
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--f-display); font-weight: 700;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 6px 12px;
  background: var(--bg2); color: var(--text);
  border: 1px solid var(--border);
}
.pill .cnt { color: var(--muted); font-weight: 600; }
.pill.red  { background: var(--red); color: var(--bg); border-color: var(--red); }
.pill.gold { background: transparent; color: var(--gold); border-color: var(--gold); }
.pill.outline { background: transparent; }

.level {
  display: inline-block; padding: 5px 12px;
  font-family: var(--f-display); font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  border: 1px solid;
}
.level.deb { color: var(--gold); border-color: var(--gold); }
.level.int { color: #8B6EC8;   border-color: #8B6EC8; }
.level.av  { color: var(--red); border-color: var(--red); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-display); font-weight: 700;
  font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 14px 24px;
  background: var(--red); color: var(--bg);
  border: none; cursor: pointer; transition: opacity 0.2s;
}
.btn:hover { opacity: 0.88; }
.btn-outline {
  background: transparent; color: var(--text);
  border: 1px solid var(--text); padding: 13px 23px;
}
.btn-outline:hover { background: var(--text); color: var(--bg); opacity: 1; }
.btn-ghost {
  padding: 0; color: var(--muted); background: none; border: none;
  font-family: var(--f-display); font-weight: 700; font-size: 13px;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.btn-ghost::after { content: ' →'; }
.btn-ghost:hover { color: var(--text); }

/* ---------- Card grid (mini cards) ---------- */
.card-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px; background: var(--border); border: 1px solid var(--border);
}
.mini-card {
  background: var(--bg); padding: 28px 24px;
  display: flex; flex-direction: column; gap: 14px;
  transition: background 0.2s;
}
.mini-card:hover { background: var(--bg2); }
.mini-card .meta {
  font-family: var(--f-display); font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted);
  display: flex; gap: 12px;
}
.mini-card .ttl {
  font-family: var(--f-display); font-weight: 800;
  font-size: 22px; line-height: 1.15; letter-spacing: -0.01em;
}
.mini-card .ex { color: var(--muted); font-size: 15px; }
.mini-card .foot {
  margin-top: auto;
  font-family: var(--f-display); font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted);
  display: flex; justify-content: space-between; padding-top: 14px;
  border-top: 1px solid var(--border);
}

/* ---------- Side newsletter ---------- */
.side-nl {
  background: var(--text); color: var(--bg); padding: 24px;
}
.side-nl .col-h {
  font-family: var(--f-display); font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--red); margin-bottom: 8px;
}
.side-nl .h {
  font-family: var(--f-display); font-weight: 800;
  font-size: 20px; line-height: 1.15; letter-spacing: -0.01em;
  color: var(--bg); margin: 0 0 14px;
}
.side-nl .nlrow { display: flex; background: var(--bg); }
.side-nl .nlrow input {
  flex: 1; border: none; background: transparent;
  font-family: var(--f-display); font-size: 13px;
  padding: 12px 14px; outline: none; color: var(--text);
}
.side-nl .nlrow button {
  background: var(--red); border: none; color: var(--bg);
  padding: 0 16px;
  font-family: var(--f-display); font-weight: 800;
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
}

/* ---------- FOOTER V4 (split diagonal) ---------- */
.g4 { position: relative; background: var(--bg); border-top: 1px solid var(--border); }
.g4::before {
  content: ''; position: absolute; inset: 0;
  background: var(--text);
  clip-path: polygon(42% 0, 100% 0, 100% 100%, 50% 100%);
  z-index: 0;
}
.g4-body { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; }
.g4-left { padding: 56px 56px 32px; display: flex; flex-direction: column; gap: 28px; }
.g4-left .logo-mark { font-size: 56px; }
.g4-headline {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(36px, 3.4vw, 52px);
  line-height: 1; letter-spacing: -0.02em;
  margin: 24px 0 16px; max-width: 480px; color: var(--text);
}
.g4-headline em { color: var(--red); font-style: normal; }
.g4-nav {
  display: flex; flex-wrap: wrap; gap: 8px 28px;
  padding: 16px 0 0; border-top: 2px solid var(--text);
}
.g4-nav a {
  font-family: var(--f-display); font-weight: 700;
  font-size: 15px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text); transition: color 0.2s;
}
.g4-nav a:hover { color: var(--red); }
.g4-right {
  color: var(--bg); padding: 56px 56px 32px 100px;
  display: flex; flex-direction: column; justify-content: space-between; gap: 28px;
}
.g4-right .col-h {
  font-family: var(--f-display); font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(242,237,228,0.5); margin-bottom: 12px;
}
.g4-nl-h {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(28px, 2.4vw, 36px);
  line-height: 1.1; letter-spacing: -0.02em;
  color: var(--bg); margin: 0 0 18px;
}
.g4-nl-row { display: flex; background: var(--bg); border: 1px solid var(--bg); }
.g4-nl-row input {
  flex: 1; border: none; background: transparent;
  font-family: var(--f-display); font-size: 15px;
  padding: 14px 16px; outline: none;
}
.g4-nl-row button {
  background: var(--red); border: none; color: var(--bg);
  padding: 0 22px;
  font-family: var(--f-display); font-weight: 700;
  font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase;
}
.g4-right-bottom { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; }
.g4-stats {
  font-family: var(--f-display); font-weight: 800;
  font-size: 36px; color: var(--red);
  letter-spacing: -0.02em; line-height: 1;
}
.g4-stats .unit { color: var(--bg); font-size: 20px; }
.g4-stats small {
  display: block;
  font-size: 10px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(242,237,228,0.6); margin-top: 8px;
}
.g4-socials { display: flex; gap: 6px; }
.g4-socials .social-btn {
  width: 36px; height: 36px;
  border: 1px solid rgba(242,237,228,0.3);
  background: transparent; color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-size: 13px; font-weight: 700;
  transition: all 0.2s;
}
.g4-socials .social-btn:hover { background: var(--bg); color: var(--text); border-color: var(--bg); }
.g4-foot {
  position: relative; z-index: 2;
  padding: 18px 48px; background: var(--bg);
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; flex-wrap: wrap;
  font-family: var(--f-display);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted);
}
.g4-foot .legal { display: flex; gap: 16px; flex-wrap: wrap; }
.g4-foot .legal a { color: var(--muted); transition: color 0.2s; }
.g4-foot .legal a:hover { color: var(--text); }

/* ---------- Forms ---------- */
.field-block { display: flex; flex-direction: column; gap: 6px; }
.field-block label {
  font-family: var(--f-display); font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted);
}
.field-block input,
.field-block textarea,
.field-block select {
  background: var(--bg); border: 1px solid var(--border);
  padding: 14px 16px; font-size: 15px;
  transition: border-color 0.2s; color: var(--text); font-family: var(--f-body);
}
.field-block input:focus,
.field-block textarea:focus,
.field-block select:focus { border-color: var(--text); outline: none; }
.field-block textarea { min-height: 160px; resize: vertical; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }

/* ---------- Helpers ---------- */
.text-muted { color: var(--muted); }
.text-red   { color: var(--red); }
.text-gold  { color: var(--gold); }
.divider    { height: 1px; background: var(--border); margin: 48px 0; }
.sr-only    { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .g4::before { clip-path: none; background: transparent; }
  .g4-body { grid-template-columns: 1fr; }
  .g4-right { background: var(--text); padding: 48px; }
  .spec-row { grid-template-columns: repeat(3, 1fr); }
  .spec:nth-child(3) { border-right: none; padding-right: 48px; }
  .spec:nth-child(n+4) { border-top: 1px solid var(--border); }
}
@media (max-width: 768px) {
  nav.site-nav { padding: 0 20px; }
  .nav-links { display: none; }
  .main, .sect { padding: 48px 20px; }
  .mast { padding: 40px 20px; }
  .mast-body { grid-template-columns: 1fr; gap: 24px; }
  .mast-icon { width: 72px; height: 72px; }
  .spec-row { grid-template-columns: 1fr 1fr; }
  .spec { padding: 16px !important; border-right: none; border-top: 1px solid var(--border); }
  .spec:first-child, .spec:nth-child(2) { border-top: none; }
  .spec:nth-child(2n) { border-left: 1px solid var(--border); }
  .g4-left, .g4-right { padding: 40px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .g4-foot { padding: 14px 20px; }
}

/* ==================================================================
   PAGE STYLES — extraits de index.html (homepage)
   ==================================================================*/
    /* ── LIGHT (défaut) ── */
    :root {
      --bg:      #F5F0E8;
      --bg2:     #EDE8DF;
      --bg3:     #E5DFD5;
      --border:  #CEC9C0;
      --text:    #0D0C0A;
      --muted:   #6A6560;
      --red:     oklch(0.62 0.22 25);
      --gold:    oklch(0.60 0.15 72);
      --nav-bg:  rgba(245,240,232,0.95);
      --f-display: 'Barlow Condensed', sans-serif;
      --f-body:    'Lora', Georgia, serif;
    }
    /* ── DARK (au choix) ── */
    [data-theme="dark"] {
      --bg:      #0D0C0A;
      --bg2:     #161410;
      --bg3:     #201E1A;
      --border:  #2A2620;
      --text:    #F2EDE4;
      --muted:   #7A756C;
      --gold:    oklch(0.75 0.15 82);
      --nav-bg:  rgba(13,12,10,0.96);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: var(--f-body);
      font-size: 16px;
      line-height: 1.7;
      overflow-x: hidden;
    }

    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }

    .logo-mark {
      display: inline-flex;
      align-items: center;
      gap: 0.32em;
      font-family: var(--f-display);
      font-weight: 900;
      font-size: 34px;
      letter-spacing: 0.02em;
      color: var(--text);
      text-transform: uppercase;
      text-decoration: none;
      line-height: 1;
    }
    .logo-mark .logo-stars { height: 1em; width: auto; flex-shrink: 0; display: block; }
    .logo-mark .star-red  { fill: var(--red); }
    .logo-mark .star-gold { fill: var(--gold); }
    .logo-mark .logo-pro  { color: var(--text); }
    .logo-mark .logo-ia   { color: var(--red); }

    /* ─── NAV ─── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 48px;
      height: 64px;
      border-bottom: 1px solid transparent;
      transition: background 0.4s, border-color 0.4s;
    }
    nav.scrolled {
      background: var(--nav-bg);
      border-color: var(--border);
      backdrop-filter: blur(12px);
    }
    .nav-links {
      display: flex;
      gap: 24px;
      list-style: none;
      font-family: var(--f-display);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      white-space: nowrap;
      align-items: center;
      margin: 0; padding: 0;
    }
    .nav-links > li { position: relative; list-style: none; }
    .nav-links a, .nav-links button.nav-trigger {
      color: var(--muted); transition: color 0.2s;
      background: none; border: none; padding: 0; cursor: pointer;
      font: inherit; letter-spacing: inherit; text-transform: inherit;
      display: inline-flex; align-items: center; gap: 6px; height: 64px;
    }
    .nav-links a:hover,
    .nav-links button.nav-trigger:hover,
    .nav-links li.has-dropdown:hover > button.nav-trigger { color: var(--text); }
    .nav-trigger .chev {
      display: inline-block;
      border: solid currentColor;
      border-width: 0 1.5px 1.5px 0;
      padding: 2.5px; transform: rotate(45deg) translateY(-2px);
      transition: transform 0.2s;
    }
    .has-dropdown:hover .nav-trigger .chev,
    .has-dropdown:focus-within .nav-trigger .chev { transform: rotate(-135deg) translateY(2px); }
    .dropdown {
      position: absolute; top: 100%; left: 50%;
      transform: translateX(-50%) translateY(-8px);
      min-width: 260px;
      background: var(--bg);
      border: 1px solid var(--border);
      box-shadow: 0 12px 40px rgba(13,12,10,0.12);
      padding: 12px 0; margin: 0; list-style: none;
      opacity: 0; visibility: hidden; pointer-events: none;
      transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
      z-index: 110;
    }
    .has-dropdown:hover > .dropdown,
    .has-dropdown:focus-within > .dropdown {
      opacity: 1; visibility: visible; pointer-events: auto;
      transform: translateX(-50%) translateY(0);
    }
    .dropdown li { list-style: none; }
    .dropdown a {
      display: flex; align-items: center; gap: 12px;
      padding: 11px 20px; height: auto;
      color: var(--text);
      transition: background 0.15s, color 0.15s;
      width: 100%;
    }
    .dropdown a:hover { background: var(--bg2); color: var(--red); }
    .dropdown .dd-dot { width: 6px; height: 6px; background: var(--red); flex-shrink: 0; }
    .dropdown .dd-all {
      border-top: 1px solid var(--border);
      margin-top: 6px; padding-top: 14px;
      color: var(--muted); letter-spacing: 0.18em;
    }
    .dropdown .dd-all .dd-dot { background: var(--muted); }
    .dropdown .dd-all:hover .dd-dot { background: var(--red); }
    .theme-toggle {
      width: 36px; height: 20px;
      border: 1px solid var(--border);
      border-radius: 10px;
      background: var(--bg3);
      position: relative;
      cursor: pointer;
      flex-shrink: 0;
      transition: background 0.3s, border-color 0.3s;
    }
    .theme-toggle::after {
      content: '';
      position: absolute;
      top: 3px; left: 3px;
      width: 12px; height: 12px;
      border-radius: 50%;
      background: var(--muted);
      transition: transform 0.3s, background 0.3s;
    }
    [data-theme="dark"] .theme-toggle::after {
      transform: translateX(16px);
      background: var(--red);
    }
    .nav-cta {
      font-family: var(--f-display);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      background: var(--red);
      color: var(--text);
      padding: 9px 20px;
      border: none;
      cursor: pointer;
      transition: opacity 0.2s;
    }
    .nav-cta:hover { opacity: 0.85; }

    /* ─── TICKER ─── */
    .ticker-wrap {
      overflow: hidden;
      border-bottom: 1px solid var(--border);
      background: var(--bg2);
      height: 36px;
      display: flex;
      align-items: center;
      margin-top: 64px;
    }
    .ticker {
      display: flex;
      gap: 0;
      white-space: nowrap;
      animation: ticker 28s linear infinite;
    }
    .ticker span {
      font-family: var(--f-display);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
      padding: 0 32px;
      border-right: 1px solid var(--border);
    }
    .ticker span.hot { color: var(--red); }
    @keyframes ticker {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    /* ─── HERO ─── */
    /* ─── HERO V6 ─ mosaïque single image ─── */
    .hero {
      display: grid;
      grid-template-columns: 1fr 420px;
      gap: 0;
      border-bottom: 1px solid var(--border);
      position: relative;
    }
    .hero-main {
      padding: 24px 48px 32px;
      display: flex;
      flex-direction: column;
      gap: 24px;
      border-right: 1px solid var(--border);
    }
    .hero-eyebrow-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-bottom: 20px;
      border-bottom: 1px solid var(--border);
    }
    .hero-eyebrow {
      font-family: var(--f-display);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--red);
      display: inline-flex;
      align-items: center;
      gap: 14px;
    }
    .hero-eyebrow::before {
      content: '';
      width: 40px;
      height: 1px;
      background: var(--red);
    }
    .hero-issue {
      font-family: var(--f-display);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.16em;
      color: var(--muted);
      text-transform: uppercase;
    }
    .hero-image-wrap {
      position: relative;
      width: 100%;
      flex: 0 0 auto;
      aspect-ratio: 21 / 9;
      max-height: 360px;
      overflow: hidden;
      border: 1px solid var(--border);
    }
    .hero-image {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(135deg, rgba(13,12,10,0.55) 0%, rgba(13,12,10,0.2) 100%),
        repeating-linear-gradient(45deg, #2a2620 0 3px, #3a3630 3px 6px);
      display: flex;
      align-items: flex-end;
      padding: 20px;
    }
    .hero-image-placeholder {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: rgba(255,255,255,0.35);
      font-family: monospace;
      font-size: 12px;
      letter-spacing: 0.1em;
      text-align: center;
      width: 80%;
    }
    .hero-image-tag {
      position: relative;
      font-family: var(--f-display);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      background: var(--red);
      color: var(--bg);
      padding: 7px 12px;
      display: inline-block;
    }
    .hero-headline-area {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 24px;
      padding: 0;
      text-align: center;
    }
    .hero-bottom-row {
      display: flex;
      flex-direction: column;
      align-items: stretch;
      gap: 20px;
      width: 100%;
      margin-top: 0;
    }
    .hero-sub {
      margin: 0;
      font-size: 16px;
      line-height: 1.65;
      color: var(--muted);
      text-align: center;
      max-width: 640px;
      align-self: center;
    }
    .hero-sub strong { color: var(--text); font-weight: 600; }
    .hero-sub-link {
      color: var(--red);
      font-weight: 600;
      cursor: pointer;
      border-bottom: 1px solid var(--red);
      padding-bottom: 1px;
      transition: opacity 0.2s;
      white-space: nowrap;
    }
    .hero-sub-link:hover { opacity: 0.7; }
    .hero-sub-more {
      display: none;
      margin-top: 12px;
      animation: fadeIn 0.3s ease;
    }
    .hero-sub.expanded .hero-sub-more { display: block; }
    .hero-sub.expanded .hero-sub-link { display: none; }
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(-4px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .hero-actions {
      display: flex;
      justify-content: flex-end;
      align-self: stretch;
    }
    .hero-actions a { min-width: 220px; justify-content: center; }
    .hero-actions .btn-primary,
    .hero-actions .btn-ghost {
      justify-content: center;
    }
    .hero-headline {
      font-family: var(--f-display);
      font-weight: 900;
      font-size: clamp(36px, 4.8vw, 76px);
      line-height: 1;
      letter-spacing: -0.01em;
      color: var(--text);
      text-align: center;
      white-space: nowrap;
    }
    .hero-headline em {
      font-style: normal;
      color: var(--red);
    }
    .hero-sub-OLD {
      margin-top: 0;
      font-size: 16px;
      line-height: 1.65;
      color: var(--muted);
      max-width: 580px;
      text-align: center;
    }
    .hero-sub-OLD strong { color: var(--text); font-weight: 600; }
    .hero-actions-OLD {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 16px;
      padding-top: 8px;
      margin-top: 0;
      width: 100%;
      align-self: stretch;
    }
    .btn-primary {
      font-family: var(--f-display);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      background: var(--red);
      color: var(--bg);
      padding: 14px 32px;
      border: none;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      transition: opacity 0.2s, gap 0.2s;
    }
    .btn-primary:hover { opacity: 0.88; gap: 14px; }
    .btn-ghost {
      font-family: var(--f-display);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--text);
      border: 1px solid var(--border);
      background: transparent;
      padding: 13px 24px;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: border-color 0.2s, color 0.2s;
    }
    .btn-ghost:hover { color: var(--red); border-color: var(--red); }
    .hero-stat {
      font-family: var(--f-display);
      font-size: 11px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--border);
    }
    .hero-stat strong {
      display: block;
      font-size: 36px;
      font-weight: 800;
      letter-spacing: -0.04em;
      color: var(--bg3);
      line-height: 1;
      margin-bottom: 4px;
    }

    /* ─── HERO SIDEBAR — Liste éditoriale numérotée ─── */
    .hero-sidebar {
      padding: 32px 40px;
      display: flex;
      flex-direction: column;
      background: var(--bg2);
    }
    .sidebar-head {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      padding-bottom: 18px;
      margin-bottom: 4px;
      border-bottom: 2px solid var(--text);
    }
    .sidebar-label {
      font-family: var(--f-display);
      font-weight: 800;
      font-size: 14px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--text);
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }
    .sidebar-label::before {
      content: '★';
      color: var(--red);
      font-size: 16px;
    }
    .sidebar-all {
      font-family: var(--f-display);
      font-weight: 700;
      font-size: 11px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--muted);
      transition: color 0.2s;
    }
    .sidebar-all:hover { color: var(--red); }
    .sidebar-all::after { content: ' →'; }

    .ranked {
      display: grid;
      grid-template-columns: 48px 1fr;
      gap: 18px;
      padding: 22px 0;
      border-bottom: 1px solid var(--border);
      align-items: start;
      cursor: pointer;
      position: relative;
      transition: padding-left 0.25s ease;
    }
    .ranked:last-of-type { border-bottom: none; }
    .ranked:hover { padding-left: 8px; }
    .ranked::before {
      content: '';
      position: absolute;
      left: 0; top: 50%;
      transform: translateY(-50%);
      width: 3px; height: 0;
      background: var(--red);
      transition: height 0.25s ease;
    }
    .ranked:hover::before { height: 60%; }

    .ranked-num {
      font-family: var(--f-display);
      font-weight: 900;
      font-size: 40px;
      line-height: 0.85;
      letter-spacing: -0.04em;
      color: var(--red);
    }
    .ranked-body {
      display: flex;
      flex-direction: column;
      gap: 8px;
      min-width: 0;
    }
    .ranked-cat {
      font-family: var(--f-display);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--text);
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .ranked-cat::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--border);
      min-width: 20px;
    }
    .ranked-title {
      font-family: var(--f-display);
      font-weight: 700;
      font-size: 17px;
      line-height: 1.25;
      letter-spacing: -0.01em;
      color: var(--text);
      transition: color 0.2s;
    }
    .ranked:hover .ranked-title { color: var(--red); }
    .ranked-meta {
      font-family: var(--f-display);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--muted);
      display: flex;
      gap: 10px;
      align-items: center;
      margin-top: 2px;
    }
    .ranked-meta .dot {
      width: 3px; height: 3px;
      background: var(--muted);
      border-radius: 50%;
    }

    /* Newsletter teaser en bas de sidebar */
    .sidebar-nl {
      margin-top: 24px;
      padding: 22px;
      background: var(--text);
      color: var(--bg);
    }
    .sidebar-nl-h {
      font-family: var(--f-display);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 8px;
    }
    .sidebar-nl-t {
      font-family: var(--f-display);
      font-weight: 800;
      font-size: 17px;
      line-height: 1.2;
      letter-spacing: -0.01em;
      margin-bottom: 14px;
      color: var(--bg);
    }
    .sidebar-nl-row {
      display: flex;
      background: var(--bg);
    }
    .sidebar-nl-row input {
      flex: 1; border: none; background: transparent;
      font-family: var(--f-display); font-size: 12px;
      padding: 10px 12px; outline: none; color: var(--text);
      min-width: 0;
    }
    .sidebar-nl-row button {
      background: var(--red); border: none; color: var(--bg);
      padding: 0 14px;
      font-family: var(--f-display); font-weight: 800;
      font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
      cursor: pointer;
    }

    /* ─── SECTION WRAPPER ─── */
    section {
      padding: 96px 48px;
      border-bottom: 1px solid var(--border);
    }
    .section-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 56px;
    }
    .section-label {
      font-family: var(--f-display);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 10px;
    }
    .section-title {
      font-family: var(--f-display);
      font-weight: 900;
      font-size: clamp(40px, 4.5vw, 68px);
      letter-spacing: -0.01em;
      line-height: 1;
    }
    .section-link {
      font-family: var(--f-display);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--muted);
      display: flex;
      align-items: center;
      gap: 6px;
      transition: color 0.2s, gap 0.2s;
      flex-shrink: 0;
      margin-bottom: 4px;
    }
    .section-link:hover { color: var(--text); gap: 10px; }

    /* ─── FAQ — Dark variant ─── */
    .faq-dark {
      background: var(--text);
      padding: 96px 48px;
      border-bottom: 1px solid var(--text);
      position: relative;
    }
    .faq-dark .section-label { color: var(--red); }
    .faq-dark .section-title {
      color: var(--bg);
      font-size: clamp(40px, 4.5vw, 68px);
    }
    .faq-dark .section-title em {
      color: var(--red);
      font-style: normal;
    }
    .faq-dark .section-header {
      border-bottom: 1px solid rgba(242,237,228,0.15);
      padding-bottom: 24px;
      margin-bottom: 0;
    }
    .faq-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
    }
    .faq-q {
      border-bottom: 1px solid rgba(242,237,228,0.12);
      border-right: 1px solid rgba(242,237,228,0.12);
      transition: background 0.2s;
    }
    .faq-q:nth-child(2n) { border-right: none; }
    .faq-q:hover { background: rgba(242,237,228,0.03); }
    .faq-q[open] { background: rgba(242,237,228,0.04); }
    .faq-q summary {
      padding: 28px 32px;
      cursor: pointer;
      font-family: var(--f-display);
      font-weight: 700;
      font-size: 17px;
      letter-spacing: -0.005em;
      line-height: 1.3;
      color: var(--bg);
      list-style: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 18px;
      transition: color 0.2s;
    }
    .faq-q summary::-webkit-details-marker { display: none; }
    .faq-q summary::marker { display: none; }
    .faq-q:hover summary { color: #fff; }
    .faq-toggle {
      flex-shrink: 0;
      width: 32px; height: 32px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(242,237,228,0.3);
      color: var(--red);
      font-family: var(--f-display);
      font-size: 22px;
      font-weight: 400;
      line-height: 1;
      transition: transform 0.25s ease, border-color 0.2s, background 0.2s;
    }
    .faq-q[open] .faq-toggle {
      transform: rotate(45deg);
      border-color: var(--red);
      background: var(--red);
      color: var(--bg);
    }
    .faq-q > div {
      padding: 0 32px 28px;
    }
    .faq-q p {
      font-family: var(--f-body);
      font-size: 15px;
      line-height: 1.75;
      color: rgba(242,237,228,0.7);
      max-width: 62ch;
    }
    .faq-q p strong { color: var(--bg); font-weight: 600; }

    @media (max-width: 900px) {
      .faq-dark { padding: 64px 24px; }
      .faq-grid { grid-template-columns: 1fr; }
      .faq-q { border-right: none; }
      .faq-q summary { padding: 22px 20px; font-size: 16px; }
      .faq-q > div { padding: 0 20px 22px; }
    }

    /* ─── ACTUALITÉS ─── */
    .news-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }
    .news-card {
      background: var(--bg);
      padding: 28px;
      border: 1px solid var(--border);
      display: flex;
      flex-direction: column;
      gap: 16px;
      cursor: pointer;
      transition: background 0.25s;
      position: relative;
      overflow: hidden;
    }
    .news-card:hover { background: var(--bg2); }
    .news-card.featured {
      grid-column: 1 / 3;
      grid-row: 1 / 3;
      padding: 56px;
    }
    .news-card.featured .art-title-lg {
      font-family: var(--f-display);
      font-size: clamp(24px, 2.5vw, 38px);
      font-weight: 800;
      letter-spacing: -0.03em;
      line-height: 1.15;
      margin: 12px 0;
    }
    .news-card.featured .art-excerpt {
      font-size: 16px;
      color: var(--muted);
      max-width: 520px;
      line-height: 1.7;
    }
    .card-img {
      width: 100%;
      aspect-ratio: 16/9;
      background: var(--bg3);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: monospace;
      font-size: 11px;
      color: var(--muted);
      margin-bottom: 8px;
      position: relative;
      overflow: hidden;
    }
    .card-img::after {
      content: '';
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 12px,
        rgba(0,0,0,0.03) 12px,
        rgba(0,0,0,0.03) 13px
      );
    }
    [data-theme="dark"] .card-img::after {
      background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 12px,
        rgba(255,255,255,0.015) 12px,
        rgba(255,255,255,0.015) 13px
      );
    }
    .card-num {
      font-family: var(--f-display);
      font-weight: 800;
      font-size: 80px;
      color: var(--border);
      position: absolute;
      bottom: -10px;
      right: 12px;
      line-height: 1;
      letter-spacing: -0.06em;
      pointer-events: none;
    }
    .tag-pill {
      display: inline-flex;
      align-items: center;
      font-family: var(--f-display);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 4px 10px;
      border: 1px solid var(--border);
      color: var(--muted);
    }
    .tag-pill.red { border-color: var(--red); color: var(--red); }
    .tag-pill.gold { border-color: var(--gold); color: var(--gold); }
    .art-excerpt {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.65;
    }
    .art-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: auto;
      padding-top: 16px;
      border-top: 1px solid var(--border);
    }
    .art-date {
      font-family: var(--f-display);
      font-size: 11px;
      color: var(--muted);
      letter-spacing: 0.04em;
    }
    .art-read {
      font-family: var(--f-display);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--muted);
    }

    /* ─── MODÈLES IA ─── */
    #modeles { background: var(--bg2); }
    .models-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: var(--border);
    }
    .model-card {
      background: var(--bg2);
      padding: 36px 28px;
      display: flex;
      flex-direction: column;
      gap: 16px;
      cursor: pointer;
      transition: background 0.25s;
      position: relative;
    }
    .model-card:hover { background: var(--bg3); }
    .model-icon {
      width: 64px;
      height: 64px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      background: var(--bg);
      border: 1px solid var(--border);
      padding: 8px;
      overflow: hidden;
    }
    .model-icon img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
    }
    @media (max-width: 700px) {
      .model-icon { width: 56px; height: 56px; padding: 6px; }
    }
    .model-name {
      font-family: var(--f-display);
      font-weight: 800;
      font-size: 20px;
      letter-spacing: -0.03em;
      line-height: 1;
    }
    .model-maker {
      font-family: var(--f-display);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .model-desc {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.6;
      flex: 1;
    }
    .model-link {
      font-family: var(--f-display);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--red);
      display: flex;
      align-items: center;
      gap: 6px;
      transition: gap 0.2s;
    }
    /* Entire card clickable: the link covers the card via overlay pseudo */
    .model-link::after {
      content: '';
      position: absolute;
      inset: 0;
    }
    .model-card:hover .model-link { gap: 10px; }

    /* ─── FORMATIONS · PARCOURS ─── */
    .parcours {
      display: flex;
      flex-direction: column;
    }
    .v3-track {
      display: grid;
      grid-template-columns: 260px 1fr;
      gap: 48px;
      padding: 44px 0;
      border-bottom: 1px solid var(--border);
    }
    .v3-track:first-child { padding-top: 16px; }
    .v3-track:last-child { border-bottom: none; padding-bottom: 16px; }
    .v3-track-head {
      border-left: 3px solid var(--text);
      padding-left: 20px;
    }
    .v3-track.debutant .v3-track-head { border-color: var(--gold); }
    .v3-track.intermediaire .v3-track-head { border-color: #8B6EC8; }
    [data-theme="dark"] .v3-track.intermediaire .v3-track-head { border-color: oklch(0.70 0.13 290); }
    .v3-track.avance .v3-track-head { border-color: var(--red); }
    .v3-step-num {
      font-family: var(--f-display);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 10px;
    }
    .v3-track-name {
      font-family: var(--f-display);
      font-weight: 800;
      font-size: clamp(36px, 3vw, 48px);
      letter-spacing: -0.02em;
      line-height: 1;
      margin-bottom: 14px;
    }
    .v3-track-desc {
      font-family: var(--f-body);
      font-size: 14px;
      color: var(--muted);
      line-height: 1.6;
      max-width: 240px;
    }
    .v3-stops {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      position: relative;
    }
    .v3-stop {
      border: 1px solid var(--border);
      padding: 22px 22px 20px;
      background: var(--bg);
      position: relative;
      display: flex;
      flex-direction: column;
      gap: 14px;
      min-height: 180px;
      transition: background 0.2s, border-color 0.2s;
      cursor: pointer;
    }
    .v3-stop:hover {
      background: var(--bg2);
      border-color: var(--text);
    }
    .v3-stop-num {
      font-family: var(--f-display);
      font-weight: 700;
      font-size: 11px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .v3-stop-num .premium-dot {
      color: var(--red);
      margin-left: 6px;
      font-weight: 800;
    }
    .v3-stop-title {
      font-family: var(--f-display);
      font-weight: 700;
      font-size: 17px;
      line-height: 1.25;
      letter-spacing: -0.01em;
    }
    .v3-stop-meta {
      font-family: var(--f-display);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--muted);
      margin-top: auto;
    }
    .v3-arrow {
      position: absolute;
      top: 50%;
      right: -16px;
      transform: translateY(-50%);
      font-family: var(--f-display);
      font-weight: 800;
      color: var(--border);
      font-size: 22px;
      z-index: 1;
      pointer-events: none;
    }

    /* ─── À PROPOS ─── */
    #apropos { background: var(--bg2); padding: 0; }
    #apropos.diptyque {
      background: var(--bg);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      padding: 0;
    }
    .ap-left {
      background: var(--text);
      color: var(--bg);
      padding: 88px 64px;
      display: flex;
      flex-direction: column;
      gap: 32px;
      justify-content: space-between;
    }
    .ap-kicker {
      font-family: var(--f-display);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--red);
    }
    .ap-h {
      font-family: var(--f-display);
      font-weight: 800;
      font-size: clamp(44px, 4.4vw, 72px);
      line-height: 1;
      letter-spacing: -0.03em;
      color: var(--bg);
      margin: 14px 0 0;
    }
    .ap-h em { font-style: normal; color: var(--red); }
    .ap-body {
      font-family: var(--f-body);
      font-size: 16px;
      line-height: 1.7;
      color: rgba(242,237,228,0.75);
    }
    .ap-body strong { color: var(--bg); font-weight: 600; }
    .ap-cta-row {
      display: flex;
      gap: 14px;
      padding-top: 32px;
      border-top: 1px solid rgba(242,237,228,0.18);
      flex-wrap: wrap;
    }
    .ap-cta {
      font-family: var(--f-display);
      font-weight: 700;
      font-size: 13px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      padding: 14px 22px;
      cursor: pointer;
      border: 1px solid var(--bg);
      background: transparent;
      color: var(--bg);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: opacity 0.2s, background 0.2s;
    }
    .ap-cta.primary { background: var(--red); border-color: var(--red); }
    .ap-cta:hover { opacity: 0.9; }
    .ap-right {
      padding: 88px 64px;
      background: var(--bg);
      display: flex;
      flex-direction: column;
      gap: 28px;
    }
    .ap-right-h {
      font-family: var(--f-display);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--text);
      padding-bottom: 16px;
      border-bottom: 2px solid var(--text);
      display: flex;
      justify-content: space-between;
      align-items: baseline;
    }
    .ap-right-h .count {
      font-family: var(--f-display);
      font-weight: 800;
      font-size: 15px;
      letter-spacing: 0;
      color: var(--muted);
    }
    .ap-vals {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1px;
      background: var(--border);
    }
    .ap-val {
      background: var(--bg);
      padding: 24px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      min-height: 200px;
    }
    .ap-val-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .ap-val-num {
      font-family: var(--f-display);
      font-weight: 800;
      font-size: 34px;
      color: var(--red);
      letter-spacing: -0.04em;
      line-height: 0.9;
    }
    .ap-val-icon {
      font-family: var(--f-display);
      font-weight: 700;
      font-size: 14px;
      letter-spacing: 0.12em;
      color: var(--muted);
    }
    .ap-val-t {
      font-family: var(--f-display);
      font-weight: 800;
      font-size: 24px;
      letter-spacing: -0.02em;
      margin-top: 4px;
      color: var(--text);
    }
    .ap-val-d {
      font-family: var(--f-body);
      font-size: 13px;
      line-height: 1.55;
      color: var(--muted);
      margin-top: auto;
    }
    .apropos-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 96px;
      align-items: start;
    }
    .apropos-text .big-quote {
      font-family: var(--f-display);
      font-weight: 800;
      font-size: clamp(28px, 3vw, 44px);
      letter-spacing: -0.03em;
      line-height: 1.1;
      margin-bottom: 32px;
    }
    .apropos-text .big-quote em {
      font-style: normal;
      color: var(--red);
    }
    .apropos-text p {
      font-size: 16px;
      color: var(--muted);
      line-height: 1.8;
      margin-bottom: 20px;
    }
    .valeurs-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1px;
      background: var(--border);
      margin-bottom: 40px;
    }
    .valeur {
      background: var(--bg2);
      padding: 28px 24px;
    }
    .valeur-title {
      font-family: var(--f-display);
      font-weight: 800;
      font-size: 15px;
      letter-spacing: -0.02em;
      margin-bottom: 8px;
    }
    .valeur-desc {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.6;
    }
    .equipe-list {
      display: flex;
      flex-direction: column;
      gap: 1px;
      background: var(--border);
    }
    .equipe-member {
      background: var(--bg2);
      padding: 24px;
      display: flex;
      align-items: center;
      gap: 20px;
    }
    .avatar {
      width: 48px;
      height: 48px;
      background: var(--bg3);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--f-display);
      font-weight: 800;
      font-size: 16px;
      color: var(--muted);
      flex-shrink: 0;
    }
    .member-name {
      font-family: var(--f-display);
      font-weight: 700;
      font-size: 15px;
      margin-bottom: 3px;
    }
    .member-role {
      font-family: var(--f-display);
      font-size: 12px;
      color: var(--muted);
      letter-spacing: 0.04em;
    }

    /* ─── FOOTER ─── */
    /* V2 — Newsletter hero (full-width black band above) */
    .f-hero {
      background: var(--text);
      color: var(--bg);
      padding: 88px 48px;
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 56px;
      align-items: center;
      border-top: 1px solid var(--border);
    }
    .f-hero-kicker {
      font-family: var(--f-display);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 16px;
    }
    .f-hero-h {
      font-family: var(--f-display);
      font-weight: 800;
      font-size: clamp(40px, 4vw, 64px);
      line-height: 1;
      letter-spacing: -0.03em;
      color: var(--bg);
      margin: 0 0 18px;
    }
    .f-hero-h em { font-style: normal; color: var(--red); }
    .f-hero-d {
      font-family: var(--f-body);
      font-size: 16px;
      line-height: 1.6;
      color: rgba(242,237,228,0.75);
      max-width: 460px;
      margin: 0;
    }
    .f-hero-form { display: flex; flex-direction: column; gap: 14px; }
    .f-hero-row {
      display: flex;
      background: var(--bg);
      border: 1px solid var(--bg);
    }
    .f-hero-row input {
      flex: 1;
      border: none;
      background: transparent;
      font-family: var(--f-display);
      font-size: 16px;
      font-weight: 600;
      padding: 18px 20px;
      color: var(--text);
      outline: none;
    }
    .f-hero-row input::placeholder { color: var(--muted); }
    .f-hero-row button {
      background: var(--red);
      border: none;
      color: var(--bg);
      padding: 0 28px;
      font-family: var(--f-display);
      font-weight: 700;
      font-size: 13px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      cursor: pointer;
      white-space: nowrap;
      transition: opacity 0.2s;
    }
    .f-hero-row button:hover { opacity: 0.9; }
    .f-trust {
      display: flex;
      gap: 28px;
      flex-wrap: wrap;
      font-family: var(--f-display);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(242,237,228,0.6);
      margin-top: 4px;
    }
    .f-trust b { color: var(--bg); font-weight: 800; }

    /* ─── FOOTER V5 · ULTRA-MINI SINGLE BAR ─── */
    .f5-wrap {
      background: var(--bg);
      border-top: 1px solid var(--border);
    }
    .f5-row {
      display: grid;
      grid-template-columns: auto 1fr auto auto;
      gap: 36px;
      align-items: center;
      padding: 22px 48px;
      border-bottom: 1px solid var(--border);
    }
    .f5-brand {
      display: flex; align-items: center; gap: 14px;
    }
    .f5-brand .tag {
      font-family: var(--f-display);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--muted);
      padding-left: 14px;
      border-left: 1px solid var(--border);
    }
    .f5-nav {
      display: flex; gap: 28px; justify-content: center;
      flex-wrap: wrap;
    }
    .f5-nav a {
      font-family: var(--f-display);
      font-weight: 700;
      font-size: 13px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-decoration: none;
      color: var(--text);
      transition: color 0.2s;
    }
    .f5-nav a:hover { color: var(--red); }
    .f5-nl {
      display: flex;
      align-items: stretch;
      border: 1px solid var(--text);
    }
    .f5-nl input {
      border: none;
      background: transparent;
      font-family: var(--f-display);
      font-size: 13px;
      padding: 9px 14px;
      width: 220px;
      outline: none;
      color: var(--text);
    }
    .f5-nl input::placeholder { color: var(--muted); }
    .f5-nl button {
      background: var(--red);
      border: none;
      color: var(--bg);
      padding: 0 18px;
      font-family: var(--f-display);
      font-weight: 700;
      font-size: 12px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      cursor: pointer;
      transition: opacity 0.2s;
    }
    .f5-nl button:hover { opacity: 0.9; }
    .f5-socials { display: flex; gap: 6px; }
    .f5-socials .social-btn {
      width: 36px; height: 36px;
      border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--f-display);
      font-size: 13px; font-weight: 700;
      color: var(--text);
      background: var(--bg);
      transition: all 0.2s;
      text-decoration: none;
    }
    .f5-socials .social-btn:hover {
      background: var(--text); color: var(--bg); border-color: var(--text);
    }
    .f5-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 24px;
      flex-wrap: wrap;
      padding: 14px 48px;
      font-family: var(--f-display);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .f5-bottom .legal { display: flex; gap: 16px; flex-wrap: wrap; }
    .f5-bottom .legal a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
    .f5-bottom .legal a:hover { color: var(--text); }
    .f5-bottom .right-note { color: var(--muted); }

    /* ─── FOOTER V4 · SPLIT DIAGONAL ─── */
    .g4 {
      position: relative;
      background: var(--bg);
      border-top: 1px solid var(--border);
    }
    .g4::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--text);
      clip-path: polygon(42% 0, 100% 0, 100% 100%, 50% 100%);
      z-index: 0;
    }
    .g4-body {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
    }
    .g4-left {
      padding: 56px 56px 32px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 28px;
    }
    .g4-left .logo-mark { font-size: 56px; }
    .g4-headline {
      font-family: var(--f-display);
      font-weight: 800;
      font-size: clamp(36px, 3.4vw, 52px);
      line-height: 1;
      letter-spacing: -0.02em;
      margin: 24px 0 16px;
      max-width: 480px;
      color: var(--text);
    }
    .g4-headline em { color: var(--red); font-style: normal; }
    .g4-nav {
      position: static;
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      align-items: center;
      justify-content: flex-start;
      gap: 8px 28px;
      height: auto;
      padding: 16px 0 0;
      border-top: 2px solid var(--text);
      background: transparent;
    }
    .g4-nav a {
      font-family: var(--f-display);
      font-weight: 700;
      font-size: 15px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--text);
      text-decoration: none;
      transition: color 0.2s;
    }
    .g4-nav a:hover { color: var(--red); }
    .g4-right {
      color: var(--bg);
      padding: 56px 56px 32px 100px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 28px;
    }
    .g4-right .col-h {
      font-family: var(--f-display);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(242,237,228,0.5);
      margin-bottom: 12px;
    }
    .g4-nl-h {
      font-family: var(--f-display);
      font-weight: 800;
      font-size: clamp(28px, 2.4vw, 36px);
      line-height: 1.1;
      letter-spacing: -0.02em;
      color: var(--bg);
      margin: 0 0 18px;
    }
    .g4-nl-row {
      display: flex;
      background: var(--bg);
      border: 1px solid var(--bg);
    }
    .g4-nl-row input {
      flex: 1; border: none; background: transparent;
      font-family: var(--f-display); font-size: 15px;
      padding: 14px 16px; outline: none;
      color: var(--text);
    }
    .g4-nl-row input::placeholder { color: var(--muted); }
    .g4-nl-row button {
      background: var(--red); border: none; color: var(--bg);
      padding: 0 22px;
      font-family: var(--f-display); font-weight: 700;
      font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase;
      cursor: pointer;
      transition: opacity 0.2s;
    }
    .g4-nl-row button:hover { opacity: 0.9; }
    .g4-right-bottom {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      flex-wrap: wrap;
      gap: 24px;
    }
    .g4-stats {
      font-family: var(--f-display);
      font-weight: 800;
      font-size: 36px;
      color: var(--red);
      letter-spacing: -0.02em;
      line-height: 1;
    }
    .g4-stats .unit { color: var(--bg); font-size: 20px; }
    .g4-stats small {
      display: block;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: rgba(242,237,228,0.6);
      margin-top: 8px;
    }
    .g4-socials { display: flex; gap: 6px; }
    .g4-socials .social-btn {
      width: 36px; height: 36px;
      border: 1px solid rgba(242,237,228,0.3);
      background: transparent;
      color: var(--bg);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--f-display);
      font-size: 13px; font-weight: 700;
      text-decoration: none;
      transition: all 0.2s;
    }
    .g4-socials .social-btn:hover {
      background: var(--bg); color: var(--text); border-color: var(--bg);
    }
    .g4-foot {
      position: relative;
      z-index: 2;
      padding: 18px 56px;
      background: var(--bg);
      border-top: 1px solid var(--border);
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 24px;
      flex-wrap: wrap;
      font-family: var(--f-display);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .g4-foot .legal { display: flex; gap: 16px; flex-wrap: wrap; }
    .g4-foot .legal a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
    .g4-foot .legal a:hover { color: var(--text); }
    footer {
      background: var(--bg2);
      border-top: 1px solid var(--border);
      padding: 64px 48px 32px;
    }
    .footer-top {
      display: grid;
      grid-template-columns: 280px 1fr 1fr 1fr;
      gap: 48px;
      padding-bottom: 48px;
      border-bottom: 1px solid var(--border);
      margin-bottom: 32px;
    }
    .footer-brand .tagline {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.6;
      margin-top: 16px;
    }
    .footer-col-title {
      font-family: var(--f-display);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 20px;
    }
    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
    .footer-links a {
      font-family: var(--f-display);
      font-size: 14px;
      color: var(--muted);
      transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--text); }
    .newsletter-form {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .newsletter-desc {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.6;
    }
    .newsletter-input-row {
      display: flex;
      gap: 0;
    }
    .newsletter-input-row input {
      flex: 1;
      background: var(--bg);
      border: 1px solid var(--border);
      border-right: none;
      color: var(--text);
      font-family: var(--f-body);
      font-size: 14px;
      padding: 12px 16px;
      outline: none;
      transition: border-color 0.2s;
    }
    .newsletter-input-row input:focus { border-color: var(--red); }
    .newsletter-input-row input::placeholder { color: var(--muted); }
    .newsletter-input-row button {
      background: var(--red);
      border: 1px solid var(--red);
      color: var(--text);
      font-family: var(--f-display);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 12px 20px;
      cursor: pointer;
      white-space: nowrap;
      transition: opacity 0.2s;
    }
    .newsletter-input-row button:hover { opacity: 0.85; }
    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .footer-legal {
      font-family: var(--f-display);
      font-size: 12px;
      color: var(--border);
      display: flex;
      gap: 24px;
    }
    .footer-legal a { color: var(--border); transition: color 0.2s; }
    .footer-legal a:hover { color: var(--muted); }
    .socials {
      display: flex;
      gap: 16px;
    }
    .social-btn {
      width: 36px;
      height: 36px;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--muted);
      font-family: var(--f-display);
      font-size: 12px;
      font-weight: 700;
      cursor: pointer;
      transition: border-color 0.2s, color 0.2s;
    }
    .social-btn:hover { border-color: var(--red); color: var(--red); }

    /* ─── FAQ DETAILS ─── */
    details summary::-webkit-details-marker { display: none; }
    details[open] summary span { transform: rotate(45deg); display: inline-block; }
    details[open] summary span { transition: transform 0.2s; }
    details summary { transition: background 0.2s; }
    details summary:hover { background: var(--bg3); }
    details[open] { background: var(--bg2); }

    /* ─── SCROLL REVEAL ───
       Par défaut : visible. Si JS ajoute .js-reveal à <html>, on cache
       et on anime. Garantit que sans JS le contenu reste lisible. */
    .reveal {
      opacity: 1;
      transform: none;
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    html.js-reveal .reveal {
      opacity: 0;
      transform: translateY(28px);
    }
    html.js-reveal .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }

    /* ─── BANDE MÉDIA · MARQUEE + MEDIA COMPACT ─── */
    .media-band {
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      overflow: hidden;
    }
    .mb-marquee {
      background: var(--text);
      color: var(--bg);
      padding: 22px 0;
      overflow: hidden;
      border-bottom: 1px solid var(--border);
    }
    .mb-marquee-inner {
      display: flex;
      gap: 56px;
      animation: mbScroll 32s linear infinite;
      font-family: var(--f-display);
      font-weight: 800;
      font-size: clamp(22px, 2.2vw, 34px);
      letter-spacing: -0.01em;
      white-space: nowrap;
      width: max-content;
    }
    .mb-marquee-inner .dot { color: var(--red); }
    @keyframes mbScroll {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }
    .mb-body {
      display: grid;
      grid-template-columns: 1fr 1fr;
    }
    .mb-text-side {
      padding: 64px 56px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      border-right: 1px solid var(--border);
    }
    .mb-kicker {
      font-family: var(--f-display);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 18px;
    }
    .mb-head {
      font-family: var(--f-display);
      font-weight: 800;
      font-size: clamp(34px, 3vw, 52px);
      line-height: 1.05;
      letter-spacing: -0.02em;
      margin: 0 0 20px;
    }
    .mb-body-text {
      font-family: var(--f-body);
      font-size: 16px;
      line-height: 1.65;
      color: var(--muted);
      max-width: 480px;
      margin-bottom: 28px;
    }
    .mb-ctas {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }
    .mb-cta {
      font-family: var(--f-display);
      font-weight: 700;
      font-size: 13px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      padding: 14px 22px;
      cursor: pointer;
      border: 1px solid var(--text);
      background: var(--text);
      color: var(--bg);
      transition: opacity 0.2s, background 0.2s, color 0.2s;
    }
    .mb-cta:hover { opacity: 0.85; }
    .mb-cta.ghost {
      background: transparent;
      color: var(--text);
    }
    .mb-cta.ghost:hover {
      background: var(--text);
      color: var(--bg);
      opacity: 1;
    }
    .mb-media {
      position: relative;
      background: var(--bg3);
      min-height: 460px;
      cursor: pointer;
      overflow: hidden;
    }
    .mb-media::after {
      content: '';
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(-45deg, transparent, transparent 16px, rgba(0,0,0,0.025) 16px, rgba(0,0,0,0.025) 17px);
      pointer-events: none;
    }
    [data-theme="dark"] .mb-media::after {
      background: repeating-linear-gradient(-45deg, transparent, transparent 16px, rgba(255,255,255,0.02) 16px, rgba(255,255,255,0.02) 17px);
    }
    .mb-placeholder-label {
      position: absolute;
      left: 50%;
      bottom: 24px;
      transform: translateX(-50%);
      font-family: monospace;
      font-size: 11px;
      color: var(--muted);
      z-index: 1;
    }
    .mb-play {
      position: absolute;
      left: 50%; top: 50%;
      transform: translate(-50%, -50%);
      width: 88px; height: 88px;
      border-radius: 50%;
      background: var(--red);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 2;
      box-shadow: 0 8px 24px rgba(0,0,0,0.18);
      transition: transform 0.2s;
    }
    .mb-media:hover .mb-play { transform: translate(-50%, -50%) scale(1.06); }
    .mb-timestamp {
      position: absolute;
      bottom: 20px; right: 20px;
      z-index: 2;
      font-family: monospace;
      font-size: 11px;
      color: var(--text);
      background: var(--bg);
      padding: 4px 8px;
      border: 1px solid var(--border);
    }
    .mb-tag {
      position: absolute;
      top: 20px; left: 20px;
      z-index: 2;
      font-family: var(--f-display);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--bg);
      background: var(--red);
      padding: 6px 10px;
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 1100px) {
      .hero { grid-template-columns: 1fr; }
      .hero-sidebar { display: none; }
      .models-grid { grid-template-columns: repeat(2, 1fr); }
      .news-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
      .footer-top { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
      nav { padding: 0 20px; }
      .nav-links { display: none; }
      section { padding: 64px 20px; }
      .hero-main { padding: 48px 20px; }
      .news-grid { grid-template-columns: 1fr; }
      .news-card.featured { grid-column: 1; grid-row: auto; }
      .models-grid { grid-template-columns: 1fr; }
      .formations-grid { grid-template-columns: 1fr; }
      .v3-track { grid-template-columns: 1fr; gap: 24px; }
      .v3-stops { grid-template-columns: 1fr; gap: 12px; }
      .v3-arrow { display: none; }
      .mb-body { grid-template-columns: 1fr; }
      .mb-text-side { padding: 48px 24px; border-right: none; border-bottom: 1px solid var(--border); }
      .mb-media { min-height: 320px; }
      .apropos-grid { grid-template-columns: 1fr; gap: 48px; }
      #apropos.diptyque { grid-template-columns: 1fr; }
      .ap-left, .ap-right { padding: 56px 32px; }
      .footer-top { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; gap: 20px; align-items: flex-start; }
      .f-hero { grid-template-columns: 1fr; gap: 32px; padding: 56px 24px; }
      .f5-row { grid-template-columns: 1fr; gap: 16px; padding: 24px; }
      .f5-nav { justify-content: flex-start; }
      .f5-nl input { width: 100%; }
      .f5-bottom { padding: 16px 24px; flex-direction: column; align-items: flex-start; }
      .g4::before { clip-path: none; display: none; }
      .g4-body { grid-template-columns: 1fr; min-height: 0; }
      .g4-left, .g4-right { padding: 48px 24px; }
      .g4-right { background: var(--text); padding-left: 24px; }
      .g4-foot { padding: 16px 24px; flex-direction: column; align-items: flex-start; }
    }

/* ==================================================================
   PAGE STYLES — extraits de categorie.html (Actualités + hero éditorial + carrousel)
   ==================================================================*/
  :root {
    --bg:      #F5F0E8;
    --bg2:     #EDE8DF;
    --bg3:     #E5DFD5;
    --border:  #CEC9C0;
    --text:    #0D0C0A;
    --muted:   #6A6560;
    --red:     oklch(0.62 0.22 25);
    --gold:    oklch(0.60 0.15 72);
    --nav-bg:  rgba(245,240,232,0.95);
    --f-display: 'Barlow Condensed', sans-serif;
    --f-body:    'Lora', Georgia, serif;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--f-body);
    font-size: 16px;
    line-height: 1.7;
  }
  a { color: inherit; text-decoration: none; }
  ul { list-style: none; }

  .logo-mark {
    display: inline-flex;
    align-items: center;
    gap: 0.32em;
    font-family: var(--f-display);
    font-weight: 900;
    font-size: 34px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    text-decoration: none;
    line-height: 1;
  }
  .logo-mark .logo-stars { height: 1em; width: auto; flex-shrink: 0; display: block; }
  .logo-mark .star-red  { fill: var(--red); }
  .logo-mark .star-gold { fill: var(--gold); }
  .logo-mark .logo-pro  { color: var(--text); }
  .logo-mark .logo-ia   { color: var(--red); }
  .logo-mark.inv .logo-pro { color: var(--bg); }

  /* placeholder */
  .ph { position: relative; background: var(--bg3); overflow: hidden; }
  .ph::after {
    content: '';
    position: absolute; inset: 0;
    background: repeating-linear-gradient(-45deg, transparent, transparent 12px, rgba(0,0,0,0.03) 12px, rgba(0,0,0,0.03) 13px);
  }
  .ph .ph-label {
    position: absolute; left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    font-family: monospace; font-size: 10px; color: rgba(0,0,0,0.4);
  }
  .ph.dark { background: #1A1814; }
  .ph.dark::after { background: repeating-linear-gradient(-45deg, transparent, transparent 12px, rgba(242,237,228,0.03) 12px, rgba(242,237,228,0.03) 13px); }

  /* ── NAV ── */
  nav.site-nav {
    position: sticky;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: 64px;
    background: var(--nav-bg);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
  }
  .nav-links { display: flex; gap: 32px; align-items: center; margin: 0; padding: 0; list-style: none; }
  .nav-links > li { position: relative; list-style: none; }
  .nav-links a, .nav-links button.nav-trigger {
    font-family: var(--f-display);
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--muted); transition: color 0.2s;
    background: none; border: none; padding: 0; cursor: pointer;
    display: inline-flex; align-items: center; gap: 6px; height: 64px;
  }
  .nav-links a:hover, .nav-links a.active,
  .nav-links button.nav-trigger:hover,
  .nav-links li.has-dropdown:hover > button.nav-trigger { color: var(--text); }
  .nav-trigger .chev {
    display: inline-block;
    border: solid currentColor; border-width: 0 1.5px 1.5px 0;
    padding: 2.5px; transform: rotate(45deg) translateY(-2px);
    transition: transform 0.2s;
  }
  .has-dropdown:hover .nav-trigger .chev,
  .has-dropdown:focus-within .nav-trigger .chev { transform: rotate(-135deg) translateY(2px); }
  .dropdown {
    position: absolute; top: 100%; left: 50%;
    transform: translateX(-50%) translateY(-8px);
    min-width: 260px;
    background: var(--bg);
    border: 1px solid var(--border);
    box-shadow: 0 12px 40px rgba(13,12,10,0.12);
    padding: 12px 0; margin: 0; list-style: none;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    z-index: 110;
  }
  .has-dropdown:hover > .dropdown, .has-dropdown:focus-within > .dropdown {
    opacity: 1; visibility: visible; pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
  .dropdown li { list-style: none; }
  .dropdown a {
    display: flex; align-items: center; gap: 12px;
    padding: 11px 20px; height: auto;
    color: var(--text); transition: background 0.15s, color 0.15s;
    width: 100%;
  }
  .dropdown a:hover { background: var(--bg2); color: var(--red); }
  .dropdown .dd-dot { width: 6px; height: 6px; background: var(--red); flex-shrink: 0; }
  .dropdown .dd-all {
    border-top: 1px solid var(--border);
    margin-top: 6px; padding-top: 14px;
    color: var(--muted); letter-spacing: 0.18em;
  }
  .dropdown .dd-all .dd-dot { background: var(--muted); }
  .dropdown .dd-all:hover .dd-dot { background: var(--red); }
  .nav-cta {
    font-family: var(--f-display);
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    padding: 10px 18px;
    background: var(--red); color: var(--bg);
    border: none; cursor: pointer;
  }

  /* ── DARK HERO MASTHEAD ── */
  .mast {
    background: var(--text);
    color: var(--bg);
    padding: 56px 48px 64px;
    position: relative;
    overflow: hidden;
  }
  .mast-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(242,237,228,0.18);
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(242,237,228,0.6);
  }
  .mast-top a { color: rgba(242,237,228,0.6); transition: color 0.2s; }
  .mast-top a:hover { color: var(--bg); }
  .mast-top .here { color: var(--red); }
  .mast-top .sep { color: rgba(242,237,228,0.3); margin: 0 12px; }

  .mast-body {
    padding: 56px 0 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  .mast-row {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 56px;
    align-items: start;
  }
  .mast-icon {
    width: 120px; height: 120px;
    border: 1.5px solid rgba(242,237,228,0.3);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .mast-icon img { width: 100%; height: 100%; object-fit: contain; padding: 14px; display: block; background: var(--bg); }
  .mast-head {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .mast-id-line {
    font-family: var(--f-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--red);
  }
  .mast-id-line b { color: rgba(242,237,228,0.85); font-weight: 800; }
  .mast-title {
    font-family: var(--f-display);
    font-weight: 800;
    font-size: clamp(80px, 9vw, 160px);
    line-height: 0.85;
    letter-spacing: -0.05em;
    color: var(--bg);
    margin: 0;
  }
  .mast-title em { color: var(--red); font-style: normal; }
  .mast-quote {
    font-family: var(--f-body);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(22px, 2vw, 32px);
    line-height: 1.3;
    letter-spacing: -0.005em;
    color: rgba(242,237,228,0.78);
    margin: 12px 0 0;
  }
  .mast-quote em {
    font-family: var(--f-display);
    font-style: normal;
    font-weight: 800;
    color: var(--bg);
  }
  .mast-byline {
    margin-top: 8px;
    font-family: var(--f-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(242,237,228,0.5);
  }

  /* spec sheet overlap (pulls into next section) */
  .spec-row {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: stretch;
  }
  .spec {
    padding: 24px 24px 24px 0;
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .spec:nth-child(n+2) { padding-left: 24px; }
  .spec:first-child { padding-left: 48px; }
  .spec:last-child { padding-right: 48px; border-right: none; }
  .spec-l {
    font-family: var(--f-display);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .spec-v {
    font-family: var(--f-display);
    font-weight: 800;
    font-size: 26px;
    letter-spacing: -0.02em;
    line-height: 1;
    color: var(--text);
  }
  .spec-v em { color: var(--red); font-style: normal; }
  .spec-v small {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--muted);
    margin-top: 4px;
  }

  /* ── MAIN CONTENT ── */
  .main {
    padding: 64px 48px 80px;
  }
  .main-h {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 24px;
    gap: 24px;
    border-bottom: 2px solid var(--text);
    padding-bottom: 18px;
  }
  .main-h h2 {
    font-family: var(--f-display);
    font-weight: 800;
    font-size: clamp(28px, 2.4vw, 40px);
    line-height: 1;
    letter-spacing: -0.02em;
    margin: 0;
  }
  .main-h h2 em { color: var(--red); font-style: normal; }
  .main-h .count {
    font-family: var(--f-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
  }

  /* Inline filter pills */
  .pillrow {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    padding: 18px 0 28px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 32px;
  }
  .pillrow .pill {
    font-family: var(--f-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 7px 12px;
    border: 1px solid var(--border);
    color: var(--muted);
    cursor: pointer;
    background: transparent;
    transition: all 0.2s;
  }
  .pillrow .pill:hover { color: var(--text); border-color: var(--text); }
  .pillrow .pill.active { background: var(--text); color: var(--bg); border-color: var(--text); }
  .pillrow .pill .cnt { opacity: 0.6; margin-left: 6px; font-weight: 600; }

  /* Month header */
  .month-h {
    display: flex;
    align-items: baseline;
    gap: 18px;
    padding: 32px 0 14px;
    margin-top: 32px;
    border-top: 1px solid var(--border);
  }
  .month-h:first-of-type { margin-top: 0; border-top: none; padding-top: 0; }
  .month-h .num {
    font-family: var(--f-display);
    font-weight: 800;
    font-size: 56px;
    letter-spacing: -0.04em;
    line-height: 0.9;
    color: var(--text);
  }
  .month-h .name {
    font-family: var(--f-display);
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -0.01em;
    color: var(--text);
  }
  .month-h .cnt {
    font-family: var(--f-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    margin-left: auto;
  }

  /* Article row */
  .row-art {
    display: grid;
    grid-template-columns: 80px 200px 1fr 130px;
    gap: 24px;
    padding: 22px 0;
    border-bottom: 1px solid var(--border);
    align-items: center;
    cursor: pointer;
    transition: background 0.2s;
  }
  .row-art:hover { background: rgba(0,0,0,0.02); }
  .row-art .date {
    font-family: var(--f-display);
    font-weight: 800;
    font-size: 18px;
    letter-spacing: -0.01em;
    color: var(--text);
  }
  .row-art .date small {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--muted);
    margin-top: 4px;
  }
  .row-art .thumb {
    aspect-ratio: 16/10;
    background: var(--bg3);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
  }
  .row-art .thumb::after {
    content: '';
    position: absolute; inset: 0;
    background: repeating-linear-gradient(-45deg, transparent, transparent 12px, rgba(0,0,0,0.03) 12px, rgba(0,0,0,0.03) 13px);
  }
  .row-art .thumb .lbl {
    position: absolute; left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    font-family: monospace; font-size: 10px; color: rgba(0,0,0,0.4);
  }
  .row-art .ttl {
    font-family: var(--f-display);
    font-weight: 800;
    font-size: 22px;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin: 0 0 6px;
  }
  .row-art .ex {
    font-family: var(--f-body);
    font-size: 14px;
    line-height: 1.55;
    color: var(--muted);
    margin: 0;
  }
  .row-art .meta {
    display: flex; flex-direction: column;
    gap: 6px;
    align-items: flex-end;
    text-align: right;
  }
  .row-art .meta .cat {
    font-family: var(--f-display);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--red);
  }
  .row-art .meta .read {
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.04em;
    color: var(--text);
  }
  .row-art .meta .author {
    font-family: var(--f-display);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
  }

  /* ── GALLERY CARDS ── */
  .gal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 8px;
  }
  .gal-card {
    background: var(--bg);
    border: 1px solid var(--border);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
  }
  .gal-card:hover { background: var(--bg2); border-color: var(--text); }
  .gal-card .img {
    position: relative;
    aspect-ratio: 16/9;
    background: var(--bg3);
    overflow: hidden;
  }
  .gal-card .img::after {
    content: '';
    position: absolute; inset: 0;
    background: repeating-linear-gradient(-45deg, transparent, transparent 12px, rgba(0,0,0,0.03) 12px, rgba(0,0,0,0.03) 13px);
  }
  .gal-card .img .lbl {
    position: absolute; left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    font-family: monospace; font-size: 10px; color: rgba(0,0,0,0.4);
  }
  .gal-card .date-tag {
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px;
  }
  .gal-card .date-tag .date {
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .gal-card .date-tag .cat {
    font-family: var(--f-display);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--red);
    border: 1px solid var(--red);
    padding: 4px 9px;
  }
  .gal-card .ttl {
    font-family: var(--f-display);
    font-weight: 800;
    font-size: 21px;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin: 0;
  }
  .gal-card .ex {
    font-family: var(--f-body);
    font-size: 14px;
    line-height: 1.55;
    color: var(--muted);
    margin: 0;
  }
  .gal-card .meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    margin-top: auto;
    font-family: var(--f-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .gal-card .meta .read { color: var(--text); }

  /* ── BOTTOM ROW (topics · top · newsletter) ── */
  .extras {
    padding: 64px 48px;
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 48px;
  }
  .ex-h {
    font-family: var(--f-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text);
    padding-bottom: 12px;
    border-bottom: 2px solid var(--text);
    margin-bottom: 16px;
  }

  /* ── SIDEBAR ── */
  .side {
    display: flex;
    flex-direction: column;
    gap: 36px;
    position: sticky;
    top: 96px;
    align-self: start;
  }
  .side-h {
    font-family: var(--f-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text);
    padding-bottom: 12px;
    border-bottom: 2px solid var(--text);
    margin-bottom: 12px;
  }
  .topics {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .topics a {
    font-family: var(--f-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 7px 12px;
    border: 1px solid var(--border);
    color: var(--text);
    transition: all 0.2s;
  }
  .topics a:hover { background: var(--text); color: var(--bg); border-color: var(--text); }
  .topics a .n {
    font-weight: 600;
    color: var(--muted);
    margin-left: 6px;
  }
  .topics a:hover .n { color: rgba(242,237,228,0.6); }
  .side-top {
    display: flex; flex-direction: column; gap: 14px;
    border-top: 1px solid var(--border); padding-top: 14px;
  }
  .top-row {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 10px;
    align-items: start;
    cursor: pointer;
  }
  .top-row .pos {
    font-family: var(--f-display);
    font-weight: 800;
    font-size: 18px;
    color: var(--red);
    letter-spacing: -0.02em;
  }
  .top-row .ttl {
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 14px;
    line-height: 1.25;
    color: var(--text);
  }
  .top-row .ttl small {
    display: block;
    font-family: var(--f-display);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 4px;
  }
  .side-nl {
    background: var(--text);
    color: var(--bg);
    padding: 20px;
  }
  .side-nl .col-h {
    font-family: var(--f-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 8px;
  }
  .side-nl .h {
    font-family: var(--f-display);
    font-weight: 800;
    font-size: 18px;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--bg);
    margin: 0 0 12px;
  }
  .side-nl .nlrow {
    display: flex;
    background: var(--bg);
  }
  .side-nl .nlrow input {
    flex: 1; border: none; background: transparent;
    font-family: var(--f-display); font-size: 12px;
    padding: 10px 12px; outline: none; color: var(--text);
  }
  .side-nl .nlrow button {
    background: var(--red); border: none; color: var(--bg);
    padding: 0 14px;
    font-family: var(--f-display); font-weight: 800;
    font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
    cursor: pointer;
  }

  /* ── MODELS STRIP ── */
  .strip {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 56px 48px 64px;
  }
  .strip h2 {
    font-family: var(--f-display);
    font-weight: 800;
    font-size: clamp(28px, 2.6vw, 44px);
    line-height: 1;
    letter-spacing: -0.02em;
    margin: 0 0 28px;
  }
  .strip h2 em { color: var(--red); font-style: normal; }
  .strip-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 8px;
  }
  .mini {
    flex: 0 0 280px;
    background: var(--bg);
    border: 1px solid var(--border);
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
  }
  .mini:hover { background: var(--bg2); border-color: var(--text); }
  .mini .ico {
    width: 44px; height: 44px;
    border: 1.5px solid var(--text);
    display: flex; align-items: center; justify-content: center;
  }
  .mini .ico img { width: 100%; height: 100%; object-fit: contain; padding: 4px; display: block; background: var(--bg); }
  .mini .maker {
    font-family: var(--f-display);
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--muted);
  }
  .mini .name {
    font-family: var(--f-display);
    font-weight: 800;
    font-size: 26px;
    letter-spacing: -0.02em;
    line-height: 1;
  }
  .mini .articles {
    font-family: var(--f-display);
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--red);
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--border);
  }

  /* ── FOOTER · V4 ── */
  .g4 { position: relative; background: var(--bg); border-top: 1px solid var(--border); }
  .g4::before {
    content: ''; position: absolute; inset: 0;
    background: var(--text);
    clip-path: polygon(42% 0, 100% 0, 100% 100%, 50% 100%);
    z-index: 0;
  }
  .g4-body { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; }
  .g4-left { padding: 56px 56px 32px; display: flex; flex-direction: column; gap: 28px; }
  .g4-left .logo-mark { font-size: 56px; }
  .g4-headline {
    font-family: var(--f-display); font-weight: 800;
    font-size: clamp(36px, 3.4vw, 52px);
    line-height: 1; letter-spacing: -0.02em;
    margin: 24px 0 16px; max-width: 480px;
    color: var(--text);
  }
  .g4-headline em { color: var(--red); font-style: normal; }
  .g4-nav {
    display: flex; flex-wrap: wrap;
    gap: 8px 28px;
    padding: 16px 0 0;
    border-top: 2px solid var(--text);
  }
  .g4-nav a {
    font-family: var(--f-display); font-weight: 700;
    font-size: 15px; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--text); transition: color 0.2s;
  }
  .g4-nav a:hover { color: var(--red); }
  .g4-right { color: var(--bg); padding: 56px 56px 32px 100px; display: flex; flex-direction: column; justify-content: space-between; gap: 28px; }
  .g4-right .col-h {
    font-family: var(--f-display); font-size: 11px; font-weight: 700;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: rgba(242,237,228,0.5); margin-bottom: 12px;
  }
  .g4-nl-h {
    font-family: var(--f-display); font-weight: 800;
    font-size: clamp(28px, 2.4vw, 36px);
    line-height: 1.1; letter-spacing: -0.02em;
    color: var(--bg); margin: 0 0 18px;
  }
  .g4-nl-row { display: flex; background: var(--bg); border: 1px solid var(--bg); }
  .g4-nl-row input {
    flex: 1; border: none; background: transparent;
    font-family: var(--f-display); font-size: 15px;
    padding: 14px 16px; outline: none;
  }
  .g4-nl-row button {
    background: var(--red); border: none; color: var(--bg);
    padding: 0 22px;
    font-family: var(--f-display); font-weight: 700;
    font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase;
    cursor: pointer;
  }
  .g4-right-bottom { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; }
  .g4-stats {
    font-family: var(--f-display); font-weight: 800;
    font-size: 36px; color: var(--red);
    letter-spacing: -0.02em; line-height: 1;
  }
  .g4-stats .unit { color: var(--bg); font-size: 20px; }
  .g4-stats small {
    display: block;
    font-size: 10px; font-weight: 700;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: rgba(242,237,228,0.6); margin-top: 8px;
  }
  .g4-socials { display: flex; gap: 6px; }
  .g4-socials .social-btn {
    width: 36px; height: 36px;
    border: 1px solid rgba(242,237,228,0.3);
    background: transparent; color: var(--bg);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--f-display); font-size: 13px; font-weight: 700;
    transition: all 0.2s;
  }
  .g4-socials .social-btn:hover {
    background: var(--bg); color: var(--text); border-color: var(--bg);
  }
  .g4-foot {
    position: relative; z-index: 2;
    padding: 18px 48px; background: var(--bg);
    border-top: 1px solid var(--border);
    display: flex; justify-content: space-between; align-items: center;
    gap: 24px; flex-wrap: wrap;
    font-family: var(--f-display);
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--muted);
  }
  .g4-foot .legal { display: flex; gap: 16px; flex-wrap: wrap; }
  .g4-foot .legal a { color: var(--muted); transition: color 0.2s; }
  .g4-foot .legal a:hover { color: var(--text); }

  /* ── ACTUALITÉS HERO · Éditorial / Newsroom light ── */
  .actu-hero {
    background: var(--bg);
    padding: 28px 48px 80px;
    border-bottom: 1px solid var(--border);
    position: relative;
  }
  .actu-crumb {
    font-family: var(--f-display); font-size: 11px; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted);
    display: flex; gap: 14px; align-items: center; justify-content: space-between;
    padding-bottom: 20px; border-bottom: 1px solid var(--border);
    margin-bottom: 48px;
  }
  .actu-crumb-left, .actu-crumb-right { display: flex; gap: 14px; align-items: center; }
  .actu-crumb a { color: var(--muted); transition: color 0.2s; }
  .actu-crumb a:hover { color: var(--text); }
  .actu-crumb .sep { color: var(--border); }
  .actu-crumb .here { color: var(--red); }
  .actu-crumb .live { color: var(--red); display: inline-flex; align-items: center; gap: 6px; }
  .actu-crumb .live::before {
    content: ''; width: 8px; height: 8px; background: var(--red);
    border-radius: 50%;
    animation: pulse 1.6s ease-in-out infinite;
  }
  @keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }

  .actu-stage {
    display: grid; grid-template-columns: 0.85fr 1.5fr; gap: 56px;
    align-items: stretch;
  }
  .actu-stage-left {
    display: flex; flex-direction: column; gap: 22px;
    padding-bottom: 8px;
    justify-content: center; align-items: center;
    text-align: center;
  }
  .actu-eyebrow {
    font-family: var(--f-display); font-size: 11px; font-weight: 700;
    letter-spacing: 0.22em; text-transform: uppercase; color: var(--red);
    display: inline-flex; align-items: center; gap: 14px;
  }
  .actu-eyebrow::before, .actu-eyebrow::after {
    content: ''; width: 28px; height: 1px; background: var(--red);
  }
  .actu-title {
    font-family: var(--f-display); font-weight: 900;
    font-size: clamp(28px, 3vw, 48px);
    line-height: 1.02; letter-spacing: -0.02em;
    color: var(--text); margin: 0;
    max-width: 22ch;
  }
  .actu-title em { color: var(--red); font-style: normal; }
  .actu-lead {
    font-family: var(--f-body); font-size: 16px; line-height: 1.55;
    color: var(--muted); max-width: 44ch;
  }
  .actu-lead strong { color: var(--text); font-weight: 600; }
  .actu-actions { display: flex; gap: 14px; align-items: center; justify-content: center; flex-wrap: wrap; margin-top: 4px; }
  .actu-cta {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--f-display); font-weight: 700;
    font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
    padding: 13px 22px;
    background: var(--text); color: var(--bg);
    transition: opacity 0.2s;
  }
  .actu-cta:hover { opacity: 0.85; }
  .actu-cta-ghost {
    font-family: var(--f-display); font-weight: 700;
    font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--text); padding: 13px 0;
  }
  .actu-cta-ghost::after { content: ' →'; }
  .actu-cta-ghost:hover { color: var(--red); }

  /* ── Carousel à droite (5 articles scrollables) ── */
  .actu-stage-right { display: flex; flex-direction: column; min-width: 0; }
  .actu-carousel {
    background: var(--text); color: var(--bg);
    padding: 24px;
    display: flex; flex-direction: column; gap: 18px;
    position: relative; flex: 1; min-width: 0;
  }
  .actu-carousel-head {
    display: flex; justify-content: space-between; align-items: center;
    gap: 14px; flex-wrap: wrap;
  }
  .actu-carousel-label {
    font-family: var(--f-display); font-size: 11px; font-weight: 700;
    letter-spacing: 0.2em; text-transform: uppercase; color: var(--red);
    display: inline-flex; align-items: center; gap: 10px;
  }
  .actu-carousel-counter {
    font-family: var(--f-display); font-size: 11px; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: rgba(242,237,228,0.5);
  }
  .actu-carousel-track {
    display: flex; gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 4px 4px 14px;
    margin: 0 -4px;
    scrollbar-width: thin;
    scrollbar-color: rgba(242,237,228,0.3) transparent;
  }
  .actu-carousel-track::-webkit-scrollbar { height: 4px; }
  .actu-carousel-track::-webkit-scrollbar-track { background: rgba(242,237,228,0.06); }
  .actu-carousel-track::-webkit-scrollbar-thumb {
    background: rgba(242,237,228,0.3); border-radius: 2px;
  }
  .actu-carousel-track::-webkit-scrollbar-thumb:hover { background: rgba(242,237,228,0.5); }

  .actu-slide {
    flex: 0 0 100%;
    scroll-snap-align: start;
    background: rgba(242,237,228,0.04);
    border: 1px solid rgba(242,237,228,0.12);
    padding: 20px;
    display: grid; grid-template-columns: 1.2fr 1fr; gap: 22px;
    align-items: center;
    transition: background 0.2s, border-color 0.2s;
    color: var(--bg);
    min-width: 0;
  }
  .actu-slide:hover {
    background: rgba(242,237,228,0.08);
    border-color: rgba(242,237,228,0.3);
  }
  .actu-slide-img {
    aspect-ratio: 16/9; background: #1A1814; position: relative;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    font-family: monospace; font-size: 11px; color: rgba(242,237,228,0.3);
  }
  .actu-slide-img::after {
    content: ''; position: absolute; inset: 0;
    background: repeating-linear-gradient(-45deg, transparent, transparent 12px, rgba(242,237,228,0.04) 12px, rgba(242,237,228,0.04) 13px);
  }
  .actu-slide-body {
    display: flex; flex-direction: column; gap: 12px; min-width: 0;
  }
  .actu-slide-cat {
    font-family: var(--f-display); font-size: 11px; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--red);
  }
  .actu-slide-ttl {
    font-family: var(--f-display); font-weight: 800;
    font-size: clamp(20px, 1.8vw, 26px); line-height: 1.2; letter-spacing: -0.01em;
    color: var(--bg);
  }
  .actu-slide-foot {
    font-family: var(--f-display); font-size: 11px; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: rgba(242,237,228,0.5);
    display: flex; justify-content: space-between; gap: 14px;
    padding-top: 14px; margin-top: 6px;
    border-top: 1px solid rgba(242,237,228,0.12);
  }
  .actu-slide-foot .read { color: var(--red); }

  @media (max-width: 700px) {
    .actu-slide { grid-template-columns: 1fr; }
  }

  .actu-carousel-nav { display: inline-flex; gap: 6px; }
  .actu-carousel-nav button {
    width: 32px; height: 32px;
    border: 1px solid rgba(242,237,228,0.3);
    background: transparent;
    color: var(--bg);
    font-family: var(--f-display); font-weight: 700; font-size: 16px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
    line-height: 1;
  }
  .actu-carousel-nav button:hover {
    background: var(--bg); color: var(--text); border-color: var(--bg);
  }
  .actu-carousel-nav button:disabled {
    opacity: 0.3; cursor: not-allowed;
  }

  /* responsive */
  @media (max-width: 1200px) {
    .gal-grid { grid-template-columns: repeat(2, 1fr); }
    .extras { grid-template-columns: 1fr; gap: 32px; }
  }
  @media (max-width: 1000px) {
    .actu-stage { grid-template-columns: 1fr; gap: 40px; }
  }
  @media (max-width: 768px) {
    .actu-hero { padding: 20px 20px 56px; }
    .actu-crumb { flex-direction: column; align-items: flex-start; gap: 8px; }
    .actu-carousel { padding: 18px; }
    .actu-slide { padding: 16px; gap: 14px; }
    .actu-slide-ttl { font-size: 17px; }
  }
  @media (max-width: 768px) {
    nav.site-nav { padding: 0 20px; }
    .nav-links { display: none; }
    .mast { padding: 40px 20px; }
    .mast-body { grid-template-columns: 1fr; gap: 24px; }
    .mast-icon { width: 72px; height: 72px; }
    .spec-row { grid-template-columns: 1fr 1fr; }
    .spec { padding: 16px !important; border-right: none; border-top: 1px solid var(--border); }
    .spec:first-child, .spec:nth-child(2) { border-top: none; }
    .spec:nth-child(2n) { border-left: 1px solid var(--border); }
    .main { padding: 40px 20px 56px; }
    .gal-grid { grid-template-columns: 1fr; }
    .extras { padding: 48px 20px; }
    .strip { padding: 48px 20px; }
    .g4::before { display: none; }
    .g4-body { grid-template-columns: 1fr; }
    .g4-left, .g4-right { padding: 48px 24px; }
    .g4-right { background: var(--text); padding-left: 24px; }
    .g4-foot { padding: 16px 20px; flex-direction: column; align-items: flex-start; }
  }

/* ==================================================================
   PAGE STYLES — extraits de article.html (article single + TOC + related)
   ==================================================================*/
  :root {
    --bg:      #F5F0E8;
    --bg2:     #EDE8DF;
    --bg3:     #E5DFD5;
    --border:  #CEC9C0;
    --text:    #0D0C0A;
    --muted:   #6A6560;
    --red:     oklch(0.62 0.22 25);
    --gold:    oklch(0.60 0.15 72);
    --nav-bg:  rgba(245,240,232,0.95);
    --f-display: 'Barlow Condensed', sans-serif;
    --f-body:    'Lora', Georgia, serif;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--f-body);
    font-size: 16px;
    line-height: 1.7;
  }
  a { color: inherit; text-decoration: none; }

  .logo-mark {
    display: inline-flex;
    align-items: center;
    gap: 0.32em;
    font-family: var(--f-display);
    font-weight: 900;
    font-size: 34px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    text-decoration: none;
    line-height: 1;
  }
  .logo-mark .logo-stars { height: 1em; width: auto; flex-shrink: 0; display: block; }
  .logo-mark .star-red  { fill: var(--red); }
  .logo-mark .star-gold { fill: var(--gold); }
  .logo-mark .logo-pro  { color: var(--text); }
  .logo-mark .logo-ia   { color: var(--red); }

  /* ── NAV ── */
  nav.site-nav {
    position: sticky;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: 64px;
    background: var(--nav-bg);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
  }
  .nav-links {
    display: flex; gap: 32px;
    list-style: none; align-items: center;
    margin: 0; padding: 0;
  }
  .nav-links > li { position: relative; list-style: none; }
  .nav-links a, .nav-links button.nav-trigger {
    font-family: var(--f-display);
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--muted); transition: color 0.2s;
    background: none; border: none; padding: 0; cursor: pointer;
    display: inline-flex; align-items: center; gap: 6px; height: 64px;
  }
  .nav-links a:hover,
  .nav-links button.nav-trigger:hover,
  .nav-links li.has-dropdown:hover > button.nav-trigger { color: var(--text); }
  .nav-trigger .chev {
    display: inline-block;
    border: solid currentColor; border-width: 0 1.5px 1.5px 0;
    padding: 2.5px; transform: rotate(45deg) translateY(-2px);
    transition: transform 0.2s;
  }
  .has-dropdown:hover .nav-trigger .chev,
  .has-dropdown:focus-within .nav-trigger .chev { transform: rotate(-135deg) translateY(2px); }
  .dropdown {
    position: absolute; top: 100%; left: 50%;
    transform: translateX(-50%) translateY(-8px);
    min-width: 260px;
    background: var(--bg);
    border: 1px solid var(--border);
    box-shadow: 0 12px 40px rgba(13,12,10,0.12);
    padding: 12px 0; margin: 0; list-style: none;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    z-index: 110;
  }
  .has-dropdown:hover > .dropdown, .has-dropdown:focus-within > .dropdown {
    opacity: 1; visibility: visible; pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
  .dropdown li { list-style: none; }
  .dropdown a {
    display: flex; align-items: center; gap: 12px;
    padding: 11px 20px; height: auto;
    color: var(--text); transition: background 0.15s, color 0.15s;
    width: 100%;
  }
  .dropdown a:hover { background: var(--bg2); color: var(--red); }
  .dropdown .dd-dot { width: 6px; height: 6px; background: var(--red); flex-shrink: 0; }
  .dropdown .dd-all {
    border-top: 1px solid var(--border);
    margin-top: 6px; padding-top: 14px;
    color: var(--muted); letter-spacing: 0.18em;
  }
  .dropdown .dd-all .dd-dot { background: var(--muted); }
  .dropdown .dd-all:hover .dd-dot { background: var(--red); }
  .nav-cta {
    font-family: var(--f-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 10px 18px;
    background: var(--red);
    color: var(--bg);
    border: none;
    cursor: pointer;
    transition: opacity 0.2s;
  }
  .nav-cta:hover { opacity: 0.85; }

  /* ── BREADCRUMB ── */
  .crumb {
    padding: 18px 48px;
    border-bottom: 1px solid var(--border);
    font-family: var(--f-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    display: flex;
    gap: 14px;
    align-items: center;
  }
  .crumb a { color: var(--muted); transition: color 0.2s; }
  .crumb a:hover { color: var(--text); }
  .crumb .sep { color: var(--border); }
  .crumb .here { color: var(--red); }

  /* ── HERO IMAGE FIRST ── */
  .art-hero {
    position: relative;
    margin: 32px 48px 0;
    aspect-ratio: 21/7;
    background: var(--bg3);
    overflow: hidden;
    border: 1px solid var(--border);
  }
  .art-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(-45deg, transparent, transparent 16px, rgba(0,0,0,0.03) 16px, rgba(0,0,0,0.03) 17px);
    pointer-events: none;
  }
  .art-hero .label {
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    font-family: monospace;
    font-size: 12px;
    color: rgba(0,0,0,0.4);
    text-align: center;
  }
  .art-hero-caption {
    max-width: none;
    margin: 0;
    padding: 14px 48px 32px;
    font-family: var(--f-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    display: flex;
    justify-content: space-between;
    gap: 24px;
    border-bottom: 1px solid var(--border);
  }

  /* ── TITLE BLOCK (now below hero) ── */
  .art-head {
    padding: 56px 48px 40px;
    margin: 0 auto;
    text-align: center;
  }
  .art-title {
    font-family: var(--f-display);
    font-weight: 800;
    font-size: clamp(56px, 6vw, 96px);
    line-height: 0.95;
    letter-spacing: -0.03em;
    margin: 0 0 28px;
    white-space: nowrap;
  }
  .art-title em { color: var(--red); font-style: normal; }
  .art-lede {
    font-family: var(--f-body);
    font-size: 22px;
    line-height: 1.5;
    color: var(--muted);
    max-width: 820px;
    margin: 0 auto;
  }
  .art-lede strong { color: var(--text); font-weight: 600; }

  /* ── BODY 3-COL ── */
  .art-body {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr) 260px;
    gap: 56px;
    max-width: none;
    margin: 0;
    padding: 32px 48px 80px;
    border-top: 1px solid var(--border);
  }
  .art-side {
    position: sticky;
    top: 96px;
    align-self: start;
  }
  .art-side-h {
    font-family: var(--f-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted);
    padding-bottom: 12px;
    border-bottom: 1px solid var(--text);
    margin-bottom: 14px;
  }
  .art-toc {
    list-style: none;
    display: flex; flex-direction: column;
    gap: 10px;
  }
  .art-toc a {
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 13px;
    color: var(--text);
    line-height: 1.3;
    letter-spacing: -0.005em;
    display: flex; gap: 8px;
    transition: color 0.2s;
  }
  .art-toc a:hover { color: var(--red); }
  .art-toc a.active { color: var(--red); }
  .art-toc .num { color: var(--muted); font-weight: 600; min-width: 18px; }
  .art-share {
    display: flex;
    gap: 6px;
    margin-top: 4px;
  }
  .art-share button {
    width: 40px; height: 40px;
    border: 1px solid var(--border);
    background: var(--bg);
    font-family: var(--f-display);
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    color: var(--text);
    transition: all 0.2s;
  }
  .art-share button:hover {
    background: var(--text);
    color: var(--bg);
    border-color: var(--text);
  }
  .art-side-news {
    font-family: var(--f-body);
    font-size: 13px;
    color: var(--muted);
    line-height: 1.55;
    margin: 0 0 14px;
  }
  .side-cta {
    width: 100%;
    padding: 12px;
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    background: var(--red);
    border: none;
    color: var(--bg);
    cursor: pointer;
    transition: opacity 0.2s;
  }
  .side-cta:hover { opacity: 0.9; }

  /* ── CONTENT ── */
  .art-content {
    font-family: var(--f-body);
    font-size: 18px;
    line-height: 1.75;
    color: var(--text);
  }
  .art-content > p:first-of-type::first-letter {
    font-family: var(--f-display);
    font-weight: 800;
    font-size: 96px;
    float: left;
    line-height: 0.85;
    margin: 8px 14px -4px 0;
    color: var(--red);
    letter-spacing: -0.04em;
  }
  .art-content p { margin: 0 0 22px; }
  .art-content h2 {
    font-family: var(--f-display);
    font-weight: 800;
    font-size: 36px;
    letter-spacing: -0.02em;
    line-height: 1.05;
    margin: 48px 0 18px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
  }
  .art-content h2 .num {
    color: var(--red);
    margin-right: 12px;
    font-family: monospace;
    font-size: 22px;
    letter-spacing: 0;
    vertical-align: middle;
  }
  .art-content h3 {
    font-family: var(--f-display);
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -0.01em;
    margin: 36px 0 12px;
  }
  .art-content blockquote {
    border-left: 4px solid var(--red);
    padding: 8px 0 8px 24px;
    margin: 32px 0;
    font-family: var(--f-display);
    font-weight: 800;
    font-size: 28px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text);
  }
  .art-content blockquote cite {
    display: block;
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    font-style: normal;
    margin-top: 12px;
  }
  .art-content ul { margin: 18px 0 22px; padding-left: 24px; }
  .art-content li { margin-bottom: 8px; }
  .art-content figure { margin: 40px 0; }
  .art-content figure .img {
    position: relative;
    aspect-ratio: 16/9;
    background: var(--bg3);
    overflow: hidden;
    border: 1px solid var(--border);
  }
  .art-content figure .img::after {
    content: '';
    position: absolute; inset: 0;
    background: repeating-linear-gradient(-45deg, transparent, transparent 16px, rgba(0,0,0,0.03) 16px, rgba(0,0,0,0.03) 17px);
  }
  .art-content figure .img .label {
    position: absolute; left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    font-family: monospace; font-size: 11px; color: rgba(0,0,0,0.4);
  }
  .art-content figcaption {
    font-family: var(--f-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 12px;
  }
  .key-stat {
    background: var(--bg2);
    border-left: 4px solid var(--gold);
    padding: 22px 26px;
    margin: 28px 0;
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 22px;
    align-items: center;
  }
  .key-stat .num {
    font-family: var(--f-display);
    font-weight: 800;
    font-size: 60px;
    line-height: 0.9;
    letter-spacing: -0.04em;
    color: var(--red);
  }
  .key-stat .lbl {
    font-family: var(--f-display);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--text);
    line-height: 1.4;
  }
  .art-end {
    margin-top: 56px;
    padding-top: 28px;
    border-top: 2px solid var(--text);
  }
  .art-end-mark {
    font-family: var(--f-display);
    font-weight: 800;
    font-size: 24px;
    color: var(--red);
    letter-spacing: 0.4em;
    margin-bottom: 14px;
  }
  .art-end-note {
    font-family: var(--f-body);
    font-size: 14px;
    color: var(--muted);
    line-height: 1.55;
  }
  .art-end-note strong { color: var(--text); font-weight: 600; }

  /* ── RELATED ── */
  .related {
    padding: 72px 48px;
    background: var(--bg2);
    border-top: 1px solid var(--border);
  }
  .related-h {
    font-family: var(--f-display);
    font-weight: 800;
    font-size: 36px;
    letter-spacing: -0.02em;
    line-height: 1;
    margin: 0 0 32px;
  }
  .related-h em { color: var(--red); font-style: normal; }
  .related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .rel-card {
    background: var(--bg);
    border: 1px solid var(--border);
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    cursor: pointer;
    transition: background 0.2s;
  }
  .rel-card:hover { background: var(--bg2); }
  .rel-thumb {
    position: relative;
    aspect-ratio: 16/9;
    background: var(--bg3);
    overflow: hidden;
  }
  .rel-thumb::after {
    content: '';
    position: absolute; inset: 0;
    background: repeating-linear-gradient(-45deg, transparent, transparent 16px, rgba(0,0,0,0.03) 16px, rgba(0,0,0,0.03) 17px);
  }
  .rel-thumb .label {
    position: absolute; left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    font-family: monospace; font-size: 11px; color: rgba(0,0,0,0.4);
  }
  .rel-cat {
    font-family: var(--f-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--red);
  }
  .rel-ttl {
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.01em;
    line-height: 1.2;
  }
  .rel-mt {
    font-family: var(--f-display);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
  }

  /* ── FOOTER (V4 split diagonal) ── */
  .g4 { position: relative; background: var(--bg); border-top: 1px solid var(--border); }
  .g4::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--text);
    clip-path: polygon(42% 0, 100% 0, 100% 100%, 50% 100%);
    z-index: 0;
  }
  .g4-body { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; }
  .g4-left { padding: 56px 56px 32px; display: flex; flex-direction: column; gap: 28px; }
  .g4-left .logo-mark { font-size: 56px; }
  .g4-headline {
    font-family: var(--f-display);
    font-weight: 800;
    font-size: clamp(36px, 3.4vw, 52px);
    line-height: 1;
    letter-spacing: -0.02em;
    margin: 24px 0 16px;
    max-width: 480px;
    color: var(--text);
  }
  .g4-headline em { color: var(--red); font-style: normal; }
  .g4-nav {
    position: static;
    display: flex; flex-direction: row; flex-wrap: wrap;
    align-items: center; justify-content: flex-start;
    gap: 8px 28px;
    height: auto;
    padding: 16px 0 0;
    border-top: 2px solid var(--text);
    background: transparent;
  }
  .g4-nav a {
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text);
    transition: color 0.2s;
  }
  .g4-nav a:hover { color: var(--red); }
  .g4-right { color: var(--bg); padding: 56px 56px 32px 100px; display: flex; flex-direction: column; justify-content: space-between; gap: 28px; }
  .g4-right .col-h {
    font-family: var(--f-display); font-size: 11px; font-weight: 700;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: rgba(242,237,228,0.5);
    margin-bottom: 12px;
  }
  .g4-nl-h {
    font-family: var(--f-display); font-weight: 800;
    font-size: clamp(28px, 2.4vw, 36px);
    line-height: 1.1; letter-spacing: -0.02em;
    color: var(--bg);
    margin: 0 0 18px;
  }
  .g4-nl-row { display: flex; background: var(--bg); border: 1px solid var(--bg); }
  .g4-nl-row input {
    flex: 1; border: none; background: transparent;
    font-family: var(--f-display); font-size: 15px;
    padding: 14px 16px; outline: none;
  }
  .g4-nl-row button {
    background: var(--red); border: none; color: var(--bg);
    padding: 0 22px;
    font-family: var(--f-display); font-weight: 700;
    font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase;
    cursor: pointer;
  }
  .g4-right-bottom { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; }
  .g4-stats {
    font-family: var(--f-display); font-weight: 800;
    font-size: 36px; color: var(--red);
    letter-spacing: -0.02em; line-height: 1;
  }
  .g4-stats .unit { color: var(--bg); font-size: 20px; }
  .g4-stats small {
    display: block;
    font-size: 10px; font-weight: 700;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: rgba(242,237,228,0.6);
    margin-top: 8px;
  }
  .g4-socials { display: flex; gap: 6px; }
  .g4-socials .social-btn {
    width: 36px; height: 36px;
    border: 1px solid rgba(242,237,228,0.3);
    background: transparent; color: var(--bg);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--f-display); font-size: 13px; font-weight: 700;
    text-decoration: none; transition: all 0.2s;
  }
  .g4-socials .social-btn:hover {
    background: var(--bg); color: var(--text); border-color: var(--bg);
  }
  .g4-foot {
    position: relative; z-index: 2;
    padding: 18px 56px; background: var(--bg);
    border-top: 1px solid var(--border);
    display: flex; justify-content: space-between; align-items: center;
    gap: 24px; flex-wrap: wrap;
    font-family: var(--f-display);
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--muted);
  }
  .g4-foot .legal { display: flex; gap: 16px; flex-wrap: wrap; }
  .g4-foot .legal a { color: var(--muted); transition: color 0.2s; }
  .g4-foot .legal a:hover { color: var(--text); }

  /* ── RESPONSIVE ── */
  @media (max-width: 1100px) {
    .art-body { grid-template-columns: 1fr; max-width: 720px; }
    .art-side { position: static; }
    .art-side + .art-content { order: -1; }
  }
  @media (max-width: 768px) {
    nav.site-nav { padding: 0 20px; }
    .nav-links { display: none; }
    .crumb { padding: 16px 20px; flex-wrap: wrap; gap: 8px; }
    .art-hero { margin: 16px 20px 0; }
    .art-hero-caption { padding: 12px 20px 24px; }
    .art-head { padding: 40px 20px; }
    .art-title { white-space: normal; font-size: clamp(40px, 9vw, 64px); }
    .art-body { padding: 24px 20px 56px; }
    .related { padding: 56px 20px; }
    .related-grid { grid-template-columns: 1fr; }
    .g4::before { clip-path: none; display: none; }
    .g4-body { grid-template-columns: 1fr; }
    .g4-left, .g4-right { padding: 48px 24px; }
    .g4-right { background: var(--text); padding-left: 24px; }
    .g4-foot { padding: 16px 20px; flex-direction: column; align-items: flex-start; }
  }
