/* ============================================
   VERSION 1 — RIDEAU ROUGE — CSS COMPLET CORRIGÉ
   Palette: Burgundy #6B1A2A, Cream #F5EDD8, Gold #C9A84C, Deep #1A0A0E
============================================ */

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

:root {
  --burgundy: #6B1A2A;
  --burgundy-dark: #3D0E18;
  --burgundy-mid: #8B2A3E;
  --cream: #F5EDD8;
  --cream-dark: #E8D8B8;
  --gold: #C9A84C;
  --gold-light: #E8C86A;
  --deep: #1A0A0E;
  --text: #2C1810;
  --text-light: #6B5040;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
}

img {
  max-width: 100%;
}

/* ─────────────────────────────
   CURTAIN / SPLASHSCREEN
───────────────────────────── */

.curtain-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  overflow: hidden;
}

.curtain-left,
.curtain-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  background: linear-gradient(135deg, #4A0E1A 0%, #6B1A2A 42%, #8B2A3E 72%, #5A1520 100%);
  transition: transform 1.2s cubic-bezier(0.76, 0, 0.24, 1);
  z-index: 1;
}

.curtain-left { left: 0; }
.curtain-right { right: 0; }

.curtain-left::before,
.curtain-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 20px,
    rgba(0,0,0,0.08) 20px,
    rgba(0,0,0,0.08) 22px
  );
}

.curtain-left::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 34px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.36));
}

.curtain-right::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 34px;
  background: linear-gradient(-90deg, transparent, rgba(0,0,0,0.36));
}

.curtain-overlay.open .curtain-left { transform: translateX(-100%); }
.curtain-overlay.open .curtain-right { transform: translateX(100%); }
.curtain-overlay.hidden {
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s 1.4s;
}

.curtain-logo {
  position: relative;
  z-index: 20;
  text-align: center;
  color: var(--cream);
  transition: opacity 0.35s ease, transform 0.35s ease;
  width: min(92vw, 980px);
  padding: 0 1rem;
}

.curtain-subtitle {
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.curtain-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.curtain-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--cream-dark);
  margin-bottom: 2rem;
}

.curtain-btn {
  font-family: 'Raleway', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 1rem 2.7rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 18px rgba(201,168,76,0.25), inset 0 0 10px rgba(201,168,76,0.08);
  animation: curtainBtnGlow 2.6s ease-in-out infinite;
}

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

.curtain-logo > *{
    position:relative;
    z-index:25;
}

@keyframes curtainBtnGlow {
  0%,100% { box-shadow: 0 0 12px rgba(201,168,76,0.22), inset 0 0 8px rgba(201,168,76,0.08); }
  50% { box-shadow: 0 0 32px rgba(201,168,76,0.55), inset 0 0 16px rgba(201,168,76,0.2); }
}

/* ── MARQUEE SIGNS ── */

.marquee-signs {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100dvh;
  overflow: hidden;
  z-index: 2;
  pointer-events: none;
}

.marquee-sign {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .9rem 1.8rem;
  font-family: 'Raleway', sans-serif;
  font-size: clamp(1rem, 2.2vw, 1.8rem);
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  white-space: nowrap;
  color: #ffd36a;
  background: linear-gradient(180deg, rgba(65,12,20,.95), rgba(30,5,10,.96));
  border: 3px solid currentColor;
  border-radius: 18px;
  text-shadow:
    0 0 2px currentColor,
    0 0 8px currentColor,
    0 0 18px currentColor,
    1px 1px 3px rgba(0,0,0,.55);
  box-shadow:
    0 0 8px currentColor,
    0 0 20px rgba(255,190,80,.45),
    inset 0 0 12px rgba(255,255,255,.05),
    inset 0 -8px 12px rgba(0,0,0,.25);
  opacity: 0;
  animation:
    oneByOne 16s ease-in-out infinite,
    marqueeFloat 6s ease-in-out infinite,
    bulbsBlink 1.8s steps(2,end) infinite;
}

.marquee-sign::before {
  content: '';
  position: absolute;
  inset: -9px;
  border-radius: 22px;
  pointer-events: none;
  background:
    radial-gradient(circle,currentColor 0 2px,transparent 3px) top/18px 18px repeat-x,
    radial-gradient(circle,currentColor 0 2px,transparent 3px) bottom/18px 18px repeat-x,
    radial-gradient(circle,currentColor 0 2px,transparent 3px) left/18px 18px repeat-y,
    radial-gradient(circle,currentColor 0 2px,transparent 3px) right/18px 18px repeat-y;
  filter: drop-shadow(0 0 6px currentColor);
}

.sign-1 { top: 8%; left: 6%; --r: -8deg; color: #ff744f; animation-delay: 0s,0s,0s; }
.sign-2 { top: 9%; right: 7%; --r: 7deg; color: #ffd36a; animation-delay: 2s,.3s,.2s; }
.sign-3 { top: 58%; left: 5%; --r: -12deg; color: #ff6bd6; animation-delay: 4s,.8s,.4s; }
.sign-4 { bottom: 10%; left: 8%; --r: 8deg; color: #79ffe8; animation-delay: 6s,.5s,.1s; }
.sign-5 { top: 58%; right: 5%; --r: 10deg; color: #ffb347; animation-delay: 8s,1s,.3s; }
.sign-6 { top: 6%; left: 50%; --r: 0deg; color: #ff6961; animation-delay: 10s,.2s,.5s; }
.sign-7 { bottom: 5%; left: 50%; --r: 0deg; color: #ff8b62; animation-delay: 12s,.7s,.6s; }
.sign-8 { bottom: 10%; right: 8%; --r: -8deg; color: #d067ff; animation-delay: 14s,1.1s,.2s; }

@keyframes oneByOne {
  0%,8% { opacity: 0; transform: translateX(var(--tx, 0)) scale(.88) rotate(var(--r)); filter: brightness(.4); }
  12%,22% { opacity: 1; transform: translateX(var(--tx, 0)) scale(1.12) rotate(var(--r)); filter: brightness(1.35); }
  28%,100% { opacity: 0; transform: translateX(var(--tx, 0)) scale(.94) rotate(var(--r)); filter: brightness(.35); }
}

@keyframes marqueeFloat {
  0%,100% { translate: 0 0; }
  50% { translate: 10px -10px; }
}

@keyframes bulbsBlink {
  0%,100% {
    box-shadow:
      0 0 8px currentColor,
      0 0 22px currentColor,
      inset 0 0 12px rgba(255,255,255,.08),
      inset 0 -8px 12px rgba(0,0,0,.25);
  }
  50% {
    box-shadow:
      0 0 4px currentColor,
      0 0 10px currentColor,
      inset 0 0 8px rgba(255,255,255,.04),
      inset 0 -8px 12px rgba(0,0,0,.25);
  }
}

/* ─────────────────────────────
   NAVBAR
───────────────────────────── */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem 3rem;
  background: rgba(26,10,14,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,168,76,0.3);
  transform: translateY(-100%);
  transition: transform 0.5s ease;
}

.navbar.visible { transform: translateY(0); }

.nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--cream);
  white-space: nowrap;
}

.brand-l { color: var(--gold); font-style: italic; }

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-dark);
  text-decoration: none;
  transition: color 0.2s;
}

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

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 1.2rem;
  padding: 0.35rem 0.65rem;
  cursor: pointer;
}

/* ─────────────────────────────
   HERO
───────────────────────────── */

.hero {
  min-height: 100vh;
  width: 100%;
  background: linear-gradient(160deg, var(--burgundy-dark) 0%, var(--burgundy) 52%, var(--burgundy-mid) 100%);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 5.5rem 3rem 4rem;
}

.hero-bg-text {
  position: absolute;
  font-family: 'Playfair Display', serif;
  font-size: clamp(8rem, 25vw, 20rem);
  font-weight: 900;
  color: rgba(255,255,255,0.03);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: 0.1em;
}

.spotlight {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(201,168,76,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.spot1 { width: 600px; height: 600px; top: -100px; right: -100px; animation: spotFloat 8s ease-in-out infinite; }
.spot2 { width: 400px; height: 400px; bottom: 0; left: -100px; animation: spotFloat 10s ease-in-out infinite reverse; }

@keyframes spotFloat {
  0%,100% { transform: translate(0,0); }
  50% { transform: translate(30px,-20px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--cream);
  width: min(100%, 920px);
  max-width: 920px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(4rem, 10vw, 7.5rem);
  font-weight: 900;
  line-height: 0.9;
  margin-bottom: 1.2rem;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-subtitle {
  font-size: 1.18rem;
  line-height: 1.65;
  color: var(--cream-dark);
  max-width: 640px;
  margin: 0 auto 1.7rem;
  padding: 0 1rem;
  overflow-wrap: break-word;
}

.hero-news {
  width: min(760px, 100%);
  margin: 1.5rem auto 1.8rem;
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 1.4rem;
  align-items: center;
  padding: 1rem;
  background: rgba(245,237,216,0.08);
  border: 1px solid rgba(201,168,76,0.45);
  box-shadow: 0 0 30px rgba(201,168,76,0.12);
  backdrop-filter: blur(6px);
}

.hero-news-poster {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--deep);
}

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

.hero-news-text { text-align: left; }

.news-kicker {
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-news-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  color: var(--cream);
  margin: 0.25rem 0 0.6rem;
}

.hero-news-text p {
  font-size: 1rem;
  line-height: 1.55;
  color: var(--cream-dark);
  margin-bottom: 0.8rem;
}

.news-link {
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary,
.btn-ghost {
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.95rem 2.2rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--gold);
  color: var(--deep);
  font-weight: 700;
}

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

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245,237,216,0.4);
}

.btn-ghost:hover { border-color: var(--cream); }

/* ─────────────────────────────
   STATS
───────────────────────────── */

.stats-band {
  background: var(--deep);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 3rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.stat-item { text-align: center; }

.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,237,216,0.55);
  margin-top: 0.3rem;
  display: block;
}

.stat-divider {
  color: var(--gold);
  font-size: 0.8rem;
  opacity: 0.4;
  padding: 0 1.5rem;
}

/* ─────────────────────────────
   GLOBAL SECTIONS
───────────────────────────── */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--deep);
}

.title-ornament {
  color: var(--gold);
  margin-top: 1rem;
  letter-spacing: 0.5em;
}

/* ─────────────────────────────
   ABOUT
───────────────────────────── */

.about {
  padding-top: 6rem 0;
  padding-bottom:2.5rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.about-image-block {
  min-width: 0;
}

.image-frame {
  position: relative;
  background: var(--burgundy-dark);
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.image-frame .carousel-track-wrapper,
.image-frame .carousel-track,
.image-frame .carousel-slide {
  height: 100%;
}

.image-frame .carousel-track {
  padding: 0;
  gap: 0;
}

.image-frame .carousel-slide {
  flex: 0 0 100%;
  aspect-ratio: auto;
}

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

.image-frame.no-img::after {
  content: 'Photo de la troupe';
  display: grid;
  place-items: center;
  height: 100%;
  font-style: italic;
  color: rgba(245,237,216,0.35);
}

.frame-ornament {
  position: absolute;
  color: var(--gold);
  font-size: 1.2rem;
  z-index: 4;
}

.top-left { top: 8px; left: 8px; }
.top-right { top: 8px; right: 8px; }
.bottom-left { bottom: 8px; left: 8px; }
.bottom-right { bottom: 8px; right: 8px; }

.frame-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: rgba(26,10,14,0.55);
}

.frame-prev { left: 0.7rem; }
.frame-next { right: 0.7rem; }

.image-caption {
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  color: var(--text-light);
  letter-spacing: 0.1em;
  margin-top: 0.8rem;
  text-align: center;
}

.about-text .section-eyebrow,
.about-text .section-title { text-align: left; }

.about-text .section-title { margin-bottom: 1.5rem; }

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 1.2rem;
}

.about-text strong {
  color: var(--burgundy);
  font-weight: 600;
}

.about-lead {
  font-size: 1.25rem !important;
  font-weight: 600;
}

.about-quotes{
    display:grid;
    grid-template-columns:minmax(0,1.35fr) minmax(0,.9fr);
    gap:2rem;
    width:100%;
    margin-top:2.2rem;
    margin-bottom:0;
}

.about-quote {
  min-height: 180px;
  padding: 2rem 2.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(201,168,76,.045);
  border-left: 5px solid var(--gold);
}

.about-quote blockquote {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: clamp(1.55rem, 2.1vw, 2.35rem);
  line-height: 1.25;
  color: var(--burgundy);
  margin-bottom: 1rem;
}

.about-quote cite {
  font-family: "Raleway", sans-serif;
  font-size: .78rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* ─────────────────────────────
   SPECTACLES
───────────────────────────── */

.spectacles {
  padding: 4rem 0 6rem;
  background: linear-gradient(to bottom, var(--cream), var(--cream-dark));
}

.spectacles-timeline {
  display: grid;
  gap: 4rem;
}

.spectacle-card {
  display: block;
}

.spectacle-year {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--burgundy);
  line-height: 0.9;
  margin-bottom: 0.8rem;
  text-align: left;
}

.spectacle-content {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 2rem;
  background: white;
  padding: 2rem;
  box-shadow: 0 4px 30px rgba(107,26,42,0.08);
  border-top: 3px solid var(--burgundy);
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
}

.spectacle-card:hover .spectacle-content {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(107,26,42,0.15);
}

.spectacle-img-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--burgundy-dark);
}

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

.spectacle-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,10,14,0.86);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s;
  color: var(--cream);
  font-size: 0.9rem;
  line-height: 1.6;
  text-align: center;
}

.spectacle-img-wrap:hover .spectacle-overlay { opacity: 1; }

.spectacle-info {
  min-width: 0;
}

.spectacle-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
  color: var(--deep);
  margin-bottom: 0.35rem;
}

.spectacle-lieu {
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 1rem;
}

.spectacle-desc,
.spectacle-pitch {
  font-size: 1.08rem;
  line-height: 1.72;
  color: var(--text-light);
  margin-bottom: 1.2rem;
}

.spectacle-tag {
  display: inline-flex;
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light);
  border: 1px solid var(--cream-dark);
  padding: 0.35rem 0.8rem;
  margin-bottom: 1.5rem;
}

.upcoming-tag {
  background: var(--gold);
  color: var(--deep);
  border-color: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .7; } }

.spectacle-upcoming .spectacle-content { border-top-color: var(--gold); }

.show-carousel-title {
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin: 1.3rem 0 1rem;
}

/* ─────────────────────────────
   CAROUSELS
───────────────────────────── */

.auto-carousel {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.carousel-track-wrapper {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

.carousel-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.5s ease;
  will-change: transform;
  padding: 0;
}

.carousel-slide {
  flex: 0 0 min(360px, 100%);
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--burgundy-dark);
  cursor: zoom-in;
}

.spectacle-info .carousel-slide {
  flex-basis: min(300px, 100%);
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

.carousel-slide:hover img { transform: scale(1.05); }

.slide-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(26,10,14,0.85));
  color: var(--cream-dark);
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  font-style: italic;
  padding: 1.5rem 1rem 0.8rem;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.carousel-btn {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  width: 44px;
  height: 44px;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.2s;
}

.carousel-btn:hover { background: var(--gold); color: var(--deep); }
.carousel-btn:disabled { opacity: 0.25; cursor: not-allowed; }

.carousel-empty {
  width: 100%;
  min-height: 170px;
  display: grid;
  place-items: center;
  color: var(--text-light);
  font-family: 'Raleway', sans-serif;
  border: 1px dashed rgba(201,168,76,0.35);
  padding: 1rem;
  text-align: center;
}

/* ─────────────────────────────
   PRESIDENTE
───────────────────────────── */

.presidente {
  padding: 6rem 0;
  background: var(--cream);
}

.presidente-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3rem;
  align-items: center;
  background: white;
  padding: clamp(1.5rem, 4vw, 3rem);
  border-top: 3px solid var(--burgundy);
  box-shadow: 0 8px 35px rgba(107,26,42,0.08);
}

.presidente-portrait {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--burgundy-dark);
}

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

.presidente-portrait.no-img::after {
  content: 'Portrait de la présidente';
  height: 100%;
  display: grid;
  place-items: center;
  color: rgba(245,237,216,0.35);
  font-style: italic;
}

.presidente-text .section-eyebrow,
.presidente-text .section-title { text-align: left; }

.presidente-text .section-title { margin-bottom: 1.3rem; }

.presidente-lead {
  font-size: 1.25rem;
  line-height: 1.65;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.presidente-text p {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--text-light);
  margin-bottom: 1.2rem;
}

.presidente-text cite {
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--burgundy);
  text-transform: uppercase;
}

/* ─────────────────────────────
   PRESSE
───────────────────────────── */

.presse {
  padding: 6rem 0;
  background: var(--cream);
}

.presse-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.presse-card {
  padding: 2.5rem;
  border-top: 2px solid var(--burgundy);
  background: white;
  box-shadow: 0 2px 20px rgba(107,26,42,0.06);
  transition: transform 0.3s;
}

.presse-card:hover { transform: translateY(-4px); }

.presse-source {
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 1rem;
}

.presse-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--deep);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.presse-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-light);
}

.presse-carousel-block {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(107,26,42,0.16);
}

.mini-section-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.mini-section-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  color: var(--deep);
  line-height: 1.1;
}

.presse-carousel .carousel-slide {
  flex-basis: min(420px, 78vw);
  aspect-ratio: 3 / 4;
  background: var(--cream-dark);
  box-shadow: 0 10px 35px rgba(107,26,42,0.12);
}

/* ─────────────────────────────
   CONTACT / FOOTER
───────────────────────────── */

.contact {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--burgundy-dark), var(--burgundy));
}

.contact-inner { text-align: center; color: var(--cream); }
.contact .section-eyebrow { color: var(--gold); }
.contact .section-title { color: var(--cream); margin-bottom: 1rem; }

.contact-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--cream-dark);
  margin: 0 auto 3rem;
  max-width: 560px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  padding: 2rem 1rem;
  border: 1px solid rgba(201,168,76,0.3);
  text-align: center;
}

.contact-icon { font-size: 1.5rem; }
.contact-item strong { color: var(--gold); display: block; margin-bottom: 0.3rem; }
.contact-item div { font-size: 0.95rem; line-height: 1.6; color: var(--cream-dark); }

.footer {
  background: var(--deep);
  text-align: center;
  padding: 2.5rem 3rem;
  border-top: 1px solid rgba(201,168,76,0.2);
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.footer p {
  font-size: 0.85rem;
  color: rgba(245,237,216,0.5);
  line-height: 1.8;
}

.footer-credits { font-style: italic; font-size: 0.78rem !important; }

/* ─────────────────────────────
   LIGHTBOX
───────────────────────────── */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(10,3,5,0.93);
  padding: 2rem;
}

.lightbox.open,
.lightbox[aria-hidden='false'] {
  display: flex;
}

.lightbox-figure {
  width: min(92vw, 1100px);
  max-height: 90vh;
  text-align: center;
}

.lightbox-figure img {
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.lightbox-figure figcaption {
  color: var(--cream-dark);
  margin-top: 0.8rem;
  font-style: italic;
}

.lightbox-close,
.lightbox-arrow {
  position: absolute;
  background: rgba(26,10,14,0.75);
  border: 1px solid var(--gold);
  color: var(--gold);
  cursor: pointer;
  transition: all .2s ease;
}

.lightbox-close:hover,
.lightbox-arrow:hover {
  background: var(--gold);
  color: var(--deep);
}

.lightbox-close {
  top: 1rem;
  right: 1rem;
  width: 46px;
  height: 46px;
  font-size: 2rem;
  line-height: 1;
}

.lightbox-arrow {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 64px;
  font-size: 2.4rem;
}

.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

/* ─────────────────────────────
   RESPONSIVE
───────────────────────────── */

@media (max-width: 1100px) {
  .navbar { padding: 1rem 1.5rem; }
  .nav-links { gap: 1.15rem; }
  .nav-links a { font-size: 0.68rem; }
  .spectacle-content { grid-template-columns: 230px minmax(0, 1fr); }
}

@media (max-width: 900px) {
  .container { padding: 0 1.5rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-block { max-width: 430px; margin: 0 auto; width: 100%; }
  .spectacle-content { grid-template-columns: 1fr; padding: 1.3rem; }
  .spectacle-img-wrap { max-width: 360px; width: 100%; margin: 0 auto; }
  .presse-grid,
  .contact-grid,
  .presidente-card { grid-template-columns: 1fr; }
  .presidente-portrait { max-width: 320px; width: 100%; margin: 0 auto; }
  .stats-band { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 2rem 1rem; }
  .stat-divider { display: none; }
  .about-quotes {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    margin-top: 2rem;
  }

  .about-quote {
    min-height: auto;
    padding: 1.5rem;
  }
}

@media (max-width: 700px) {
  .navbar {
    padding: 0.9rem 1rem;
  }

  .nav-toggle { display: block; }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(26,10,14,0.98);
    border-bottom: 1px solid rgba(201,168,76,.3);
  }

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

  .nav-links li { border-top: 1px solid rgba(201,168,76,.15); }
  .nav-links a { display: block; padding: 1rem 1.5rem; }

  .hero {
    min-height: auto;
    padding: 5.4rem 1rem 3rem;
  }

  .hero-eyebrow,
  .section-eyebrow,
  .btn-primary,
  .btn-ghost {
    letter-spacing: 0.15em;
  }

  .hero-title {
    font-size: clamp(3.2rem, 18vw, 5rem);
  }

  .hero-subtitle {
    font-size: 1.05rem;
    line-height: 1.55;
  }

  .hero-subtitle br { display: none; }

  .hero-news {
    grid-template-columns: 1fr;
    width: 100%;
    padding: 0.85rem;
    margin-top: 1.3rem;
  }

  .hero-news-poster {
    max-height: 380px;
  }

  .hero-news-text {
    text-align: center;
  }

  .hero-ctas,
  .btn-primary,
  .btn-ghost {
    width: 100%;
  }

  .btn-primary,
  .btn-ghost {
    text-align: center;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .about,
  .spectacles,
  .presidente,
  .presse,
  .contact {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .spectacle-year {
    font-size: 3rem;
  }

  .spectacle-info h3 {
    font-size: 2rem;
  }

  .carousel-track {
    gap: 0;
  }

  .carousel-slide,
  .spectacle-info .carousel-slide,
  .presse-carousel .carousel-slide {
    flex: 0 0 100%;
  }

  .presse-card {
    padding: 1.4rem;
  }

  .contact-item {
    padding: 1.3rem 0.8rem;
  }

  .lightbox {
    padding: 1rem;
  }

  .lightbox-arrow {
    width: 42px;
    height: 52px;
    font-size: 2rem;
  }

  .lightbox-prev { left: 0.3rem; }
  .lightbox-next { right: 0.3rem; }

  .marquee-sign {
    font-size: clamp(.95rem,5vw,1.3rem);
    padding: .65rem 1rem;
  }

  .marquee-sign::before {
    inset: -6px;
    background-size: 14px 14px;
  }

  .sign-1 { top: 7%; left: 4%; }
  .sign-2 { top: 8%; right: 4%; }
  .sign-3 { top: 66%; left: 4%; }
  .sign-4 { bottom: 8%; left: 5%; }
  .sign-5 { top: 66%; right: 4%; }
  .sign-6 { top: 17%; left: 50%; --tx: -50%; }
  .sign-7 { bottom: 16%; left: 50%; --tx: -50%; }
  .sign-8 { bottom: 8%; right: 5%; }
}

@media (max-width: 640px) {
  .curtain-title { font-size: clamp(2.5rem, 15vw, 4rem); }
  .curtain-subtitle,
  .curtain-btn { letter-spacing: 0.16em; }
  .curtain-btn {
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .container { padding: 0 1rem; }
  .nav-brand { font-size: 1.15rem; }
  .about-text p,
  .presidente-text p { font-size: 1rem; }
}
