/*
Theme Name: Stages
Description: Custom theme for Stages — cinematic dark, full-bleed, theatrical.
Version: 2.1.0
Author: ecomit
*/

/* ─── Tokens ────────────────────────────────────────────────── */
:root {
  --ink:       #080710;
  --ink-1:     #0f0e1a;
  --ink-2:     #17152a;
  --ink-3:     #201e36;
  --ink-4:     #2c2946;
  --paper:     #f0ece4;
  --paper-2:   #c9c3b8;
  --muted:     #7a7490;
  --gold:      #c9a84c;
  --gold-2:    #e8c96a;
  --gold-glow: rgba(201, 168, 76, 0.18);
  --crimson:   #9e1e3d;
  --crimson-2: #c42a51;
  --radius-sm: 8px;
  --radius:    16px;
  --radius-lg: 24px;
  --serif:     Georgia, "Times New Roman", serif;
  --sans:      -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --ease-out:  cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ─── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-2); }
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: .01em;
  color: var(--paper);
}
p { margin: 0 0 1rem; }

/* ─── Layout ────────────────────────────────────────────────── */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ─── Two-tier Header ───────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
}

/* Top utility bar */
.header-topbar {
  background: var(--ink-1);
  border-bottom: 1px solid rgba(201,168,76,.08);
  padding: .45rem 0;
  transition: transform .4s var(--ease-out), opacity .4s;
}
.site-header.scrolled .header-topbar {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  position: absolute;
}
.header-topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.topbar-left,
.topbar-right { display: flex; align-items: center; gap: .75rem; }
.topbar-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .72rem;
  color: var(--muted);
  letter-spacing: .04em;
}
.topbar-email { color: var(--muted); transition: color .2s; }
.topbar-email:hover { color: var(--gold); }
.topbar-divider { color: rgba(255,255,255,.12); font-size: .8rem; }
.topbar-social { display: flex; align-items: center; gap: .5rem; }
.topbar-social a {
  display: grid; place-items: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.1);
  color: var(--muted);
  transition: border-color .2s, color .2s, background .2s;
}
.topbar-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,.07);
}
@media (max-width: 680px) { .header-topbar { display: none; } }

/* Floating nav card wrapper */
.header-nav-wrap {
  padding: .6rem 0;
  transition: padding .4s var(--ease-out);
}
.site-header.scrolled .header-nav-wrap { padding: .3rem 0; }

/* The floating glass card */
.header-nav-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: .6rem 1.4rem .6rem 1.6rem;
  border-radius: var(--radius-lg);
  background: rgba(15, 14, 26, 0.72);
  backdrop-filter: blur(22px) saturate(1.6);
  -webkit-backdrop-filter: blur(22px) saturate(1.6);
  border: 1px solid rgba(201,168,76,.14);
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
  transition: background .4s, box-shadow .4s, border-color .3s;
  min-height: 64px;
}
.site-header.scrolled .header-nav-card {
  background: rgba(8, 7, 16, 0.92);
  border-color: rgba(201,168,76,.2);
  box-shadow: 0 16px 48px rgba(0,0,0,.6);
}

/* Brand */
.brand {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--paper);
  letter-spacing: .16em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.brand .g { color: var(--gold); }
.brand-img {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.brand-img img {
  height: 32px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Nav */
.site-nav ul {
  display: flex;
  gap: 0;
  list-style: none;
  margin: 0; padding: 0;
  align-items: center;
}
.site-nav a {
  display: block;
  padding: .45rem .85rem;
  color: var(--paper-2);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  position: relative;
  transition: color .2s;
  white-space: nowrap;
}
.site-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: .85rem; right: .85rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease-out);
}
.site-nav a:hover,
.site-nav a.current { color: var(--paper); }
.site-nav a:hover::after,
.site-nav a.current::after { transform: scaleX(1); }

/* Nav donate pill — hide it, we have the header CTA button */
.nav-donate,
.nav-contribute { display: none; }

/* Header right actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-shrink: 0;
}
.header-search-btn {
  display: grid; place-items: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  background: none;
  color: var(--muted);
  cursor: pointer;
  transition: border-color .2s, color .2s, background .2s;
  flex-shrink: 0;
}
.header-search-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,.07);
}
.header-ticket-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  white-space: nowrap;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(201,168,76,.4);
  color: var(--gold);
  border-radius: var(--radius-sm);
  width: 38px; height: 38px;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  flex-shrink: 0;
}
.nav-toggle:hover { background: var(--gold-glow); border-color: var(--gold); }

/* ── Mobile nav overlay (body-level, avoids header stacking context) ── */
.mobile-nav-overlay {
  display: none;
}

@media (max-width: 960px) {
  .nav-toggle { display: flex; }
  .header-search-btn { display: none; }
  /* Desktop site-nav hidden on mobile — overlay handles it */
  .site-nav { display: none !important; }

  /* Full-screen overlay */
  .mobile-nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(4,3,14,.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 6rem 2rem 3rem;
    overflow-y: auto;
    pointer-events: none;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity .25s ease, transform .25s ease;
  }
  .mobile-nav-overlay.open {
    pointer-events: auto;
    opacity: 1;
    transform: translateY(0);
  }

  /* Nav links */
  .mobile-nav-overlay nav ul {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,.08);
  }
  .mobile-nav-overlay nav ul li {
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .mobile-nav-overlay nav ul a {
    display: block;
    width: 100%;
    padding: 1rem 0;
    font-size: 1.25rem;
    font-family: var(--font-display);
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--paper);
    text-decoration: none;
    transition: color .2s;
  }
  .mobile-nav-overlay nav ul a:hover { color: var(--gold); }

  /* Footer: Contribute + socials */
  .mobile-nav-footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,.08);
  }
  .mobile-nav-contribute {
    font-size: 1rem;
    padding: .75rem 1.75rem;
  }
  .mobile-nav-social {
    display: flex;
    gap: 1.25rem;
    align-items: center;
  }
  .mobile-nav-social a {
    color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px; height: 38px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50%;
    transition: color .2s, border-color .2s;
  }
  .mobile-nav-social a:hover { color: var(--gold); border-color: var(--gold); }

  /* Hide desktop Contribute button — it's inside the overlay */
  .header-actions .header-ticket-btn { display: none !important; }

  /* Hide topbar on mobile */
  .header-topbar { display: none; }
}

/* ─── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 9rem 1.5rem 5rem;
}

/* Stage photograph — starts black, revealed by the spotlight beam */
.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url('/wp-content/uploads/hero-spotlight.webp');
  background-size: contain;
  background-position: center 15%;
  background-repeat: no-repeat;
  opacity: 0;
  animation: heroPhotoIn 3.5s ease-out 0.8s forwards;
}
/* On phones the near-square image becomes a thin band with contain — fill instead */
@media (max-width: 760px) {
  .hero-photo {
    background-size: cover;
    background-position: center 20%;
  }

  /* Hero heading — scale down so it fits cleanly on phone */
  .hero h1 {
    font-size: clamp(1.75rem, 9vw, 2.4rem) !important;
    line-height: 1.2;
  }

  /* Hero CTA buttons — stack vertically */
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    gap: .75rem;
  }
  .hero-cta .btn {
    text-align: center;
    justify-content: center;
  }

  /* About section — single column */
  .about-cols { grid-template-columns: 1fr; }
  .about-split h2 { max-width: 100%; }

  /* Feature cards — single column */
  .feature-cards { grid-template-columns: 1fr; }

  /* Stat grid — 2 columns */
  .stat-grid { grid-template-columns: repeat(2, 1fr); }

  /* Artistic Director — single column, image aligned left */
  .ad-cols { grid-template-columns: 1fr; }
  .ad-image-col { max-width: 260px; margin: 0; }

  /* Productions grid — single column (default) */
  .grid { grid-template-columns: 1fr; }

  /* Production tiles — two per row */
  .grid-productions { grid-template-columns: repeat(2, 1fr) !important; gap: .75rem; }

  /* Ensembles gallery — two images per row */
  .ensemble-gallery { grid-template-columns: repeat(2, 1fr) !important; }

  /* Section padding */
  .section { padding: 3.5rem 0; }
}
/* Scrim: dark stage feel — heavy vignette all around, lighter only in spotlight cone */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  z-index: 2;
  background:
    /* Dark horizontal vignette — edges always black */
    linear-gradient(to right,
      rgba(4,3,14,1) 0%,
      rgba(4,3,14,.85) 8%,
      transparent 30%,
      transparent 70%,
      rgba(4,3,14,.85) 92%,
      rgba(4,3,14,1) 100%
    ),
    /* Vertical — dark top/bottom, opens in upper-center where spotlight is */
    radial-gradient(ellipse 55% 70% at 50% 18%,
      transparent 0%,
      transparent 30%,
      rgba(4,3,14,.25) 60%,
      rgba(4,3,14,.5) 82%,
      rgba(4,3,14,.7) 100%
    ),
    linear-gradient(to bottom,
      rgba(4,3,14,.4) 0%,
      rgba(4,3,14,.1) 14%,
      rgba(4,3,14,.15) 55%,
      rgba(4,3,14,.35) 82%,
      rgba(4,3,14,.55) 100%
    );
  pointer-events: none;
}
@keyframes heroPhotoIn {
  0%   { opacity: 0; }
  20%  { opacity: 0.15; }
  60%  { opacity: 0.8; }
  100% { opacity: 1; }
}

/* Stage curtains */
.hero-curtain {
  position: absolute;
  top: 0; bottom: 0;
  width: 14vw;
  max-width: 200px;
  z-index: 1;
  pointer-events: none;
}
.hero-curtain-left {
  left: 0;
  background: linear-gradient(90deg, rgba(8,6,24,.9) 0%, rgba(8,6,24,.4) 60%, transparent 100%);
}
.hero-curtain-right {
  right: 0;
  background: linear-gradient(270deg, rgba(8,6,24,.9) 0%, rgba(8,6,24,.4) 60%, transparent 100%);
}
/* Curtain top fold */
.hero-curtain::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 60px;
  background: rgba(6,4,18,.6);
}

/* Gold spotlight line */
/* ── Spotlight beams ─────────────────────────────────────────── */
.hero-spotlights {
  position: absolute;
  inset: 0;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 3;
}
.spl {
  position: absolute;
  top: -2rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 72rem;
  height: 105%;
  border-radius: 0 0 50% 50%;
  background-image: conic-gradient(
    from 0deg at 50% -2%,
    transparent 38%,
    rgba(255, 248, 235, .06) 42%,
    rgba(255, 252, 240, .16) 46%,
    rgba(255, 255, 255, .26) 50%,
    rgba(255, 252, 240, .16) 54%,
    rgba(255, 248, 235, .06) 58%,
    transparent 62%
  );
  transform-origin: 50% 0;
  filter: blur(22px);
  z-index: 2;
  opacity: 0;
  mix-blend-mode: screen;
}
.spl-3 {
  --r: 0deg;
  animation: splLoad 2s ease-out 0.5s forwards, splSway 26s ease-in-out 2.5s infinite;
}

@keyframes splLoad {
  0%   { opacity: 0; transform: scaleY(0.1); }
  50%  { opacity: 0.4; transform: scaleY(0.6); }
  100% { opacity: 1; transform: scaleY(1); }
}
@keyframes splSway {
  0%   { transform: rotate(0deg)    scaleX(1);    filter: blur(22px); }
  25%  { transform: rotate(-0.6deg) scaleX(1.03); filter: blur(20px); }
  50%  { transform: rotate(0.5deg)  scaleX(0.98); filter: blur(24px); }
  75%  { transform: rotate(-0.3deg) scaleX(1.02); filter: blur(21px); }
  100% { transform: rotate(0deg)    scaleX(1);    filter: blur(22px); }
}

/* ── Particle canvas ─────────────────────────────────────────── */
.hero-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  animation: splLoad 1.5s ease-in-out .4s forwards;
}

/* ── Accent grid lines ───────────────────────────────────────── */
.hero-accents {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.acc-h, .acc-v {
  position: absolute;
  opacity: 0;
  transform: scale(0);
  animation: accLoad 2s ease-out 2.4s forwards;
}
.acc-h {
  left: 0; right: 0; width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,.12), transparent);
}
.acc-h-1 { top: 22%; }
.acc-h-2 { top: 44%; animation-delay: 2.6s; }
.acc-h-3 { top: 68%; animation-delay: 2.8s; }
.acc-v {
  top: 0; bottom: 0; height: 100%; width: 1px;
  background: rgba(201,168,76,.09);
  animation-delay: 2s;
}
.acc-v-1 { left: 15%;  }
.acc-v-2 { left: 30%;  animation-delay: 2.1s; }
.acc-v-3 { right: 30%; animation-delay: 2.2s; }
.acc-v-4 { right: 15%; animation-delay: 2.3s; }
@keyframes accLoad {
  0%   { opacity: 0; transform: scale(0); }
  100% { opacity: 1; transform: scale(1); }
}

/* Hero content */
.hero-inner {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 820px;
  width: 100%;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  color: var(--gold);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .4em;
  margin-bottom: 1.4rem;
  opacity: 0;
  animation: fadeUp .8s var(--ease-out) .2s forwards;
}
.hero-kicker::before,
.hero-kicker::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: .6;
}
.hero h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  margin: 0 0 1.2rem;
  opacity: 0;
  animation: fadeUp .9s var(--ease-out) .4s forwards;
  background: linear-gradient(150deg, var(--paper) 40%, rgba(240,236,228,.55) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-lede {
  color: var(--paper-2);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  opacity: 0;
  animation: fadeUp .9s var(--ease-out) .6s forwards;
  line-height: 1.75;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .9s var(--ease-out) .75s forwards;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) 1.2s forwards;
}
.hero-scroll span {
  font-size: .65rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
  animation: scrollPulse 2s ease-in-out 1.5s infinite;
}

/* ─── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .05em;
  transition: transform .2s var(--ease-out), box-shadow .2s, background .2s;
  cursor: pointer;
  border: none;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--ink) !important;
  box-shadow: 0 4px 24px rgba(201,168,76,.25);
}
.btn-gold:hover { box-shadow: 0 8px 32px rgba(201,168,76,.4); }
.btn-outline {
  border: 1px solid rgba(201,168,76,.5);
  color: var(--gold) !important;
  background: transparent;
}
.btn-outline:hover { border-color: var(--gold); background: var(--gold-glow); }
.btn-crimson {
  background: var(--crimson);
  color: #fff !important;
  box-shadow: 0 4px 20px rgba(158,30,61,.3);
}
.btn-crimson:hover { background: var(--crimson-2); box-shadow: 0 8px 28px rgba(158,30,61,.45); }
.btn-sm { padding: .55rem 1.3rem; font-size: .82rem; }

/* ─── Sections ──────────────────────────────────────────────── */
.section { padding: 6rem 0; }
.section-alt { background: var(--ink-1); }
.section-dark { background: var(--ink-2); }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.section-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin: 0;
  position: relative;
}
.section-head h2::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-bottom: .8rem;
  border-radius: 1px;
}
.section-head .more {
  color: var(--muted);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  transition: color .2s;
  white-space: nowrap;
  padding-bottom: .2rem;
}
.section-head .more:hover { color: var(--gold); }

/* ─── Production Cards ──────────────────────────────────────── */
.grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }

.card {
  background: var(--ink-2);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.05);
  transition: transform .35s var(--ease-out), border-color .35s, box-shadow .35s;
  position: relative;
}
.card:hover {
  transform: translateY(-8px) scale(1.005);
  border-color: rgba(201,168,76,.3);
  box-shadow: 0 24px 64px rgba(0,0,0,.6), 0 0 0 1px rgba(201,168,76,.12);
}

/* Cover / poster */
.card-cover {
  display: block;
  overflow: hidden;
  position: relative;
  background: var(--ink-3);
}
.card-cover.aspect-poster { aspect-ratio: 2/3; }
.card-cover.aspect-wide   { aspect-ratio: 16/9; }
.card-cover.aspect-square { aspect-ratio: 1/1; }
.card-cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-out), filter .4s;
}
.card:hover .card-cover img { transform: scale(1.06); filter: brightness(1.08); }
.card-cover .placeholder {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-size: 3.5rem;
  color: rgba(201,168,76,.15);
}

/* Cover gradient overlay */
.card-cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8,7,16,.9) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .35s;
}
.card:hover .card-cover::after { opacity: 1; }

/* Card body */
.card-body { padding: 1.25rem 1.4rem 1.5rem; }
.card-body h3 { margin: .3rem 0 .35rem; font-size: 1.15rem; }
.card-body h3 a { color: var(--paper); transition: color .2s; }
.card-body h3 a:hover { color: var(--gold-2); }
.card-body .meta { color: var(--muted); font-size: .85rem; }

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  padding: .25rem .7rem;
  border-radius: 999px;
  font-weight: 600;
}
.badge-default { background: rgba(201,168,76,.12); color: var(--gold); border: 1px solid rgba(201,168,76,.2); }
.badge-live {
  background: rgba(158,30,61,.18);
  color: var(--crimson-2);
  border: 1px solid rgba(158,30,61,.35);
  animation: badgePulse 2.5s ease-in-out infinite;
}
.badge-live::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: currentColor; }

/* Person card variant */
.card-person .card-cover { aspect-ratio: 1/1; }
.card-person .card-body { padding: 1rem 1.2rem 1.3rem; }

/* ─── Event Rows ────────────────────────────────────────────── */
.events-list { display: flex; flex-direction: column; gap: 1rem; }
.event-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 1.5rem;
  background: var(--ink-2);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: var(--radius);
  padding: 1.4rem 1.8rem;
  transition: transform .3s var(--ease-out), border-color .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
}
.event-row::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--gold), var(--crimson));
  opacity: 0;
  transition: opacity .3s;
}
.event-row:hover {
  transform: translateX(4px);
  border-color: rgba(201,168,76,.2);
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
}
.event-row:hover::before { opacity: 1; }
.event-date { text-align: center; }
.event-date .d {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.event-date .m {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--muted);
  display: block;
  margin-top: 2px;
}
.event-info h3 { margin: 0 0 .3rem; font-size: 1.15rem; }
.event-info h3 a { color: var(--paper); transition: color .2s; }
.event-info h3 a:hover { color: var(--gold-2); }
.event-info .meta { color: var(--muted); font-size: .88rem; display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.event-info .meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--muted); }
@media (max-width: 640px) {
  .event-row { grid-template-columns: 60px 1fr; grid-template-rows: auto auto; }
  .event-row .btn { grid-column: 2; justify-self: start; }
}

/* ─── Contribute / CTA Band ─────────────────────────────────── */
.contribute-band {
  position: relative;
  overflow: hidden;
  padding: 7rem 1.5rem;
  text-align: center;
}
.contribute-band::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 80% at 50% 50%, rgba(158,30,61,.35) 0%, transparent 70%),
    linear-gradient(135deg, #1a0515 0%, #2c0d1a 40%, #1a0d2a 100%);
}
/* animated gradient orbs */
.contribute-band::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle 300px at 20% 50%, rgba(201,168,76,.06) 0%, transparent 70%),
    radial-gradient(circle 300px at 80% 50%, rgba(158,30,61,.08) 0%, transparent 70%);
}
.contribute-band .inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}
.contribute-band h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 0 0 1rem;
}
.contribute-band p {
  color: rgba(240,236,228,.7);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto 2.2rem;
  line-height: 1.8;
}
.contribute-band .gold-rule {
  width: 60px; height: 1px;
  background: var(--gold);
  margin: 0 auto 1.8rem;
  opacity: .6;
}

/* ─── Featured Production (wide card) ──────────────────────── */
.featured-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
  transition: box-shadow .4s;
}
.featured-card:hover { box-shadow: 0 32px 80px rgba(0,0,0,.7); }
.featured-card-img {
  position: relative;
  overflow: hidden;
}
.featured-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease-out); }
.featured-card:hover .featured-card-img img { transform: scale(1.04); }
.featured-card-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 50%, var(--ink-2) 100%);
}
.featured-card-body {
  background: var(--ink-2);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-card-body h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin: .6rem 0 1rem; }
.featured-card-body p { color: var(--paper-2); line-height: 1.75; margin-bottom: 1.8rem; }
@media (max-width: 760px) {
  .featured-card { grid-template-columns: 1fr; }
  .featured-card-img { min-height: 240px; }
  .featured-card-img::after { background: linear-gradient(0deg, var(--ink-2) 0%, transparent 60%); }
  .featured-card-body { padding: 2rem; }
}

/* ─── Single page layouts ───────────────────────────────────── */
.page-hero {
  padding: 9rem 1.5rem 4rem;
  background: linear-gradient(180deg, var(--ink-1) 0%, var(--ink) 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,.3), transparent);
}
.page-hero h1 { font-size: clamp(2.2rem, 6vw, 4rem); margin: .5rem 0 1rem; }
.page-hero .kicker { color: var(--gold); font-size: .78rem; text-transform: uppercase; letter-spacing: .35em; }
.page-hero .lede { color: var(--paper-2); font-size: 1.1rem; max-width: 600px; margin: 0; }

.entry { padding: 4rem 0 6rem; }
.entry-content {
  color: var(--paper-2);
  line-height: 1.85;
  max-width: 760px;
  font-size: 1.04rem;
}
.entry-content h2, .entry-content h3 { color: var(--paper); margin: 2rem 0 .75rem; }
.entry-content a { text-decoration: underline; text-underline-offset: 3px; }

.single-cols { display: grid; gap: 3rem; grid-template-columns: 2fr 1fr; align-items: start; }
@media (max-width: 900px) { .single-cols { grid-template-columns: 1fr; } }

.poster-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(201,168,76,.2);
  box-shadow: 0 24px 64px rgba(0,0,0,.5);
  position: sticky;
  top: 90px;
}

/* Detail list (sidebar) */
.detail-list { list-style: none; padding: 0; margin: 0; }
.detail-list li {
  padding: .85rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: .92rem;
}
.detail-list li:last-child { border-bottom: none; }
.detail-list li strong {
  display: block;
  color: var(--gold);
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  margin-bottom: .2rem;
}

/* Person list (cast/crew inside single) */
.person-list {
  display: grid;
  gap: .75rem;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  margin: 1.2rem 0 2.5rem;
  padding: 0;
  list-style: none;
}
.person-list li {
  background: var(--ink-2);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-sm);
  padding: .85rem 1rem;
  transition: border-color .2s;
}
.person-list li:hover { border-color: rgba(201,168,76,.25); }
.person-list li a { color: var(--paper); }
.person-list .role { color: var(--muted); font-size: .82rem; display: block; margin-top: .15rem; }

/* Sidebar card */
.sidebar-card {
  background: var(--ink-2);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

/* Video embed */
.video-embed {
  aspect-ratio: 16/9;
  width: 100%;
  border: 0;
  border-radius: var(--radius);
  margin: 2.5rem 0;
  box-shadow: 0 16px 48px rgba(0,0,0,.6);
}

/* ─── Filter bar ────────────────────────────────────────────── */
.filter-bar { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.filter-bar a {
  padding: .45rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  color: var(--muted);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  transition: border-color .2s, color .2s, background .2s;
}
.filter-bar a:hover, .filter-bar a.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,.07);
}

/* ─── Contribution form ─────────────────────────────────────── */
.don-wrap { max-width: 700px; margin: 0 auto; }

.don-header { margin-bottom: 2rem; }
.don-title { font-size: clamp(1.5rem, 4vw, 2rem); margin: 0 0 .5rem; color: var(--paper); }
.don-subtitle { color: var(--muted); font-size: .95rem; margin: 0; line-height: 1.6; }

/* Two-column field rows */
.don-form { width: 100%; }
.don-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.don-field { display: flex; flex-direction: column; gap: .35rem; }
.don-field-full { grid-column: 1 / -1; }
.don-field label { font-size: .85rem; font-weight: 500; color: var(--paper-2); }
.don-field .req { color: #e05; margin-left: 2px; }
.don-optional { color: var(--muted); font-weight: 400; }

.don-form input[type=text],
.don-form input[type=email],
.don-form input[type=tel],
.don-form input[type=number] {
  width: 100%;
  padding: .75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: var(--paper);
  font-size: .95rem;
  transition: border-color .2s, box-shadow .2s;
  box-sizing: border-box;
}
.don-form input::placeholder { color: rgba(255,255,255,.28); }
.don-form input:focus {
  outline: none;
  border-color: rgba(201,168,76,.5);
  box-shadow: 0 0 0 3px rgba(201,168,76,.1);
}

/* Divider */
.don-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,.08);
  margin: 1.75rem 0;
}

/* Section label */
.don-section-label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--paper-2);
  margin: 0 0 .9rem;
  text-transform: uppercase;
  letter-spacing: .1em;
}

/* Amount preset cards */
.don-presets {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .75rem;
  margin-bottom: 1rem;
}
.don-preset { position: relative; cursor: pointer; }
.don-preset input[type=radio] { position: absolute; opacity: 0; width: 0; height: 0; }

.don-preset-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .5rem;
  padding: 1rem 1rem .9rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.03);
  transition: border-color .2s, background .2s;
  position: relative;
}
.don-preset:hover .don-preset-inner {
  border-color: rgba(201,168,76,.3);
  background: rgba(201,168,76,.04);
}
.don-preset input:checked + .don-preset-inner {
  border-color: var(--gold);
  background: rgba(201,168,76,.07);
}

/* Radio dot — top right */
.don-preset-radio {
  position: absolute;
  top: .8rem;
  right: .8rem;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.25);
  background: transparent;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.don-preset input:checked + .don-preset-inner .don-preset-radio {
  border-color: var(--gold);
  background: var(--gold);
  box-shadow: inset 0 0 0 4px var(--ink);
}

.don-preset-price {
  font-weight: 700;
  font-size: 1rem;
  color: var(--paper);
  padding-right: 1.4rem;
}

/* Custom amount row */
.don-custom-row { margin-bottom: .5rem; }
.don-custom-label {
  display: block;
  font-size: .85rem;
  font-weight: 500;
  color: var(--paper-2);
  margin-bottom: .4rem;
}
.don-custom-wrap {
  display: flex;
  align-items: center;
  gap: .6rem;
  max-width: 260px;
}
.don-custom-prefix { font-size: .85rem; color: var(--muted); white-space: nowrap; }
.don-custom-input { flex: 1; }

.don-footnote {
  font-size: .78rem;
  color: var(--muted);
  margin: .6rem 0 0;
}

/* Anonymous row */
.don-anon-row {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .9rem;
  color: var(--paper-2);
  cursor: pointer;
  margin-bottom: .5rem;
}
.don-anon-row input[type=checkbox] { width: 16px; height: 16px; accent-color: var(--gold); cursor: pointer; }

/* Action buttons */
.don-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .75rem;
  margin-top: 1.5rem;
}
.don-btn-back {
  padding: .7rem 1.4rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--paper-2);
  font-size: .9rem;
  font-weight: 500;
  text-decoration: none;
  transition: border-color .2s, color .2s;
}
.don-btn-back:hover { border-color: rgba(255,255,255,.35); color: var(--paper); }
.don-btn-submit {
  padding: .75rem 2rem;
  border-radius: var(--radius-sm);
  border: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
}
.don-btn-submit:hover {
  background: var(--gold);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(201,168,76,.3);
}
.don-secure {
  text-align: right;
  color: var(--muted);
  font-size: .78rem;
  margin-top: .6rem;
}

/* Result / error notices */
.don-result {
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  margin-bottom: 1.5rem;
  font-size: .9rem;
}
.don-ok {
  background: rgba(20,90,50,.15);
  border: 1px solid rgba(60,180,100,.25);
  text-align: center;
}
.don-ok h3 { margin: 0 0 .5rem; font-size: 1.2rem; }
.don-err {
  background: rgba(158,30,61,.1);
  border: 1px solid rgba(158,30,61,.3);
  color: var(--paper-2);
}

/* Responsive */
@media (max-width: 640px) {
  .don-row { grid-template-columns: 1fr; }
  .don-presets { grid-template-columns: 1fr 1fr; }
  .don-actions { flex-direction: column-reverse; align-items: stretch; }
  .don-btn-back, .don-btn-submit { text-align: center; width: 100%; }
}

/* ─── Workshops page ─────────────────────────────────────────── */

/* Hero text — centered, balanced column */
.ws-hero-section { padding: 8rem 0 4rem; }
.ws-hero-wrap { max-width: 760px; margin: 0 auto; text-align: left; }
.ws-foster-heading {
  font-size: clamp(2.1rem, 4.2vw, 3.1rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.01em;
  line-height: 1.12;
  color: var(--gold);
  margin: .6rem 0 2rem;
}
.ws-foster-heading span {
  display: block;
  font-size: .42em;
  text-transform: none;
  font-weight: 500;
  color: var(--paper-2);
  letter-spacing: 0;
  margin-top: .4rem;
  line-height: 1.4;
}
.ws-hero-body p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--paper-2);
  margin: 0 0 1.3rem;
}
.ws-hero-body p:last-child { margin-bottom: 0; }

/* Workshop card grid */
.ws-section { padding: 2.5rem 0 6rem; }
.ws-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}
.ws-card {
  display: flex;
  flex-direction: column;
  background: var(--ink-2);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.ws-card:hover {
  border-color: rgba(201,168,76,.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
}
.ws-card-img {
  width: 100%;
  height: 280px;
  overflow: hidden;
  flex-shrink: 0;
}
.ws-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s var(--ease-out);
}
.ws-card:hover .ws-card-img img { transform: scale(1.05); }
.ws-card-body { padding: 1.6rem 1.7rem 1.9rem; display: flex; flex-direction: column; flex: 1; }
.ws-card-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--paper);
  margin: 0 0 1.1rem;
  line-height: 1.3;
}

/* Meta list (Lead Artist / Participants / etc.) */
.ws-meta { margin: 0 0 1.1rem; display: flex; flex-direction: column; align-items: stretch; gap: .55rem; }
.ws-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: .75rem;
  font-size: .88rem;
  line-height: 1.4;
  padding-bottom: .45rem;
  border-bottom: 1px dashed rgba(255,255,255,.08);
}
.ws-meta-row:last-child { border-bottom: none; padding-bottom: 0; }
.ws-meta-row dt {
  font-weight: 600;
  color: var(--muted);
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  white-space: nowrap;
  flex-shrink: 0;
}
.ws-meta-row dd { color: var(--paper); margin: 0; text-align: right; }
.ws-meta-sm .ws-meta-row { font-size: .84rem; }
.ws-card-desc {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
  padding-top: .9rem;
  border-top: 1px solid rgba(255,255,255,.06);
}

/* Section B — earlier workshops, horizontal scroll */
.ws-section-static { padding: 4rem 0 5rem; }
.ws-static-scroll-outer {
  overflow-x: auto;
  padding: .5rem var(--wrap-pad, 1.5rem) 1.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(201,168,76,.3) transparent;
  display: flex;
  justify-content: center;
}
.ws-static-scroll-outer::-webkit-scrollbar { height: 4px; }
.ws-static-scroll-outer::-webkit-scrollbar-track { background: transparent; }
.ws-static-scroll-outer::-webkit-scrollbar-thumb { background: rgba(201,168,76,.3); border-radius: 2px; }
.ws-static-scroll {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: .5rem;
}
.ws-static-card {
  background: var(--ink-2);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  padding: 1.5rem 1.6rem;
  width: 300px;
  flex-shrink: 0;
  transition: border-color .25s, transform .25s;
}
.ws-static-card:hover { border-color: rgba(201,168,76,.25); transform: translateY(-3px); }
.ws-static-card h4 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--paper);
  margin: 0 0 1rem;
  padding-bottom: .8rem;
  border-bottom: 1px solid rgba(201,168,76,.15);
  white-space: normal;
}

/* Section C — gallery strip */
.ws-gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .5rem;
  padding: 0 var(--wrap-pad, 1.5rem) 6rem;
  max-width: 1280px;
  margin: 0 auto;
}
.ws-gallery-img {
  overflow: hidden;
  position: relative;
  border-radius: var(--radius-sm);
  aspect-ratio: 4/3;
}
.ws-gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease-out);
}
.ws-gallery-img:hover img { transform: scale(1.06); }

/* Responsive */
@media (max-width: 900px) {
  .ws-grid { grid-template-columns: 1fr; gap: 2rem; }
  .ws-card-img { height: 240px; }
}
@media (max-width: 760px) {
  .ws-hero-section { padding: 7rem 0 3rem; }
  .ws-section { padding: 2rem 0 4rem; }
  .ws-section-static { padding: 3rem 0 4rem; }
  .ws-gallery-strip { grid-template-columns: repeat(2, 1fr); padding-bottom: 4rem; }
}
@media (max-width: 480px) {
  .ws-static-card { width: 86vw; }
  .ws-meta-row { flex-direction: column; align-items: flex-start; gap: .2rem; }
  .ws-meta-row dd { text-align: left; }
}

/* ─── Footer ────────────────────────────────────────────────── */
.site-footer {
  background: var(--ink-1);
  border-top: 1px solid rgba(201,168,76,.1);
  padding: 4rem 0 2.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }
.footer-brand .brand { font-size: 1.4rem; display: block; margin-bottom: .6rem; }
.footer-brand p { color: var(--muted); font-size: .9rem; margin: 0; line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  font-family: var(--sans);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--gold);
  margin: 0 0 1rem;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .5rem; }
.footer-col ul a { color: var(--muted); font-size: .9rem; transition: color .2s; }
.footer-col ul a:hover { color: var(--paper); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .8rem;
  color: var(--muted);
  font-size: .82rem;
}
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--paper-2); }

/* ─── Animations ────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: .7; }
  50%       { transform: scaleY(.6); opacity: .3; }
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(158,30,61,.35); }
  50%       { box-shadow: 0 0 0 6px rgba(158,30,61,0); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal.delay-1 { transition-delay: .1s; }
.reveal.delay-2 { transition-delay: .2s; }
.reveal.delay-3 { transition-delay: .3s; }
.reveal.delay-4 { transition-delay: .4s; }
.reveal.in { opacity: 1; transform: none; }

/* Stagger wrapper — children get staggered reveal */
.stagger-reveal > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}
.stagger-reveal.in > *:nth-child(1) { transition-delay: .05s; }
.stagger-reveal.in > *:nth-child(2) { transition-delay: .12s; }
.stagger-reveal.in > *:nth-child(3) { transition-delay: .19s; }
.stagger-reveal.in > *:nth-child(4) { transition-delay: .26s; }
.stagger-reveal.in > *:nth-child(5) { transition-delay: .33s; }
.stagger-reveal.in > *:nth-child(6) { transition-delay: .4s; }
.stagger-reveal.in > * { opacity: 1; transform: none; }

/* Parallax layer */
.parallax { will-change: transform; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .stagger-reveal > *, .hero-kicker, .hero h1, .hero-lede, .hero-cta, .hero-scroll {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
}

/* When GSAP takes over, CSS transitions conflict — disable them */
body.js-ready .reveal,
body.js-ready .stagger-reveal > * {
  transition: none;
}

/* ─── Progress bar ───────────────────────────────────────────── */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--crimson), var(--gold) 60%, var(--gold-2));
  transform: scaleX(0);
  transform-origin: left;
  z-index: 200;
  pointer-events: none;
}

/* ─── Custom cursor ──────────────────────────────────────────── */
body.js-ready { cursor: none; }
body.js-ready a,
body.js-ready button,
body.js-ready input,
body.js-ready textarea,
body.js-ready select,
body.js-ready label,
body.js-ready [role=button] { cursor: none; }

/* Feather-pen tip: nib point sits at (2,22) of the 24x24 viewBox,
   so offset by that fraction to align the tip with the real cursor coords. */
.cursor-dot {
  position: fixed;
  width: 26px;
  height: 26px;
  color: var(--gold);
  pointer-events: none;
  z-index: 10010;
  left: -30px; top: -30px;
  transform: translate(-8%, -92%) rotate(0deg);
  filter: drop-shadow(0 1px 3px rgba(0,0,0,.5));
  transition: width .18s var(--ease-out), height .18s var(--ease-out), color .18s, transform .12s;
}
.cursor-dot svg { display: block; width: 100%; height: 100%; }

.cursor-ring {
  position: fixed;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.3), transparent 70%);
  pointer-events: none;
  z-index: 10005;
  left: -20px; top: -20px;
  transform: translate(-50%, -50%);
  transition: width .3s var(--ease-out), height .3s var(--ease-out), opacity .25s;
}

body.cursor-hover .cursor-ring {
  width: 50px;
  height: 50px;
}
body.cursor-hover .cursor-dot {
  color: var(--gold-2);
  transform: translate(-8%, -92%) rotate(-8deg) scale(1.1);
}
body.cursor-click .cursor-dot {
  transform: translate(-8%, -92%) rotate(-8deg) scale(0.85);
  transition: transform .08s;
}

/* Hide cursor elements entirely on touch */
@media (hover: none) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ─── Film grain overlay ─────────────────────────────────────── */
.grain-overlay {
  position: fixed;
  inset: -60%;
  width: 220%;
  height: 220%;
  z-index: 8000;
  pointer-events: none;
  opacity: 0.038;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 7s steps(10, end) infinite;
  will-change: transform;
}

@keyframes grain {
  0%   { transform: translate(0,   0);   }
  10%  { transform: translate(-3%, -5%); }
  20%  { transform: translate(-7%,  3%); }
  30%  { transform: translate( 4%,-12%); }
  40%  { transform: translate(-5%,  9%); }
  50%  { transform: translate(-11%, 4%); }
  60%  { transform: translate( 7%,  0%); }
  70%  { transform: translate( 0%,  7%); }
  80%  { transform: translate( 2%, 16%); }
  90%  { transform: translate(-5%,  5%); }
}

/* ─── Parallax blobs ─────────────────────────────────────────── */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
  filter: blur(72px);
}
.hero-blob-1 {
  width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(20, 10, 80, 0.22) 0%, transparent 68%);
  top: -120px; left: -80px;
}
.hero-blob-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.13) 0%, transparent 68%);
  bottom: -40px; right: -60px;
}
.hero-blob-3 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(20, 10, 80, 0.35) 0%, transparent 68%);
  top: 28%; left: 44%;
  transform: translateX(-50%);
}

/* ─── Character split spans ──────────────────────────────────── */
/* .word keeps letters of one word glued together so the browser
   only wraps between words, never mid-word. */
.word { display: inline-block; white-space: nowrap; }
.char { display: inline-block; }

/* ─── Glassmorphism cards (person/team/cast) ─────────────────── */
.card-person {
  background: rgba(23, 21, 42, 0.45);
  backdrop-filter: blur(18px) saturate(1.5);
  -webkit-backdrop-filter: blur(18px) saturate(1.5);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: transform .35s var(--ease-out), border-color .25s, box-shadow .35s;
}
.card-person:hover {
  border-color: rgba(201, 168, 76, 0.22);
  box-shadow: 0 20px 60px rgba(0,0,0,.45), 0 0 0 1px rgba(201,168,76,.08);
}

/* ─── Stat card ──────────────────────────────────────────────── */
.stat-card {
  background: rgba(23, 21, 42, 0.6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: border-color .25s, transform .3s var(--ease-out);
}
.stat-card:hover {
  border-color: rgba(201,168,76,.18);
  transform: translateY(-3px);
}
.stat-num {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: .25rem;
}
.stat-lbl {
  color: var(--muted);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ─── Kicker (Evente-style section eyebrow) ──────────────────── */
.kicker {
  font-size: .72rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 .7rem;
  display: flex;
  align-items: center;
}
.section-head-center { justify-content: center; text-align: center; }
.section-head-center .kicker { justify-content: center; }

/* ─── Hero countdown ─────────────────────────────────────────── */
.hero-countdown {
  margin-top: 3rem;
  display: inline-flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.4rem 2rem;
  border-radius: var(--radius);
  background: rgba(8, 7, 16, 0.45);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border: 1px solid rgba(201, 168, 76, 0.18);
}
.hero-countdown-label {
  font-size: .82rem;
  color: var(--paper-2);
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-countdown-label .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--crimson-2);
  animation: badgePulse 2s ease-in-out infinite;
}
.hero-countdown-label a { color: var(--gold-2); font-weight: 600; }
.hero-countdown-label .venue { color: var(--muted); }
.countdown-units {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: .9rem;
}
.cd-unit { display: flex; flex-direction: column; align-items: center; min-width: 56px; }
.cd-num {
  font-family: var(--serif);
  font-size: 2.1rem;
  color: var(--paper);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.cd-lbl {
  font-size: .62rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--muted);
  margin-top: .35rem;
}
.cd-sep { color: rgba(201,168,76,.5); font-size: 1.6rem; font-family: var(--serif); }

/* ─── About split section ────────────────────────────────────── */
.about-cols {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 880px) { .about-cols { grid-template-columns: 1fr; gap: 2.5rem; } }
.about-split h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin: 0 0 1.2rem; max-width: 70%; }
.about-lede { color: var(--paper-2); line-height: 1.8; margin-bottom: 1.8rem; }

.feature-cards { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.feature-card {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  padding: 1.2rem 1.4rem;
  border-radius: var(--radius);
  background: rgba(23, 21, 42, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.06);
  transition: border-color .25s, transform .3s var(--ease-out);
}
.feature-card:hover { border-color: rgba(201,168,76,.2); transform: translateX(4px); }
.feature-icon {
  font-size: 1.6rem;
  width: 52px; height: 52px;
  flex: 0 0 52px;
  display: grid; place-items: center;
  border-radius: var(--radius-sm);
  background: rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.18);
}
.feature-card h4 { margin: 0 0 .25rem; font-size: 1rem; font-family: var(--sans); }
.feature-card p { margin: 0; color: var(--muted); font-size: .88rem; line-height: 1.6; }

/* ─── Schedule cards (Evente schedule pattern) ───────────────── */
.schedule-list { display: flex; flex-direction: column; gap: 1.1rem; }
.schedule-card {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 1.6rem;
  align-items: center;
  padding: 1.1rem 1.6rem 1.1rem 1.1rem;
  border-radius: var(--radius);
  background: rgba(23, 21, 42, 0.5);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.06);
  transition: border-color .25s, transform .3s var(--ease-out), box-shadow .3s;
}
.schedule-card:hover {
  border-color: rgba(201,168,76,.25);
  transform: translateY(-3px);
  box-shadow: 0 16px 44px rgba(0,0,0,.45);
}
.schedule-thumb {
  position: relative;
  width: 110px; height: 110px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--ink-3);
}
.schedule-thumb img { width: 100%; height: 100%; object-fit: cover; }
.schedule-thumb .placeholder {
  display: grid; place-items: center;
  width: 100%; height: 100%;
  font-size: 2.2rem;
  color: rgba(201,168,76,.25);
}
.schedule-date {
  position: absolute;
  bottom: 6px; left: 6px;
  background: rgba(8,7,16,.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 8px;
  padding: .25rem .5rem;
  text-align: center;
  line-height: 1.1;
}
.schedule-date .d { display: block; font-family: var(--serif); font-size: 1.1rem; color: var(--gold); }
.schedule-date .m { display: block; font-size: .58rem; text-transform: uppercase; letter-spacing: .12em; color: var(--paper-2); }
.schedule-body h3 { margin: 0 0 .5rem; font-size: 1.25rem; }
.schedule-body h3 a { color: var(--paper); }
.schedule-body h3 a:hover { color: var(--gold-2); }
.schedule-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem 1.4rem;
  color: var(--muted);
  font-size: .85rem;
}
@media (max-width: 720px) {
  .schedule-card { grid-template-columns: 84px 1fr; }
  .schedule-thumb { width: 84px; height: 84px; }
  .schedule-action { grid-column: 1 / -1; }
}

/* ─── People row (speakers pattern, circular) ────────────────── */
.people-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem 1.4rem;
}
.person-bubble {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .35rem;
}
.person-photo {
  width: 140px; height: 140px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(201,168,76,.25);
  padding: 5px;
  background: var(--ink-2);
  margin-bottom: .6rem;
  transition: border-color .3s, transform .35s var(--ease-out), box-shadow .35s;
  display: block;
}
.person-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.person-photo .placeholder {
  display: grid; place-items: center;
  width: 100%; height: 100%;
  border-radius: 50%;
  background: var(--ink-3);
  font-size: 2.4rem;
}
.person-bubble:hover .person-photo {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,.5), 0 0 30px rgba(201,168,76,.12);
}
.person-name { color: var(--paper); font-weight: 600; font-size: 1rem; }
.person-role { color: var(--muted); font-size: .8rem; }

/* ─── Contribution tiers (pricing pattern) ───────────────────── */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
  margin-top: 1rem;
}
@media (max-width: 880px) { .tier-grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; } }
.tier-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2.4rem 2rem 2rem;
  border-radius: var(--radius-lg);
  background: rgba(23, 21, 42, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.07);
  text-align: center;
  transition: border-color .25s, transform .3s var(--ease-out), box-shadow .3s;
}
.tier-card:hover { transform: translateY(-5px); border-color: rgba(201,168,76,.25); box-shadow: 0 22px 60px rgba(0,0,0,.5); }
.tier-featured {
  border-color: rgba(201,168,76,.4);
  background: linear-gradient(180deg, rgba(201,168,76,.07), rgba(23,21,42,.6));
  box-shadow: 0 18px 60px rgba(0,0,0,.45);
}
.tier-tag {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--ink);
  font-size: .66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  padding: .3rem .9rem;
  border-radius: 999px;
  white-space: nowrap;
}
.tier-name {
  font-family: var(--sans);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--gold);
  margin: 0 0 .8rem;
}
.tier-price { font-family: var(--serif); font-size: 2.4rem; color: var(--paper); margin-bottom: 1.4rem; }
.tier-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.8rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  flex: 1;
  color: var(--paper-2);
  font-size: .9rem;
}
.tier-features li::before { content: "✦ "; color: var(--gold); font-size: .7rem; }
.tier-note { text-align: center; margin-top: 2rem; color: var(--muted); font-size: .9rem; }

/* ─── Testimonial quotes ─────────────────────────────────────── */
.quote-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 880px) { .quote-row { grid-template-columns: 1fr; } }
.quote-card {
  margin: 0;
  padding: 2rem;
  border-radius: var(--radius);
  background: rgba(23, 21, 42, 0.5);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.06);
  display: flex;
  flex-direction: column;
  transition: border-color .25s, transform .3s var(--ease-out);
}
.quote-card:hover { border-color: rgba(201,168,76,.2); transform: translateY(-4px); }
.quote-card blockquote {
  margin: 0 0 1.4rem;
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--paper-2);
  flex: 1;
}
.quote-card blockquote::before {
  content: "“";
  display: block;
  font-size: 2.6rem;
  line-height: .6;
  color: var(--gold);
  margin-bottom: .6rem;
}
.quote-card figcaption strong { color: var(--paper); display: block; font-size: .95rem; }
.quote-card figcaption span { color: var(--muted); font-size: .8rem; }

/* ─── Newsletter band ────────────────────────────────────────── */
.newsletter-form {
  display: flex;
  gap: .7rem;
  max-width: 480px;
  margin: 1.6rem auto 0;
}
.newsletter-form input {
  flex: 1;
  padding: .9rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(8,7,16,.55);
  color: var(--paper);
  font-size: .95rem;
}
.newsletter-form input:focus {
  outline: none;
  border-color: rgba(201,168,76,.5);
  box-shadow: 0 0 0 3px rgba(201,168,76,.1);
}
@media (max-width: 540px) { .newsletter-form { flex-direction: column; } .newsletter-form .btn { width: 100%; } }

/* ─── Footer extras ──────────────────────────────────────────── */
.footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.1fr; }
@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-contact li { color: var(--muted); font-size: .9rem; }
.footer-contact a { color: var(--muted); }
.footer-contact a:hover { color: var(--paper); }
.footer-social { display: flex; gap: 1.5rem; margin-top: 1.2rem; }
.footer-social a.social-link {
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  width: auto;
  height: auto;
  border-radius: 0;
  border: none;
  color: var(--muted);
  font-size: .65rem;
  font-weight: 600;
  text-transform: capitalize;
  transition: color .25s;
}
.footer-social a.social-link svg {
  width: 18px; height: 18px;
}
.footer-social a.social-link:hover {
  color: var(--gold);
  border-color: transparent;
  background: rgba(201,168,76,.07);
}

/* ═══════════════════════════════════════════════════════════════
   INNER PAGES — shared styles
   ═══════════════════════════════════════════════════════════════ */

/* ── Page Hero ─────────────────────────────────────────────────── */
.page-hero {
  position: relative;
  min-height: 30vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 2rem;
  overflow: hidden;
}
.page-hero-minimal {
  min-height: 20vh;
  padding: 0;
  align-items: center;
}
.page-hero-minimal .page-hero-inner {
  padding-top: 2.5rem;
  padding-bottom: 2rem;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  filter: saturate(.7) brightness(.45);
  transition: transform 8s ease;
}
.page-hero:hover .page-hero-bg { transform: scale(1); }
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,7,16,.4) 0%, rgba(8,7,16,.85) 60%, rgba(8,7,16,1) 100%);
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 10rem;
}
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 4rem); margin: .5rem 0 1rem; }
.page-hero .hero-lede { max-width: 620px; color: var(--paper-2); font-size: 1.1rem; }
.page-hero .hero-cta { margin-top: 1.8rem; display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── About page ────────────────────────────────────────────────── */
.mission-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 768px) { .mission-cols { grid-template-columns: 1fr; gap: 2rem; } }

.about-img-placeholder {
  background: var(--ink-3);
  border: 1px solid var(--ink-4);
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-size: 3rem;
  color: var(--muted);
}
.about-img-placeholder p { font-size: .85rem; margin: 0; }
.about-img-wrap { border-radius: var(--radius); overflow: hidden; }

/* ── Values grid ────────────────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.value-card {
  background: var(--ink-2);
  border: 1px solid rgba(201,168,76,.12);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: border-color .3s, transform .3s;
}
.value-card:hover { border-color: rgba(201,168,76,.3); transform: translateY(-4px); }
.value-icon { font-size: 2rem; margin-bottom: 1rem; }
.value-card h3 { font-size: 1.1rem; margin: 0 0 .6rem; color: var(--gold); }
.value-card p { margin: 0; color: var(--paper-2); font-size: .93rem; }
.value-card .btn { margin-top: 1.25rem; }

/* ── Timeline ───────────────────────────────────────────────────── */
.timeline {
  position: relative;
  padding-left: 2.5rem;
  margin-top: 2.5rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(201,168,76,.1));
}
.timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  position: relative;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.5rem;
  top: .4rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--ink);
  box-shadow: 0 0 0 4px rgba(201,168,76,.2);
}
.timeline-year {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  padding-top: .15rem;
}
.timeline-body h4 { font-size: 1rem; margin: 0 0 .3rem; color: var(--paper); }
.timeline-body p  { margin: 0; color: var(--paper-2); font-size: .92rem; }

/* ── Stat grid wide ─────────────────────────────────────────────── */
.stat-grid-wide { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }


/* ── Ensembles ──────────────────────────────────────────────────── */
.ensemble-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}
.ensemble-block-reverse { direction: rtl; }
.ensemble-block-reverse > * { direction: ltr; }
@media (max-width: 768px) {
  .ensemble-block, .ensemble-block-reverse { grid-template-columns: 1fr; direction: ltr; }
}
.ensemble-content h2 { font-size: 2rem; margin: .5rem 0 1rem; }
.ensemble-details { list-style: none; padding: 0; margin: 1rem 0; }
.ensemble-details li { padding: .3rem 0; color: var(--paper-2); }
.ensemble-divider { border: none; border-top: 1px solid var(--ink-4); margin: 1rem 0; }

/* ── Contact page ──────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-image {
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  min-height: 400px;
}
.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-form-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-cols {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 900px) { .contact-cols { grid-template-columns: 1fr; } }

.contact-form-wrap h2, .contact-info h2 { margin: 0 0 1.5rem; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form-row-2 { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; margin-bottom: .4rem; font-size: .88rem; color: var(--paper-2); }
.req { color: var(--gold); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--ink-2);
  border: 1px solid var(--ink-4);
  border-radius: var(--radius-sm);
  color: var(--paper);
  font-family: var(--sans);
  font-size: .95rem;
  padding: .75rem 1rem;
  outline: none;
  transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group select option { background: var(--ink-2); }
.form-group textarea { resize: vertical; }
.form-success {
  background: rgba(39,174,96,.12);
  border: 1px solid rgba(39,174,96,.3);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  color: #4cde88;
  margin-bottom: 1.5rem;
}
.form-error {
  background: rgba(158,30,61,.12);
  border: 1px solid rgba(158,30,61,.3);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  color: var(--crimson-2);
  margin-bottom: 1.25rem;
  font-size: .9rem;
}

.contact-info-block { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.contact-info-icon { font-size: 1.4rem; margin-top: .1rem; }
.contact-info-block strong { display: block; color: var(--gold); font-size: .85rem; margin-bottom: .25rem; }
.contact-info-block p { margin: 0 0 .2rem; font-size: .92rem; color: var(--paper-2); }
.contact-info-block p.small { font-size: .8rem; color: var(--muted); }
.contact-info-block a { color: var(--paper-2); }
.contact-info-block a:hover { color: var(--gold); }
.contact-map { margin-top: 1.5rem; }
.map-placeholder {
  background: var(--ink-3);
  border: 1px solid var(--ink-4);
  border-radius: var(--radius);
  height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--muted);
  gap: .5rem;
}
.map-placeholder p { font-size: .8rem; margin: 0; }

/* ── Policy page ────────────────────────────────────────────────── */
.policy-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 900px) { .policy-layout { grid-template-columns: 1fr; } }
.policy-nav {
  position: sticky;
  top: 120px;
  background: var(--ink-2);
  border: 1px solid var(--ink-4);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.policy-nav ul { list-style: none; padding: 0; margin: .75rem 0 0; }
.policy-nav li { margin-bottom: .4rem; }
.policy-nav a { color: var(--muted); font-size: .85rem; transition: color .2s; }
.policy-nav a:hover { color: var(--gold); }

.policy-body section { margin-bottom: 3rem; }
.policy-body h2 { font-size: 1.5rem; border-bottom: 1px solid var(--ink-4); padding-bottom: .6rem; margin-bottom: 1rem; }
.policy-body h3 { font-size: 1.05rem; color: var(--gold); margin: 1.5rem 0 .5rem; }
.policy-body ul, .policy-body ol { padding-left: 1.5rem; }
.policy-body li { margin-bottom: .4rem; color: var(--paper-2); }
.policy-body p { color: var(--paper-2); }
.policy-meta {
  background: var(--ink-2);
  border-left: 3px solid var(--gold);
  padding: .75rem 1rem;
  margin-bottom: 2rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: .85rem;
  color: var(--muted);
}
.policy-contact-box {
  background: var(--ink-2);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--radius);
  padding: 2rem;
}
.policy-contact-box h2 { border: none; color: var(--gold); }
.policy-contact-box p { color: var(--paper-2); }
.policy-text ul { padding-left: 1.5rem; color: var(--paper-2); }
.policy-text li { margin-bottom: .5rem; }

/* ── Empty state ────────────────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--muted);
}
.empty-state h3 { color: var(--paper-2); margin: .5rem 0; }

/* ═══════════════════════════════════════════════════════════════
   MEET THE TEAM — horizontal scroll row
   ═══════════════════════════════════════════════════════════════ */
.team-scroll-track {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(201,168,76,.3) transparent;
  padding: 1rem 0 1.5rem;
  /* full bleed past .wrap */
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 600px);
  padding-right: calc(50vw - 600px);
}
@media (max-width: 1240px) {
  .team-scroll-track { padding-left: 1.5rem; padding-right: 1.5rem; }
}
.team-scroll-track::-webkit-scrollbar { height: 4px; }
.team-scroll-track::-webkit-scrollbar-thumb { background: rgba(201,168,76,.3); border-radius: 4px; }

.team-scroll-inner {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  padding-bottom: .25rem;
}

/* 6 per row on desktop = each bubble ~160px; on mobile force 2 per "viewport view" */
.team-scroll-inner .person-bubble {
  width: 150px;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  /* On mobile 2 bubbles fit: (100vw - 3*1.5rem padding+gap) / 2 ≈ ~44vw */
  .team-scroll-inner .person-bubble { width: 44vw; }
}

/* ═══════════════════════════════════════════════════════════════
   ARTISTIC DIRECTOR SECTION
   ═══════════════════════════════════════════════════════════════ */
.ad-section { overflow: hidden; }

.ad-cols {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 5rem;
  align-items: center;
}
@media (max-width: 900px) {
  .ad-cols { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* Image frame */
.ad-image-col { position: relative; }
.ad-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--ink-3);
}
.ad-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: grayscale(18%) contrast(1.05);
  transition: filter .6s ease, transform .8s var(--ease-out);
}
.ad-img-frame:hover img { filter: grayscale(0%) contrast(1); transform: scale(1.03); }

/* Theatrical gold corner accent */
.ad-img-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(201,168,76,.18) 0%, transparent 40%),
    linear-gradient(0deg, rgba(8,7,16,.65) 0%, transparent 45%);
  z-index: 1;
  pointer-events: none;
}
/* Gold left border line */
.ad-img-frame::after {
  content: '';
  position: absolute;
  left: 0; top: 12%; bottom: 12%;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  z-index: 2;
}
.ad-img-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(201,168,76,.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

/* Content */
.ad-content-col { max-width: 540px; }

/* Typewriter quote */
.ad-typewriter {
  margin: 1.5rem 0 1.75rem;
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--gold);
  background: rgba(201,168,76,.05);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  min-height: 5rem;
}
.ad-typed {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--paper);
  margin: 0;
  line-height: 1.6;
}
.ad-typed::after {
  content: '|';
  display: inline-block;
  color: var(--gold);
  animation: blink .75s step-end infinite;
  margin-left: 2px;
}
.ad-typed.typing-done::after { display: none; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

.ad-body { color: var(--paper-2); margin-bottom: .75rem; }

.ad-sig {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: .2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(201,168,76,.2);
}
.ad-sig-name {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--gold);
  font-weight: 700;
}
.ad-sig-title { font-size: .82rem; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; }

/* ─── Single Production Page ────────────────────────────────── */
.prod-hero {
  position: relative;
  padding: 11rem 1.5rem 4rem;
  overflow: hidden;
  background: var(--ink-1);
}
.prod-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(28px) saturate(1.1);
  transform: scale(1.15);
  opacity: .35;
}
.prod-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8,7,16,.75) 0%, rgba(8,7,16,.9) 60%, var(--ink) 100%),
    radial-gradient(120% 80% at 50% 0%, rgba(20,15,50,.4), transparent 70%);
}
.prod-hero .wrap { position: relative; z-index: 2; }
.prod-hero-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: center;
}
.prod-hero.has-poster .prod-hero-inner { align-items: center; }
.prod-hero-text .badge { margin-bottom: 1rem; display: inline-flex; }
.prod-hero-text h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  margin: 0 0 .5rem;
  line-height: 1.04;
}
.prod-subtitle {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--gold-2);
  margin: 0 0 1.5rem;
}
.quick-credits {
  margin: 1.5rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 2.4rem;
}
.quick-credit { margin: 0; }
.quick-credit dt {
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .25rem;
}
.quick-credit dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--paper);
}
.prod-hero-poster .poster-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.6);
  border: 1px solid rgba(201,168,76,.18);
  aspect-ratio: 2 / 3;
}
.prod-hero-poster .poster-frame img { width: 100%; height: 100%; object-fit: cover; }

/* Body */
.prod-body { padding-top: 3.5rem; }
.prod-body .wrap { max-width: 860px; }
.prod-intro {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--paper-2);
  font-family: var(--serif);
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

/* Accordion */
.prod-accordion { margin-bottom: 3.5rem; }
.prod-acc-item {
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.prod-acc-item:first-child { border-top: 1px solid rgba(255,255,255,.09); }
.prod-acc-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem .25rem;
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--paper);
  transition: color .2s;
}
.prod-acc-item summary::-webkit-details-marker { display: none; }
.prod-acc-item summary:hover { color: var(--gold); }
.prod-acc-icon {
  position: relative;
  width: 18px; height: 18px;
  flex-shrink: 0;
}
.prod-acc-icon::before,
.prod-acc-icon::after {
  content: '';
  position: absolute;
  background: var(--gold);
  transition: transform .3s var(--ease-out), opacity .2s;
}
.prod-acc-icon::before { top: 8px; left: 0; width: 18px; height: 2px; }
.prod-acc-icon::after  { left: 8px; top: 0; width: 2px; height: 18px; }
.prod-acc-item[open] .prod-acc-icon::after { transform: scaleY(0); opacity: 0; }
.prod-acc-content {
  padding: 0 .25rem 1.8rem;
  color: var(--paper-2);
  line-height: 1.8;
  animation: accFade .35s var(--ease-out);
}
@keyframes accFade {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Reviews */
.prod-reviews { display: grid; gap: 1.5rem; }
.prod-review {
  margin: 0;
  padding: 1.4rem 1.6rem;
  background: var(--ink-2);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.prod-review p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--paper);
  margin: 0 0 .8rem;
}
.prod-review cite {
  font-style: normal;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
}
.prod-review-year { color: var(--muted); }

/* Resources */
.prod-resources { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.prod-resources a {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .7rem 1.1rem;
  background: var(--ink-2);
  border: 1px solid rgba(201,168,76,.18);
  border-radius: var(--radius-sm);
  color: var(--paper);
  transition: border-color .2s, background .2s;
}
.prod-resources a:hover { border-color: var(--gold); background: var(--ink-3); }
.prod-resource-icon { color: var(--gold); font-weight: 700; }

/* Trailers */
.prod-trailers, .prod-gallery-section, .prod-cast-section, .prod-crew-section, .prod-shows {
  margin-bottom: 3.5rem;
}
.prod-trailers h2, .prod-gallery-section h2, .prod-cast-section h2,
.prod-crew-section h2, .prod-shows h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}
.prod-trailer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.prod-trailer { margin: 0; }
.prod-trailer-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  background: #000;
}
.prod-trailer-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.prod-trailer figcaption {
  margin-top: .6rem;
  font-size: .85rem;
  color: var(--muted);
  letter-spacing: .04em;
}

/* Gallery */
.prod-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}
.prod-gallery-item { margin: 0; position: relative; overflow: hidden; border-radius: var(--radius-sm); }
.prod-gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .5s var(--ease-out);
}
.prod-gallery-item:hover img { transform: scale(1.06); }
.prod-gallery-item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: .5rem .7rem;
  font-size: .72rem;
  color: var(--paper-2);
  background: linear-gradient(transparent, rgba(0,0,0,.8));
  opacity: 0;
  transition: opacity .3s;
}
.prod-gallery-item:hover figcaption { opacity: 1; }
.prod-gallery-trigger { display: block; cursor: zoom-in; }

/* Ensembles page */
.ensemble-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.ensemble-gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--ink-2);
  border: 1px solid rgba(201,168,76,.12);
}
.ensemble-gallery-item .placeholder {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-size: 2.5rem;
  color: rgba(201,168,76,.15);
}
a.ensemble-gallery-item { display: block; cursor: zoom-in; }
.ensemble-gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease-out);
}
.ensemble-gallery-item:hover img { transform: scale(1.06); }
.ensemble-gallery-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: .5rem .7rem;
  font-size: .72rem;
  color: var(--paper-2);
  background: linear-gradient(transparent, rgba(0,0,0,.8));
  opacity: 0;
  transition: opacity .3s;
}
.ensemble-gallery-item:hover .ensemble-gallery-caption { opacity: 1; }
.ensemble-gallery-placeholder { cursor: default; }
.ensemble-detail { max-width: 760px; }
.ensemble-detail h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  margin: 0 0 .5rem;
}
.ensemble-accordion { margin-bottom: 0; }

/* Lightbox */
.prod-lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(4,3,14,.92);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
}
.prod-lightbox[hidden] { display: none; }
.prod-lb-img-wrap { max-width: min(90vw, 1100px); text-align: center; }
.prod-lb-img { max-width: 100%; max-height: 82vh; object-fit: contain; border-radius: var(--radius-sm); }
.prod-lb-caption { color: var(--muted); font-size: .8rem; margin-top: .75rem; }
.prod-lb-close,
.prod-lb-prev,
.prod-lb-next {
  position: fixed; background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15); color: #fff;
  border-radius: 50%; width: 44px; height: 44px;
  font-size: 1.1rem; cursor: pointer; transition: background .2s;
  display: flex; align-items: center; justify-content: center;
}
.prod-lb-close  { top: 1.2rem; right: 1.2rem; }
.prod-lb-prev   { left: 1.2rem; top: 50%; transform: translateY(-50%); }
.prod-lb-next   { right: 1.2rem; top: 50%; transform: translateY(-50%); }
.prod-lb-close:hover,
.prod-lb-prev:hover,
.prod-lb-next:hover { background: rgba(255,255,255,.2); }

/* Cast grid */
.prod-cast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1.5rem;
}
.prod-cast-card { text-align: center; display: block; }
.prod-cast-photo {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto .8rem;
  background: var(--ink-3);
  border: 2px solid rgba(201,168,76,.2);
  transition: border-color .3s, transform .3s;
}
.prod-cast-card:hover .prod-cast-photo { border-color: var(--gold); transform: translateY(-4px); }
.prod-cast-photo img { width: 100%; height: 100%; object-fit: cover; }
.prod-cast-photo .placeholder {
  display: grid; place-items: center; height: 100%;
  font-size: 2.5rem; opacity: .3;
}
.prod-cast-name {
  display: block;
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--paper);
}
.prod-cast-role {
  display: block;
  font-size: .8rem;
  color: var(--gold);
  letter-spacing: .04em;
}

/* Upcoming shows */
.prod-shows-list { display: grid; gap: .8rem; }
.prod-show-row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1rem 1.2rem;
  background: var(--ink-2);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
}
.prod-show-date {
  text-align: center;
  flex-shrink: 0;
  width: 56px;
  line-height: 1;
}
.prod-show-date .d { display: block; font-family: var(--serif); font-size: 1.6rem; color: var(--gold); }
.prod-show-date .m { display: block; font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.prod-show-info { flex: 1; min-width: 0; }
.prod-show-info a { color: var(--paper); font-family: var(--serif); font-size: 1.1rem; }
.prod-show-venue { display: block; font-size: .82rem; color: var(--muted); margin-top: .2rem; }

/* Prev / Next production pager */
.prod-pager {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.prod-pager-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  background: var(--ink-2);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  transition: border-color .2s, background .2s;
  min-width: 0;
}
.prod-pager-link:hover { border-color: var(--gold); background: rgba(201,168,76,.06); }
.prod-pager-next { grid-column: 2; justify-content: flex-end; text-align: right; }
.prod-pager-arrow {
  font-size: 1.3rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform .2s;
}
.prod-pager-prev:hover .prod-pager-arrow { transform: translateX(-4px); }
.prod-pager-next:hover .prod-pager-arrow { transform: translateX(4px); }
.prod-pager-text { min-width: 0; display: flex; flex-direction: column; gap: .25rem; }
.prod-pager-label {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--muted);
}
.prod-pager-title {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--paper);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 860px) {
  .prod-hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .prod-hero-poster { max-width: 280px; }
}
@media (max-width: 540px) {
  .prod-hero { padding-top: 9rem; }
  .prod-acc-item summary { font-size: 1.2rem; }
  .prod-show-row { flex-wrap: wrap; }
  .prod-show-action { width: 100%; }
  .prod-pager { grid-template-columns: 1fr; }
  .prod-pager-next { grid-column: 1; justify-content: flex-start; text-align: left; }
}

/* ── WATSS video grid ──────────────────────────────────────── */
.watss-video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.video-responsive {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.video-responsive iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}
@media (max-width: 640px) {
  .watss-video-grid { grid-template-columns: 1fr; }
}

/* ── Founding members grid ─────────────────────────────────── */
.founding-members {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}
.founder-card {
  background: var(--ink-1);
  border: 1px solid var(--gold-glow);
  border-radius: 6px;
  padding: .75rem 1.5rem;
  font-size: .95rem;
  color: var(--paper-1);
}

/* ── WhatsApp button ───────────────────────────────────────── */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: #25d366;
  color: #fff;
  border: none;
  padding: .6rem 1.4rem;
  border-radius: 6px;
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s, transform .2s;
  margin-top: 2rem;
}
.btn-whatsapp:hover { background: #128c4f; transform: translateY(-2px); color: #fff; }
