/* Uppity Improv Society — site styles
   Modernize-but-similar redesign of uppity.ca
   Phase 1: home + auditions */

:root {
  --bg: #faf6ee;
  --bg-card: #ffffff;
  --bg-warm: #f0e9d8;
  --ink: #1a1614;
  --ink-soft: #4a423d;
  --ink-mute: #7a716a;
  --accent: #a02c2c;
  --accent-dark: #7a1f1f;
  --accent-soft: #d97a7a;
  --gold: #c9a961;
  --rule: #d9cdb6;
  --shadow: 0 1px 2px rgba(26, 22, 20, .06), 0 8px 24px rgba(26, 22, 20, .08);
  --radius: 6px;
  --max: 1100px;
  --serif: "DM Serif Display", "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ---------- Layout ---------- */

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

.section {
  padding: 72px 0;
}

.section-tight {
  padding: 48px 0;
}

@media (max-width: 720px) {
  .section { padding: 48px 0; }
  .section-tight { padding: 32px 0; }
  .container { padding: 0 18px; }
}

/* ---------- Typography ---------- */

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 .5em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; font-family: var(--sans); font-weight: 600; letter-spacing: 0.02em; text-transform: uppercase; color: var(--ink-soft); }

p { margin: 0 0 1.1em; max-width: 65ch; }

a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .2s, color .2s;
}
a:hover { color: var(--accent-dark); border-bottom-color: currentColor; }

em { font-style: italic; }
strong { font-weight: 600; color: var(--ink); }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.lede {
  font-size: 1.2rem;
  color: var(--ink-soft);
  font-style: italic;
  max-width: 60ch;
}

/* ---------- Header / Nav ---------- */

.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(140%) blur(8px);
  background: rgba(250, 246, 238, 0.92);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 32px;
}

@media (max-width: 720px) {
  .site-header__inner { padding: 12px 22px; }
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  border: none;
  color: var(--ink);
}
.site-logo:hover { color: var(--ink); border: none; }
.site-logo img { height: 44px; width: auto; display: block; }
.site-logo__wordmark {
  font-family: var(--serif);
  font-size: 1.4rem;
  line-height: 1;
}

.site-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: .95rem;
}
.site-nav a {
  color: var(--ink-soft);
  border: none;
  font-weight: 500;
  white-space: nowrap;
}
.site-nav a:hover, .site-nav a.active {
  color: var(--accent);
  border: none;
}

/* Hamburger toggle — checkbox-hack, JS-free */
.nav-toggle { display: none; }
.nav-toggle-label {
  display: none;
  cursor: pointer;
  padding: 10px;
  margin-right: -10px;
  border: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle-label:hover { color: var(--accent); border: none; }
.nav-toggle-label__icon {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  position: relative;
  transition: background 0.2s;
}
.nav-toggle-label__icon::before,
.nav-toggle-label__icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.25s ease;
}
.nav-toggle-label__icon::before { top: -7px; }
.nav-toggle-label__icon::after  { top: 7px; }

@media (max-width: 720px) {
  .site-logo__wordmark { font-size: 1.1rem; }
  .site-logo img { height: 36px; }

  .nav-toggle-label { display: inline-block; }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    padding: 8px 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    box-shadow: 0 12px 32px rgba(26, 22, 20, 0.12);
  }
  .site-nav a {
    padding: 14px 24px;
    font-size: 1.02rem;
    border-bottom: 1px solid rgba(217, 205, 182, 0.4);
  }
  .site-nav a:last-child { border-bottom: none; }
  .site-nav a.active {
    background: var(--bg-warm);
    color: var(--accent);
  }

  .nav-toggle:checked ~ .site-nav {
    max-height: 60vh;
    padding: 8px 0;
  }
  .nav-toggle:checked ~ .nav-toggle-label .nav-toggle-label__icon {
    background: transparent;
  }
  .nav-toggle:checked ~ .nav-toggle-label .nav-toggle-label__icon::before {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle:checked ~ .nav-toggle-label .nav-toggle-label__icon::after {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* ---------- Hero ---------- */

.hero {
  padding: 56px 0 16px;
  position: relative;
  text-align: center;
}

.hero h1 {
  margin-bottom: 6px;
  line-height: 1.05;
}

.hero__tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.05rem, 1.9vw, 1.4rem);
  color: var(--ink-soft);
  margin: 0 auto 4px;
  max-width: 38ch;
  line-height: 1.3;
}

/* Neon-sign treatment for the warning chip — dark plate, warm-yellow
   tube glow (matching Uppity's yellow logo), subtle flicker. */
.hero__warning {
  display: inline-block;
  margin-top: 14px;
  margin-bottom: 0;
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(0.78rem, 1.7vw, 0.95rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 26px;
  border-radius: 999px;
  position: relative;

  /* Dark plate */
  background:
    radial-gradient(ellipse 100% 70% at 50% 50%, rgba(46, 26, 6, 0.95) 0%, rgba(14, 8, 2, 1) 100%);

  /* The neon "tube" — warm yellow / Uppity-gold */
  color: #fff5c0;
  border: 1.5px solid rgba(255, 215, 70, 0.85);

  /* Layered glow on the text */
  text-shadow:
    0 0 4px rgba(255, 245, 200, 0.95),
    0 0 8px rgba(255, 220, 80, 0.95),
    0 0 16px rgba(247, 200, 40, 0.7),
    0 0 28px rgba(247, 180, 20, 0.45),
    0 0 48px rgba(247, 180, 20, 0.25);

  /* Outer halo + inner soft tube light */
  box-shadow:
    inset 0 0 8px rgba(255, 230, 110, 0.4),
    inset 0 0 16px rgba(247, 200, 40, 0.18),
    0 0 12px rgba(255, 220, 80, 0.55),
    0 0 28px rgba(247, 200, 40, 0.4),
    0 0 56px rgba(247, 180, 20, 0.18);

  animation: neon-flicker 6s steps(60, end) infinite;
}

.hero__warning__icon {
  display: inline-block;
  font-size: 3.4em;
  line-height: 0.7;
  margin-right: 14px;
  vertical-align: -10px;
  /* Slightly extra glow on the symbol */
  filter: drop-shadow(0 0 8px rgba(255, 220, 80, 0.8));
}

/* Realistic neon: mostly steady, with brief stutters */
@keyframes neon-flicker {
  0%, 18%, 22%, 25%, 53%, 57%, 100% {
    opacity: 1;
    text-shadow:
      0 0 4px rgba(255, 245, 200, 0.95),
      0 0 8px rgba(255, 220, 80, 0.95),
      0 0 16px rgba(247, 200, 40, 0.7),
      0 0 28px rgba(247, 180, 20, 0.45),
      0 0 48px rgba(247, 180, 20, 0.25);
  }
  20%, 24% {
    opacity: 0.55;
    text-shadow:
      0 0 2px rgba(255, 245, 200, 0.5),
      0 0 4px rgba(255, 220, 80, 0.4);
  }
  55% {
    opacity: 0.7;
    text-shadow:
      0 0 3px rgba(255, 245, 200, 0.7),
      0 0 6px rgba(255, 220, 80, 0.6);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__warning { animation: none; }
}

@media (max-width: 720px) {
  .hero { padding: 32px 0 12px; }
}

/* ---------- Audition callout (full-bleed playbill on home) ---------- */
/* Design principle: the poster art is maximalist. The background must be
   QUIET. One soft spotlight + one deep vignette + theatrical framing
   (curtains, marquee bulbs). No sparkles, no competing gradients. */

.audition-callout {
  position: relative;
  width: 100%;
  margin: 24px 0 0;
  padding: clamp(60px, 12vw, 120px) 24px clamp(56px, 10vw, 96px);
  overflow: hidden;
  text-align: center;
  color: #fff;
  isolation: isolate;
  background:
    radial-gradient(ellipse 70% 50% at 50% 30%, rgba(120, 24, 24, 0.55) 0%, transparent 60%),
    radial-gradient(ellipse 100% 60% at 50% 100%, rgba(0, 0, 0, 0.6) 0%, transparent 70%),
    linear-gradient(180deg, #1a040a 0%, #2c060f 50%, #0a020a 100%);
}

.audition-callout__inner {
  position: relative;
  z-index: 5;
  max-width: 760px;
  margin: 0 auto;
}

/* Top spotlight — a single proscenium light from the top */
.audition-callout::before {
  content: "";
  position: absolute;
  top: -10%;
  left: 50%;
  width: 140%;
  height: 80%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse 50% 70% at 50% 0%, rgba(255, 230, 180, 0.18) 0%, rgba(255, 200, 140, 0.06) 30%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

/* Subtle film grain — atmospheric, not distracting */
.audition-callout::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.18;
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* Logo stage — wraps the show poster and provides the sweep highlight */
.logo-stage {
  position: relative;
  display: block;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 28px;
  isolation: isolate;
}
.logo-stage > img {
  position: relative;
  z-index: 2;
  display: block;
  margin: 0 auto !important;  /* override individual logo class margin */
}

/* Three overlapping spotlight sweeps at different speeds & directions
   for a richer, non-repeating glow. All are soft radial ellipses with
   alpha falloff on every side — no visible edges. mix-blend-mode: screen
   adds them brighter where two overlap. */
.logo-stage__sweep {
  position: absolute;
  top: -25%;
  bottom: -25%;
  left: 0;
  right: 0;
  z-index: 1;
  pointer-events: none;
  filter: blur(12px);
  mix-blend-mode: screen;
  will-change: transform;
  /* alternate direction so each sweep reverses smoothly at its endpoint
     instead of snapping back to the start of the keyframe */
  animation-direction: alternate;
}

/* Primary — bright, 10s, left-to-right */
.logo-stage__sweep--1 {
  background: radial-gradient(ellipse 38% 75% at center,
    rgba(255, 245, 200, 0.62) 0%,
    rgba(255, 220, 140, 0.42) 18%,
    rgba(255, 200, 110, 0.22) 35%,
    rgba(255, 200, 110, 0.06) 55%,
    transparent 75%);
  animation: sweep-ltr 10s linear infinite;
}

/* Secondary — warmer/amber, 13s, right-to-left, narrower */
.logo-stage__sweep--2 {
  background: radial-gradient(ellipse 30% 70% at center,
    rgba(255, 230, 160, 0.5) 0%,
    rgba(255, 195, 100, 0.3) 22%,
    rgba(247, 170, 60, 0.12) 45%,
    transparent 72%);
  animation: sweep-rtl 13s linear infinite;
  animation-delay: -4s;
}

/* Tertiary — soft pale, 17s, left-to-right, smallest */
.logo-stage__sweep--3 {
  background: radial-gradient(ellipse 26% 65% at center,
    rgba(255, 250, 220, 0.42) 0%,
    rgba(255, 235, 170, 0.22) 28%,
    rgba(255, 215, 130, 0.08) 50%,
    transparent 70%);
  animation: sweep-ltr 17s linear infinite;
  animation-delay: -8s;
}

@keyframes sweep-ltr {
  from { transform: translateX(-60%); }
  to   { transform: translateX(60%); }
}
@keyframes sweep-rtl {
  from { transform: translateX(60%); }
  to   { transform: translateX(-60%); }
}

@media (prefers-reduced-motion: reduce) {
  .logo-stage__sweep { animation: none; opacity: 0; }
}

.audition-callout__logo {
  max-width: min(640px, 92%);
  height: auto;
  display: block;
  filter:
    drop-shadow(0 24px 56px rgba(0, 0, 0, 0.7))
    drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

.audition-callout .eyebrow {
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.4em;
  font-size: clamp(0.78rem, 1.6vw, 0.95rem);
  margin-bottom: 28px;
  /* Gold gradient text fill */
  background: linear-gradient(180deg, #ffe8a8 0%, #d4a356 50%, #b8862c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  position: relative;
  padding: 12px 28px;
}
/* Gold rule above and below eyebrow */
.audition-callout .eyebrow::before,
.audition-callout .eyebrow::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 163, 86, 0.7), transparent);
  transform: translateX(-50%);
}
.audition-callout .eyebrow::before { top: 0; }
.audition-callout .eyebrow::after  { bottom: 0; }

.audition-callout h2 {
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-bottom: 16px;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

.audition-callout__sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2.6vw, 1.55rem);
  color: rgba(255, 245, 230, 0.96);
  margin: 0 auto 14px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  max-width: 28ch;
}

/* "Another original production by The Uppity Improv Society" credit
   line — used in the show writeup on the home page (and similar). */
.show-credit {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--rule);
  letter-spacing: 0.01em;
}
.show-credit strong { font-weight: 600; color: var(--accent); }
.show-credit a { color: inherit; border-bottom-color: var(--rule); }
.show-credit a:hover { color: var(--accent); border-bottom-color: var(--accent); }

/* Dark-background variant — for use on .audition-callout and .crimson-hero */
.show-credit--on-dark {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(0.92rem, 1.7vw, 1.06rem);
  color: rgba(255, 220, 140, 0.82);
  margin: 0 auto 14px;
  max-width: 38ch;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.55);
  border: none;
  padding: 0;
}
.show-credit--on-dark strong { font-weight: 600; color: rgba(255, 235, 175, 0.96); }
.show-credit--on-dark a {
  color: inherit;
  border-bottom: 1px dotted rgba(255, 220, 140, 0.4);
}
.show-credit--on-dark a:hover {
  color: rgba(255, 245, 200, 1);
  border-bottom-color: rgba(255, 245, 200, 0.7);
}

/* Date numerals — oversized typographic feature */
.audition-callout__dates {
  margin: 0 auto 28px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.audition-callout__dates .date-num {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1;
  background: linear-gradient(180deg, #fff5dc 0%, #d4a356 60%, #a06d1a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.45);
  letter-spacing: -0.01em;
}
.audition-callout__dates .date-mid {
  font-family: var(--sans);
  font-size: clamp(0.78rem, 1.4vw, 0.92rem);
  letter-spacing: 0.32em;
  color: rgba(255, 220, 140, 0.7);
  text-transform: uppercase;
  align-self: center;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}
.audition-callout__dates .date-label {
  font-family: var(--sans);
  font-size: clamp(0.7rem, 1.3vw, 0.84rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 245, 230, 0.55);
  display: block;
  margin-top: 8px;
}

.audition-callout__meta {
  font-size: clamp(0.92rem, 1.6vw, 1.05rem);
  color: rgba(255, 245, 230, 0.82);
  margin: 0 auto 36px;
  letter-spacing: 0.02em;
  max-width: 40ch;
}

/* ---------- Marquee bulb border (theatrical lights) ---------- */

.marquee-bulbs {
  position: absolute;
  left: 0;
  right: 0;
  height: 14px;
  z-index: 4;
  background-image: radial-gradient(circle 4px at center, #ffd982 0%, #e8b649 55%, #6a4a14 80%, transparent 90%);
  background-size: 28px 14px;
  background-repeat: repeat-x;
  background-position: center;
  filter: drop-shadow(0 0 8px rgba(255, 220, 140, 0.55));
  animation: bulb-twinkle 2.2s ease-in-out infinite;
}
.marquee-bulbs--top    { top: 18px; }
.marquee-bulbs--bottom { bottom: 18px; }

@keyframes bulb-twinkle {
  0%, 100% { opacity: 0.92; filter: drop-shadow(0 0 8px rgba(255, 220, 140, 0.55)); }
  50%      { opacity: 0.6;  filter: drop-shadow(0 0 4px rgba(255, 220, 140, 0.3)); }
}

/* Stagger the bottom row so they alternate */
.marquee-bulbs--bottom { animation-delay: 1.1s; }

/* ---------- Velvet curtains flanking the audition section ---------- */

.curtain {
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(36px, 5vw, 72px);
  z-index: 3;
  pointer-events: none;
  /* Layered velvet stripes — 5 vertical folds, soft */
  background:
    linear-gradient(90deg,
      #2a050a 0%,
      #6a1414 18%,
      #4a0c12 35%,
      #7a1a1a 52%,
      #4a0c12 68%,
      #6a1414 82%,
      #2a050a 100%);
  box-shadow:
    inset 0 4px 12px rgba(0, 0, 0, 0.5),
    inset 0 -4px 12px rgba(0, 0, 0, 0.5);
}
.curtain--left  { left: 0; }
.curtain--right { right: 0; transform: scaleX(-1); }
/* Gold-tassel trim along the inside edge of each curtain */
.curtain::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 2px;
  background: linear-gradient(180deg,
    rgba(212, 163, 86, 0.0) 0%,
    rgba(212, 163, 86, 0.7) 8%,
    rgba(255, 220, 140, 0.8) 50%,
    rgba(212, 163, 86, 0.7) 92%,
    rgba(212, 163, 86, 0.0) 100%);
  filter: drop-shadow(0 0 6px rgba(255, 220, 140, 0.5));
}

@media (prefers-reduced-motion: reduce) {
  .marquee-bulbs { animation: none; opacity: 0.85; }
}

/* Slightly tighter on phones */
@media (max-width: 540px) {
  .audition-callout { padding: 72px 18px 64px; margin-top: 16px; }
  .audition-callout__logo { max-width: 100%; margin-bottom: 20px; }
  .marquee-bulbs--top    { top: 14px; }
  .marquee-bulbs--bottom { bottom: 14px; }
  .curtain { width: 32px; }
}

/* ---------- Crimson Hero (auditions page top, full-bleed) ---------- */
/* Same theatrical-quiet principle as .audition-callout. */

.crimson-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(72px, 13vw, 130px) 24px clamp(60px, 10vw, 96px);
  color: #fff;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 50% at 50% 28%, rgba(120, 24, 24, 0.55) 0%, transparent 60%),
    radial-gradient(ellipse 100% 60% at 50% 100%, rgba(0, 0, 0, 0.6) 0%, transparent 70%),
    linear-gradient(180deg, #1a040a 0%, #2c060f 50%, #0a020a 100%);
}

.crimson-hero::before {
  content: "";
  position: absolute;
  top: -10%;
  left: 50%;
  width: 140%;
  height: 80%;
  transform: translateX(-50%);
  z-index: 1;
  background: radial-gradient(ellipse 50% 70% at 50% 0%, rgba(255, 230, 180, 0.18) 0%, rgba(255, 200, 140, 0.06) 30%, transparent 60%);
  pointer-events: none;
}

.crimson-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.18;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.crimson-hero > .container {
  position: relative;
  z-index: 5;
  text-align: center;
}

.crimson-hero__logo {
  max-width: min(640px, 92%);
  height: auto;
  margin: 0 auto 28px;
  display: block;
  filter:
    drop-shadow(0 24px 56px rgba(0, 0, 0, 0.7))
    drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

.crimson-hero .eyebrow {
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.4em;
  font-size: clamp(0.78rem, 1.6vw, 0.95rem);
  margin-bottom: 28px;
  background: linear-gradient(180deg, #ffe8a8 0%, #d4a356 50%, #b8862c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  position: relative;
  padding: 12px 28px;
}
.crimson-hero .eyebrow::before,
.crimson-hero .eyebrow::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 163, 86, 0.7), transparent);
  transform: translateX(-50%);
}
.crimson-hero .eyebrow::before { top: 0; }
.crimson-hero .eyebrow::after  { bottom: 0; }

.crimson-hero h1 {
  color: #fff;
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  margin-bottom: 16px;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.55);
}

.crimson-hero__tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2.4vw, 1.5rem);
  color: rgba(255, 245, 230, 0.94);
  max-width: 52ch;
  margin: 0 auto 32px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

@media (max-width: 540px) {
  .crimson-hero { padding: 72px 18px 64px; }
  .crimson-hero__logo { max-width: 100%; margin-bottom: 20px; }
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .04em;
  padding: 14px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform .15s, background .2s, box-shadow .2s;
}
.btn:hover { transform: translateY(-1px); }

.btn--primary {
  background: var(--gold);
  color: var(--ink);
}
.btn--primary:hover { background: #b8965a; color: var(--ink); border: none; }

.btn--ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.6);
}
.btn--ghost:hover { background: rgba(255,255,255,.12); color: #fff; border-color: #fff; }

.btn--accent {
  background: var(--accent);
  color: #fff;
}
.btn--accent:hover { background: var(--accent-dark); color: #fff; border: none; }

.btn--lg { padding: 18px 36px; font-size: 1.05rem; }

/* ---------- Liquid Glass buttons (for use on dramatic backgrounds) ---------- */

.btn--glass {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.06) 100%);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 8px 32px rgba(0, 0, 0, 0.18);
  position: relative;
  overflow: hidden;
}
.btn--glass::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.22) 50%, transparent 100%);
  transform: skewX(-22deg);
  transition: left 0.7s ease;
  pointer-events: none;
}
.btn--glass:hover::before { left: 130%; }
.btn--glass:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.26) 0%, rgba(255, 255, 255, 0.10) 100%);
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 12px 40px rgba(0, 0, 0, 0.25),
    0 0 28px rgba(201, 169, 97, 0.22);
}

/* Gold-tinted glass — for primary CTAs on the dramatic dark backgrounds */
.btn--glass-gold {
  background: linear-gradient(135deg, rgba(218, 188, 115, 0.92) 0%, rgba(184, 150, 90, 0.82) 100%);
  backdrop-filter: blur(8px) saturate(140%);
  -webkit-backdrop-filter: blur(8px) saturate(140%);
  color: var(--ink);
  border: 1px solid rgba(255, 220, 150, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 245, 200, 0.7),
    inset 0 -1px 0 rgba(120, 80, 30, 0.3),
    0 8px 32px rgba(201, 169, 97, 0.35),
    0 0 0 1px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  font-weight: 700;
}
.btn--glass-gold::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.55) 50%, transparent 100%);
  transform: skewX(-22deg);
  transition: left 0.7s ease;
  pointer-events: none;
}
.btn--glass-gold:hover::before { left: 130%; }
.btn--glass-gold:hover {
  background: linear-gradient(135deg, rgba(232, 200, 130, 0.98) 0%, rgba(201, 169, 97, 0.92) 100%);
  color: var(--ink);
  border-color: rgba(255, 235, 175, 0.75);
  box-shadow:
    inset 0 1px 0 rgba(255, 245, 200, 0.85),
    inset 0 -1px 0 rgba(120, 80, 30, 0.35),
    0 14px 44px rgba(201, 169, 97, 0.5),
    0 0 32px rgba(255, 215, 130, 0.25);
}

/* ---------- Two-column layout ---------- */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 800px) {
  .two-col { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- Cards (roles, etc.) ---------- */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 32px 0;
}

.card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--accent);
}

.card h3 {
  margin-bottom: 4px;
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: .08em;
  font-size: 1.2rem;
  color: var(--accent);
}

.card__meta {
  font-size: .85rem;
  font-style: italic;
  color: var(--ink-mute);
  margin-bottom: 12px;
}

.card p { margin-bottom: 0; font-size: .96rem; line-height: 1.55; }

/* ---------- Quick facts list ---------- */

.facts {
  background: var(--bg-warm);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin: 24px 0;
}
.facts dl { margin: 0; display: grid; grid-template-columns: max-content 1fr; gap: 8px 24px; }
.facts dt { font-weight: 600; color: var(--ink-soft); font-size: .92rem; letter-spacing: .04em; text-transform: uppercase; padding-top: 2px; }
.facts dd { margin: 0; }

@media (max-width: 600px) {
  .facts dl { grid-template-columns: 1fr; gap: 0 0; }
  .facts dt { margin-top: 14px; }
  .facts dt:first-child { margin-top: 0; }
}

/* ---------- Steps (How To Audition) ---------- */

.steps {
  counter-reset: stepcounter;
  list-style: none;
  padding: 0;
  margin: 32px 0;
}
.steps > li {
  counter-increment: stepcounter;
  position: relative;
  padding: 0 0 28px 64px;
  border-left: 1px solid var(--rule);
  margin-left: 22px;
}
.steps > li:last-child { border-left-color: transparent; padding-bottom: 0; }
.steps > li::before {
  content: counter(stepcounter);
  position: absolute;
  left: -22px;
  top: -4px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.3rem;
}
.steps > li > h3 { margin-top: 0; margin-bottom: 6px; }

/* ---------- Sides downloads ---------- */

.sides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin: 24px 0;
}
.sides-grid a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  color: var(--ink);
  font-weight: 500;
  border-bottom: 1px solid var(--rule);
}
.sides-grid a:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.sides-grid a::before {
  content: "📄";
  font-size: 1.1rem;
}
.sides-grid .sides-all {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.sides-grid .sides-all:hover { background: var(--accent-dark); color: #fff; border-color: var(--accent-dark); }
.sides-grid .sides-all::before { content: "📦"; }

/* ---------- FAQ ---------- */

.faq details {
  border-top: 1px solid var(--rule);
  padding: 18px 0;
}
.faq details:last-child { border-bottom: 1px solid var(--rule); }
.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--accent);
  margin-left: 16px;
  line-height: 1;
}
.faq details[open] summary::after { content: "−"; }
.faq details > p:first-of-type { margin-top: 14px; }
.faq details > p:last-child { margin-bottom: 0; }

/* ---------- Callout boxes ---------- */

.note {
  background: var(--bg-warm);
  border-left: 3px solid var(--gold);
  padding: 20px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 24px 0;
}
.note p:last-child { margin-bottom: 0; }
.note__title {
  font-family: var(--serif);
  font-size: 1.15rem;
  margin-bottom: 6px;
  color: var(--ink);
}

.tbd {
  display: inline-block;
  background: var(--bg-warm);
  color: var(--ink-soft);
  padding: 2px 10px;
  border-radius: 4px;
  font-size: .9rem;
  font-style: italic;
  border: 1px dashed var(--rule);
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--ink);
  color: #d9cdb6;
  padding: 56px 0 32px;
  margin-top: 80px;
}
.site-footer h4 { color: #fff; margin-bottom: 14px; }
.site-footer a {
  color: #d9cdb6;
  border: none;
}
.site-footer a:hover { color: #fff; border: none; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}
.footer-grid p, .footer-grid li { font-size: .95rem; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { padding: 4px 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .85rem;
  color: var(--ink-mute);
}

/* ---------- Original Shows archive ---------- */

.poster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  margin: 24px 0;
}

.show-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: var(--ink);
  border: none;
  transition: transform .18s, box-shadow .2s;
}
.show-card:hover {
  transform: translateY(-3px);
  color: var(--ink);
  border: none;
  box-shadow: 0 4px 8px rgba(26, 22, 20, .10), 0 16px 40px rgba(26, 22, 20, .12);
}

.show-card__poster {
  background: #1a1614;
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.show-card__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.show-card__no-poster {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2a2422 0%, #1a1614 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.show-card__no-poster-text {
  color: rgba(255,255,255,.4);
  font-family: var(--serif);
  font-style: italic;
  text-align: center;
  font-size: .95rem;
}

.show-card__caption {
  padding: 18px 20px 22px;
}
.show-card__year {
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
}
.show-card__caption h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  margin: 6px 0 4px;
  line-height: 1.2;
  color: var(--ink);
}
.show-card__type {
  font-size: .85rem;
  font-style: italic;
  color: var(--ink-mute);
}

/* ---------- Single show page (archive) ---------- */

.show-archive {
  display: grid;
  grid-template-columns: minmax(0, 360px) 1fr;
  gap: 56px;
  align-items: start;
}
.show-archive__poster img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.show-archive__subtitle {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--ink-soft);
  margin: -4px 0 0;
}
.show-archive__body p { max-width: 60ch; }

@media (max-width: 720px) {
  .show-archive { grid-template-columns: 1fr; gap: 32px; }
  .show-archive__poster { max-width: 320px; margin: 0 auto; }
}

/* ---------- About page sections ---------- */

.about-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin: 40px 0;
}
.about-pillar {
  text-align: left;
}
.about-pillar__icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 12px;
  filter: grayscale(.2);
}
.about-pillar h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 8px;
}
.about-pillar p { font-size: .98rem; }

/* ---------- Join page paths ---------- */

.path-list {
  display: grid;
  gap: 20px;
  margin: 32px 0;
}
.path {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  align-items: start;
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 24px 28px;
  box-shadow: var(--shadow);
  border-left: 3px solid var(--accent);
}
.path__num {
  font-family: var(--serif);
  font-size: 3rem;
  line-height: 1;
  color: var(--gold);
}
.path h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  margin: 0 0 8px;
  color: var(--ink);
}
.path p { margin-bottom: 8px; }
.path a.btn { margin-top: 8px; }

@media (max-width: 600px) {
  .path { grid-template-columns: 1fr; gap: 8px; padding: 20px; }
  .path__num { font-size: 2rem; margin-bottom: 0; }
}

/* ---------- Utilities ---------- */

.center { text-align: center; }
.divider { border: none; border-top: 1px solid var(--rule); margin: 48px 0; }
.show-blurb { font-size: 1.1rem; color: var(--ink-soft); }
hr.fancy {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rule), transparent);
  margin: 48px auto;
  max-width: 200px;
}
