/* ══════════════════════════════════════════════════════════
   L'ÉPOPÉE DE LA TRANSFORMATION — style.css partagé (V7)
   Référence : ../CHARTE_Epopee_Site.md
   Toutes les pages du site chargent ce fichier unique.
   ══════════════════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --dark:       #1C2547;
  --dark-mid:   #222D56;
  --light:      #f8f5f0;
  --light-mid:  #ede9e3;
  --gold:       #c9a84c;
  --gold-light: #e2c47a;
  --text-dark:  #1a1a2e;
  --text-light: #f0ece4;
  --text-muted: #9ca3af;
  --blue-sec:   #3F5C92;
  --font-serif: 'Spectral', Georgia, serif;
  --font-sans:  'Source Sans 3', system-ui, sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); color: var(--text-dark); background: var(--dark); }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── Skip link ── */
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--dark); color: var(--gold);
  padding: 0.75rem 1.25rem;
  border: 2px solid var(--gold); border-radius: 2px;
  font-size: 0.875rem; font-weight: 500;
  z-index: 999; transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* ══════════════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 5vw;
  background: rgba(28,37,71,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transition: background 0.3s;
}
.nav-logo {
  font-family: var(--font-serif); font-size: 1.15rem; font-weight: 600;
  color: var(--gold); letter-spacing: 0.02em;
}
.nav-logo span { color: var(--text-light); font-weight: 400; }
.nav-links { display: flex; gap: 2.25rem; align-items: center; }
.nav-links > a, .nav-item-dropdown > a {
  font-size: 0.875rem; font-weight: 400; color: var(--text-light);
  letter-spacing: 0.06em; text-transform: uppercase; opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
}
.nav-links a:hover, .nav-links a.active { opacity: 1; color: var(--gold); }
.nav-links .nav-cta {
  padding: 0.75rem 1.25rem; border: 1px solid var(--gold);
  border-radius: 2px; color: var(--gold); opacity: 1;
}
.nav-links .nav-cta:hover { background: var(--gold); color: var(--dark); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.25rem; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text-light); margin: 4px 0; transition: 0.3s; }

/* Dropdown au survol (nouveau V7) */
.nav-item-dropdown { position: relative; display: flex; align-items: center; gap: 0.3rem; }
.nav-dropdown-toggle {
  background: none; border: none; cursor: pointer; color: var(--text-light);
  opacity: 0.7; font-size: 0.7rem; padding: 0; display: none;
}
.nav-dropdown {
  position: absolute; top: 100%; left: 50%; margin-top: 0.75rem;
  transform: translateX(-50%) translateY(6px);
  background: var(--dark-mid); border: 1px solid rgba(201,168,76,0.22);
  border-radius: 4px; padding: 0.6rem 0; min-width: 230px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.35);
  opacity: 0; visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}
.nav-item-dropdown:hover .nav-dropdown {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: block; padding: 0.65rem 1.35rem; font-size: 0.8rem;
  text-transform: none; letter-spacing: 0.01em; color: var(--text-light);
  opacity: 0.8; transition: background 0.15s, opacity 0.15s;
}
.nav-dropdown a:hover { background: rgba(201,168,76,0.08); opacity: 1; color: var(--gold); }

/* Sélecteur de langue */
.nav-lang-switch {
  display: flex; align-items: center; gap: 0.15rem;
  padding-left: 1.25rem; border-left: 1px solid rgba(201,168,76,0.25);
}
.nav-lang {
  font-size: 0.78rem; color: rgba(240,236,228,0.55);
  letter-spacing: 0.08em; padding: 0.25rem 0.4rem;
  transition: color 0.2s; text-transform: uppercase;
}
.nav-lang:hover { color: var(--gold); opacity: 1; }
.nav-lang.active { color: var(--gold); font-weight: 500; opacity: 1; }
.nav-lang-sep { color: rgba(240,236,228,0.25); font-size: 0.75rem; }

/* ══════════════════════════════════════════════════════════
   BOUTONS
   ══════════════════════════════════════════════════════════ */
.btn {
  display: inline-block; padding: 0.85rem 2rem;
  font-family: var(--font-sans); font-size: 0.875rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; transition: all 0.25s; border-radius: 2px;
}
.btn-primary { background: var(--gold); color: var(--dark); border: 2px solid var(--gold); }
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn-outline { background: transparent; color: var(--text-light); border: 2px solid rgba(240,236,228,0.4); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline-light { background: transparent; color: var(--text-light); border: 2px solid rgba(240,236,228,0.35); }
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold); }

/* ══════════════════════════════════════════════════════════
   BANNIÈRE DE PAGE (sous-pages)
   ══════════════════════════════════════════════════════════ */
.page-banner { position: relative; padding: 9rem 5vw 3rem; overflow: hidden; }
.page-banner-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center 30%;
  filter: brightness(0.5);
}
.page-banner-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(28,37,71,0.4) 0%, rgba(28,37,71,0.78) 100%);
}
.page-banner-inner { position: relative; z-index: 1; max-width: 780px; }
.page-supertitle {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
}
.page-title {
  font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700; color: var(--text-light); line-height: 1.2; margin-bottom: 1.25rem;
}
.page-intro {
  font-size: 1.05rem; color: rgba(240,236,228,0.75); line-height: 1.8; max-width: 700px;
}

/* ══════════════════════════════════════════════════════════
   HOME HERO (index.html — nouveau contenu court V7)
   ══════════════════════════════════════════════════════════ */
.home-hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; padding: 8rem 5vw 4rem; }
.home-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center 30%; filter: brightness(0.5); }
.home-hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, rgba(28,37,71,0.85) 40%, rgba(28,37,71,0.35) 100%); }
.home-hero-inner { position: relative; z-index: 1; max-width: 760px; }
.home-hero-kicker { font-family: var(--font-serif); font-size: clamp(1.1rem, 2.2vw, 1.4rem); font-weight: 400; color: var(--text-light); line-height: 1.5; opacity: 0.9; margin-bottom: 1.5rem; }
.home-hero-separator { width: 60px; height: 2px; background: var(--gold); margin-bottom: 1.5rem; }
.home-hero-title { font-family: var(--font-serif); font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 700; color: var(--text-light); line-height: 1.15; margin-bottom: 2rem; }
.home-hero-title em { font-style: normal; color: var(--gold); }
.home-hero-methode { font-size: 1.05rem; color: rgba(240,236,228,0.85); line-height: 1.8; margin-bottom: 1rem; max-width: 560px; }
.home-hero-methode strong { color: var(--text-light); font-weight: 600; }
.home-hero-benefices { font-size: 0.98rem; color: var(--gold-light); font-style: italic; margin-bottom: 2.5rem; line-height: 1.7; max-width: 560px; }
.home-hero-benefices .benefice-phrase { display: inline-block; margin-right: 0.4em; }
.home-hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ══════════════════════════════════════════════════════════
   SECTIONS GÉNÉRIQUES (fond clair/sombre + conteneur centré)
   ══════════════════════════════════════════════════════════ */
.section-light { background: var(--light); padding: 7rem 5vw; }
.section-dark { background: var(--dark); padding: 7rem 5vw; }
.section-inner { max-width: 1140px; margin: 0 auto; }

.link-arrow {
  font-size: 0.875rem; color: var(--gold); letter-spacing: 0.06em;
  display: inline-flex; align-items: center; gap: 0.5rem; transition: gap 0.2s;
}
.link-arrow:hover { gap: 0.85rem; }

/* ══════════════════════════════════════════════════════════
   TITRES DE SECTION GÉNÉRIQUES
   ══════════════════════════════════════════════════════════ */
.section-supertitle, .section-supertitle-dark {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
}
.section-title-light {
  font-family: var(--font-serif); font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700; color: var(--text-light); line-height: 1.2; margin-bottom: 1.5rem;
}
.section-title-dark {
  font-family: var(--font-serif); font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 700; color: var(--text-dark); line-height: 1.25; margin-bottom: 1.5rem;
}
.section-intro-light {
  font-size: 1rem; font-style: italic; color: rgba(240,236,228,0.7);
  max-width: 680px; line-height: 1.8; margin-bottom: 3rem;
}
.section-intro-dark {
  font-size: 1rem; color: #5a5a5a; max-width: 680px; line-height: 1.7; margin-bottom: 2.5rem;
}

/* ══════════════════════════════════════════════════════════
   DISPOSITIF / PILIERS (approche.html — grille 3 colonnes sombre)
   ══════════════════════════════════════════════════════════ */
.dispositif { background: var(--dark); padding: 4rem 5vw 7rem; }
.dispositif-inner { max-width: 1140px; margin: 0 auto; }
.dispositif-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.dispositif-bloc { background: rgba(255,255,255,0.04); border: 1px solid rgba(201,168,76,0.2); border-radius: 4px; padding: 2.25rem 2rem; transition: border-color 0.25s, background 0.25s; }
.dispositif-bloc:hover { border-color: rgba(201,168,76,0.5); background: rgba(201,168,76,0.06); }
.dispositif-icon { font-size: 2.2rem; margin-bottom: 1.25rem; }
.dispositif-bloc-title { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 600; color: var(--text-light); margin-bottom: 0.85rem; line-height: 1.3; }
.dispositif-bloc-text { font-size: 0.92rem; color: rgba(240,236,228,0.65); line-height: 1.75; }

/* Variante claire — utilisée pour la section "Notre approche" fusionnée sur l'accueil */
.dispositif--light { background: var(--light); }
.dispositif--light .dispositif-bloc { background: #ffffff; border: 1px solid var(--light-mid); box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.dispositif--light .dispositif-bloc:hover { border-color: var(--light-mid); background: #ffffff; box-shadow: 0 8px 35px rgba(0,0,0,0.12); transform: translateY(-3px); }
.dispositif--light .dispositif-bloc-title { color: var(--text-dark); }
.dispositif--light .dispositif-bloc-text { color: #3d3d3d; }

/* ══════════════════════════════════════════════════════════
   ÉPOPÉES — blocs alternés (epopees.html + pages Top Management)
   ══════════════════════════════════════════════════════════ */
.epopee-section { padding: 6rem 5vw; }
.epopee-section.bg-light { background: var(--light); }
.epopee-section.bg-dark  { background: var(--dark); }
.epopee-inner {
  max-width: 1140px; margin: 0 auto; display: grid;
  grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
}
.epopee-inner.reverse { direction: rtl; }
.epopee-inner.reverse > * { direction: ltr; }
.epopee-visual { border-radius: 4px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.25); }
.epopee-visual img { width: 100%; height: 480px; object-fit: cover; }

.epopee-content-light {} /* marqueur sémantique, pas de style propre */
.epopee-numero {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem;
}
.epopee-titre-light, .epopee-titre-dark {
  font-family: var(--font-serif); font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 700; line-height: 1.2; margin-bottom: 0.5rem;
}
.epopee-titre-light { color: var(--text-dark); }
.epopee-titre-dark { color: var(--text-light); }
.epopee-sous-titre-light, .epopee-sous-titre-dark {
  font-size: 1rem; font-style: italic; margin-bottom: 0.75rem;
}
.epopee-sous-titre-light { color: #5a5a5a; }
.epopee-sous-titre-dark { color: rgba(240,236,228,0.6); }
.epopee-cibles-light, .epopee-cibles-dark {
  display: inline-block; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--gold); padding: 0.3rem 0.8rem;
  border-radius: 2px; margin-bottom: 2rem;
}
.epopee-cibles-light { background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.3); }
.epopee-cibles-dark { border: 1px solid rgba(201,168,76,0.35); }
.epopee-moment-label, .epopee-action-label {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.5rem;
}
.epopee-moment-text-light, .epopee-moment-text-dark {
  font-size: 0.98rem; line-height: 1.8; margin-bottom: 2rem;
  padding: 1.25rem; border-left: 3px solid var(--gold); border-radius: 0 4px 4px 0;
}
.epopee-moment-text-light { color: #3d3d3d; background: var(--light-mid); }
.epopee-moment-text-dark { color: rgba(240,236,228,0.75); background: rgba(255,255,255,0.04); }
.epopee-action-text-light, .epopee-action-text-dark { font-size: 0.98rem; line-height: 1.8; margin-bottom: 2rem; }
.epopee-action-text-light { color: #3d3d3d; }
.epopee-action-text-dark { color: rgba(240,236,228,0.75); }

.graal-box-light, .graal-box-dark {
  border-radius: 4px; padding: 1.5rem; margin-bottom: 1.75rem;
}
.graal-box-light { background: white; border: 1px solid var(--light-mid); box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.graal-box-dark { background: rgba(255,255,255,0.04); border: 1px solid rgba(201,168,76,0.2); }
.graal-box-title {
  font-family: var(--font-serif); font-size: 0.95rem; font-weight: 600;
  margin-bottom: 0.85rem; display: flex; align-items: center; gap: 0.5rem;
}
.graal-box-light .graal-box-title { color: var(--text-dark); }
.graal-box-dark .graal-box-title { color: var(--text-light); }
.graal-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.graal-list li { font-size: 0.92rem; display: flex; align-items: baseline; gap: 0.6rem; }
.graal-box-light .graal-list li { color: #3d3d3d; }
.graal-box-dark .graal-list li { color: rgba(240,236,228,0.75); }
.graal-list li::before { content: '—'; color: var(--gold); flex-shrink: 0; }

.format-row { margin-bottom: 1.5rem; }
.format-label { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.4rem; }
.format-tag, .format-tag-dark {
  display: inline-block; font-size: 0.78rem; border-radius: 2px; padding: 0.25rem 0.65rem; margin: 0.2rem 0.2rem 0.2rem 0;
}
.format-tag { color: #5a5a5a; background: var(--light-mid); }
.format-tag-dark { color: rgba(240,236,228,0.65); background: rgba(255,255,255,0.06); }

/* Ancres de navigation rapide (sous-nav de page) */
.epopees-nav {
  background: var(--dark-mid); border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 0 5vw; display: flex; gap: 0; overflow-x: auto;
}
.epopees-nav a {
  padding: 1.1rem 1.5rem; font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--text-muted); white-space: nowrap; border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.epopees-nav a:hover { color: var(--gold); border-bottom-color: var(--gold); }

/* ══════════════════════════════════════════════════════════
   CARTES (Épopées grille, cibles, témoignages, équipe mini)
   ══════════════════════════════════════════════════════════ */
.epopees-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; margin-bottom: 3.5rem; }
.epopee-card {
  background: #fff; border: 1px solid rgba(201,168,76,0.35); border-radius: 4px;
  padding: 2rem 1.5rem; display: flex; flex-direction: column;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.epopee-card:hover { background: rgba(201,168,76,0.06); border-color: rgba(201,168,76,0.7); transform: translateY(-4px); }
.epopee-icon { font-size: 2rem; margin-bottom: 1rem; }
.epopee-card-title { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.75rem; line-height: 1.3; }
.epopee-card-desc { font-size: 0.9rem; color: #6b7280; line-height: 1.7; font-style: italic; }
.epopee-card-moment { font-size: 0.9rem; color: #5a5a5a; line-height: 1.7; margin-bottom: 1rem; flex-grow: 1; }
.epopee-card-livrable-wrap { margin-bottom: 0.75rem; }
.epopee-card-livrable-label { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.2rem; }
.epopee-card-livrable { font-size: 0.9rem; color: var(--text-dark); font-weight: 600; line-height: 1.45; }
.epopee-card-module { font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); font-weight: 500; border-top: 1px solid var(--light-mid); padding-top: 0.75rem; margin-top: 0.75rem; }

.temoignages-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-bottom: 1.5rem; }
.temoignage { background: rgba(255,255,255,0.04); border: 1px solid rgba(201,168,76,0.18); border-radius: 4px; padding: 2rem 1.75rem; }
.temoignage-quote { font-family: var(--font-serif); font-style: italic; font-size: 0.98rem; color: rgba(240,236,228,0.85); line-height: 1.8; margin-bottom: 1.5rem; }
.temoignage-quote::before { content: '\201C'; color: var(--gold); font-size: 1.5rem; line-height: 0; vertical-align: -0.4em; margin-right: 0.15em; }
.temoignage-quote::after  { content: '\201D'; color: var(--gold); font-size: 1.5rem; line-height: 0; vertical-align: -0.4em; margin-left: 0.15em; }
.temoignage-attr { font-size: 0.8rem; color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase; border-top: 1px solid rgba(201,168,76,0.2); padding-top: 1rem; }

.cibles-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.cibles-grid.cols-2 { grid-template-columns: repeat(2,1fr); max-width: 900px; margin: 0 auto; }
.cible-card {
  padding: 2.25rem 1.75rem; border: 1px solid rgba(201,168,76,0.2); border-radius: 4px; background: rgba(255,255,255,0.04);
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}
.cible-card:hover { border-color: rgba(201,168,76,0.5); background: rgba(201,168,76,0.06); transform: translateY(-3px); }
.cible-icon { font-size: 1.75rem; margin-bottom: 1rem; }
.cible-title { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 600; color: var(--text-light); margin-bottom: 0.35rem; line-height: 1.3; }
.cible-subtitle { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 1.25rem; font-style: italic; }
.cible-pain { font-size: 0.95rem; color: rgba(240,236,228,0.75); line-height: 1.7; margin-bottom: 1rem; }
.cible-promise { font-size: 0.9rem; color: var(--text-light); font-weight: 500; line-height: 1.6; border-top: 1px solid rgba(201,168,76,0.2); padding-top: 1rem; }

.equipe-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 2.5rem; }
.equipe-mini-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(201,168,76,0.2); border-radius: 4px; overflow: hidden; text-align: center; transition: border-color 0.25s, background 0.25s; }
.equipe-mini-card:hover { border-color: rgba(201,168,76,0.45); background: rgba(201,168,76,0.07); }
.equipe-mini-photo { width: 100%; height: 220px; object-fit: cover; object-position: center top; display: block; }
.equipe-mini-info { padding: 1.35rem 1.25rem; }
.equipe-mini-nom { font-family: var(--font-serif); font-size: 1.05rem; font-weight: 700; color: var(--text-light); margin-bottom: 0.4rem; }
.equipe-mini-atout { font-size: 0.85rem; color: rgba(240,236,228,0.6); line-height: 1.6; }
.equipe-link-center { text-align: center; }

.benefice-list { display: flex; flex-direction: column; gap: 1rem; margin: 1.5rem 0; }
.benefice-item { padding: 1.1rem 1.5rem; border-left: 3px solid var(--gold); background: white; border-radius: 0 4px 4px 0; }
.benefice-item-title { font-family: var(--font-serif); font-size: 1.05rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.2rem; }
.benefice-item-desc { font-size: 0.9rem; color: #5a5a5a; line-height: 1.6; }

.promesses-row { display: flex; gap: 2rem; flex-wrap: wrap; margin-bottom: 3rem; padding: 2rem; background: var(--light-mid); border-radius: 4px; border: 1px solid rgba(201,168,76,0.3); }
.promesse-item { flex: 1; min-width: 200px; }
.promesse-label { font-weight: 600; font-size: 0.95rem; color: var(--text-dark); margin-bottom: 0.35rem; }
.promesse-desc { font-size: 0.875rem; color: #5a5a5a; font-style: italic; line-height: 1.6; }

/* ══════════════════════════════════════════════════════════
   PROFILS ÉQUIPE (equipe.html)
   ══════════════════════════════════════════════════════════ */
.profil { background: var(--light); padding: 7rem 5vw; }
.profil--alt { background: #ffffff; border-top: 1px solid var(--light-mid); }
.profil-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 360px 1fr; gap: 6rem; align-items: start; }
.profil-photo-wrap { position: sticky; top: 100px; }
.profil-photo { border-radius: 4px; overflow: hidden; box-shadow: 0 24px 64px rgba(0,0,0,0.18); margin-bottom: 0.4rem; }
.photo-credit { font-size: 0.7rem; color: #9ca3af; text-align: right; margin-bottom: 2rem; letter-spacing: 0.04em; }
.profil-photo img { width: 100%; height: 480px; object-fit: cover; object-position: center top; }
.profil-identite { text-align: center; padding: 1.5rem; background: white; border: 1px solid var(--light-mid); border-radius: 4px; }
.profil-nom { font-family: var(--font-serif); font-size: 1.35rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.25rem; }
.profil-titre { font-size: 0.8rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; }
.profil-chiffres { display: flex; flex-direction: column; gap: 0.75rem; border-top: 1px solid var(--light-mid); padding-top: 1.25rem; }
.profil-chiffre { display: flex; align-items: baseline; justify-content: center; gap: 0.5rem; }
.profil-chiffre-val { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; color: var(--text-dark); }
.profil-chiffre-label { font-size: 0.8rem; color: #5a5a5a; }
.profil-section-label { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }
.profil-section-title { font-family: var(--font-serif); font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 700; color: var(--text-dark); line-height: 1.25; margin-bottom: 2rem; }
.profil-text { font-size: 1rem; color: #3d3d3d; line-height: 1.9; margin-bottom: 1.25rem; }
.profil-conviction { font-family: var(--font-serif); font-style: italic; font-size: 1.1rem; color: var(--text-dark); line-height: 1.65; border-left: 3px solid var(--gold); padding: 1.25rem 1.5rem; background: var(--light-mid); border-radius: 0 4px 4px 0; margin: 2rem 0; }
.profil-secteurs-label { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.75rem; margin-top: 2rem; }
.profil-secteurs { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.profil-secteur-tag { font-size: 0.82rem; color: var(--text-dark); background: white; border: 1px solid var(--light-mid); border-radius: 2px; padding: 0.35rem 0.85rem; }
.profil-livres { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--light-mid); }
.profil-livre { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.75rem; }
.profil-livre-icon { color: var(--gold); flex-shrink: 0; font-size: 1rem; margin-top: 2px; }
.profil-livre-text { font-size: 0.92rem; color: #3d3d3d; line-height: 1.55; }
.profil-livre-text em { color: var(--text-dark); }

.distingue { background: var(--dark); padding: 6rem 5vw; }
.distingue-inner { max-width: 1000px; margin: 0 auto; }
.distingue-supertitle { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; text-align: center; }
.distingue-title { font-family: var(--font-serif); font-size: clamp(1.6rem, 2.8vw, 2.2rem); font-weight: 700; color: var(--text-light); line-height: 1.25; margin-bottom: 3.5rem; text-align: center; }
.distingue-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.distingue-bloc { background: rgba(255,255,255,0.04); border: 1px solid rgba(201,168,76,0.18); border-radius: 4px; padding: 2rem 1.75rem; }
.distingue-bloc-icon { font-size: 1.5rem; margin-bottom: 1rem; }
.distingue-bloc-title { font-family: var(--font-serif); font-size: 1rem; font-weight: 600; color: var(--text-light); margin-bottom: 0.75rem; line-height: 1.3; }
.distingue-bloc-text { font-size: 0.88rem; color: rgba(240,236,228,0.65); line-height: 1.75; }

/* ══════════════════════════════════════════════════════════
   CTA (générique, réutilisé en fin de page)
   ══════════════════════════════════════════════════════════ */
.cta-final, .page-cta {
  position: relative; padding: 8rem 5vw; text-align: center; overflow: hidden; background: var(--dark);
}
.page-cta { padding: 7rem 5vw; }
.cta-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(0.28); }
.cta-bg::after { content: ''; position: absolute; inset: 0; background: rgba(28,37,71,0.55); }
.cta-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.cta-title { font-family: var(--font-serif); font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; color: var(--text-light); line-height: 1.2; margin-bottom: 1.25rem; }
.cta-sub, .cta-text { font-size: 1.05rem; color: rgba(240,236,228,0.72); line-height: 1.7; margin-bottom: 2.5rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════════════════════════════
   AUTO-DIAGNOSTIC (#diagnostic)
   ══════════════════════════════════════════════════════════ */
.diagnostic { background: var(--light); padding: 7rem 5vw; }
.diagnostic-inner { max-width: 860px; margin: 0 auto; }
.diagnostic-intro { font-size: 1rem; color: #5a5a5a; line-height: 1.7; max-width: 600px; margin-bottom: 3rem; }
.diag-question { margin-bottom: 2.5rem; border: none; padding: 0; min-width: 0; }
.diag-question-label { display: block; width: 100%; font-family: var(--font-serif); font-size: 1.05rem; font-weight: 600; color: var(--text-dark); margin-bottom: 1.1rem; padding: 0; }
.diag-options { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.diag-option { display: flex; align-items: center; gap: 0.6rem; padding: 0.875rem 1.1rem; min-height: 44px; border: 1px solid var(--light-mid); border-radius: 3px; background: white; cursor: pointer; font-size: 0.9rem; color: var(--text-dark); transition: border-color 0.2s, background 0.2s; user-select: none; }
.diag-option:hover { border-color: var(--gold); }
.diag-option.selected { border-color: var(--gold); background: #fdf8ed; font-weight: 500; }
.diag-option input[type="radio"] { display: none; }
.diag-result { display: none; margin-top: 2.5rem; padding: 2rem 2.25rem; background: var(--dark); border-radius: 4px; border: 1px solid rgba(201,168,76,0.35); border-top: 3px solid var(--gold); }
.diag-result.visible { display: block; }
.diag-result-label { font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }
.diag-result-title { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 700; color: var(--text-light); margin-bottom: 0.85rem; line-height: 1.3; }
.diag-result-text { font-size: 0.95rem; color: rgba(240,236,228,0.72); line-height: 1.75; margin-bottom: 1.5rem; }
.diag-result-btns { display: flex; gap: 0.85rem; flex-wrap: wrap; }

/* ══════════════════════════════════════════════════════════
   FORMULAIRE DE CONTACT
   ══════════════════════════════════════════════════════════ */
.contact-page { display: grid; grid-template-columns: 1fr 1fr; min-height: calc(100vh - 65px); }
.contact-left { position: relative; overflow: hidden; }
.contact-left-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(0.35); }
.contact-left-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, rgba(28,37,71,0.2) 0%, rgba(28,37,71,0.7) 100%); }
.contact-left-content { position: relative; z-index: 1; padding: 5rem 3rem 4rem; display: flex; flex-direction: column; justify-content: center; height: 100%; }
.contact-supertitle { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; }
.contact-title { font-family: var(--font-serif); font-size: clamp(1.8rem, 2.8vw, 2.8rem); font-weight: 700; color: var(--text-light); line-height: 1.2; margin-bottom: 1.5rem; }
.contact-subtitle { font-size: 1.05rem; color: rgba(240,236,228,0.7); line-height: 1.8; margin-bottom: 3rem; max-width: 380px; }
.contact-info-block { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 0.85rem; }
.contact-info-icon { font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.contact-info-label { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.2rem; }
.contact-info-value { font-size: 0.95rem; color: rgba(240,236,228,0.8); line-height: 1.5; }
.contact-info-value a { color: var(--gold-light); transition: color 0.2s; }
.contact-info-value a:hover { color: var(--gold); }
.contact-right { background: var(--light); padding: 5rem 4rem; display: flex; flex-direction: column; justify-content: center; }
.form-title { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.5rem; }
.form-intro { font-size: 0.95rem; color: #5a5a5a; line-height: 1.6; margin-bottom: 2.5rem; }
.form-group { margin-bottom: 1.5rem; }
.form-label { display: block; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dark); margin-bottom: 0.5rem; }
.form-label .required { color: var(--gold); margin-left: 2px; }
.form-input, .form-textarea, .form-select {
  width: 100%; padding: 0.85rem 1rem; font-family: var(--font-sans); font-size: 0.95rem;
  color: var(--text-dark); background: white; border: 1.5px solid var(--light-mid);
  border-radius: 3px; transition: border-color 0.2s, box-shadow 0.2s; outline: none; appearance: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.12); }
.form-textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit {
  width: 100%; padding: 1rem 2rem; background: var(--gold); color: var(--dark);
  font-family: var(--font-sans); font-size: 0.875rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; border: none; border-radius: 3px; cursor: pointer;
  transition: background 0.25s; margin-top: 0.75rem;
}
.form-submit:hover { background: var(--gold-light); }
.form-note { font-size: 0.8rem; color: var(--text-muted); text-align: center; margin-top: 1rem; line-height: 1.5; }
.form-checkbox-group { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1.5rem; }
.form-checkbox-group input[type="checkbox"] { flex-shrink: 0; width: 18px; height: 18px; margin-top: 2px; accent-color: var(--gold); cursor: pointer; }
.form-checkbox-group label { font-size: 0.875rem; color: #4a4a4a; line-height: 1.5; cursor: pointer; }
.form-checkbox-group label .required { color: var(--gold); margin-left: 2px; }
.form-success { display: none; text-align: center; padding: 2rem; }
.form-success.visible { display: block; }
.form-success-icon { font-size: 3rem; margin-bottom: 1rem; }
.form-success-title { font-family: var(--font-serif); font-size: 1.5rem; color: var(--text-dark); margin-bottom: 0.75rem; }
.form-success-text { font-size: 0.95rem; color: #5a5a5a; line-height: 1.7; }

/* ══════════════════════════════════════════════════════════
   FOOTER — mis à jour V7 (logo = lien, liste de liens flexible)
   ══════════════════════════════════════════════════════════ */
footer {
  background: var(--dark); border-top: 1px solid rgba(201,168,76,0.15);
  padding: 2rem 5vw; display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-logo { font-family: var(--font-serif); font-size: 1rem; color: var(--gold); transition: color 0.2s; }
.footer-logo:hover { color: var(--gold-light); }
.footer-links { display: flex; gap: 1.5rem; align-items: center; }
.footer-links a { font-size: 0.85rem; color: var(--gold-light); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 0.8rem; color: var(--text-muted); width: 100%; text-align: center; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.05); }

/* ══════════════════════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════════════════════ */
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
.fade-in-delay-5 { transition-delay: 0.5s; }
.fade-in-delay-6 { transition-delay: 0.6s; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .profil-inner { grid-template-columns: 1fr; gap: 3rem; }
  .profil-photo-wrap { position: static; }
  .profil-photo img { height: 360px; }
  .distingue-grid { grid-template-columns: 1fr; gap: 1.25rem; }
}
@media (max-width: 900px) {
  .epopee-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .epopee-inner.reverse { direction: ltr; }
  .epopee-visual img { height: 300px; }
  .epopees-grid { grid-template-columns: repeat(2,1fr); }
  .cibles-grid, .cibles-grid.cols-2 { grid-template-columns: 1fr; }
  .temoignages-grid { grid-template-columns: 1fr; }
  .dispositif-grid { grid-template-columns: 1fr; }
  .contact-page { grid-template-columns: 1fr; }
  .contact-left { min-height: 320px; }
  .contact-left-content { padding: 3rem 2rem; }
  .contact-right { padding: 3rem 2rem; }
  .form-grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 780px) {
  .equipe-grid-3 { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav-links {
    display: none;
  }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 65px; left: 0; right: 0;
    background: var(--dark-mid); padding: 2rem 5vw; gap: 0.5rem;
    border-top: 1px solid rgba(201,168,76,0.2);
    max-height: calc(100vh - 65px); overflow-y: auto;
  }
  .nav-links.open > a, .nav-links.open .nav-item-dropdown { padding: 0.6rem 0; }
  .nav-toggle { display: block; }
  .nav-item-dropdown { flex-wrap: wrap; }
  .nav-dropdown-toggle { display: inline-block; }
  .nav-dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; background: transparent; padding: 0 0 0 1rem;
    min-width: 0; margin-top: 0.5rem; display: none; width: 100%;
  }
  .nav-item-dropdown.mobile-open .nav-dropdown { display: block; }
  .nav-dropdown a { padding: 0.5rem 0; opacity: 0.7; }
  .epopees-grid { grid-template-columns: 1fr; }
  .hero-ctas, .cta-btns { flex-direction: column; align-items: flex-start; }
  .cta-btns { align-items: stretch; }
  .promesses-row { flex-direction: column; }
  .diag-options { flex-direction: column; }
  .nav-lang-switch { padding-left: 0; border-left: none; margin-top: 1rem; }
  .profil-photo img { height: 300px; }
}
