/* =============================================================
   INSIDE DIASPORA AFRICAINE  —  Global Stylesheet
   =============================================================

   TABLE OF CONTENTS
   1. Variables & Reset
   2. Utility / Layout
   3. Navbar
   4. Buttons
   5. Page Layout Base
   6. ── INDEX HOME ──
      6a. Hero Home
      6b. Mission Section
      6c. Featured Episode
      6d. Thematiques
      6e. Fondatrice
      6f. Rejoindre / Social
   7. Page Banner (inner pages)
   8. Episode Cards
   9. About / Stats
   10. CTA Banner
   11. Contact
   12. Footer
   13. Animations
   14. Responsive
   ============================================================= */

/* ---- 1. Variables ---- */
:root {
  --gold:        #D4A017;
  --gold-hover:  #E8B84B;
  --gold-dim:    rgba(212, 160, 23, 0.15);
  --dark:        #0c0c0c;
  --dark-2:      #141414;
  --dark-3:      #1a1a1a;
  --dark-card:   #161616;
  --nav-bg:      rgba(10, 10, 10, 0.96);
  --white:       #ffffff;
  --white-80:    rgba(255,255,255,0.80);
  --white-55:    rgba(255,255,255,0.55);
  --white-30:    rgba(255,255,255,0.30);
  --white-10:    rgba(255,255,255,0.08);
  --nav-h:       64px;
  --font:        'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --radius:      6px;
  --transition:  0.25s ease;
}

/* ---- 2. Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--dark);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
img, video { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ---- 3. Utility ---- */
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 5%; }
.gold { color: var(--gold); }
.text-center { text-align: center; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  inset: 0 0 auto;
  height: var(--nav-h);
  z-index: 900;
  background: var(--nav-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gold-dim);
  transition: box-shadow var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,0.7);
}

.navbar .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}

.nav-logo img {
  height: 95px;
  width: 190px;
  object-fit: contain;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav-logo-text .brand {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}

.nav-logo-text .brand em {
  color: var(--gold);
  font-style: normal;
}

.nav-logo-text .tagline {
  font-size: 0.5rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-30);
  margin-top: 3px;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
  flex: 1;
  margin-left: 0;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.60);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.28s ease, text-shadow 0.28s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  height: 2px;
  width: 0;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover {
  color: var(--white);
  text-shadow: 0 0 22px rgba(212,160,23,0.38);
}

.nav-links a.active {
  color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Navbar CTA */
.btn-nav {
  flex-shrink: 0;
  margin-left: auto;
  padding: 11px 22px;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-nav:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,160,23,0.35);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  padding: 6px;
  cursor: pointer;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s, width 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: rgba(8,8,8,0.98);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  z-index: 890;
  padding: 40px 24px;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  transition: color 0.25s ease, transform 0.25s ease;
}

.mobile-nav a:hover { color: var(--white); transform: translateX(6px); }
.mobile-nav a.active { color: var(--gold); }

.mobile-nav .btn-nav {
  margin-top: 16px;
  font-size: 0.80rem;
  padding: 14px 32px;
}

/* Navbar background-music toggle */
.nav-music-btn {
  -webkit-appearance: none;
  appearance: none;
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(212,160,23,0.45);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.60);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), color var(--transition), transform var(--transition);
}
.nav-music-btn svg { width: 16px; height: 16px; pointer-events: none; }
.nav-music-btn:hover {
  border-color: var(--gold);
  background: rgba(212,160,23,0.15);
  color: #fff;
  transform: scale(1.08);
}
.nav-music-btn--active {
  border-color: var(--gold);
  color: var(--gold);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  border-radius: var(--radius);
  background: transparent;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.btn-gold:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-2px);
}

.btn-gold-solid {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid var(--gold);
  transition: background var(--transition), transform var(--transition);
}

.btn-gold-solid:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border: 2px solid var(--white-30);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  border-radius: var(--radius);
  background: transparent;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.btn-outline:hover {
  border-color: var(--white-80);
  background: var(--white-10);
  transform: translateY(-2px);
}

/* Play triangle */
.play-tri {
  width: 0; height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 9px solid currentColor;
  flex-shrink: 0;
}

/* ============================================================
   PAGE LAYOUT BASE
   ============================================================ */
.page-wrap {
  padding-top: var(--nav-h);
  min-height: 100vh;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

/* Section spacing */
.section {
  padding: 88px 0;
}

.section-alt {
  background: var(--dark-2);
}

/* Section heading block */
.section-header {
  margin-bottom: 52px;
}

.section-header.center {
  text-align: center;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.18;
  color: var(--white);
}

.section-title .gold { color: var(--gold); }

.section-lead {
  margin-top: 14px;
  font-size: clamp(0.88rem, 1.2vw, 0.95rem);
  color: var(--white-55);
  max-width: 560px;
  line-height: 1.8;
}

.section-header.center .section-lead { margin-inline: auto; }

/* Divider bar */
.gold-bar {
  width: 44px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 22px;
}

/* ============================================================
   HERO  (index.php only)
   ============================================================ */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  overflow: hidden;
  background: var(--dark);
}

/* Left column */
.hero-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 54%;
  padding: 80px 0 80px 6%;
  padding-right: 4%;
}

/* Right column — image */
.hero-visual {
  position: relative;
  width: 46%;
  flex-shrink: 0;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Left-edge gradient so image blends into dark bg */

/* Bottom fade */
.hero-visual::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 28%;
  background: linear-gradient(to top, var(--dark), transparent);
  z-index: 1;
}

.hero-heading {
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}

.hero-heading .highlight { color: var(--gold); }

.hero-tags {
  font-size: clamp(0.78rem, 1vw, 0.88rem);
  color: var(--white-55);
  line-height: 2;
  letter-spacing: 0.03em;
  margin-bottom: 40px;
}

.hero-tags .sep {
  color: var(--gold);
  margin: 0 7px;
  opacity: 0.8;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 28px; left: 6%;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-30);
  z-index: 2;
}

.hero-scroll::before {
  content: '';
  display: block;
  width: 1px;
  height: 36px;
  background: var(--white-30);
}

/* ============================================================
   PAGE BANNER  (inner pages)
   ============================================================ */
.page-banner {
  padding: 64px 0 56px;
  background: var(--dark-2);
  border-bottom: 1px solid var(--gold-dim);
}

.page-banner .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-30);
  margin-bottom: 16px;
}

.page-banner .breadcrumb a { transition: color var(--transition); }
.page-banner .breadcrumb a:hover { color: var(--gold); }

.page-banner .breadcrumb .sep { color: var(--gold); font-size: 0.6rem; }

.page-banner h1 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.page-banner p {
  margin-top: 12px;
  font-size: 0.92rem;
  color: var(--white-55);
  max-width: 520px;
}

/* ============================================================
   EPISODE CARDS
   ============================================================ */
.episodes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.ep-card {
  background: var(--dark-card);
  border: 1px solid var(--white-10);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.ep-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.55);
  border-color: var(--gold-dim);
}

.ep-thumb {
  position: relative;
  overflow: hidden;
  height: 200px;
  background: #111;
}

.ep-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ep-card:hover .ep-thumb img { transform: scale(1.04); }

.ep-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.ep-card:hover .ep-thumb-overlay { opacity: 1; }

.ep-play-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  transform: scale(0.85);
  transition: transform var(--transition);
}

.ep-card:hover .ep-play-btn { transform: scale(1); }

.ep-play-btn::after {
  content: '';
  width: 0; height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 16px solid var(--dark);
  margin-left: 3px;
}

.ep-duration {
  position: absolute;
  bottom: 10px; right: 10px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: rgba(0,0,0,0.75);
  color: var(--white-80);
  padding: 3px 8px;
  border-radius: 3px;
}

.ep-body {
  padding: 20px 22px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.ep-category {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.ep-title {
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 10px;
  flex: 1;
}

.ep-desc {
  font-size: 0.80rem;
  color: var(--white-55);
  line-height: 1.7;
  margin-bottom: 18px;
}

.ep-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.68rem;
  color: var(--white-30);
  letter-spacing: 0.04em;
  border-top: 1px solid var(--white-10);
  padding-top: 14px;
  margin-top: auto;
}

.ep-num {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--white-30);
}

/* ============================================================
   FEATURED STRIP  (home — "last episode" banner)
   ============================================================ */
.featured-strip {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  min-height: 400px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--white-10);
}

.featured-image {
  position: relative;
  overflow: hidden;
}

.featured-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.featured-strip:hover .featured-image img { transform: scale(1.03); }

.featured-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--dark-3));
}

.featured-body {
  background: var(--dark-3);
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-label {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.featured-title {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 16px;
}

.featured-desc {
  font-size: 0.87rem;
  color: var(--white-55);
  line-height: 1.8;
  margin-bottom: 28px;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  display: flex;
  gap: 0;
  border: 1px solid var(--white-10);
  border-radius: 10px;
  overflow: hidden;
}

.stat-item {
  flex: 1;
  padding: 36px 28px;
  text-align: center;
  border-right: 1px solid var(--white-10);
  background: var(--dark-card);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--white-30);
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.about-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Gold border accent */
.about-image-wrap::after {
  content: '';
  position: absolute;
  bottom: -12px; right: -12px;
  width: 60%;
  height: 60%;
  border: 2px solid var(--gold);
  border-radius: 8px;
  z-index: -1;
}

.about-text .gold-bar { margin-bottom: 18px; }

.about-text p {
  font-size: 0.92rem;
  color: var(--white-55);
  line-height: 1.9;
  margin-bottom: 18px;
}

.about-text .btn-gold-solid { margin-top: 10px; }

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 56px;
}

.value-card {
  background: var(--dark-card);
  border: 1px solid var(--white-10);
  border-radius: 10px;
  padding: 28px 26px;
  transition: border-color var(--transition), transform var(--transition);
}

.value-card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-3px);
}

.value-icon {
  font-size: 1.6rem;
  margin-bottom: 14px;
}

.value-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.80rem;
  color: var(--white-55);
  line-height: 1.7;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-section {
  padding: 88px 0;
  background: linear-gradient(135deg, #160f00 0%, var(--dark-2) 60%);
  border-top: 1px solid var(--gold-dim);
  border-bottom: 1px solid var(--gold-dim);
  text-align: center;
}

.cta-section .section-title { margin-bottom: 14px; }
.cta-section .section-lead { margin: 0 auto 36px; }
.cta-section .btn-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}

.contact-info h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.contact-info > p {
  font-size: 0.88rem;
  color: var(--white-55);
  line-height: 1.8;
  margin-bottom: 36px;
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.contact-item-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-dim);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.contact-item-text small {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3px;
}

.contact-item-text span {
  font-size: 0.85rem;
  color: var(--white-80);
}

/* Form */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-55);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 0.88rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--white-30); }

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,160,23,0.10);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-group select option {
  background: var(--dark-3);
  color: var(--white);
}

/* JS-flagged error state */
.field-error {
  border-color: rgba(220,60,60,0.6) !important;
  box-shadow: 0 0 0 3px rgba(220,60,60,0.10) !important;
}

.form-alert {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 0.86rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.form-alert.success {
  background: rgba(212,160,23,0.1);
  border: 1px solid var(--gold);
  color: var(--gold);
}

.form-alert.error {
  background: rgba(220,60,60,0.1);
  border: 1px solid rgba(220,60,60,0.4);
  color: #f87171;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #080808;
  border-top: 1px solid var(--white-10);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--white-10);
}

.footer-brand p {
  font-size: 0.82rem;
  color: var(--white-30);
  line-height: 1.85;
  margin-top: 16px;
  max-width: 290px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--white-10);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white-30);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212,160,23,0.07);
}

.footer-col h4 {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul li { margin-bottom: 11px; }

.footer-col ul li a {
  font-size: 0.82rem;
  color: var(--white-30);
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p,
.footer-bottom a {
  font-size: 0.72rem;
  color: var(--white-30);
  letter-spacing: 0.04em;
}

.footer-bottom a { transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold); }

.footer-legal { display: flex; gap: 20px; }

/* ============================================================
   6a. HERO HOME  (index.php full-background hero)
   ============================================================ */
.hero-home {
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-home .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-home .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.hero-home .hero-bg::after {
  content: none;
}

.hero-home .container {
  position: relative;
  z-index: 1;
  padding-top: 0;
  padding-bottom: 0;
}

.hero-home .hero-content {
  max-width: 580px;
}

.hero-home .hero-heading {
  font-size: clamp(2.1rem, 3.8vw, 3.5rem);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}

.hero-home .hero-heading .highlight { color: var(--gold); }

.hero-home .hero-tags {
  font-size: clamp(0.78rem, 1vw, 0.9rem);
  color: var(--white-55);
  line-height: 1.9;
  margin-bottom: 38px;
  letter-spacing: 0.02em;
}

.hero-home .hero-tags .sep {
  color: var(--gold);
  margin: 0 7px;
}

.hero-home .hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* ============================================================
   Hero separator line
   ============================================================ */
.hero-separator {
  width: 100%;
  height: 1px;
  background: var(--gold);
  margin-bottom: 80px;
}

/* ============================================================
   6b. MISSION SECTION
   ============================================================ */
.mission-sec {
  background: var(--dark);
  border-bottom: 1px solid var(--gold);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 540px;
}

.mission-img-col {
  position: relative;
  overflow: hidden;
}

.mission-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mission-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px clamp(36px, 5vw, 80px);
}

.mission-video-col {
  position: relative;
  overflow: hidden;
}

.mission-video-col video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mission-text-col .section-eyebrow {
  display: block;
  margin-bottom: 14px;
}

.mission-title {
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -0.015em;
  margin-bottom: 18px;
  color: var(--white);
}

.mission-gold-line {
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 20px;
}

.mission-text-col p {
  font-size: 0.95rem;
  color: var(--white-55);
  line-height: 1.85;
  max-width: 480px;
}

/* ============================================================
   6c. FEATURED EPISODE (Dernière Émission)
   ============================================================ */
.featured-ep-sec {
  background: var(--dark);
  padding: 0;
  display: flex;
  align-items: center;
  margin-top: 60px
}

.featured-ep-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  max-width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #D4A017;
  box-shadow: none;
  border: 1px solid rgba(255,255,255,0.2);
  box-sizing: border-box;
}

.featured-ep-left h2,
.featured-ep-left p {
  margin-top: 5px;
  margin-bottom: 5px;
}

.featured-ep-eyebrow {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9a5905 !important; /*#1052a3*/
  margin-bottom: 10px;
}

.featured-ep-title {
  font-family: 'Georgia', fangsong, serif;
  font-size: clamp(1.6rem, 2.8vw, 2.6rem);
  font-weight: bold;
  font-style: italic;
  letter-spacing: -0.5px;
  line-height: 1.15;
  color: #1a1a1a;
  margin-bottom: 6px;
}

.featured-ep-heart {
  color: #9a5905;
  font-size: 1.1rem;
  margin-bottom: 12px;
  display: block;
}


.featured-ep-left {
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  color: #444444;
  justify-content: center;
}

.featured-ep-left .btn-outline {
  border-color: rgba(0,0,0,0.35);
  color: #1a1a1a;
}
.featured-ep-left .btn-outline:hover {
  border-color: #1a1a1a;
  background: rgba(0,0,0,0.06);
}

.featured-ep-left p {
  margin-bottom: 24px;
}

.featured-ep-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.featured-ep-right {
  position: relative;
  overflow: hidden;
}

.featured-ep-right img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.featured-ep-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
  z-index: 1;
}

/* Circular play button */
.ep-play-circle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 68px; height: 68px;
  border-radius: 50%;
  background: rgba(212,160,23,0.92);
  border: 3px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.ep-play-circle:hover {
  background: var(--gold);
  transform: translate(-50%, -50%) scale(1.08);
}

.ep-play-circle .play-tri-lg {
  width: 0; height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 20px solid #fff;
  margin-left: 5px;
}

/* ============================================================
   6d. THÉMATIQUES
   ============================================================ */
.thematiques-sec {
  background: var(--dark);
  padding: 72px 0;
}

.thematiques-eyebrow {
  text-align: center;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 40px;
}

.thematiques-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.them-card {
  background: linear-gradient(160deg, rgba(212,160,23,0.12) 0%, var(--dark-card) 60%);
  border: 1px solid var(--gold);
  border-radius: 12px;
  padding: 32px 14px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 20px rgba(212,160,23,0.15), 0 0 0 1px rgba(212,160,23,0.20);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: default;
}

.them-card:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(212,160,23,0.30), 0 0 0 1px rgba(212,160,23,0.45);
}

.them-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  margin: 0 auto 18px;
  flex-shrink: 0;
}

.them-icon svg {
  width: 28px; height: 28px;
}

.them-icon.gold-ic {
  background: rgba(212,160,23,0.14);
  color: var(--gold);
}

.them-icon.green-ic {
  background: rgba(45,140,78,0.15);
  color: #4CAF72;
}

.them-card p {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white-80);
  line-height: 1.55;
}

/* ============================================================
   6e. FONDATRICE SECTION
   ============================================================ */
.fondatrice-sec {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  overflow: hidden;
  margin: 60px 5%;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.2);
}

.fondatrice-img-col {
  position: relative;
  overflow: hidden;
}

.fondatrice-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.fondatrice-img-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 50%, #1a2b1c 100%);
}

.fondatrice-right {
  position: relative;
  background: #1a2b1c;
  color: #fff;
  padding: 72px 64px 72px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  overflow: hidden;
}

.fondatrice-right::before {
  content: '\201C';
  position: absolute;
  top: -40px;
  right: 24px;
  font-size: 18rem;
  color: rgba(255,255,255,0.04);
  font-family: Georgia, serif;
  pointer-events: none;
  line-height: 1;
}

.fondatrice-eyebrow {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}

.fondatrice-title {
  font-size: clamp(1.9rem, 2.8vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 12px;
}

.fondatrice-title .gold { color: var(--gold); }

.gold-separator {
  display: block;
  width: 50px;
  height: 3px;
  background: var(--gold);
  margin: 14px 0;
  flex-shrink: 0;
}

.fondatrice-right p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.85;
  margin-bottom: 28px;
  max-width: 420px;
}

.fondatrice-signature {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: 1.4rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.02em;
}

/* ============================================================
   6f. REJOINDRE / SOCIAL SECTION
   ============================================================ */
.rejoindre-sec {
  display: grid;
  grid-template-columns: 3fr 2fr;
  min-height: 360px;
  border-top: 1px solid rgba(255,255,255,0.2);
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.rejoindre-left {
  background: var(--dark-2);
  padding: 60px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.rejoindre-title {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.rejoindre-sub {
  font-size: 0.86rem;
  color: var(--white-55);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 340px;
}

.social-btns {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  text-decoration: none;
  border: none;
  transition: opacity 0.2s, transform 0.2s;
}

.social-btn:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

.social-btn svg {
  width: 20px; height: 20px;
  flex-shrink: 0;
}

.social-btn.yt  { background: #FF0000; }
.social-btn.ig  { background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4); }
.social-btn.tt  { background: #010101; border: 1px solid rgba(255,255,255,0.15); }
.social-btn.fb  { background: #1877F2; }

.rejoindre-right {
  position: relative;
  overflow: hidden;
}

.rejoindre-right img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Arc-shaped mask on the left edge of the community image */
.rejoindre-right::before {
  content: '';
  position: absolute;
  top: 0; left: -1px;
  width: 80px; height: 100%;
  background: var(--dark-2);
  clip-path: ellipse(80px 55% at 0% 50%);
  z-index: 1;
}

/* ============================================================
   PAGE HERO — shared header for all inner pages
   ============================================================ */
.page-hero {
  position: relative;
  background: var(--dark);
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--gold);
}
.page-hero > .container {
  position: relative;
  z-index: 2;
  padding-top: 72px;
  padding-bottom: 72px;
  width: 100%;
}
.page-hero-body {
  max-width: 48%;
}
.page-eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.page-hero-body h1 {
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 14px;
}
.page-hero-bar {
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 20px;
}
.page-hero-body p {
  font-size: 0.88rem;
  color: var(--white-55);
  line-height: 1.85;
  max-width: 400px;
}
.page-hero-img {
  position: absolute;
  top: 0; right: 0;
  width: 95%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}
.page-hero-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.page-hero-img::before {
  content: none;
}
/* Extra padding when a stats bar sits absolutely at the bottom */
.page-hero--stats > .container {
  padding-bottom: 110px;
}

/* ============================================================
   MENTIONS LÉGALES PAGE
   ============================================================ */

/* Hero */
.legal-hero {
  position: relative;
  background: var(--dark-2);
  min-height: 300px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--gold);
}

.legal-hero > .container {
  position: relative;
  z-index: 2;
  padding-top: 60px;
  padding-bottom: 60px;
  width: 100%;
}

.legal-hero-body {
  max-width: 50%;
}

.legal-hero-body h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 14px;
}

.legal-title-bar {
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 18px;
}

.legal-hero-body p {
  font-size: 0.88rem;
  color: var(--white-55);
  line-height: 1.85;
  max-width: 420px;
}

.legal-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-30);
  margin-bottom: 22px;
}

.legal-breadcrumb a { transition: color var(--transition); }
.legal-breadcrumb a:hover { color: var(--gold); }
.legal-breadcrumb span:first-of-type { color: var(--gold); font-size: 0.6rem; }

.legal-hero-img {
  position: absolute;
  top: 0; right: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.legal-hero-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.legal-hero-img::before {
  content: none;
}

/* Two-column grid */
.legal-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 44px;
  align-items: start;
}

/* Sidebar */
.legal-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 20px);
}

.legal-nav {
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 18px;
  list-style: none;
}

.legal-nav li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  font-size: 0.71rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--white-55);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
}

.legal-nav li:last-child a { border-bottom: none; }
.legal-nav li a:hover { color: var(--white); background: rgba(255,255,255,0.04); }

.legal-nav li.active > a {
  background: var(--gold);
  color: var(--dark);
}

.legal-icon-svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
}

.legal-mission-card {
  background: var(--dark-card);
  border: 1px solid rgba(212,160,23,0.2);
  border-radius: 10px;
  padding: 24px 20px;
  text-align: center;
}

.legal-mission-card .lmc-icon {
  width: 32px; height: 32px;
  color: var(--gold);
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.legal-mission-card .lmc-icon svg { width: 100%; height: 100%; }

.legal-mission-card strong {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.legal-mission-card p {
  font-size: 0.79rem;
  color: var(--white-55);
  line-height: 1.75;
}

/* Section cards */
.legal-section {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.legal-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.legal-section-hd {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.legal-section-hd .legal-icon-svg {
  width: 20px; height: 20px;
  color: var(--gold);
}

.legal-section-hd h2 {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.legal-section p {
  font-size: 0.87rem;
  color: var(--white-55);
  line-height: 1.9;
  margin-bottom: 10px;
}

.legal-section p:last-child { margin-bottom: 0; }

.legal-section a { color: var(--gold); }
.legal-section a:hover { text-decoration: underline; }

/* CTA banner */
.legal-cta-sec {
  overflow: hidden;
}

.legal-cta-inner {
  position: relative;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 48px 5%;
  max-width: 100%;
  margin: 0;
}

.legal-cta-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
  z-index: 1;
}

.legal-cta-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  overflow: hidden;
  z-index: 0;
}

.legal-cta-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.legal-cta-text {
  position: relative;
  z-index: 2;
  text-align: center;
}

.legal-cta-text h2 {
  font-size: clamp(1.4rem, 2.5vw, 2.1rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.55);
}

.legal-cta-text p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.88);
  text-shadow: 0 1px 6px rgba(0,0,0,0.45);
}

.legal-cta-btns {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.legal-cta-btns .btn-gold-solid {
  background: #000;
  color: var(--gold);
  border-color: #000;
}

.legal-cta-btns .btn-gold-solid:hover {
  background: #111;
  border-color: #111;
  color: var(--gold);
}

/* ============================================================
   À PROPOS PAGE
   ============================================================ */

/* Hero */
.ap-hero {
  position: relative;
  background: var(--dark);
  min-height: 360px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--gold);
  overflow: hidden;
}
.ap-hero > .container {
  position: relative;
  z-index: 2;
  padding-top: 64px;
  padding-bottom: 64px;
  width: 100%;
}
.ap-hero-body { max-width: 48%; padding-left: 0; }

.ap-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-30);
  margin-bottom: 22px;
}
.ap-breadcrumb a { transition: color var(--transition); }
.ap-breadcrumb a:hover { color: var(--gold); }
.ap-breadcrumb span:first-of-type { color: var(--gold); font-size: 0.6rem; }

.ap-hero-body h1 {
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 14px;
}
.ap-hero-bar {
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 18px;
}
.ap-hero-body p {
  font-size: 0.88rem;
  color: var(--white-55);
  line-height: 1.85;
  max-width: 400px;
}

.ap-hero-img {
  position: absolute;
  top: 0; right: 0;
  width: 95%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}
.ap-hero-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}


/* Mission */
.ap-mission {
  display: grid;
  grid-template-columns: 2fr 3fr;
  min-height: 480px;
  border-bottom: 1px solid var(--gold);
}
.ap-mission-img { overflow: hidden; }
.ap-mission-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.ap-mission-text {
  background: var(--dark-2);
  padding: 64px 52px 64px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ap-mission-text h2 {
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  font-weight: 800;
  line-height: 1.35;
  color: var(--white);
  margin-bottom: 24px;
}
.ap-mission-text p {
  font-size: 0.875rem;
  color: var(--white-55);
  line-height: 1.85;
  margin-bottom: 14px;
}

/* Shared eyebrow label */
.ap-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.ap-eyebrow.center { text-align: center; }

/* Values */
.ap-values {
  background: var(--dark);
  padding: 72px 0;
}
.ap-values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.ap-value-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 14px;
}
.ap-value-icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 18px;
  flex-shrink: 0;
}
.ap-value-icon svg { width: 24px; height: 24px; }
.ap-value-item h3 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.ap-value-item p {
  font-size: 0.77rem;
  color: var(--white-55);
  line-height: 1.7;
}

/* Fondatrice — split layout */
.ap-fondatrice {
  background: var(--dark);
  overflow: hidden;
  margin: 60px 5%;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.2);
}

.ap-fondatrice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
  align-items: stretch;
}

.ap-fondatrice-img-col {
  position: relative;
  overflow: hidden;
}

.ap-fondatrice-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.ap-fondatrice-img-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 55%, var(--dark-2) 100%);
}

.ap-fondatrice-text {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px 80px 64px;
  background: var(--dark-2);
  overflow: hidden;
}

/* large decorative quote mark */
.ap-fondatrice-text::before {
  content: '\201C';
  position: absolute;
  top: -40px;
  right: 32px;
  font-size: 20rem;
  line-height: 1;
  color: rgba(212, 160, 23, 0.055);
  font-family: Georgia, serif;
  pointer-events: none;
  user-select: none;
}

.ap-fondatrice-text .ap-eyebrow {
  color: var(--gold);
  margin-bottom: 10px;
}

.ap-fondatrice-name {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
}

.ap-gold-bar {
  display: block;
  width: 56px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 28px;
}

.ap-fondatrice-text p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.9;
  margin-bottom: 20px;
  max-width: 480px;
}

.ap-quote {
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold);
  line-height: 1.75;
  border: none;
  border-left: 2px solid var(--gold);
  padding: 0 0 0 20px;
  margin-top: 8px;
}

/* Impact stats */
.ap-impact {
  background: var(--dark-2);
  padding: 72px 0;
}
.ap-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 40px;
  border-top: 1px solid rgba(212,160,23,0.3);
  border-bottom: 1px solid rgba(212,160,23,0.3);
}
.ap-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  border-right: 1px solid rgba(212,160,23,0.2);
}
.ap-stat:last-child { border-right: none; }
.ap-stat-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 14px;
  flex-shrink: 0;
}
.ap-stat-icon svg { width: 22px; height: 22px; }
.ap-stat-num {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 8px;
}
.ap-stat-label {
  font-size: 0.74rem;
  color: var(--white-55);
  line-height: 1.55;
}

/* CTA */
.ap-cta {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  padding: 80px 24px;
  background-image: url('../images/men2.jpeg');
  background-size: cover;
  background-position: left 50%;
  overflow: hidden;
  text-align: center;
}
.ap-cta--dim::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
  z-index: 0;
}
.ap-cta--dim .ap-cta-body {
  position: relative;
  z-index: 1;
}
.ap-cta-body {
  position: relative;
  z-index: 1;
  max-width: 580px;
}
.ap-cta-body h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}
.ap-cta-body p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 32px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}
.ap-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.ap-btn-dark {
  display: inline-flex;
  align-items: center;
  padding: 13px 28px;
  background: var(--gold);
  color: #0c0c0c;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid var(--gold);
  transition: background var(--transition), transform var(--transition);
}
.ap-btn-dark:hover { background: #c49010; border-color: #c49010; transform: translateY(-2px); }
.ap-btn-outline-dark {
  display: inline-flex;
  align-items: center;
  padding: 13px 28px;
  background: transparent;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.60);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.ap-btn-outline-dark:hover { background: rgba(255,255,255,0.10); border-color: #fff; transform: translateY(-2px); }

/* ============================================================
   FOOTER — Redesigned to match design
   ============================================================ */
.footer-new {
  background: #080808;
  border-top: 1px solid var(--white-10);
}

.footer-new .footer-main {
  padding: 52px 0 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr;
  gap: 48px;
  border-bottom: 1px solid var(--white-10);
}

.footer-new .footer-brand-col .nav-logo {
  display: inline-flex;
  margin-bottom: 14px;
}

.footer-new .footer-brand-col p {
  font-size: 0.80rem;
  color: var(--white-30);
  line-height: 1.8;
  max-width: 280px;
  margin-top: 8px;
}

/* Two-sub-column nav area in footer */
.footer-nav-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.footer-new .footer-col h4 {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-new .footer-col ul li { margin-bottom: 10px; }

.footer-new .footer-col ul li a {
  font-size: 0.82rem;
  color: var(--white-30);
  transition: color var(--transition);
}

.footer-new .footer-col ul li a:hover { color: var(--white); }

.footer-social-col h4 {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-social-icons {
  display: flex;
  gap: 10px;
}

.footer-social-icons a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--white-10);
  display: flex; align-items: center; justify-content: center;
  transition: border-color var(--transition), background var(--transition);
}

.footer-social-icons a:hover {
  border-color: var(--gold);
  background: rgba(212,160,23,0.08);
}

.footer-social-icons a svg {
  width: 16px; height: 16px;
  fill: var(--white-30);
  transition: fill var(--transition);
}

.footer-social-icons a:hover svg { fill: var(--gold); }

.footer-new .footer-bar {
  padding: 18px 0;
  text-align: center;
}

.footer-new .footer-bar p {
  font-size: 0.75rem;
  color: var(--white-30);
  letter-spacing: 0.04em;
}

.footer-new .footer-bar p span { color: var(--gold); }

/* ============================================================
   SCROLL-REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.reveal-d1 { transition-delay: 0.10s; }
.reveal-d2 { transition-delay: 0.20s; }
.reveal-d3 { transition-delay: 0.30s; }
.reveal-d4 { transition-delay: 0.40s; }
.reveal-d5 { transition-delay: 0.50s; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */

/* Hero */
.ct-hero {
  position: relative;
  background: var(--dark);
  min-height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--gold);
}
.ct-hero > .container {
  position: relative;
  z-index: 2;
  padding-top: 72px;
  padding-bottom: 72px;
  width: 100%;
}
.ct-hero-body { max-width: 680px; }
.ct-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.ct-hero-body h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 14px;
}
.ct-hero-bar {
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 20px;
}
.ct-hero-body p {
  font-size: 0.88rem;
  color: var(--white-55);
  line-height: 1.75;
}
.ct-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.ct-hero-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Main section */
.ct-main-section {
  background: var(--dark-2);
  padding: 64px 0 72px;
}
.ct-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

/* Card shared */
.ct-form-card,
.ct-methods-card {
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 36px 36px 40px;
}
.ct-form-card { border: 2px solid #C5A059; }

.ct-card-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.ct-card-bar {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 28px;
}

/* Form elements */
.ct-form-group { margin-bottom: 18px; }
.ct-form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--white-55);
  margin-bottom: 7px;
  letter-spacing: 0.02em;
}
.ct-req { color: var(--gold); }
.ct-form-group input,
.ct-form-group textarea,
.ct-form-group select {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 7px;
  padding: 12px 14px;
  font-size: 0.86rem;
  color: var(--white);
  transition: border-color var(--transition);
  appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
}
.ct-form-group input::placeholder,
.ct-form-group textarea::placeholder { color: var(--white-30); }
.ct-form-group input:focus,
.ct-form-group textarea:focus,
.ct-form-group select:focus {
  outline: none;
  border-color: var(--gold);
}
.ct-form-group textarea { resize: vertical; min-height: 130px; }
.ct-form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23888'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 38px;
  cursor: pointer;
}
.ct-form-group select option { background: var(--dark-card); }

.ct-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 24px;
  background: var(--gold);
  color: #0c0c0c;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 7px;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  margin-top: 8px;
}
.ct-submit-btn:hover { background: #b8890a; border-color: #b8890a; }

.ct-privacy {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.73rem;
  color: var(--white-30);
  margin-top: 14px;
  line-height: 1.5;
}
.ct-privacy svg { flex-shrink: 0; opacity: 0.55; }

/* Contact methods */
.ct-method-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.ct-method-item:last-child { border-bottom: none; padding-bottom: 0; }
.ct-method-item:first-child { padding-top: 0; }
.ct-method-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.ct-method-icon svg { width: 20px; height: 20px; }
.ct-method-text { flex: 1; }
.ct-method-title {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.ct-method-value {
  font-size: 0.84rem;
  color: var(--white);
  margin-bottom: 4px;
  font-weight: 600;
}
.ct-method-desc {
  font-size: 0.78rem;
  color: var(--white-55);
  line-height: 1.6;
}

/* Three cards */
.ct-cards-section { background: var(--dark-2); }
.ct-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  min-height: 300px;
}
.ct-card {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  flex-direction: column;
}
.ct-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.ct-card-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.ct-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.62);
  z-index: 1;
}
.ct-card-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 28px 36px;
  flex: 1;
}
.ct-card-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 20px;
  flex-shrink: 0;
}
.ct-card-icon svg { width: 24px; height: 24px; }
.ct-card-body h3 {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  line-height: 1.5;
}
.ct-card-body p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}
.ct-card-link {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: opacity var(--transition);
}
.ct-card-link:hover { opacity: 0.7; }

/* CTA section */
.ct-cta-section {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
  padding: 72px 260px;
  background: #0c0c0c;
  overflow: hidden;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}
.ct-cta-africa {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 230px;
  overflow: hidden;
}
.ct-cta-africa img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.ct-cta-mic {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 230px;
  overflow: hidden;
}
.ct-cta-mic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.ct-cta-body {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 620px;
  width: 100%;
  padding: 0;
}
.ct-cta-sub {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.5;
}
.ct-cta-title {
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 30px;
}
.ct-cta-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.ct-btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: var(--gold);
  color: #0c0c0c;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background var(--transition);
}
.ct-btn-gold:hover { background: #b8890a; }
.ct-btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 13px 26px;
  background: transparent;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.4);
  text-decoration: none;
  transition: border-color var(--transition);
}
.ct-btn-outline:hover { border-color: var(--white); }

/* ============================================================
   EMISSIONS PAGE
   ============================================================ */

/* Hero */
.em-hero { position: relative; background: var(--dark); display: flex; align-items: center; overflow: hidden; min-height: 480px; border-bottom: 1px solid var(--gold); }
.em-hero > .container { position: relative; z-index: 2; padding-top: 80px; padding-bottom: 80px; width: 100%; }
.em-hero-body { max-width: 48%; }
.em-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.75rem; color: var(--white-55); margin-bottom: 20px; }
.em-breadcrumb a { color: var(--white-55); }
.em-breadcrumb a:hover { color: var(--gold); }
.em-hero h1 { font-size: clamp(2.2rem, 4.2vw, 3.6rem); font-weight: 800; line-height: 1.1; margin-bottom: 18px; }
.em-hero-bar { display: block; width: 48px; height: 3px; background: var(--gold); margin-bottom: 22px; }
.em-hero-body p { font-size: 0.9rem; color: var(--white-55); line-height: 1.75; max-width: 380px; }
.em-hero-img { position: absolute; top: 0; right: 0; width: 95%; height: 100%; overflow: hidden; pointer-events: none; }
.em-hero-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }

/* Featured episode */
.em-featured-sec { background: var(--dark-2); padding: 64px 0; }
.em-featured-card { display: grid; grid-template-columns: 1fr 1fr; background: var(--dark-card); border: 1px solid rgba(255,255,255,0.07); border-radius: 12px; overflow: hidden; }
.em-featured-thumb { position: relative; overflow: hidden; min-height: 380px; }
.em-featured-thumb img,
.em-featured-thumb video { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.em-video-wrap { position: relative; width: 100%; height: 100%; }
.em-video-wrap video { width: 100%; height: 100%; object-fit: cover; display: block; }
.em-mute-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 10;
}
.em-featured-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.28); display: flex; align-items: center; justify-content: center; }
.em-featured-play { width: 72px; height: 72px; border-radius: 50%; background: rgba(212,160,23,0.9); display: flex; align-items: center; justify-content: center; color: #0c0c0c; cursor: pointer; transition: transform var(--transition); }
.em-featured-play:hover { transform: scale(1.08); }
.em-featured-play svg { width: 28px; height: 28px; margin-left: 4px; }
.em-featured-badge { position: absolute; bottom: 16px; left: 16px; font-size: 0.62rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--dark); background: var(--gold); padding: 5px 10px; border-radius: 3px; }
.em-featured-dur { position: absolute; bottom: 16px; right: 16px; font-size: 0.78rem; font-weight: 700; color: var(--white); background: rgba(0,0,0,0.7); padding: 4px 10px; border-radius: 3px; }
.em-featured-body { padding: 44px; display: flex; flex-direction: column; justify-content: center; }
.em-featured-eyebrow { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.em-featured-title { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
.em-featured-divider { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.em-featured-divider svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }
.em-div-line { flex: 1; height: 1px; background: rgba(255,255,255,0.12); }
.em-featured-desc { font-size: 0.86rem; color: var(--white-55); line-height: 1.75; margin-bottom: 28px; }
.em-featured-meta { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; overflow: hidden; margin-bottom: 32px; }
.em-meta-item { padding: 14px 16px; border-right: 1px solid rgba(255,255,255,0.1); display: flex; flex-direction: column; gap: 4px; }
.em-meta-item:last-child { border-right: none; }
.em-meta-row { display: flex; align-items: center; gap: 6px; }
.em-meta-row svg { width: 13px; height: 13px; color: var(--gold); flex-shrink: 0; }
.em-meta-label { font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--white-30); }
.em-meta-val { font-size: 0.8rem; font-weight: 700; color: var(--white); }
.em-featured-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.em-btn-gold { display: inline-flex; align-items: center; gap: 8px; padding: 13px 22px; background: var(--gold); color: #0c0c0c; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; border-radius: var(--radius); text-decoration: none; transition: background var(--transition); }
.em-btn-gold svg { width: 16px; height: 16px; }
.em-btn-gold:hover { background: #b8890a; }
.em-btn-ep-outline { display: inline-flex; align-items: center; padding: 13px 22px; background: transparent; color: var(--white); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; border-radius: var(--radius); border: 2px solid rgba(255,255,255,0.25); text-decoration: none; transition: border-color var(--transition); }
.em-btn-ep-outline:hover { border-color: var(--white-80); }

/* All episodes */
.em-all-sec { background: var(--dark); padding: 64px 0 56px; }
.em-all-header { text-align: center; margin-bottom: 40px; }
.em-all-title { font-size: 0.9rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.em-all-icon { display: flex; justify-content: center; color: var(--gold); }
.em-all-icon svg { width: 20px; height: 20px; }
.em-episodes-wrapper { position: relative; display: flex; align-items: center; gap: 12px; }
.em-swiper { overflow: hidden; flex: 1; min-width: 0; }
.em-swiper-btn { flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; background: var(--dark-card); border: 1px solid rgba(255,255,255,0.18); display: flex; align-items: center; justify-content: center; color: var(--white); cursor: pointer; transition: border-color var(--transition), color var(--transition); }
.em-swiper-btn:hover { border-color: var(--gold); color: var(--gold); }
.em-swiper-btn svg { width: 20px; height: 20px; }
.em-swiper-btn.swiper-button-disabled { opacity: 0.3; pointer-events: none; }
.em-swiper .swiper-wrapper { align-items: stretch; }
.em-swiper .swiper-slide { display: flex; }
.em-ep-card { background: var(--dark-card); border: 1px solid rgba(255,255,255,0.07); border-radius: 8px; overflow: visible; display: flex; flex-direction: column; flex: 1; }
.em-ep-thumb { position: relative; aspect-ratio: 16/9; overflow: hidden; border-radius: 8px 8px 0 0; }
.em-ep-thumb img,
.em-ep-thumb video { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s ease; }
.em-ep-card:hover .em-ep-thumb img { transform: scale(1.04); }
.em-ep-thumb-over { position: absolute; inset: 0; background: rgba(0,0,0,0.3); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity var(--transition); }
.em-ep-card:hover .em-ep-thumb-over { opacity: 1; }
.em-ep-play { width: 44px; height: 44px; border-radius: 50%; background: rgba(212,160,23,0.9); display: flex; align-items: center; justify-content: center; color: #0c0c0c; }
.em-ep-play svg { width: 18px; height: 18px; margin-left: 3px; }
.em-ep-badges { position: absolute; bottom: 10px; left: 10px; display: flex; flex-direction: column; align-items: flex-start; gap: 4px; }
.em-ep-badge { font-size: 0.56rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; background: var(--gold); color: #0c0c0c; padding: 3px 8px; border-radius: 2px; }
.em-badge-upcoming { background: #4a90d9; color: #fff; }
.em-ep-body { padding: 14px 14px 16px; flex: 1; display: flex; flex-direction: column; }
.em-ep-title { font-size: 0.8rem; font-weight: 700; line-height: 1.4; margin-bottom: 6px; color: var(--white); }
.em-ep-desc-wrap { flex: 1; display: flex; flex-direction: column; }
.em-ep-desc { font-size: 0.72rem; color: var(--white-55); line-height: 1.6; margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 8; line-clamp: 8; -webkit-box-orient: vertical; overflow: hidden; }
.em-ep-desc-wrap.is-expanded .em-ep-desc { display: block; overflow: visible; }
.em-ep-voir-plus { background: none; border: none; color: var(--gold); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer; padding: 0; margin-bottom: 10px; text-align: left; transition: opacity var(--transition); align-self: flex-start; }
.em-ep-voir-plus:hover { opacity: 0.7; }
.em-ep-meta { font-size: 0.68rem; color: var(--white-30); margin-top: auto; }
.em-all-cta { text-align: center; margin-top: 40px; }
.em-btn-see-all { display: inline-block; padding: 13px 36px; border: 1px solid rgba(255,255,255,0.25); border-radius: var(--radius); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--white); text-decoration: none; transition: border-color var(--transition), color var(--transition); }
.em-btn-see-all:hover { border-color: var(--gold); color: var(--gold); }

/* Thematiques */
.em-thematiques-sec { background: var(--dark-2); padding: 64px 0; }
.em-thematiques-title { text-align: center; font-size: 0.9rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 40px; }
.em-thematiques-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.em-theme-card { background: var(--dark-card); border: 1px solid rgba(255,255,255,0.07); border-radius: 8px; padding: 28px 12px 24px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 14px; cursor: pointer; transition: border-color var(--transition); }
.em-theme-card:hover { border-color: rgba(212,160,23,0.4); }
.em-theme-icon { color: var(--gold); }
.em-theme-icon svg { width: 28px; height: 28px; }
.em-theme-title { font-size: 0.73rem; font-weight: 700; color: var(--white); line-height: 1.4; }

/* Participation */
.em-participate-sec { position: relative; display: grid; grid-template-columns: 1.5fr 0.8fr; min-height: 520px; overflow: hidden; }
.em-participate-sec::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.52); z-index: 1; }
.em-participate-left { position: relative; z-index: 2; background: transparent; padding: 60px 52px; display: flex; flex-direction: column; justify-content: center; }
.em-participate-eyebrow { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.em-participate-left h2 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); font-weight: 800; line-height: 1.2; margin-bottom: 16px; text-shadow: 2px 2px 8px rgba(0,0,0,0.8); }
.em-participate-left > p { font-size: 0.84rem; color: var(--white-55); line-height: 1.75; margin-bottom: 24px; text-shadow: 1px 1px 6px rgba(0,0,0,0.7); }
.em-participate-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.em-participate-list li { display: flex; align-items: center; gap: 12px; font-size: 0.84rem; color: var(--white-80); text-shadow: 1px 1px 6px rgba(0,0,0,0.7); }
.em-check-icon { width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; }
.em-check-icon svg { width: 11px; height: 11px; }
.em-btn-casting { display: inline-flex; align-items: center; padding: 14px 28px; background: var(--gold); color: #0c0c0c; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; border-radius: var(--radius); text-decoration: none; align-self: flex-start; transition: background var(--transition); }
.em-btn-casting:hover { background: #b8890a; }
.em-participate-center { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.em-participate-center img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.em-participate-right { position: relative; z-index: 2; background: transparent; display: flex; flex-direction: column; justify-content: center; }
.em-info-card { padding: 28px 24px; border-bottom: 1px solid rgba(255,255,255,0.07); display: flex; gap: 14px; align-items: flex-start; }
.em-info-card:last-child { border-bottom: none; }
.em-info-icon { width: 38px; height: 38px; border-radius: 50%; border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; }
.em-info-icon svg { width: 18px; height: 18px; }
.em-info-title { font-size: 0.74rem; font-weight: 800; color: var(--white); margin-bottom: 4px; line-height: 1.4; }
.em-info-desc { font-size: 0.72rem; color: var(--white-55); line-height: 1.5; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .episodes-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }

  /* New home sections */
  .thematiques-grid { grid-template-columns: repeat(3, 1fr); }
  .mission-grid { min-height: 460px; }
  .footer-new .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-social-col { grid-column: 1 / -1; }

  /* Legal page */
  .legal-grid { grid-template-columns: 220px 1fr; gap: 28px; }
  .legal-hero-body { max-width: 60%; }

  /* À propos page */
  .ap-hero-body { max-width: 55%; }
  .ap-hero-img { width: 52%; }
  .ap-mission { grid-template-columns: 1fr 1fr; }
  .ap-values-grid { grid-template-columns: repeat(3, 1fr); }
  .ap-stats { grid-template-columns: repeat(2, 1fr); }
  .ap-stat:nth-child(2) { border-right: none; }

  /* Contact page */
  .ct-hero-body { max-width: 55%; }
  .ct-cta-section { padding: 72px 180px; }
  .ct-cta-africa,
  .ct-cta-mic { width: 165px; }

  /* Emissions page */
  .em-hero-body { max-width: 55%; }
  .em-thematiques-grid { grid-template-columns: repeat(3, 1fr); }
  .em-participate-sec { grid-template-columns: 1.3fr 0.7fr; }

  /* Shared page hero */
  .page-hero-body { max-width: 55%; }
  .page-hero-img  { width: 52%; }
}

@media (max-width: 860px) {
  :root { --nav-h: 56px; }

  /* Navbar */
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }

  /* New hero — keep fixed height on mobile, just let content shrink */
  .hero-home { height: 500px; }
  .hero-home .hero-content { max-width: 100%; }
  .hero-home .hero-bg::after {
    background: linear-gradient(to bottom,
      rgba(10,10,10,0.92) 0%,
      rgba(10,10,10,0.80) 60%,
      rgba(10,10,10,0.95) 100%);
  }

  /* Mission */
  .mission-grid { grid-template-columns: 1fr; min-height: unset; }
  .mission-img-col, .mission-video-col { min-height: 320px; }
  .mission-text-col { padding: 52px clamp(24px, 6vw, 60px); }

  /* Featured episode */
  .featured-ep-card { grid-template-columns: 1fr; }
  .featured-ep-left { padding: 20px 28px; }
  .featured-ep-right { min-height: 260px; }

  /* Thematiques */
  .thematiques-grid { grid-template-columns: repeat(2, 1fr); }

  /* Fondatrice */
  .fondatrice-sec { grid-template-columns: 1fr; margin: 40px 3% 0; border-radius: 10px; }
  .fondatrice-img-col { min-height: 380px; }
  .fondatrice-img-fade { background: linear-gradient(to bottom, transparent 55%, #1a2b1c 100%); }
  .fondatrice-right { padding: 48px 32px; align-items: center; text-align: center; }
  .fondatrice-right p { max-width: 100%; font-size: 0.95rem; text-align: center; }
  .gold-separator { margin: 14px auto; }

  /* Rejoindre */
  .rejoindre-sec { grid-template-columns: 1fr; }
  .rejoindre-right { height: 260px; }
  .rejoindre-right::before { display: none; }
  .rejoindre-left { padding: 48px 28px; }

  /* Footer */
  .footer-new .footer-main { grid-template-columns: 1fr; gap: 32px; }

  /* Legacy hero stacks */
  .hero { flex-direction: column; min-height: 100svh; }
  .hero-body { width: 100%; order: 2; padding: 44px 6% 56px; }
  .hero-visual { width: 100%; order: 1; height: 52vw; max-height: 400px; }
  .hero-scroll { display: none; }

  /* Featured strip */
  .featured-strip { grid-template-columns: 1fr; }
  .featured-image { height: 240px; }
  .featured-image::after { background: linear-gradient(to top, var(--dark-3), transparent); }

  /* Stats */
  .stats-bar { flex-wrap: wrap; }
  .stat-item { flex: 1 1 40%; border-bottom: 1px solid var(--white-10); }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-image-wrap { max-height: 360px; aspect-ratio: unset; }

  /* Values */
  .values-grid { grid-template-columns: 1fr 1fr; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; }

  /* Legal page */
  .legal-sidebar { position: static; }
  .legal-grid { grid-template-columns: 1fr; }
  .legal-hero-img { width: 100%; opacity: 0.4; }
  .legal-hero-body { max-width: 100%; }
  .legal-cta-inner { min-height: 300px; padding: 40px 5%; }
  .legal-cta-btns { justify-content: center; }

  /* À propos page */
  .ap-hero-body { max-width: 80%; }
  .ap-hero-img { width: 100%; opacity: 0.3; }
  .ap-mission { grid-template-columns: 1fr; }
  .ap-mission-img { min-height: 300px; }
  .ap-mission-text { padding: 48px 36px; }
  .ap-fondatrice { margin: 40px 3%; border-radius: 10px; }
  .ap-fondatrice-grid { grid-template-columns: 1fr; }
  .ap-fondatrice-img-col { min-height: 420px; }
  .ap-fondatrice-img-fade { background: linear-gradient(to bottom, transparent 60%, var(--dark-2) 100%); }
  .ap-fondatrice-text { padding: 60px 36px; }
  .ap-cta-btns { flex-direction: column; align-items: center; }

  /* Contact page */
  .ct-hero-body { max-width: 100%; }
  .ct-hero-img { width: 100%; }
  .ct-two-col { grid-template-columns: 1fr; }
  .ct-cards-grid { grid-template-columns: 1fr; }
  .ct-card { min-height: 260px; }
  .ct-cta-section { padding: 60px 24px; }
  .ct-cta-africa { display: none; }
  .ct-cta-mic { display: none; }

  /* Emissions page */
  .em-hero-body { max-width: 80%; }
  .em-hero-img { width: 100%; opacity: 0.3; }
  .em-featured-card { grid-template-columns: 1fr; }
  .em-featured-thumb { min-height: 280px; }
  .em-swiper-btn { display: none; }
  .em-thematiques-grid { grid-template-columns: repeat(2, 1fr); }
  .em-participate-sec { grid-template-columns: 1fr; }
  .em-participate-right { flex-direction: row; }
  .em-info-card { flex: 1; border-right: 1px solid rgba(255,255,255,0.07); border-bottom: none; }
  .em-info-card:last-child { border-right: none; }

  /* Shared page hero */
  .page-hero-body { max-width: 80%; }
  .page-hero-img  { width: 100%; opacity: 0.3; }
}

@media (max-width: 560px) {
  .episodes-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .hero-home .hero-btns { flex-direction: column; }
  .btn-gold, .btn-outline, .btn-gold-solid { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { flex-direction: column; align-items: center; gap: 8px; }
  .stats-bar { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--white-10); }
  .thematiques-grid { grid-template-columns: repeat(2, 1fr); }
  .social-btns { gap: 8px; }
  .social-btn { flex: 1 1 calc(50% - 8px); justify-content: center; }
  .featured-ep-btns { flex-direction: column; }
  .featured-ep-btns .btn-gold,
  .featured-ep-btns .btn-outline { width: 100%; justify-content: center; }
  .footer-nav-wrap { grid-template-columns: 1fr; gap: 20px; }

  /* Legal page */
  .legal-nav { display: none; }
  .legal-cta-btns { flex-direction: column; width: 100%; }
  .legal-cta-btns .btn-gold-solid,
  .legal-cta-btns .btn-outline { width: 100%; justify-content: center; }

  /* À propos page */
  .ap-hero-body { max-width: 100%; }
  .ap-values-grid { grid-template-columns: repeat(2, 1fr); }
  .ap-stats { grid-template-columns: 1fr 1fr; }
  .ap-stat:nth-child(2) { border-right: none; }
  .ap-stat:nth-child(3) { border-right: 1px solid rgba(212,160,23,0.2); }
  .ap-fondatrice-text { padding: 48px 24px; }
  .ap-cta-body { padding: 36px 24px; }
  .ap-cta-btns { flex-direction: column; }
  .ap-btn-dark, .ap-btn-outline-dark { width: 100%; justify-content: center; }

  /* Contact page */
  .ct-hero-body { max-width: 100%; }
  .ct-form-card, .ct-methods-card { padding: 28px 20px 32px; }
  .ct-cta-btns { flex-direction: column; }
  .ct-btn-gold, .ct-btn-outline { width: 100%; justify-content: center; }

  /* Emissions page */
  .em-hero-body { max-width: 100%; }
  .em-episodes-wrapper { gap: 0; }
  .em-thematiques-grid { grid-template-columns: repeat(2, 1fr); }
  .em-featured-btns { flex-direction: column; }
  .em-btn-gold, .em-btn-ep-outline { width: 100%; justify-content: center; }
  .em-participate-left { padding: 44px 28px; }
  .em-participate-right { flex-direction: column; }
  .em-info-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .em-info-card:last-child { border-bottom: none; }
  .em-btn-casting { align-self: stretch; justify-content: center; }

  /* Shared page hero */
  .page-hero-body { max-width: 100%; }
}

/* ============================================================
   PARTICIPER PAGE
   ============================================================ */

/* Hero */
.par-hero {
  position: relative;
  background: var(--dark);
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 500px;
  border-bottom: 1px solid var(--gold);
}
.par-hero > .container {
  position: relative;
  z-index: 2;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 100%;
}
.par-hero-body { max-width: 48%; }
.par-eyebrow {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.par-h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 16px;
}
.par-hero-bar {
  display: block;
  width: 52px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 20px;
}
.par-hero-body p {
  font-size: 0.9rem;
  color: var(--white-55);
  line-height: 1.75;
  max-width: 380px;
}
.par-hero-img {
  position: absolute;
  top: 0; right: 0;bottom: 0;
  width: 100%;
  height: 500px;
  overflow: hidden;
  pointer-events: none;
}
.par-hero-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.par-hero-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--dark) 0%, rgba(12,12,12,0.72) 22%, transparent 58%);
  z-index: 1;
}

/* Main section */
.par-main-sec {
  background: var(--dark-2);
  padding: 64px 0 72px;
}
.par-main-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 40px;
  align-items: start;
}
.par-left-col { display: flex; flex-direction: column; gap: 24px; }

/* Why block */
.par-why-block {
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-left: 3px solid var(--gold);
  border-radius: 10px;
  padding: 28px 24px;
}
.par-why-head { margin-bottom: 22px; }
.par-why-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.par-reasons { display: flex; flex-direction: column; gap: 20px; }
.par-reason { display: flex; align-items: flex-start; gap: 16px; }
.par-reason-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.par-reason-icon svg { width: 20px; height: 20px; }
.par-reason-text strong {
  display: block;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.par-reason-text p {
  font-size: 0.78rem;
  color: var(--white-55);
  line-height: 1.6;
  margin: 0;
}

/* Episode card */
.par-episode-card {
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 140px 1fr;
}
.par-episode-thumb { overflow: hidden; }
.par-episode-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.par-episode-body {
  padding: 20px 20px 20px 16px;
  display: flex; flex-direction: column; justify-content: center;
}
.par-ep-eyebrow {
  display: block;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.par-episode-body h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}
.par-episode-body p {
  font-size: 0.78rem;
  color: var(--white-55);
  line-height: 1.6;
  margin-bottom: 14px;
}
.par-ep-link {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 6px 14px;
  border-radius: 4px;
  align-self: flex-start;
  transition: background var(--transition), color var(--transition);
}
.par-ep-link:hover { background: var(--gold); color: #0c0c0c; }

/* Form card */
.par-form-card {
  background: var(--dark-card);
  border: 2px solid #C5A059;
  border-radius: 10px;
  padding: 36px 32px 40px;
}
.par-form-title {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.par-form-sub {
  font-size: 0.82rem;
  color: var(--white-55);
  margin-bottom: 28px;
  line-height: 1.6;
}
.par-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 0;
}
.par-row-2 .par-field { margin-bottom: 14px; }
.par-field { margin-bottom: 16px; }
.par-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--white-55);
  margin-bottom: 7px;
}
.par-req { color: var(--gold); }
.par-optional { color: var(--white-30); font-weight: 400; }
.par-field input,
.par-field textarea,
.par-field select {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 7px;
  padding: 12px 14px;
  font-size: 0.86rem;
  color: var(--white);
  transition: border-color var(--transition);
  appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
}
.par-field input::placeholder,
.par-field textarea::placeholder { color: var(--white-30); }
.par-field input:focus,
.par-field textarea:focus,
.par-field select:focus { outline: none; border-color: var(--gold); }
.par-field textarea { resize: vertical; min-height: 110px; }
.par-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23888'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 38px;
  cursor: pointer;
  background-color: rgba(255,255,255,0.05);
}
.par-field select option { background: var(--dark-card); }

/* Radio — Oui / Non pill buttons */
.par-radio-row { display: flex; gap: 12px; margin-top: 8px; }
.par-radio-opt {
  display: flex; align-items: center; gap: 10px;
  cursor: pointer;
  font-size: 0.9rem; font-weight: 600;
  color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 11px 26px;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  user-select: none;
}
.par-radio-opt input[type="radio"] { display: none; }

/* Circle indicator */
.par-radio-dot {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.18);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}

/* CSS checkmark via border trick — hidden by default */
.par-radio-dot::after {
  content: '';
  display: block;
  width: 5px; height: 9px;
  border: 2.5px solid transparent;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) scale(0);
  transition: transform 0.15s ease;
  margin-top: -2px;
}

/* Hover (unselected only) */
.par-radio-opt:hover:not(:has(input:checked)) {
  border-color: rgba(212,160,23,0.4);
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.06);
}

/* CHECKED — solid gold fill, dark text, checkmark visible */
.par-radio-opt:has(input:checked) {
  background: var(--gold);
  border-color: var(--gold);
  color: #0d0d0f;
  box-shadow: 0 4px 20px rgba(212,160,23,0.38);
}
.par-radio-opt:has(input:checked) .par-radio-dot {
  background: rgba(0,0,0,0.18);
  border-color: rgba(0,0,0,0.25);
}
.par-radio-opt:has(input:checked) .par-radio-dot::after {
  border-color: #0d0d0f;
  transform: rotate(45deg) scale(1);
}

/* Upload zone */
.par-upload-zone {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 6px;
  border: 1.5px dashed rgba(255,255,255,0.18);
  border-radius: 8px;
  padding: 28px 20px;
  cursor: pointer;
  text-align: center;
  transition: border-color var(--transition);
  position: relative;
}
.par-upload-zone:hover { border-color: var(--gold); }
.par-upload-zone svg { width: 32px; height: 32px; color: var(--white-30); }
.par-upload-zone p { font-size: 0.82rem; color: var(--white-55); margin: 0; }
.par-upload-zone span { font-size: 0.72rem; color: var(--white-30); }
.par-file-input {
  position: absolute; inset: 0;
  opacity: 0; cursor: pointer;
  width: 100%; height: 100%;
}

/* Submit */
.par-submit-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%;
  padding: 15px 24px;
  background: var(--gold);
  color: #0c0c0c;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 7px;
  border: 2px solid var(--gold);
  cursor: pointer;
  font-family: var(--font);
  transition: background var(--transition);
  margin-top: 4px;
}
.par-submit-btn:hover { background: #b8890a; border-color: #b8890a; }
.par-submit-btn svg { width: 16px; height: 16px; }
.par-privacy {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.73rem;
  color: var(--white-30);
  margin-top: 14px;
  line-height: 1.5;
}
.par-privacy svg { flex-shrink: 0; }

/* Steps */
.par-steps-sec {
  background: var(--dark);
  padding: 64px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.par-steps-heading {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 52px;
  text-align: center;
}
.par-steps-line { display: block; width: 48px; height: 1px; background: var(--gold); opacity: 0.5; }
.par-steps-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: nowrap;
}
.par-step {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  width: 160px;
  flex-shrink: 0;
}
.par-step-icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  border: 2px solid rgba(212,160,23,0.4);
  background: rgba(212,160,23,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin-bottom: 12px;
}
.par-step-icon svg { width: 22px; height: 22px; }
.par-step-num {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 4px;
}
.par-step-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.par-step p {
  font-size: 0.76rem;
  color: var(--white-55);
  line-height: 1.6;
  max-width: 130px;
  margin: 0;
}
.par-step-arrow {
  color: rgba(212,160,23,0.45);
  font-size: 1.4rem;
  margin-top: 16px;
  flex-shrink: 0;
  padding: 0 6px;
}

/* CTA */
.par-cta-sec {
  position: relative;
  background: #0c0c0c;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.par-cta-grid {
  display: flex;
  align-items: center;
  min-height: 300px;
  padding: 50px 180px 50px 240px;
}
.par-cta-mic {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 220px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, black 65%, transparent 100%);
  mask-image: linear-gradient(to right, black 65%, transparent 100%);
}
.par-cta-mic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transform: scale(1.02);
}
.par-cta-body {
  flex: 1;
  padding: 40px 48px 40px 32px;
  text-align: center;
}
.par-cta-body h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 14px;
}
.par-cta-body p {
  font-size: 0.9rem;
  color: var(--white-55);
  line-height: 1.7;
  margin: 0;
}
.par-contact-card {
  background: var(--dark-card);
  border: 1px solid rgba(212,160,23,0.2);
  border-radius: 14px;
  padding: 34px 30px;
  flex-shrink: 0;
  width: 330px;
  margin: 0;
}
.par-contact-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin-bottom: 14px;
}
.par-contact-icon svg { width: 22px; height: 22px; }
.par-contact-card h3 {
  font-size: 0.97rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.par-contact-card > p {
  font-size: 0.87rem;
  color: var(--white-55);
  line-height: 1.7;
  margin-bottom: 20px;
}
.par-contact-link {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem;
  color: var(--white);
  margin-bottom: 12px;
  transition: color var(--transition);
  word-break: break-all;
}
.par-contact-link:last-child { margin-bottom: 0; }
.par-contact-link:hover { color: var(--gold); }
.par-contact-link svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--gold); }

/* Responsive — participer */
@media (max-width: 1024px) {
  .par-main-grid { grid-template-columns: 1fr; }
  .par-cta-grid { flex-direction: column; padding: 40px 32px; }
  .par-cta-mic { display: none; }
  .par-cta-body { padding: 24px 0; text-align: center; }
  .par-contact-card { width: 100%; }
}
@media (max-width: 860px) {
  .par-hero-body { max-width: 100%; }
  .par-hero-img { width: 100%; opacity: 0.25; }
  .par-hero-img::before { background: linear-gradient(to right, var(--dark) 0%, rgba(12,12,12,0.9) 100%); }
  .par-steps-row { flex-wrap: wrap; justify-content: center; gap: 12px; }
  .par-step-arrow { display: none; }
  .par-step { width: 140px; }
  .par-row-2 { grid-template-columns: 1fr; }
  .par-row-2 .par-field { margin-bottom: 16px; }
  .par-episode-card { grid-template-columns: 1fr; }
  .par-episode-thumb { height: 180px; }
  .par-form-card { padding: 28px 20px 32px; }
}

/* ============================================================
   CONCEPT PAGE  (cp-*)
   ============================================================ */

/* ---- Shared helpers ---- */
.cp-eyebrow {
  display: block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.cp-gold-heart { color: var(--gold); margin-top: 6px; }
.cp-btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px !important;
  background: var(--gold);
  color: #0c0c0c;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
}
.cp-btn-gold:hover { background: var(--gold-hover); transform: translateY(-1px); }
.cp-btn-lg { padding: 17px 38px; font-size: 0.75rem; }

/* ---- HERO ---- */
.cp-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
  border-bottom: 1px solid var(--gold);
}
.cp-hero-img-wrap {
  position: absolute;
  top: 0;
  right: 0;
  width: 95%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.cp-hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Gold separator bar — mirrors ap-hero-bar */
.cp-hero-bar {
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 20px;
}
.cp-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-top: 80px;
  padding-bottom: 80px;
}
.cp-hero-body { max-width: 48%; }
.cp-hero-title {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 18px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.65), 0 1px 4px rgba(0, 0, 0, 0.45);
}
.cp-hero-gold {
  font-style: normal;
  color: var(--gold);
  display: block;
}
.cp-hero-sub {
  font-size: 0.9rem;
  color: var(--white-55);
  line-height: 1.75;
  max-width: 380px;
  margin-bottom: 34px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55);
}
.cp-hero-actions { display: flex; align-items: center; gap: 20px; }

/* Play ring — centered on right side */
.cp-play-ring {
  position: relative;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #fff;
  flex-shrink: 0;
  transition: border-color var(--transition), background var(--transition);
  text-align: center;
}
.cp-play-ring::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(212,160,23,0.35);
  animation: cp-pulse 2.6s ease-out infinite;
}
.cp-play-ring:hover { background: rgba(212,160,23,0.12); border-color: var(--gold-hover); }
.cp-play-ring svg { width: 28px; height: 28px; color: var(--gold); }
.cp-play-label {
  font-size: 0.56rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.70);
  text-transform: uppercase;
  line-height: 1.5;
}

/* Stats bar */
.cp-stats-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: rgba(10,10,10,0.80);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(212,160,23,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 22px 5%;
}
.cp-stat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 48px;
}
.cp-stat svg { color: var(--gold); flex-shrink: 0; }
.cp-stat strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #fff;
}
.cp-stat span {
  display: block;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.55);
}
.cp-stat-sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* ---- COLLAGE GRID ---- */
.cp-collage-sec {
  background: var(--dark);
  padding: 0;
  overflow: hidden;
}
.cp-collage-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 3px;
}
.cp-col-item {
  position: relative;
  overflow: hidden;
}
.cp-col-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s ease;
  display: block;
}
.cp-col-item:hover img { transform: scale(1.05); }
.cp-col-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.70) 0%, transparent 55%);
  pointer-events: none;
}
.cp-col-caption {
  position: absolute;
  bottom: 14px;
  left: 16px;
  z-index: 1;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.80);
}
.cp-col-tall { grid-row: span 2; }
.cp-col-wide { grid-column: span 2; }

/* ---- WHY SECTION ---- */
.cp-why-sec {
  background: var(--dark-2);
  padding: 100px 0;
  border-top: 1px solid rgba(212,160,23,0.12);
}
/* Strip left padding so the video column bleeds to the container edge */
.cp-why-sec .container {
  padding-left: 0;
}
.cp-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.cp-why-video-wrap {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  width: 100%;
  height: 486px;
  margin-left: max(24px, 3vw);
}
/* Text column gets its own left breathing room */
.cp-why-text {
  padding-left: 8px;
}
.cp-why-video {
  width: 120%;
  height: 100%;
  object-fit: cover;
  object-position: 10% 50%;
  display: block;
}
.cp-why-mute-btn {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(212,160,23,0.55);
  background: rgba(10,10,10,0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.75);
  cursor: pointer;
  pointer-events: auto;
  transition: border-color var(--transition), background var(--transition), color var(--transition), transform var(--transition);
}
.cp-why-mute-btn svg { width: 18px; height: 18px; pointer-events: none; }
.cp-why-mute-btn:hover {
  border-color: var(--gold);
  background: rgba(212,160,23,0.15);
  color: #fff;
  transform: scale(1.08);
}
.cp-why-mute-btn--active {
  border-color: var(--gold);
  color: var(--gold);
}

.cp-why-body {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.9;
  margin-bottom: 40px;
}
.cp-values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.cp-value {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.cp-value-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.cp-value strong {
  display: block;
  font-size: 0.74rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2px;
}
.cp-value span {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.50);
}

/* ---- THEMES SECTION ---- */
.cp-themes-sec {
  background: var(--dark);
  padding: 100px 0;
  border-top: 1px solid rgba(212,160,23,0.10);
}
.cp-section-head {
  margin-bottom: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cp-themes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.cp-theme-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition);
}
.cp-theme-card:hover { transform: translateY(-5px); }
.cp-theme-img {
  position: relative;
  height: 340px;
  overflow: hidden;
}
.cp-theme-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s ease;
}
.cp-theme-card:hover .cp-theme-img img {
  transform: scale(1.07);
}
.cp-theme-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
}
.cp-theme-card:hover .cp-theme-overlay {
  background: transparent;
}
.cp-theme-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 14px;
  z-index: 1;
}
.cp-theme-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
  opacity: 0.9;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
}
.cp-theme-title {
  font-size: 0.76rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
}

/* gold left border on hover */
.cp-theme-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold);
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 2;
}
.cp-theme-card:hover::before { opacity: 1; }

/* "Lire +" cue on cards that have a description */
.cp-theme-cta {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.cp-theme-has-desc:hover .cp-theme-cta {
  opacity: 1;
  transform: translateY(0);
}

/* ---- THEME DESCRIPTION MODAL ---- */
.cp-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5,5,5,0.88);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}
.cp-modal-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}
.cp-modal-panel {
  position: relative;
  background: #141009;
  border: 1px solid rgba(212,160,23,0.18);
  border-radius: 6px;
  max-width: 520px;
  width: 100%;
  overflow: hidden;
  transform: translateY(20px);
  transition: transform 0.28s ease;
}
.cp-modal-overlay.is-open .cp-modal-panel {
  transform: translateY(0);
}
.cp-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.55);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  transition: color 0.2s;
}
.cp-modal-close:hover { color: var(--gold); }
.cp-modal-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.cp-modal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.65) saturate(0.8);
  display: block;
}
.cp-modal-img-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #141009 0%, transparent 60%);
}
.cp-modal-body {
  padding: 22px 28px 30px;
}
.cp-modal-num {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  opacity: 0.85;
}
.cp-modal-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 16px;
}
.cp-modal-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
}
@media (max-width: 540px) {
  .cp-modal-panel { border-radius: 0; }
  .cp-modal-body  { padding: 18px 20px 26px; }
}

/* ---- TIMELINE SECTION ---- */
.cp-timeline-sec {
  background: var(--dark-2);
  padding: 100px 0;
  border-top: 1px solid rgba(212,160,23,0.10);
}
.cp-timeline-wrap {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 72px;
  align-items: start;
}
.cp-tl-big {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 18px;
}
.cp-tl-bar {
  width: 40px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 20px;
}
.cp-tl-desc {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.60);
  line-height: 1.85;
}
.cp-tl-months {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.cp-tl-month {
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px;
  padding: 24px 20px 28px;
  border-top: 3px solid var(--gold);
}
.cp-tl-month-title {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.cp-tl-month-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.cp-tl-month-meta span {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.40);
  line-height: 1.5;
}
.cp-tl-month-meta em {
  font-style: normal;
  color: rgba(255,255,255,0.60);
}
.cp-tl-episodes {
  display: flex !important;
  flex-direction: column !important;
  gap: 20px !important;
}
.cp-tl-ep {
  display: flex !important;
  align-items: flex-start !important;
  gap: 16px !important;
  position: relative !important;
}
/* Vertical dashed line: runs from below the number to the top of the next episode */
.cp-tl-ep:not(:last-child)::after {
  content: '' !important;
  position: absolute !important;
  left: 7px !important;    /* horizontally centred under the number text (~2 chars wide) */
  top: 22px !important;    /* below the number's line-height baseline */
  bottom: -20px !important; /* spans the 20px flex gap to reach the next episode */
  width: 0 !important;
  border-left: 1px dashed rgba(212,160,23,0.35) !important;
  z-index: 0 !important;
}
.cp-tl-num {
  min-width: 24px !important;
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  line-height: 1.4 !important;
  color: var(--gold) !important;
  flex-shrink: 0 !important;
  position: relative !important;
  z-index: 1 !important;
  letter-spacing: 0.02em !important;
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  width: auto !important;
  height: auto !important;
}
.cp-tl-ep strong {
  display: block !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  color: #fff !important;
  line-height: 1.4 !important;
  margin-bottom: 3px !important;
}
.cp-tl-ep span,
.cp-tl-date {
  display: block !important;
  font-size: 0.67rem !important;
  color: rgba(255,255,255,0.45) !important;
  line-height: 1.5 !important;
}
.cp-tl-date.diffusion {
  color: var(--gold) !important;
  opacity: 0.75 !important;
}

/* ---- INTERVENANTS + QUOTE ---- */
.cp-interv-sec {
  background: var(--dark);
  padding: 100px 0;
  border-top: 1px solid rgba(212,160,23,0.10);
}
.cp-interv-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.cp-interv-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 28px 0 40px;
}
.cp-interv-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.cp-icon-ring {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid rgba(212,160,23,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  background: rgba(212,160,23,0.05);
}
.cp-interv-icon span {
  font-size: 0.63rem;
  color: rgba(255,255,255,0.60);
  line-height: 1.5;
}
.cp-interv-quote {
  position: relative;
  padding: 28px 28px 28px 36px;
  background: rgba(255,255,255,0.04);
  border-left: 3px solid var(--gold);
  border-radius: 0 4px 4px 0;
}
.cp-quote-mark {
  position: absolute;
  top: -8px;
  left: 16px;
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 1;
  font-family: Georgia, serif;
}
.cp-interv-quote p {
  font-size: 1rem;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
}

/* Right image */
.cp-interv-right {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  height: 460px;
}
.cp-interv-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
  display: block;
}
.cp-interv-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.35) 0%, transparent 60%);
}

/* ---- CTA SECTION ---- */
.cp-cta-sec {
  position: relative;
  padding: 0px 0;
  overflow: hidden;
}
.cp-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  justify-content: center; 
  align-items: center;     
  overflow: hidden;
}

.cp-cta-bg img {
  width: 100%;       
  height: 130%;      
  object-fit: contain; 
  display: block;
}
.cp-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(10,10,10,0.88) 0%,
    rgba(10,10,10,0.72) 50%,
    rgba(10,10,10,0.92) 100%
  );
}
.cp-cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.cp-cta-text {
  font-size: 0.98rem;
  color: rgba(255,255,255,0.80);
  line-height: 1.9;
  max-width: 500px;
}

/* ---- Mute / Unmute button ---- */
.cp-mute-btn {
  position: absolute;
  bottom: 130px;
  right: 28px;
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(212,160,23,0.55);
  background: rgba(10,10,10,0.55);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.75);
  cursor: pointer;
  pointer-events: auto;
  transition: border-color var(--transition), background var(--transition), color var(--transition), transform var(--transition);
}
.cp-mute-btn svg { width: 18px; height: 18px; pointer-events: none; }
.cp-mute-btn:hover {
  border-color: var(--gold);
  background: rgba(212,160,23,0.15);
  color: #fff;
  transform: scale(1.08);
}
.cp-mute-btn--active {
  border-color: var(--gold);
  color: var(--gold);
}

/* ---- Keyframes ---- */
@keyframes cp-pulse {
  0%   { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ============================================================
   CONCEPT PAGE — RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .cp-themes-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
  .cp-why-grid          { grid-template-columns: 1fr; gap: 48px; }
  /* Restore normal container padding when stacked — video no longer bleeds left */
  .cp-why-sec .container { padding-left: 5%; }
  .cp-why-video-wrap    { border-radius: 6px; margin-left: 0; }
  .cp-why-text          { padding-left: 0; }
  .cp-timeline-wrap { grid-template-columns: 1fr; gap: 40px; }
  .cp-tl-months   { grid-template-columns: repeat(3, 1fr); }
  .cp-interv-wrap { grid-template-columns: 1fr; gap: 48px; }
  .cp-interv-right { height: 340px; }
}
@media (max-width: 860px) {
  .cp-hero-inner  { flex-direction: column; align-items: flex-start; padding-bottom: 140px; }
  .cp-hero-body   { max-width: 100%; }
  .cp-play-ring   { align-self: flex-start; }
  /* On tablet the image bleeds full width so overlay covers enough of it */
  .cp-hero-img-wrap { width: 100%; }
  .cp-collage-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 220px 220px; }
  .cp-col-tall    { grid-row: span 1; }
  .cp-col-wide    { grid-column: span 2; }
  .cp-themes-grid { grid-template-columns: repeat(2, 1fr); }
  .cp-theme-img   { height: 280px; }
  .cp-tl-months   { grid-template-columns: 1fr; }
  .cp-interv-icons { grid-template-columns: repeat(2, 1fr); }
  .cp-values-grid { grid-template-columns: 1fr; }
  /* Keep mute button accessible above stats bar on tablet */
  .cp-mute-btn    { bottom: 110px; right: 16px; }
}
@media (max-width: 560px) {
  .cp-hero-title  { font-size: 2rem; }
  .cp-themes-grid { grid-template-columns: 1fr; }
  .cp-theme-img   { height: 260px; }
  .cp-collage-grid { grid-template-columns: 1fr; grid-template-rows: repeat(6, 200px); }
  .cp-col-wide    { grid-column: span 1; }
  .cp-stat        { padding: 0 20px; }
  .cp-why-video-wrap { height: 360px; }
  .cp-timeline-wrap { grid-template-columns: 1fr; }
  .cp-interv-right { height: 260px; }
  .cp-btn-gold, .cp-btn-lg { width: 100%; justify-content: center; }
  /* Mute button: smaller, snug above stats bar on phones */
  .cp-mute-btn    { bottom: 100px; right: 14px; width: 40px; height: 40px; }
}

/* ============================================================
   TEST SECTION — glassmorphism card
   ============================================================ */
.test-bg-sec {
  position: relative;
  background: url('../images/test.png') 20% center / cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 620px;
  padding: 80px 5% 0;
  margin: 60px 5% 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.2);
}


.test-main {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-bottom: 60px;
}

.test-glass-card {
  max-width: 520px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 52px 48px;
  margin-left: -30px;
  margin-top: 40px;
}

.test-brand-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.test-brand-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  flex-shrink: 0;
}

.test-brand-icon img {
  width: 70%;
  height: 70%;
  object-fit: contain;
}

.test-brand-badge > span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}

.test-eyebrow {
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  text-shadow: 0 0 12px rgba(0,0,0,0.9), 0 0 24px rgba(0,0,0,0.7);
}

.test-title {
  font-family: 'Georgia', fangsong, serif;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: bold;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 20px;
}

.test-title span {
  color: var(--gold);
  font-style: italic;
}

.test-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 32px;
}

.test-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 6px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s, border-color 0.2s;
}

.test-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
}

/* Features bar */
.test-features-bar {
  display: flex;
  width: calc(100% + 10%);
  margin-left: -5%;
  background: rgba(0, 0, 0, 0.55);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.test-feature-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  justify-content: center;
}

.test-feature-item:last-child {
  border-right: none;
}

.test-feature-item svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--gold);
}

.test-feature-item span {
  font-size: 0.82rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

@media (max-width: 860px) {
  .test-features-bar { flex-wrap: wrap; }
  .test-feature-item { flex: 1 1 50%; border-bottom: 1px solid rgba(255,255,255,0.18); justify-content: flex-start; }
}

@media (max-width: 768px) {
  .test-bg-sec {
    margin: 40px 4% 0;
    padding: 0;
    background: none;
    min-height: auto;
    border-radius: 12px;
  }
  /* Image block at the top */
  .test-bg-sec::before {
    content: '';
    display: block;
    width: 100%;
    height: 260px;
    background: url('../images/test.jpg') center top / cover no-repeat;
    flex-shrink: 0;
  }
  .test-main {
    background: var(--dark);
    padding: 36px 24px 32px;
    position: relative;
    z-index: 1;
  }
  /* Glass card becomes a clean text block on solid bg */
  .test-glass-card {
    max-width: 100%;
    width: 100%;
    margin-left: 0;
    margin-top: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    padding: 0;
  }
  .test-features-bar {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .test-bg-sec {
    margin: 24px 3% 0;
    border-radius: 10px;
  }
  .test-bg-sec::before {
    height: 220px;
  }
  .test-main {
    padding: 28px 20px;
  }
  .test-feature-item {
    flex: 1 1 100%;
    border-right: none;
    justify-content: flex-start;
  }
  .test-features-bar {
    flex-direction: column;
    width: 100%;
    margin-left: 0;
  }
}

/* ============================================================
   PARTENAIRES PAGE
   ============================================================ */

/* Hero: two split images + centered overlay */
.pt-hero {
  position: relative;
  display: flex;
  height: 480px;
  overflow: hidden;
  border-bottom: 1px solid var(--gold);
}

.pt-hero-half {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.pt-hero-half img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pt-hero-caption {
  position: absolute;
  bottom: 20px;
  z-index: 3;
  font-size: clamp(0.8rem, 1.4vw, 1rem);
  font-weight: 700;
  font-style: italic;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.6);
  pointer-events: none;
}

.pt-hero-caption--left  { left: 20px; }
.pt-hero-caption--right { right: 20px; text-shadow: 0 4px 14px rgba(0, 0, 0, 0.9), 0 2px 4px rgba(0, 0, 0, 0.7); }

.pt-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
}

/* Dark band only in the center, fading to transparent on both sides */
.pt-hero-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 46%;
  background: rgba(0, 0, 0, 0.92);
  -webkit-mask: linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%);
  mask: linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%);
  z-index: -1;
}

.pt-hero-overlay h1 {
  font-size: clamp(1.4rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.pt-hero-overlay p {
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  color: var(--white-80);
  max-width: 480px;
  line-height: 1.7;
}

/* Why section */
.pt-why {
  text-align: center;
  border-bottom: 1px solid var(--gold);
}

.pt-why-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--gold);
}

.pt-why p {
  font-size: clamp(0.88rem, 1.2vw, 1rem);
  color: var(--white-80);
  max-width: 680px;
  margin: 0 auto 16px;
  line-height: 1.8;
}

/* Partners logos grid */
.pt-logos-grid {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 48px;
}

.pt-logo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid var(--gold);
  border-radius: 4px;
  background: var(--dark-card);
  flex: 1;
  max-width: 260px;
  padding: 32px 24px 28px;
}

.pt-logo-divider {
  width: 60px;
  height: 1px;
  background: rgba(212, 160, 23, 0.5);
  margin: 20px auto;
  flex-shrink: 0;
}

.pt-logo-text {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Projet principal — La Pause Infusée */
.pt-logo-card--primary {
  padding-top: 20px;
  padding-bottom: 20px;
  min-height: 380px;
}

.pt-logo-card--primary .pt-logo-name {
  color: var(--gold);
  font-size: 1.05rem;
}

/* Projet secondaire — Au Palmarin */
.pt-logo-card--secondary {
  min-height: 380px;
}

.pt-logo-card--secondary .pt-logo-name {
  color: var(--gold);
}

.pt-logo-img {
  width: 100%;
  height: 195px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pt-logo-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.pt-logo-name {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--white);
  text-transform: uppercase;
  margin: 0;
}

.pt-logo-sub {
  font-size: 0.82rem;
  color: var(--white-55);
  margin: 0;
}

/* CTA box */
/* CTA section — background image, text left-aligned */
.pt-cta {
  background: url('../images/partenaires.jpg') center center / cover no-repeat;
  background-color: var(--dark) !important;
  min-height: 420px;
  display: flex;
  align-items: center;
  padding: 80px 0;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}

.pt-cta .container {
  width: 100%;
  padding-left: 2%;
}

.pt-cta-box {
  max-width: 520px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pt-cta-title {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 800;
  font-style: italic;
  line-height: 1.4;
  color: var(--white);
  margin: 0;
  letter-spacing: 0.01em;
}

.pt-cta-box .btn-gold-solid {
  width: auto;
  align-self: flex-start;
}

.pt-cta-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  font-weight: 400;
  color: var(--gold);
  margin: 0;
  letter-spacing: 0.03em;
}

/* Responsive */
@media (max-width: 768px) {
  .pt-hero { height: 360px; }
  .pt-logo-card { padding: 32px 28px; min-width: 180px; }
  .pt-cta { padding: 72px 0; background-size: cover; }
  .pt-cta .container { padding-left: 24px; padding-right: 24px; }
  .pt-cta-box { text-align: left; max-width: 100%; }
  .pt-cta-title { font-size: 1.1rem; }
  .pt-cta-sub { font-size: 0.95rem; }
  .pt-cta-box .btn-gold-solid { align-self: flex-start; margin-left: 0; }
}

@media (max-width: 480px) {
  .pt-hero { height: 280px; }
  .pt-logos-grid { flex-direction: column; align-items: center; }
  .pt-logo-card { width: 100%; max-width: 300px; }
  .pt-cta .container { padding-left: 20px; padding-right: 20px; }
  .pt-cta-title { font-size: 1rem; }
  .pt-cta-sub { font-size: 0.88rem; }
}
