/* ============================================================
   PRV Concept — feuille de style principale
   Palette logo : noir chaud · rouge · orange · blanc os
   Type : Saira Condensed (display) · Archivo (corps) · JetBrains Mono (techniques)
   ============================================================ */

:root {
  --bg:        #100E0C;   /* noir chaud */
  --bg-2:      #16120F;   /* carte / section alternée */
  --bg-3:      #0B0907;   /* bandeaux profonds */
  --ink:       #F2EEE6;   /* blanc os */
  --ink-soft:  #C2B9AD;   /* paragraphe */
  --ink-mut:   #9C938A;   /* labels secondaires */
  --ink-dim:   #8A8178;   /* texte mono discret */
  --orange:    #ED7D2B;   /* accent / highlights / CTA */
  --red:       #E0322A;   /* accent primaire chaud */
  --line:      rgba(242,238,230,.09);
  --line-soft: rgba(242,238,230,.06);
  --max:       1240px;
}

* { box-sizing: border-box; }
html, body {
  /* Empêche le "font boosting" de Chrome Android qui gonfle le texte
     et fait déborder la mise en page ; 100% (pas none) garde le pinch-zoom. */
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: hidden;
}
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Archivo', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
/* Filet de sécurité : un mot trop long casse, pas la mise en page. */
h1, h2, h3, h4, p { overflow-wrap: anywhere; }

/* Grain filmique discret — ambiance archive/atelier. Statique (un seul paint),
   par-dessus tout, sans bloquer les clics. */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 300; pointer-events: none;
  opacity: .06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='150' height='150'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
::selection { background: var(--orange); color: #0E0C0A; }

.wrap { max-width: var(--max); margin: 0 auto; }

/* Reveal-on-scroll */
[data-reveal] {
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1);
}
[data-reveal].is-hidden { opacity: 0; transform: translateY(22px); }

/* Type helpers */
.display { font-family: 'Saira Condensed', sans-serif; }
.mono    { font-family: 'JetBrains Mono', monospace; }

/* Eyebrow (label technique avec trait) */
.eyebrow {
  display: inline-flex; align-items: center; gap: 11px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--orange);
}
.eyebrow .bar { width: 26px; height: 1px; background: var(--red); display: inline-block; }

/* Section heading */
.sec-h {
  font-family: 'Saira Condensed', sans-serif;
  font-weight: 800; font-size: 48px; line-height: 1;
  letter-spacing: -.3px; text-transform: uppercase;
  margin: 0; color: var(--ink);
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'Saira Condensed', sans-serif; font-weight: 700;
  text-transform: uppercase; font-size: 16px; letter-spacing: .8px;
  padding: 14px 26px; border-radius: 7px; cursor: pointer;
  border: 1px solid transparent; transition: transform .18s ease, filter .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-red    { background: var(--red);    color: #fff; }
.btn-red:hover { filter: brightness(1.08); }
.btn-orange { background: var(--orange); color: var(--bg); }
.btn-orange:hover { filter: brightness(1.06); }
.btn-ghost  { border-color: rgba(242,238,230,.3); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-fb     { background: #1877F2; color: #fff; }
.btn-fb:hover { filter: brightness(1.08); }
.btn svg { display: block; }

/* ============ HEADER ============ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(16,14,12,.86);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header .bar-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 28px; gap: 20px;
}
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { height: 34px; display: block; }
.nav-links {
  display: flex; gap: 24px;
  font-family: 'Saira Condensed', sans-serif; font-weight: 600;
  font-size: 15px; letter-spacing: .6px; text-transform: uppercase;
  color: #C9C0B5; white-space: nowrap;
}
.nav-links a { position: relative; transition: color .15s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
/* Soulignement orange qui se déploie de gauche à droite au survol (desktop) */
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -5px; height: 2px;
  background: var(--orange); transform: scaleX(0); transform-origin: left;
  transition: transform .26s cubic-bezier(.2,.7,.2,1);
}
.nav-links a:hover::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.lang-toggle {
  background: none; border: 1px solid rgba(242,238,230,.18); border-radius: 6px;
  padding: 6px 10px; cursor: pointer; font-family: 'JetBrains Mono', monospace;
  font-size: 12px; color: var(--ink-mut);
}
.lang-toggle .on { color: var(--ink); font-weight: 600; }
.pill {
  font-family: 'Saira Condensed', sans-serif; font-weight: 700;
  text-transform: uppercase; font-size: 14px; letter-spacing: .8px;
  padding: 9px 17px; border-radius: 6px; border: 1px solid transparent;
  transition: filter .18s ease, background .18s ease;
}
.pill-ghost { border: 1px solid rgba(242,238,230,.25); color: var(--ink); }
.pill-ghost:hover { background: rgba(242,238,230,.08); }
.pill-orange { background: var(--orange); color: var(--bg); }
.pill-orange:hover { filter: brightness(1.06); }
.pill-red { background: var(--red); color: #fff; }
.pill-red:hover { filter: brightness(1.08); }
.pill-fb { display: inline-flex; align-items: center; justify-content: center; padding: 11px 13px; background: #1877F2; color: #fff; }
.pill-fb svg { display: block; }
.pill-fb:hover { filter: brightness(1.08); }

/* Hamburger — visible uniquement en mode compact (≤1024) */
.nav-toggle { display: none; flex-direction: column; align-items: center; justify-content: center; gap: 4px; width: 38px; height: 38px; padding: 0; background: none; border: 1px solid rgba(242,238,230,.18); border-radius: 6px; cursor: pointer; }
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .22s ease, opacity .22s ease; }
.site-header.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.site-header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-header.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
/* Forum/Boutique dans le menu déroulant : masqués sauf sur petits écrans */
.nav-extra { display: none; }

/* ============ HERO ============ */
.hero { position: relative; background: var(--bg); overflow: hidden; }
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(237,125,43,.085) 1px, transparent 1px),
    linear-gradient(90deg, rgba(237,125,43,.085) 1px, transparent 1px);
  background-size: 50px 50px;
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 74% 52%, #000 0%, transparent 72%);
          mask-image: radial-gradient(ellipse 70% 80% at 74% 52%, #000 0%, transparent 72%);
}
.hero-inner {
  position: relative; max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 20px;
  align-items: center; padding: 70px 28px 64px; min-height: 600px;
}
.hero-copy { position: relative; z-index: 3; }
.hero-emblem {
  height: 88px; display: block; margin: 0 0 24px -4px;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,.45));
}
.hero-eyebrow { white-space: nowrap; }
/* Deux lignes empilées : héritage 1966 (discret) au-dessus de l'asso 2009 */
.hero-eyebrows { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; margin-bottom: 22px; }
.hero-origin { color: var(--ink-mut); }
.hero-origin .bar { background: var(--orange); }
.h1 {
  font-family: 'Saira Condensed', sans-serif; font-weight: 800;
  font-size: 82px; line-height: .9; letter-spacing: -.5px;
  text-transform: uppercase; margin: 0; color: var(--ink);
}
.h1 .accent { color: var(--orange); }
.hero-lead { color: var(--ink-soft); font-size: 17px; line-height: 1.62; margin: 24px 0 0; max-width: 460px; }
.hero-cta { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 36px; margin-top: 48px; }
.hero-stats .stat + .stat { border-left: 1px solid rgba(242,238,230,.14); padding-left: 36px; }
.stat-n { font-family: 'Saira Condensed', sans-serif; font-weight: 800; font-size: 28px; line-height: 1; }
.stat-n.orange { color: var(--orange); }
.stat-l { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 1.5px; color: var(--ink-mut); margin-top: 5px; }

/* Hero engine image + technical callouts */
.hero-img { position: relative; z-index: 2; height: 540px; }
.hero-img .glow { position: absolute; inset: 0; background: radial-gradient(circle at 54% 50%, rgba(237,125,43,.30), transparent 60%); }
.hero-img .engine {
  position: absolute; right: -30px; top: 50%; transform: translateY(-50%);
  height: 560px; max-width: none; filter: drop-shadow(0 30px 50px rgba(0,0,0,.55));
}
/* Vidéo du moteur (rotation) : carré dont les bords se fondent dans le fond sombre */
.hero-img .engine-video {
  position: absolute; right: -56px; top: 50%; transform: translateY(-50%);
  width: 680px; height: 680px; max-width: none; z-index: 2;
  object-fit: cover; pointer-events: none;
  /* Moteur détouré (WebM alpha) : fond transparent → le fond du site, le
     quadrillage et le halo réapparaissent à travers. Aucun masque nécessaire. */
}
.hero-img .deg90 {
  position: absolute; left: -6px; top: 6px;
  font-family: 'Saira Condensed', sans-serif; font-weight: 900; font-size: 130px;
  line-height: .8; color: transparent;
  -webkit-text-stroke: 1.5px rgba(237,125,43,.26); z-index: 1;
}
.callout { position: absolute; display: flex; align-items: center; gap: 9px; z-index: 4; }
.callout .tag {
  font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--ink);
  background: rgba(16,14,12,.78); border: 1px solid rgba(237,125,43,.4);
  padding: 4px 8px; border-radius: 4px; white-space: nowrap;
}
.callout .tag.multi { padding: 5px 9px; line-height: 1.35; text-align: right; }
.callout .lead-line { width: 34px; height: 1px; background: rgba(237,125,43,.6); }
.callout .dot { position: relative; width: 7px; height: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 3px rgba(237,125,43,.22); }
.callout-turbo { top: 46px; right: 200px; }
.callout-z7u   { top: 251px; right: 250px; }
.hero-engine-link {
  position: absolute; left: 50%; bottom: 6px; transform: translateX(-50%); z-index: 6;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Saira Condensed', sans-serif; font-weight: 700; text-transform: uppercase;
  font-size: 15px; letter-spacing: .8px; padding: 11px 22px;
  background: rgba(11,9,7,.82); border: 1px solid rgba(237,125,43,.5); border-radius: 8px;
  color: var(--orange); backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px); white-space: nowrap;
  transition: background .18s ease;
}
.hero-engine-link:hover { background: rgba(237,125,43,.15); }

/* Marquee strip */
.strip {
  position: relative; z-index: 3;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: rgba(0,0,0,.25); overflow: hidden;
}
.strip-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; gap: 30px; padding: 13px 28px;
  font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: 1.5px;
  color: var(--ink-dim); flex-wrap: wrap;
}
.strip-inner .hi { color: var(--orange); }
.strip-inner .sep { color: #3a352f; }

/* ============ SECTIONS ============ */
section { scroll-margin-top: 80px; }
.section { padding: 96px 28px; }
.section.alt { background: var(--bg-2); border-top: 1px solid var(--line-soft); }

/* Intro / alliance */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.lead-p { color: #C8BFB3; font-size: 17px; line-height: 1.7; margin: 0 0 18px; }
.lead-p:last-child { margin-bottom: 0; }
.sec-h.lg { font-size: 52px; }

/* Manufacturers / cards */
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.sec-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; flex-wrap: wrap; margin-bottom: 48px;
}
.sec-head .intro { color: var(--ink-mut); font-size: 15px; line-height: 1.6; max-width: 380px; margin: 0; }

.card {
  background: var(--bg); border: 1px solid rgba(242,238,230,.08);
  border-radius: 14px; overflow: hidden;
}
.card.red { border-color: rgba(224,50,42,.22); }
.card-media { position: relative; height: 190px; overflow: hidden; }
.card-media .scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(16,14,12,.92), rgba(16,14,12,0) 58%); pointer-events: none; }
.card-media .marque {
  position: absolute; left: 18px; bottom: 14px;
  font-family: 'Saira Condensed', sans-serif; font-weight: 800; font-size: 40px;
  text-transform: uppercase; color: var(--ink); letter-spacing: .5px; pointer-events: none;
}
.card-body { padding: 22px; }
.card-kicker { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--orange); letter-spacing: 1.5px; margin-bottom: 10px; }
.card-body p { color: #B6ADA1; font-size: 14.5px; line-height: 1.6; margin: 0; }

/* Bandeau logo de marque (marques fondatrices) */
.card-logo { width: 100%; height: 100%; background: #fff; display: flex; align-items: center; justify-content: center; padding: 26px; }
.card-logo img { display: block; max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; transition: transform .5s cubic-bezier(.2,.7,.2,1); }
.card:hover .card-logo img { transform: scale(1.07); }

/* Média de carte : photo réelle ou placeholder « à venir » (non interactif) */
.media-photo { display: block; width: 100%; height: 100%; object-fit: cover; }
/* Cadrage vertical de l'image dans son cadre (object-fit:cover) */
.media-photo.up   { object-position: center 72%; }  /* remonte l'image (montre plus bas) */
.media-photo.down { object-position: center 28%; }  /* descend l'image (montre plus haut) */
.media-empty {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 12px; overflow: hidden;
  background: repeating-linear-gradient(135deg, #1c1814 0 11px, #181410 11px 22px);
  font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: .5px; color: #6f675d;
}

/* ============ TIMELINE ============ */
.timeline-wrap { max-width: 1040px; margin: 0 auto; }
.timeline-head { text-align: center; margin-bottom: 56px; }
.timeline-head .eyebrow { margin-bottom: 16px; }
.tl-row { display: flex; gap: 22px; align-items: stretch; }
.tl-year {
  width: 92px; flex-shrink: 0; text-align: right;
  font-family: 'Saira Condensed', sans-serif; font-weight: 800; font-size: 34px;
  line-height: 1; padding-top: 2px; color: var(--ink);
}
.tl-year.hl { color: var(--orange); }
.tl-rail { width: 34px; flex-shrink: 0; position: relative; }
.tl-rail .line { position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; transform: translateX(-50%); background: linear-gradient(var(--orange), rgba(237,125,43,.25)); }
.tl-rail.last .line { bottom: auto; height: 14px; }
.tl-rail .node { position: absolute; left: 50%; top: 6px; transform: translateX(-50%); width: 13px; height: 13px; border-radius: 50%; background: var(--bg); border: 2px solid var(--orange); box-shadow: 0 0 0 4px rgba(237,125,43,.12); }
.tl-body { flex: 1; padding-bottom: 34px; }
.tl-row.last .tl-body { padding-bottom: 0; }
.tl-body h3 { font-family: 'Saira Condensed', sans-serif; font-weight: 700; font-size: 24px; text-transform: uppercase; letter-spacing: .3px; margin: 0 0 7px; color: var(--ink); }
.tl-body p { color: #A89F94; font-size: 15px; line-height: 1.62; margin: 0; max-width: 640px; }

/* ============ COMMUNITY ============ */
.comm-head { margin-bottom: 46px; }
.comm-head .sec-h { max-width: 640px; }
.tile { background: var(--bg-2); border: 1px solid rgba(242,238,230,.08); border-radius: 14px; padding: 26px; }
.tile .num { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--orange); letter-spacing: 1.5px; margin-bottom: 12px; }
.tile h3 { font-family: 'Saira Condensed', sans-serif; font-weight: 700; font-size: 24px; text-transform: uppercase; margin: 0 0 8px; color: var(--ink); }
.tile p { color: #A89F94; font-size: 14.5px; line-height: 1.6; margin: 0; }

.fb-banner {
  margin-top: 20px; display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap; background: var(--bg-2);
  border: 1px solid rgba(242,238,230,.1); border-radius: 14px; padding: 22px 26px;
  transition: border-color .18s ease;
}
.fb-banner:hover { border-color: rgba(237,125,43,.4); }
.fb-banner .left { display: flex; align-items: center; gap: 18px; }
.fb-banner .glyph { flex-shrink: 0; width: 48px; height: 48px; border-radius: 11px; background: #1877F2; display: flex; align-items: center; justify-content: center; }
.fb-banner .t { font-family: 'Saira Condensed', sans-serif; font-weight: 700; font-size: 22px; text-transform: uppercase; letter-spacing: .3px; color: var(--ink); }
.fb-banner .s { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--ink-dim); margin-top: 3px; letter-spacing: .5px; }
.fb-banner .go {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'Saira Condensed', sans-serif; font-weight: 700; text-transform: uppercase;
  font-size: 15px; letter-spacing: .8px; padding: 12px 22px;
  background: var(--orange); border-radius: 7px; color: var(--bg); white-space: nowrap;
}

/* ============ FORUM PROMO ============ */
.forum {
  position: relative; background: var(--bg-3); overflow: hidden;
  border-top: 1px solid var(--line-soft);
}
.forum .grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(237,125,43,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(237,125,43,.08) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(ellipse 60% 100% at 20% 50%, #000, transparent 70%);
          mask-image: radial-gradient(ellipse 60% 100% at 20% 50%, #000, transparent 70%);
}
.forum-inner {
  position: relative; max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 48px;
  align-items: center; padding: 80px 28px;
}
.forum-inner .sec-h { font-size: 50px; line-height: .98; margin: 0 0 18px; }
.forum-inner .lead { color: var(--ink-soft); font-size: 16.5px; line-height: 1.68; margin: 0 0 28px; max-width: 540px; }
.forum-cards { display: flex; flex-direction: column; gap: 12px; }
.forum-card {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--bg-2); border: 1px solid rgba(242,238,230,.1);
  border-radius: 10px; padding: 15px 18px; transition: border-color .18s ease, transform .18s ease;
}
.forum-card:hover { border-color: rgba(237,125,43,.4); transform: translateX(4px); }
.forum-card .ct { font-family: 'Saira Condensed', sans-serif; font-weight: 700; font-size: 18px; text-transform: uppercase; color: var(--ink); }
.forum-card .cs { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--ink-dim); margin-top: 2px; }
.forum-card .arrow { font-family: 'Saira Condensed', sans-serif; font-weight: 800; font-size: 22px; color: var(--orange); }

/* ============ SHOP PROMO ============ */
.shop-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.product { background: var(--bg-2); border: 1px solid rgba(242,238,230,.08); border-radius: 12px; overflow: hidden; transition: transform .18s ease, border-color .18s ease; }
.product:hover { transform: translateY(-3px); border-color: rgba(237,125,43,.3); }
.product .media { height: 150px; background: repeating-linear-gradient(135deg, #1c1814 0 11px, #181410 11px 22px); display: flex; align-items: center; justify-content: center; }
.product .media span { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: #6f675d; }
.product .pb { padding: 16px; }
.product .pt { font-family: 'Saira Condensed', sans-serif; font-weight: 700; font-size: 18px; text-transform: uppercase; color: var(--ink); }
.product .ps { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--orange); margin-top: 6px; }

/* ============ FOOTER ============ */
.site-footer { background: var(--bg-3); border-top: 1px solid var(--line); padding: 64px 28px 40px; }
.footer-top {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: start;
  padding-bottom: 44px; border-bottom: 1px solid rgba(242,238,230,.08);
}
.footer-brand img { height: 44px; display: block; margin-bottom: 20px; }
.footer-brand .slogan { font-family: 'Saira Condensed', sans-serif; font-weight: 700; font-size: 24px; text-transform: uppercase; letter-spacing: .5px; color: var(--ink); }
.footer-brand p { color: var(--ink-dim); font-size: 14px; line-height: 1.6; margin: 14px 0 0; max-width: 420px; }
.footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.footer-cols .ch { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 1.5px; color: var(--orange); margin-bottom: 14px; }
.footer-cols .links { display: flex; flex-direction: column; gap: 9px; font-family: 'Saira Condensed', sans-serif; font-weight: 600; font-size: 16px; text-transform: uppercase; color: var(--ink-soft); }
.footer-cols .links a { display: inline-flex; align-items: center; gap: 8px; transition: color .15s ease; }
.footer-cols .links a:hover { color: var(--ink); }
.footer-legal {
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  padding-top: 22px; font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 1px; color: #6f675d;
}

/* ============================================================
   PAGES INTERNES (Histoire · Moteurs)
   ============================================================ */

/* Lien actif dans la nav (page courante) */
.nav-links a.current { color: var(--ink); border-bottom: 2px solid var(--orange); padding-bottom: 3px; }

/* Fil d'ariane */
.crumb {
  display: inline-flex; align-items: center; gap: 11px;
  font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--orange); margin-bottom: 22px;
}
.crumb a { color: var(--ink-mut); transition: color .15s ease; }
.crumb a:hover { color: var(--ink); }
.crumb .slash { color: #4a443d; }

/* Hero de page interne */
.page-hero { position: relative; background: var(--bg); overflow: hidden; border-bottom: 1px solid rgba(242,238,230,.07); }
.page-hero .grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(237,125,43,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(237,125,43,.07) 1px, transparent 1px);
  background-size: 50px 50px;
  -webkit-mask-image: radial-gradient(ellipse 80% 90% at 30% 30%, #000, transparent 72%);
          mask-image: radial-gradient(ellipse 80% 90% at 30% 30%, #000, transparent 72%);
}
.page-hero-inner { position: relative; max-width: 1040px; margin: 0 auto; padding: 72px 28px 64px; }
.page-h1 {
  font-family: 'Saira Condensed', sans-serif; font-weight: 800; font-size: 86px;
  line-height: .9; letter-spacing: -.5px; text-transform: uppercase; margin: 0; color: var(--ink);
}
.page-lead { color: var(--ink-soft); font-size: 18px; line-height: 1.65; margin: 26px 0 0; max-width: 600px; }
.page-stats { display: flex; gap: 34px; margin-top: 40px; flex-wrap: wrap; }
.page-stats .stat + .stat { border-left: 1px solid rgba(242,238,230,.14); padding-left: 34px; }
.page-stats .stat-n { font-size: 30px; }

/* Récit / chapitres */
.narrative { max-width: 1040px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.chapter {
  display: grid; grid-template-columns: 120px 1fr; gap: 34px;
  padding: 36px 0; border-top: 1px solid var(--line);
}
.chapter.last { border-bottom: 1px solid var(--line); }
.chapter .yearcol { position: sticky; top: 96px; align-self: start; }
.chapter .yearcol .y { font-family: 'Saira Condensed', sans-serif; font-weight: 800; font-size: 44px; line-height: .9; color: var(--ink); }
.chapter .yearcol .y.orange { color: var(--orange); }
.chapter .yearcol .y.red { color: var(--red); }
.chapter .yearcol .lbl { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 1.5px; color: var(--ink-dim); margin-top: 6px; }
.chapter h2 { font-family: 'Saira Condensed', sans-serif; font-weight: 700; font-size: 32px; text-transform: uppercase; letter-spacing: .2px; margin: 0 0 14px; color: var(--ink); }
.chapter .p1 { color: #C8BFB3; font-size: 17px; line-height: 1.72; margin: 0; }
.chapter .p2 { color: #A89F94; font-size: 15px; line-height: 1.7; margin: 16px 0 0; }
.chapter blockquote { margin: 22px 0 0; padding: 16px 0 16px 22px; border-left: 3px solid var(--red); }
.chapter blockquote p { font-family: 'Saira Condensed', sans-serif; font-weight: 600; font-size: 24px; line-height: 1.25; color: var(--ink); margin: 0; text-transform: uppercase; letter-spacing: .2px; }

/* Planches d'archives (style parchemin) */
.plates { display: flex; flex-wrap: wrap; gap: 18px; padding: 14px 0 30px 154px; }
.plates.single { max-width: 400px; }
.plate { margin: 0; width: 300px; background: #ECE5D6; border: 1px solid #d8cfb8; border-radius: 10px; padding: 12px; }
.plates.single .plate { width: 100%; }
.plate .frame { background: #000; border-radius: 4px; overflow: hidden; }
.plate .frame.light { background: #fff; }
.plate img { width: 100%; display: block; filter: contrast(1.05); }
.plate .frame.light img { filter: none; }
.plate figcaption { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: #5a5346; letter-spacing: .5px; margin-top: 10px; }

/* Bandeau CTA bas de page */
.cta-band { background: var(--bg-2); border-top: 1px solid var(--line-soft); padding: 72px 28px; }
.cta-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.cta-inner h2 { font-family: 'Saira Condensed', sans-serif; font-weight: 800; font-size: 40px; text-transform: uppercase; letter-spacing: -.2px; margin: 0; color: var(--ink); }
.cta-inner p { color: var(--ink-mut); font-size: 16px; margin: 10px 0 0; max-width: 520px; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Footer compact (pages internes) */
.footer-slim { background: var(--bg-3); border-top: 1px solid var(--line); padding: 40px 28px; }
.footer-slim .inner { max-width: var(--max); margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap; }
.footer-slim img { height: 34px; display: block; }
.footer-slim .slogan { font-family: 'Saira Condensed', sans-serif; font-weight: 700; font-size: 18px; text-transform: uppercase; letter-spacing: .5px; color: var(--ink-soft); }
.footer-slim .copy { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 1px; color: #6f675d; }
.footer-slim .credit { color: #8a8278; transition: color .18s ease; }
.footer-slim .credit:hover { color: var(--orange); }

/* ---- Page Moteurs ---- */
.eng-hero-inner { position: relative; max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1.05fr .95fr; gap: 20px; align-items: center; padding: 62px 28px 56px; }
.eng-hero-inner .h1 { font-size: 80px; }
.chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 28px; }
.chip { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: #D8CFC4; border: 1px solid rgba(242,238,230,.16); border-radius: 6px; padding: 7px 12px; }
.chip.hl { border-color: rgba(237,125,43,.4); }
.eng-hero-img { position: relative; height: 420px; }
.eng-hero-img .glow { position: absolute; inset: 0; background: radial-gradient(circle at 54% 50%, rgba(237,125,43,.28), transparent 60%); }
.eng-hero-img .engine { position: absolute; right: -20px; top: 50%; transform: translateY(-50%); height: 440px; max-width: none; filter: drop-shadow(0 26px 46px rgba(0,0,0,.5)); }
.eng-hero-img .deg90 { position: absolute; left: -4px; bottom: 18px; font-family: 'Saira Condensed', sans-serif; font-weight: 900; font-size: 110px; line-height: .8; color: transparent; -webkit-text-stroke: 1.5px rgba(237,125,43,.26); }

.arch-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.arch-grid .sec-h { font-size: 44px; margin: 0 0 16px; }
.arch-grid .p1 { color: #C8BFB3; font-size: 16.5px; line-height: 1.7; margin: 0 0 16px; }
.arch-grid .p2 { color: #A89F94; font-size: 15px; line-height: 1.7; margin: 0; }
.arch-card { position: relative; background: var(--bg-2); border: 1px solid rgba(242,238,230,.1); border-radius: 16px; padding: 34px; display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 300px; }
.arch-card .big { font-family: 'Saira Condensed', sans-serif; font-weight: 900; font-size: 120px; line-height: .8; color: var(--orange); }
.arch-card .cap { font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: 2px; color: var(--ink-mut); margin-top: 14px; text-transform: uppercase; }
.arch-card .row { display: flex; gap: 28px; margin-top: 26px; padding-top: 22px; border-top: 1px solid rgba(242,238,230,.1); width: 100%; justify-content: center; }
.arch-card .row .cell { text-align: center; }
.arch-card .row .n { font-family: 'Saira Condensed', sans-serif; font-weight: 800; font-size: 26px; color: var(--ink); }
.arch-card .row .n.orange { color: var(--orange); }
.arch-card .row .l { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 1px; color: var(--ink-dim); margin-top: 3px; }

.gen-wrap { max-width: 1100px; margin: 0 auto; }
.gen-head { text-align: center; margin-bottom: 44px; }
.gen-head .eyebrow { margin-bottom: 14px; }
.gen-head .sec-h { font-size: 46px; }
.gen-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.gen-card { background: var(--bg); border: 1px solid rgba(242,238,230,.1); border-radius: 16px; padding: 30px; }
.gen-card.hl { border-color: rgba(237,125,43,.3); }
.gen-card .top { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 18px; }
.gen-card .gen { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 1.5px; color: var(--ink-mut); }
.gen-card.hl .gen { color: var(--orange); }
.gen-card .years { font-family: 'Saira Condensed', sans-serif; font-weight: 800; font-size: 24px; color: var(--ink); }
.gen-card h3 { font-family: 'Saira Condensed', sans-serif; font-weight: 700; font-size: 26px; text-transform: uppercase; margin: 0 0 14px; color: var(--ink); }
.gen-card ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.gen-card li { display: flex; gap: 10px; color: #B6ADA1; font-size: 14.5px; line-height: 1.5; }
.gen-card li::before { content: '—'; color: var(--orange); }

.spec-wrap { max-width: 1100px; margin: 0 auto; }
.spec-head { margin-bottom: 36px; }
.spec-head .eyebrow { margin-bottom: 14px; }
.spec-head .sec-h { font-size: 44px; }
.spec-table { border: 1px solid rgba(242,238,230,.1); border-radius: 14px; overflow: hidden; }
.spec-row { display: flex; justify-content: space-between; gap: 16px; padding: 16px 22px; font-family: 'JetBrains Mono', monospace; font-size: 13px; border-top: 1px solid rgba(242,238,230,.07); }
.spec-row:first-child { border-top: 0; }
.spec-row.alt { background: var(--bg-2); }
.spec-row .k { color: var(--ink-mut); letter-spacing: 1px; }
.spec-row .v { color: var(--ink); text-align: right; }
.spec-row .v.orange { color: var(--orange); }

.app-wrap { max-width: 1100px; margin: 0 auto; }
.app-head { margin-bottom: 30px; }
.app-head .eyebrow { margin-bottom: 14px; }
.app-head .sec-h { font-size: 44px; }
.app-table { display: flex; flex-direction: column; border: 1px solid rgba(242,238,230,.1); border-radius: 14px; overflow: hidden; }
.app-row { display: grid; grid-template-columns: 130px 1fr; gap: 18px; align-items: center; padding: 18px 22px; border-top: 1px solid rgba(242,238,230,.07); }
.app-row:first-child { border-top: 0; }
.app-row.alt { background: var(--bg); }
.app-row .marque { font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: 1.5px; color: var(--orange); }
.app-row .models { display: flex; flex-wrap: wrap; gap: 8px; }
.app-row .model { font-family: 'Saira Condensed', sans-serif; font-weight: 600; font-size: 16px; text-transform: uppercase; letter-spacing: .4px; color: #D8CFC4; border: 1px solid rgba(242,238,230,.14); border-radius: 7px; padding: 6px 13px; }

/* ---- Codes moteurs ---- */
.codes-wrap { max-width: 1100px; margin: 0 auto; }
.codes-head { margin-bottom: 36px; }
.codes-head .eyebrow { margin-bottom: 14px; }
.codes-head .sec-h { font-size: 44px; }
.codes-head .lead { color: var(--ink-mut); font-size: 15px; max-width: 660px; margin-top: 16px; line-height: 1.65; }
.code-fam + .code-fam { margin-top: 30px; }
.code-fam-head { display: flex; align-items: baseline; gap: 14px; margin-bottom: 14px; flex-wrap: wrap; }
.code-fam-head .cc { font-family: 'Saira Condensed', sans-serif; font-weight: 800; font-size: 26px; letter-spacing: .4px; color: var(--ink); }
.code-fam-head .tag { font-family: 'JetBrains Mono', monospace; font-size: 11.5px; letter-spacing: 1px; color: var(--orange); }
.code-fam-head .rule { flex: 1; height: 1px; background: var(--line); min-width: 30px; }
.code-table { display: flex; flex-direction: column; border: 1px solid rgba(242,238,230,.1); border-radius: 14px; overflow: hidden; }
.code-row { display: grid; grid-template-columns: 210px 1fr; gap: 14px 26px; align-items: start; padding: 16px 22px; border-top: 1px solid rgba(242,238,230,.07); }
.code-row:first-child { border-top: 0; }
.code-row.alt { background: var(--bg-2); }
.code-row .code-id { display: flex; flex-direction: column; gap: 6px; }
.code-row .code { font-family: 'JetBrains Mono', monospace; font-weight: 600; font-size: 15px; letter-spacing: .5px; color: var(--orange); }
.code-row .pow { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--ink); }
.code-row .tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 9px; }
.code-row .tag { font-family: 'JetBrains Mono', monospace; font-size: 10.5px; letter-spacing: .8px; text-transform: uppercase; color: var(--ink-mut); border: 1px solid rgba(242,238,230,.14); border-radius: 6px; padding: 4px 9px; }
.code-row .apps { font-size: 14.5px; line-height: 1.55; color: #C9C0B4; }
.codes-note { max-width: 760px; margin: 26px 0 0; padding: 14px 18px; border-left: 2px solid var(--orange); background: rgba(237,125,43,.06); border-radius: 0 8px 8px 0; font-size: 13.5px; line-height: 1.6; color: var(--ink-mut); }

/* ---- Encarts photo des protos ---- */
.proto-photo { position: relative; width: 100%; aspect-ratio: 16/9; background: var(--bg-2); border: 1px dashed rgba(242,238,230,.18); border-radius: 12px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.proto-photo .ph-icon { width: 38px; height: 38px; opacity: .25; }
.proto-photo .ph-cap { position: absolute; bottom: 10px; left: 14px; font-family: 'JetBrains Mono', monospace; font-size: 10.5px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ink-mut); opacity: .7; }
.proto-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s cubic-bezier(.2,.7,.2,1); }
.proto-photo:has(img):hover img { transform: scale(1.07); }
.proto-photo:has(img) { border-style: solid; }
.proto-photo:has(img) .ph-icon, .proto-photo:has(img) .ph-cap { display: none; }
/* Grille pour la lignée WM (3 protos côte à côte) */
.wm-photos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 36px; }
.wm-photos .proto-photo { aspect-ratio: 4/3; }
.wm-photos .label { position: absolute; top: 10px; left: 12px; z-index: 2; font-family: 'Saira Condensed', sans-serif; font-weight: 800; font-size: 18px; color: #fff; letter-spacing: .8px; background: var(--red); padding: 4px 10px; border-radius: 4px; box-shadow: 0 2px 8px rgba(0,0,0,.45); }

/* ---- Page Véhicules (galerie) ---- */
.veh-section { max-width: 1240px; margin: 0 auto; }
.veh-section + .veh-section { margin-top: 56px; }
.veh-marque-head { display: flex; align-items: baseline; gap: 14px; margin-bottom: 22px; flex-wrap: wrap; }
.veh-marque-head .name { font-family: 'Saira Condensed', sans-serif; font-weight: 800; font-size: 34px; text-transform: uppercase; letter-spacing: .3px; color: var(--ink); margin: 0; }
.veh-marque-head .count { font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: 1.5px; color: var(--orange); }
.veh-marque-head .rule { flex: 1; height: 1px; background: var(--line); min-width: 30px; }
.veh-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.veh-card { background: var(--bg-2); border: 1px solid rgba(242,238,230,.08); border-radius: 13px; overflow: hidden; transition: transform .18s ease, border-color .18s ease; }
.veh-card:hover { transform: translateY(-3px); border-color: rgba(237,125,43,.3); }
.veh-card .media { position: relative; height: 168px; overflow: hidden; }
.veh-card .scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(16,14,12,.85), rgba(16,14,12,0) 60%); pointer-events: none; z-index: 1; }
.veh-card .media-photo { transition: transform .5s cubic-bezier(.2,.7,.2,1); }
.veh-card:hover .media-photo { transform: scale(1.07); }
.veh-card .body { padding: 16px 18px; }
.veh-card .model { font-family: 'Saira Condensed', sans-serif; font-weight: 700; font-size: 22px; text-transform: uppercase; letter-spacing: .3px; color: var(--ink); line-height: 1; }
.veh-card .marque { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 1.5px; color: var(--orange); margin-top: 7px; }
.veh-card .veh-specs { list-style: none; margin: 12px 0 0; padding: 12px 0 0; border-top: 1px solid rgba(242,238,230,.08); display: flex; flex-direction: column; gap: 6px; }
.veh-card .spec { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: .2px; color: #968D81; line-height: 1.35; }
.veh-card .spec .d { color: var(--orange); font-weight: 600; }
.veh-card .spec .p { color: #D8CFC4; font-style: normal; }

/* ============ ENTRÉE CHORÉGRAPHIÉE DU HERO (au chargement) ============ */
@keyframes heroRise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@keyframes heroFade { from { opacity: 0; } to { opacity: 1; } }
/* moteur : conserve le centrage vertical translateY(-50%) pendant le glissé */
@keyframes engineSlide { from { transform: translateY(-50%) translateX(46px); } to { transform: translateY(-50%) translateX(0); } }
/* « Moteur vivant » : halo qui pulse + ping des callouts */
@keyframes glowPulse  { 0%, 100% { opacity: .72; transform: scale(1); } 50% { opacity: 1; transform: scale(1.07); } }
@keyframes dotPing    { 0% { transform: scale(1); opacity: .85; } 70%, 100% { transform: scale(3.2); opacity: 0; } }
/* Pause des boucles quand le hero quitte l'écran (économie CPU/GPU) */
.hero-img.idle-off, .hero-img.idle-off *, .hero-img.idle-off *::after { animation-play-state: paused !important; }

@media (prefers-reduced-motion: no-preference) {
  /* Accueil : cascade emblème → eyebrow → titre → lead → CTA → stats */
  .hero-copy > * { opacity: 0; animation: heroRise .85s cubic-bezier(.2,.7,.2,1) both; }
  .hero-emblem  { animation-delay: .06s; }
  .hero-eyebrows { animation-delay: .17s; }
  .hero-copy .h1{ animation-delay: .28s; }
  .hero-lead    { animation-delay: .42s; }
  .hero-cta     { animation-delay: .55s; }
  .hero-stats   { animation-delay: .68s; }
  .hero-img         { opacity: 0; animation: heroFade 1s ease .36s both; }
  .hero-img .engine,
  .hero-img .engine-video { animation: engineSlide 1.2s cubic-bezier(.2,.7,.2,1) .36s both; }
  /* halo qui pulse (chaleur/puissance) */
  .hero-img .glow   { animation: glowPulse 4.5s ease-in-out infinite; }
  /* « ping » radar sur les points des callouts */
  .callout .dot::after {
    content: ""; position: absolute; inset: -1px; border-radius: 50%;
    border: 1px solid var(--orange); pointer-events: none;
    animation: dotPing 2.6s ease-out infinite;
  }
  .callout-z7u .dot::after { animation-delay: 1.3s; }

  /* Pages internes : cascade sur les enfants directs du hero */
  .page-hero-inner > * { opacity: 0; animation: heroRise .8s cubic-bezier(.2,.7,.2,1) both; }
  .page-hero-inner > *:nth-child(1) { animation-delay: .06s; }
  .page-hero-inner > *:nth-child(2) { animation-delay: .17s; }
  .page-hero-inner > *:nth-child(3) { animation-delay: .3s; }
  .page-hero-inner > *:nth-child(4) { animation-delay: .43s; }

  /* Page Moteurs : cascade sur la colonne texte + glissé du moteur */
  .eng-hero-inner > div:first-child > * { opacity: 0; animation: heroRise .8s cubic-bezier(.2,.7,.2,1) both; }
  .eng-hero-inner > div:first-child > *:nth-child(1) { animation-delay: .08s; }
  .eng-hero-inner > div:first-child > *:nth-child(2) { animation-delay: .2s; }
  .eng-hero-inner > div:first-child > *:nth-child(3) { animation-delay: .33s; }
  .eng-hero-inner > div:first-child > *:nth-child(4) { animation-delay: .46s; }
  .eng-hero-img         { opacity: 0; animation: heroFade 1s ease .4s both; }
  .eng-hero-img .engine { animation: engineSlide 1.2s cubic-bezier(.2,.7,.2,1) .4s both; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .nav-toggle { display: inline-flex; }
  /* La nav devient un volet déroulant ouvert par le hamburger */
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--bg-2); border-bottom: 1px solid var(--line);
    padding: 4px 28px 14px; box-shadow: 0 20px 34px rgba(0,0,0,.45);
    opacity: 0; transform: translateY(-12px); pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }
  .nav-links a { padding: 14px 2px; font-size: 17px; border-bottom: 1px solid var(--line-soft); }
  .nav-links a:last-child { border-bottom: 0; }
  .nav-links a::after { display: none; } /* pas de soulignement animé dans le volet */
  .site-header.nav-open .nav-links { opacity: 1; transform: none; pointer-events: auto; }
  .hero-inner { grid-template-columns: 1fr; padding-top: 52px; min-height: 0; }
  .hero-img { display: none; }
  .h1 { font-size: 72px; }
  .eng-hero-inner { grid-template-columns: 1fr; }
  .eng-hero-img { display: none; }
  .page-h1 { font-size: 68px; }
  .eng-hero-inner .h1 { font-size: 68px; }
}
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; }
  .three-col { grid-template-columns: 1fr; }
  .forum-inner { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .h1 { font-size: 60px; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .sec-h.lg { font-size: 44px; }
  /* pages internes */
  .chapter { grid-template-columns: 1fr; gap: 14px; }
  .chapter .yearcol { position: static; }
  .plates { padding-left: 0; }
  .arch-grid { grid-template-columns: 1fr; gap: 32px; }
  .gen-grid { grid-template-columns: 1fr; }
  .page-h1 { font-size: 64px; }
  .eng-hero-inner .h1 { font-size: 64px; }
  .veh-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  /* En-tête épuré sur téléphone : les pills Forum/Boutique passent dans le menu */
  .header-actions { gap: 8px; }
  .header-actions .pill-red, .header-actions .pill-orange { display: none; }
  .nav-links .nav-extra { display: block; color: var(--orange); }
  .section { padding: 72px 22px; }
  .h1 { font-size: 46px; }
  .sec-h { font-size: 34px; }
  .sec-h.lg { font-size: 34px; }
  .tl-year { width: 60px; font-size: 24px; }
  .shop-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats .stat + .stat { border-left: 0; padding-left: 0; }
  /* pages internes */
  .page-h1 { font-size: 46px; }
  .eng-hero-inner .h1 { font-size: 46px; }
  .chapter h2 { font-size: 26px; }
  .app-row { grid-template-columns: 1fr; gap: 10px; }
  .code-row { grid-template-columns: 1fr; gap: 12px; }
  .codes-head .sec-h { font-size: 34px; }
  .plate, .plates.single .plate { width: 100%; }
  .veh-marque-head .name { font-size: 28px; }
}
