/* =========================================================
   POCHON PRODUCTION — Studio B2B · Bordeaux
   Letterpress / Bistrot bordelais · 2026
   ========================================================= */

/* ── FONTES LOCALES ─────────────────────────────────────── */
@font-face {
  font-family: 'OldNewspaper';
  src: url('fonts/OldNewspaperTypes.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'AlexBrush';
  src: url('fonts/AlexBrush-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
a { color: inherit; text-decoration: none; }

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  /* Couleurs */
  --rouge: #7C261C;
  --rouge-deep: #5F1C14;
  --rouge-soft: rgba(124,38,28,0.10);
  --brun: #3A2818;
  --brun-mid: #4B3427;
  --creme: #F2EBD3;
  --creme-deep: #E8DFC0;
  --ink: #1a1310;
  --ink-soft: rgba(26,19,16,0.65);

  /* Typo */
  --f-display: 'OldNewspaper', 'Playfair Display', Times, serif;
  --f-script: 'AlexBrush', 'Dancing Script', cursive;
  --f-body: 'EB Garamond', 'Source Serif 4', Georgia, serif;
  --f-mono: 'Special Elite', 'IBM Plex Mono', 'Courier New', monospace;
  --f-ui: 'Inter Tight', 'DM Sans', sans-serif;

  /* Spacing */
  --pad: clamp(20px, 4vw, 56px);
  --section-pad: clamp(72px, 9vw, 128px);
  --container: 1320px;

  /* Effects */
  --rule: 1px solid rgba(58,40,24,0.18);
  --rule-strong: 1.5px solid rgba(58,40,24,0.45);
  --rule-rouge: 1.5px solid rgba(124,38,28,0.7);
}

/* ── BODY · TEXTURE PAPIER ──────────────────────────────── */
body {
  font-family: var(--f-body);
  font-size: 18px;
  line-height: 1.55;
  color: var(--brun);
  background: var(--creme);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* Grain papier journal */
body::before {
  content: '';
  position: fixed;
  inset: -10%;
  background-image:
    url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHdpZHRoPScyNDAnIGhlaWdodD0nMjQwJz48ZmlsdGVyIGlkPSduJz48ZmVUdXJidWxlbmNlIHR5cGU9J2ZyYWN0YWxOb2lzZScgYmFzZUZyZXF1ZW5jeT0nMC45JyBudW1PY3RhdmVzPSczJyBzdGl0Y2hUaWxlcz0nc3RpdGNoJy8+PGZlQ29sb3JNYXRyaXggdmFsdWVzPScwIDAgMCAwIDAuMjUgIDAgMCAwIDAgMC4xOCAgMCAwIDAgMCAwLjEyICAwIDAgMCAwLjYgMCcvPjwvZmlsdGVyPjxyZWN0IHdpZHRoPScxMDAlJyBoZWlnaHQ9JzEwMCUnIGZpbHRlcj0ndXJsKCNuKScgb3BhY2l0eT0nMC40Jy8+PC9zdmc+");
  opacity: 0.08;
  pointer-events: none;
  z-index: 100;
  mix-blend-mode: multiply;
}
/* Vignette subtile */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(58,40,24,0.12) 100%);
  pointer-events: none;
  z-index: 99;
}

/* ── TYPO ELEMENTS ──────────────────────────────────────── */
.display { font-family: var(--f-display); font-weight: 400; letter-spacing: -0.005em; }
.script  { font-family: var(--f-script); font-weight: 400; line-height: 0.9; }
.mono    { font-family: var(--f-mono); }
.ui      { font-family: var(--f-ui); }
.smallcaps {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

/* ── LAYOUT ─────────────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad); }
section { position: relative; }

/* ── ORNAMENTS ──────────────────────────────────────────── */
.fleuron {
  display: inline-block;
  font-family: var(--f-display);
  color: var(--rouge);
  opacity: 0.5;
  font-size: 1.5em;
  line-height: 0.5;
  padding: 0 0.4em;
  vertical-align: middle;
}
.double-rule {
  border-top: 1px solid var(--brun);
  border-bottom: 1px solid var(--brun);
  height: 5px;
  opacity: 0.45;
}
hr.rule-thin { border: 0; border-top: 1px solid rgba(58,40,24,0.25); margin: 0; }
hr.rule-rouge { border: 0; border-top: 1.5px solid var(--rouge); opacity: 0.55; margin: 0; }

/* Headline kicker */
.kicker {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--rouge);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.kicker::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--rouge);
}

/* ── NAVBAR ─────────────────────────────────────────────── */
nav.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px var(--pad);
  background: rgba(242,235,211,0.0);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}
nav.topbar.scrolled {
  background: rgba(242,235,211,0.96);
  backdrop-filter: blur(8px);
  border-bottom-color: rgba(58,40,24,0.15);
}
.brand-mark {
  display: flex;
  flex-direction: column;
  line-height: 0.95;
}
.brand-mark .pp {
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--rouge);
  letter-spacing: 0.02em;
}
.brand-mark .sub {
  font-family: var(--f-mono);
  font-size: 8.5px;
  letter-spacing: 0.32em;
  color: var(--brun);
  opacity: 0.7;
  margin-top: 4px;
}
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--brun);
  opacity: 0.75;
  transition: opacity 0.2s, color 0.2s;
  position: relative;
  padding: 6px 0;
}
.nav-links a:hover { opacity: 1; color: var(--rouge); }
.nav-links a.active { color: var(--rouge); opacity: 1; }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 1px;
  background: var(--rouge);
}

/* Hamburger (mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--brun);
  transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav-cta {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--creme);
  background: var(--rouge);
  padding: 11px 18px;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--rouge-deep); transform: translateY(-1px); }

/* ── HERO COMMUN ─────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 90px;
  padding-bottom: 60px;
}
[data-hero="1"] .hero-v2,
[data-hero="1"] .hero-v3,
[data-hero="2"] .hero-v1,
[data-hero="2"] .hero-v3,
[data-hero="3"] .hero-v1,
[data-hero="3"] .hero-v2 { display: none; }

/* ── LOGO TYPOGRAPHIQUE (signature de marque) ────────────── */
.logo-mark {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 0.95;
  color: var(--rouge);
  text-align: center;
  user-select: none;
}
.logo-mark .lm-top {
  font-family: var(--f-display);
  font-size: 32px;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}
.logo-mark .lm-mid {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 4px;
  padding: 0 6px;
}
.logo-mark .lm-mid .lm-num {
  font-family: var(--f-display);
  font-size: 22px;
  line-height: 1;
}
.logo-mark .lm-mid .lm-script {
  font-family: var(--f-script);
  font-size: 40px;
  line-height: 0.6;
  transform: translateY(-2px);
}
.logo-mark .lm-bot {
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: 0.08em;
  line-height: 1;
  margin-top: 4px;
}
.logo-mark--sm .lm-top { font-size: 18px; }
.logo-mark--sm .lm-mid .lm-num { font-size: 12px; }
.logo-mark--sm .lm-mid .lm-script { font-size: 22px; }
.logo-mark--sm .lm-bot { font-size: 12px; }
.logo-mark--sm .lm-mid { gap: 10px; margin-top: 2px; }

/* Variante claire (sur fond brun/rouge) */
.logo-mark--light { color: var(--creme); }

/* ── HERO V1 — Journal · Affiche bistro ─────────────────── */
.hero-v1 .hero-paper {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  width: 100%;
}
.hero-v1 .hero-logo-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 2px solid var(--brun);
}
.hero-v1 .hero-logo-wrap .right-stamps {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 6px;
}
.hero-v1 .hero-logo-wrap .right-stamps span {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brun);
  opacity: 0.7;
}
.hero-v1 .hero-logo-wrap .right-stamps span.accent-stamp { color: var(--rouge); opacity: 1; }

.hero-v1 .masthead {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--brun);
  margin-bottom: 6px;
}
.hero-v1 .masthead::after {
  content: '';
  position: absolute;
}
.hero-v1 .masthead-rule {
  border-top: 1px solid var(--brun);
  height: 0;
  margin-bottom: 56px;
  opacity: 0.6;
}
.hero-v1 .masthead .left,
.hero-v1 .masthead .right {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--brun);
  opacity: 0.7;
}
.hero-v1 .masthead .center {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--rouge);
}
.hero-v1 .grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-v1 h1 {
  font-family: var(--f-display);
  font-size: clamp(56px, 9vw, 132px);
  line-height: 0.92;
  color: var(--ink);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.hero-v1 h1 .accent {
  font-family: var(--f-script);
  color: var(--rouge);
  font-size: 1.05em;
  line-height: 0.85;
  display: inline-block;
  transform: translateY(0.04em) rotate(-3deg);
  padding: 0 0.05em;
}
.hero-v1 .lede {
  font-family: var(--f-body);
  font-size: 21px;
  line-height: 1.5;
  color: var(--brun);
  max-width: 540px;
  margin-bottom: 32px;
  font-style: italic;
}
.hero-v1 .lede::first-letter {
  font-family: var(--f-display);
  font-size: 3.4em;
  float: left;
  line-height: 0.85;
  padding: 6px 10px 0 0;
  color: var(--rouge);
  font-style: normal;
}
.hero-v1 .cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-v1 .hero-side {
  border-left: 1px solid rgba(58,40,24,0.2);
  padding-left: 40px;
}
.hero-v1 .ticker {
  display: grid;
  gap: 0;
}
.hero-v1 .ticker-item {
  padding: 18px 0;
  border-bottom: 1px solid rgba(58,40,24,0.15);
}
.hero-v1 .ticker-item:last-child { border-bottom: 0; }
.hero-v1 .ticker-item .label {
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rouge);
  opacity: 0.8;
  display: block;
  margin-bottom: 4px;
}
.hero-v1 .ticker-item .val {
  font-family: var(--f-display);
  font-size: 26px;
  color: var(--ink);
  line-height: 1.15;
}

/* ── HERO V2 — Plein écran · Image dominante ────────────── */
.hero-v2 {
  padding: 0;
  min-height: 100vh;
}
.hero-v2 .stage {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: var(--brun);
  overflow: hidden;
}
.hero-v2 .stage::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1572116469696-31de0f17cc34?w=1800&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  filter: grayscale(0.5) contrast(1.1) brightness(0.55);
}
.hero-v2 .stage::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(58,40,24,0.6) 0%, rgba(58,40,24,0.85) 70%, rgba(58,40,24,0.95) 100%),
    radial-gradient(ellipse at 30% 60%, rgba(124,38,28,0.3) 0%, transparent 60%);
}
.hero-v2 .stage > .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 80px;
}
.hero-v2 .stamp {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(242,235,211,0.7);
  margin-bottom: 32px;
  padding: 8px 14px;
  border: 1px solid rgba(242,235,211,0.3);
  align-self: flex-start;
}
.hero-v2 .stamp .dot { width: 6px; height: 6px; background: var(--rouge); border-radius: 50%; }
.hero-v2 h1 {
  font-family: var(--f-display);
  font-size: clamp(64px, 11vw, 168px);
  line-height: 0.88;
  color: var(--creme);
  max-width: 1100px;
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}
.hero-v2 h1 .accent {
  font-family: var(--f-script);
  color: rgba(242,235,211,0.85);
  font-size: 0.85em;
  display: inline-block;
  transform: rotate(-4deg) translateY(0.05em);
  padding: 0 0.08em;
  font-style: normal;
}
.hero-v2 .sub {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 22px;
  color: rgba(242,235,211,0.75);
  max-width: 620px;
  margin-bottom: 44px;
  line-height: 1.5;
}
.hero-v2 .cta-row { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 80px; }
.hero-v2 .meta {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(242,235,211,0.18);
  max-width: 900px;
}
.hero-v2 .meta-item {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(242,235,211,0.55);
}
.hero-v2 .meta-item strong {
  display: block;
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: 0;
  color: var(--creme);
  text-transform: none;
  margin-top: 6px;
  font-weight: 400;
}

/* ── HERO V3 — Minimal éditorial · Centré ───────────────── */
.hero-v3 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  background:
    radial-gradient(ellipse at top, rgba(124,38,28,0.06) 0%, transparent 50%),
    var(--creme);
}
.hero-v3 .inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 120px var(--pad) 60px;
}
.hero-v3 .top-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--brun);
  opacity: 0.7;
  margin-bottom: 56px;
}
.hero-v3 .top-rule::before,
.hero-v3 .top-rule::after {
  content: '';
  width: 60px;
  height: 1px;
  background: var(--brun);
  opacity: 0.4;
}
.hero-v3 h1 {
  font-family: var(--f-display);
  font-size: clamp(48px, 7.5vw, 110px);
  line-height: 1;
  color: var(--ink);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.hero-v3 h1 .accent {
  font-family: var(--f-script);
  color: var(--rouge);
  font-size: 1.15em;
  display: block;
  line-height: 0.9;
  margin: 0.1em 0;
}
.hero-v3 .sub {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 22px;
  color: var(--brun);
  max-width: 640px;
  margin: 32px auto 40px;
  line-height: 1.55;
}
.hero-v3 .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-v3 .badges {
  margin-top: 80px;
  padding-top: 36px;
  border-top: 1px solid rgba(58,40,24,0.2);
  display: flex;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}
.hero-v3 .badge {
  text-align: center;
}
.hero-v3 .badge .l {
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brun);
  opacity: 0.6;
  display: block;
  margin-bottom: 6px;
}
.hero-v3 .badge .v {
  font-family: var(--f-display);
  font-size: 26px;
  color: var(--rouge);
}

/* ── BOUTONS ────────────────────────────────────────────── */
.btn {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 16px 26px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: transform 0.16s ease, background 0.2s, border-color 0.2s, color 0.2s;
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-rouge {
  background: var(--rouge);
  color: var(--creme);
  border-color: var(--rouge);
}
.btn-rouge:hover {
  background: var(--rouge-deep);
  border-color: var(--rouge-deep);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--brun);
  border-color: rgba(58,40,24,0.3);
}
.btn-ghost:hover { border-color: var(--brun); background: rgba(58,40,24,0.04); }
.btn-ghost-light {
  background: transparent;
  color: var(--creme);
  border-color: rgba(242,235,211,0.35);
}
.btn-ghost-light:hover { border-color: var(--creme); background: rgba(242,235,211,0.06); }
.btn-cream {
  background: var(--creme);
  color: var(--brun);
  border-color: var(--creme);
}
.btn-cream:hover { background: var(--creme-deep); border-color: var(--creme-deep); }

/* ── SECTION COMMUNES ───────────────────────────────────── */
.sect { padding: var(--section-pad) 0; position: relative; }
.sect-rouge { background: var(--rouge); color: var(--creme); }
.sect-brun { background: var(--brun); color: var(--creme); }
.sect-creme { background: var(--creme); color: var(--brun); }
.sect-creme-deep { background: var(--creme-deep); color: var(--brun); }

.sect-head {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 64px;
  align-items: baseline;
  margin-bottom: 72px;
  padding-bottom: 28px;
  border-bottom: 1px solid currentColor;
  border-color: rgba(58,40,24,0.22);
}
.sect-brun .sect-head, .sect-rouge .sect-head { border-color: rgba(242,235,211,0.22); }
.sect-head .num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--rouge);
}
.sect-brun .sect-head .num, .sect-rouge .sect-head .num { color: var(--creme); opacity: 0.8; }
.sect-head h2 {
  font-family: var(--f-display);
  font-size: clamp(36px, 5.5vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.01em;
  font-weight: 400;
}
.sect-head h2 .accent {
  font-family: var(--f-script);
  color: var(--rouge);
  font-size: 1.1em;
  display: inline-block;
  transform: rotate(-3deg);
  padding: 0 0.06em;
}
.sect-brun .sect-head h2 .accent,
.sect-rouge .sect-head h2 .accent {
  color: rgba(242,235,211,0.85);
}
.sect-head .desc {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 19px;
  line-height: 1.5;
  color: var(--brun);
  max-width: 560px;
  margin-top: 18px;
}
.sect-brun .sect-head .desc, .sect-rouge .sect-head .desc { color: rgba(242,235,211,0.75); }

/* ── MANIFESTE ──────────────────────────────────────────── */
.manifesto {
  background: var(--creme);
  text-align: center;
  padding: clamp(64px, 9vw, 120px) 0;
  border-top: 1px solid rgba(58,40,24,0.2);
  border-bottom: 1px solid rgba(58,40,24,0.2);
}
.manifesto .promesse {
  font-family: var(--f-display);
  font-size: clamp(32px, 4.5vw, 64px);
  line-height: 1.1;
  color: var(--ink);
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--pad);
  letter-spacing: -0.005em;
}
.manifesto .promesse em {
  font-family: var(--f-script);
  font-style: normal;
  color: var(--rouge);
  font-size: 1.1em;
}
.manifesto .marquee {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(58,40,24,0.2);
  width: 90%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.manifesto .marquee span {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brun);
  opacity: 0.8;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.manifesto .marquee span::before {
  content: '✦';
  color: var(--rouge);
  font-size: 14px;
  opacity: 0.7;
}

/* ── SERVICES OVERVIEW · 4 PÔLES ────────────────────────── */
.poles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(58,40,24,0.2);
  border: 1px solid rgba(58,40,24,0.2);
}
.pole-card {
  background: var(--creme);
  padding: 40px 28px 32px;
  display: flex;
  flex-direction: column;
  min-height: 380px;
  position: relative;
  transition: background 0.3s ease;
}
.pole-card:hover { background: var(--creme-deep); }
.pole-card .num {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--rouge);
  margin-bottom: 28px;
}
.pole-card .icon {
  height: 64px;
  width: 64px;
  border: 1.5px solid var(--rouge);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: var(--rouge);
}
.pole-card .icon svg { width: 28px; height: 28px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.pole-card h3 {
  font-family: var(--f-display);
  font-size: 30px;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 4px;
  font-weight: 400;
}
.pole-card .ssh {
  font-family: var(--f-script);
  font-size: 26px;
  color: var(--rouge);
  margin-bottom: 18px;
  line-height: 0.9;
}
.pole-card p {
  font-family: var(--f-body);
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--brun);
  opacity: 0.85;
  margin-bottom: 24px;
}
.pole-card .more {
  margin-top: auto;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rouge);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ── PÔLE DETAIL · BLOC NARRATIF ────────────────────────── */
.pole-detail { padding: var(--section-pad) 0; position: relative; }
.pole-detail .pd-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.pole-detail.reverse .pd-inner { direction: rtl; }
.pole-detail.reverse .pd-inner > * { direction: ltr; }
.pole-detail .pd-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.pole-detail .pd-img--small {
  max-width: 380px;
  aspect-ratio: 1/1;
  margin: 0 auto;
  border: 1px solid rgba(58,40,24,0.18);
}
.pole-detail.reverse .pd-img--small { margin-left: auto; margin-right: 0; }
.pole-detail:not(.reverse) .pd-img--small { margin-right: auto; margin-left: 0; }
.pole-detail .pd-img img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.05) saturate(0.92); }
.pole-detail .pd-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 70%, rgba(58,40,24,0.18) 100%);
  pointer-events: none;
}
.pole-detail .pd-stamp {
  position: absolute;
  bottom: 24px;
  left: -16px;
  background: var(--rouge);
  color: var(--creme);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 10px 18px;
}
.pole-detail .pd-content .pd-num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--rouge);
  margin-bottom: 16px;
}
.pole-detail .pd-content h3 {
  font-family: var(--f-display);
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1;
  color: var(--ink);
  margin-bottom: 6px;
  font-weight: 400;
}
.pole-detail .pd-content .accent {
  font-family: var(--f-script);
  color: var(--rouge);
  font-size: 38px;
  display: block;
  line-height: 1;
  margin-bottom: 24px;
  transform: rotate(-3deg);
  transform-origin: left;
}
.pole-detail .pd-content .lede {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 19px;
  line-height: 1.55;
  color: var(--brun);
  margin-bottom: 28px;
}
.pole-detail .pd-content ul {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-bottom: 32px;
}
.pole-detail .pd-content ul li {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.5;
  padding-left: 28px;
  position: relative;
  color: var(--brun);
}
.pole-detail .pd-content ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--rouge);
  font-family: var(--f-display);
  font-weight: 700;
}
.pole-detail .pd-content .pd-meta {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(58,40,24,0.2);
}
.pole-detail .pd-content .pd-meta div {
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brun);
  opacity: 0.7;
}
.pole-detail .pd-content .pd-meta div strong {
  display: block;
  font-family: var(--f-display);
  font-size: 17px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--rouge);
  margin-top: 4px;
  font-weight: 400;
  opacity: 1;
}

/* Dark variant */
.pole-detail.dark { background: var(--brun); color: var(--creme); }
.pole-detail.dark .pd-content h3 { color: var(--creme); }
.pole-detail.dark .pd-content .lede { color: rgba(242,235,211,0.8); }
.pole-detail.dark .pd-content ul li { color: rgba(242,235,211,0.85); }
.pole-detail.dark .pd-content .pd-meta { border-color: rgba(242,235,211,0.18); }
.pole-detail.dark .pd-content .pd-meta div { color: rgba(242,235,211,0.6); }
.pole-detail.dark .pd-content .pd-meta div strong { color: rgba(242,235,211,0.95); }

/* ── COMPARATIF PRO vs CIVIL ────────────────────────────── */
.comparatif { background: var(--creme-deep); }
.comp-table {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  border: 1px solid rgba(58,40,24,0.25);
  background: var(--creme);
}
.comp-table > div {
  padding: 22px 24px;
  border-bottom: 1px solid rgba(58,40,24,0.15);
  border-right: 1px solid rgba(58,40,24,0.15);
  font-family: var(--f-body);
  font-size: 15px;
  line-height: 1.45;
  color: var(--brun);
}
.comp-table > div:nth-child(3n) { border-right: 0; }
.comp-table .row-head {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rouge);
  background: rgba(124,38,28,0.04);
}
.comp-table .col-head {
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--rouge);
  font-weight: 400;
  text-align: center;
  padding: 28px 24px;
  background: var(--rouge);
  color: var(--creme);
  border-bottom-color: rgba(242,235,211,0.2);
}
.comp-table .col-head .ssh {
  display: block;
  font-family: var(--f-script);
  font-size: 22px;
  margin-top: 4px;
  color: rgba(242,235,211,0.85);
  line-height: 0.9;
}
.comp-table .top-left {
  background: var(--brun);
  color: var(--creme);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

/* ── RÉASSORT PROGRESSIF — bloc dédié ───────────────────── */
.reassort {
  background: var(--brun);
  color: var(--creme);
  padding: var(--section-pad) 0;
}
.reassort .ra-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.reassort h3 {
  font-family: var(--f-display);
  font-size: clamp(38px, 4.5vw, 64px);
  line-height: 1;
  color: var(--creme);
  margin-bottom: 8px;
  font-weight: 400;
}
.reassort h3 .accent {
  font-family: var(--f-script);
  color: rgba(242,235,211,0.7);
  font-size: 1.05em;
  display: inline-block;
  transform: rotate(-3deg);
  padding: 0 0.06em;
}
.reassort .lede {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 19px;
  line-height: 1.55;
  color: rgba(242,235,211,0.78);
  margin-bottom: 28px;
}
.reassort .ra-steps {
  list-style: none;
  display: grid;
  gap: 16px;
}
.reassort .ra-steps li {
  padding: 18px 22px;
  background: rgba(242,235,211,0.05);
  border-left: 2px solid var(--rouge);
  display: flex;
  gap: 18px;
  align-items: baseline;
}
.reassort .ra-steps .n {
  font-family: var(--f-display);
  font-size: 32px;
  color: var(--rouge);
  line-height: 1;
}
.reassort .ra-steps .text {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.5;
  color: rgba(242,235,211,0.85);
}
.reassort .ra-steps .text b {
  display: block;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(242,235,211,0.6);
  margin-bottom: 4px;
  font-weight: 400;
}

/* ── VERRERIE — 2 PROPOSITIONS A/B ──────────────────────── */
.verres-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.verres-card {
  background: var(--creme);
  border: 1px solid rgba(58,40,24,0.2);
  padding: 44px 36px;
  position: relative;
}
.verres-card .pp {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rouge);
  margin-bottom: 12px;
}
.verres-card h4 {
  font-family: var(--f-display);
  font-size: 36px;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 8px;
  font-weight: 400;
}
.verres-card .ssh {
  font-family: var(--f-script);
  color: var(--rouge);
  font-size: 24px;
  line-height: 0.9;
  margin-bottom: 22px;
  display: block;
}
.verres-card .descr {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 16.5px;
  color: var(--brun);
  margin-bottom: 26px;
  line-height: 1.55;
}
.verres-card .feats {
  list-style: none;
  display: grid;
  gap: 10px;
  padding-top: 22px;
  border-top: 1px solid rgba(58,40,24,0.2);
}
.verres-card .feats li {
  font-family: var(--f-body);
  font-size: 15px;
  line-height: 1.4;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 4px 0;
}
.verres-card .feats li b {
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rouge);
  font-weight: 400;
  padding-top: 3px;
}

/* ── VITICOLE — bloc dédié ──────────────────────────────── */
.viticole { background: var(--rouge); color: var(--creme); }
.viticole .vc-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.viticole h3 {
  font-family: var(--f-display);
  font-size: clamp(42px, 5.5vw, 76px);
  line-height: 0.98;
  color: var(--creme);
  margin-bottom: 8px;
  font-weight: 400;
}
.viticole h3 .accent {
  font-family: var(--f-script);
  color: rgba(242,235,211,0.85);
  font-size: 1.05em;
  display: inline-block;
  transform: rotate(-3deg);
}
.viticole .lede {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 21px;
  line-height: 1.55;
  color: rgba(242,235,211,0.85);
  margin: 24px 0 32px;
  max-width: 600px;
}
.viticole .points {
  list-style: none;
  display: grid;
  gap: 22px;
  margin-bottom: 36px;
}
.viticole .points li {
  display: flex;
  gap: 16px;
  font-family: var(--f-body);
  font-size: 16.5px;
  line-height: 1.5;
  color: rgba(242,235,211,0.9);
}
.viticole .points li::before {
  content: '✦';
  color: rgba(242,235,211,0.6);
  font-size: 18px;
  line-height: 1.5;
  flex: 0 0 24px;
}
.viticole .vc-img {
  position: relative;
  aspect-ratio: 1/1;
  max-width: 380px;
  margin: 0 0 0 auto;
  overflow: hidden;
  border: 8px solid var(--creme);
  outline: 1px solid rgba(58,40,24,0.2);
}
.viticole .vc-img img { width: 100%; height: 100%; object-fit: cover; }
.viticole .vc-stamp {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--creme);
  color: var(--rouge);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 12px 18px;
}

/* ── CREATION GRAPHIQUE 3 NIVEAUX ───────────────────────── */
.creation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(58,40,24,0.18);
  border: 1px solid rgba(58,40,24,0.18);
}
.creation-card {
  background: var(--creme);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
}
.creation-card .level {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--rouge);
  margin-bottom: 12px;
}
.creation-card h4 {
  font-family: var(--f-display);
  font-size: 28px;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 12px;
  font-weight: 400;
}
.creation-card .ssh {
  font-family: var(--f-script);
  color: var(--rouge);
  font-size: 22px;
  display: block;
  margin-bottom: 20px;
  line-height: 0.9;
}
.creation-card p {
  font-family: var(--f-body);
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--brun);
  margin-bottom: 24px;
}
.creation-card .meta {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(58,40,24,0.2);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rouge);
}

/* ── ÉVÉNEMENTIEL ───────────────────────────────────────── */
.event-wrap { background: var(--brun); color: var(--creme); }
.event-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.event-grid .left h3 {
  font-family: var(--f-display);
  font-size: clamp(42px, 5.5vw, 72px);
  line-height: 1;
  color: var(--creme);
  margin-bottom: 8px;
  font-weight: 400;
}
.event-grid .left .accent {
  font-family: var(--f-script);
  color: rgba(242,235,211,0.7);
  font-size: 38px;
  line-height: 1;
  display: block;
  margin-bottom: 24px;
  transform: rotate(-3deg);
  transform-origin: left;
}
.event-grid .left p {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 19px;
  line-height: 1.55;
  color: rgba(242,235,211,0.78);
  margin-bottom: 32px;
}
.event-grid .right ul {
  list-style: none;
  display: grid;
  gap: 0;
}
.event-grid .right ul li {
  padding: 22px 0;
  border-bottom: 1px solid rgba(242,235,211,0.18);
  display: flex;
  gap: 18px;
  align-items: baseline;
}
.event-grid .right ul li:first-child { border-top: 1px solid rgba(242,235,211,0.18); }
.event-grid .right .n {
  font-family: var(--f-display);
  font-size: 26px;
  color: var(--rouge);
  opacity: 0.85;
}
.event-grid .right .label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(242,235,211,0.6);
  display: block;
  margin-bottom: 4px;
}
.event-grid .right .text {
  font-family: var(--f-body);
  font-size: 16px;
  color: rgba(242,235,211,0.88);
  line-height: 1.5;
}

/* ── MÉTHODE ────────────────────────────────────────────── */
.methode-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.methode-step {
  padding: 36px 28px;
  position: relative;
  border-right: 1px solid rgba(58,40,24,0.2);
}
.methode-step:last-child { border-right: 0; }
.methode-step .stp {
  font-family: var(--f-display);
  color: var(--rouge);
  font-size: 56px;
  line-height: 0.9;
  margin-bottom: 18px;
  display: block;
  letter-spacing: 0.04em;
}
.methode-step h4 {
  font-family: var(--f-display);
  font-size: 26px;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 10px;
  font-weight: 400;
}
.methode-step .label {
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: 0.3em;
  color: var(--rouge);
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}
.methode-step p {
  font-family: var(--f-body);
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--brun);
}

/* ── CIBLES (POUR QUI) ──────────────────────────────────── */
.cibles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(58,40,24,0.2);
}
.cible-card {
  padding: 40px 28px;
  border-right: 1px solid rgba(58,40,24,0.2);
  background: var(--creme);
  display: flex;
  flex-direction: column;
  min-height: 320px;
  position: relative;
  overflow: hidden;
}
.cible-card:last-child { border-right: 0; }
.cible-card::before {
  content: attr(data-n);
  position: absolute;
  top: 16px;
  right: 22px;
  font-family: var(--f-display);
  font-size: 88px;
  color: var(--rouge);
  opacity: 0.08;
  line-height: 0.8;
}
.cible-card .label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--rouge);
  text-transform: uppercase;
  margin-bottom: 24px;
  z-index: 1;
}
.cible-card h4 {
  font-family: var(--f-display);
  font-size: 30px;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 6px;
  font-weight: 400;
}
.cible-card .accent {
  font-family: var(--f-script);
  color: var(--rouge);
  font-size: 22px;
  display: block;
  margin-bottom: 16px;
  line-height: 0.9;
}
.cible-card p {
  font-family: var(--f-body);
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--brun);
  flex: 1;
}

/* ── FONDATEUR ──────────────────────────────────────────── */
.fondateur-wrap { background: var(--creme-deep); }
.fond-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 72px;
  align-items: start;
}
.fond-portrait {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--brun);
}
.fond-portrait img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.05) saturate(0.9); }
.fond-portrait .sig {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  font-family: var(--f-script);
  font-size: 56px;
  color: var(--creme);
  line-height: 0.9;
  text-shadow: 0 2px 16px rgba(0,0,0,0.6);
}
.fond-content .label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.35em;
  color: var(--rouge);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}
.fond-content h3 {
  font-family: var(--f-display);
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.98;
  color: var(--ink);
  margin-bottom: 8px;
  font-weight: 400;
}
.fond-content .accent {
  font-family: var(--f-script);
  color: var(--rouge);
  font-size: 44px;
  display: block;
  line-height: 0.9;
  margin-bottom: 32px;
}
.fond-content p {
  font-family: var(--f-body);
  font-size: 18px;
  line-height: 1.65;
  color: var(--brun);
  margin-bottom: 22px;
}
.fond-content p:first-of-type::first-letter {
  font-family: var(--f-display);
  font-size: 3.6em;
  float: left;
  line-height: 0.85;
  padding: 6px 12px 0 0;
  color: var(--rouge);
}
.fond-skills {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(58,40,24,0.25);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.fond-skill .l {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.28em;
  color: var(--rouge);
  text-transform: uppercase;
  margin-bottom: 4px;
  display: block;
}
.fond-skill .v {
  font-family: var(--f-display);
  font-size: 18px;
  color: var(--ink);
  line-height: 1.15;
}

/* ── QUOTE PULL ─────────────────────────────────────────── */
.pull-quote {
  padding: clamp(72px, 9vw, 120px) 0;
  text-align: center;
  background: var(--rouge);
  color: var(--creme);
  position: relative;
  overflow: hidden;
}
.pull-quote::before {
  content: '"';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-display);
  font-size: 560px;
  color: rgba(242,235,211,0.08);
  line-height: 1;
  pointer-events: none;
}
.pull-quote blockquote {
  font-family: var(--f-display);
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.15;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--pad);
  font-weight: 400;
  letter-spacing: -0.005em;
  position: relative;
  z-index: 1;
}
.pull-quote blockquote em {
  font-family: var(--f-script);
  font-style: normal;
  color: rgba(242,235,211,0.85);
  font-size: 1.1em;
}
.pull-quote cite {
  display: block;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(242,235,211,0.7);
  margin-top: 36px;
  font-style: normal;
  position: relative;
  z-index: 1;
}

/* ── FAQ ────────────────────────────────────────────────── */
.faq-list {
  border-top: 1px solid rgba(58,40,24,0.22);
}
.faq-item {
  border-bottom: 1px solid rgba(58,40,24,0.22);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 0;
  display: grid;
  grid-template-columns: 60px 1fr 40px;
  gap: 24px;
  align-items: baseline;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .num {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--rouge);
  text-transform: uppercase;
}
.faq-item summary .q {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.2;
  color: var(--ink);
  font-weight: 400;
}
.faq-item summary .toggle {
  justify-self: end;
  font-family: var(--f-display);
  font-size: 32px;
  color: var(--rouge);
  line-height: 0.6;
  transition: transform 0.2s;
}
.faq-item[open] summary .toggle { transform: rotate(45deg); }
.faq-item .a {
  padding: 0 0 32px 84px;
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--brun);
  max-width: 800px;
}

/* ── CONTACT ────────────────────────────────────────────── */
.contact-wrap {
  background: var(--brun);
  color: var(--creme);
  padding: var(--section-pad) 0;
  position: relative;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.contact-left h2 {
  font-family: var(--f-display);
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.98;
  color: var(--creme);
  margin-bottom: 8px;
  font-weight: 400;
}
.contact-left h2 .accent {
  font-family: var(--f-script);
  color: rgba(242,235,211,0.7);
  font-size: 1.1em;
  display: inline-block;
  transform: rotate(-3deg);
  padding: 0 0.05em;
}
.contact-left .lede {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 20px;
  line-height: 1.55;
  color: rgba(242,235,211,0.78);
  max-width: 540px;
  margin: 28px 0 48px;
}
.contact-channels {
  display: grid;
  gap: 14px;
  margin-bottom: 40px;
}
.channel {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 22px;
  padding: 22px 24px;
  background: rgba(242,235,211,0.05);
  border: 1px solid rgba(242,235,211,0.12);
  align-items: center;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  cursor: pointer;
}
.channel:hover {
  background: rgba(242,235,211,0.09);
  border-color: rgba(242,235,211,0.25);
  transform: translateY(-1px);
}
.channel .ico {
  width: 40px;
  height: 40px;
  border: 1px solid var(--rouge);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rouge);
}
.channel .ico svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.6; }
.channel .info .l {
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: 0.3em;
  color: rgba(242,235,211,0.5);
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}
.channel .info .v {
  font-family: var(--f-display);
  font-size: 19px;
  color: var(--creme);
  line-height: 1.15;
}
.channel .arrow {
  font-family: var(--f-mono);
  font-size: 18px;
  color: rgba(242,235,211,0.5);
}

.contact-form { display: grid; gap: 16px; align-content: start; }
.contact-form .ft-label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.35em;
  color: rgba(242,235,211,0.6);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.contact-form .ft-title {
  font-family: var(--f-display);
  font-size: 30px;
  color: var(--creme);
  margin-bottom: 24px;
  line-height: 1.1;
}
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 16px 18px;
  background: rgba(242,235,211,0.06);
  border: 1px solid rgba(242,235,211,0.15);
  color: var(--creme);
  font-family: var(--f-body);
  font-size: 16px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(242,235,211,0.35); font-style: italic; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(124,38,28,0.7);
  background: rgba(242,235,211,0.1);
}
.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path fill='none' stroke='%23F2EBD3' stroke-width='1.5' d='M1 1l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 12px;
  padding-right: 44px;
  color: rgba(242,235,211,0.85);
}
.contact-form textarea {
  resize: vertical;
  min-height: 140px;
  font-family: var(--f-body);
}
.contact-form button {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 18px 32px;
  background: var(--rouge);
  color: var(--creme);
  border: 1px solid var(--rouge);
  cursor: pointer;
  justify-self: start;
  transition: background 0.2s, transform 0.16s;
}
.contact-form button:hover { background: var(--rouge-deep); transform: translateY(-1px); }

/* ── FOOTER ─────────────────────────────────────────────── */
footer {
  background: var(--ink);
  color: rgba(242,235,211,0.6);
  padding: 64px var(--pad) 28px;
  position: relative;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--rouge) 0%, var(--rouge) 33%, transparent 33%, transparent 66%, var(--rouge) 66%);
  opacity: 0.6;
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  max-width: var(--container);
  margin: 0 auto;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(242,235,211,0.1);
}
.foot-brand {
  font-family: var(--f-display);
  font-size: 32px;
  color: var(--creme);
  line-height: 1;
  margin-bottom: 12px;
}
.foot-brand .ssh {
  display: block;
  font-family: var(--f-script);
  color: rgba(242,235,211,0.7);
  font-size: 26px;
  margin-top: 8px;
  line-height: 1;
}
.foot-desc {
  font-family: var(--f-body);
  font-size: 14px;
  line-height: 1.6;
  max-width: 280px;
  color: rgba(242,235,211,0.5);
  margin-top: 14px;
}
.foot-col h5 {
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(242,235,211,0.55);
  margin-bottom: 20px;
}
.foot-col ul { list-style: none; display: grid; gap: 11px; }
.foot-col li a {
  font-family: var(--f-body);
  font-size: 14px;
  color: rgba(242,235,211,0.55);
  transition: color 0.2s;
}
.foot-col li a:hover { color: var(--creme); }
.foot-bottom {
  max-width: var(--container);
  margin: 28px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: 0.25em;
  color: rgba(242,235,211,0.4);
  text-transform: uppercase;
}

/* ── REVEAL ─────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal.is-in { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 80ms; }
.reveal-d2 { transition-delay: 160ms; }
.reveal-d3 { transition-delay: 240ms; }
.reveal-d4 { transition-delay: 320ms; }

/* ── RESPONSIVE ─────────────────────────────────────────── */

/* === TABLETTE (≤ 1100 px) === */
@media (max-width: 1100px) {
  .poles-grid, .cibles-grid, .methode-grid, .creation-grid { grid-template-columns: 1fr 1fr; }
  .methode-step { border-right: 0; border-bottom: 1px solid rgba(58,40,24,0.2); }
  .hero-v1 .grid, .pole-detail .pd-inner, .reassort .ra-grid, .viticole .vc-grid,
  .fond-grid, .event-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .pole-detail.reverse .pd-inner { direction: ltr; }
  .hero-v1 .hero-side { border-left: 0; border-top: 1px solid rgba(58,40,24,0.2); padding-left: 0; padding-top: 32px; }
  .sect-head { grid-template-columns: 1fr; gap: 16px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .verres-grid { grid-template-columns: 1fr; }
}

/* === MOBILE (≤ 720 px) === */
@media (max-width: 720px) {
  :root {
    --section-pad: 64px;
    --pad: 20px;
  }
  body { font-size: 16px; }

  /* Mobile menu : hamburger + dropdown */
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 60px;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--creme);
    padding: 12px 0;
    border-bottom: 1.5px solid var(--brun);
    border-top: 1px solid rgba(58,40,24,0.18);
    box-shadow: 0 12px 28px rgba(58,40,24,0.12);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 14px 24px;
    font-size: 11px;
    letter-spacing: 0.28em;
    border-bottom: 1px solid rgba(58,40,24,0.08);
  }
  .nav-links a:last-child { border-bottom: 0; }
  .nav-links a.active::after { display: none; }
  .nav-cta { display: none; }

  /* HERO V1 — compact */
  .hero { padding-top: 80px; padding-bottom: 48px; min-height: auto; }
  .hero-v1 .hero-paper { padding: 0 16px; }
  .hero-v1 .hero-logo-wrap { flex-direction: column; align-items: center; text-align: center; gap: 16px; padding-bottom: 16px; }
  .hero-v1 .hero-logo-wrap .right-stamps { text-align: center; align-items: center; }
  .logo-mark .lm-top { font-size: 26px; }
  .logo-mark .lm-mid { gap: 12px; }
  .logo-mark .lm-mid .lm-num { font-size: 16px; }
  .logo-mark .lm-mid .lm-script { font-size: 30px; }
  .logo-mark .lm-bot { font-size: 17px; }
  .hero-v1 h1 { font-size: clamp(42px, 12vw, 64px); margin-bottom: 20px; line-height: 0.95; }
  .hero-v1 .lede { font-size: 17px; margin-bottom: 24px; }
  .hero-v1 .lede::first-letter { font-size: 2.8em; padding: 4px 8px 0 0; }
  .hero-v1 .cta-row { gap: 10px; flex-direction: column; align-items: stretch; }
  .hero-v1 .cta-row .btn { padding: 14px 20px; font-size: 10px; letter-spacing: 0.22em; justify-content: center; }
  .hero-v1 .hero-side { padding-top: 24px; }
  .hero-v1 .ticker-item { padding: 14px 0; }
  .hero-v1 .ticker-item .val { font-size: 21px; }

  /* Section heads */
  .sect-head { margin-bottom: 40px; padding-bottom: 20px; }
  .sect-head h2 { font-size: 38px; line-height: 1.02; }
  .sect-head .desc { font-size: 16px; margin-top: 14px; }
  .kicker { font-size: 10px; letter-spacing: 0.3em; margin-bottom: 18px; }
  .kicker::before { width: 22px; }

  /* Manifesto */
  .manifesto .promesse { font-size: 26px; }
  .manifesto .marquee { gap: 12px 22px; padding-top: 24px; margin-top: 32px; flex-direction: column; }
  .manifesto .marquee span { font-size: 10px; letter-spacing: 0.25em; }

  /* Poles overview */
  .poles-grid, .cibles-grid, .methode-grid, .creation-grid { grid-template-columns: 1fr; }
  .pole-card { min-height: auto; padding: 32px 24px; }
  .pole-card h3 { font-size: 26px; }
  .pole-card .ssh { font-size: 22px; }

  /* Pôle detail */
  .pole-detail { padding: 64px 0; }
  .pole-detail .pd-inner { padding: 0 20px; gap: 32px; }
  .pole-detail .pd-img--small { max-width: 280px; aspect-ratio: 1/1; margin: 0 auto !important; }
  .pole-detail .pd-content h3 { font-size: 36px; }
  .pole-detail .pd-content .accent { font-size: 30px; margin-bottom: 18px; }
  .pole-detail .pd-content .lede { font-size: 16.5px; margin-bottom: 22px; }
  .pole-detail .pd-content ul { gap: 10px; margin-bottom: 24px; }
  .pole-detail .pd-content ul li { font-size: 15px; padding-left: 22px; }
  .pole-detail .pd-content .pd-meta { gap: 18px; padding-top: 18px; }
  .pole-detail .pd-content .pd-meta div { font-size: 9px; letter-spacing: 0.22em; }
  .pole-detail .pd-content .pd-meta div strong { font-size: 14px; }
  .pole-detail .pd-stamp { font-size: 9px; padding: 8px 12px; left: -8px; bottom: 16px; }

  /* Comparatif PRO vs CIVIL — stack en mobile */
  .comp-table {
    grid-template-columns: 1fr;
    border: 1px solid rgba(58,40,24,0.2);
    background: var(--creme);
  }
  .comp-table > div {
    border-right: 0 !important;
    border-bottom: 1px solid rgba(58,40,24,0.15);
    padding: 14px 18px;
  }
  .comp-table .top-left { display: none; }
  .comp-table .col-head { display: none; }
  .comp-table .row-head {
    background: var(--rouge);
    color: var(--creme);
    border-bottom: 0;
    font-size: 10px;
    padding: 14px 18px;
  }
  .comp-table .row-head + div::before,
  .comp-table .row-head + div + div::before {
    display: block;
    font-family: var(--f-mono);
    font-size: 9px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--rouge);
    margin-bottom: 4px;
  }
  .comp-table .row-head + div::before { content: "Pro"; }
  .comp-table .row-head + div + div::before { content: "Civil"; }
  .comp-table .row-head + div + div { background: rgba(124,38,28,0.04); }

  /* Réassort */
  .reassort .ra-grid { padding: 0 20px; gap: 36px; }
  .reassort h3 { font-size: 34px; }
  .reassort .lede { font-size: 16.5px; }
  .reassort .ra-steps li { padding: 16px 18px; gap: 14px; }
  .reassort .ra-steps .n { font-size: 26px; }
  .reassort .ra-steps .text { font-size: 15px; }

  /* Verrerie cards */
  .verres-grid { grid-template-columns: 1fr; gap: 16px; }
  .verres-card { padding: 32px 24px; }
  .verres-card h4 { font-size: 28px; }
  .verres-card .feats li { grid-template-columns: 90px 1fr; font-size: 14px; gap: 10px; }

  /* Viticole */
  .viticole .vc-grid { padding: 0 20px; gap: 36px; }
  .viticole h3 { font-size: 36px; }
  .viticole .lede { font-size: 17px; }
  .viticole .vc-img { max-width: 100%; margin: 0 auto; aspect-ratio: 1/1; border-width: 6px; }
  .viticole .vc-stamp { font-size: 9px; padding: 9px 14px; bottom: -12px; right: -12px; }

  /* Création */
  .creation-card { padding: 30px 22px; }
  .creation-card h4 { font-size: 22px; }
  .creation-card .ssh { font-size: 19px; }

  /* Événementiel */
  .event-wrap .event-grid { gap: 32px; }
  .event-grid .left h3 { font-size: 36px; }
  .event-grid .left .accent { font-size: 30px; margin-bottom: 18px; }
  .event-grid .left p { font-size: 16.5px; }
  .event-grid .right ul li { padding: 16px 0; gap: 14px; }
  .event-grid .right .n { font-size: 21px; }
  .event-grid .right .text { font-size: 14.5px; }

  /* Méthode */
  .methode-step { padding: 28px 22px; }
  .methode-step .stp { font-size: 44px; margin-bottom: 14px; }
  .methode-step h4 { font-size: 22px; }

  /* Pull quote */
  .pull-quote { padding: 64px 0; }
  .pull-quote blockquote { font-size: 26px; padding: 0 20px; }
  .pull-quote::before { font-size: 280px; top: -60px; }
  .pull-quote cite { font-size: 10px; margin-top: 24px; }

  /* Cibles */
  .cible-card { min-height: auto; padding: 32px 24px; border-right: 0; border-bottom: 1px solid rgba(58,40,24,0.2); }
  .cible-card:last-child { border-bottom: 0; }
  .cible-card::before { font-size: 64px; top: 12px; right: 18px; }
  .cible-card h4 { font-size: 24px; }
  .cible-card .accent { font-size: 19px; }

  /* Fondateur */
  .fondateur-wrap .fond-grid { gap: 36px; }
  .fond-portrait { aspect-ratio: 4/5; max-width: 360px; margin: 0 auto; }
  .fond-portrait .sig { font-size: 38px; bottom: 16px; left: 16px; right: 16px; }
  .fond-content h3 { font-size: 40px; }
  .fond-content .accent { font-size: 32px; margin-bottom: 22px; }
  .fond-content p { font-size: 16px; line-height: 1.6; }
  .fond-content p:first-of-type::first-letter { font-size: 3em; padding: 4px 8px 0 0; }
  .fond-skills { grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; padding-top: 22px; }

  /* FAQ */
  .faq-item summary { grid-template-columns: 36px 1fr 28px; gap: 12px; padding: 22px 0; }
  .faq-item summary .num { font-size: 9px; letter-spacing: 0.2em; }
  .faq-item summary .q { font-size: 19px; line-height: 1.25; }
  .faq-item summary .toggle { font-size: 26px; }
  .faq-item .a { padding: 0 0 24px 48px; font-size: 15.5px; }

  /* Contact */
  .contact-wrap .contact-grid { padding: 0 20px; gap: 36px; }
  .contact-left h2 { font-size: 42px; }
  .contact-left .lede { font-size: 17px; margin: 22px 0 32px; }
  .channel { grid-template-columns: 36px 1fr auto; gap: 14px; padding: 16px 14px; }
  .channel .ico { width: 36px; height: 36px; }
  .channel .ico svg { width: 16px; height: 16px; }
  .channel .info .l { font-size: 8.5px; letter-spacing: 0.25em; }
  .channel .info .v { font-size: 15.5px; line-height: 1.2; }
  .channel .arrow { font-size: 16px; }
  .contact-form .row { grid-template-columns: 1fr; gap: 12px; }
  .contact-form input, .contact-form select, .contact-form textarea { font-size: 16px; padding: 14px 14px; }
  .contact-form .ft-title { font-size: 24px; }
  .contact-form button { width: 100%; justify-self: stretch; text-align: center; justify-content: center; }

  /* Footer */
  footer { padding: 48px 20px 24px; }
  .foot-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
  .foot-brand { font-size: 26px; }
  .foot-brand .ssh { font-size: 22px; }
  .foot-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* Hero V2 mobile */
  .hero-v2 h1 { font-size: clamp(44px, 12vw, 72px); }
  .hero-v2 .sub { font-size: 17px; }
  .hero-v2 .stamp { font-size: 9px; padding: 6px 10px; }
  .hero-v2 .meta { gap: 18px; }
  .hero-v2 .meta-item { font-size: 9.5px; }
  .hero-v2 .meta-item strong { font-size: 18px; }
  .hero-v2 .cta-row { flex-direction: column; }
  .hero-v2 .cta-row .btn { justify-content: center; }

  /* Hero V3 mobile */
  .hero-v3 .inner { padding: 100px 20px 40px; }
  .hero-v3 h1 { font-size: clamp(38px, 11vw, 64px); }
  .hero-v3 .sub { font-size: 17px; margin: 24px auto 32px; }
  .hero-v3 .badges { gap: 24px; margin-top: 48px; padding-top: 24px; }
  .hero-v3 .badge .v { font-size: 19px; }
  .hero-v3 .cta-row { flex-direction: column; }
  .hero-v3 .cta-row .btn { justify-content: center; }
  .hero-v3 .top-rule { gap: 10px; margin-bottom: 36px; font-size: 9px; }
  .hero-v3 .top-rule::before, .hero-v3 .top-rule::after { width: 28px; }
}

/* === SMALL PHONES (≤ 480 px) === */
@media (max-width: 480px) {
  .hero-v1 h1 { font-size: 40px; }
  .sect-head h2 { font-size: 32px; }
  .pole-detail .pd-img--small { max-width: 240px; }
  .pull-quote blockquote { font-size: 23px; }
  .reassort h3, .viticole h3, .event-grid .left h3 { font-size: 30px; }
  .fond-content h3, .contact-left h2 { font-size: 34px; }
  .fond-skills { grid-template-columns: 1fr; }
}


/* =========================================================
   PAGE HEADERS (inner pages)
   ========================================================= */
.page-header {
  padding: 130px var(--pad) 72px;
  border-bottom: 1.5px solid var(--brun);
  background: var(--creme);
  position: relative;
}
.page-header::before {
  content: '';
  position: absolute;
  bottom: -6px; left: 0; right: 0;
  height: 1px;
  background: var(--brun);
  opacity: 0.5;
}
.page-header .container { max-width: var(--container); margin: 0 auto; }
.page-header .crumbs {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(58,40,24,0.6);
  margin-bottom: 24px;
}
.page-header .crumbs a {
  color: var(--rouge);
  text-decoration: none;
  margin-right: 6px;
}
.page-header .crumbs a:hover { text-decoration: underline; }
.page-header .crumbs .sep {
  margin: 0 10px;
  opacity: 0.5;
}
.page-header h1 {
  font-family: var(--f-display);
  font-size: clamp(56px, 9vw, 128px);
  line-height: 0.92;
  color: var(--ink);
  margin-bottom: 22px;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.page-header h1 .accent {
  font-family: var(--f-script);
  color: var(--rouge);
  font-size: 1.1em;
  display: inline-block;
  transform: rotate(-3deg);
  padding: 0 0.04em;
  line-height: 0.9;
}
.page-header .intro {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 22px;
  color: var(--brun);
  max-width: 720px;
  line-height: 1.55;
  margin-bottom: 36px;
}
.page-header .header-meta {
  display: flex;
  gap: 64px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(58,40,24,0.18);
  max-width: 900px;
}
.page-header .header-meta div {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(58,40,24,0.6);
}
.page-header .header-meta div strong {
  display: block;
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--rouge);
  margin-top: 6px;
  font-weight: 400;
}

/* =========================================================
   SUB-NAV (sticky, sur Services)
   ========================================================= */
.sub-nav {
  position: sticky;
  top: 60px;
  z-index: 40;
  background: rgba(242,235,211,0.96);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(58,40,24,0.18);
  padding: 14px 0;
}
.sub-nav .container {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.sub-nav .container::-webkit-scrollbar { display: none; }
.sub-nav a {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brun);
  opacity: 0.7;
  white-space: nowrap;
  padding: 4px 0;
  text-decoration: none;
  transition: color 0.2s, opacity 0.2s;
  position: relative;
}
.sub-nav a:hover,
.sub-nav a.active {
  color: var(--rouge);
  opacity: 1;
}
.sub-nav a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 1px;
  background: var(--rouge);
}

/* =========================================================
   CTA BAND (bas de page interne)
   ========================================================= */
.cta-band {
  padding: clamp(72px, 9vw, 120px) 0;
  text-align: center;
  background: var(--rouge);
  color: var(--creme);
  position: relative;
  overflow: hidden;
}
.cta-band .container { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad); }
.cta-band .label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(242,235,211,0.7);
  margin-bottom: 22px;
  display: block;
}
.cta-band h2 {
  font-family: var(--f-display);
  font-size: clamp(40px, 6vw, 78px);
  line-height: 1;
  margin-bottom: 22px;
  font-weight: 400;
  color: var(--creme);
}
.cta-band h2 .accent {
  font-family: var(--f-script);
  color: rgba(242,235,211,0.85);
  font-size: 1.1em;
  display: inline-block;
  transform: rotate(-3deg);
  padding: 0 0.05em;
}
.cta-band p {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 20px;
  color: rgba(242,235,211,0.85);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.55;
}
.cta-band .cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Mobile : page-header + sub-nav + cta-band */
@media (max-width: 720px) {
  .page-header { padding: 100px 20px 48px; }
  .page-header h1 { font-size: clamp(44px, 13vw, 72px); }
  .page-header .intro { font-size: 17px; margin-bottom: 24px; }
  .page-header .crumbs { font-size: 9px; letter-spacing: 0.24em; margin-bottom: 18px; }
  .page-header .header-meta { gap: 24px; padding-top: 22px; }
  .page-header .header-meta div { font-size: 9px; }
  .page-header .header-meta div strong { font-size: 18px; }

  .sub-nav { padding: 10px 0; }
  .sub-nav .container { gap: 22px; padding: 0 20px; }
  .sub-nav a { font-size: 9.5px; letter-spacing: 0.22em; }

  .cta-band { padding: 64px 0; }
  .cta-band h2 { font-size: 38px; padding: 0 20px; }
  .cta-band p { font-size: 17px; padding: 0 20px; }
  .cta-band .cta-row { flex-direction: column; padding: 0 24px; }
  .cta-band .cta-row .btn { justify-content: center; }
}
