/* ════════════════════════════════════════════════════════
   GTZ — Carbone forestier de haute intégrité
   Feuille de style unique · mobile-first · zéro dépendance
   ════════════════════════════════════════════════════════ */

:root {
  --forest-950: #081710;
  --forest-900: #0c1f12;
  --forest-800: #16412a;
  --forest-700: #1e5435;
  --gold: #c9a23a;
  --gold-light: #e0c84e;
  --gold-dim: rgba(201, 162, 58, 0.35);
  --cream: #f4efe6;
  --paper: #faf8f2;
  --ink: #22312a;
  --muted: #5a6b5a;
  --white: #ffffff;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --header-h: 72px;
  --radius: 14px;
  --shadow-card: 0 4px 24px rgba(12, 31, 18, 0.07);
  --shadow-card-hover: 0 10px 36px rgba(12, 31, 18, 0.13);
  --maxw: 1180px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, video, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; border: 0; background: none; cursor: pointer; color: inherit; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* ── Eyebrow / labels ── */
.eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
}
.eyebrow--line { display: inline-flex; align-items: center; gap: 12px; }
.eyebrow--line::before, .eyebrow--line::after {
  content: ""; width: 32px; height: 1px; background: var(--gold-dim);
}

/* ════════ HEADER ════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  background: rgba(8, 23, 16, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.site-header .wrap {
  height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand img { width: 44px; height: 44px; object-fit: contain; flex-shrink: 0; }
.brand-name {
  font-family: var(--font-display); font-size: 22px; letter-spacing: 0.28em;
  color: var(--gold); font-weight: 600; line-height: 1;
}
.brand-sub {
  display: block; font-family: var(--font-body); font-size: 9px; font-weight: 500;
  letter-spacing: 0.24em; text-transform: uppercase; color: rgba(255,255,255,0.55);
  margin-top: 4px;
}

.main-nav { display: none; }

.site-header .header-cta { display: none; }

.header-right { display: none; }
.site-header .header-right { display: none; }

.lang-switch {
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em;
  color: rgba(244,239,230,0.75); padding: 8px 12px; border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.18); transition: border-color 0.2s, color 0.2s;
}
.lang-switch:hover { color: var(--gold-light); border-color: var(--gold); }

.mnav-lang {
  display: block; padding: 15px 8px; font-family: var(--font-display);
  font-size: 18px; color: var(--gold-light) !important;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.burger {
  width: 44px; height: 44px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 5px; flex-shrink: 0;
}
.burger span {
  display: block; width: 22px; height: 2px; background: var(--cream);
  border-radius: 2px; transition: transform 0.25s ease, opacity 0.25s ease;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile drawer ── */
.mobile-nav {
  position: fixed; inset: var(--header-h) 0 0 0; z-index: 99;
  background: #081710;
  padding: 28px 24px 40px;
  display: flex; flex-direction: column; gap: 4px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  display: block; padding: 15px 8px;
  font-family: var(--font-display); font-size: 21px; color: var(--cream);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mobile-nav a:active, .mobile-nav a.current { color: var(--gold); }
.mobile-nav .nav-contact {
  margin-top: 28px; text-align: center;
  background: var(--gold); color: var(--forest-950);
  font-family: var(--font-body); font-size: 13px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 16px; border-radius: 8px; border-bottom: 0;
}

/* ════════ HERO ════════ */
.hero {
  position: relative; min-height: 92vh; min-height: 92svh;
  display: flex; align-items: center; justify-content: center;
  background: var(--forest-950); color: var(--cream);
  padding: calc(var(--header-h) + 48px) 20px 90px;
  text-align: center; overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-media video, .hero-media img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.5;
}
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,23,16,0.55) 0%, rgba(8,23,16,0.35) 45%, rgba(8,23,16,0.82) 100%);
}
.hero-inner { position: relative; z-index: 2; max-width: 780px; }
.hero h1 {
  font-size: clamp(34px, 8.5vw, 64px);
  color: var(--white); margin: 6px 0 22px;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero p {
  font-size: clamp(16px, 4vw, 19px); color: rgba(244,239,230,0.82);
  max-width: 580px; margin: 0 auto 36px;
}
.hero-actions { display: flex; flex-direction: column; gap: 14px; align-items: center; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 34px; border-radius: 8px; white-space: nowrap;
  font-size: 13px; font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  min-height: 48px;
}
.btn:active { transform: scale(0.98); }
.btn--gold { background: var(--gold); color: var(--forest-950); }
.btn--gold:hover { background: var(--gold-light); }
.btn--ghost { border: 1px solid rgba(244,239,230,0.45); color: var(--cream); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-light); }
.btn--forest { background: var(--forest-900); color: var(--cream); }
.btn--forest:hover { background: var(--forest-800); }

.scroll-hint {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2;
  color: rgba(244,239,230,0.6); font-size: 22px;
  animation: hint 2.2s ease-in-out infinite;
}
@keyframes hint { 0%,100% { transform: translate(-50%, 0); opacity: 0.8; } 50% { transform: translate(-50%, 9px); opacity: 0.35; } }

/* ════════ SECTIONS ════════ */
.section { padding: 72px 0; }
.section--cream { background: var(--cream); }
.section--dark { background: var(--forest-950); color: var(--cream); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.section-head h2 { font-size: clamp(27px, 6.4vw, 42px); color: var(--forest-900); }
.section--dark .section-head h2 { color: var(--white); }
.section-head .lede { margin-top: 14px; color: var(--muted); font-size: 17px; font-style: italic; }
.section--dark .section-head .lede { color: rgba(244,239,230,0.65); }

/* ── Card grids ── */
.grid { display: grid; grid-template-columns: 1fr; gap: 22px; }

.card {
  background: var(--white); border-radius: var(--radius);
  border-left: 4px solid var(--gold);
  padding: 30px 26px;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-3px); }
.card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 16px; }
.card-num { font-size: 12px; letter-spacing: 0.2em; color: var(--gold); font-weight: 600; }
.card-icon { font-size: 26px; color: var(--gold); line-height: 1; }
.card h3 { font-size: 22px; color: var(--forest-900); margin-bottom: 14px; }
.card ul { display: grid; gap: 9px; }
.card ul li {
  position: relative; padding-left: 18px; font-size: 14.5px; color: var(--muted); line-height: 1.55;
}
.card ul li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
}
.card p { font-size: 15px; color: var(--muted); }

.section-cta { text-align: center; margin-top: 44px; }
.text-link {
  font-size: 13px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); border-bottom: 1px solid var(--gold-dim); padding-bottom: 3px;
}
.text-link:hover { color: var(--forest-800); border-color: var(--forest-800); }

/* ════════ MÉCANISME ════════ */
.credit-equation {
  display: flex; align-items: stretch; gap: 0;
  max-width: 480px; margin: 0 auto 56px;
  border: 1px solid var(--gold-dim); border-radius: 10px; overflow: hidden;
}
.credit-equation .eq-one {
  background: rgba(201,162,58,0.12); padding: 20px 26px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  border-right: 1px solid var(--gold-dim);
}
.credit-equation .eq-one strong { font-family: var(--font-display); font-size: 42px; color: var(--gold); line-height: 1; }
.credit-equation .eq-one span { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-top: 4px; }
.credit-equation .eq-rest { padding: 20px 22px; display: flex; flex-direction: column; justify-content: center; text-align: left; }
.credit-equation .eq-rest strong { font-size: 16px; color: var(--white); }
.credit-equation .eq-rest span { font-size: 12.5px; font-style: italic; color: rgba(244,239,230,0.55); margin-top: 3px; }

.steps { display: grid; grid-template-columns: 1fr; gap: 20px; }
.step {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 36px 26px; text-align: center;
}
.step-badge {
  width: 64px; height: 64px; margin: 0 auto 18px;
  border: 1px solid var(--gold-dim); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: var(--gold);
}
.step-num { font-size: 11px; letter-spacing: 0.3em; color: rgba(244,239,230,0.45); }
.step h3 { font-size: 23px; color: var(--white); margin: 8px 0 2px; }
.step .step-en { font-size: 13px; font-style: italic; color: rgba(244,239,230,0.45); margin-bottom: 14px; }
.step p { font-size: 14.5px; color: rgba(244,239,230,0.72); }
.step-tag {
  display: inline-block; margin-top: 18px; padding: 7px 16px;
  border: 1px solid var(--gold-dim); border-radius: 100px;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold);
}

.mechanism-close { text-align: center; margin-top: 52px; }
.mechanism-close p.big {
  font-family: var(--font-display); font-size: clamp(20px, 5vw, 28px); color: var(--white); max-width: 640px; margin: 0 auto;
}
.mechanism-close p.big em { color: var(--gold-light); font-style: italic; }
.assurances {
  margin-top: 38px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  max-width: 760px; margin-left: auto; margin-right: auto;
}
.assurances span {
  font-size: 11.5px; letter-spacing: 0.07em; text-transform: uppercase;
  color: rgba(244,239,230,0.65); padding: 13px 8px;
  border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; text-align: center;
}

/* ════════ APPROCHE ════════ */
.approach-card { text-align: left; border-left: 0; border-top: 4px solid var(--gold); }
.approach-card h3 { margin-top: 6px; }

/* ════════ CADRE DE RÉFÉRENCE / CERTIFICATIONS ════════ */
.cert-card { border-left: 0; padding: 32px 28px; }
.cert-label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.cert-card h3 { margin: 10px 0 12px; font-size: 21px; }
.cert-why {
  margin-top: 18px; border-top: 1px solid rgba(12,31,18,0.08); padding-top: 0;
}
.cert-why summary {
  list-style: none; cursor: pointer; padding: 14px 0 0;
  font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--forest-800);
  display: flex; align-items: center; justify-content: space-between; min-height: 44px;
}
.cert-why summary::-webkit-details-marker { display: none; }
.cert-why summary::after { content: "+"; font-size: 19px; color: var(--gold); transition: transform 0.2s ease; }
.cert-why[open] summary::after { transform: rotate(45deg); }
.cert-why p { padding: 8px 0 4px; font-size: 14.5px; color: var(--muted); }

/* ════════ TIMELINE (certifications page) ════════ */
.timeline { max-width: 720px; margin: 0 auto; position: relative; padding-left: 28px; }
.timeline::before {
  content: ""; position: absolute; left: 7px; top: 8px; bottom: 8px;
  width: 2px; background: linear-gradient(180deg, var(--gold), var(--gold-dim));
}
.tl-item { position: relative; padding: 0 0 34px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: ""; position: absolute; left: -28px; top: 7px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--paper); border: 3px solid var(--gold);
}
.tl-year { font-family: var(--font-display); font-size: 24px; color: var(--gold); }
.tl-item h3 { font-size: 18px; color: var(--forest-900); margin: 4px 0 6px; font-family: var(--font-body); font-weight: 600; }
.tl-item p { font-size: 14.5px; color: var(--muted); }

/* ════════ PAGE HEADERS ════════ */
.page-hero {
  background: var(--forest-950); color: var(--cream); text-align: center;
  padding: calc(var(--header-h) + 64px) 20px 64px;
}
.page-hero h1 { font-size: clamp(30px, 7.5vw, 52px); color: var(--white); margin-bottom: 16px; }
.page-hero p { max-width: 620px; margin: 0 auto; color: rgba(244,239,230,0.75); font-size: 17px; }
.page-hero .tagline { margin-top: 14px; font-style: italic; color: var(--gold-light); font-size: 15px; }

/* ════════ PROSE / ARTICLE ════════ */
.prose { max-width: 720px; margin: 0 auto; }
.prose h2 { font-size: clamp(24px, 5.6vw, 32px); color: var(--forest-900); margin: 44px 0 18px; }
.prose h3 { font-size: 21px; color: var(--forest-900); margin: 32px 0 12px; }
.prose p { margin-bottom: 18px; color: var(--ink); font-size: 16.5px; line-height: 1.75; }
.prose p.lead { font-size: 19px; color: var(--muted); }
.prose ul { margin: 0 0 18px; display: grid; gap: 10px; }
.prose ul li { position: relative; padding-left: 22px; line-height: 1.6; }
.prose ul li::before {
  content: ""; position: absolute; left: 2px; top: 10px;
  width: 7px; height: 7px; border-radius: 50%; background: var(--gold);
}
.prose blockquote {
  border-left: 4px solid var(--gold); background: var(--cream);
  border-radius: 0 10px 10px 0; padding: 22px 24px; margin: 28px 0;
  font-family: var(--font-display); font-size: 19px; font-style: italic; color: var(--forest-800);
}

/* ════════ TABLE (crédits) ════════ */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius); box-shadow: var(--shadow-card); }
table.credits { width: 100%; min-width: 640px; border-collapse: collapse; background: var(--white); }
table.credits th {
  background: var(--forest-900); color: var(--gold); text-align: left;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 16px 18px; font-weight: 600;
}
table.credits td { padding: 18px; border-bottom: 1px solid rgba(12,31,18,0.07); font-size: 14.5px; vertical-align: top; }
table.credits td:first-child { font-family: var(--font-display); font-size: 19px; color: var(--forest-900); white-space: nowrap; }
table.credits td strong { color: var(--forest-900); }
table.credits tr.is-gtz { background: rgba(201,162,58,0.08); }
.table-note { margin-top: 14px; font-size: 14px; color: var(--muted); font-style: italic; text-align: center; }

/* ════════ CYCLE DU CRÉDIT (page carbon) ════════ */
.cycle {
  background: var(--forest-950); border-radius: var(--radius);
  padding: 38px 24px; color: var(--cream);
}
.cycle-title {
  text-align: center; font-family: var(--font-display); font-size: 22px;
  color: var(--gold-light); margin-bottom: 30px;
}
.cycle-steps { display: grid; grid-template-columns: 1fr; gap: 0; counter-reset: cy; }
.cycle-step {
  position: relative; display: flex; gap: 16px; align-items: flex-start;
  padding: 0 0 26px 0; counter-increment: cy;
}
.cycle-step:not(:last-child)::before {
  content: ""; position: absolute; left: 26px; top: 54px; bottom: 0;
  width: 2px; background: linear-gradient(180deg, var(--gold-dim), rgba(201,162,58,0.12));
}
.cy-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  border: 1px solid var(--gold-dim); border-radius: 50%;
  background: rgba(201,162,58,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; position: relative; z-index: 1;
}
.cycle-step strong {
  display: block; font-family: var(--font-display); font-size: 18px; color: var(--white);
}
.cycle-step strong::before {
  content: "0" counter(cy) " · "; font-family: var(--font-body); font-size: 12px;
  letter-spacing: 0.18em; color: var(--gold); vertical-align: 2px;
}
.cycle-step p { font-size: 14px; color: rgba(244,239,230,0.7); margin-top: 4px; }
.cycle-return {
  margin-top: 6px; padding: 16px 18px; text-align: center;
  border: 1px dashed var(--gold-dim); border-radius: 10px;
  font-size: 14px; color: var(--gold-light); font-style: italic;
}
.cycle-return span { font-style: normal; margin-right: 8px; }

/* ════════ MARCHÉS (2 cols) ════════ */
.split { display: grid; grid-template-columns: 1fr; gap: 22px; }

/* ════════ FAQ ════════ */
.faq { max-width: 760px; margin: 0 auto; display: grid; gap: 12px; }
.faq details {
  background: var(--white); border-radius: 10px; box-shadow: var(--shadow-card);
  padding: 0 22px;
}
.faq summary {
  list-style: none; cursor: pointer; min-height: 56px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 16px 0; font-weight: 600; font-size: 15.5px; color: var(--forest-900);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 22px; color: var(--gold); flex-shrink: 0; transition: transform 0.2s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 0 20px; font-size: 14.5px; color: var(--muted); }

/* ════════ STATS (impact) ════════ */
.stats { display: grid; grid-template-columns: 1fr; gap: 18px; }
.stat {
  background: var(--white); border-radius: var(--radius); padding: 30px 26px;
  border-top: 4px solid var(--gold); box-shadow: var(--shadow-card);
}
.stat strong { display: block; font-family: var(--font-display); font-size: clamp(30px, 7vw, 40px); color: var(--forest-900); line-height: 1.1; }
.stat p { margin-top: 10px; font-size: 14.5px; color: var(--ink); }
.stat cite { display: block; margin-top: 12px; font-size: 12px; font-style: normal; color: var(--muted); letter-spacing: 0.04em; }
.stat cite::before { content: "— "; color: var(--gold); }

/* ════════ ÉQUIPE ════════ */
.team { display: grid; grid-template-columns: 1fr; gap: 20px; }
.member {
  background: var(--white); border-radius: var(--radius); padding: 32px 26px;
  text-align: center; box-shadow: var(--shadow-card);
}
.member-initial {
  width: 72px; height: 72px; margin: 0 auto 16px; border-radius: 50%;
  background: var(--forest-900); color: var(--gold);
  font-family: var(--font-display); font-size: 31px;
  display: flex; align-items: center; justify-content: center;
}
.member h3 { font-size: 23px; color: var(--forest-900); }
.member .role { margin: 6px 0 12px; font-size: 12.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }
.member p { font-size: 14.5px; color: var(--muted); }

/* ════════ PRINCIPES ════════ */
.principles { display: grid; grid-template-columns: 1fr; gap: 14px; max-width: 760px; margin: 0 auto; }
.principle {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--white); border-radius: 10px; padding: 22px;
  box-shadow: var(--shadow-card);
}
.principle .p-num { font-family: var(--font-display); font-size: 24px; color: var(--gold); line-height: 1.2; flex-shrink: 0; }
.principle h3 { font-size: 17px; color: var(--forest-900); font-family: var(--font-body); font-weight: 600; }
.principle p { font-size: 14px; color: var(--muted); margin-top: 4px; }

/* ════════ NEWS ════════ */
.news-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
.news-card {
  background: var(--white); border-radius: var(--radius); padding: 30px 26px;
  box-shadow: var(--shadow-card); display: flex; flex-direction: column;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.news-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-3px); }
.news-meta { display: flex; gap: 12px; align-items: center; margin-bottom: 14px; font-size: 12px; }
.news-cat {
  padding: 5px 12px; border-radius: 100px; background: rgba(201,162,58,0.14);
  color: var(--gold); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; font-size: 10.5px;
}
.news-date { color: var(--muted); }
.news-card h3 { font-size: 21px; color: var(--forest-900); margin-bottom: 12px; }
.news-card p { font-size: 14.5px; color: var(--muted); flex: 1; }
.news-card .text-link { margin-top: 20px; align-self: flex-start; }

.article-meta { display: flex; justify-content: center; gap: 14px; margin-top: 20px; font-size: 13px; color: rgba(244,239,230,0.6); align-items: center; }

/* ════════ NEWS — MAGAZINE LAYOUT ════════ */
.news-hero { background: var(--forest-950); color: var(--cream); padding: calc(var(--header-h) + 56px) 0 56px; }
.news-hero .wrap { text-align: center; }
.news-hero h1 { font-size: clamp(30px, 7.5vw, 52px); color: var(--white); margin-bottom: 14px; }
.news-hero p { max-width: 600px; margin: 0 auto; color: rgba(244,239,230,0.72); font-size: 16.5px; }

/* Featured lead article */
.featured {
  display: grid; grid-template-columns: 1fr; gap: 0;
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-card); margin-bottom: 44px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.featured:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-2px); }
.featured-visual {
  background: linear-gradient(135deg, var(--forest-800), var(--forest-950));
  min-height: 200px; position: relative;
  display: flex; align-items: center; justify-content: center; padding: 36px;
}
.featured-visual .fv-glyph { font-size: 64px; opacity: 0.92; }
.featured-visual .fv-tag {
  position: absolute; top: 18px; left: 18px;
  background: var(--gold); color: var(--forest-950);
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 13px; border-radius: 100px;
}
.featured-body { padding: 32px 28px; }
.featured-body .news-meta { margin-bottom: 14px; }
.featured-body h2 { font-size: clamp(23px, 4.5vw, 32px); color: var(--forest-900); line-height: 1.18; margin-bottom: 14px; }
.featured-body p { color: var(--muted); font-size: 16px; margin-bottom: 22px; }

/* Filter bar */
.news-filter {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
  margin-bottom: 36px;
}
.news-filter button {
  padding: 9px 18px; border-radius: 100px; font-size: 13px; font-weight: 500;
  background: var(--white); color: var(--muted);
  border: 1px solid rgba(12,31,18,0.12); transition: all 0.2s ease;
}
.news-filter button:hover { border-color: var(--gold); color: var(--forest-800); }
.news-filter button.active { background: var(--forest-900); color: var(--cream); border-color: var(--forest-900); }

/* Category tag colours */
.news-cat[data-cat="Policy"], .news-cat[data-cat="Politique"] { background: rgba(26,82,118,0.14); color: #1a5276; }
.news-cat[data-cat="Market"], .news-cat[data-cat="Marché"] { background: rgba(201,162,58,0.16); color: #9a7d1e; }
.news-cat[data-cat="Science"] { background: rgba(30,132,73,0.14); color: #1e8449; }
.news-cat[data-cat="Integrity"], .news-cat[data-cat="Intégrité"] { background: rgba(192,57,43,0.12); color: #b03a2e; }

.news-card.is-hidden { display: none; }

/* Timeline strip */
.news-timeline { margin-top: 8px; }
.nt-track { display: grid; grid-template-columns: 1fr; gap: 0; }
.nt-item { position: relative; padding: 0 0 28px 30px; }
.nt-item::before {
  content: ""; position: absolute; left: 7px; top: 6px; bottom: -6px; width: 2px;
  background: var(--gold-dim);
}
.nt-item:last-child::before { display: none; }
.nt-item::after {
  content: ""; position: absolute; left: 0; top: 5px; width: 16px; height: 16px;
  border-radius: 50%; background: var(--paper); border: 3px solid var(--gold);
}
.nt-date { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }
.nt-item h3 { font-size: 17px; color: var(--forest-900); margin: 3px 0 5px; font-family: var(--font-body); font-weight: 600; }
.nt-item p { font-size: 14px; color: var(--muted); }

/* ════════ CONTACT ════════ */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 36px; }
.contact-form { background: var(--white); border-radius: var(--radius); padding: 32px 26px; box-shadow: var(--shadow-card); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--forest-800); margin-bottom: 7px; }
.field label span { color: var(--muted); font-weight: 400; text-transform: none; letter-spacing: 0; font-style: italic; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; min-height: 48px;
  border: 1px solid rgba(12,31,18,0.16); border-radius: 8px;
  font: inherit; font-size: 15px; color: var(--ink); background: var(--paper);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,58,0.15);
}
.field textarea { min-height: 140px; resize: vertical; }
.contact-side .member { margin-bottom: 16px; text-align: left; display: flex; gap: 16px; align-items: center; padding: 20px; }
.contact-side .member-initial { width: 52px; height: 52px; font-size: 22px; margin: 0; flex-shrink: 0; }
.contact-side .member h3 { font-size: 18px; }
.contact-side .member .role { margin: 2px 0 0; }
.contact-email {
  display: block; text-align: center; margin-top: 8px;
  font-family: var(--font-display); font-size: 19px; color: var(--forest-800);
  padding: 18px; background: var(--cream); border-radius: 10px;
}
.contact-email:hover { color: var(--gold); }

/* ════════ CTA BAND ════════ */
.cta-band {
  background: var(--forest-950); border-radius: var(--radius);
  padding: 56px 28px; text-align: center; color: var(--cream);
}
.cta-band h2 { font-size: clamp(25px, 6vw, 36px); color: var(--white); }
.cta-band .en { margin: 10px 0 28px; font-style: italic; color: var(--gold-light); font-size: 15px; }

/* ════════ FOOTER ════════ */
.site-footer { background: var(--forest-950); color: rgba(244,239,230,0.7); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 36px; }
.footer-brand img { width: 52px; margin-bottom: 14px; }
.footer-brand .brand-name { font-size: 24px; }
.footer-brand p { margin-top: 12px; font-size: 14px; max-width: 280px; }
.footer-col h4 {
  font-family: var(--font-body); font-size: 11px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { font-size: 14px; padding: 3px 0; display: inline-block; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-direction: column; gap: 8px; align-items: center; text-align: center;
  font-size: 12.5px; color: rgba(244,239,230,0.45);
}
.footer-bottom .dot { color: var(--gold); }

/* ════════ REVEAL (progressive enhancement, contenu TOUJOURS visible) ════════ */
@media (prefers-reduced-motion: no-preference) {
  .js .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .js .reveal.in { opacity: 1; transform: none; }
}

/* ════════ ≥ 640px ════════ */
@media (min-width: 640px) {
  .hero-actions { flex-direction: row; justify-content: center; }
  .grid--2, .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .assurances { grid-template-columns: repeat(4, 1fr); }
  .split { grid-template-columns: 1fr 1fr; }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .flow-diagram { flex-direction: row; justify-content: center; flex-wrap: wrap; }
}

/* ════════ ≥ 1024px : desktop ════════ */
@media (min-width: 1024px) {
  .section { padding: 104px 0; }
  .wrap { padding: 0 32px; }

  .burger, .mobile-nav { display: none; }

  .main-nav { display: flex; gap: 4px; align-items: center; }
  .main-nav a {
    padding: 10px 13px; font-size: 13px; font-weight: 500; white-space: nowrap;
    color: rgba(244,239,230,0.78); border-radius: 6px;
    transition: color 0.2s ease;
  }
  .main-nav a:hover { color: var(--gold-light); }
  .main-nav a.current { color: var(--gold); }

  .site-header .header-right {
    display: flex; align-items: center; gap: 14px;
  }
  .site-header .header-cta {
    display: inline-flex; padding: 11px 20px; min-height: 0;
    font-size: 11.5px; white-space: nowrap;
  }

  .grid--3 { grid-template-columns: repeat(3, 1fr); }

  .cycle { padding: 48px 40px; }
  .cycle-steps { grid-template-columns: repeat(5, 1fr); gap: 22px; }
  .cycle-step { flex-direction: column; align-items: center; text-align: center; padding: 0; }
  .cycle-step:not(:last-child)::before {
    left: calc(50% + 36px); right: calc(-50% + 36px); top: 26px; bottom: auto;
    width: auto; height: 2px;
    background: linear-gradient(90deg, var(--gold-dim), rgba(201,162,58,0.12));
  }
  .cycle-return { margin-top: 30px; max-width: 560px; margin-left: auto; margin-right: auto; }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .team { grid-template-columns: repeat(3, 1fr); }
  .news-grid { grid-template-columns: repeat(3, 1fr); }
  .featured { grid-template-columns: 1.1fr 1.3fr; }
  .featured-visual { min-height: 320px; }
  .nt-track { grid-template-columns: repeat(2, 1fr); gap: 0 40px; }
  .contact-grid { grid-template-columns: 1.4fr 1fr; align-items: start; }
  .stats { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
  .cta-band { padding: 72px 48px; }
}

/* News cards rely on filter (display), not reveal opacity */
.news-grid .news-card { opacity: 1 !important; transform: none !important; }

/* ── Bouton contact : garantie absolue ligne unique ── */
.header-cta, .nav-contact, .btn { white-space: nowrap !important; }
.site-header .header-cta { flex-shrink: 0; line-height: 1; }
.mobile-nav .nav-contact { white-space: nowrap; }

/* ════════ NEWS CARDS WITH IMAGES ════════ */
.news-card.has-img { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.news-card-img { position: relative; display: block; aspect-ratio: 16/9; overflow: hidden; background: var(--forest-900); }
.news-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.news-card.has-img:hover .news-card-img img { transform: scale(1.05); }
.news-cat--float {
  position: absolute; top: 14px; left: 14px;
  padding: 5px 12px; border-radius: 100px; font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.news-card-body { padding: 24px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.news-card-body h3 { font-size: 20px; line-height: 1.25; color: var(--forest-900); margin-bottom: 12px; }
.news-card-body h3 a { color: inherit; }
.news-card-body h3 a:hover { color: var(--gold); }
.news-card-body p { font-size: 14.5px; color: var(--muted); flex: 1; }
.news-card-body .news-meta { margin-bottom: 12px; }
.news-card-body .text-link { margin-top: 18px; align-self: flex-start; }

/* Featured visual as image */
.featured-visual { background-size: cover; background-position: center; }
.featured-visual .fv-tag { z-index: 2; }

/* ════════ ARTICLE HERO WITH COVER IMAGE ════════ */
.article-hero { background: var(--forest-950); }
.article-hero-img {
  background-size: cover; background-position: center;
  padding: calc(var(--header-h) + 72px) 0 64px;
  text-align: center; color: var(--cream);
}
.article-hero-img h1 { font-size: clamp(28px, 6.5vw, 48px); color: var(--white); margin-bottom: 16px; max-width: 820px; margin-left: auto; margin-right: auto; }
.article-hero-img .eyebrow { color: var(--gold-light); }
.article-hero-img .article-meta { color: rgba(244,239,230,0.8); }

/* ════════ SOURCES BLOCK ════════ */
.article-sources {
  margin-top: 44px; padding: 26px 28px;
  background: var(--cream); border-radius: var(--radius);
  border-left: 4px solid var(--gold);
}
.article-sources h3 {
  font-family: var(--font-body); font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--forest-800); margin-bottom: 14px;
}
.article-sources ul { display: grid; gap: 10px; }
.article-sources li { font-size: 14.5px; line-height: 1.5; }
.article-sources a { color: var(--forest-800); border-bottom: 1px solid var(--gold-dim); padding-bottom: 1px; }
.article-sources a:hover { color: var(--gold); border-color: var(--gold); }
