/* ═══════════════════════════════════════
   LEXORA Design Tokens v1.0
   Source : mockup v7.2 (CONV-150)
   Extrait : Phase 1 socle (CONV-192)
   ═══════════════════════════════════════ */

:root {
  /* Couleurs */
  --ink: #1A1915;
  --bleu-fond: #1B2A4A;
  --cloud: #F0EEE9;
  --white: #FFFFFF;
  --terre: #C4693D;
  --terre-light: rgba(196, 105, 61, 0.08);
  --terre-hover: #B05A32;
  --gris: #6B7280;
  --mist: #E5E1DA;

  /* Typographies */
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-accent: 'Fraunces', Georgia, serif;
  --font-body: 'Instrument Sans', -apple-system, sans-serif;

  /* Espacements */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  --space-2xl: 7.5rem;
  --space-3xl: 10rem;

  /* Rayons */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  /* Easings */
  --ease: cubic-bezier(.4, 0, .2, 1);
  --ease-out: cubic-bezier(0, 0, .2, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--cloud);
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* ═══ Accessibility ═══ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: 0.75rem 1.5rem;
  background: var(--terre);
  color: var(--white);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
  z-index: 200;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; }

*:focus-visible {
  outline: 2px solid var(--terre);
  outline-offset: 2px;
}

/* ═══ Layout ═══ */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
}

section { position: relative; }

/* ═══ Shared Buttons ═══ */
.btn-primary {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--white);
  background: var(--terre);
  padding: 1rem 2.25rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
  display: inline-block;
  text-align: center;
}

.btn-primary:hover {
  background: var(--terre-hover);
  transform: translateY(-1px);
}

.btn-ghost {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--ink);
  background: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.25s var(--ease);
}

.btn-ghost:hover { gap: 0.75rem; }

/* ═══ Section patterns ═══ */
.section-header { margin-bottom: var(--space-xl); }

.section-kicker {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: var(--space-md);
}

.section-subtitle {
  font-family: var(--font-accent);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  color: var(--gris);
  max-width: 620px;
  line-height: 1.45;
}

/* ═══ Animations ═══ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.19s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.33s; }

.reveal-stagger.visible > * { opacity: 1; transform: translateY(0); }

/* ═══ Reset :visited — empêcher le violet navigateur ═══ */
/* Ciblé : liens texte héritent, CTA gardent leur couleur propre */
main a:not(.btn-primary):not(.btn-ghost):not(.btn-cta-final):not(.formation-card__cta):not([class*='btn']),
main a:not(.btn-primary):not(.btn-ghost):not(.btn-cta-final):not(.formation-card__cta):not([class*='btn']):visited { color: inherit; }

/* ═══ Override WP default link styles — Brendan 🐛 CONV-258 ═══ */
a:where(:not(.wp-element-button)) {
  text-decoration: none;
}
a:hover, a:active, a:focus {
  color: inherit;
}
/* Force sur les liens internes */
/* Liens texte dans le contenu */
main p a, section p a, .container p a {
  color: var(--terre, #C4693D);
  text-decoration: underline;
}
main p a:visited, section p a:visited {
  color: var(--terre, #C4693D);
}



/* ═══════════════════════════════════════════════════════
   ANTI-VIOLET NUCLEAR FIX — Brendan 🐛 CONV-258
   Couvre TOUS les états : link, visited, hover, active, focus
   Le navigateur ne peut PAS overrider ces règles
   ═══════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════
   LEXORA — Harmonisation CTA & Anti-violet
   Brendan ⚡ CONV-260 — 09/03/2026
   Stratégie : spécificité haute par body + sélecteur combiné
   Zéro !important — ordre cascade + sélecteurs longs suffisent
   ═══════════════════════════════════════════════════════ */

/* --- Reset WP/Elementor default link styles --- */
body a:where(:not(.wp-element-button)):not([class*="btn"]):not([class*="cta"]) {
  text-decoration: none;
}

/* --- Reset global anti-violet navigateur (filet sécurité, spécificité 0) --- */
a:where(:not(.wp-element-button)):visited {
  color: inherit;
}

/* --- Liens texte dans le contenu (Terre Cuite, pas violet) --- */
body main p a:link,
body main p a:visited,
body section p a:link,
body section p a:visited,
body .container p a:link,
body .container p a:visited,
body .tribune a:link,
body .tribune a:visited {
  color: var(--terre, #C4693D);
  text-decoration: underline;
}
body main p a:hover,
body section p a:hover,
body .container p a:hover,
body .tribune a:hover {
  color: var(--terre-hover, #B05A32);
}

/* --- btn-primary (fond Terre Cuite, texte blanc) --- */
body a.btn-primary,
body a.btn-primary:link,
body a.btn-primary:visited,
body a.btn-primary:focus,
body a.btn-primary:active,
body button.btn-primary {
  background-color: var(--terre, #C4693D);
  color: var(--white, #fff);
  text-decoration: none;
}
body a.btn-primary:hover,
body button.btn-primary:hover {
  background-color: var(--terre-hover, #B05A32);
  color: var(--white, #fff);
  transform: translateY(-1px);
}

/* --- btn-cta-final (fond Terre Cuite, texte blanc) --- */
body a.btn-cta-final,
body a.btn-cta-final:link,
body a.btn-cta-final:visited,
body a.btn-cta-final:focus,
body a.btn-cta-final:active,
body button.btn-cta-final {
  background-color: var(--terre, #C4693D);
  color: var(--white, #fff);
  text-decoration: none;
}
body a.btn-cta-final:hover,
body button.btn-cta-final:hover {
  background-color: var(--terre-hover, #B05A32);
  color: var(--white, #fff);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(196, 105, 61, 0.25);
}

/* --- btn-dossiers : variante inline-flex de btn-cta-final --- */
body a.btn-dossiers,
body a.btn-dossiers:link,
body a.btn-dossiers:visited,
body a.btn-dossiers:focus,
body a.btn-dossiers:active {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  background-color: var(--terre, #C4693D);
  color: var(--white, #fff);
  text-decoration: none;
}
body a.btn-dossiers:hover {
  background-color: var(--terre-hover, #B05A32);
  color: var(--white, #fff);
  transform: translateY(-1px);
}

/* --- btn-ghost (transparent, texte Ink → Terre hover) --- */
body a.btn-ghost,
body a.btn-ghost:link,
body a.btn-ghost:visited,
body a.btn-ghost:focus,
body a.btn-ghost:active,
body button.btn-ghost {
  color: var(--ink, #1A1915);
  text-decoration: none;
  background: transparent;
}
body a.btn-ghost:hover,
body button.btn-ghost:hover {
  color: var(--terre, #C4693D);
}

/* --- btn-ghost-light (fond sombre, texte clair) --- */
body a.btn-ghost-light,
body a.btn-ghost-light:link,
body a.btn-ghost-light:visited,
body a.btn-ghost-light:focus,
body a.btn-ghost-light:active {
  color: rgba(240, 238, 233, 0.7);
  background: none;
  text-decoration: none;
}
body a.btn-ghost-light:hover {
  color: var(--cloud, #F0EEE9);
}

/* --- btn-secondary (fond sombre, texte clair) --- */
body a.btn-secondary,
body a.btn-secondary:link,
body a.btn-secondary:visited,
body a.btn-secondary:focus,
body a.btn-secondary:active {
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  text-decoration: none;
}
body a.btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white, #fff);
}

/* --- btn-cta-secondary (outline terre cuite → hover terre cuite) --- */
body a.btn-cta-secondary,
body a.btn-cta-secondary:link,
body a.btn-cta-secondary:visited,
body a.btn-cta-secondary:focus,
body a.btn-cta-secondary:active {
  color: var(--terre, #C4693D);
  background: transparent;
  border: 1.5px solid var(--terre, #C4693D);
  text-decoration: none;
}
body a.btn-cta-secondary:hover {
  background: var(--terre, #C4693D);
  color: var(--white, #fff);
  border-color: var(--terre, #C4693D);
}

/* --- btn-outline-white (fond sombre, bordure blanche) --- */
body a.btn-outline-white,
body a.btn-outline-white:link,
body a.btn-outline-white:visited,
body a.btn-outline-white:focus,
body a.btn-outline-white:active {
  background: transparent;
  color: var(--white, #fff);
  border: 2px solid rgba(255,255,255,0.3);
  text-decoration: none;
}
body a.btn-outline-white:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.08);
  color: var(--white, #fff);
}

/* --- btn-cta-outline (fond sombre, bordure cloud) --- */
body a.btn-cta-outline,
body a.btn-cta-outline:link,
body a.btn-cta-outline:visited,
body a.btn-cta-outline:focus,
body a.btn-cta-outline:active {
  color: var(--cloud, #F0EEE9);
  background: transparent;
  border: 2px solid rgba(240, 238, 233, 0.3);
  text-decoration: none;
}
body a.btn-cta-outline:hover {
  border-color: var(--cloud, #F0EEE9);
  background: rgba(240, 238, 233, 0.08);
  color: var(--white, #fff);
  transform: translateY(-1px);
}

/* --- btn-sidebar-help (outline terre → hover terre plein) --- */
body a.btn-sidebar-help,
body a.btn-sidebar-help:link,
body a.btn-sidebar-help:visited,
body a.btn-sidebar-help:focus,
body a.btn-sidebar-help:active,
body .sidebar a.btn-sidebar-help:visited {
  background: transparent;
  color: var(--terre, #C4693D);
  border: 1.5px solid var(--terre, #C4693D);
  text-decoration: none;
}
body a.btn-sidebar-help:hover,
body .sidebar a.btn-sidebar-help:hover {
  background: var(--terre, #C4693D);
  color: var(--white, #fff);
}

/* --- btn-tout-voir, btn-outline (outline → hover terre) --- */
body a.btn-tout-voir,
body a.btn-tout-voir:link,
body a.btn-tout-voir:visited,
body a.btn-tout-voir:focus,
body a.btn-tout-voir:active,
body a.btn-outline,
body a.btn-outline:link,
body a.btn-outline:visited,
body a.btn-outline:focus,
body a.btn-outline:active {
  color: var(--terre, #C4693D);
  background: transparent;
  text-decoration: none;
}
body a.btn-tout-voir:hover,
body a.btn-outline:hover {
  background: var(--terre, #C4693D);
  color: var(--white, #fff);
}

/* --- dossiers-hub CTA primary (fond Terre Cuite) --- */
body a.dossiers-hub-cta__btn--primary,
body a.dossiers-hub-cta__btn--primary:link,
body a.dossiers-hub-cta__btn--primary:visited,
body a.dossiers-hub-cta__btn--primary:focus,
body a.dossiers-hub-cta__btn--primary:active {
  background: var(--terre, #C4693D);
  color: var(--white, #fff);
  text-decoration: none;
}
body a.dossiers-hub-cta__btn--primary:hover {
  background: var(--terre-hover, #B05A32);
  color: var(--white, #fff);
  transform: translateY(-1px);
}

/* --- dossiers-hub CTA secondary (fond semi-transparent sur fond sombre) --- */
body a.dossiers-hub-cta__btn--secondary,
body a.dossiers-hub-cta__btn--secondary:link,
body a.dossiers-hub-cta__btn--secondary:visited,
body a.dossiers-hub-cta__btn--secondary:focus,
body a.dossiers-hub-cta__btn--secondary:active {
  background: rgba(255,255,255,0.08);
  color: var(--white, #fff);
  border: 1.5px solid rgba(255,255,255,0.5);
  text-decoration: none;
}
body a.dossiers-hub-cta__btn--secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white, #fff);
  color: var(--white, #fff);
  transform: translateY(-1px);
}

/* --- formation-card CTA (fond cloud → Terre hover) --- */
body a.formation-card__cta,
body a.formation-card__cta:link,
body a.formation-card__cta:visited,
body a.formation-card__cta:focus,
body a.formation-card__cta:active {
  color: var(--ink, #1A1915);
  text-decoration: none;
}
body .formation-card:hover a.formation-card__cta,
body a.formation-card__cta:hover {
  background-color: var(--terre, #C4693D);
  color: var(--white, #fff);
}

/* ═══ Fix toggle Card/List ═══ */
body .view-btn {
  transition: none;
}
body .view-btn:not(.active) {
  background: var(--white);
  color: var(--gris);
  border-color: var(--mist);
}
body .view-btn.active {
  background: var(--terre);
  color: var(--white);
  border-color: var(--terre);
}
body .view-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════
   HERO SYSTEM — Refacto CONV-300
   Kate 🎨 + Kelsey ☸️ — 12/03/2026
   Décisions validées par Sébastien :
   - Fond Home = --white (explicite)
   - Fond standard = --cloud (explicite)
   - Fond dossiers = --bleu-fond (garder)
   - Kicker = --terre partout
   - Titre fond clair = --ink (sauf Profils → --bleu-fond)
   - Titre fond sombre = --white
   - Subtitle max-width = 580px par défaut
   - Line-height titre = 1.15 partout
   ═══════════════════════════════════════════════════════ */

/* --- Hero Base (shared by all centered heroes) --- */
.hero-centered {
  padding: 8rem 0 var(--space-xl);
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.hero-centered .container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-centered__content {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.hero-centered__kicker {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terre);
  margin-bottom: var(--space-sm);
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.6s var(--ease-out) 0.2s forwards;
}

.hero-centered__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: var(--space-md);
  opacity: 0; transform: translateY(24px);
  animation: fadeUp 0.7s var(--ease-out) 0.35s forwards;
}

.hero-centered__response {
  font-family: var(--font-accent);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  line-height: 1.15;
  color: var(--terre);
  margin-bottom: var(--space-lg);
  opacity: 0; transform: translateY(24px);
  animation: fadeUp 0.7s var(--ease-out) 0.45s forwards;
}

.hero-centered__subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  line-height: 1.7;
  color: var(--gris);
  margin-bottom: var(--space-lg);
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.7s var(--ease-out) 0.5s forwards;
}

.hero-centered__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.6s var(--ease-out) 0.65s forwards;
}

.hero-centered__badges {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.6s var(--ease-out) 0.65s forwards;
}

.hero-centered__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.8125rem;
  color: var(--ink);
  background: rgba(27, 42, 74, 0.06);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
}

.hero-centered__badge svg { flex-shrink: 0; }

/* --- Modifier: Home (fond blanc, padding plus grand) --- */
.hero-centered--home {
  padding: 9rem 0 var(--space-2xl);
}

/* --- Modifier: Dark (fond bleu-fond pour dossiers) --- */
.hero-centered--dark {
  background: var(--bleu-fond);
}

.hero-centered--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(196,105,61,0.10) 0%, transparent 60%),
                    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.hero-centered--dark .container { position: relative; z-index: 1; }

.hero-centered--dark .hero-centered__kicker {
  color: var(--terre);
}

.hero-centered--dark .hero-centered__title {
  color: var(--white);
}

.hero-centered--dark .hero-centered__subtitle {
  color: rgba(255,255,255,0.75);
}

.hero-centered--dark .hero-centered__badge {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

/* --- Hero Profil (grid 2 colonnes) --- */
.hero-profil {
  background: var(--white);
  border-bottom: 1px solid var(--mist);
  padding: 8rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero-profil::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 60% 70% at 75% 60%, rgba(196, 105, 61, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-profil__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-profil__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terre);
  background: rgba(196, 105, 61, 0.12);
  border: 1px solid rgba(196, 105, 61, 0.3);
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  margin-bottom: 1.75rem;
}

.hero-profil__badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--terre);
  border-radius: 50%;
}

.hero-profil__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.5vw, 3.75rem);
  line-height: 1.15;
  color: var(--bleu-fond);
  margin-bottom: 1.5rem;
}

.hero-profil__title em {
  font-style: normal;
  color: var(--terre);
}

.hero-profil__intro {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  color: var(--gris);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.hero-profil__cta-group {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-profil__cta-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--gris);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s var(--ease), gap 0.2s var(--ease);
}

.hero-profil__cta-link:hover { color: var(--bleu-fond); gap: 0.65rem; }

.hero-profil__stats {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero-profil .hero-stat {
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}

.hero-profil .hero-stat:hover {
  background: var(--white);
  border-color: var(--terre);
}

.hero-profil .hero-stat__number {
  font-family: var(--font-display);
  font-size: 2.75rem;
  line-height: 1;
  color: #8B3A1E;
  white-space: nowrap;
}

.hero-profil .hero-stat__number span { font-size: 1.5rem; }

.hero-profil .hero-stat__label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--gris);
  line-height: 1.5;
}

.hero-profil .hero-stat__source {
  font-size: 0.7rem;
  color: var(--gris);
  opacity: 0.6;
}

/* --- Hero Dossier individuel (aligné gauche, fond sombre) --- */
.hero-dossier {
  padding-top: 5.5rem;
  padding-bottom: var(--space-xl);
  background: var(--bleu-fond);
  position: relative;
  overflow: hidden;
}

.hero-dossier::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(196,105,61,0.12) 0%, transparent 60%),
                    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.hero-dossier__inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.hero-dossier__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}

.hero-dossier__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--terre);
  background: rgba(196,105,61,0.15);
  border: 1px solid rgba(196,105,61,0.3);
  padding: 0.35rem 0.875rem;
  border-radius: 2px;
}

.hero-dossier__date {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
}

.hero-dossier__dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}

.hero-dossier__formations-count {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
}

.hero-dossier__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.hero-dossier__title em {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 300;
  color: rgba(196,105,61,0.9);
}

.hero-dossier__intro {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  max-width: 640px;
  margin-bottom: 2.25rem;
}

.hero-dossier__stat-strip {
  display: flex;
  gap: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}

.hero-dossier__stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hero-dossier__stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--terre);
  line-height: 1;
}

.hero-dossier__stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.4;
  max-width: 140px;
}

/* --- Hero Légal (minimal) --- */
.hero-legal {
  background: var(--white);
  padding: 9rem 0 var(--space-2xl);
}

.hero-legal .container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-legal__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--ink);
  line-height: 1.15;
  margin: 0;
}

/* --- Responsive heroes --- */
@media (max-width: 768px) {
  .hero-centered { padding: 6.5rem 0 var(--space-lg); }
  .hero-centered--home { padding: 7rem 0 var(--space-xl); }
  .hero-centered__title { font-size: clamp(1.75rem, 6vw, 2.25rem); }
  .hero-centered__response { font-size: clamp(1.75rem, 6vw, 2.25rem); }
  .hero-centered__actions { flex-direction: column; gap: var(--space-sm); }

  .hero-profil__inner { grid-template-columns: 1fr; gap: var(--space-xl); }
  .hero-profil__title { font-size: clamp(2rem, 6vw, 2.75rem); }

  .hero-dossier__title { font-size: clamp(1.75rem, 6vw, 2.5rem); }
  .hero-dossier__stat-strip { gap: 1.5rem; }

  .hero-legal { padding: 7rem 0 var(--space-xl); }
}
