/* ════════════════════════════════════════════════════════════════════
   ELODIE DA SILVA — Magazine de la parentalité
   Direction : éditorial chaud × parallaxe lourde × collision typographique
   Inspirations fusionnées : natalie-ellis × jenna-kutcher × jasmine-star
   transposées à la parentalité francophone, sans copier.
   ════════════════════════════════════════════════════════════════════ */

/* ─── Tokens ─── */
:root {
  --cream: #F5EFE6;
  --cream-deep: #EDE3D2;
  --cream-soft: #FAF6ED;

  --ink: #0F0E0C;
  --ink-muted: #5C5751;
  --ink-soft: #8B847D;

  --taupe: #B47155;
  --taupe-deep: #8B5240;
  --taupe-soft: #E0C5B5;

  --coral-pop: #E97A52;
  --midnight: #0A0908;
  --solar: #FFCB2E;

  --font-display: 'Fraunces', 'Times New Roman', serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --font-grotesque: 'Syne', 'DM Sans', sans-serif;
  --font-script: 'Caveat', cursive;

  --space-section: clamp(80px, 12vw, 160px);
  --max-width: 1440px;

  --easing-snap: cubic-bezier(0.16, 1, 0.3, 1);
  --easing-soft: cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* ─── Reset & base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  font-size: 15px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
  cursor: none;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.04;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; cursor: none; }
ul, ol { list-style: none; }
button { background: none; border: none; font: inherit; color: inherit; cursor: none; }

@media (hover: none) {
  body, a, button { cursor: auto; }
}

/* ────────────────────────────────────────
   PAGE LOAD CURTAIN
   ──────────────────────────────────────── */
.curtain {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--midnight);
  display: flex;
  align-items: center;
  justify-content: center;
  transform-origin: top;
  transition: transform 1.1s cubic-bezier(0.86, 0, 0.07, 1) 0.6s;
  pointer-events: none;
}
.curtain.is-up { transform: scaleY(0); }
.curtain__inner {
  overflow: hidden;
  height: 1.1em;
}
.curtain__word {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(64px, 10vw, 132px);
  color: var(--cream);
  display: inline-block;
  animation: curtainWord 1s var(--easing-snap) 0.15s both;
}
.curtain__dot { color: var(--taupe); }
@keyframes curtainWord {
  from { transform: translateY(110%); }
  to { transform: translateY(0); }
}

/* ────────────────────────────────────────
   CUSTOM CURSOR (subtle dot + ring follower)
   ──────────────────────────────────────── */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 5px; height: 5px;
  background: var(--taupe);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1000;
  transform: translate(-50%, -50%);
  transition: transform 0.18s ease, background 0.25s ease, opacity 0.25s ease, width 0.25s ease, height 0.25s ease;
  opacity: 0;
}
.cursor--ring {
  width: 28px; height: 28px;
  background: transparent;
  border: 1px solid rgba(180, 113, 85, 0.6);
  transition: transform 0.55s var(--easing-snap), width 0.3s ease, height 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  opacity: 0;
}
.cursor.is-visible { opacity: 1; }
.cursor.is-hover {
  width: 0; height: 0;
  background: transparent;
}
.cursor--ring.is-hover {
  width: 44px; height: 44px;
  border-color: var(--taupe);
  background: rgba(180, 113, 85, 0.08);
}
.cursor--ring.is-open {
  width: 96px; height: 96px;
  border-color: var(--taupe);
  background: rgba(180, 113, 85, 0.12);
  backdrop-filter: blur(2px);
}
.cursor--ring.is-open::before {
  content: 'OUVRIR';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-grotesque);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--taupe);
  text-transform: uppercase;
}
/* Dark-section variant */
.is-on-dark-cursor.cursor { background: var(--cream); }
.is-on-dark-cursor.cursor--ring { border-color: rgba(245, 239, 230, 0.45); }
.is-on-dark-cursor.cursor--ring.is-hover { border-color: var(--cream); background: rgba(245, 239, 230, 0.08); }
.is-on-dark-cursor.cursor--ring.is-open { border-color: var(--cream); background: rgba(245, 239, 230, 0.1); }
.is-on-dark-cursor.cursor--ring.is-open::before { color: var(--cream); }

/* ─── Reusable bits ─── */
.eyebrow {
  font-family: var(--font-grotesque);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--taupe);
}
.eyebrow--center { text-align: center; }
.eyebrow--cream { color: rgba(255, 248, 234, 0.82); }
.eyebrow__dot { color: var(--ink-muted); margin: 0 0.4em; }

.display-collision {
  font-family: var(--font-display);
  line-height: 0.9;
  letter-spacing: -0.02em;
}
.display-collision .line { display: block; }
.display-collision .line--italic {
  font-weight: 300;
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  color: var(--ink);
}
.display-collision .line--caps {
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  color: var(--ink);
  font-variation-settings: 'opsz' 144;
}
.display-collision .line.accent em {
  color: var(--coral-pop);
  font-style: italic;
}

/* Decorative outline circles */
.circle {
  position: absolute;
  border: 1.4px solid currentColor;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.28;
  z-index: 1;
  will-change: transform;
}
.circle--top-right {
  width: clamp(420px, 38vw, 580px);
  aspect-ratio: 1;
  top: -180px;
  right: -180px;
  color: var(--ink);
}
.circle--bottom-left {
  width: clamp(220px, 22vw, 360px);
  aspect-ratio: 1;
  bottom: -120px;
  left: -120px;
  color: var(--taupe);
  opacity: 0.4;
}
.circle--right {
  width: clamp(360px, 32vw, 520px);
  aspect-ratio: 1;
  top: 8vw;
  right: -180px;
  color: var(--taupe);
  opacity: 0.35;
}

/* ────────────────────────────────────────
   NAV
   ──────────────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 18px 40px;
  background: rgba(245, 239, 230, 0.72);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  border-bottom: 1px solid rgba(15, 14, 12, 0.06);
  transition: transform 0.5s var(--easing-snap), background 0.3s ease, color 0.3s ease;
}
.nav.is-hidden { transform: translateY(-100%); }
.nav.is-on-dark {
  background: rgba(10, 9, 8, 0.55);
  border-bottom-color: rgba(255, 248, 234, 0.08);
}
.nav.is-on-dark .nav__link,
.nav.is-on-dark .nav__logo { color: var(--cream); }
.nav.is-on-dark .nav__cta { background: var(--cream); color: var(--ink); }

.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.nav__group { display: flex; align-items: center; gap: 28px; }
.nav__group--right { justify-content: flex-end; }
.nav__link {
  font-family: var(--font-grotesque);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s ease;
}
.nav__link::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: var(--taupe);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--easing-snap);
}
.nav__link:hover { color: var(--taupe); }
.nav__link:hover::after { transform: scaleX(1); }
/* Logo "Elodie Da Silva" — stacked artistic Fraunces, italic + caps,
   widths matched via JS auto-fit (see script.js → fitLogos) */
.nav__logo {
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;          /* both children take the parent's width */
  color: var(--ink);
  white-space: nowrap;
  position: relative;
  line-height: 1;
  padding-block: 2px;
}
.nav__logo-elodie {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 30px;
  letter-spacing: -0.02em;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  color: var(--ink);
  line-height: 0.85;
  text-align: left;
}
.nav__logo-dasilva {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;        /* base value, JS will override to match width */
  text-transform: uppercase;
  color: var(--taupe);
  margin-top: 4px;
  font-variation-settings: 'opsz' 144;
  line-height: 1;
  display: flex;
  justify-content: space-between; /* spreads letters edge-to-edge inside parent width */
}
.nav__logo:hover .nav__logo-elodie { color: var(--taupe-deep); }
.nav__logo:hover .nav__logo-dasilva { color: var(--ink); }
.nav__logo-dot { color: var(--taupe); }
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-grotesque);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--ink);
  padding: 13px 18px 12px 20px;
  transition: background 0.25s ease, transform 0.25s var(--easing-snap);
}
.nav__cta-arrow {
  font-family: var(--font-display);
  font-size: 14px;
  transition: transform 0.25s var(--easing-snap);
}
.nav__cta:hover { background: var(--taupe-deep); transform: translateY(-1px); }
.nav__cta:hover .nav__cta-arrow { transform: translateX(4px); }

/* ────────────────────────────────────────
   HERO — full-bleed bg + parallax + cutout layering
   ──────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 105vh;
  padding: 140px 40px 120px;
  background: var(--cream);
  overflow: hidden;
  z-index: 2;
}

/* Background photo (Elodie on stage) full-bleed with heavy parallax */
.hero__bg {
  position: absolute;
  inset: -10% -5%;
  background-image: url('./elodie/elodie-stage-C7rUeUw8.jpg');
  background-size: cover;
  background-position: center 40%;
  filter: sepia(20%) saturate(85%) brightness(1.05) contrast(0.95);
  opacity: 0.18;
  will-change: transform;
  z-index: 0;
}
.hero__bg-grain {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(180, 113, 85, 0.18) 0%, transparent 35%),
    radial-gradient(circle at 80% 60%, rgba(255, 203, 46, 0.10) 0%, transparent 35%);
  mix-blend-mode: multiply;
  z-index: 1;
  pointer-events: none;
}
.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(245, 239, 230, 0.72) 0%,
    rgba(245, 239, 230, 0.86) 50%,
    var(--cream) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 700px at 30% 30%, rgba(180, 113, 85, 0.18), transparent 60%),
    radial-gradient(700px 700px at 80% 65%, rgba(255, 203, 46, 0.10), transparent 60%);
  transition: transform 0.5s ease-out;
  z-index: 1;
  will-change: transform;
}

.hero__inner {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  z-index: 3;
}

.hero__headline {
  font-size: clamp(72px, 12vw, 192px);
  text-align: center;
  margin: 28px auto 0;
  max-width: 1300px;
  position: relative;
  z-index: 3;
}
.hero__headline .line--italic { letter-spacing: -0.015em; }
.hero__headline .line--caps {
  font-size: clamp(80px, 14.5vw, 220px);
  margin: -0.08em 0;
  text-shadow: 0 4px 40px rgba(15, 14, 12, 0.06);
  letter-spacing: -0.035em;
}
.hero__headline .line.accent {
  font-size: clamp(56px, 9vw, 140px);
  margin-top: -0.05em;
}

.hero__subline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 880px;
  margin: 60px auto 0;
  font-size: 16px;
  color: var(--ink-muted);
  line-height: 1.65;
  position: relative;
  z-index: 3;
}
.subline__col { padding: 0 4px; }
.subline__rule {
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--taupe);
  vertical-align: middle;
  margin-right: 14px;
  transform: translateY(-3px);
}

.hero__visual {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: end;
  gap: 60px;
  margin-top: -120px;
}

.hero__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 540px;
  background: var(--cream-deep);
  z-index: 2;
  will-change: transform;
}
.hero__photo-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border: 1px solid var(--ink);
  overflow: hidden;
  box-shadow: 0 32px 80px -32px rgba(15, 14, 12, 0.4);
  transform-style: preserve-3d;
  transition: transform 0.4s ease-out;
}
.hero__photo-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease-out;
}
.hero__photo:hover .hero__photo-inner img { transform: scale(1.05); }
.hero__photo-frame {
  position: absolute;
  inset: 14px;
  border: 1px solid var(--taupe);
  pointer-events: none;
  opacity: 0.5;
  transition: inset 0.4s var(--easing-snap), border-color 0.4s ease;
  z-index: 1;
}
.hero__photo:hover .hero__photo-frame { inset: 8px; border-color: var(--ink); }
.hero__photo-tag {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(245, 239, 230, 0.95);
  padding: 10px 14px;
  font-family: var(--font-grotesque);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--ink);
  z-index: 2;
}
.hero__photo-script {
  font-family: var(--font-script);
  font-size: 18px;
  text-transform: none;
  letter-spacing: 0;
  color: var(--taupe);
  display: inline-block;
  margin-right: 8px;
  transform: translateY(-1px);
}

/* Rotating circular badge — Jenna Kutcher signature, parental version */
.rotating-badge {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  z-index: 5;
  pointer-events: none;
  animation: badgeSpin 22s linear infinite;
  background: var(--cream);
  border-radius: 50%;
  box-shadow: 0 12px 40px -12px rgba(15, 14, 12, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}
.rotating-badge__svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.rotating-badge__text {
  font-family: var(--font-grotesque);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  fill: var(--ink);
  text-transform: uppercase;
}
.rotating-badge__center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 22px;
  color: var(--solar);
  text-shadow: 0 0 20px rgba(255, 203, 46, 0.6);
}
@keyframes badgeSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* iPhone mockup */
.hero__phone {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: end;
  will-change: transform;
}
.phone {
  position: relative;
  width: 280px;
  height: 580px;
  border-radius: 44px;
  background: #1A1815;
  padding: 12px;
  box-shadow:
    0 50px 100px -30px rgba(15, 14, 12, 0.55),
    0 0 0 2px #2A2622,
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  transform: rotate(-9deg);
  animation: phoneFloat 7s ease-in-out infinite;
  transition: transform 0.6s var(--easing-snap);
}
.hero__phone:hover .phone {
  animation-play-state: paused;
  transform: rotate(-5deg) translateY(-12px) scale(1.04);
}
.phone__notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 22px;
  background: #1A1815;
  border-radius: 12px;
  z-index: 2;
}
.phone__screen {
  width: 100%;
  height: 100%;
  border-radius: 32px;
  background: var(--cream-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}
.app__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 38px 18px 14px;
  font-family: var(--font-grotesque);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid rgba(15, 14, 12, 0.08);
}
.app__back, .app__menu { color: var(--taupe); font-size: 13px; }
.app__title { font-size: 9px; }
.app__body {
  flex: 1;
  padding: 20px 18px 12px;
  display: flex;
  flex-direction: column;
}
.app__chip {
  font-family: var(--font-grotesque);
  font-size: 8px;
  letter-spacing: 0.16em;
  color: var(--taupe);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.app__question {
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1.25;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  color: var(--ink);
}
.app__question em { color: var(--taupe-deep); font-style: italic; }
.app__hint {
  font-size: 10px;
  color: var(--ink-muted);
  margin-bottom: 18px;
}
.app__answers { display: grid; gap: 8px; margin-bottom: 18px; }
.app__answer {
  text-align: left;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  padding: 10px 12px;
  background: var(--cream);
  border: 1px solid rgba(15, 14, 12, 0.1);
  color: var(--ink);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.app__answer:hover { background: var(--taupe-soft); border-color: var(--taupe); }
.app__progress {
  height: 3px;
  background: rgba(15, 14, 12, 0.08);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 6px;
}
.app__progress-bar {
  display: block;
  height: 100%;
  width: 0;
  background: var(--taupe);
  border-radius: 2px;
  animation: progressGrow 4s ease-in-out infinite alternate;
}
.app__progress-text {
  font-family: var(--font-grotesque);
  font-size: 8px;
  letter-spacing: 0.12em;
  color: var(--ink-muted);
  text-transform: uppercase;
}
.app__cta {
  font-family: var(--font-grotesque);
  font-size: 9px;
  letter-spacing: 0.16em;
  background: var(--ink);
  color: var(--cream);
  padding: 14px 12px;
  margin: 12px;
  font-weight: 600;
}
@keyframes phoneFloat {
  0%, 100% { transform: rotate(-9deg) translateY(0); }
  50% { transform: rotate(-7.5deg) translateY(-12px); }
}
@keyframes phoneFloatBack {
  0%, 100% { transform: rotate(8deg) translateY(0); }
  50% { transform: rotate(6deg) translateY(-8px); }
}

/* DUAL PHONE LAYOUT — Détective (front) + CBA (back, decalé) */
.hero__phones {
  position: relative;
  display: block;
  width: 100%;
  height: 620px;
  will-change: transform;
}
.hero__phones .hero__phone {
  position: absolute;
  display: flex;
  align-items: end;
  justify-content: center;
}
.hero__phone--back {
  top: 30px;
  left: 0;
  z-index: 1;
  transform: scale(0.86);
  transform-origin: top left;
}
.hero__phone--back .phone {
  transform: rotate(8deg);
  animation: phoneFloatBack 8s ease-in-out infinite;
  animation-delay: -1.2s;
  box-shadow:
    0 40px 80px -30px rgba(15, 14, 12, 0.4),
    0 0 0 2px #2A2622,
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.hero__phone--back:hover .phone {
  animation-play-state: paused;
  transform: rotate(5deg) translateY(-12px) scale(1.04);
}
.hero__phone--front {
  top: 0;
  right: 0;
  z-index: 2;
}

/* CBA-themed inner styling — warm + softer than Détective */
.phone--cba .phone__screen {
  background: linear-gradient(180deg, #F5E6D8 0%, var(--cream-soft) 60%);
}
.app__header--cba {
  border-bottom-color: rgba(180, 113, 85, 0.16);
}
.app__chip--cba {
  color: #B07252;
}
.app__question--cba {
  font-size: 16px;
  line-height: 1.3;
}
.app__question--cba em { color: #8C4F32; }

.cba__video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background:
    linear-gradient(135deg, rgba(180, 113, 85, 0.18), rgba(180, 113, 85, 0.32)),
    radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.5), transparent 55%),
    #C99481;
  border-radius: 6px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cba__play {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.92);
  color: #8C4F32;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 13px;
  padding-left: 3px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}
.cba__duration {
  position: absolute;
  bottom: 8px;
  right: 10px;
  font-family: var(--font-grotesque);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  padding: 3px 6px;
  border-radius: 3px;
}
.cba__lessons {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  display: grid;
  gap: 6px;
}
.cba__lesson {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 10px;
  color: var(--ink);
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(180, 113, 85, 0.15);
  border-radius: 4px;
}
.cba__lesson--done { color: var(--ink-muted); text-decoration: line-through; opacity: 0.7; }
.cba__lesson--active {
  background: rgba(180, 113, 85, 0.18);
  border-color: rgba(180, 113, 85, 0.35);
  color: #8C4F32;
  font-weight: 600;
}
.cba__check {
  width: 12px;
  height: 12px;
  display: grid;
  place-items: center;
  background: #8C4F32;
  color: #fff;
  border-radius: 50%;
  font-size: 8px;
}
.cba__dot {
  width: 8px;
  height: 8px;
  background: rgba(180, 113, 85, 0.35);
  border-radius: 50%;
}
.cba__lesson--active .cba__dot { background: #8C4F32; }
.app__cta--cba { background: #8C4F32; }
.hero__phone-script--cba {
  top: auto;
  bottom: -22px;
  right: auto;
  left: -10px;
  transform: rotate(-6deg);
  color: #B07252;
  font-size: 20px;
}
@keyframes progressGrow {
  0% { width: 18%; }
  100% { width: 32%; }
}

.hero__phone-script {
  position: absolute;
  top: -8px;
  right: -8px;
  font-family: var(--font-script);
  font-size: 22px;
  color: var(--taupe);
  transform: rotate(-4deg);
  pointer-events: none;
}

/* PRESS BAR */
.press-bar {
  position: relative;
  max-width: var(--max-width);
  margin: 100px auto 0;
  padding: 22px 0;
  border-top: 1px solid rgba(15, 14, 12, 0.18);
  border-bottom: 1px solid rgba(15, 14, 12, 0.18);
  display: flex;
  align-items: center;
  gap: 48px;
  z-index: 3;
}
.press-bar__label {
  font-family: var(--font-grotesque);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  color: var(--ink-muted);
  text-transform: uppercase;
  flex-shrink: 0;
}
.press-bar__logos {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-around;
  gap: 32px;
}
.press-logo {
  color: var(--ink);
  font-weight: 600;
  letter-spacing: 0.04em;
  opacity: 0.78;
  filter: grayscale(1);
  transition: opacity 0.2s ease;
}
.press-logo:hover { opacity: 1; }
.press-logo--francetv { font-family: var(--font-grotesque); font-size: 16px; font-weight: 700; letter-spacing: -0.01em; }
.press-logo--marie { font-family: var(--font-display); font-size: 19px; font-style: italic; font-weight: 400; }
.press-logo--parents { font-family: var(--font-display); font-size: 18px; font-weight: 800; letter-spacing: 0.04em; }
.press-logo--figaro { font-family: var(--font-display); font-size: 17px; font-style: italic; font-weight: 500; }
.press-logo--elle { font-family: var(--font-display); font-size: 21px; font-weight: 700; letter-spacing: 0.18em; }

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-grotesque);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  color: var(--ink-muted);
  text-transform: uppercase;
  z-index: 3;
}
.scroll-indicator__arrow {
  font-size: 18px;
  animation: arrowBounce 2s ease-in-out infinite;
}
@keyframes arrowBounce {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50% { transform: translateY(8px); opacity: 1; }
}

/* ────────────────────────────────────────
   POUR TROUVER (program selector)
   ──────────────────────────────────────── */
.trouver {
  position: relative;
  padding: var(--space-section) 40px;
  background: var(--cream);
  z-index: 2;
  overflow: hidden;
}
.trouver__intro {
  position: relative;
  max-width: 1100px;
  margin: 0 auto 96px;
  text-align: center;
  z-index: 2;
}
.trouver__title {
  font-size: clamp(72px, 12vw, 200px);
  margin: 16px auto 24px;
  letter-spacing: -0.025em;
}
.trouver__title .line--caps { font-size: clamp(96px, 15vw, 240px); }
.trouver__sub {
  max-width: 620px;
  margin: 0 auto;
  color: var(--ink-muted);
  font-size: 16px;
}

.programs {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  border-top: 1px solid rgba(15, 14, 12, 0.18);
  z-index: 2;
}
.program {
  position: relative;
  border-bottom: 1px solid rgba(15, 14, 12, 0.18);
  cursor: none;
  overflow: hidden;
  transition: background 0.5s ease;
  /* Scroll-driven focal animation — values driven by JS in real time */
  --focal-scale: 1;
  --focal-x: 0px;
  --focal-opacity: 1;
}
.program:hover { background: rgba(180, 113, 85, 0.04); }

.program__bg-number {
  position: absolute;
  left: -2vw;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(220px, 30vw, 460px);
  line-height: 0.82;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(15, 14, 12, 0.2);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
  transition: -webkit-text-stroke-color 0.5s ease;
}
.program:hover .program__bg-number { -webkit-text-stroke-color: rgba(180, 113, 85, 0.6); }
.program--open .program__bg-number {
  -webkit-text-stroke-color: rgba(180, 113, 85, 0.7);
}

.program__content {
  position: relative;
  display: grid;
  grid-template-columns: 60px 1fr 180px 140px;
  align-items: center;
  gap: 32px;
  padding: 44px 40px 44px 80px;
  z-index: 1;
  /* Combined transforms: focal animation (driven by JS) + hover snap.
     scale around the left edge so it doesn't push siblings around. */
  transform: translateX(var(--focal-x)) scale(var(--focal-scale));
  transform-origin: left center;
  opacity: var(--focal-opacity);
  transition: opacity 0.4s ease;
}
.program:hover .program__content {
  transform: translateX(calc(var(--focal-x) + 12px)) scale(var(--focal-scale));
}
.program__num {
  font-family: var(--font-grotesque);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--taupe);
}
.program__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 60px);
  font-weight: 300;
  font-style: italic;
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.05;
  transition: color 0.4s ease;
}
.program:hover .program__title { color: var(--taupe-deep); }
.program--open .program__title { color: var(--taupe-deep); }
.program--open .program__title em { color: var(--coral-pop); }

/* Focal state — the row currently centered in the viewport */
.program--focal .program__title { color: var(--taupe-deep); }
.program--focal .program__title em { color: var(--coral-pop); }
.program--focal .program__bg-number { -webkit-text-stroke-color: rgba(180, 113, 85, 0.55); }
.program--focal .program__cta { color: var(--taupe); }
.program--focal .program__cta span { transform: translateX(8px); }

.program__age {
  font-family: var(--font-grotesque);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--ink-muted);
}
.program__cta {
  font-family: var(--font-grotesque);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--ink);
  text-align: right;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding: 8px 0;
  transition: color 0.25s ease;
}
.program__cta span {
  font-family: var(--font-display);
  font-size: 14px;
  transition: transform 0.25s var(--easing-snap);
}
.program:hover .program__cta { color: var(--taupe); }
.program:hover .program__cta span { transform: translateX(8px); }

.program__detail {
  position: relative;
  max-height: 0;
  overflow: hidden;
  padding: 0 40px 0 80px;
  z-index: 1;
  transition: max-height 0.6s var(--easing-snap), padding 0.6s var(--easing-snap);
}
.program--open .program__detail {
  max-height: 280px;
  padding: 0 40px 38px 80px;
}
.program__detail p {
  max-width: 620px;
  font-size: 15px;
  color: var(--ink-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px 11px 18px;
  margin-right: 10px;
  font-family: var(--font-grotesque);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--cream);
  background: var(--ink);
  text-transform: uppercase;
  transition: background 0.25s ease, transform 0.25s var(--easing-snap);
}
.pill__arrow {
  font-family: var(--font-display);
  font-size: 13px;
  transition: transform 0.25s var(--easing-snap);
}
.pill:hover { background: var(--taupe); }
.pill:hover .pill__arrow { transform: translateX(5px); }

.trouver__outro {
  position: relative;
  font-family: var(--font-grotesque);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink-muted);
  text-align: center;
  margin-top: 64px;
  text-transform: uppercase;
  z-index: 2;
}
.trouver__outro a {
  color: var(--ink);
  border-bottom: 1px solid var(--taupe);
  padding-bottom: 2px;
}

/* ────────────────────────────────────────
   SLIDE PROGRAMS — pinned horizontal scroll
   ──────────────────────────────────────── */
.slide-programs {
  position: relative;
  height: 500vh; /* 5 slides × 100vh of vertical scroll */
  background: var(--cream);
}
.slide-programs__pin {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.slide-programs__track {
  display: flex;
  height: 100%;
  width: 500vw;
  will-change: transform;
}
.slide-program {
  position: relative;
  flex: 0 0 100vw;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 0;
  overflow: hidden;
  background: var(--bg, #E8C5BA);
  color: var(--bg-ink, #4A2418);
}
/* Soft radial wash to give depth to flat color */
.slide-program::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 28%, rgba(255, 255, 255, 0.18), transparent 55%),
    radial-gradient(circle at 12% 88%, var(--bg-deep, rgba(0,0,0,0.12)), transparent 60%);
  mix-blend-mode: soft-light;
  pointer-events: none;
  z-index: 1;
}
/* Outline mega-letter, evolving per slide for visual rhythm */
.slide-program::after {
  content: attr(data-letter);
  position: absolute;
  right: -4vw;
  bottom: -10vh;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(420px, 56vw, 880px);
  line-height: 0.78;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1.4px var(--bg-deep, rgba(0,0,0,0.18));
  pointer-events: none;
  z-index: 1;
  user-select: none;
  opacity: 0.55;
}

.slide-program__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1480px;
  height: 100%;
  margin: 0 auto;
  padding: 110px clamp(48px, 7vw, 120px) 140px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 110px);
  align-items: center;
  transform-origin: center center;
  will-change: transform, opacity, filter;
}
.slide-program__text {
  position: relative;
  z-index: 2;
  max-width: 560px;
}
.slide-program__eyebrow {
  font-family: var(--font-grotesque);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bg-ink, var(--ink));
  opacity: 0.7;
  margin-bottom: 28px;
}
.slide-program__title {
  font-size: clamp(56px, 6.6vw, 116px);
  line-height: 0.92;
  margin: 0 0 32px;
  color: var(--bg-ink, var(--ink));
}
.slide-program__title .line--italic {
  display: inline-block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  letter-spacing: -0.015em;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
}
.slide-program__title .line--caps {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  margin-left: 0.15em;
}
.slide-program__body {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.65;
  color: var(--bg-ink, var(--ink));
  opacity: 0.78;
  max-width: 460px;
  margin: 0 0 36px;
}
.slide-program__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.slide-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-grotesque);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bg-ink, var(--ink));
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--bg-deep, rgba(0,0,0,0.18));
  padding: 16px 22px 16px 24px;
  border-radius: 999px;
  transition:
    background 0.35s ease,
    color 0.35s ease,
    transform 0.35s var(--easing-snap),
    border-color 0.35s ease;
  text-decoration: none;
}
.slide-pill:hover {
  background: var(--bg-ink, var(--ink));
  color: var(--bg, #fff);
  border-color: var(--bg-ink, var(--ink));
  transform: translateY(-2px);
}
.slide-pill__arrow {
  font-family: var(--font-display);
  font-size: 14px;
  transition: transform 0.35s var(--easing-snap);
}
.slide-pill:hover .slide-pill__arrow {
  transform: translateX(6px);
}

/* PHOTO column — cutout-friendly, dramatic scale */
.slide-program__photo {
  position: relative;
  z-index: 2;
  margin: 0;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
}
.slide-photo {
  position: relative;
  width: 100%;
  max-width: 540px;
  aspect-ratio: 4 / 5;
  background-color: var(--bg-deep, rgba(0,0,0,0.18));
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  border-radius: 50% 50% 16px 16px / 56% 56% 16px 16px;
  /* If using cutout PNGs (transparent), set background-blend-mode to none */
  filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.18));
}
/* Per-slide cutout photos (transparent PNGs) */
.slide-photo {
  background-color: transparent;
  background-size: contain;
  background-position: bottom center;
  border-radius: 0;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.18));
}
.slide-photo--01 { background-image: url('elodie/slide-photo--01.png'); }
.slide-photo--02 { background-image: url('elodie/slide-photo--02.png'); }
.slide-photo--03 { background-image: url('elodie/slide-photo--03.png'); }
.slide-photo--04 { background-image: url('elodie/slide-photo--04.png'); }
.slide-photo--05 { background-image: url('elodie/slide-photo--05.png'); }

/* DOTS indicator (replaces old progress bar visually but bar is kept for fine-grained scroll feedback) */
.slide-programs__dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  gap: 8px;
  padding: 8px;
  background: rgba(245, 240, 232, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 999px;
  border: 1px solid rgba(15, 14, 12, 0.08);
}
.slide-dot {
  appearance: none;
  border: none;
  background: transparent;
  font-family: var(--font-grotesque);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--ink);
  opacity: 0.45;
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, opacity 0.3s ease;
  white-space: nowrap;
}
.slide-dot:hover { opacity: 0.85; }
.slide-dot.is-active {
  background: var(--ink);
  color: var(--cream);
  opacity: 1;
}

/* Responsive: stack on small screens */
@media (max-width: 900px) {
  .slide-program__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 90px 28px 130px;
    align-content: center;
  }
  .slide-program__photo { order: -1; height: auto; }
  .slide-photo { max-width: 280px; }
  .slide-programs__dots { gap: 4px; padding: 6px; }
  .slide-dot { font-size: 9px; padding: 8px 10px; letter-spacing: 0.12em; }
}

/* Progress indicator at bottom */
.slide-programs__progress {
  position: absolute;
  bottom: 56px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: var(--font-grotesque);
}
.slide-programs__count {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink);
  font-weight: 600;
  min-width: 56px;
}
#slideCurrent { color: var(--taupe); }
.slide-programs__sep { color: rgba(15, 14, 12, 0.35); }
.slide-programs__bar {
  width: 240px;
  height: 1px;
  background: rgba(15, 14, 12, 0.18);
  position: relative;
}
.slide-programs__bar-fill {
  position: absolute;
  inset: 0 auto 0 0;
  background: var(--taupe);
  width: 0%;
  transition: width 0.2s ease;
}
.slide-programs__hint {
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--ink-muted);
  text-transform: uppercase;
}

/* ────────────────────────────────────────
   ATELIERS / FORMATIONS EN PRÉSENTIEL
   ──────────────────────────────────────── */
.ateliers {
  position: relative;
  padding: var(--space-section) 40px;
  background: var(--cream);
  overflow: hidden;
  z-index: 2;
}
.ateliers__inner {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  z-index: 2;
}
.ateliers__title {
  text-align: center;
  font-size: clamp(56px, 9vw, 144px);
  margin: 16px auto 32px;
}
.ateliers__title .line--caps {
  font-size: clamp(72px, 12vw, 184px);
  margin: -0.04em 0;
}
.ateliers__sub {
  max-width: 680px;
  margin: 0 auto 80px;
  text-align: center;
  color: var(--ink-muted);
  font-size: 17px;
  line-height: 1.6;
}
.ateliers__sub strong {
  color: var(--ink);
  font-weight: 600;
}
.ateliers__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: start;
}
.ateliers__dates {
  border-top: 1px solid rgba(15, 14, 12, 0.18);
}
.atelier-date {
  display: grid;
  grid-template-columns: 60px 1fr 180px 140px;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(15, 14, 12, 0.18);
  cursor: none;
  transition: padding-left 0.4s var(--easing-snap), background 0.4s ease;
}
.atelier-date:hover {
  padding-left: 16px;
  background: rgba(180, 113, 85, 0.04);
}
.atelier-date__num {
  font-family: var(--font-grotesque);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--taupe);
  font-weight: 600;
}
.atelier-date__city {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 36px);
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}
.atelier-date:hover .atelier-date__city { color: var(--taupe-deep); }
.atelier-date__when {
  font-family: var(--font-grotesque);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.atelier-date__status {
  font-family: var(--font-grotesque);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--taupe);
  text-align: right;
  border-left: 1px solid rgba(15, 14, 12, 0.12);
  padding-left: 16px;
}
.atelier-date--more .atelier-date__num {
  color: var(--coral-pop);
  font-size: 22px;
  font-family: var(--font-display);
  letter-spacing: 0;
}
.atelier-date--more .atelier-date__status { color: var(--coral-pop); }

/* Waitlist form */
.waitlist {
  background: var(--ink);
  color: var(--cream);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.waitlist::before {
  content: '';
  position: absolute;
  inset: -50% -10%;
  background: radial-gradient(circle at 30% 30%, rgba(180, 113, 85, 0.4) 0%, transparent 50%);
  pointer-events: none;
}
.waitlist > * { position: relative; z-index: 1; }
.waitlist__label {
  font-family: var(--font-grotesque);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--taupe-soft);
  margin-bottom: 16px;
}
.waitlist__intro {
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.5;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 28px;
}
.waitlist__intro em { color: var(--coral-pop); font-style: italic; }
.waitlist__row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.waitlist__input {
  font-family: var(--font-body);
  font-size: 14px;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(245, 239, 230, 0.3);
  color: var(--cream);
  padding: 14px 0;
  outline: none;
  transition: border-color 0.25s ease;
}
.waitlist__input::placeholder {
  color: rgba(245, 239, 230, 0.45);
  font-style: italic;
}
.waitlist__input:focus { border-bottom-color: var(--taupe); }
.waitlist__btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-grotesque);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  background: var(--cream);
  color: var(--ink);
  padding: 16px 22px 16px 24px;
  margin-top: 12px;
  cursor: none;
  transition: background 0.25s ease, transform 0.25s var(--easing-snap);
}
.waitlist__btn span {
  font-family: var(--font-display);
  font-size: 16px;
  margin-left: 14px;
  transition: transform 0.25s var(--easing-snap);
}
.waitlist__btn:hover {
  background: var(--taupe);
  color: var(--cream);
  transform: translateY(-2px);
}
.waitlist__btn:hover span { transform: translateX(5px); }
.waitlist__legal {
  font-family: var(--font-grotesque);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 239, 230, 0.45);
  margin-top: 16px;
}

/* ────────────────────────────────────────
   REAL TALK (NEW — Jasmine-style black curved band with reels)
   ──────────────────────────────────────── */
.realtalk {
  position: relative;
  background: var(--midnight);
  color: var(--cream);
  padding: 220px 40px 240px;   /* extra bottom space — Spectacle overlaps INTO this area */
  margin-top: -80px;
  margin-bottom: 0;            /* no cream gap */
  overflow: hidden;
  z-index: 2;                  /* below Spectacle so its rounded dome is visible on top */
  border-top-left-radius: 50% 180px;
  border-top-right-radius: 50% 180px;
  /* No bottom radius — section goes edge-to-edge full width at the bottom */
}
.realtalk__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
  opacity: 0.06;
  mix-blend-mode: overlay;
}
.realtalk__glow {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1100px; height: 800px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(180, 113, 85, 0.18) 0%, transparent 60%);
  z-index: 0;
  will-change: transform;
}
.realtalk__inner {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  z-index: 2;
}
.realtalk__headline {
  text-align: center;
  font-size: clamp(36px, 5.6vw, 88px);
  max-width: 1200px;
  margin: 0 auto 96px;
  line-height: 1.05;
  color: var(--cream);
}
.realtalk__headline .line { display: inline; }
.realtalk__headline .line--italic {
  color: var(--cream);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(40px, 6vw, 96px);
}
.realtalk__headline .line--caps {
  color: var(--cream);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  font-size: clamp(48px, 7vw, 116px);
  display: inline;
}

.reels {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  max-width: 1280px;
  margin: 0 auto 80px;
}
.reel {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 6px;
  overflow: hidden;
  background: #1A1815;
  cursor: none;
  transition: transform 0.5s var(--easing-snap);
  will-change: transform;
}
.reel:hover { transform: scale(1.04); z-index: 5; }
.reel--featured { transform: scale(1.04); box-shadow: 0 30px 70px -20px rgba(180, 113, 85, 0.4); }
.reel--featured:hover { transform: scale(1.08); }

.reel__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.04) saturate(1.05);
  transition: filter 0.5s ease, transform 0.6s var(--easing-snap);
  z-index: 1;
}
.reel:hover .reel__video {
  filter: contrast(1.08) saturate(1.15) brightness(1.05);
}
.reel__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(15, 14, 12, 0) 0%, rgba(15, 14, 12, 0) 55%, rgba(15, 14, 12, 0.55) 100%),
    radial-gradient(ellipse at 50% 65%, transparent 30%, rgba(15, 14, 12, 0.18) 100%);
  transition: background 0.4s ease;
}

.reel__media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: contrast(1.05);
}
/* Reel mock thumbnails using brand-tinted radial gradients */
.reel__media--1 { background:
  linear-gradient(180deg, rgba(15, 14, 12, 0.05), rgba(15, 14, 12, 0.55)),
  radial-gradient(ellipse at 50% 35%, #F0D5C2 0%, #C18968 50%, #6B3D2A 90%);
}
.reel__media--2 { background:
  linear-gradient(180deg, rgba(15, 14, 12, 0.1), rgba(15, 14, 12, 0.6)),
  radial-gradient(ellipse at 35% 40%, #FFE5D2 0%, #D9A088 55%, #5A3022 95%);
}
.reel__media--3 { background:
  linear-gradient(180deg, rgba(180, 113, 85, 0.1), rgba(15, 14, 12, 0.5)),
  radial-gradient(ellipse at 60% 30%, #F5C9B5 0%, #B47155 55%, #4A2D27 95%);
}
.reel__media--4 { background:
  linear-gradient(180deg, rgba(15, 14, 12, 0.08), rgba(15, 14, 12, 0.6)),
  radial-gradient(ellipse at 45% 38%, #E8D0B8 0%, #B68868 55%, #5C3522 95%);
}
.reel__media--5 { background:
  linear-gradient(180deg, rgba(180, 113, 85, 0.12), rgba(15, 14, 12, 0.5)),
  radial-gradient(ellipse at 50% 32%, #FFCEB0 0%, #C9805F 55%, #5C2E1A 95%);
}
/* Add a subtle frame silhouette overlay to make reels feel like real video stills */
.reel__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 40% at 50% 60%, transparent 30%, rgba(15, 14, 12, 0.4) 100%);
  pointer-events: none;
}
.reel::before {
  content: '▶';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  width: 56px; height: 56px;
  background: rgba(245, 239, 230, 0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-size: 14px;
  padding-left: 4px;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.4s var(--easing-snap);
  z-index: 4;
}
.reel:hover::before { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.reel__caption, .reel__time, .reel__badge { z-index: 3; }

.reel__caption {
  position: absolute;
  bottom: 16px;
  left: 12px;
  right: 12px;
  background: var(--cream);
  color: var(--ink);
  padding: 6px 10px;
  font-family: var(--font-grotesque);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
  line-height: 1.3;
  z-index: 2;
}
.reel__caption em { color: var(--taupe-deep); font-style: italic; font-family: var(--font-display); font-weight: 400; }
.reel__time {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(15, 14, 12, 0.7);
  color: var(--cream);
  padding: 3px 6px;
  font-family: var(--font-grotesque);
  font-size: 9px;
  letter-spacing: 0.08em;
  border-radius: 3px;
  z-index: 2;
}
.reel__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--taupe);
  color: var(--cream);
  padding: 4px 8px;
  font-family: var(--font-grotesque);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  border-radius: 2px;
  z-index: 2;
}

/* HUGE OUTLINE WORDMARK (Jasmine signature) */
.realtalk__wordmark {
  position: relative;
  text-align: center;
  margin-top: 60px;
  padding-bottom: 60px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(120px, 26vw, 420px);
  line-height: 0.85;
  letter-spacing: -0.045em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(245, 239, 230, 0.32);
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  z-index: 1;
  will-change: transform;
}
.realtalk__wordmark em { color: var(--taupe); -webkit-text-stroke: 1.5px var(--taupe); font-style: italic; }

/* ────────────────────────────────────────
   SPECTACLE — dark band with curved top + animated text swap + parallax photo
   ──────────────────────────────────────── */
.spectacle {
  position: relative;
  background: var(--midnight);
  padding: 200px 40px 0;
  margin-top: -260px;      /* overlaps UP into RealTalk's bottom — its rounded dome is visible against RealTalk */
  color: var(--cream);
  overflow: hidden;
  z-index: 3;              /* ABOVE RealTalk — the dome shape sits visually on top */
  /* Rounded dome top — visible because the section's photo background gives it
     a subtly different tone vs. RealTalk's pure midnight */
  border-top-left-radius: 50% 180px;
  border-top-right-radius: 50% 180px;
}
.spectacle__bg {
  position: absolute;
  inset: -10%;
  background-image: url('./elodie/spectacle-JTbWwSsU.jpg');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.55;
  filter: sepia(30%) saturate(160%) brightness(0.82) contrast(1.08);
  will-change: transform;
  animation: spectacleZoom 18s ease-in-out infinite alternate;
}
@keyframes spectacleZoom {
  from { transform: scale(1.04); }
  to { transform: scale(1.14); }
}
.spectacle__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 600px at 50% 20%, rgba(180, 113, 85, 0.22), transparent 60%),
    linear-gradient(180deg, rgba(10, 9, 8, 0.55) 0%, rgba(10, 9, 8, 0.5) 50%, rgba(10, 9, 8, 0.85) 100%);
}
.spectacle__inner {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
  z-index: 2;
  padding-bottom: 80px;
}
.spectacle__headline {
  font-size: clamp(56px, 8.5vw, 144px);
  margin: 28px auto 32px;
  max-width: 1280px;
  padding: 0 60px;
  color: var(--cream);
}
.spectacle__headline .line--italic { color: var(--cream); }
.spectacle__headline .line--caps {
  color: var(--cream);
  font-size: clamp(80px, 13vw, 220px);
  margin: -0.05em 0;
  letter-spacing: -0.035em;
}
.line--swap {
  display: flex !important;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 0.98em;
  /* The swap word is constrained so even the longest word (ENCOURAGEANTE)
     fits the viewport with a comfortable margin */
  max-width: min(1280px, 92vw);
  margin: 0 auto;
  overflow: visible;
}
.swap {
  display: inline-block;
  background: linear-gradient(180deg, var(--cream) 0%, var(--taupe-soft) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: opacity 0.5s ease, transform 0.5s var(--easing-snap), filter 0.5s ease;
  /* Auto-fit very long words to the container */
  white-space: nowrap;
  font-size: inherit;
  /* For ultra-long words on smaller viewports */
  max-width: 100%;
}
.swap.is-out {
  opacity: 0;
  transform: translateY(-20px);
  filter: blur(8px);
}

.spectacle__sub {
  max-width: 640px;
  margin: 0 auto 80px;
  color: rgba(245, 239, 230, 0.72);
  font-size: 15px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 60px 0;
  border-top: 1px solid rgba(245, 239, 230, 0.14);
  border-bottom: 1px solid rgba(245, 239, 230, 0.14);
  margin-bottom: 64px;
}
.stat {
  position: relative;
  text-align: center;
  padding: 24px 16px;
  border-right: 1px solid rgba(245, 239, 230, 0.08);
  overflow: hidden;
}
.stat:last-child { border-right: none; }
.stat__bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(120px, 16vw, 240px);
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(180, 113, 85, 0.32);
  pointer-events: none;
  z-index: 0;
  line-height: 0.85;
  will-change: transform;
}
.stat__num {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(44px, 5.5vw, 72px);
  letter-spacing: -0.02em;
  color: var(--cream);
  display: block;
  margin-bottom: 12px;
  line-height: 1;
}
.stat__label {
  position: relative;
  z-index: 1;
  font-family: var(--font-grotesque);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  color: rgba(245, 239, 230, 0.6);
  text-transform: uppercase;
  display: block;
  max-width: 180px;
  margin: 0 auto;
  line-height: 1.5;
}
.spectacle__cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-grotesque);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--midnight);
  background: var(--cream);
  padding: 18px 24px 18px 28px;
  text-transform: uppercase;
  transition: background 0.25s ease, transform 0.25s var(--easing-snap);
}
.spectacle__cta:hover { background: var(--solar); transform: translateY(-2px); }
.spectacle__cta-arrow { font-family: var(--font-display); font-size: 16px; }

.marquee {
  position: relative;
  width: 100%;
  padding: 40px 0;
  border-top: 1px solid rgba(245, 239, 230, 0.12);
  overflow: hidden;
  z-index: 2;
}
.marquee__back {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  pointer-events: none;
  overflow: hidden;
}
.marquee__back-track {
  display: flex;
  white-space: nowrap;
  animation: marqueeBack 70s linear infinite;
}
.marquee__back-track span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(80px, 12vw, 180px);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: rgba(245, 239, 230, 0.06);
  padding-right: 80px;
}
.marquee__eyebrow {
  position: relative;
  text-align: center;
  font-family: var(--font-script);
  font-size: 24px;
  color: var(--taupe);
  margin-bottom: 8px;
  z-index: 2;
}
.marquee__front { position: relative; display: flex; align-items: center; z-index: 2; }
.marquee__front-track {
  display: flex;
  white-space: nowrap;
  animation: marqueeFront 50s linear infinite;
  gap: 60px;
}
.marquee__front-track:hover { animation-play-state: paused; }
.marquee-logo {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  font-weight: 400;
  color: var(--cream);
  opacity: 0.78;
  letter-spacing: 0.02em;
  transition: opacity 0.25s ease, color 0.25s ease;
}
.marquee-logo:nth-child(2n) {
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 24px;
  text-transform: uppercase;
}
.marquee-logo:hover { opacity: 1; color: var(--solar); }
@keyframes marqueeBack { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes marqueeFront { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ────────────────────────────────────────
   PAROLES DE PARENTS — testimonials with photo collage
   ──────────────────────────────────────── */
.paroles {
  position: relative;
  padding: var(--space-section) 40px;
  background: var(--cream);
  overflow: hidden;
  z-index: 2;
}
.paroles__inner { max-width: 1300px; margin: 0 auto; }
.paroles__title {
  text-align: center;
  font-size: clamp(64px, 10vw, 168px);
  margin: 16px auto 80px;
}
.paroles__title .line--caps { font-size: clamp(80px, 13vw, 200px); }

.testimonials { position: relative; min-height: 480px; }
.quote-glyph {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(180px, 22vw, 360px);
  line-height: 0.7;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--taupe);
  pointer-events: none;
  user-select: none;
  z-index: 0;
  will-change: transform;
}
.quote-glyph--open { top: -40px; left: -16px; }
.quote-glyph--close { bottom: -40px; right: -16px; transform: rotate(180deg); }

.testimonials__layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 80px;
  align-items: center;
  z-index: 1;
}

.testimonials__collage {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 460px;
}
.testi-photo { position: absolute; will-change: transform; }
.testi-photo__inner {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
.testi-photo--big {
  inset: 0 30% 0 0;
  border: 1px solid var(--ink);
  box-shadow: 0 24px 60px -20px rgba(15, 14, 12, 0.35);
}
.testi-photo--small {
  bottom: 0;
  right: 0;
  width: 60%;
  aspect-ratio: 1;
  border: 1px solid var(--ink);
  background: var(--cream-deep);
  box-shadow: 0 24px 60px -20px rgba(180, 113, 85, 0.4);
  z-index: 2;
}
/* Photo collage gradients (mock parent + child compositions, warm tones) */
.testi-photo__inner--1 {
  background-image:
    linear-gradient(135deg, rgba(245, 239, 230, 0.05) 0%, rgba(15, 14, 12, 0.25) 100%),
    url('./elodie/lead-magnet-DxlY6GCk.jpg');
  background-size: cover;
  background-position: center 25%;
}
.testi-photo__inner--2 {
  background-image:
    linear-gradient(135deg, rgba(180, 113, 85, 0.15), rgba(15, 14, 12, 0.4)),
    url('./elodie/lead-magnet-DxlY6GCk.jpg');
  background-size: cover;
  background-position: center 60%;
  filter: sepia(15%) saturate(115%);
}

.testimonials__text {
  position: relative;
  min-height: 380px;
}
.testimonial {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s var(--easing-snap);
  pointer-events: none;
}
.testimonial--active { opacity: 1; transform: translateY(0); pointer-events: auto; }
.testimonial__quote {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 32px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
  color: var(--ink);
}
.testimonial__quote em { color: var(--ink); }
.testimonial__author {
  font-family: var(--font-grotesque);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--ink);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.testimonial__context {
  font-family: var(--font-grotesque);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  color: var(--ink-muted);
  text-transform: uppercase;
}

.testimonials__nav {
  position: absolute;
  bottom: -60px;
  left: 0;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.testimonials__btn {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--taupe);
  width: 44px;
  height: 44px;
  border: 1px solid rgba(180, 113, 85, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, color 0.25s ease;
}
.testimonials__btn:hover { background: var(--taupe); color: var(--cream); }
.testimonials__count {
  font-family: var(--font-grotesque);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--ink-muted);
  min-width: 60px;
  text-align: center;
}
.testimonials__sep { color: rgba(15, 14, 12, 0.3); }

/* ────────────────────────────────────────
   FOOTER with MASSIVE outline wordmark
   ──────────────────────────────────────── */
.footer {
  position: relative;
  background: var(--cream-deep);
  padding: 100px 40px 0;
  overflow: hidden;
  z-index: 2;
}
.footer__cols {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(15, 14, 12, 0.12);
  z-index: 2;
}
.footer__brand {
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  margin-bottom: 24px;
  line-height: 1;
  width: fit-content;
}
.footer__brand-elodie {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 64px;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  line-height: 0.85;
  text-align: left;
}
.footer__brand-dasilva {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-top: 6px;
  font-variation-settings: 'opsz' 144;
  line-height: 1;
  display: flex;
  justify-content: space-between;
}
.footer__wordmark-sub {
  font-family: var(--font-grotesque);
  font-size: 0.06em;
  letter-spacing: 0.5em;
  font-weight: 700;
  vertical-align: middle;
  color: var(--taupe);
  -webkit-text-stroke: 0;
  margin-left: 0.2em;
  display: inline-block;
}
.footer__signature {
  font-family: var(--font-script);
  font-size: 22px;
  color: var(--ink-muted);
  line-height: 1.3;
}
.footer__col-title {
  font-family: var(--font-grotesque);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--ink);
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--taupe);
  display: inline-block;
}
.footer__link {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink-muted);
  margin-bottom: 10px;
  transition: color 0.25s ease, transform 0.25s var(--easing-snap);
}
.footer__link:hover { color: var(--taupe); transform: translateX(4px); }

/* MASSIVE wordmark — stacked artistic Fraunces, italic + caps staggered */
.footer__wordmark {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin: 80px 0 0;
  line-height: 0.78;
  z-index: 1;
  will-change: transform;
  user-select: none;
  pointer-events: none;
}
.footer__wordmark-elodie {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(160px, 24vw, 420px);
  line-height: 0.82;
  letter-spacing: -0.025em;
  color: transparent;
  -webkit-text-stroke: 1.4px rgba(15, 14, 12, 0.22);
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  text-align: left;
  padding-left: 6vw;
  white-space: nowrap;
}
.footer__wordmark-dasilva {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: clamp(54px, 7.6vw, 130px);
  line-height: 1;
  color: var(--taupe);
  text-align: right;
  padding-right: 6vw;
  margin-top: -0.02em;
  font-variation-settings: 'opsz' 144;
  white-space: nowrap;
}

.footer__bottom {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
  border-top: 1px solid rgba(15, 14, 12, 0.12);
  font-family: var(--font-grotesque);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  color: var(--ink-muted);
  text-transform: uppercase;
  z-index: 2;
}

/* ────────────────────────────────────────
   REVEAL ANIMATIONS
   ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.4s var(--easing-soft), transform 1.4s var(--easing-soft);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

[data-letter-reveal] .line {
  opacity: 0;
  transform: translateY(80px);
  filter: blur(18px);
  transition: opacity 1.2s var(--easing-soft), transform 1.2s var(--easing-soft), filter 1.2s var(--easing-soft);
}
[data-letter-reveal].in-view .line { opacity: 1; transform: translateY(0); filter: blur(0); }
[data-letter-reveal].in-view .line:nth-child(1) { transition-delay: 0.05s; }
[data-letter-reveal].in-view .line:nth-child(2) { transition-delay: 0.2s; }
[data-letter-reveal].in-view .line:nth-child(3) { transition-delay: 0.35s; }
[data-letter-reveal].in-view .line:nth-child(4) { transition-delay: 0.5s; }
[data-letter-reveal].in-view .line:nth-child(5) { transition-delay: 0.65s; }
[data-letter-reveal].in-view .line:nth-child(6) { transition-delay: 0.8s; }

/* ────────────────────────────────────────
   RESPONSIVE
   ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .nav { padding: 14px 24px; }
  .nav__group { gap: 18px; }
  .nav__link { font-size: 8.5px; }
  .nav__cta { padding: 11px 14px; font-size: 9px; }
  .hero { padding: 120px 24px 80px; }
  .hero__visual { grid-template-columns: 1fr; gap: 40px; }
  .hero__photo { max-width: 100%; }
  .hero__phone { transform: scale(0.9); }
  .hero__subline { grid-template-columns: 1fr; gap: 20px; }

  .program__content {
    grid-template-columns: 40px 1fr;
    gap: 16px;
    padding: 28px 24px 28px 56px;
  }
  .program__age, .program__cta { grid-column: 2; text-align: left; justify-content: flex-start; }
  .program__detail { padding: 0 24px 0 56px; }
  .program--open .program__detail { padding: 0 24px 28px 56px; }

  .reels { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .reel:nth-child(4), .reel:nth-child(5) { display: none; }

  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid rgba(245, 239, 230, 0.08); }
  .stat:nth-child(odd) { border-right: 1px solid rgba(245, 239, 230, 0.08); }

  .testimonials__layout { grid-template-columns: 1fr; gap: 40px; }
  .testimonials__collage { max-width: 320px; margin: 0 auto; }

  .footer__cols { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 640px) {
  .nav__inner { grid-template-columns: 1fr auto; }
  .nav__group--left, .nav__group--right li:not(:last-child) { display: none; }
  .nav__logo { font-size: 22px; }

  .display-collision { font-size: clamp(48px, 14vw, 96px) !important; }
  .display-collision .line--caps { font-size: clamp(56px, 17vw, 112px) !important; }

  .hero__phone { transform: scale(0.75) translateX(-20px); }
  .press-bar { flex-direction: column; gap: 16px; padding: 16px 0; }
  .press-bar__logos { flex-wrap: wrap; gap: 16px; justify-content: center; }

  .reels { grid-template-columns: repeat(2, 1fr); }
  .reel:nth-child(3), .reel:nth-child(4), .reel:nth-child(5) { display: none; }

  .program__title { font-size: 24px; }
  .program__bg-number { font-size: 200px; }

  .footer__cols { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
