@import url('tokens.css');

/* Override: ensure comfortable gutters on mobile */
:root { --gutter: clamp(1.25rem, 4vw, 2.5rem); }

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { background: var(--bg-page); color: var(--fg); }

/* =========================================================
   LAYOUT PRIMITIVES
   ========================================================= */
.container { max-width: 1140px; margin: 0 auto; padding: 0 var(--gutter); }
.container-wide { max-width: 1280px; margin: 0 auto; padding: 0 var(--gutter); }
.container-narrow { max-width: 720px; margin: 0 auto; padding: 0 var(--gutter); }

/* =========================================================
   SHARED MOTIFS
   ========================================================= */
.eyebrow {
  font-family: var(--font-ui); font-size: 12px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-700);
  display: inline-block;
}
.eyebrow--on-dark { color: var(--gold-500); }
.eyebrow--center { display: block; text-align: center; }

.rule-gold { border: 0; height: 1px; background: var(--gold-600); width: 72px; margin: var(--sp-4) 0; }
.rule-gold--center { margin-left: auto; margin-right: auto; }
.rule-gold--long { width: 120px; }

.section-header { text-align: center; margin-bottom: var(--sp-7); }
.section-header .eyebrow { margin-bottom: 14px; white-space: nowrap; }
.section-header .rule-gold { margin: 0 auto 22px; }
.section-header h2 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(32px, 3.5vw + 0.5rem, 52px); line-height: 1.08; letter-spacing: -0.02em;
  color: var(--fg-strong); margin: 0 0 14px; text-wrap: balance;
}
.section-header p {
  font-family: var(--font-body); font-size: var(--fs-lead); color: var(--fg-muted);
  line-height: 1.6; max-width: 580px; margin: 0 auto; text-wrap: pretty;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-ui); font-size: 15px; font-weight: 600;
  padding: 13px 24px; border: 0; border-radius: 4px; cursor: pointer;
  letter-spacing: 0.02em; text-decoration: none; white-space: nowrap;
  transition: background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.btn:focus-visible { outline: none; box-shadow: var(--focus-ring); }
.btn--primary { background: var(--viridian-700); color: var(--cream-50); }
.btn--primary:hover { background: var(--viridian-800); }
.btn--primary:active { background: var(--viridian-900); }
.btn--outline { background: transparent; color: var(--viridian-700); border: 1px solid var(--viridian-700); }
.btn--outline:hover { background: var(--viridian-700); color: var(--cream-50); }
.btn--outline-light { background: transparent; color: var(--cream-50); border: 1px solid var(--gold-500); }
.btn--outline-light:hover { background: var(--gold-600); color: var(--viridian-900); border-color: var(--gold-600); }
.btn--ghost { background: transparent; color: var(--viridian-700); padding: 13px 8px; }
.btn--ghost:hover { color: var(--viridian-800); }
.btn--ghost-light { background: transparent; color: var(--cream-100); padding: 13px 8px; }
.btn--ghost-light:hover { color: var(--gold-400); }
.btn--gold {
  background: var(--gold-600); color: var(--viridian-900);
  text-transform: uppercase; letter-spacing: 0.16em; font-size: 13px;
  padding: 14px 26px;
}
.btn--gold:hover { background: var(--gold-700); }
.btn--lg { padding: 16px 30px; font-size: 15px; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in oklab, var(--cream-50) 94%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--cream-200);
  transition: box-shadow var(--dur-base) var(--ease-out);
}
.site-header.is-scrolled { box-shadow: 0 1px 0 var(--cream-200), 0 4px 16px rgba(26,24,20,0.04); }
.site-header__row { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 12px 0; }
.site-header__brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--viridian-800); cursor: pointer; }
.site-header__brand img { height: 40px; width: auto; }
.site-header__brand .name {
  font-family: var(--font-display); font-size: 18px; font-weight: 600;
  letter-spacing: 0.01em; line-height: 1.1; color: var(--viridian-800);
  white-space: nowrap; display: block;
}
.site-header__brand .sub {
  font-family: var(--font-accent); font-style: italic; font-size: 12px;
  color: var(--gold-700); letter-spacing: 0.04em; margin-top: 3px; display: block;
  white-space: nowrap; line-height: 1;
}
.site-header__links { display: flex; gap: 30px; align-items: center; }
.site-header__links a {
  font-family: var(--font-ui); font-size: 14px; font-weight: 500;
  color: var(--ink-800); text-decoration: none; padding: 6px 0;
  position: relative; cursor: pointer;
}
.site-header__links a:hover { color: var(--viridian-700); }
.site-header__links a.is-active { color: var(--viridian-700); }
.site-header__links a.is-active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px; background: var(--gold-600);
}
.site-header__mobile-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; color: var(--ink-800); }

/* Nav dropdown (Get Involved) */
.nav-dropdown { position: relative; display: inline-flex; }
.nav-dropdown__toggle {
  font-family: var(--font-ui); font-size: 14px; font-weight: 500;
  color: var(--ink-800); background: none; border: 0; padding: 6px 0;
  cursor: pointer; display: inline-flex; align-items: center;
  position: relative;
}
.nav-dropdown__toggle:hover { color: var(--viridian-700); }
.nav-dropdown__toggle.is-active { color: var(--viridian-700); }
.nav-dropdown__toggle.is-active::after {
  content: ''; position: absolute; left: 0; right: 14px; bottom: -2px;
  height: 1px; background: var(--gold-600);
}
.nav-dropdown__toggle svg { transition: transform var(--dur-base) var(--ease-out); }
.nav-dropdown.is-open .nav-dropdown__toggle svg { transform: rotate(180deg); }

.nav-dropdown__menu {
  position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 260px;
  background: var(--cream-50);
  border: 1px solid var(--cream-200);
  border-top: 2px solid var(--gold-600);
  box-shadow: var(--shadow-md);
  padding: 8px;
  opacity: 0; visibility: hidden;
  transition: opacity var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out), visibility 0s linear var(--dur-base);
  z-index: 30;
}
.nav-dropdown__menu::before {
  content: ''; position: absolute; top: -8px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px; height: 12px;
  background: var(--gold-600);
}
.nav-dropdown.is-open .nav-dropdown__menu {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
  transition: opacity var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out), visibility 0s linear 0s;
}
.nav-dropdown__item {
  display: block !important; /* override inline-link flex rules */
  padding: 12px 14px !important;
  text-decoration: none;
  cursor: pointer;
  border-left: 2px solid transparent;
  transition: background var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
}
.nav-dropdown__item:hover {
  background: var(--cream-100);
  border-left-color: var(--gold-600);
}
.nav-dropdown__item.is-active {
  background: var(--cream-100);
  border-left-color: var(--gold-600);
}
.nav-dropdown__item-label {
  font-family: var(--font-display); font-weight: 600;
  font-size: 17px; color: var(--viridian-800);
  letter-spacing: -0.005em;
  line-height: 1.2;
}
.nav-dropdown__item-sub {
  font-family: var(--font-ui); font-size: 12px; font-weight: 500;
  color: var(--fg-muted); letter-spacing: 0.02em;
  margin-top: 3px;
}

@media (max-width: 900px) {
  .site-header__links { display: none; }
  .site-header__links.is-open {
    display: flex; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0; padding: 8px 0; background: var(--cream-50);
    border-bottom: 1px solid var(--cream-200);
  }
  .site-header__links.is-open a { padding: 14px var(--gutter); border-top: 1px solid var(--cream-100); }
  .site-header__mobile-toggle { display: inline-flex; }
  .site-header__cta { display: none; }
  .site-header__brand .name { font-size: 16px; }
  .site-header__brand .sub { display: none; }

  /* Dropdown becomes flat inline section on mobile */
  .nav-dropdown { flex-direction: column; width: 100%; }
  .nav-dropdown__toggle {
    padding: 14px var(--gutter); border-top: 1px solid var(--cream-100);
    justify-content: space-between; width: 100%;
    font-family: var(--font-ui); font-size: 14px; font-weight: 500;
  }
  .nav-dropdown__toggle.is-active::after { display: none; }
  .nav-dropdown__menu {
    position: static; transform: none !important;
    min-width: 0; opacity: 1; visibility: visible;
    border: 0; border-top: 1px solid var(--cream-100);
    box-shadow: none; background: var(--cream-100);
    padding: 0;
    display: none;
  }
  .nav-dropdown__menu::before { display: none; }
  .nav-dropdown.is-open .nav-dropdown__menu { display: block; }
  .nav-dropdown__item { padding: 12px var(--gutter) 12px calc(var(--gutter) + 14px) !important; }
  .nav-dropdown__item-label { font-size: 15px; }
}

/* =========================================================
   HERO — playbill curtain
   ========================================================= */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(ellipse at top, #1C1814 0%, #0F0C0A 65%, #0A0807 100%);
  color: var(--cream-50);
  min-height: 720px;
  display: flex;
  padding: 80px 0 72px;
}
.hero::before {
  content: ''; position: absolute; inset: 24px;
  border: 1px solid var(--gold-800);
  opacity: 0.45;
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; inset: 30px;
  border: 1px solid var(--gold-800);
  opacity: 0.2;
  pointer-events: none;
}
.hero__container { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; width: 100%; }
.hero__poster {
  position: relative;
  aspect-ratio: 4 / 5;
  background: #1a1410;
  border: 1px solid var(--gold-800);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(192,156,92,0.15) inset;
}
.hero__poster img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero__poster-spot {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center 35%, transparent 40%, rgba(15,12,10,0.55) 100%);
  pointer-events: none;
}
.hero__content { display: flex; flex-direction: column; align-items: flex-start; }
.hero__present {
  font-family: var(--font-ui); font-size: 11px; font-weight: 600;
  letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold-500);
  margin-bottom: 18px;
}
.hero__copresent {
  font-family: var(--font-body); font-size: 14px; color: var(--cream-200);
  line-height: 1.6; margin-bottom: 24px; max-width: 420px;
}
.hero__copresent em { font-family: var(--font-accent); font-style: italic; color: var(--gold-400); font-weight: 500; }
.hero__title-stack { margin: 6px 0 24px; }
.hero__title-main {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(44px, 5.8vw, 82px); line-height: 0.98; letter-spacing: -0.03em;
  color: var(--cream-50); margin: 0;
  text-wrap: balance;
}
.hero__title-of {
  font-family: var(--font-accent); font-style: italic; font-weight: 500;
  font-size: clamp(20px, 2vw, 28px); color: var(--gold-400);
  letter-spacing: 0.05em; display: block; margin: 4px 0 2px 0.05em;
}
.hero__title-sub {
  font-family: var(--font-display); font-weight: 600; font-style: italic;
  font-size: clamp(36px, 4.6vw, 64px); line-height: 0.98; letter-spacing: -0.02em;
  color: var(--gold-500); display: block;
}
.hero__credits {
  font-family: var(--font-body); font-size: 14px; color: var(--cream-300);
  line-height: 1.7; max-width: 480px; margin: 0 0 28px;
}
.hero__credits strong { color: var(--cream-100); font-weight: 500; }

.hero__playbill-row {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  gap: 22px; align-items: center;
  padding: 18px 0; margin: 0 0 28px;
  border-top: 1px solid var(--gold-800);
  border-bottom: 1px solid var(--gold-800);
}
@media (max-width: 1180px) {
  .hero__playbill-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .hero__playbill-divider {
    width: auto; height: 1px;
    background: var(--gold-800); opacity: 0.6;
  }
}
.hero__playbill-col { display: flex; flex-direction: column; gap: 3px; }
.hero__playbill-col .lbl {
  font-family: var(--font-ui); font-size: 10px; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-500);
}
.hero__playbill-col .val {
  font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--cream-50);
  line-height: 1.1;
}
.hero__playbill-col .val-sm {
  font-family: var(--font-ui); font-size: 13px; color: var(--cream-200); letter-spacing: 0.04em;
  font-weight: 500;
}
.hero__playbill-divider { width: 1px; height: 38px; background: var(--gold-800); }

.hero__ctas { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

@media (max-width: 900px) {
  .hero { min-height: 0; padding: 56px 0 56px; }
  .hero__container { grid-template-columns: 1fr; gap: 40px; }
  .hero__poster { max-width: 340px; margin: 0 auto; }
  .hero__content { align-items: center; text-align: center; }
  .hero__copresent, .hero__credits { max-width: none; }
  .hero__playbill-row { width: 100%; }
  .hero__ctas { justify-content: center; }
}
@media (max-width: 520px) {
  .hero { padding: 44px 0 48px; }
  .hero::before { inset: 14px; }
  .hero::after { inset: 20px; }
  .hero__title-main { font-size: clamp(36px, 10vw, 48px); }
  .hero__title-sub { font-size: clamp(28px, 8vw, 40px); }
  .hero__title-of { font-size: 18px; }
  .hero__ctas { flex-direction: column; align-items: stretch; width: 100%; max-width: 280px; margin: 0 auto; }
  .hero__ctas .btn { justify-content: center; }
}

/* =========================================================
   GOLD CTA STRIP (AUDITION ◆ VOLUNTEER ◆ ATTEND)
   ========================================================= */
.cta-strip {
  background: var(--gold-600);
  padding: 20px 16px; text-align: center;
  font-family: var(--font-ui); font-size: 14px; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--viridian-900);
  position: relative;
}
.cta-strip::before, .cta-strip::after {
  content: ''; position: absolute; left: 0; right: 0; height: 1px; background: var(--gold-800); opacity: 0.3;
}
.cta-strip::before { top: 6px; }
.cta-strip::after { bottom: 6px; }
.cta-strip a {
  color: inherit; text-decoration: none; padding: 6px 12px;
  transition: color var(--dur-fast) var(--ease-out);
}
.cta-strip a:hover { color: var(--viridian-700); }
.cta-strip .diamond { margin: 0 6px; color: var(--viridian-800); font-size: 11px; vertical-align: 1px; }

@media (max-width: 520px) {
  .cta-strip { letter-spacing: 0.16em; font-size: 13px; padding: 16px 12px; }
  .cta-strip a { padding: 4px 6px; display: inline-block; }
  .cta-strip .diamond { margin: 0 2px; font-size: 9px; }
}

/* =========================================================
   SHOW CARDS (upcoming shows grid)
   ========================================================= */
.shows-section { padding: clamp(72px, 9vw, 112px) 0 clamp(56px, 7vw, 88px); background: var(--cream-50); }
.shows-grid { display: grid; gap: 28px; grid-template-columns: repeat(3, 1fr); margin-top: 48px; }
@media (max-width: 900px) { .shows-grid { grid-template-columns: 1fr; gap: 24px; } }

/* Featured single show — the replacement for the 3-up grid */
.featured-show { max-width: 980px; margin: 56px auto 0; }
.featured-show__card {
  display: grid; grid-template-columns: 1.1fr 1.5fr; gap: 0;
  background: #fff; border: 1px solid var(--cream-200);
  box-shadow: var(--shadow-sm); text-decoration: none; color: inherit;
  cursor: pointer; overflow: hidden;
  transition: box-shadow var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}
.featured-show__card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
@media (max-width: 820px) { .featured-show__card { grid-template-columns: 1fr; } }
.featured-show__poster {
  aspect-ratio: 4 / 5; background-size: cover; background-position: center;
  background-color: var(--curtain-900); position: relative; min-height: 420px;
}
@media (max-width: 820px) { .featured-show__poster { min-height: 0; aspect-ratio: 3 / 4; } }
.featured-show__body { padding: 44px 48px; display: flex; flex-direction: column; justify-content: center; }
@media (max-width: 820px) { .featured-show__body { padding: 32px 28px 36px; } }
.featured-show__title {
  font-family: var(--font-display); font-weight: 600; letter-spacing: -0.02em;
  font-size: clamp(30px, 3vw + 0.4rem, 44px); line-height: 1.05;
  color: var(--fg-strong); margin: 10px 0 14px; text-wrap: balance;
}
.featured-show__blurb {
  font-family: var(--font-body); font-size: 17px; line-height: 1.65;
  color: var(--fg-muted); margin: 0 0 28px; max-width: 460px;
}
.featured-show__meta {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  padding: 20px 0; margin-bottom: 28px;
  border-top: 1px solid var(--gold-600);
  border-bottom: 1px solid var(--cream-200);
}
@media (max-width: 560px) { .featured-show__meta { grid-template-columns: 1fr; gap: 12px; } }
.featured-show__meta .lbl {
  font-family: var(--font-ui); font-size: 10px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-700);
  margin-bottom: 6px;
}
.featured-show__meta .val {
  font-family: var(--font-display); font-size: 17px; color: var(--fg-strong);
  font-weight: 600; line-height: 1.3; letter-spacing: -0.005em;
}
.featured-show__ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.future-seasons {
  max-width: 680px; margin: 56px auto 0; text-align: center;
  padding: 32px 24px 0;
}
.future-seasons__rule { width: 48px; height: 1px; background: var(--gold-600); margin: 0 auto 18px; }
.future-seasons .eyebrow { margin-bottom: 12px; }
.future-seasons p {
  font-family: var(--font-accent); font-style: italic; font-weight: 500;
  font-size: 20px; line-height: 1.5; color: var(--fg-muted); margin: 0; text-wrap: balance;
}
.future-seasons p a { color: var(--viridian-700); text-decoration: underline; text-decoration-color: color-mix(in oklab, var(--viridian-700) 40%, transparent); cursor: pointer; }
.future-seasons p a:hover { text-decoration-color: currentColor; }

.show-card {
  background: #fff; border: 1px solid var(--cream-200); border-radius: 8px;
  overflow: hidden; text-decoration: none; color: inherit;
  display: flex; flex-direction: column; cursor: pointer;
  transition: box-shadow var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
  position: relative;
}
.show-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.show-card__poster {
  aspect-ratio: 4 / 5; background: var(--curtain-900); background-size: cover; background-position: center;
  position: relative; overflow: hidden;
}
.show-card__poster--placeholder {
  background:
    linear-gradient(135deg, rgba(192,156,92,0.08), transparent 60%),
    var(--viridian-900);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.show-card__poster--placeholder::before {
  content: ''; position: absolute; inset: 14px; border: 1px solid rgba(192,156,92,0.35);
}
.show-card__poster-title {
  font-family: var(--font-display); font-style: italic; font-weight: 600;
  color: var(--cream-50); text-align: center; padding: 0 24px;
  font-size: 26px; line-height: 1.15; letter-spacing: -0.01em;
  text-wrap: balance;
  position: relative; z-index: 2;
}
.show-card__poster-title::before {
  content: ''; display: block; width: 40px; height: 1px; background: var(--gold-500);
  margin: 0 auto 14px;
}
.show-card__badge {
  position: absolute; top: 14px; left: 14px; z-index: 3;
  background: var(--gold-600); color: var(--viridian-900);
  font-family: var(--font-ui); font-size: 10px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 6px 10px; border-radius: 2px;
}
.show-card__body { padding: 24px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.show-card__eyebrow {
  color: var(--gold-700); font-family: var(--font-ui); font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600;
  margin-bottom: 8px;
}
.show-card__title {
  font-family: var(--font-display); font-weight: 600;
  font-size: 26px; line-height: 1.1; letter-spacing: -0.02em;
  color: var(--fg-strong); margin: 0 0 12px;
}
.show-card__blurb {
  font-family: var(--font-body); font-size: 15px; color: var(--fg-muted);
  line-height: 1.6; margin: 0 0 18px; flex: 1;
}
.show-card__meta {
  padding-top: 16px; border-top: 1px solid var(--cream-200);
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--font-ui); font-size: 13px;
}
.show-card__meta .dates { color: var(--viridian-800); font-weight: 600; letter-spacing: 0.02em; }
.show-card__meta .arrow { color: var(--gold-700); font-size: 16px; transition: transform var(--dur-fast) var(--ease-out); }
.show-card:hover .show-card__meta .arrow { transform: translateX(4px); }

/* =========================================================
   ABOUT / PARTNER SECTION
   ========================================================= */
.about-section {
  background: var(--cream-100);
  padding: clamp(80px, 10vw, 128px) 0;
  position: relative;
  overflow: hidden;
}
.about-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-600) 30%, var(--gold-600) 70%, transparent);
  opacity: 0.5;
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 48px; } }

.about-copy .eyebrow { margin-bottom: 14px; }
.about-copy .rule-gold { margin: 0 0 22px; }
.about-copy h2 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(34px, 3.8vw, 52px); line-height: 1.08; letter-spacing: -0.02em;
  color: var(--fg-strong); margin: 0 0 22px; text-wrap: balance;
}
.about-copy h2 em { font-family: var(--font-accent); font-style: italic; font-weight: 500; color: var(--viridian-700); }
.about-copy p {
  font-family: var(--font-body); font-size: var(--fs-lead);
  line-height: 1.7; color: var(--fg); margin: 0 0 18px;
}
.about-copy .lede {
  font-family: var(--font-accent); font-style: italic; font-weight: 500;
  font-size: 22px; color: var(--viridian-800); line-height: 1.5; margin-bottom: 28px;
  padding-bottom: 0.1em;
}
.about-copy .signature {
  margin-top: 28px; font-family: var(--font-accent); font-style: italic;
  color: var(--fg-muted); font-size: 16px;
}
.about-copy .cta-pair { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }

.about-figure {
  position: relative;
}
.about-figure__card {
  background: #fff; border: 1px solid var(--cream-200);
  padding: 36px 36px 32px; position: relative;
  box-shadow: var(--shadow-md);
}
.about-figure__card::before {
  content: ''; position: absolute; inset: 8px; border: 1px solid var(--gold-300); pointer-events: none;
}
.about-figure__stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-top: 1px solid var(--gold-600);
  border-bottom: 1px solid var(--gold-600);
  margin: 28px 0;
}
.about-figure__stat {
  padding: 20px 16px; text-align: center;
  border-right: 1px solid var(--cream-200);
}
.about-figure__stat:last-child { border-right: 0; }
.about-figure__stat .num {
  font-family: var(--font-display); font-weight: 600; font-size: 44px;
  color: var(--viridian-700); line-height: 1; letter-spacing: -0.02em;
}
.about-figure__stat .lbl {
  font-family: var(--font-ui); font-size: 10px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--fg-muted);
  margin-top: 10px;
}
.about-figure__partner {
  text-align: center; padding: 8px 0 0;
}
.about-figure__partner .lbl {
  font-family: var(--font-ui); font-size: 11px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-700);
  margin-bottom: 10px;
}
.about-figure__partner .names {
  font-family: var(--font-display); font-size: 20px; color: var(--fg-strong);
  line-height: 1.3; font-weight: 600;
}
.about-figure__partner .names em {
  font-family: var(--font-accent); font-style: italic; font-weight: 500;
  color: var(--gold-700); font-size: 17px; display: block; margin: 6px 0;
}
.about-figure__partner .location {
  font-family: var(--font-body); font-size: 14px; color: var(--fg-muted); margin-top: 10px;
}

/* About section — warm plate (no stats box) */
.about-figure--plate { display: flex; justify-content: center; }
.about-plate {
  text-align: center;
  padding: 56px 48px;
  position: relative;
  max-width: 460px;
  width: 100%;
}
.about-plate::before, .about-plate::after {
  content: ''; position: absolute; left: 50%; transform: translateX(-50%);
  width: 140px; height: 1px; background: var(--gold-600); opacity: 0.55;
}
.about-plate::before { top: 0; }
.about-plate::after { bottom: 0; }
.about-plate__mono {
  width: 120px; height: 120px; margin: 0 auto 28px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--gold-600); border-radius: 50%;
  background: rgba(255,255,255,0.4);
}
.about-plate__mono img { width: 92px; height: 92px; opacity: 0.85; }
.about-plate__presents {
  font-family: var(--font-ui); font-size: 11px; font-weight: 600;
  letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold-700);
  margin-bottom: 14px;
}
.about-plate__names {
  font-family: var(--font-display); font-weight: 600; font-size: 22px;
  color: var(--viridian-800); line-height: 1.4; letter-spacing: -0.005em;
}
.about-plate__names span {
  font-family: var(--font-accent); font-style: italic; font-weight: 500;
  color: var(--gold-700); font-size: 18px; display: block; margin: 4px 0;
}
.about-plate__rule { margin: 22px auto !important; width: 56px !important; }
.about-plate__place {
  display: inline-flex; gap: 16px; align-items: center; justify-content: center;
  font-family: var(--font-accent); font-style: italic; font-weight: 500;
  font-size: 16px; color: var(--fg-muted);
}
.about-plate__place .dot { color: var(--gold-600); font-size: 10px; opacity: 0.8; }
@media (max-width: 560px) {
  .about-plate { padding: 40px 20px; }
  .about-plate__place { flex-direction: column; gap: 6px; }
  .about-plate__place .dot { transform: rotate(90deg); }
}
  position: absolute; top: -28px; right: -28px;
  width: 88px; height: 88px;
  background: var(--viridian-900);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--gold-600);
  transform: rotate(-8deg);
}
.about-figure__badge img { width: 70px; height: 70px; }
@media (max-width: 900px) {
  .about-figure__badge { width: 72px; height: 72px; top: -20px; right: -12px; }
  .about-figure__badge img { width: 56px; height: 56px; }
}

/* =========================================================
   GET INVOLVED — dark band
   ========================================================= */
.involve-section {
  background: var(--viridian-900);
  color: var(--cream-100);
  padding: clamp(80px, 10vw, 120px) 0;
  position: relative;
}
.involve-section .eyebrow { color: var(--gold-500); }
.involve-section h2 { color: var(--cream-50); }
.involve-section .section-header p { color: var(--cream-200); }

.involve-grid {
  display: grid; gap: 0; margin-top: 56px;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--viridian-700);
  border-bottom: 1px solid var(--viridian-700);
}
@media (max-width: 900px) { .involve-grid { grid-template-columns: 1fr; } }

.involve-item {
  padding: 48px 36px; text-align: center;
  border-right: 1px solid var(--viridian-700);
  transition: background var(--dur-base) var(--ease-out);
  display: flex; flex-direction: column; align-items: center;
  position: relative;
}
.involve-item:last-child { border-right: 0; }
@media (max-width: 900px) {
  .involve-item { border-right: 0; border-bottom: 1px solid var(--viridian-700); }
  .involve-item:last-child { border-bottom: 0; }
}
.involve-item:hover { background: rgba(192,156,92,0.04); }
.involve-item__num {
  font-family: var(--font-accent); font-style: italic; font-weight: 500;
  color: var(--gold-500); font-size: 16px; letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.involve-item__icon {
  color: var(--gold-500); margin-bottom: 20px;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--gold-700); border-radius: 50%;
}
.involve-item__title {
  font-family: var(--font-display); font-weight: 600; font-size: 26px;
  color: var(--cream-50); margin: 0 0 12px; letter-spacing: -0.01em;
}
.involve-item__body {
  font-family: var(--font-body); font-size: 15px; color: var(--cream-200);
  line-height: 1.6; margin: 0 0 24px; max-width: 280px;
}
.involve-item__link {
  font-family: var(--font-ui); font-size: 12px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-500);
  text-decoration: none; cursor: pointer;
  padding-bottom: 4px; border-bottom: 1px solid var(--gold-700);
  transition: color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}
.involve-item__link:hover { color: var(--gold-400); border-color: var(--gold-500); }

/* =========================================================
   QUOTE / TESTIMONY BAND
   ========================================================= */
.quote-section {
  padding: clamp(72px, 9vw, 120px) 0;
  background: var(--cream-50);
  text-align: center;
}
.quote-section__quote {
  font-family: var(--font-accent); font-style: italic; font-weight: 500;
  font-size: clamp(22px, 2.2vw + 0.6rem, 32px); line-height: 1.4;
  color: var(--viridian-800); max-width: 780px; margin: 0 auto; text-wrap: balance;
}
.quote-section__quote::before, .quote-section__quote::after {
  display: block; color: var(--gold-600); font-family: var(--font-display);
  font-size: 48px; line-height: 0.5; margin: 0 auto 22px; opacity: 0.7;
}
.quote-section__quote::before { content: '“'; }
.quote-section__attrib {
  margin-top: 28px; font-family: var(--font-ui); font-size: 12px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--fg-muted);
}
.quote-section__attrib strong { color: var(--viridian-700); font-weight: 600; }

/* =========================================================
   NEWSLETTER BAND
   ========================================================= */
.newsletter-section {
  background: var(--cream-100);
  padding: clamp(56px, 7vw, 88px) 0;
  border-top: 1px solid var(--cream-200);
  border-bottom: 1px solid var(--cream-200);
}
.newsletter-inner {
  max-width: 760px; margin: 0 auto; text-align: center; padding: 0 var(--gutter);
}
.newsletter-inner h3 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(26px, 2.6vw + 0.4rem, 36px); line-height: 1.15;
  letter-spacing: -0.015em; color: var(--fg-strong); margin: 0 0 10px;
}
.newsletter-inner p {
  font-family: var(--font-body); font-size: 16px; color: var(--fg-muted);
  line-height: 1.6; margin: 0 0 24px;
}
.newsletter-form { display: flex; gap: 10px; max-width: 440px; margin: 0 auto; }
.newsletter-form input {
  flex: 1; padding: 13px 16px; border: 1px solid var(--cream-300);
  background: #fff; border-radius: 4px; font-family: var(--font-ui);
  font-size: 14px; color: var(--fg); outline: none;
  transition: border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.newsletter-form input:focus { border-color: var(--gold-600); box-shadow: var(--focus-ring); }
.newsletter-form .btn { flex-shrink: 0; }
@media (max-width: 560px) {
  .newsletter-form { flex-direction: column; }
  .newsletter-form .btn { width: 100%; justify-content: center; }
}
.newsletter-tiny {
  font-family: var(--font-ui); font-size: 12px; color: var(--fg-subtle);
  margin-top: 14px;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--viridian-900); color: var(--cream-100); }
.site-footer__inner {
  padding: 72px 0 36px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px;
}
@media (max-width: 820px) {
  .site-footer__inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .site-footer__brand { grid-column: 1 / -1; }
}
.site-footer__brand { max-width: 320px; }
.site-footer__brand img { height: 56px; filter: brightness(0) invert(1) opacity(0.92); }
.site-footer__logo {
  /* Inverted logo — cream wordmark + gold ornament, sits directly on the dark footer */
  height: auto !important;
  width: 100%;
  max-width: 240px;
  filter: none !important;
  background: transparent;
  padding: 0;
  display: block;
}
.site-footer__brand .name {
  font-family: var(--font-display); font-size: 22px; color: var(--cream-50);
  margin-top: 14px; line-height: 1.2; font-weight: 600;
}
.site-footer__brand .tag {
  font-family: var(--font-accent); font-style: italic; color: var(--gold-400);
  font-size: 15px; margin-top: 12px; line-height: 1.5;
}
.site-footer h4 {
  font-family: var(--font-ui); font-size: 11px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-500);
  margin: 0 0 16px;
}
.site-footer ul {
  list-style: none; padding: 0; margin: 0;
  font-family: var(--font-ui); font-size: 14px; line-height: 2.1;
}
.site-footer ul a {
  color: var(--cream-100); text-decoration: none; cursor: pointer;
  transition: color var(--dur-fast) var(--ease-out);
}
.site-footer ul a:hover { color: var(--gold-400); }
.site-footer__bar {
  border-top: 1px solid var(--viridian-700); padding: 22px 0 28px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-family: var(--font-ui); font-size: 12px; color: var(--cream-300);
}
.site-footer__bar .socials { display: flex; gap: 14px; }
.site-footer__bar .socials a { color: var(--cream-200); cursor: pointer; }
.site-footer__bar .socials a:hover { color: var(--gold-400); }

/* =========================================================
   ABOUT PAGE
   ========================================================= */
.page-hero {
  background: var(--cream-100);
  padding: clamp(72px, 9vw, 120px) 0 clamp(56px, 7vw, 88px);
  border-bottom: 1px solid var(--cream-200);
  text-align: center;
  position: relative;
}
.page-hero .eyebrow { margin-bottom: 16px; white-space: nowrap; letter-spacing: 0.2em; }
.page-hero .rule-gold { margin: 0 auto 24px; }
.page-hero h1 {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(36px, 5.5vw + 0.5rem, 76px); line-height: 1.12; letter-spacing: -0.03em;
  color: var(--fg-strong); margin: 0 0 40px; text-wrap: balance;
  padding-bottom: 0.15em;
}
.page-hero h1 em {
  font-family: var(--font-accent); font-style: italic; font-weight: 500;
  color: var(--viridian-700);
}
.page-hero p {
  font-family: var(--font-accent); font-style: italic; font-weight: 500;
  font-size: clamp(20px, 1.8vw + 0.5rem, 26px); color: var(--fg-muted);
  line-height: 1.45; max-width: 680px; margin: 0 auto; text-wrap: balance;
}

.prose-section { padding: clamp(72px, 9vw, 112px) 0; background: var(--cream-50); }
.prose-grid { display: grid; grid-template-columns: 240px 1fr; gap: 72px; max-width: 1080px; margin: 0 auto; padding: 0 var(--gutter); }
@media (max-width: 900px) { .prose-grid { grid-template-columns: 1fr; gap: 20px; } }
.prose-grid h2 {
  font-family: var(--font-display); font-weight: 600;
  font-size: 32px; letter-spacing: -0.02em; color: var(--viridian-800);
  margin: 0; line-height: 1.15; position: sticky; top: 100px;
}
@media (max-width: 900px) { .prose-grid h2 { position: static; } }
.prose { max-width: 680px; }
.prose .lede {
  font-family: var(--font-accent); font-style: italic; font-weight: 500;
  font-size: 26px; color: var(--viridian-800); line-height: 1.5; margin: 0 0 36px;
  padding-bottom: 0.12em;
}
.prose p {
  font-family: var(--font-body); font-size: 18px; line-height: 1.7;
  color: var(--fg); margin: 0 0 18px;
}
.prose p strong { color: var(--fg-strong); font-weight: 600; }
.prose blockquote {
  border-left: 2px solid var(--gold-600); padding: 4px 0 4px 24px;
  margin: 28px 0; font-family: var(--font-accent); font-style: italic;
  font-size: 22px; color: var(--viridian-800); font-weight: 500; line-height: 1.45;
}

/* Principles grid */
.principles-section { background: var(--cream-100); padding: clamp(72px, 9vw, 112px) 0; }
.principles-grid { display: grid; gap: 28px; grid-template-columns: repeat(3, 1fr); margin-top: 48px; }
@media (max-width: 900px) { .principles-grid { grid-template-columns: 1fr; } }
.principle {
  background: #fff; border: 1px solid var(--cream-200);
  padding: 36px 32px; position: relative;
}
.principle__num {
  font-family: var(--font-accent); font-style: italic; font-weight: 500;
  color: var(--gold-600); font-size: 22px; line-height: 1;
  position: absolute; top: 20px; right: 24px; letter-spacing: 0.05em;
}
.principle__rule { width: 32px; height: 1px; background: var(--gold-600); margin-bottom: 18px; }
.principle h3 {
  font-family: var(--font-display); font-weight: 600; font-size: 24px;
  color: var(--viridian-800); margin: 0 0 10px; letter-spacing: -0.015em;
}
.principle p {
  font-family: var(--font-body); font-size: 15px; color: var(--fg);
  line-height: 1.65; margin: 0;
}

/* Team / history timeline */
.timeline-section { padding: clamp(72px, 9vw, 112px) 0; background: var(--cream-50); }
.timeline { max-width: 720px; margin: 48px auto 0; padding: 0 var(--gutter); }
.timeline__item { display: grid; grid-template-columns: 110px 1fr; gap: 40px; padding: 28px 0; border-top: 1px solid var(--cream-200); }
.timeline__item:first-child { border-top: 0; }
.timeline__year {
  font-family: var(--font-display); font-weight: 600; font-size: 28px;
  color: var(--gold-700); letter-spacing: 0.02em; line-height: 1.1;
}
.timeline__body h4 {
  font-family: var(--font-display); font-weight: 600; font-size: 22px;
  color: var(--fg-strong); margin: 0 0 8px; letter-spacing: -0.01em; line-height: 1.2;
}
.timeline__body p {
  font-family: var(--font-body); font-size: 16px; color: var(--fg-muted);
  line-height: 1.65; margin: 0;
}

/* =========================================================
   TWEAKS PANEL
   ========================================================= */
.tweaks-panel {
  position: fixed; bottom: 20px; right: 20px; z-index: 100;
  background: var(--bg-surface); border: 1px solid var(--cream-300);
  border-radius: 8px; box-shadow: var(--shadow-lg);
  padding: 18px 20px; width: 280px;
  font-family: var(--font-ui); font-size: 13px; color: var(--fg);
}
.tweaks-panel h5 {
  margin: 0 0 14px; font-family: var(--font-ui); font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-700);
  display: flex; justify-content: space-between; align-items: center;
}
.tweaks-panel h5 button {
  background: transparent; border: 0; cursor: pointer; color: var(--fg-muted); padding: 0;
}
.tweaks-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; gap: 12px; }
.tweaks-row label { font-size: 12px; color: var(--fg); font-weight: 500; }
.tweaks-row select, .tweaks-row input[type="text"] {
  padding: 6px 10px; border: 1px solid var(--cream-300); border-radius: 4px;
  font-family: var(--font-ui); font-size: 12px; background: #fff; color: var(--fg);
  min-width: 120px;
}
.tweaks-row input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--viridian-700); }

/* =========================================================
   DONATE PAGE
   ========================================================= */
.gift-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  max-width: 960px; margin: 0 auto 48px;
}
@media (max-width: 820px) { .gift-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .gift-grid { grid-template-columns: 1fr; gap: 16px; } }

/* Variants — two-column dates (auditions), three-column prepare grid */
.gift-grid--dates { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 520px) { .gift-grid--dates { grid-template-columns: 1fr; } }
.gift-grid--three { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 720px) { .gift-grid--three { grid-template-columns: 1fr; } }
.gift-card {
  background: #fff; border: 1px solid var(--cream-200);
  padding: 28px 22px; text-align: center; position: relative;
}
.gift-card__amount {
  font-family: var(--font-display); font-weight: 600; font-size: 32px;
  color: var(--viridian-700); letter-spacing: -0.02em; line-height: 1;
}
.gift-card__rule { width: 28px; height: 1px; background: var(--gold-600); margin: 14px auto; }
.gift-card__covers {
  font-family: var(--font-body); font-size: 15px; color: var(--fg);
  line-height: 1.5;
}

.donate-ctas {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  margin-top: 16px;
}
.donate-fineprint {
  font-family: var(--font-ui); font-size: 13px; color: var(--fg-muted);
  text-align: center; margin: 20px auto 0; max-width: 640px; line-height: 1.55;
}

.tier-grid {
  display: grid; gap: 20px; margin-top: 8px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  justify-content: center;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.tier-card {
  background: #fff; border: 1px solid var(--cream-200);
  padding: 28px 24px; text-align: center; position: relative;
  display: flex; flex-direction: column;
  transition: box-shadow var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}
.tier-card:hover {
  box-shadow: var(--shadow-md); transform: translateY(-2px);
  border-color: var(--gold-500);
}
.tier-card__name {
  font-family: var(--font-ui); font-size: 11px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-700);
  margin-bottom: 10px;
}
.tier-card__price {
  font-family: var(--font-display); font-weight: 600; font-size: 38px;
  color: var(--viridian-800); letter-spacing: -0.02em; line-height: 1;
}
.tier-card__rule { width: 32px; height: 1px; background: var(--gold-600); margin: 16px auto; }
.tier-card__desc {
  font-family: var(--font-body); font-size: 14px; color: var(--fg);
  line-height: 1.6; flex: 1;
}

.contact-section { padding: clamp(72px, 9vw, 112px) 0; background: var(--cream-50); }
.contact-card {
  max-width: 560px; margin: 0 auto; background: #fff;
  border: 1px solid var(--cream-200); padding: 32px 36px;
  box-shadow: var(--shadow-sm);
}
.contact-row {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 0; border-top: 1px solid var(--cream-200);
}
.contact-row:first-child { border-top: 0; padding-top: 0; }
.contact-row svg { color: var(--viridian-700); flex-shrink: 0; margin-top: 2px; }
.contact-row__lbl {
  font-family: var(--font-ui); font-size: 11px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-700);
  margin-bottom: 4px;
}
.contact-row__val {
  font-family: var(--font-body); font-size: 17px; color: var(--fg-strong);
  text-decoration: none;
}
a.contact-row__val:hover { color: var(--viridian-700); text-decoration: underline; }
.contact-tagline {
  font-family: var(--font-accent); font-style: italic; font-size: 18px;
  color: var(--fg-muted); text-align: center; margin: 32px auto 0;
}

/* =========================================================
   VOLUNTEER PAGE
   ========================================================= */
.specific-needs-grid {
  display: grid; gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1100px; margin: 0 auto;
}
@media (max-width: 900px) { .specific-needs-grid { grid-template-columns: 1fr; } }
.specific-need {
  background: #fff; border: 1px solid var(--cream-200);
  padding: 28px 26px 26px; position: relative;
  display: flex; flex-direction: column; gap: 4px;
  box-shadow: var(--shadow-sm);
}
.specific-need__label {
  font-family: var(--font-ui); font-size: 10px; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-700);
  margin-bottom: 6px;
}
.specific-need__role {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(22px, 2.4vw, 26px); letter-spacing: -0.01em;
  color: var(--viridian-800); margin: 0 0 14px;
}
.specific-need__rule { width: 36px; height: 2px; background: var(--gold-600); margin-bottom: 14px; }
.specific-need__note {
  font-family: var(--font-body); font-size: 15px; color: var(--fg);
  line-height: 1.55; flex: 1; margin-bottom: 20px;
}
.specific-need .btn--sm {
  font-size: 12px; padding: 9px 14px; align-self: flex-start;
  display: inline-flex; gap: 6px; align-items: center;
}

.volunteer-grid {
  display: grid; gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1040px) { .volunteer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .volunteer-grid { grid-template-columns: 1fr; } }
.volunteer-team {
  background: #fff; border: 1px solid var(--cream-200);
  padding: 26px 26px 22px;
  transition: border-color var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.volunteer-team:hover { border-color: var(--gold-500); box-shadow: var(--shadow-sm); }
.volunteer-team__head {
  display: flex; gap: 12px; align-items: center; margin-bottom: 14px;
}
.volunteer-team__head svg { color: var(--gold-700); flex-shrink: 0; }
.volunteer-team__head h3 {
  font-family: var(--font-display); font-weight: 600;
  font-size: 20px; letter-spacing: -0.01em; margin: 0;
  color: var(--viridian-800);
}
.volunteer-team__rule { height: 1px; background: var(--cream-200); margin-bottom: 16px; }
.volunteer-team__roles {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 6px;
}
.volunteer-team__roles li {
  font-family: var(--font-ui); font-size: 12px; font-weight: 500;
  color: var(--fg); letter-spacing: 0.02em;
  padding: 6px 11px;
  background: var(--cream-100); border: 1px solid var(--cream-200);
  border-radius: 999px;
  line-height: 1;
}

.btn--sm { padding: 9px 14px; font-size: 12px; }

/* =========================================================
   PRODUCTION SLIDESHOW (home Shows section)
   ========================================================= */
.production-slideshow {
  max-width: 960px; margin: 0 auto;
}
.production-slideshow__stage {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--viridian-900);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.production-slide {
  position: absolute; inset: 0; margin: 0;
  opacity: 0; visibility: hidden; transition: opacity 0.6s var(--ease-out);
  display: flex; flex-direction: column;
}
.production-slide.is-active { opacity: 1; visibility: visible; }
.production-slide__img-wrap {
  flex: 1; position: relative; background: var(--viridian-900);
}
.production-slide__img-wrap img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.production-slide__img-wrap--placeholder {
  background:
    repeating-linear-gradient(45deg,
      rgba(192,156,92,0.06) 0 2px,
      transparent 2px 14px),
    linear-gradient(135deg, var(--viridian-800) 0%, var(--viridian-900) 100%);
}
.production-slide__img-wrap--placeholder::before {
  content: "";
  position: absolute; inset: 28px;
  border: 1px solid rgba(192, 156, 92, 0.3);
}
.production-slide__img-wrap--placeholder::after {
  content: "Photos coming soon";
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--font-accent); font-style: italic;
  color: rgba(240, 226, 195, 0.55); font-size: 18px; letter-spacing: 0.04em;
}
.production-slide figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 18px 24px;
  background: linear-gradient(to top, rgba(12,40,33,0.95) 0%, rgba(12,40,33,0.55) 60%, transparent 100%);
  color: var(--cream-50);
  font-family: var(--font-accent); font-style: italic; font-size: 17px;
  letter-spacing: 0.02em;
}

.production-slideshow__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 999px;
  background: rgba(12,40,33,0.6);
  border: 1px solid rgba(192,156,92,0.35);
  color: var(--cream-50);
  display: grid; place-items: center;
  cursor: pointer;
  transition: background var(--dur-base) var(--ease-out);
}
.production-slideshow__nav:hover { background: rgba(12,40,33,0.9); }
.production-slideshow__nav--prev { left: 14px; }
.production-slideshow__nav--next { right: 14px; }

.production-slideshow__dots {
  display: flex; gap: 10px; justify-content: center; margin-top: 22px;
}
.production-slideshow__dots .dot {
  width: 10px; height: 10px; border-radius: 999px;
  background: var(--cream-200);
  border: 1px solid var(--cream-300);
  cursor: pointer; padding: 0;
  transition: background var(--dur-base) var(--ease-out);
}
.production-slideshow__dots .dot.is-active {
  background: var(--gold-600); border-color: var(--gold-700);
}

/* =========================================================
   GALLERY PAGE
   ========================================================= */
.gallery-section { padding: clamp(48px, 7vw, 88px) 0 clamp(80px, 10vw, 120px); background: var(--cream-50); }
.gallery-meta {
  text-align: center; margin-bottom: 36px;
  padding-bottom: 28px; border-bottom: 1px solid var(--cream-200);
}
.gallery-grid {
  column-count: 3;
  column-gap: 14px;
}
@media (max-width: 900px) { .gallery-grid { column-count: 2; } }
@media (max-width: 560px) { .gallery-grid { column-count: 1; } }

.gallery-tile {
  position: relative; overflow: hidden; cursor: pointer;
  background: var(--viridian-900);
  border: 0; padding: 0;
  display: block; width: 100%;
  margin: 0 0 14px;
  break-inside: avoid;
  transition: transform var(--dur-base) var(--ease-out);
}
.gallery-tile:hover { transform: scale(1.01); }
.gallery-tile:focus-visible { outline: 2px solid var(--gold-500); outline-offset: 3px; }
.gallery-tile img {
  width: 100%; height: auto;
  display: block;
  transition: transform var(--dur-slow) var(--ease-out), filter var(--dur-base) var(--ease-out);
}
.gallery-tile:hover img { transform: scale(1.04); filter: brightness(0.92); }

/* Placeholder state (image failed to load) — shows a subtle gold-on-green stage pattern with the caption */
.gallery-tile--placeholder {
  background:
    linear-gradient(135deg, var(--viridian-800) 0%, var(--viridian-900) 100%);
}
.gallery-tile--placeholder::before {
  content: "";
  position: absolute; inset: 14px;
  border: 1px solid rgba(192, 156, 92, 0.35);
}
.gallery-tile--placeholder::after {
  content: "✦";
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--font-display); color: var(--gold-500); font-size: 32px;
  opacity: 0.55;
}

.gallery-tile__overlay {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 18px 16px 14px;
  background: linear-gradient(to top, rgba(12, 40, 33, 0.92) 0%, rgba(12, 40, 33, 0.55) 55%, transparent 100%);
  display: flex; flex-direction: column; gap: 4px;
  text-align: left;
  transform: translateY(4px);
  opacity: 0.92;
  transition: opacity var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
  pointer-events: none;
}
.gallery-tile:hover .gallery-tile__overlay { opacity: 1; transform: translateY(0); }
.gallery-tile__show {
  font-family: var(--font-ui); font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-400);
}
.gallery-tile__caption {
  font-family: var(--font-accent); font-style: italic; font-size: 16px;
  color: var(--cream-50); line-height: 1.3;
}

/* Lightbox */
.gallery-lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(10, 28, 24, 0.94);
  display: grid; place-items: center;
  animation: galleryFade 0.22s var(--ease-out);
}
@keyframes galleryFade { from { opacity: 0; } to { opacity: 1; } }
.gallery-lightbox__figure {
  max-width: min(88vw, 1200px);
  max-height: 86vh;
  display: flex; flex-direction: column; gap: 18px;
}
.gallery-lightbox__figure img {
  max-width: 100%; max-height: 72vh;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.gallery-lightbox__figure figcaption {
  text-align: center; display: flex; flex-direction: column; gap: 6px;
}
.gallery-lightbox__show {
  font-family: var(--font-ui); font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-400);
}
.gallery-lightbox__caption {
  font-family: var(--font-accent); font-style: italic; font-size: 20px;
  color: var(--cream-50);
}
.gallery-lightbox__close,
.gallery-lightbox__nav {
  position: absolute; background: transparent; border: 0; cursor: pointer;
  color: var(--cream-50); padding: 10px; border-radius: 999px;
  transition: background var(--dur-base) var(--ease-out);
}
.gallery-lightbox__close:hover,
.gallery-lightbox__nav:hover { background: rgba(255,255,255,0.08); }
.gallery-lightbox__close { top: 24px; right: 24px; }
.gallery-lightbox__nav--prev { left: 24px; top: 50%; transform: translateY(-50%); }
.gallery-lightbox__nav--next { right: 24px; top: 50%; transform: translateY(-50%); }
@media (max-width: 600px) {
  .gallery-lightbox__nav--prev { left: 8px; }
  .gallery-lightbox__nav--next { right: 8px; }
}

/* =========================================================
   CASTING / CHARACTER BREAKDOWN
   ========================================================= */
.casting-section { background: var(--cream-50); }

.casting-sub {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  border-bottom: 1px solid var(--cream-200);
  padding-bottom: 14px; margin: 48px 0 28px;
}
.casting-sub__label {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(24px, 2.4vw, 32px); letter-spacing: -0.01em;
  color: var(--fg-strong);
}
.casting-sub__meta {
  font-family: var(--font-ui); font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--fg-muted);
}

.roles-grid {
  display: grid; gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 820px) { .roles-grid { grid-template-columns: 1fr; } }

.role-card {
  background: #fff; border: 1px solid var(--cream-200);
  padding: 32px 30px; position: relative;
  display: flex; flex-direction: column;
}
.role-card--featured {
  grid-column: 1 / -1;
  border-color: var(--gold-500);
  background: linear-gradient(180deg, #fff 0%, var(--cream-100) 100%);
}
.role-card--featured::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--gold-600);
}

.role-card__head {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 20px; margin-bottom: 16px; flex-wrap: wrap;
}
.role-card__name {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(24px, 2.2vw, 30px); letter-spacing: -0.015em;
  color: var(--viridian-800); margin: 0; line-height: 1.1;
}
.role-card__voice { text-align: right; }
.role-card__voice-label {
  display: block;
  font-family: var(--font-ui); font-size: 12px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-700);
}
.role-card__range {
  display: block; margin-top: 4px;
  font-family: var(--font-ui); font-size: 13px;
  color: var(--fg-muted); font-variant-numeric: tabular-nums;
}
.role-card__range em {
  font-style: italic; color: var(--fg-muted); opacity: 0.85;
}
@media (max-width: 560px) {
  .role-card__voice { text-align: left; }
}

.role-card__desc {
  font-family: var(--font-body); font-size: 16px; line-height: 1.65;
  color: var(--fg); margin: 0 0 18px; text-wrap: pretty;
}

.role-card__songs {
  border-top: 1px solid var(--cream-200); padding-top: 14px; margin-top: auto;
}
.role-card__songs summary {
  font-family: var(--font-ui); font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-700); cursor: pointer;
  list-style: none; display: flex; align-items: center; gap: 8px;
  user-select: none;
}
.role-card__songs summary::-webkit-details-marker { display: none; }
.role-card__songs summary::after {
  content: '+'; margin-left: auto;
  font-family: var(--font-display); font-weight: 400; font-size: 18px;
  color: var(--gold-600); transition: transform var(--dur-fast) var(--ease-out);
}
.role-card__songs[open] summary::after { content: '−'; }
.role-card__songs p {
  font-family: var(--font-body); font-size: 14px; line-height: 1.65;
  color: var(--fg-muted); margin: 12px 0 0;
}

.role-card__note {
  margin-top: 20px; padding: 18px 20px;
  background: var(--cream-100); border-left: 3px solid var(--gold-600);
  font-family: var(--font-body); font-size: 15px; line-height: 1.6;
  color: var(--fg);
}
.role-card__note strong {
  color: var(--viridian-800); font-weight: 600;
}

.support-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 680px) { .support-grid { grid-template-columns: 1fr; } }
.support-card {
  background: #fff; border: 1px solid var(--cream-200);
  padding: 22px 24px;
}
.support-card--wide { grid-column: 1 / -1; }
.support-card h4 {
  font-family: var(--font-display); font-weight: 600;
  font-size: 20px; color: var(--viridian-800);
  margin: 0 0 8px; letter-spacing: -0.01em;
}
.support-card__meta {
  font-family: var(--font-ui); font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-700); margin-left: 4px;
}
.support-card p {
  font-family: var(--font-body); font-size: 15px; line-height: 1.6;
  color: var(--fg); margin: 0;
}

.casting-note {
  max-width: 720px; margin: 72px auto 0; text-align: center;
  padding: 36px 32px;
  border-top: 1px solid var(--cream-200);
  border-bottom: 1px solid var(--cream-200);
}
.casting-note p {
  font-family: var(--font-body); font-size: 16px; line-height: 1.65;
  color: var(--fg); margin: 0 0 16px;
}
.casting-note__list {
  list-style: none; padding: 0; margin: 20px 0;
  display: flex; flex-direction: column; gap: 8px; align-items: center;
}
.casting-note__list li {
  font-family: var(--font-display); font-weight: 600;
  font-size: 20px; color: var(--viridian-800);
  letter-spacing: -0.01em;
}
.casting-note__list li span {
  font-family: var(--font-ui); font-weight: 600;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-700); margin-left: 8px;
  vertical-align: middle;
}

/* Teal (dark) variant of the casting section — white cards pop on viridian */
.casting-section--teal { background: var(--viridian-900); }.casting-section--teal .section-header h2 { color: var(--cream-50); }
.casting-section--teal .section-header p { color: var(--viridian-200); }
.casting-section--teal .casting-sub { border-color: rgba(255,255,255,0.16); }
.casting-section--teal .casting-sub__label { color: var(--cream-50); }
.casting-section--teal .casting-sub__meta { color: var(--gold-400); }
.casting-section--teal .casting-note {
  border-color: rgba(255,255,255,0.16);
}
.casting-section--teal .casting-note .eyebrow { color: var(--gold-400); }
.casting-section--teal .casting-note p { color: var(--viridian-100); }
.casting-section--teal .casting-note__list li { color: var(--cream-50); }
.casting-section--teal .casting-note__list li span { color: var(--gold-400); }

/* Teal (dark) variant for any prose section with a section-header + white cards */
.prose-section--teal { background: var(--viridian-900); }
.prose-section--teal .section-header h2 { color: var(--cream-50); }
.prose-section--teal .section-header p { color: var(--viridian-200); }

/* =========================================================
   CAST LIST  (Cast & Crew page)
   ========================================================= */
.cast-block { max-width: 760px; margin: 0 auto; }

.cast-list { list-style: none; padding: 0; margin: 0; }
.cast-list__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 12px;
  padding: 15px 2px;
  border-bottom: 1px solid var(--cream-200);
}
.cast-list__row:first-child { border-top: 1px solid var(--cream-200); }
.cast-list__role {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(19px, 1.7vw, 24px); letter-spacing: -0.01em;
  color: var(--viridian-800); line-height: 1.15;
}
.cast-list__role small {
  display: block; margin-top: 4px;
  font-family: var(--font-ui); font-weight: 600; font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-700);
}
.cast-list__dots {
  align-self: center;
  border-bottom: 1px dotted var(--cream-400);
  opacity: 0.7;
}
.cast-list__name {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--fg-strong); white-space: nowrap;
}
.cast-list__name em {
  display: block;
  font-family: var(--font-ui); font-style: normal;
  font-size: 12px; color: var(--fg-muted); text-align: right;
  margin-top: 2px;
}
@media (max-width: 560px) {
  .cast-list__row { grid-template-columns: 1fr; gap: 3px; }
  .cast-list__dots { display: none; }
  .cast-list__name { white-space: normal; color: var(--fg-muted); }
  .cast-list__name em { text-align: left; }
}

.cast-ensemble { text-align: center; max-width: 760px; margin: 0 auto; }
.cast-ensemble__names {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.1vw, 27px); line-height: 1.7;
  color: var(--viridian-800); letter-spacing: -0.005em;
}
.cast-ensemble__names .sep { color: var(--gold-600); margin: 0 9px; font-style: normal; }
.cast-ensemble__forming {
  font-family: var(--font-accent); font-style: italic;
  font-size: clamp(18px, 1.6vw, 22px); color: var(--fg-muted);
}

.cast-stillcasting {
  max-width: 720px; margin: 0 auto; text-align: center;
  padding: 38px 32px;
  background: var(--cream-100);
  border-top: 1px solid var(--gold-500);
  border-bottom: 1px solid var(--gold-500);
}
.cast-stillcasting__roles {
  display: flex; gap: 10px 14px; flex-wrap: wrap; justify-content: center;
  margin: 18px 0 26px;
}
.cast-stillcasting__roles span {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(18px, 1.7vw, 22px); color: var(--viridian-800);
}
.cast-stillcasting__roles span + span::before {
  content: '◆'; color: var(--gold-500); font-size: 9px;
  vertical-align: middle; margin-right: 14px;
}

/* =========================================================
   UTILITIES
   ========================================================= */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
