/* ============================================
   ELANTEC — Site vitrine — Composition layer — v5
   Fichier UNIQUE, sert index.html (Direction A validée — plus de A/B).

   AJUSTEMENTS v5 (retour Greg 2026-07-14, cf. 12-design-rendu-v5.md) :
   - Cartes : entourage GRIS renforcé identique sur .card ET
     .testimonial-card (cf. tokens.css, --color-border-strong), plus de
     bleu nuit. Le filet d'accent orange à gauche (3px) reste la seule
     touche de couleur — orange en accent uniquement.
   - CTA : bande finale réduite à 2 boutons (Devenir membre + Devenir
     mécène), classe renommée .cta-trio → .cta-final (le nom "trio" ne
     décrivait plus le contenu). Hover = inversion de couleur, inchangé.
   - Parcours : ligne de base plus fine (1,25px, était 2px) + tracé orange
     plus épais (3px, était 2px) pour mieux le faire ressortir ; mapping
     scroll recalé sur la frise elle-même (cf. site.js) pour que le tracé
     atteigne l'étape 4 largement avant que la section soit dépassée.

   RETRAITS / AJOUTS v4 (historique, retour Greg 2026-07-14) :
   - Bascule [data-variant="a"|"b"] retirée (converge sur Direction A) —
     cf. tokens.css pour le détail.
   - CTA : effet "cachet" (ombre décalée) retiré. Hover = changement de
     couleur net, cf. règles .btn-primary/.btn-secondary de tokens.css.
   - Cartes : bordure pleine renforcée en bleu nuit (remplacée en v5 par du
     gris, voir ci-dessus).
   - Parcours : frise recentrée (marqueur, ligne, numéros) + tracé SVG
     animé au scroll (stroke-dashoffset piloté en JS pur, cf. site.js).
   ============================================ */

/* ============== COMPOSANTS DS MANQUANTS DE tokens.css ============== */
.label { display: block; font-size: 14px; font-weight: 500; color: var(--color-text-primary); margin-bottom: 6px; }
.field { max-width: 400px; margin-bottom: 16px; }

/* ============== BASE LAYOUT ============== */
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body { padding-top: var(--header-height-desktop); overflow-x: hidden; }
@media (max-width: 768px) { body { padding-top: var(--header-height-mobile); } }

img, svg.illustration { max-width: 100%; display: block; }
.icon { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
ul.reset { list-style: none; margin: 0; padding: 0; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
main { display: block; }
section.section-block { border-top: 1px solid var(--color-border-subtle); }
section.section-block:first-of-type,
section.no-border { border-top: none; }

/* ============== BANDEAU MAQUETTE ============== */
.maquette-flag {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: var(--color-text-primary); color: var(--color-text-on-dark);
  font-family: var(--font-family-mono); font-size: 12px; letter-spacing: 0.04em;
  text-align: center; padding: 6px 12px;
}
.maquette-flag strong { color: var(--color-text-on-dark); font-weight: 700; }
body { margin-top: 0; } /* bandeau maquette retiré (revue/déploiement test) */

/* ============== HEADER ============== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--header-height-desktop);
  background: rgba(250, 250, 247, 0.9);
  backdrop-filter: blur(var(--header-backdrop-blur));
  -webkit-backdrop-filter: blur(var(--header-backdrop-blur));
  border-bottom: 1px solid transparent;
  transition: border-color var(--motion-duration-slow) var(--motion-ease-out),
              box-shadow var(--motion-duration-slow) var(--motion-ease-out);
}
.site-header.is-scrolled { border-bottom-color: var(--color-border-subtle); box-shadow: var(--header-shadow-on-scroll); }
@media (max-width: 768px) { .site-header { height: var(--header-height-mobile); } }
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 100%; }

.header-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
/* Logo officiel de l'association, detoure. Variante blanche sur les fonds sombres. */
.logo-img { display: block; width: auto; height: 38px; }
@media (max-width: 768px) { .logo-img { height: 30px; } }
.footer-brand .logo-img { height: 46px; }

/* Cluster motif — SEUL emplacement autorisé (header + footer), taille
   proche de l'original logo, non animé, non répété ailleurs sur la page. */

.nav-desktop { display: none; }
@media (min-width: 1024px) { .nav-desktop { display: flex; align-items: center; gap: 32px; } }
.nav-desktop a { font-size: 15px; font-weight: 500; color: var(--color-text-primary); text-decoration: none; padding-bottom: 4px; border-bottom: 1px solid transparent; transition: border-color var(--motion-duration-fast) var(--motion-ease-out); }
.nav-desktop a:hover { border-bottom-color: var(--color-brand-deep); }
.nav-desktop a.is-active { border-bottom-color: var(--color-brand-deep); } /* fix QA v4 : classe déjà posée en v3, jamais stylée */
.nav-desktop .nav-lock { display: inline-flex; align-items: center; gap: 6px; color: var(--color-text-tertiary); cursor: not-allowed; }
.nav-desktop .nav-lock:hover { border-bottom-color: transparent; }
.nav-desktop .nav-lock .icon { width: 16px; height: 16px; }

.header-actions { display: flex; align-items: center; gap: 20px; }
.header-actions > .btn-primary { display: none; }
@media (min-width: 1024px) { .header-actions > .btn-primary { display: inline-flex; padding: 10px 20px; font-size: 14px; } }

.burger { display: inline-flex; flex-direction: column; justify-content: center; gap: 5px; width: 32px; height: 32px; background: none; border: none; cursor: pointer; padding: 0; }
@media (min-width: 1024px) { .burger { display: none; } }
.burger span { display: block; width: 100%; height: 2px; background: var(--color-brand-deep); }

.mobile-overlay { position: fixed; inset: 0; background: var(--color-text-primary); opacity: 0; pointer-events: none; z-index: 250; transition: opacity var(--motion-duration-slow) var(--motion-ease-out); }
.mobile-overlay.is-open { opacity: 0.6; pointer-events: auto; }

.mobile-drawer { position: fixed; top: 0; right: 0; bottom: 0; width: min(320px, 86vw); background: var(--color-bg-primary); z-index: 300; padding: 28px 24px; transform: translateX(100%); transition: transform var(--motion-duration-slow) var(--motion-ease-out); display: flex; flex-direction: column; }
.mobile-drawer.is-open { transform: translateX(0); }
.mobile-drawer .drawer-close { align-self: flex-end; background: none; border: none; font-size: 28px; line-height: 1; cursor: pointer; color: var(--color-brand-deep); margin-bottom: 24px; padding: 4px; }
.mobile-drawer nav { display: flex; flex-direction: column; margin-bottom: auto; }
.mobile-drawer nav a { font-size: 19px; font-weight: 500; color: var(--color-text-primary); text-decoration: none; padding: 16px 0; border-bottom: 1px solid var(--color-border-subtle); }
.mobile-drawer .btn-primary { justify-content: center; margin-top: 24px; }
@media (min-width: 1024px) { .mobile-drawer, .mobile-overlay { display: none !important; } }

/* ============== HERO ============== */
.hero { padding: var(--space-24) 0 var(--space-16); background: var(--color-bg-primary); }
.hero .hero-ctas { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 32px; }
@media (max-width: 768px) { .hero { padding: var(--space-16) 0 var(--space-12); } }

/* ============== EYEBROW — marqueur en barre (JAMAIS de pastille/point) ============== */
.eyebrow { display: inline-flex; align-items: center; gap: 10px; }
.eyebrow::before { content: ""; display: inline-block; width: 16px; height: 3px; border-radius: var(--radius-xs); background: var(--color-brand-deep-2); flex-shrink: 0; }
.section-deep .eyebrow::before,
.metrics-banner .eyebrow::before { background: var(--color-accent); }
.section-deep .eyebrow, .metrics-banner .eyebrow { color: var(--color-text-on-dark); opacity: 0.85; }

/* ============== SECTIONS GÉNÉRIQUES ============== */
.section { padding: var(--space-16) 0; }
.section-airy { padding: var(--space-24) 0; }
.section-surface { background: var(--color-bg-surface); }
.section-deep { background: var(--color-brand-deep); color: var(--color-text-on-dark); }
.section-deep h2, .section-deep h3 { color: var(--color-text-on-dark); }
.section-centered { text-align: center; max-width: var(--content-narrow); margin: 0 auto; }
.section-centered p { margin-left: auto; margin-right: auto; }

/* ============== DIVIDER ============== */
.divider { background: var(--color-accent); }

/* ============== CHIFFRES-CLÉS — traitement SANS halo ============== */
.stat-figure { display: inline-flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.stat-figure .keyline { display: block; width: 44px; height: 3px; border-radius: var(--radius-xs); background: var(--color-brand-deep); }
.metrics-banner .stat-figure .keyline,
.section-deep .stat-figure .keyline { background: var(--color-accent); }

/* ============== METRICS BANNER (fond bleu nuit) ============== */
.metrics-banner { background: var(--color-brand-deep); color: var(--color-text-on-dark); padding: var(--space-16) 0; }
.metrics-banner h2 { color: var(--color-text-on-dark); margin-bottom: var(--space-12); }
.metrics-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.metric { padding: 0 24px; border-left: 1px solid rgba(250,250,247,0.2); }
.metric:first-child { border-left: none; padding-left: 0; }
.metric-number { font-family: var(--font-family-mono); font-size: var(--text-5xl); line-height: 1; color: var(--color-text-on-dark); margin: 0; }
.metric-label { font-size: var(--text-base); font-weight: 500; opacity: 0.85; margin: 12px 0 0; line-height: 1.4; }
@media (max-width: 768px) {
  .metrics-grid { grid-template-columns: 1fr; gap: 32px; }
  .metric { border-left: none; border-top: 1px solid rgba(250,250,247,0.2); padding: 24px 0 0; }
  .metric:first-child { border-top: none; padding-top: 0; }
}

/* ============== GRILLES DE CARDS ============== */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 32px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 32px; }

/* Card + testimonial-card — filet d'accent orange à gauche conservé EN
   PLUS de l'entourage gris défini dans tokens.css (.card, .testimonial-card).
   Seule touche de couleur des deux groupes de cartes — l'entourage est
   entièrement gris (cf. tokens.css, --color-border-strong, v5). */
.card, .testimonial-card { position: relative; border-left: 3px solid var(--color-accent); }
.card-audience { display: flex; flex-direction: column; gap: 16px; }
.card-audience .card-icon { width: 44px; height: 44px; border-radius: var(--radius-md); background: var(--color-brand-deep); color: var(--color-text-on-dark); display: flex; align-items: center; justify-content: center; }
.card-audience .card-icon .icon { width: 22px; height: 22px; }
.card-audience h4 { margin-bottom: 0; }
/* v7 : poids relevé à semibold sur notre-mission.html UNIQUEMENT (retour
   Greg "titres de carte pas assez ressortis") — .card-audience est PARTAGÉ
   avec l'accueil (section "Pour qui"), scopé par [data-page] plutôt que
   modifié globalement pour ne pas retoucher l'accueil déjà validé (cf.
   brief v7 "cible ou assume" — ici : cible). */
body[data-page="notre-mission"] .card-audience h4 { font-weight: var(--font-weight-semibold); }
.card-audience p { color: var(--color-text-secondary); margin-bottom: 0; flex-grow: 1; }
/* v6 : les .link-cta n'avaient AUCUNE couleur → tombaient sur le bleu par
   défaut du navigateur (hors charte, signalé par Greg). Couleur = texte foncé
   near-black, soulignement accent orange au survol. Aucun bleu. */
.link-cta { color: var(--color-text-primary); font-weight: var(--font-weight-semibold); text-decoration: none; }
.link-cta:hover { text-decoration: underline; text-decoration-color: var(--color-accent); text-underline-offset: 4px; }
.card-audience .link-cta { margin-top: 4px; display: inline-flex; align-items: center; gap: 6px; }

/* ============== PARCOURS / TIMELINE — v4 : alignement corrigé + tracé
   SVG animé au scroll ==============
   Fix technique : l'ancien .step-dot (22px, border 3px) n'avait pas
   box-sizing:border-box → sa taille RENDUE était en réalité 28px (22 +
   2×3 de bordure), décentrée par rapport à la ligne (top:11px). C'est la
   cause racine du "trait qui ne colle pas au marqueur" signalé par Greg.
   v4 : box-sizing:border-box explicite + marqueur centré horizontalement
   dans sa colonne (au lieu de left:0) + numéro/titre/texte centrés en
   dessous, comme dans la plaquette de recrutement (mêmes contenus). */
.parcours-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 56px; position: relative; }
.parcours-track { position: absolute; top: 0; left: 0; width: 100%; height: 24px; pointer-events: none; z-index: 0; overflow: visible; }
/* v5 : ligne de base plus fine (1,25px, était 2px) pour mieux faire
   ressortir le tracé orange, lui-même épaissi (3px, était 2px). */
.parcours-track .track-base { stroke: var(--color-border-default); stroke-width: 1.25; stroke-linecap: round; }
.parcours-track .track-fill { stroke: var(--color-accent); stroke-width: 3; stroke-linecap: round; stroke-dasharray: 1; stroke-dashoffset: 1; }

.step { position: relative; z-index: 1; padding-top: 44px; text-align: center; }
.step .step-dot { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 24px; height: 24px; box-sizing: border-box; border-radius: var(--radius-full); background: var(--color-accent); border: 3px solid var(--color-bg-primary); box-shadow: 0 0 0 1px var(--color-border-default); z-index: 1; }
.step .step-number { font-family: var(--font-family-mono); font-size: 13px; color: var(--color-text-tertiary); margin-bottom: 8px; display: block; text-align: center; }
.step h4 { margin-bottom: 8px; font-size: var(--text-lg); }
.step p { font-size: 14px; color: var(--color-text-secondary); margin: 0 auto; max-width: 30ch; }
@media (max-width: 900px) { .parcours-steps { grid-template-columns: 1fr 1fr; gap: 40px 24px; } .parcours-track { display: none; } }
@media (max-width: 560px) { .parcours-steps { grid-template-columns: 1fr; } }

/* ============== TÉMOIGNAGES ==============
   Entourage gris + filet d'accent gauche déjà posés plus haut (règle
   partagée .card, .testimonial-card) — ne reste ici que la mise en page
   propre au témoignage (flex column). */
.testimonial-card { display: flex; flex-direction: column; gap: 16px; }
.testimonial-card .icon-quote { color: var(--color-brand-deep); width: 26px; height: 26px; opacity: 0.4; }
.testimonial-card blockquote { margin: 0; font-size: var(--text-lg); font-weight: 500; font-style: italic; color: var(--color-text-primary); }
.testimonial-card cite { font-style: normal; font-size: 14px; color: var(--color-text-secondary); }

/* ============== ANNOTATION MAQUETTE ============== */
.mockup-flag { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-family-mono); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-status-warning); border: 1px solid var(--color-status-warning); border-radius: var(--radius-xs); padding: 3px 8px; margin-bottom: 12px; }

/* ============== CTA FINAL — bande de bas de page (fond bleu nuit) ==============
   v5 : réduit à 2 boutons (Devenir membre + Devenir mécène — "Faire venir
   Elantec" supprimé, règle stratégique CTA). Classe renommée .cta-trio →
   .cta-final (le nom "trio" ne décrivait plus le contenu). Hover =
   INVERSION de couleur cohérente sur les 2, inchangée depuis v4 :
   - "Devenir membre" (primaire) : base = fond clair/texte bleu nuit ;
     hover = fond bleu nuit (deep-2, distinct du fond de section pour
     rester visible)/texte clair.
   - "Devenir mécène" (secondaire) : base = contour clair sur fond bleu nuit
     (se lit "en bleu", le fond de section transparaît) ; hover = fond
     clair/texte bleu nuit — même bascule que le primaire, en miroir. */
.cta-final { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; margin-top: 32px; }

.cta-final .btn-primary { background: var(--color-bg-primary); color: var(--color-brand-deep); }
.cta-final .btn-primary:hover { background: var(--color-brand-deep-2); color: var(--color-text-on-dark); }

.cta-final .btn-secondary { border-color: var(--color-text-on-dark); color: var(--color-text-on-dark); }
.cta-final .btn-secondary:hover { background: var(--color-bg-primary); color: var(--color-brand-deep); border-color: var(--color-bg-primary); }

.btn-primary .arrow { display: inline-block; transition: transform var(--motion-duration-fast) var(--motion-ease-out); }
.btn-primary:hover .arrow { transform: translateX(4px); }

/* ============== FOOTER ============== */
.site-footer { background: var(--color-brand-deep); color: var(--color-text-on-dark); padding: var(--space-16) 0 var(--space-8); }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 48px; padding-bottom: 40px; border-bottom: 1px solid rgba(250, 250, 247, 0.15); }
.footer-col h5 { font-family: var(--font-family-body); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: var(--tracking-wide); color: var(--color-text-on-dark); opacity: 0.55; margin: 0 0 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--color-text-on-dark); text-decoration: none; font-size: 14px; opacity: 0.92; }
.footer-col a:hover { opacity: 1; text-decoration: underline; text-underline-offset: 3px; }
.footer-brand .tagline { opacity: 0.85; font-size: 15px; max-width: 32ch; margin: 16px 0 0; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding-top: 24px; font-size: 12px; opacity: 0.75; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; row-gap: 32px; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============================================================
   AJOUTS PROPAGATION v6 — composants partagés notre-mission /
   devenir-membre / contact (13-design-rendu-propagation.md)
   ============================================================ */

/* ============== MODULATION PEDA — devenir-membre uniquement ==============
   Seule la page devenir-membre bascule l'accent système sur le jaune-vert
   (--color-brand-yellowgreen, déjà défini dans tokens.css, "ABSENT en INST"
   par le brand-brief). Tous les composants pilotés par --color-accent
   (divider, eyebrow bar, keyline, step-dot/track-fill, filet de carte,
   soulignement .link-cta) suivent automatiquement — pas de règle dupliquée
   par composant. INST reste la valeur par défaut partout ailleurs. */
body[data-page="devenir-membre"] { --color-accent: var(--color-brand-yellowgreen); }

/* ============== CHECKLIST (engagements membres, ADN association) ============== */
.checklist { list-style: none; margin: var(--space-6) 0 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.checklist li { display: flex; align-items: flex-start; gap: 12px; font-size: var(--text-base); color: var(--color-text-secondary); line-height: 1.45; }
.checklist .check-icon { flex-shrink: 0; width: 22px; height: 22px; color: var(--color-status-success); margin-top: 1px; }

/* ============== NOTE-BLOCK (callout accent, fond bleu nuit) ============== */
.note-block { display: flex; gap: 14px; align-items: flex-start; background: var(--color-brand-deep); color: var(--color-text-on-dark); border-radius: var(--radius-lg); padding: var(--space-6); margin-top: var(--space-8); }
.note-block .icon { flex-shrink: 0; width: 28px; height: 28px; color: var(--color-accent); }
.note-block strong { display: block; font-size: var(--text-base); margin-bottom: 2px; }
.note-block p { margin: 0; font-size: 14px; opacity: 0.85; line-height: 1.4; }

/* ============== INFO-CARD (2 col INST/PEDA — "qui sommes-nous" /
   "l'inégalité", pattern repris de la plaquette recrutement) ============== */
.info-card { background: var(--color-bg-primary); border: 1.5px solid var(--color-border-strong); border-radius: var(--radius-lg); padding: var(--space-6); border-left: 3px solid var(--color-brand-cyan); }
.info-card.peda { background: var(--color-bg-surface); border-left-color: var(--color-brand-yellowgreen); }
/* v7 : titre relevé (13px mono uppercase coloré → 20px, casse normale,
   gris quasi-noir) sur retour Greg ("titres de carte pas assez ressortis").
   Bénéfice croisé : élimine l'usage de --color-brand-cyan comme COULEUR DE
   TEXTE (4,31:1, sous le seuil AA texte 4,5:1 — risque documenté depuis v1,
   jamais corrigé faute d'occasion) — la distinction INST/PEDA reste portée
   par le filet gauche + le fond de carte (peda), pas par la couleur du h4. */
.info-card h4 { font-family: var(--font-family-heading); font-size: var(--text-lg); text-transform: none; letter-spacing: var(--tracking-normal); font-weight: var(--font-weight-semibold); color: var(--color-text-primary); margin-bottom: 10px; }
.info-card p { color: var(--color-text-secondary); margin: 0; font-size: 14.5px; line-height: 1.5; }

/* ============== MINI-CARD (ex. "comment on se rencontre") ============== */
.mini-card { text-align: left; }
.mini-card .mini-card-icon { width: 40px; height: 40px; border-radius: var(--radius-md); background: var(--color-bg-surface); color: var(--color-brand-deep); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
/* v7 : poids relevé à semibold (défaut h4 global = medium) pour que le
   titre ressorte davantage — devenir-membre.html uniquement, .mini-card
   n'existe pas sur l'accueil, aucun risque de propagation. */
.mini-card h4 { margin-bottom: 6px; font-weight: var(--font-weight-semibold); }
.mini-card p { color: var(--color-text-secondary); font-size: 14.5px; margin: 0; }

/* ============== TRACKS (sélecteur "je suis" — contact, radio-pills natifs) ============== */
.tracks { display: flex; gap: 12px; flex-wrap: wrap; margin: var(--space-6) 0 var(--space-8); }
.track-option { position: relative; }
.track-option input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.track-option label { display: inline-flex; align-items: center; padding: 10px 22px; border: 1.5px solid var(--color-border-default); border-radius: var(--radius-full); font-size: 14px; font-weight: 500; color: var(--color-text-secondary); cursor: pointer; transition: background-color var(--motion-duration-base) var(--motion-ease-out), color var(--motion-duration-base) var(--motion-ease-out), border-color var(--motion-duration-base) var(--motion-ease-out); }
.track-option input:checked + label { background: var(--color-brand-deep); border-color: var(--color-brand-deep); color: var(--color-text-on-dark); }
.track-option input:focus-visible + label { outline: 2px solid var(--color-brand-cyan); outline-offset: 2px; }

/* ============== CONTACT — mise en page 2 colonnes ============== */
.contact-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; margin-top: var(--space-2); align-items: start; }
.contact-coords { background: var(--color-bg-surface); border-radius: var(--radius-lg); padding: var(--space-8); }
.contact-coords h4 { font-family: var(--font-family-mono); font-size: 12px; text-transform: uppercase; letter-spacing: var(--tracking-wide); color: var(--color-brand-deep-2); margin-bottom: 18px; }
.contact-coords .coord-row { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 18px; }
.contact-coords .coord-row:last-child { margin-bottom: 0; }
.contact-coords .coord-row .icon { flex-shrink: 0; color: var(--color-brand-deep); width: 20px; height: 20px; margin-top: 2px; }
.contact-coords .coord-row p { margin: 0; font-size: 14.5px; color: var(--color-text-secondary); line-height: 1.45; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ============== FAQ (natif <details>/<summary>, zéro JS) ============== */
.faq-item { border-bottom: 1px solid var(--color-border-subtle); padding: 18px 0; }
.faq-item summary { cursor: pointer; font-weight: 600; font-size: var(--text-base); color: var(--color-text-primary); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-family: var(--font-family-mono); font-size: 20px; color: var(--color-brand-deep-2); flex-shrink: 0; }
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { margin: 12px 0 0; color: var(--color-text-secondary); font-size: 14.5px; line-height: 1.55; max-width: 65ch; }

/* ============== RESPONSIVE — ajustements globaux ============== */
@media (max-width: 768px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .info-two-col { grid-template-columns: 1fr; }
}
.info-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: var(--space-8); }

/* ============================================================
   AJOUTS BUILD FINAL — mecenat.html + pages légales
   (15-design-rendu-build-final.md)
   ============================================================ */

/* ============== PARCOURS — variante 3 étapes (page mécène) ==============
   Réutilise .parcours-steps/.parcours-track/.step tels quels (JS site.js
   générique, fonctionne avec n'importe quel nombre de .step-dot). Seule la
   grille change : 3 colonnes desktop au lieu de 4, mêmes points de rupture
   responsive que la variante à 4 étapes. */
.parcours-steps.steps-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .parcours-steps.steps-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .parcours-steps.steps-3 { grid-template-columns: 1fr; } }

/* ============== PROSE — pages légales (mentions/confidentialité/cookies) ==============
   Layout sobre, lisibilité prioritaire : pas de card, pas de motif, texte
   dense correctement espacé. Utilisé uniquement par les 3 pages légales. */
.prose { max-width: var(--content-prose); }
.prose h2 { margin-top: var(--space-12); margin-bottom: var(--space-4); font-size: var(--text-2xl); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: var(--space-8); margin-bottom: var(--space-3); font-size: var(--text-lg); }
.prose p, .prose ul, .prose ol { margin: 0 0 var(--space-4); color: var(--color-text-secondary); line-height: 1.6; }
.prose ul, .prose ol { padding-left: 1.25em; }
.prose li { margin-bottom: 6px; }
.prose a { color: var(--color-brand-deep); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--color-text-primary); }
.prose .legal-updated { font-size: var(--text-sm); color: var(--color-text-tertiary); margin-top: var(--space-8); }

/* Placeholder juridique visible (Président·e, Hébergeur, contact RGPD) —
   traitement volontairement voyant (fond warning), à ne jamais publier
   tel quel : cf. critère d'acceptation "placeholders visibles". */
.legal-placeholder { display: inline; background: rgba(181,133,29,0.15); color: var(--color-status-warning); padding: 1px 6px; border-radius: var(--radius-xs); font-family: var(--font-family-mono); font-size: 0.85em; font-weight: 600; }
