/* ============================================================
   presentation-luxe.css — Split-Screen Narratif
   Gauche 40% épinglée (Playfair) · Droite 60% scroll (Apple)
   Spotlight GSAP : bloc actif 100%, reste 15%
   ============================================================ */

:root {
  --ss-serif: 'Playfair Display', Georgia, serif;
  --ss-system: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --ss-orange: #e07820;
  --ss-white: #ededed;
  --ss-muted: rgba(237, 237, 237, 0.44);
  --ss-bg: #0e0e0e;
}

/* ── SECTION ─────────────────────────────────────────────── */
.ss-section {
  background: var(--ss-bg);
  position: relative;
}

/* ── SPLIT WRAPPER ───────────────────────────────────────── */
.ss-wrap {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
}

/* ── GAUCHE : Titre épinglé ──────────────────────────────── */
.ss-left {
  width: 50%;
  flex-shrink: 0;
}

.ss-left__inner {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 2% 0 10%;
}

.ss-label {
  display: block;
  font-family: var(--ss-system);
  font-size: 0.70rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ss-orange);
  margin-bottom: 32px;
}

.ss-title {
  font-family: var(--ss-serif);
  font-size: clamp(3.2rem, 5.5vw, 5.4rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ss-white);
  margin-bottom: 32px;
}

.ss-subtitle {
  font-family: var(--ss-system);
  font-size: 1.0rem;
  line-height: 1.85;
  font-weight: 400;
  color: var(--ss-muted);
  max-width: 340px;
}

/* ── DROITE : Blocs qui scrollent ────────────────────────── */
.ss-right {
  width: 50%;
  padding: 0 10% 0 4%;
}

/* Chaque bloc : 80vh de hauteur → une idée à la fois */
.ss-block {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* Départ : estompé. GSAP gère le spotlight. */
  opacity: 0.15;
  transition: opacity 0.5s ease;
}

/* Numéro de série — fin, orange */
.ss-num {
  display: block;
  font-family: var(--ss-system);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  color: rgba(224, 120, 32, 0.60);
  margin-bottom: 20px;
}

/* Titre bloc — Apple System, bold, imposant */
.ss-block__title {
  font-family: var(--ss-system);
  font-size: clamp(1.5rem, 2.5vw, 2.0rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ss-white);
  margin-bottom: 20px;
  line-height: 1.15;
}

/* Texte — Apple System, aéré */
.ss-block__text {
  font-family: var(--ss-system);
  font-size: 1.05rem;
  line-height: 2.0;
  font-weight: 400;
  color: #E0E0E0;
  max-width: 480px;
}

/* Orange chirurgical */
.ss-accent {
  color: var(--ss-orange);
  font-style: normal;
  font-weight: 500;
}

/* Bloc actif (classe ajoutée par GSAP) */
.ss-block.is-active {
  opacity: 1;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .ss-wrap {
    flex-direction: column;
  }
  .ss-left {
    width: 100%;
  }
  .ss-left__inner {
    height: auto;
    padding: 120px 8% 80px;
  }
  .ss-right {
    width: 100%;
    padding: 0 8%;
  }
  .ss-block {
    min-height: auto;
    padding: 14vh 0;
    /* Pas de spotlight sur mobile : tout visible */
    opacity: 1 !important;
  }
  .ss-block + .ss-block {
    border-top: 1px solid rgba(237, 237, 237, 0.06);
  }
  .ss-subtitle {
    max-width: none;
  }
}

@media (max-width: 480px) {
  .ss-left__inner {
    padding: 90px 6% 60px;
  }
  .ss-title {
    font-size: 2.0rem;
  }
  .ss-block {
    padding: 10vh 0;
  }
  .ss-block__title {
    font-size: 1.3rem;
  }
}
