/* ==========================================================================
   Black Ensemble Theater — Site Stylesheet
   Design: "Ivory Editorial" — bright ivory, black serif headlines, bronze
   accents, squared buttons; black velvet sections for theatrical drama.
   Layout language: large photography, rounded cards, generous space.
   Type: Fraunces (display) + Inter (text)
   ========================================================================== */

:root {
  --bg: #f7f4ee;            /* ivory */
  --bg-band: #ede6d7;       /* warm tan band */
  --card: #ffffff;
  --ink: #171512;           /* near-black */
  --ink-soft: #26221c;
  --bronze: #8a6a2f;        /* accent on light */
  --bronze-bright: #c3a15c; /* accent on dark */
  --text: #26221c;
  --text-soft: #57544e;
  --text-on-dark: #f3efe6;
  --text-on-dark-soft: #a49d90;
  --line: rgba(23, 21, 18, 0.15);
  --line-on-dark: rgba(243, 239, 230, 0.16);
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 16px 44px rgba(23, 21, 18, 0.16);
  --wrap: 1180px;
  --font-display: "Fraunces", Georgia, serif;
  --font-text: "Inter", "Helvetica Neue", Arial, sans-serif;
  /* legacy aliases used by inline styles */
  --gold: #8a6a2f;
  --gold-bright: #c3a15c;
  --font: var(--font-text);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-text);
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 0.5em;
  color: var(--ink);
  letter-spacing: -0.01em;
}
p { margin: 0 0 1em; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: var(--bg); padding: 10px 18px; font-weight: 700;
}
.skip-link:focus { left: 12px; top: 12px; }

a:focus-visible, button:focus-visible {
  outline: 3px solid var(--bronze);
  outline-offset: 2px;
}

/* ---------- Type helpers ---------- */
.kicker {
  display: block;
  font-family: var(--font-text);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 16px;
}
.on-dark .kicker, .village .kicker { color: var(--bronze-bright); }
.section-title { font-size: clamp(30px, 4.2vw, 48px); }
.section-title em { font-style: italic; color: var(--bronze); }
.on-dark .section-title em { color: var(--bronze-bright); }
.lede { font-size: clamp(17px, 1.9vw, 20px); color: var(--text-soft); max-width: 62ch; }
.on-dark .lede { color: var(--text-on-dark-soft); }

/* ---------- Buttons & links ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-text);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 3px;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold { background: var(--ink); color: var(--bg); }
.btn-gold:hover { background: #000; color: #fff; }
.btn-outline { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-outline:hover { background: var(--ink); color: var(--bg); }
.on-dark .btn-outline, .village .btn-outline, .hero-dark .btn-outline {
  border-color: rgba(243, 239, 230, 0.55); color: var(--text-on-dark);
}
.on-dark .btn-outline:hover, .village .btn-outline:hover {
  background: var(--text-on-dark); color: var(--ink); border-color: var(--text-on-dark);
}
.on-dark .btn-gold, .village .btn-gold { background: var(--bronze-bright); color: var(--ink); }
.on-dark .btn-gold:hover, .village .btn-gold:hover { background: #d4b26d; }
.btn-burgundy { background: var(--bronze); color: #fff; }
.btn-burgundy:hover { background: #75581f; }

.arrow-link {
  font-weight: 600;
  text-decoration: none;
  color: var(--bronze);
}
.arrow-link::after { content: " \2192"; }
.arrow-link:hover { color: var(--ink); text-decoration: underline; }
.on-dark .arrow-link, .village .arrow-link { color: var(--bronze-bright); }
.on-dark .arrow-link:hover, .village .arrow-link:hover { color: #d4b26d; }

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--ink);
  color: var(--text-on-dark);
  text-align: center;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 9px 16px;
}
.announce a { color: var(--bronze-bright); font-weight: 600; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 244, 238, 0.95);
  backdrop-filter: blur(8px);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 15px 24px;
  max-width: 1320px;
  margin: 0 auto;
}
.logo {
  text-decoration: none;
  color: var(--ink);
  font-family: var(--font-display);
  line-height: 1.05;
  flex-shrink: 0;
}
.logo .logo-top { font-size: 21px; font-weight: 700; display: block; }
.logo .logo-sub {
  font-family: var(--font-text);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--bronze);
  display: block;
  margin-top: 3px;
}
.main-nav { margin-left: auto; }
.main-nav ul { list-style: none; display: flex; gap: 26px; margin: 0; padding: 0; }
.main-nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover, .main-nav a[aria-current="page"] { border-color: var(--bronze); color: var(--bronze); }
.header-cta { display: flex; gap: 10px; flex-shrink: 0; }
.header-cta .btn { padding: 11px 20px; font-size: 12px; }
.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  padding: 9px 14px;
  font-family: var(--font-text);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--bg);
  color: var(--text);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 56px;
  align-items: center;
  padding: 84px 24px 92px;
  max-width: var(--wrap);
  margin: 0 auto;
}
.hero h1 {
  color: var(--ink);
  font-size: clamp(44px, 6.2vw, 82px);
  font-weight: 700;
  margin-bottom: 18px;
}
.hero h1 em { font-style: italic; color: var(--bronze); }
.hero-meta {
  font-size: 16.5px;
  font-weight: 500;
  color: var(--text-soft);
  margin-bottom: 10px;
}
.hero-meta strong { color: var(--ink); }
.hero-desc { font-size: 18.5px; color: var(--text-soft); max-width: 52ch; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Poster / photo cards */
.poster {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.poster-label {
  font-family: var(--font-text);
  font-size: 11px; font-weight: 600; letter-spacing: 0.26em; text-transform: uppercase;
}
.poster-title { font-family: var(--font-display); font-weight: 700; line-height: 1.05; }
.poster-dates { font-family: var(--font-text); font-size: 12.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; }
.poster-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.poster-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,12,10,.06) 35%, rgba(13,12,10,.85)); }
.poster > * { position: relative; }

.poster-soul { background: linear-gradient(165deg, #57222a, #221012 72%); color: #e8cf9a; }
.poster-funk { background: linear-gradient(165deg, #2f2338, #151016 72%); color: #dbb46b; }
.poster-cind { background: linear-gradient(165deg, #1e2a45, #0e131f 72%); color: #e0c584; }
.poster-photo { color: #fff; }
.poster-photo .poster-label, .poster-photo .poster-dates { color: var(--bronze-bright); }

/* ---------- Sections ---------- */
.section { padding: 92px 0; }
.section-tight { padding: 64px 0; }
.section-head { max-width: 780px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.bg-paper2 { background: var(--bg-band); }
.on-dark { background: linear-gradient(170deg, #181613, #100f0d); color: var(--text-on-dark); }
.on-dark h2, .on-dark h3 { color: var(--text-on-dark); }

/* ---------- Show cards ---------- */
.show-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.show-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.show-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.show-card .poster { aspect-ratio: 3 / 2.1; border-radius: 0; box-shadow: none; padding: 22px; }
.show-card .poster-title { font-size: clamp(24px, 2.4vw, 30px); }
.show-body { padding: 24px 26px 28px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.show-status {
  align-self: flex-start;
  font-family: var(--font-text);
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  background: var(--bg-band); color: var(--bronze);
  border-radius: 3px; padding: 5px 10px;
}
.show-status.now { background: var(--ink); color: var(--bronze-bright); }
.show-body h3 { font-size: 23px; margin: 2px 0 0; }
.show-dates { font-weight: 600; color: var(--ink); font-size: 14.5px; }
.show-blurb { color: var(--text-soft); font-size: 15px; flex: 1; }
.show-actions { display: flex; gap: 10px; margin-top: 8px; flex-wrap: wrap; }
.show-actions .btn { padding: 11px 18px; font-size: 11.5px; }

/* ---------- Stats band ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.6vw, 62px);
  font-weight: 700;
  color: var(--bronze-bright);
  line-height: 1;
}
.stat-label { font-size: 13px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-on-dark-soft); margin-top: 10px; }

/* ---------- Photo strip ---------- */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.photo-strip img {
  width: 100%; height: 260px; object-fit: cover; border-radius: var(--radius-sm);
}

/* ---------- Feature split (Jackie Taylor) ---------- */
.feature-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.feature-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
  background: linear-gradient(165deg, #33291a, #15110b);
  position: relative;
}
.feature-media img { width: 100%; height: 100%; object-fit: cover; }
.feature-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 25px);
  color: var(--bronze-bright);
  border-left: 2px solid var(--bronze-bright);
  padding-left: 20px;
  margin: 26px 0;
  line-height: 1.4;
}

/* ---------- Program cards ---------- */
.program-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.program-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 34px;
}
.program-card h3 { font-size: 22px; }
.program-aud {
  font-family: var(--font-text);
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--bronze); display: block; margin-bottom: 10px;
}
.program-card p { color: var(--text-soft); font-size: 15px; }

/* ---------- Events ---------- */
.event-list { display: flex; flex-direction: column; }
.event-row {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 26px;
  align-items: center;
  padding: 28px 4px;
  border-top: 1px solid var(--line);
}
.event-row:last-child { border-bottom: 1px solid var(--line); }
.event-date {
  font-family: var(--font-display);
  text-align: center;
  color: var(--bronze);
  font-weight: 700;
  line-height: 1;
}
.event-date .d { font-size: 38px; display: block; }
.event-date .m { font-family: var(--font-text); font-size: 12px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; display: block; margin-top: 6px; color: var(--text-soft); }
.event-info h3 { font-size: 21px; margin-bottom: 4px; }
.event-info p { margin: 0; color: var(--text-soft); font-size: 14.5px; }

/* ---------- Village section ---------- */
.village {
  background:
    radial-gradient(900px 420px at 85% 0%, rgba(195, 161, 92, 0.16), transparent 60%),
    linear-gradient(170deg, #181613, #100f0d);
  color: var(--text-on-dark);
}
.village h2 { color: var(--text-on-dark); }

/* ---------- Signup band ---------- */
.signup { background: var(--ink); color: var(--text-on-dark); }
.signup-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: center;
  padding: 60px 24px;
  max-width: var(--wrap);
  margin: 0 auto;
}
.signup h2 { font-size: clamp(26px, 3vw, 38px); margin-bottom: 8px; color: var(--text-on-dark); }
.signup p { margin: 0; font-weight: 400; color: var(--text-on-dark-soft); }
.signup .btn { background: var(--bronze-bright); color: var(--ink); }
.signup .btn:hover { background: #d4b26d; }

/* ---------- Footer ---------- */
.site-footer { background: #12100e; color: var(--text-on-dark-soft); font-size: 14.5px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 64px 24px 40px;
  max-width: 1320px;
  margin: 0 auto;
}
.site-footer h4 {
  color: var(--bronze-bright);
  font-family: var(--font-text);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { color: var(--text-on-dark-soft); text-decoration: none; }
.site-footer a:hover { color: var(--text-on-dark); }
.footer-brand .logo { display: inline-block; margin-bottom: 14px; color: var(--text-on-dark); }
.footer-brand .logo .logo-sub { color: var(--bronze-bright); }
.footer-legal {
  border-top: 1px solid var(--line-on-dark);
  padding: 22px 24px;
  text-align: center;
  font-size: 13px;
}
.social-row { display: flex; gap: 12px; margin-top: 16px; flex-wrap: wrap; }
.social-row a {
  border: 1px solid var(--line-on-dark);
  border-radius: 3px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.social-row a:hover { border-color: var(--bronze-bright); color: var(--bronze-bright); }

/* ---------- Sticky mobile action bar ---------- */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 110;
  background: var(--ink);
  border-top: 1px solid var(--line-on-dark);
}
.mobile-bar a {
  flex: 1;
  text-align: center;
  padding: 14px 6px;
  text-decoration: none;
  color: var(--text-on-dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.mobile-bar a.primary { background: var(--bronze-bright); color: var(--ink); }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background:
    radial-gradient(900px 420px at 85% -20%, rgba(195, 161, 92, 0.14), transparent 60%),
    linear-gradient(170deg, #181613, #100f0d);
  color: var(--text-on-dark);
  padding: 64px 0 56px;
}
.page-hero h1 { color: var(--text-on-dark); font-size: clamp(36px, 5vw, 58px); margin-bottom: 8px; }
.page-hero h1 em { font-style: italic; color: var(--bronze-bright); }
.page-hero .lede { color: var(--text-on-dark-soft); }
.page-hero .kicker { color: var(--bronze-bright); }
.breadcrumb { font-size: 13px; margin-bottom: 22px; color: var(--text-on-dark-soft); }
.breadcrumb a { color: var(--bronze-bright); text-decoration: none; }

/* ---------- Info blocks (interior) ---------- */
.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.info-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 30px;
}
.info-card h3 { font-size: 21px; }
.info-card p { color: var(--text-soft); font-size: 15px; }
.prose { max-width: 72ch; }
.prose h2 { font-size: 30px; margin-top: 1.6em; }
.prose h3 { font-size: 22px; margin-top: 1.4em; }

.note {
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 3px solid var(--bronze);
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 14.5px;
  color: var(--text-soft);
}

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .main-nav ul { gap: 18px; }
  .hero-inner { grid-template-columns: 1fr; padding: 56px 24px 70px; }
  .hero .poster { max-width: 440px; }
  .show-grid { grid-template-columns: 1fr 1fr; }
  .photo-strip { grid-template-columns: 1fr 1fr; }
  .feature-split { grid-template-columns: 1fr; gap: 36px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  body { padding-bottom: 52px; } /* room for mobile bar */
  .main-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 10px 24px 24px;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 4px; }
  .main-nav a { display: block; padding: 13px 4px; font-size: 16px; border-bottom: 1px solid var(--line); }
  .nav-toggle { display: block; }
  .header-cta .btn-outline { display: none; }
  .mobile-bar { display: flex; }
  .section { padding: 60px 0; }
  .show-grid { grid-template-columns: 1fr; }
  .program-grid, .info-grid { grid-template-columns: 1fr; }
  .signup-inner { grid-template-columns: 1fr; text-align: left; }
  .event-row { grid-template-columns: 84px 1fr; }
  .event-row .btn { grid-column: 2; justify-self: start; }
  .event-date .d { font-size: 32px; }
}

/* ==========================================================================
   Cinematic opening (inspired by nieteatr.pl): full-screen dark stage with
   spotlight + drifting haze, framed wordmark, tagline, scroll cue.
   Header becomes transparent over the intro (js adds/removes .clear).
   ========================================================================== */

.intro {
  position: relative;
  min-height: calc(100svh - 38px); /* minus announce bar */
  margin-top: -74px;               /* pull under sticky header */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: var(--text-on-dark);
  background:
    radial-gradient(560px 340px at 76% 14%, rgba(255, 244, 214, 0.34), transparent 62%),
    radial-gradient(1300px 860px at 72% 20%, rgba(255, 236, 190, 0.16), transparent 58%),
    linear-gradient(115deg, transparent 42%, rgba(255, 240, 208, 0.05) 52%, transparent 62%),
    linear-gradient(180deg, #0c0b0a, #16130f 55%, #0a0908);
  padding: 120px 24px 80px;
}
.intro::before, .intro::after {
  content: "";
  position: absolute;
  inset: -20%;
  pointer-events: none;
}
/* drifting haze */
.intro::before {
  background:
    radial-gradient(46% 30% at 30% 66%, rgba(216, 214, 222, 0.075), transparent 70%),
    radial-gradient(38% 26% at 66% 44%, rgba(216, 214, 222, 0.06), transparent 70%),
    radial-gradient(30% 22% at 50% 82%, rgba(216, 214, 222, 0.05), transparent 70%);
  animation: haze-drift 26s ease-in-out infinite alternate;
}
/* vignette */
.intro::after {
  background: radial-gradient(120% 90% at 50% 55%, transparent 55%, rgba(5, 4, 3, 0.55) 100%);
}
@keyframes haze-drift {
  0%   { transform: translate3d(-2.5%, 0, 0) scale(1); opacity: .85; }
  50%  { transform: translate3d(2%, -1.5%, 0) scale(1.05); opacity: 1; }
  100% { transform: translate3d(4%, 1%, 0) scale(1.02); opacity: .8; }
}

.intro > * { position: relative; z-index: 1; }

.intro-mark {
  display: inline-block;
  border: 2px solid rgba(243, 239, 230, 0.9);
  padding: 34px 46px 30px;
  animation: rise-in 1.1s cubic-bezier(.2,.7,.3,1) both .25s;
}
.intro-mark .mark-top {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 5.4vw, 66px);
  line-height: 1.04;
  color: #fff;
  display: block;
  letter-spacing: 0.01em;
}
.intro-mark .mark-rule {
  display: block;
  width: 64px;
  height: 1px;
  background: rgba(243, 239, 230, 0.7);
  margin: 16px auto 14px;
}
.intro-mark .mark-sub {
  font-family: var(--font-text);
  font-size: clamp(12px, 1.4vw, 15px);
  font-weight: 600;
  letter-spacing: 0.52em;
  text-indent: 0.52em;
  text-transform: uppercase;
  color: var(--bronze-bright);
  display: block;
}
.intro-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 2.6vw, 32px);
  color: rgba(243, 239, 230, 0.92);
  max-width: 26ch;
  margin: 36px auto 0;
  line-height: 1.35;
  animation: rise-in 1.1s cubic-bezier(.2,.7,.3,1) both .65s;
}
.intro-kicker {
  font-family: var(--font-text);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bronze-bright);
  margin-top: 22px;
  animation: rise-in 1.1s cubic-bezier(.2,.7,.3,1) both .9s;
}
.intro-cue {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  z-index: 2;
  width: 44px; height: 44px;
  border: 1px solid rgba(243, 239, 230, 0.5);
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  animation: cue-bounce 2.2s ease-in-out infinite 1.6s, rise-in 1s both 1.3s;
}
.intro-cue span {
  width: 10px; height: 10px;
  border-right: 2px solid rgba(243, 239, 230, 0.9);
  border-bottom: 2px solid rgba(243, 239, 230, 0.9);
  transform: rotate(45deg) translate(-1px, -1px);
}
@keyframes rise-in {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes cue-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}
@media (prefers-reduced-motion: reduce) {
  .intro::before, .intro-cue { animation: none; }
  .intro-mark, .intro-tagline, .intro-kicker { animation: none; opacity: 1; transform: none; }
}

/* Transparent header state over the intro */
.site-header { transition: background 0.35s ease, border-color 0.35s ease; }
.site-header.clear {
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
}
.site-header.clear .logo, .site-header.clear .main-nav a { color: var(--text-on-dark); }
.site-header.clear .logo .logo-sub { color: var(--bronze-bright); }
.site-header.clear .main-nav a:hover { color: var(--bronze-bright); border-color: var(--bronze-bright); }
.site-header.clear .btn-outline { border-color: rgba(243, 239, 230, 0.55); color: var(--text-on-dark); }
.site-header.clear .btn-outline:hover { background: var(--text-on-dark); color: var(--ink); }
.site-header.clear .btn-gold { background: var(--bronze-bright); color: var(--ink); }
.site-header.clear .nav-toggle { color: var(--text-on-dark); border-color: rgba(243,239,230,.4); }
@media (max-width: 820px) {
  .site-header.clear .main-nav { background: #12100e; }
  .intro { margin-top: -66px; padding-top: 100px; }
}

/* 50th Anniversary headline in the opening */
.intro-mark .mark-top { font-size: clamp(28px, 4vw, 48px); }
.intro-anni {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 5vw, 60px);
  line-height: 1.12;
  color: #fff;
  max-width: 22ch;
  margin: 42px auto 0;
  animation: rise-in 1.1s cubic-bezier(.2,.7,.3,1) both .6s;
}
.intro-anni em { font-style: italic; color: var(--bronze-bright); }
.intro-tagline {
  font-size: clamp(16px, 1.8vw, 21px);
  margin-top: 18px;
  animation-delay: .9s;
}
.intro-kicker { animation-delay: 1.15s; }
@media (prefers-reduced-motion: reduce) {
  .intro-anni { animation: none; opacity: 1; transform: none; }
}

/* ---------- Real artwork & photo placements ---------- */
.poster-art { padding: 0; aspect-ratio: 1 / 1; background: #111; }
.poster-art img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.show-card .poster-art { aspect-ratio: 1 / 1; }
.program-photo {
  width: calc(100% + 68px);
  margin: -32px -34px 20px;
  height: 175px;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
}
.village-media { aspect-ratio: 16 / 10; }
.media-credit { font-size: 12.5px; color: var(--text-soft); margin-top: 10px; }
.on-dark .media-credit, .village .media-credit { color: var(--text-on-dark-soft); }

/* ---------- Reviewer round 1 fixes ---------- */
/* Shorter opening: hero peeks in below the fold */
.intro { min-height: calc(84svh - 38px); }
.intro-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 30px; animation: rise-in 1.1s cubic-bezier(.2,.7,.3,1) both 1.05s; }
.intro .btn-gold { background: var(--bronze-bright); color: var(--ink); }
.intro .btn-gold:hover { background: #d4b26d; }
.intro .btn-outline { border-color: rgba(243, 239, 230, 0.55); color: var(--text-on-dark); }
.intro .btn-outline:hover { background: var(--text-on-dark); color: var(--ink); }
.intro-kicker { animation-delay: 1.3s; }
@media (prefers-reduced-motion: reduce) { .intro-actions { animation: none; opacity: 1; transform: none; } }

/* ==========================================================================
   Emotional pass (reviewer round 2): photographic opening, full-width
   "moment" band, audience voices, bigger education cards.
   ========================================================================== */

/* Opening: real photograph behind the atmosphere */
.intro-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.intro-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 8, 6, 0.72), rgba(10, 8, 6, 0.5) 45%, rgba(10, 8, 6, 0.86));
}
.intro-logo { display: flex; justify-content: center; animation: rise-in 1.1s cubic-bezier(.2,.7,.3,1) both .25s; }
.intro-logo img { width: min(460px, 78vw); height: auto; }
@media (prefers-reduced-motion: reduce) { .intro-logo { animation: none; opacity: 1; transform: none; } }

/* Full-width unforgettable moment */
.moment {
  position: relative;
  min-height: 64svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--text-on-dark);
}
.moment img.moment-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.moment::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,8,6,0.05) 30%, rgba(10,8,6,0.82) 88%);
}
.moment-inner {
  position: relative; z-index: 1;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 120px 24px 64px;
  width: 100%;
}
.moment-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(26px, 3.6vw, 46px);
  line-height: 1.2;
  color: #fff;
  max-width: 24ch;
  margin: 0 0 10px;
  text-shadow: 0 2px 24px rgba(0,0,0,.5);
}
.moment-label {
  font-family: var(--font-text);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bronze-bright);
}

/* Audience voices */
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.quote-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 32px;
  display: flex; flex-direction: column; gap: 12px;
}
.quote-stars { color: var(--bronze); font-size: 15px; letter-spacing: 3px; }
.quote-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  line-height: 1.45;
  color: var(--ink);
  margin: 0;
  flex: 1;
}
.quote-who { font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-soft); }

/* Education cards: more room to breathe (~10% bigger) */
.program-grid { gap: 30px; }
.program-card { padding: 36px 38px; }
.program-card h3 { font-size: 24px; }
.program-card p { font-size: 16px; }
.program-photo { width: calc(100% + 76px); margin: -36px -38px 22px; height: 200px; }

@media (max-width: 820px) {
  .quote-grid { grid-template-columns: 1fr; }
  .moment { min-height: 56svh; }
  .program-photo { width: calc(100% + 76px); }
}

/* ==========================================================================
   "Doors" opening (inspired by nieteatr.pl): the dark intro is a fixed
   overlay split into two halves that slide apart as you scroll, revealing
   the page behind like theater doors opening.
   ========================================================================== */

.intro-doors {
  position: fixed;
  inset: 0;
  z-index: 90; /* below sticky header (100) */
  display: flex;
}
.door {
  width: 50%;
  height: 100%;
  overflow: hidden;
  position: relative;
  will-change: transform;
}
.door-inner {
  position: absolute;
  top: 0; left: 0;
  width: 100vw;
  height: 100%;
}
.door-right .door-inner { left: -50vw; }

/* The intro pane reuses .intro styling but fills its door */
.door .intro {
  position: absolute;
  inset: 0;
  margin: 0;
  min-height: 100%;
  padding: 96px 24px 70px;
}

.door-spacer { height: 94svh; }

.intro-doors .intro-cue { position: absolute; }

/* No JavaScript: don't trap visitors behind closed doors */
.no-js .intro-doors { display: none; }
.no-js .door-spacer { display: none; }

@media (max-width: 820px) {
  .door .intro { padding: 80px 18px 64px; }
  .door .intro-logo img { width: min(340px, 84vw); }
}

/* ==========================================================================
   50-only doors + pinned dancers reveal
   ========================================================================== */

/* Doors: pure black stage with the 50 Years mark as the focus */
.door .intro {
  background:
    radial-gradient(620px 380px at 50% 30%, rgba(195, 161, 92, 0.18), transparent 62%),
    radial-gradient(1200px 700px at 50% 110%, rgba(195, 161, 92, 0.08), transparent 60%),
    linear-gradient(180deg, #0b0a09, #14110d 55%, #080706);
}
.intro-logo img { width: min(600px, 86vw); }
.intro-anni { margin-top: 34px; }

/* Full-screen dancers photo revealed behind the doors; pinned while they open */
.reveal-photo { height: 195svh; position: relative; background: #0b0a09; }
.reveal-pin {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
}
.reveal-pin img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.reveal-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 46px 24px 40px;
  text-align: center;
  background: linear-gradient(180deg, transparent, rgba(8, 7, 6, 0.75));
}
.reveal-caption .kicker { color: var(--bronze-bright); margin: 0; }
.no-js .reveal-photo { height: auto; }
.no-js .reveal-pin { position: static; height: 72svh; }

/* ==========================================================================
   The 50-Year Journey — anniversary timeline experience
   Horizontal walk-through on desktop (scroll-snap), swipeable on mobile.
   Cards fade in as they enter view (js adds .in).
   ========================================================================== */

.journey {
  background:
    radial-gradient(900px 420px at 15% -10%, rgba(195, 161, 92, 0.12), transparent 60%),
    linear-gradient(170deg, #16130f, #0d0c0a);
  color: var(--text-on-dark);
  overflow: hidden;
}
.journey .section-title { color: var(--text-on-dark); }
.journey .kicker { color: var(--bronze-bright); }
.journey .lede { color: var(--text-on-dark-soft); }

.tl-track {
  display: flex;
  gap: 34px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding: 46px 24px 26px;
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  scrollbar-width: thin;
  scrollbar-color: var(--bronze) transparent;
}
.tl-item {
  position: relative;
  flex: 0 0 min(340px, 80vw);
  scroll-snap-align: center;
  padding-top: 46px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.3,1);
}
.tl-item.in { opacity: 1; transform: none; }
/* the connecting line + node */
.tl-item::before {
  content: "";
  position: absolute;
  top: 14px; left: -34px; right: 0;
  height: 1px;
  background: rgba(195, 161, 92, 0.35);
}
.tl-item:first-child::before { left: 8px; }
.tl-item::after {
  content: "";
  position: absolute;
  top: 8px; left: 8px;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--bronze-bright);
  box-shadow: 0 0 0 5px rgba(195, 161, 92, 0.18);
}
.tl-card {
  background: #1c1915;
  border: 1px solid rgba(195, 161, 92, 0.18);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.tl-card img { width: 100%; height: 185px; object-fit: cover; }
.tl-body { padding: 24px 26px 28px; }
.tl-year {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  color: var(--bronze-bright);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.tl-body h3 { color: var(--text-on-dark); font-size: 20px; margin-bottom: 8px; }
.tl-body p { color: var(--text-on-dark-soft); font-size: 14.5px; margin: 0; }

.tl-hint {
  text-align: center;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-on-dark-soft);
  margin-top: 6px;
}
.journey-close {
  text-align: center;
  max-width: 720px;
  margin: 54px auto 0;
  padding: 0 24px;
}
.journey-close .close-line {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(21px, 2.6vw, 30px);
  color: var(--text-on-dark);
  line-height: 1.4;
  margin-bottom: 14px;
}
.journey-close .arrow-link { color: var(--bronze-bright); font-size: 15px; }

@media (prefers-reduced-motion: reduce) {
  .tl-item { opacity: 1; transform: none; transition: none; }
}

/* Opening simplified: no buttons; anniversary line sits right under the tagline */
.intro-kicker { margin-top: 16px; animation-delay: .95s; font-size: 13px; letter-spacing: .32em; }

/* ---------- Fit & framing fixes ---------- */
/* Hero show art: never upscale past its natural size */
.hero .poster { width: min(100%, 460px); justify-self: center; }

/* Timeline cards: taller image window; portraits aim at faces */
.tl-card img { height: 215px; }

/* The moment: full-width centered statement */
.moment-inner { text-align: center; padding: 130px 24px 70px; }
.moment-quote {
  max-width: none;
  margin: 0 auto 12px;
  font-size: clamp(26px, 4.6vw, 62px);
}

/* ---------- Fit fixes, round 2 ---------- */
/* Timeline: taller photo window; dark backing for letterboxed portraits */
.tl-card img { height: 240px; background: #0b0a09; }

/* The moment quote: always one line, sized to the screen */
.moment-quote {
  white-space: nowrap;
  font-size: clamp(15px, 3.4vw, 50px);
}
@media (max-width: 560px) {
  .moment-quote { white-space: normal; font-size: clamp(20px, 5.4vw, 28px); }
}

/* Education card photos: window matches the photos' natural shape — no cropping */
.program-photo { height: auto; aspect-ratio: 632 / 520; }

/* Education card photos: bleed fully to the card edges */
.program-photo { max-width: none; border-radius: var(--radius) var(--radius) 0 0; }

/* Reveal caption: a line with pulse */
.reveal-line {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 2.6vw, 32px);
  color: #fff;
  margin: 10px 0 0;
  text-shadow: 0 2px 18px rgba(0,0,0,.55);
}
/* Journey close: buttons on dark */
.journey-close .btn-gold { background: var(--bronze-bright); color: var(--ink); }
.journey-close .btn-gold:hover { background: #d4b26d; }
.journey-close .btn-outline { border-color: rgba(243,239,230,.55); color: var(--text-on-dark); }
.journey-close .btn-outline:hover { background: var(--text-on-dark); color: var(--ink); }
.journey-close .lede { color: var(--text-on-dark-soft); }

/* Award nomination badge */
.award-badge {
  display: inline-block;
  border: 1px solid var(--bronze);
  color: var(--bronze);
  background: rgba(138, 106, 47, 0.08);
  padding: 8px 16px;
  border-radius: 3px;
  font-family: var(--font-text);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 18px;
}
.on-dark .award-badge, .page-hero .award-badge {
  border-color: var(--bronze-bright);
  color: var(--bronze-bright);
  background: rgba(195, 161, 92, 0.1);
}

/* Award badge, amplified: filled gold marquee banner */
.award-badge {
  display: inline-block;
  background: var(--bronze);
  border: 1px solid var(--bronze);
  color: #fff;
  padding: 11px 22px;
  border-radius: 3px;
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 20px;
  box-shadow: 0 6px 18px rgba(138, 106, 47, 0.35);
}
.on-dark .award-badge, .page-hero .award-badge, .intro .award-badge {
  background: var(--bronze-bright);
  border-color: var(--bronze-bright);
  color: var(--ink);
}
.intro .award-badge {
  margin: 26px 0 0;
  animation: rise-in 1.1s cubic-bezier(.2,.7,.3,1) both 1.1s;
}
@media (prefers-reduced-motion: reduce) { .intro .award-badge { animation: none; opacity: 1; transform: none; } }

/* Homepage news feature band */
.news-band {
  background: linear-gradient(170deg, #181613, #100f0d);
  color: var(--text-on-dark);
  border-top: 3px solid var(--bronze-bright);
}
.news-band .news-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 64px 24px;
  text-align: center;
}
.news-band h2 {
  color: var(--text-on-dark);
  font-size: clamp(28px, 3.8vw, 46px);
  margin: 14px 0 12px;
}
.news-band h2 em { font-style: italic; color: var(--bronze-bright); }
.news-band .news-cats {
  color: var(--text-on-dark-soft);
  font-size: 16px;
  max-width: 74ch;
  margin: 0 auto 26px;
}

/* News band buttons: proper dark-section styling, centered */
.news-band .hero-actions { justify-content: center; text-align: center; }
.news-band .btn { text-align: center; }
.news-band .btn-gold { background: var(--bronze-bright); color: var(--ink); }
.news-band .btn-gold:hover { background: #d4b26d; }
.news-band .btn-outline { border-color: rgba(243, 239, 230, 0.55); color: var(--text-on-dark); }
.news-band .btn-outline:hover { background: var(--text-on-dark); color: var(--ink); border-color: var(--text-on-dark); }

/* Seating chart on rentals: full natural size, readable */
.chart-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #fff;
}

/* Featured production card: the current show dominates the season section */
.show-featured {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 34px;
}
.feat-art { background: #0d0d0c; display: block; }
.feat-art img { width: 100%; height: 100%; object-fit: contain; }
.feat-body { padding: 36px 40px; display: flex; flex-direction: column; gap: 10px; justify-content: center; align-items: flex-start; }
.feat-body h3 { font-size: clamp(28px, 3vw, 38px); margin: 0; }
.show-grid.two { grid-template-columns: repeat(2, 1fr); }
.quote-src { font-size: 11.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--bronze); }
.info-grid.three { grid-template-columns: repeat(3, 1fr); }
.on-dark .info-card h2, .on-dark .info-card h3 { color: var(--ink); }
.on-dark .info-card p { color: var(--text-soft); }
@media (max-width: 820px) {
  .show-featured { grid-template-columns: 1fr; }
  .show-grid.two { grid-template-columns: 1fr; }
  .info-grid.three { grid-template-columns: 1fr; }
  .feat-body { padding: 26px 24px; }
}
