/* ============================================================
   C'EST ASSEZ. — Landing Page V2 — 7 Avril 2026
   Basé sur le design system du skill cest-assez-web-design
   Corrections des bugs v1 + nouveaux composants
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,700&family=JetBrains+Mono:wght@400;500&display=swap');

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --or-patine-50: #F9F5ED;
  --or-patine-100: #F0E6CF;
  --or-patine-200: #E2D0A4;
  --or-patine-300: #D1B87A;
  --or-patine-400: #C0A460;
  --or-patine-500: #B0914A;
  --or-patine-600: #957A3C;
  --or-patine-700: #7A6330;
  --or-patine-800: #5E4C24;
  --or-patine-900: #43361A;
  --mauve-cendre-50: #F6F2F4;
  --mauve-cendre-100: #EAE2E6;
  --mauve-cendre-200: #D6CAD0;
  --mauve-cendre-500: #9E7E8A;
  --mauve-cendre-600: #856974;
  --mauve-cendre-800: #534148;
  --souffle: #FAF1E4;
  --beton: #2E2422;
  --pierre: #706258;
  --ciment: #C4B8AC;
  --ancrage: #2A5548;
  --alerte: #C4573A;
  --signal: #B8862B;
  --traverse: #3B6E8A;

  --color-bg: var(--souffle);
  --color-text: var(--beton);
  --color-primary: var(--or-patine-500);
  --color-primary-hover: var(--or-patine-600);

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'Consolas', monospace;

  --text-xs: 0.75rem; --text-sm: 0.875rem; --text-base: 1rem;
  --text-lg: 1.125rem; --text-xl: 1.25rem; --text-2xl: 1.5rem;
  --text-3xl: 1.875rem; --text-4xl: 2.25rem; --text-5xl: 3rem;
  --text-6xl: 3.75rem;

  --leading-tight: 1.2; --leading-normal: 1.6;
  --tracking-tight: -0.02em; --tracking-wide: 0.05em;

  --space-1: 0.25rem; --space-2: 0.5rem; --space-3: 0.75rem;
  --space-4: 1rem; --space-5: 1.25rem; --space-6: 1.5rem;
  --space-8: 2rem; --space-10: 2.5rem; --space-12: 3rem;
  --space-16: 4rem; --space-20: 5rem; --space-24: 6rem;
  --space-32: 8rem;

  --shadow-sm: 0 1px 2px rgba(46,36,34,0.05);
  --shadow-md: 0 4px 6px rgba(46,36,34,0.07), 0 2px 4px rgba(46,36,34,0.05);
  --shadow-lg: 0 10px 15px rgba(46,36,34,0.08), 0 4px 6px rgba(46,36,34,0.04);
  --shadow-xl: 0 20px 25px rgba(46,36,34,0.10), 0 8px 10px rgba(46,36,34,0.04);

  --radius-sm: 4px; --radius-md: 8px; --radius-lg: 12px;
  --radius-xl: 16px; --radius-full: 9999px;
  --transition-fast: 150ms ease; --transition-base: 200ms ease;
  --transition-slow: 300ms ease;
  --max-width-content: 1200px; --max-width-narrow: 800px;
  --navbar-height: 72px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--navbar-height) + 16px);
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  line-height: var(--leading-normal);
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--traverse); text-decoration: none; transition: color var(--transition-base); }
a:hover { color: var(--beton); }
ul, ol { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: var(--leading-tight); letter-spacing: var(--tracking-tight); }

/* ============================================================
   UTILITIES
   ============================================================ */
.container { width: 100%; max-width: var(--max-width-content); margin: 0 auto; padding: 0 var(--space-6); }
.container--narrow { max-width: var(--max-width-narrow); }
.section { padding: var(--space-20) 0; }
.bg-souffle { background-color: var(--souffle); }
.bg-beton { background-color: var(--beton); }
.bg-blanc { background-color: #FFFFFF; }
.bg-mauve { background-color: var(--mauve-cendre-50); }
.text-or { color: var(--or-patine-500); }
.text-beton { color: var(--beton); }
.text-souffle { color: var(--souffle); }
.text-pierre { color: var(--pierre); }
.text-ciment { color: var(--ciment); }
.text-xl { font-size: var(--text-xl); }

.brand-name { font-family: var(--font-heading); font-weight: 700; text-transform: uppercase; letter-spacing: var(--tracking-wide); }
.brand-name .point, .point { color: var(--or-patine-500); }

.phrase-choc {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 700;
  color: var(--or-patine-500);
  font-size: var(--text-2xl);
  line-height: var(--leading-tight);
}

.section__title { font-size: var(--text-4xl); font-weight: 700; margin-bottom: var(--space-6); }
.section__subtitle { font-size: var(--text-lg); color: var(--pierre); margin-bottom: var(--space-10); max-width: 65ch; }

.content-text { max-width: 65ch; }
.content-text p { margin-bottom: var(--space-4); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  font-family: var(--font-body); font-size: var(--text-base); font-weight: 600;
  padding: var(--space-3) var(--space-8); border-radius: var(--radius-md);
  border: 2px solid transparent; cursor: pointer; transition: all var(--transition-base);
  min-height: 44px; display: inline-flex; align-items: center; justify-content: center;
  gap: var(--space-2); text-decoration: none; white-space: nowrap;
  letter-spacing: var(--tracking-wide);
}
.btn-primary {
  background-color: var(--or-patine-500); color: var(--beton); border-color: var(--or-patine-500);
}
.btn-primary:hover {
  background-color: var(--or-patine-600); border-color: var(--or-patine-600);
  color: var(--souffle); transform: translateY(-1px); box-shadow: var(--shadow-md);
}
.btn-primary:active { background-color: var(--or-patine-700); transform: translateY(0); }
.btn-primary:focus-visible { outline: 2px solid var(--or-patine-500); outline-offset: 3px; }
.btn-secondary { background-color: transparent; color: var(--beton); border-color: var(--beton); }
.btn-secondary:hover { background-color: var(--beton); color: var(--souffle); transform: translateY(-1px); }
.btn-lg { font-size: var(--text-lg); padding: var(--space-4) var(--space-12); min-height: 52px; }

/* ============================================================
   BADGES
   ============================================================ */
.badge {
  font-family: var(--font-body); font-size: var(--text-xs); font-weight: 600;
  letter-spacing: var(--tracking-wide); text-transform: uppercase;
  padding: var(--space-1) var(--space-3); border-radius: var(--radius-full);
  display: inline-flex; align-items: center;
}
.badge-survivante { background-color: var(--mauve-cendre-100); color: var(--mauve-cendre-800); }
.badge-7avril { background-color: var(--or-patine-100); color: var(--or-patine-800); }

/* ============================================================
   HEADER — Fixed, with correct flex layout
   ============================================================ */
.header {
  background-color: var(--beton); position: fixed; top: 0; left: 0; right: 0;
  z-index: 50; height: var(--navbar-height); transition: box-shadow var(--transition-base);
}
.header--scrolled { box-shadow: 0 4px 20px rgba(46,36,34,0.3); }
.header__nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; gap: var(--space-4);
}
.header__logo { color: var(--or-patine-500); font-size: var(--text-xl); text-decoration: none; flex-shrink: 0; }
.header__logo:hover { color: var(--or-patine-400); }

.header__links {
  display: flex; align-items: center; gap: var(--space-5);
}
.header__links li { display: flex; align-items: center; }
.header__links a {
  color: var(--souffle); font-size: var(--text-sm); font-weight: 500;
  letter-spacing: var(--tracking-wide); text-transform: uppercase;
  transition: color var(--transition-base); white-space: nowrap;
}
.header__links a:hover { color: var(--or-patine-500); }
.header__cta { font-size: var(--text-sm); }

.header__burger {
  display: none; flex-direction: column; gap: 5px; background: none; border: none;
  cursor: pointer; padding: var(--space-2); min-width: 44px; min-height: 44px;
  align-items: center; justify-content: center;
}
.header__burger span { width: 24px; height: 2px; background-color: var(--souffle); transition: all var(--transition-base); display: block; }
.header__burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.header__burger.active span:nth-child(2) { opacity: 0; }
.header__burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background-color: var(--beton);
  background-image: linear-gradient(135deg, rgba(46,36,34,0.95) 0%, rgba(46,36,34,0.80) 50%, rgba(46,36,34,0.92) 100%);
  padding-top: var(--navbar-height); overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 40% at 20% 80%, rgba(176,145,74,0.08) 0%, transparent 60%),
              radial-gradient(ellipse 50% 50% at 80% 20%, rgba(158,126,138,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero__content { position: relative; z-index: 2; text-align: center; padding: var(--space-16) 0; }
.hero__surtitle {
  font-size: var(--text-sm); color: var(--ciment); margin-bottom: var(--space-8);
  letter-spacing: var(--tracking-wide); font-weight: 600; text-transform: uppercase;
}
.hero__title {
  font-family: var(--font-heading); font-size: var(--text-6xl); font-weight: 800;
  color: var(--souffle); margin-bottom: var(--space-8); max-width: 900px; margin-left: auto; margin-right: auto;
}
.hero__subtitle {
  font-size: var(--text-xl); color: var(--ciment); max-width: 700px;
  margin: 0 auto var(--space-10); line-height: var(--leading-normal);
}

.hero__benefits {
  display: flex; flex-direction: column; gap: var(--space-3);
  max-width: 700px; margin: 0 auto var(--space-10); text-align: left;
}
.hero__benefits li {
  color: var(--souffle); font-size: var(--text-base); line-height: 1.5;
  padding-left: var(--space-6); position: relative;
}
.hero__benefits li::before {
  content: '—'; color: var(--or-patine-500); position: absolute; left: 0; font-weight: 700;
}
.hero__benefits--centered { text-align: left; margin: var(--space-8) auto; }
.hero__benefits--centered li { color: var(--souffle); }

.hero__cta-group { text-align: center; }
.hero__urgency { color: var(--ciment); font-size: var(--text-sm); margin-top: var(--space-4); letter-spacing: var(--tracking-wide); }

/* ============================================================
   PROFIL CARDS (Section 2 — light variant)
   ============================================================ */
.profils-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }

.profil-card--light {
  background-color: #FFFFFF; border: 1px solid var(--ciment);
  border-left: 4px solid var(--or-patine-500);
  border-radius: var(--radius-lg); padding: var(--space-8);
  transition: all var(--transition-slow);
}
.profil-card--light:hover { border-color: var(--or-patine-500); box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.profil-card__context { font-family: var(--font-heading); font-style: italic; font-size: var(--text-xl); color: var(--beton); margin-bottom: var(--space-3); font-weight: 600; }
.profil-card--light p { color: var(--pierre); line-height: var(--leading-normal); }
.profil-card--light strong { color: var(--beton); }

/* ============================================================
   CARDS PROFIL — Section 6 (Pour toi si)
   ============================================================ */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }

.card-profil {
  background: #FFFFFF; border: 1px solid var(--ciment);
  border-left: 4px solid var(--or-patine-500);
  border-radius: var(--radius-lg); padding: var(--space-8);
  transition: all var(--transition-slow);
}
.card-profil:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.card-profil__title { font-size: var(--text-xl); color: var(--beton); margin-bottom: var(--space-3); }
.card-profil p { color: var(--pierre); margin-bottom: var(--space-3); }
.card-profil__quote { font-family: var(--font-heading); font-style: italic; color: var(--pierre); font-size: var(--text-base); margin-top: var(--space-4); padding-top: var(--space-4); border-top: 1px solid rgba(196,184,172,0.3); }

/* ============================================================
   IMPACT QUOTES
   ============================================================ */
.impact-quotes { margin: var(--space-10) 0; display: flex; flex-direction: column; gap: var(--space-6); }
.impact-quotes blockquote {
  font-family: var(--font-heading); font-size: var(--text-2xl); font-weight: 600;
  color: var(--beton); border-left: 4px solid var(--or-patine-500);
  padding-left: var(--space-6); line-height: var(--leading-tight);
}

/* ============================================================
   MID CTA
   ============================================================ */
.cta-mid { text-align: center; margin-top: var(--space-10); }
.cta-mid p { margin-bottom: var(--space-4); }
.cta-mid__urgency { color: var(--pierre); font-size: var(--text-sm); margin-top: var(--space-3); letter-spacing: var(--tracking-wide); }

/* ============================================================
   FONDATRICES (Section 7)
   ============================================================ */
.fondatrices-grid { display: flex; flex-direction: column; gap: var(--space-10); margin-top: var(--space-10); }

.fondatrice-card {
  display: grid; grid-template-columns: 260px 1fr; gap: var(--space-8);
  background: #FFFFFF; border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-lg); transition: all var(--transition-slow);
}
.fondatrice-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-3px); }

.fondatrice-card__photo { height: 100%; min-height: 280px; overflow: hidden; }
.fondatrice-card__photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(30%) contrast(1.05); transition: filter var(--transition-slow); }
.fondatrice-card:hover .fondatrice-card__photo img { filter: grayscale(0%) contrast(1); }

.fondatrice-card__content { padding: var(--space-8); display: flex; flex-direction: column; justify-content: center; }
.fondatrice-card__name { font-size: var(--text-2xl); font-weight: 700; margin-bottom: var(--space-2); }
.fondatrice-card__title { font-size: var(--text-sm); color: var(--pierre); text-transform: uppercase; letter-spacing: var(--tracking-wide); font-weight: 600; margin-bottom: var(--space-3); }
.fondatrice-card__badge { margin-bottom: var(--space-4); }
.fondatrice-card__quote { font-family: var(--font-heading); font-style: italic; font-size: var(--text-lg); border-left: 3px solid var(--or-patine-500); padding-left: var(--space-4); margin-bottom: var(--space-4); line-height: var(--leading-normal); }
.fondatrice-card__desc { font-size: var(--text-base); color: var(--pierre); }

/* ============================================================
   PROGRAMME TIMELINE (Section 8)
   ============================================================ */
.timeline__period {
  font-family: var(--font-body); font-size: var(--text-sm); font-weight: 600;
  color: var(--pierre); text-transform: uppercase; letter-spacing: var(--tracking-wide);
  margin: var(--space-10) 0 var(--space-4); padding-bottom: var(--space-3);
  border-bottom: 2px solid var(--or-patine-500);
}

.timeline { display: flex; flex-direction: column; }

.timeline__item {
  display: flex; gap: var(--space-6); padding: var(--space-4) 0;
  border-bottom: 1px solid var(--ciment); border-left: 2px solid var(--or-patine-500);
  padding-left: var(--space-6); position: relative;
}
.timeline__item::before {
  content: ''; position: absolute; left: -5px; top: 50%; transform: translateY(-50%);
  width: 8px; height: 8px; border-radius: 50%; background: var(--or-patine-500);
}
.timeline__item--pause { background: var(--or-patine-50); border-radius: var(--radius-sm); }
.timeline__item--pause .timeline__title { color: var(--pierre); font-weight: 400; }

.timeline__time {
  font-family: var(--font-mono); font-size: var(--text-base); font-weight: 500;
  color: var(--or-patine-500); min-width: 60px; flex-shrink: 0; padding-top: 2px;
}
.timeline__content { flex: 1; }
.timeline__title { font-family: var(--font-body); font-size: var(--text-lg); font-weight: 600; color: var(--beton); margin-bottom: var(--space-2); }
.timeline__desc { font-size: var(--text-sm); color: var(--pierre); margin-bottom: var(--space-3); }

.timeline__speaker {
  display: inline-flex; align-items: center; gap: var(--space-3);
  margin-top: var(--space-2); margin-right: var(--space-4);
}
.timeline__speaker span { font-size: var(--text-sm); color: var(--pierre); }
.timeline__speakers-row { display: flex; flex-wrap: wrap; gap: var(--space-4); margin-top: var(--space-3); }

.timeline__avatar {
  width: 36px; height: 36px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--ciment); flex-shrink: 0;
}

.avatar-placeholder {
  width: 36px; height: 36px; border-radius: 50%; background: var(--mauve-cendre-100);
  color: var(--mauve-cendre-800); font-size: var(--text-xs); font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
  border: 2px solid var(--ciment);
}
.avatar-placeholder--round {
  width: 120px; height: 120px; font-size: var(--text-2xl); border: 3px solid var(--ciment);
}

/* VIP Block */
.timeline-vip {
  background: var(--or-patine-50); border: 2px solid var(--or-patine-300);
  border-radius: var(--radius-lg); padding: var(--space-8); margin-top: var(--space-10);
  text-align: center;
}
.timeline-vip__title { font-family: var(--font-heading); font-size: var(--text-2xl); color: var(--or-patine-700); margin: var(--space-4) 0 var(--space-3); }
.timeline-vip p { color: var(--pierre); }

/* ============================================================
   PEOPLE GRID (Section 9 — Les Voix)
   ============================================================ */
.voix__category {
  font-family: var(--font-body); font-size: var(--text-sm); font-weight: 600;
  color: var(--pierre); text-transform: uppercase; letter-spacing: var(--tracking-wide);
  margin: var(--space-10) 0 var(--space-4); padding-bottom: var(--space-2);
  border-bottom: 1px solid var(--ciment);
}
.voix__category:first-of-type { margin-top: var(--space-8); }
.voix__panel-desc { font-size: var(--text-base); color: var(--pierre); margin-bottom: var(--space-6); max-width: 65ch; }

.people-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: var(--space-6); margin-bottom: var(--space-6); }

.person-card { text-align: center; }
.person-card__photo {
  width: 120px; height: 120px; border-radius: 50%; overflow: hidden;
  margin: 0 auto var(--space-3); border: 3px solid var(--ciment);
  transition: border-color var(--transition-base);
}
.person-card:hover .person-card__photo { border-color: var(--or-patine-500); }
.person-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.person-card__name { font-family: var(--font-body); font-size: var(--text-base); font-weight: 600; margin-bottom: var(--space-1); }
.person-card__role { font-size: var(--text-sm); color: var(--pierre); font-style: italic; }

/* ============================================================
   BILLETS (Section 11)
   ============================================================ */
.billets-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-6); margin: var(--space-10) 0; align-items: start; }

.billet-card {
  background: #FFFFFF; border: 1px solid var(--ciment); border-radius: var(--radius-xl);
  padding: var(--space-8); transition: all var(--transition-slow); position: relative;
  display: flex; flex-direction: column;
}
.billet-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-4px); }
.billet-card--highlighted { border: 2px solid var(--or-patine-500); box-shadow: var(--shadow-lg); }

.billet-card__badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); }
.billet-card__header { text-align: center; margin-bottom: var(--space-6); padding-bottom: var(--space-6); border-bottom: 1px solid var(--ciment); }
.billet-card__name { font-size: var(--text-2xl); font-weight: 700; margin-bottom: var(--space-2); }
.billet-card__price { font-family: var(--font-heading); font-size: var(--text-5xl); font-weight: 800; color: var(--or-patine-500); line-height: 1; margin-bottom: var(--space-2); }
.billet-card__price span { font-size: var(--text-2xl); }
.billet-card__places { font-size: var(--text-sm); color: var(--pierre); font-weight: 500; }
.billet-card__features { flex: 1; margin-bottom: var(--space-6); }
.billet-card__features li {
  padding: var(--space-2) 0; font-size: var(--text-sm); color: var(--pierre);
  border-bottom: 1px solid rgba(196,184,172,0.3); padding-left: var(--space-6); position: relative;
}
.billet-card__features li::before {
  content: '—'; position: absolute; left: 0; color: var(--or-patine-500); font-weight: 700;
}
.billet-card__features li:last-child { border-bottom: none; }
.billet-card__tagline { font-family: var(--font-heading); font-style: italic; font-size: var(--text-sm); text-align: center; margin-bottom: var(--space-6); }
.billet-card__cta { width: 100%; text-align: center; }
.billets-note { text-align: center; font-size: var(--text-base); color: var(--pierre); max-width: 65ch; margin: 0 auto; }

/* ============================================================
   FAQ (Section 12)
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: var(--space-4); }

.faq-item { border: 1px solid var(--ciment); border-radius: var(--radius-lg); overflow: hidden; background: #FFFFFF; transition: all var(--transition-base); }
.faq-item:hover { border-color: var(--or-patine-300); }
.faq-item[open] { border-color: var(--or-patine-500); box-shadow: var(--shadow-md); }

.faq-item__question {
  padding: var(--space-6); cursor: pointer;
  font-family: var(--font-body); font-size: var(--text-lg); font-weight: 600; color: var(--beton);
  list-style: none; display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); min-height: 44px;
}
.faq-item__question::-webkit-details-marker { display: none; }
.faq-item__question::after { content: '+'; font-family: var(--font-mono); font-size: var(--text-2xl); color: var(--or-patine-500); flex-shrink: 0; }
.faq-item[open] .faq-item__question::after { content: '−'; }

.faq-item__answer { padding: 0 var(--space-6) var(--space-6); }
.faq-item__answer p { font-size: var(--text-base); color: var(--pierre); line-height: var(--leading-normal); max-width: 65ch; }

/* ============================================================
   CTA FINAL (Section 13)
   ============================================================ */
.cta-final { padding: var(--space-24) 0; }
.cta-final__text { margin-bottom: var(--space-8); }
.cta-final__text p { font-size: var(--text-xl); margin-bottom: var(--space-3); }
.cta-final__reasons { margin-bottom: var(--space-10); }
.cta-final__reasons p { font-size: var(--text-lg); margin-bottom: var(--space-3); }
.cta-final__action { margin-bottom: var(--space-10); }
.cta-final__urgency { color: var(--ciment); font-size: var(--text-sm); margin-top: var(--space-4); letter-spacing: var(--tracking-wide); }
.cta-final__closing { margin-bottom: var(--space-10); }
.cta-final__ps { max-width: 65ch; margin: 0 auto; padding-top: var(--space-8); border-top: 1px solid rgba(196,184,172,0.2); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background-color: var(--beton); padding: var(--space-16) 0 var(--space-8); border-top: 1px solid var(--or-patine-500); }
.footer__tagline { font-family: var(--font-heading); font-style: italic; font-size: var(--text-xl); color: var(--or-patine-500); margin-bottom: var(--space-6); }
.footer__logo { color: var(--or-patine-500); font-size: var(--text-2xl); margin-bottom: var(--space-6); }
.footer__nav { margin-bottom: var(--space-6); display: flex; justify-content: center; flex-wrap: wrap; gap: var(--space-4) var(--space-6); }
.footer__nav a { color: var(--souffle); font-size: var(--text-sm); transition: color var(--transition-base); }
.footer__nav a:hover { color: var(--or-patine-500); }
.footer__links { margin-bottom: var(--space-6); }
.footer__links a { color: var(--souffle); font-size: var(--text-sm); }
.footer__links a:hover { color: var(--or-patine-500); }
.footer__social { display: flex; justify-content: center; gap: var(--space-6); margin-bottom: var(--space-6); }
.footer__social a { color: var(--ciment); transition: color var(--transition-base); display: flex; align-items: center; width: 44px; height: 44px; justify-content: center; }
.footer__social a:hover { color: var(--or-patine-500); }
.footer__copy { font-size: var(--text-sm); color: var(--pierre); }

/* ============================================================
   BACKGROUND IMAGES (16:9 IA VIEWS)
   ============================================================ */
.bg-section-corridor,
.bg-section-impact,
.bg-section-decision,
.bg-section-programme,
.bg-section-salle {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--souffle);
}
.bg-section-corridor .section__title,
.bg-section-impact .section__title,
.bg-section-decision .section__title,
.bg-section-programme .section__title,
.bg-section-salle .section__title {
  color: var(--souffle);
}
.bg-section-corridor .content-text p,
.bg-section-impact .content-text p,
.bg-section-decision .content-text p,
.bg-section-programme .content-text p,
.bg-section-salle .content-text p,
.bg-section-corridor .section__subtitle,
.bg-section-programme .section__subtitle {
  color: var(--mauve-cendre-50);
}
.bg-section-corridor .text-or,
.bg-section-impact .text-or,
.bg-section-decision .text-or,
.bg-section-programme .text-or,
.bg-section-salle .text-or {
  color: var(--or-patine-400);
}

.bg-section-corridor {
  background-image: linear-gradient(rgba(46,36,34,0.92), rgba(46,36,34,0.95)), url('../asset/generated/corridor-seuil.jpg');
}
.bg-section-impact {
  background-image: linear-gradient(rgba(46,36,34,0.92), rgba(46,36,34,0.95)), url('../asset/generated/epigenetique-abstrait.jpg');
}
.bg-section-decision {
  background-image: linear-gradient(rgba(46,36,34,0.92), rgba(46,36,34,0.95)), url('../asset/generated/structure-lumiere.jpg');
}
.bg-section-programme {
  background-image: linear-gradient(rgba(46,36,34,0.92), rgba(46,36,34,0.95)), url('../asset/Andrée%20Anne%20Gionet.jpg');
}
.bg-section-salle {
  background-image: linear-gradient(rgba(46,36,34,0.92), rgba(46,36,34,0.95)), url('../asset/generated/salle-ambiance.jpg');
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .billets-grid { grid-template-columns: repeat(2, 1fr); }
  .fondatrice-card { grid-template-columns: 200px 1fr; }
}

@media (max-width: 768px) {
  :root { --navbar-height: 64px; }
  .section { padding: var(--space-12) 0; }

  .header__links {
    display: none; position: fixed; top: var(--navbar-height); left: 0; right: 0; bottom: 0;
    background-color: var(--beton); flex-direction: column; align-items: center;
    justify-content: center; gap: var(--space-8); z-index: 49;
  }
  .header__links.active { display: flex; }
  .header__links a { font-size: var(--text-xl); }
  .header__cta { display: none; }
  .header__burger { display: flex; }

  .hero__title { font-size: var(--text-4xl); }
  .hero__subtitle { font-size: var(--text-lg); }
  .btn-lg { width: 100%; font-size: var(--text-base); padding: var(--space-4) var(--space-6); }

  .profils-grid, .cards-grid, .steps-grid { grid-template-columns: 1fr; }
  .billets-grid { grid-template-columns: 1fr; }
  .fondatrice-card { grid-template-columns: 1fr; }
  .fondatrice-card__photo { min-height: 250px; max-height: 300px; }
  .section__title { font-size: var(--text-3xl); }
  .cta-final { padding: var(--space-16) 0; }
  .cta-final__title { font-size: var(--text-3xl); }

  .timeline__item { flex-direction: column; gap: var(--space-2); }
  .timeline__speakers-row { gap: var(--space-3); }
  .people-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 480px) {
  .hero__title { font-size: var(--text-3xl); }
  .people-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-4); }
  .person-card__photo, .avatar-placeholder--round { width: 90px; height: 90px; }
  .section__title { font-size: var(--text-2xl); }
}

/* LOGO HEADER */
.header__logo {
  display: flex !important;
  align-items: center;
  gap: var(--space-3);
}

.header__logo-img {
  height: 40px; /* Ajustement de la taille du logo */
  width: auto;
  display: block;
}
