/* ============================================================
   Charles Dickens' A Christmas Carol — Landing Page
   Clemson Little Theatre Mainstage
   Brand tokens from CLT design system; season accent = holly red
   (--show-christmas #AF3B3B) per the 2026–2027 season palette.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Rosario:ital,wght@0,300..700;1,300..700&family=Alfa+Slab+One&family=Allura&display=swap');

:root {
  /* CLT brand (official style guide) */
  --clt-maroon: #6d3335;
  --clt-maroon-600: #854347;
  --clt-maroon-800: #4F2426;
  --clt-maroon-900: #3C1C1E;
  --clt-rose: #cd9f9f;
  --clt-cream: #f7f1ea;
  --clt-paper: #ece4d7;
  --clt-graphite: #4c4c4c;

  /* Season hue — A Christmas Carol: holly red */
  --holly: #AF3B3B;
  --holly-deep: #7E2A2A;
  --holly-light: #D3716C;
  --gold: #F4B71B;
  --gold-soft: #F9D783;
  --gold-glow: rgba(244,183,27,0.5);

  /* Night ground pulled from the brand's "house lights down" maroon */
  --night-deep: #1F0E10;
  --night: #2A1214;
  --night-mid: #3C1C1E;

  /* type */
  --font-sans: 'Rosario', system-ui, sans-serif;
  --font-display: 'Alfa Slab One', Georgia, serif;
  --font-script: 'Allura', 'Brush Script MT', cursive;
  --font-playful: 'Rosario', system-ui, sans-serif;

  --tracking-wider: 0.22em;
  --tracking-wide: 0.08em;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-standard: cubic-bezier(0.2, 0, 0, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--night);
  color: var(--clt-graphite);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

.eyebrow {
  font-weight: 600;
  font-size: clamp(0.72rem, 1.1vw, 0.9rem);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
}

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(16px, 2.2vw, 30px) clamp(20px, 4vw, 56px);
  transition: background 0.4s var(--ease-standard), padding 0.4s var(--ease-standard);
}
.topbar.scrolled {
  background: rgba(42,18,20,0.82);
  backdrop-filter: blur(8px);
  padding-top: 12px;
  padding-bottom: 12px;
  box-shadow: 0 1px 0 rgba(244,183,27,0.18);
}
.topbar__logo { height: clamp(52px, 5.6vw, 74px); width: auto; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5)); }
.topbar__tag {
  display: inline-flex; align-items: center; gap: 9px;
  color: var(--gold);
  font-family: var(--font-playful);
  font-weight: 600;
  text-transform: uppercase;
  font-size: clamp(0.72rem, 1.1vw, 0.86rem);
  letter-spacing: 0.18em;
  white-space: nowrap;
}
.topbar__tag .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--holly);
  box-shadow: 0 0 0 0 rgba(175,59,59,0.7);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(175,59,59,0.6); }
  70% { box-shadow: 0 0 0 9px rgba(175,59,59,0); }
  100% { box-shadow: 0 0 0 0 rgba(175,59,59,0); }
}

/* ============================================================
   HERO (no photographic background — atmospheric CSS treatment)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: clamp(92px, 13vh, 140px) 20px clamp(60px, 9vh, 100px);
  background: var(--night);
}
.hero__bg {
  position: absolute;
  inset: -6% -20%;
  width: 140%;
  height: 112%;
  z-index: 0;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 62%;
  filter: saturate(0.82) brightness(0.62);
}
.hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(31,14,16,0.55), rgba(42,18,20,0.3) 40%, rgba(31,14,16,0.7));
  mix-blend-mode: multiply;
}
.hero__scrim { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero__scrim.top {
  background: linear-gradient(to bottom, rgba(15,7,8,0.88) 0%, rgba(15,7,8,0) 32%);
}
.hero__scrim.bottom {
  background: linear-gradient(to top, var(--night) 4%, rgba(42,18,20,0.55) 26%, transparent 55%);
}
.hero__scrim.vignette {
  background: radial-gradient(120% 90% at 50% 40%, transparent 38%, rgba(15,7,8,0.6) 100%);
}

/* drifting fog */
.fog {
  position: absolute; inset: 0; z-index: 2; pointer-events: none; overflow: hidden;
}
.fog span {
  position: absolute;
  border-radius: 50%;
  filter: blur(46px);
  opacity: 0.35;
  background: radial-gradient(circle, rgba(214,214,204,0.5), rgba(214,214,204,0) 70%);
}
.fog span:nth-child(1){ width: 60vw; height: 28vh; left:-20vw; top: 40%; animation: drift1 26s linear infinite; }
.fog span:nth-child(2){ width: 48vw; height: 22vh; right:-18vw; top: 58%; opacity:0.28; animation: drift2 34s linear infinite; }
.fog span:nth-child(3){ width: 38vw; height: 18vh; left: 18vw; top: 20%; opacity:0.2; animation: drift1 44s linear infinite; }
@keyframes drift1 { 0%{transform:translateX(-8vw)} 50%{transform:translateX(60vw)} 100%{transform:translateX(120vw)} }
@keyframes drift2 { 0%{transform:translateX(8vw)} 50%{transform:translateX(-50vw)} 100%{transform:translateX(-110vw)} }


.hero__inner {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1000px;
  width: 100%;
}

.hero__eyebrow {
  color: var(--gold-soft);
  margin-bottom: clamp(10px, 1.6vh, 20px);
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}
.hero__eyebrow b { color: #fff; font-weight: 700; }

.hero__badges {
  display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap;
  margin-bottom: clamp(16px, 2.4vh, 26px);
}
.hero-badge {
  font-family: var(--font-sans); font-weight: 700; font-size: 0.72rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.4); color: #fff;
  background: rgba(255,255,255,0.08);
  white-space: nowrap;
}
.hero-badge.accent {
  background: var(--holly); border-color: var(--holly); color: #fff;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.1rem, 2.4vw, 1.5rem);
  line-height: 1.3;
  color: var(--gold-soft);
  margin: 0;
  text-shadow: 0 4px 0 rgba(0,0,0,0.3);
}
.hero__title-main {
  display: block;
  font-size: clamp(2.4rem, 6.4vw, 5.2rem);
  line-height: 1.02;
  color: #fff;
  margin-top: 6px;
  text-shadow: 0 5px 0 rgba(0,0,0,0.35), 0 0 40px var(--gold-glow);
}

.hero__present {
  font-family: var(--font-script);
  font-size: clamp(1.5rem, 3.6vw, 2.5rem);
  color: #fff;
  line-height: 1;
  margin: clamp(10px,1.6vh,18px) 0 clamp(16px,2.2vh,26px);
  text-shadow: 0 3px 16px rgba(0,0,0,0.6);
}

.hero__dates {
  display: inline-flex; align-items: center; gap: 16px;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.5vw, 1.8rem);
  color: #fff;
  letter-spacing: 0.01em;
  padding: 12px 30px;
  border-radius: 8px;
  background: rgba(60,28,30,0.66);
  border: 2px solid rgba(244,183,27,0.55);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4), inset 0 0 0 1px rgba(255,255,255,0.06);
  backdrop-filter: blur(3px);
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.hero__dates .yr { color: var(--gold); }

.hero__sub {
  margin-top: clamp(18px, 2.6vh, 30px);
  color: rgba(255,255,255,0.86);
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  letter-spacing: 0.02em;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

.hero__salebadge {
  margin-top: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(244,183,27,0.55);
  border-radius: 999px;
  padding: 8px 18px;
  background: rgba(244,183,27,0.08);
}

/* scroll cue */
.scrollcue {
  position: absolute; left: 50%; bottom: clamp(20px, 4vh, 40px);
  transform: translateX(-50%);
  z-index: 6;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase;
}
.scrollcue .mouse {
  width: 22px; height: 36px; border: 2px solid rgba(255,255,255,0.55); border-radius: 12px;
  position: relative;
}
.scrollcue .mouse::after {
  content:""; position: absolute; top: 7px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 7px; border-radius: 2px; background: var(--gold);
  animation: wheel 1.8s infinite;
}
@keyframes wheel { 0%{opacity:0; transform:translate(-50%,0)} 30%{opacity:1} 100%{opacity:0; transform:translate(-50%,12px)} }

/* ============================================================
   COUNTDOWN
   ============================================================ */
.countdown {
  display: flex; align-items: flex-start; justify-content: center;
  gap: clamp(10px, 2.2vw, 26px);
  margin-top: clamp(20px, 3vh, 36px);
}
.cd-unit { display: flex; flex-direction: column; align-items: center; min-width: clamp(56px, 9vw, 96px); }
.cd-num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.6vw, 3.4rem);
  line-height: 1;
  color: var(--gold);
  text-shadow: 0 3px 0 rgba(60,28,30,0.6), 0 6px 22px rgba(0,0,0,0.5);
  font-variant-numeric: tabular-nums;
}
.cd-label {
  margin-top: 8px;
  font-size: clamp(0.6rem, 1vw, 0.78rem);
  text-transform: uppercase; letter-spacing: 0.18em;
  color: rgba(255,255,255,0.78);
}
.cd-sep {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 3rem);
  color: rgba(244,183,27,0.5);
  line-height: 1.1;
  padding-top: clamp(2px,1vw,8px);
}

/* ============================================================
   SECTION SHELL
   ============================================================ */
section { position: relative; }
.wrap { max-width: 1140px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 56px); }

.sec-head { text-align: center; max-width: 760px; margin: 0 auto clamp(40px, 6vh, 70px); }
.sec-eyebrow {
  display: inline-block;
  color: var(--holly);
  margin-bottom: 16px;
}
.sec-eyebrow.on-dark { color: var(--gold); }
.sec-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.05;
  color: var(--clt-maroon);
  margin: 0;
  text-shadow: 0 3px 0 rgba(109,51,53,0.18);
}
.sec-title.on-dark { color: #fff; text-shadow: 0 3px 0 rgba(0,0,0,0.4); }
.sec-script {
  font-family: var(--font-script);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  color: var(--holly);
  line-height: 1;
  display: block;
  margin-bottom: 2px;
}
.sec-script.on-dark { color: var(--gold); }

/* ============================================================
   ABOUT (cream/paper, storybook)
   ============================================================ */
.about {
  background: var(--clt-cream);
  background-image: radial-gradient(rgba(109,51,53,0.04) 1px, transparent 1px);
  background-size: 22px 22px;
  padding: clamp(70px, 12vh, 150px) 0;
}
.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
}
.poster-frame {
  position: relative;
  justify-self: center;
  padding: 14px;
  background: linear-gradient(160deg, #fff, var(--clt-paper));
  border: 1px solid rgba(109,51,53,0.18);
  border-radius: 6px;
  box-shadow: 0 26px 60px rgba(60,28,30,0.28);
  transform: rotate(-2deg);
  transition: transform 0.5s var(--ease-out);
  max-width: 380px;
}
.poster-frame:hover { transform: rotate(0deg) scale(1.02); }
.poster-frame img { border-radius: 3px; }
.poster-frame::after {
  content: "December 4\u201313 \u00b7 2026";
  position: absolute; bottom: -16px; left: 50%; transform: translateX(-50%) rotate(-2deg);
  background: var(--holly); color: #fff;
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 999px; white-space: nowrap;
  box-shadow: 0 8px 18px rgba(126,42,42,0.4);
}
.about__body .lede {
  font-family: var(--font-script);
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  color: var(--clt-maroon);
  line-height: 1.05;
  margin: 0 0 22px;
}
.about__body p {
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.7;
  color: var(--clt-graphite);
  margin: 0 0 18px;
}
.about__meta {
  display: flex; flex-wrap: wrap; gap: 28px;
  margin-top: 30px; padding-top: 26px;
  border-top: 1px solid rgba(109,51,53,0.16);
}
.about__meta .item .k {
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--holly); font-weight: 600; margin-bottom: 4px;
}
.about__meta .item .v {
  font-family: var(--font-display); font-size: clamp(1.05rem,1.6vw,1.3rem); color: var(--clt-maroon);
}

/* ============================================================
   PROGRAM NOTE — parchment panel (adaptation note + director note)
   ============================================================ */
.homecoming {
  position: relative;
  overflow: hidden;
  background: radial-gradient(125% 105% at 50% 0%, #efe4cd 0%, #e7d9be 58%, #ddccaa 100%);
  padding: clamp(72px, 11vh, 150px) 0;
}
.homecoming::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.55;
  background-image: radial-gradient(rgba(109,51,53,0.05) 1px, transparent 1px);
  background-size: 22px 22px;
}
.homecoming::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(120% 85% at 50% 48%, transparent 52%, rgba(60,28,30,0.12));
}
.homecoming__inner { position: relative; z-index: 2; }

.programnote {
  position: relative;
  max-width: 720px; margin: 0 auto; text-align: center;
  background: linear-gradient(165deg, #fffdf8 0%, var(--clt-cream) 65%, #f1e8d9 100%);
  padding: clamp(44px, 5.5vw, 76px) clamp(30px, 5vw, 78px);
  border-radius: 6px;
  box-shadow:
    0 30px 72px rgba(60,28,30,0.24),
    inset 0 0 0 1px rgba(255,255,255,0.7),
    inset 0 0 0 7px #fffdf8,
    inset 0 0 0 8px rgba(184,138,42,0.5);
}
.programnote__corner {
  position: absolute; width: 20px; height: 20px; z-index: 2;
  border-color: var(--gold); border-style: solid; border-width: 0;
}
.programnote__corner.tl { top: 14px; left: 14px; border-top-width: 2px; border-left-width: 2px; }
.programnote__corner.tr { top: 14px; right: 14px; border-top-width: 2px; border-right-width: 2px; }
.programnote__corner.bl { bottom: 14px; left: 14px; border-bottom-width: 2px; border-left-width: 2px; }
.programnote__corner.br { bottom: 14px; right: 14px; border-bottom-width: 2px; border-right-width: 2px; }
.programnote__corner::after {
  content: ""; position: absolute; width: 4px; height: 4px; border-radius: 50%; background: var(--gold);
}
.programnote__corner.tl::after { top: -3px; left: -3px; }
.programnote__corner.tr::after { top: -3px; right: -3px; }
.programnote__corner.bl::after { bottom: -3px; left: -3px; }
.programnote__corner.br::after { bottom: -3px; right: -3px; }
.programnote__seal {
  position: absolute; top: -25px; left: 50%; transform: translateX(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle at 36% 30%, #f6d685 0%, var(--gold) 52%, #b8862a 100%);
  color: var(--clt-maroon-900); font-size: 1.35rem;
  box-shadow: 0 8px 20px rgba(60,28,30,0.3), inset 0 0 0 2px rgba(255,255,255,0.35);
}
.programnote__eyebrow {
  margin: 8px 0 18px; color: var(--holly);
  font-size: clamp(0.72rem, 1.1vw, 0.84rem); text-transform: uppercase;
  letter-spacing: 0.28em; font-weight: 600;
}
.programnote__head {
  font-family: var(--font-script); font-weight: 400;
  font-size: clamp(1.9rem, 4.2vw, 3rem); line-height: 1.14;
  color: var(--clt-maroon); margin: 0 auto 24px; max-width: 22ch;
}
.programnote__head em { font-style: normal; color: var(--holly); }
.programnote__body {
  font-family: var(--font-sans); font-size: clamp(1rem, 1.45vw, 1.15rem);
  line-height: 1.8; color: var(--clt-graphite); margin: 0 auto; max-width: 54ch; text-wrap: pretty;
}
.programnote__rule {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin: clamp(24px, 3.4vh, 32px) auto clamp(16px, 2.4vh, 22px); width: 130px;
}
.programnote__rule span { height: 1px; flex: 1; background: linear-gradient(90deg, transparent, rgba(184,138,42,0.7)); }
.programnote__rule span:last-child { background: linear-gradient(90deg, rgba(184,138,42,0.7), transparent); }
.programnote__rule .dot { flex: 0 0 auto; width: 6px; height: 6px; background: var(--gold); transform: rotate(45deg); }
.programnote__sig {
  font-size: clamp(0.72rem, 1.1vw, 0.82rem); text-transform: uppercase;
  letter-spacing: 0.2em; color: var(--clt-maroon-800); margin: 0;
}

/* ============================================================
   PERFORMANCES / DATES
   ============================================================ */
.dates {
  background: var(--clt-cream);
  padding: clamp(70px, 12vh, 150px) 0;
}
.dates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(14px, 2vw, 22px);
}
.date-card {
  background: linear-gradient(165deg, #fffdf8, var(--clt-paper));
  border: 1px solid rgba(109,51,53,0.18);
  border-radius: 10px;
  padding: 26px 22px;
  text-align: center;
  box-shadow: 0 14px 30px rgba(60,28,30,0.14);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.date-card:hover { transform: translateY(-6px); box-shadow: 0 22px 42px rgba(60,28,30,0.2); }
.date-card__day {
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--holly); font-weight: 700;
}
.date-card__date {
  font-family: var(--font-display); font-size: 1.3rem; color: var(--clt-maroon);
  margin-top: 8px;
}
.date-card__time {
  font-family: var(--font-script); font-size: 1.6rem; color: var(--clt-maroon-800);
  margin-top: 6px;
}
.dates__foot {
  text-align: center; margin-top: clamp(36px,5vh,52px);
  color: var(--clt-graphite); font-size: 0.95rem;
}

/* ============================================================
   CHARACTERS (deep maroon night, immersive)
   ============================================================ */
.cast {
  position: relative;
  background:
    linear-gradient(180deg, var(--night), var(--night-deep) 40%, var(--night));
  padding: clamp(80px, 13vh, 160px) 0;
  overflow: hidden;
}
.cast::before {
  content:""; position: absolute; inset: 0; pointer-events:none; opacity: 0.4;
  background:
    repeating-linear-gradient(90deg, transparent 0 8vw, rgba(0,0,0,0.18) 8vw 8.6vw);
  mask-image: linear-gradient(to bottom, transparent, black 30%, black 70%, transparent);
}
.cast__intro {
  text-align: center; max-width: 720px; margin: 0 auto clamp(40px,6vh,64px);
  color: rgba(255,255,255,0.82);
}
.cast__intro p { font-size: clamp(1rem,1.5vw,1.18rem); line-height: 1.7; }
.cast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(16px, 2vw, 26px);
  position: relative; z-index: 2;
}
.char {
  position: relative;
  background: linear-gradient(165deg, rgba(247,241,234,0.97), rgba(236,228,215,0.95));
  border-radius: 8px;
  padding: 28px 24px 26px;
  border: 1px solid rgba(244,183,27,0.35);
  box-shadow: 0 18px 40px rgba(0,0,0,0.4);
  overflow: hidden;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
}
.char:hover { transform: translateY(-8px); box-shadow: 0 26px 56px rgba(0,0,0,0.5); }
.char::before {
  content: attr(data-emblem);
  position: absolute; top: -14px; right: -6px;
  font-family: var(--font-script);
  font-size: 5.4rem;
  color: rgba(175,59,59,0.12);
  line-height: 1;
  pointer-events: none;
}
.char__no {
  font-family: var(--font-display);
  font-size: 0.85rem; color: var(--holly); letter-spacing: 0.1em;
}
.char__name {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.2rem, 2.1vw, 1.55rem);
  color: var(--clt-maroon); line-height: 1.1;
  margin: 6px 0 14px;
}
.char__wishlabel {
  font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--clt-maroon-600); font-weight: 700; margin-bottom: 4px;
}
.char__wish {
  font-family: var(--font-script);
  font-size: clamp(1.35rem, 2vw, 1.6rem);
  color: var(--clt-maroon-800);
  line-height: 1.1;
}

/* ============================================================
   GET INVOLVED — auditions + tickets teasers
   ============================================================ */
.involve {
  background: var(--clt-cream);
  padding: clamp(70px, 12vh, 150px) 0;
}
.teasers { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 34px); }
.teaser {
  position: relative;
  border-radius: 14px;
  padding: clamp(30px, 4vw, 52px);
  overflow: hidden;
  display: flex; flex-direction: column;
  min-height: 340px;
}
.teaser.auditions {
  background: linear-gradient(165deg, var(--clt-maroon), var(--clt-maroon-900));
  color: #fff;
}
.teaser.tickets {
  background: linear-gradient(165deg, var(--holly-deep), var(--night-deep));
  color: #fff;
}
.teaser__badge {
  align-self: flex-start;
  white-space: nowrap;
  font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.18em; font-weight: 700;
  padding: 7px 15px; border-radius: 999px;
  background: rgba(255,255,255,0.14); color: var(--gold-soft);
  border: 1px solid rgba(244,183,27,0.45);
}
.teaser__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.7rem, 3vw, 2.6rem); line-height: 1.05;
  margin: 30px 0 12px;
}
.teaser__title .em { color: var(--gold); display: block; white-space: nowrap; }
.teaser p { color: rgba(255,255,255,0.85); font-size: clamp(0.98rem,1.4vw,1.12rem); line-height: 1.6; margin: 0 0 22px; }
.audition-roles {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin: -6px 0 22px;
  font-family: var(--font-display); font-size: clamp(1.1rem, 1.8vw, 1.35rem); color: #fff; letter-spacing: 0.02em;
}
.audition-roles .sep { color: var(--gold); }
.teaser p.audition-cast { font-size: clamp(0.88rem,1.2vw,0.98rem); color: rgba(255,255,255,0.72); line-height: 1.55; }
.audition-cast b { color: #fff; font-weight: 700; }

.mini-cd {
  margin-top: auto;
  display: flex; align-items: flex-end; gap: 14px; flex-wrap: wrap;
  padding-top: 8px;
}
.mini-cd__unit {
  display: flex; flex-direction: column; align-items: center;
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(244,183,27,0.35);
  border-radius: 8px;
  padding: 8px 12px 6px;
  min-width: 56px;
}
.mini-cd__num {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem); line-height: 1;
  color: var(--gold); font-variant-numeric: tabular-nums;
}
.mini-cd__lab {
  margin-top: 5px; font-size: 0.6rem; text-transform: uppercase;
  letter-spacing: 0.16em; color: rgba(255,255,255,0.7);
}
.mini-cd__cap {
  font-family: var(--font-script); font-size: clamp(1.1rem, 1.7vw, 1.4rem);
  color: var(--gold-soft); line-height: 1.1; padding-bottom: 6px;
}
.teaser__soon {
  margin-top: 18px;
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-playful);
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: clamp(0.82rem, 1.2vw, 0.98rem);
  color: #fff;
}
.teaser__soon .bulb {
  width: 11px; height: 11px; border-radius: 50%; background: var(--gold);
  box-shadow: var(--gold-glow) 0 0 14px; animation: bulb 1.6s ease-in-out infinite;
  flex: 0 0 auto;
}
@keyframes bulb { 0%,100%{opacity:0.55} 50%{opacity:1} }
.involve__note {
  text-align: center; margin-top: clamp(40px,6vh,60px);
  color: var(--clt-maroon); font-size: clamp(1rem,1.5vw,1.2rem);
}
.involve__note .script { font-family: var(--font-script); color: var(--holly); font-size: 1.5em; }

/* ============================================================
   TEASER CTAs
   ============================================================ */
.teaser__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 8px;
}
.teaser-btn {
  display: inline-flex; align-items: center;
  text-decoration: none;
  font-family: var(--font-sans); font-weight: 700;
  font-size: 0.86rem; letter-spacing: 0.06em; text-transform: uppercase;
  border-radius: 8px; padding: 12px 20px;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.teaser-btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
.teaser-btn.primary {
  background: var(--gold); color: var(--clt-maroon-900);
  box-shadow: 0 5px 16px rgba(244,183,27,0.32);
}
.teaser-btn.primary:hover  { transform: translateY(-2px); box-shadow: 0 9px 22px rgba(244,183,27,0.46); }
.teaser-btn.secondary {
  background: rgba(255,255,255,0.12); color: #fff;
  border: 1.5px solid rgba(255,255,255,0.34);
}
.teaser-btn.secondary:hover { background: rgba(255,255,255,0.2); }
.teaser-btn.tickets {
  background: var(--gold); color: var(--clt-maroon-900);
  box-shadow: 0 5px 16px rgba(244,183,27,0.32);
}
.teaser-btn.tickets:hover { transform: translateY(-2px); }

/* ============================================================
   SEASON CONTEXT STRIP
   ============================================================ */
.season {
  background: var(--clt-paper);
  padding: clamp(60px, 9vh, 110px) 0;
}
.season__label {
  text-align: center; font-size: 0.78rem; text-transform: uppercase;
  letter-spacing: 0.2em; color: var(--clt-maroon-600); font-weight: 700;
  margin: 0 0 clamp(32px, 5vh, 50px);
}
.season__strip {
  display: flex; align-items: flex-start; justify-content: center;
  gap: clamp(16px, 3vw, 30px); flex-wrap: wrap;
}
.season__arrow { align-self: flex-start; margin-top: 108px; }
.season__show {
  flex: 0 0 160px; text-align: center;
}
.season__show img {
  width: 100%; aspect-ratio: 2 / 3; object-fit: cover; display: block; border-radius: 8px; box-shadow: 0 10px 26px rgba(60,28,30,0.2);
}
.season__show.dim { opacity: 0.6; }
.season__show.current {
  flex: 0 0 190px; margin-top: -16px;
  padding: 16px; background: #fff; border-radius: 12px;
  border: 2px solid var(--holly);
  box-shadow: 0 20px 46px rgba(60,28,30,0.25);
}
.season__show.current img { border-radius: 6px; }
.season__show-tag {
  font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--clt-maroon-600); font-weight: 700; margin-top: 10px;
}
.season__show.current .season__show-tag { color: var(--holly); }
.season__show-title {
  font-family: var(--font-display); font-size: 1.05rem; color: var(--clt-maroon);
  margin-top: 4px;
}
.season__show-when { font-size: 0.78rem; color: var(--clt-graphite); opacity: 0.8; }
.season__arrow {
  font-family: var(--font-display); font-size: 1.6rem; color: var(--clt-rose);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background:
    radial-gradient(120% 140% at 50% 0%, var(--clt-maroon-800) 0%, var(--clt-maroon-900) 55%, #26100f 100%);
  color: rgba(255,255,255,0.82);
  padding: clamp(56px, 8vh, 90px) 0 44px;
  text-align: center;
}
.footer__bulbs {
  height: 14px; width: 100%;
  background-image: radial-gradient(circle, var(--gold) 32%, transparent 38%);
  background-size: 26px 14px; background-repeat: repeat-x; background-position: center;
  opacity: 0.85; margin-bottom: clamp(40px,6vh,64px);
  animation: bulbrun 2.4s linear infinite;
}
@keyframes bulbrun { from{background-position-x:0} to{background-position-x:26px} }
.footer__inner { display: flex; flex-direction: column; align-items: center; }
.footer__title {
  font-family: var(--font-script); font-size: clamp(2.4rem,5.5vw,3.6rem); color: var(--gold);
  line-height: 1; margin: 0 0 14px; text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}
.footer__run {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-size: clamp(0.9rem, 1.4vw, 1.05rem); letter-spacing: 0.03em; color: rgba(255,255,255,0.7);
  line-height: 1.5;
  margin-bottom: clamp(34px, 5vh, 52px);
}
.footer__run-date {
  color: #fff; font-weight: 600; white-space: nowrap;
  font-size: clamp(1rem, 1.6vw, 1.2rem); letter-spacing: 0.04em;
}
.footer__run-venue { color: var(--gold-soft); white-space: nowrap; }

.presents {
  width: 100%;
  max-width: 480px;
  margin: 0 0 clamp(34px, 5vh, 50px);
}
.presents__head {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  margin-bottom: 20px;
}
.presents__rule {
  height: 1px; flex: 1; max-width: 150px;
  background: linear-gradient(to var(--dir, right), transparent, rgba(244,183,27,0.7));
  position: relative;
}
.presents__head .presents__rule:last-child { --dir: left; }
.presents__rule::after {
  content: ""; position: absolute; top: 50%; right: -1px; transform: translateY(-50%) rotate(45deg);
  width: 5px; height: 5px; background: var(--gold);
}
.presents__head .presents__rule:last-child::after { right: auto; left: -1px; }
.presents__label {
  font-family: var(--font-sans);
  font-size: clamp(0.7rem, 1.1vw, 0.82rem);
  text-transform: uppercase; letter-spacing: 0.32em;
  color: var(--gold-soft); white-space: nowrap; padding-left: 0.32em;
}

.presents__panel {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap;
  gap: clamp(24px, 4vw, 52px);
  padding: clamp(30px, 4vw, 46px) clamp(34px, 5vw, 66px);
  background:
    linear-gradient(165deg, #fffdf8 0%, var(--clt-cream) 60%, #efe5d4 100%);
  border-radius: 6px;
  box-shadow:
    0 26px 60px rgba(0,0,0,0.42),
    inset 0 0 0 1px rgba(255,255,255,0.7),
    inset 0 0 0 7px var(--clt-cream),
    inset 0 0 0 8px rgba(184,138,42,0.55);
}
.presents__corner {
  position: absolute; width: 20px; height: 20px; z-index: 2;
  border-color: var(--gold); border-style: solid; border-width: 0;
}
.presents__corner.tl { top: 13px; left: 13px; border-top-width: 2px; border-left-width: 2px; }
.presents__corner.tr { top: 13px; right: 13px; border-top-width: 2px; border-right-width: 2px; }
.presents__corner.bl { bottom: 13px; left: 13px; border-bottom-width: 2px; border-left-width: 2px; }
.presents__corner.br { bottom: 13px; right: 13px; border-bottom-width: 2px; border-right-width: 2px; }
.presents__corner::after {
  content: ""; position: absolute; width: 4px; height: 4px; border-radius: 50%; background: var(--gold);
}
.presents__corner.tl::after { top: -3px; left: -3px; }
.presents__corner.tr::after { top: -3px; right: -3px; }
.presents__corner.bl::after { bottom: -3px; left: -3px; }
.presents__corner.br::after { bottom: -3px; right: -3px; }

.presents__logo { display: inline-flex; transition: transform 0.45s var(--ease-out), filter 0.45s var(--ease-out); }
.presents__logo:hover { transform: translateY(-3px); filter: drop-shadow(0 8px 16px rgba(109,51,53,0.28)); }
.presents__logo img { display: block; width: auto; height: clamp(58px, 8vw, 90px); }

.footer__contact {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px 24px;
  font-size: 0.92rem; color: rgba(255,255,255,0.68);
  margin-bottom: clamp(28px, 4vh, 40px);
}

.footer__follow {
  font-size: clamp(0.95rem, 1.4vw, 1.1rem); color: rgba(255,255,255,0.8); line-height: 1.7; margin: 0 0 6px;
}
.footer__follow-script {
  font-family: var(--font-script); font-size: clamp(1.5rem, 3vw, 2.1rem); color: var(--gold);
  display: inline-block; margin-top: 4px;
}
.footer__legal {
  margin-top: 30px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.7; max-width: 620px;
}

/* ============================================================
   REVEAL — content is always visible by default (no scroll-gated
   opacity). .in is kept as a hook for a purely decorative nudge.
   ============================================================ */
.reveal { opacity: 1; transform: none; }
.reveal.in { opacity: 1; transform: none; }

/* hero entrance — a subtle rise; content itself is always fully opaque
   (animation only ever touches transform, never opacity, so nothing can
   end up invisible if the animation doesn't get a render tick). */
.hero__inner > * { animation: rise 0.9s var(--ease-out) both; }
.hero__eyebrow { animation-delay: 0.05s; }
.hero__badges { animation-delay: 0.1s; }
.hero__title { animation-delay: 0.14s; }
.hero__present { animation-delay: 0.22s; }
.hero__dates { animation-delay: 0.3s; }
.countdown { animation-delay: 0.36s; }
.hero__sub { animation-delay: 0.42s; }
.hero__ctas { animation-delay: 0.46s; }
.hero__salebadge { animation-delay: 0.5s; }
@keyframes rise { from { transform: translateY(18px); } to { transform: none; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   HERO CTAs
   ============================================================ */
.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: clamp(18px, 2.6vh, 28px);
  min-height: 0;
}
.hero-cta {
  display: inline-flex; align-items: center;
  text-decoration: none;
  font-family: var(--font-sans); font-weight: 700;
  font-size: clamp(0.88rem, 1.3vw, 1rem);
  letter-spacing: 0.06em; text-transform: uppercase;
  border-radius: 8px; padding: 14px 28px;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s, background 0.2s;
}
.hero-cta:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.hero-cta.primary {
  background: var(--gold); color: var(--clt-maroon-900);
  box-shadow: 0 8px 24px rgba(244,183,27,0.38);
}
.hero-cta.primary:hover  { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(244,183,27,0.5); }
.hero-cta.secondary {
  background: rgba(255,255,255,0.12); color: #fff;
  border: 1.5px solid rgba(255,255,255,0.42);
  backdrop-filter: blur(6px);
}
.hero-cta.secondary:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }

.hero__running {
  display: none;
  margin-top: clamp(18px, 2.6vh, 28px);
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.04em;
}
.hero__running .hero__running-label { color: var(--gold); }
.hero__running .hero__running-sep   { color: rgba(244,183,27,0.5); margin: 0 10px; }

/* ============================================================
   DEV STATE SWITCHER
   ============================================================ */
#devSwitcher {
  position: fixed; bottom: 22px; right: 22px; z-index: 9999;
  background: rgba(28, 14, 15, 0.96);
  border: 1px solid rgba(244,183,27,0.45);
  border-radius: 12px;
  font-family: var(--font-sans);
  box-shadow: 0 20px 50px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.04) inset;
  max-width: 230px; width: 230px;
  overflow: hidden;
  backdrop-filter: blur(8px);
}
#devSwitcher.collapsed .dsw__btns { display: none; }
.dsw__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(244,183,27,0.18);
}
.dsw__label {
  font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--gold-soft); font-weight: 700;
}
.dsw__close {
  background: none; border: none; color: rgba(255,255,255,0.45);
  cursor: pointer; font-size: 0.85rem; padding: 2px 4px; line-height: 1;
  transition: color 0.15s;
}
.dsw__close:hover { color: #fff; }
.dsw__btns {
  padding: 8px;
  display: flex; flex-direction: column; gap: 4px;
  max-height: 340px; overflow-y: auto;
}
.dsw__btn {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.09);
  border-radius: 6px; padding: 7px 10px;
  color: rgba(255,255,255,0.68);
  font-family: var(--font-sans); font-size: 0.71rem; letter-spacing: 0.04em;
  cursor: pointer; text-align: left;
  transition: background 0.15s, color 0.15s;
}
.dsw__btn:hover  { background: rgba(255,255,255,0.13); color: #fff; }
.dsw__btn.active {
  background: rgba(244,183,27,0.16); border-color: rgba(244,183,27,0.45); color: var(--gold);
}
.dsw__btn.reset  {
  margin-top: 4px; border-color: rgba(175,59,59,0.28);
  color: rgba(216,120,100,0.9);
}
.dsw__btn.reset:hover { background: rgba(175,59,59,0.1); color: var(--holly); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 880px) {
  .about__grid { grid-template-columns: 1fr; }
  .poster-frame { transform: rotate(-1.5deg); margin-bottom: 26px; }
  .teasers { grid-template-columns: 1fr; }
  .season__strip { gap: 20px; }
  .season__show { flex: 0 0 120px; }
  .season__show.current { flex: 0 0 150px; }
}
@media (max-width: 560px) {
  .cd-sep { display: none; }
  .countdown { gap: 14px; flex-wrap: wrap; }
  .hero__dates { font-size: 1rem; padding: 10px 18px; gap: 10px; flex-wrap: wrap; }
  .topbar__tag { font-size: 0.65rem; letter-spacing: 0.14em; }
  .topbar__tag .dot { width: 6px; height: 6px; }
  .footer__contact { flex-direction: column; gap: 4px; }
}
