/* =========================================================
   THE FIREBIRD PROJECT — Global Styles
   Ethos: "You had to be there."
   Feel: alive, theatrical, editorial, soulful
   Fonts: Playfair Display (display) · Nunito (body)
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;0,800;0,900;1,400;1,500;1,700&family=Nunito:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Warm palette */
  --cream:        #fdf8f2;
  --cream-mid:    #f5ebe0;
  --cream-deep:   #ede0ce;
  --text:         #1c0f05;
  --text-mid:     #5a3a20;
  --text-muted:   #9a7a5a;
  --cream-border: #e0cbb5;

  /* Stage dark */
  --dark:         #0e0704;
  --dark-mid:     #180c06;
  --dark-card:    #1f1009;
  --dark-border:  #2a1508;
  --dark-muted:   #8a6a4a;
  --light-text:   #fdf8f2;

  /* Fire palette */
  --fire:         #e84d00;
  --fire-soft:    #ff6b28;
  --fire-glow:    rgba(232, 77, 0, 0.18);
  --ember:        #f5a623;
  --ember-soft:   #ffd080;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Nunito', system-ui, sans-serif;

  /* Layout */
  --nav-h:   68px;
  --max-w:   1280px;
  --gutter:  clamp(1.25rem, 5vw, 2.5rem);

  --ease-out-expo:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring:    cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }

/* ----- Subtle grain overlay ----- */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 9999;
  pointer-events: none; user-select: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ----- Utility ----- */
.container {
  width: 100%; max-width: var(--max-w);
  margin: 0 auto; padding: 0 var(--gutter);
}
.section      { padding: clamp(4.5rem, 9vw, 8rem) 0; }
.section--sm  { padding: clamp(2.5rem, 4.5vw, 4rem) 0; }
.section--dark { background: var(--dark); color: var(--light-text); }
.section--dark .label { color: var(--fire-soft); }
.section--mid  { background: var(--cream-mid); }

.label {
  display: inline-block;
  font-family: var(--font-body); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fire); margin-bottom: 0.85rem;
}
.label--ember { color: var(--ember); }
.label--muted { color: var(--text-muted); }
.label--light { color: var(--fire-soft); }

/* ----- Scroll-reveal ----- */
[data-fade] {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
  transition-delay: var(--delay, 0s);
}
[data-fade].visible { opacity: 1; transform: none; }

/* ----- Navigation ----- */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h); z-index: 100;
  display: flex; align-items: center; padding: 0 var(--gutter);
  transition: background 0.4s, box-shadow 0.4s;
}
.site-nav.scrolled {
  background: rgba(253, 248, 242, 0.95);
  backdrop-filter: blur(16px) saturate(1.5);
  -webkit-backdrop-filter: blur(16px) saturate(1.5);
  box-shadow: 0 1px 0 var(--cream-border);
}

.site-nav:not(.scrolled) .nav-logo { color: var(--light-text); }
.site-nav:not(.scrolled) .nav-links a { color: rgba(253,248,242,0.65); }
.site-nav:not(.scrolled) .nav-links a:hover { color: var(--light-text); }
.site-nav:not(.scrolled) .nav-cta { border-color: rgba(253,248,242,0.45) !important; color: rgba(253,248,242,0.85) !important; }
.site-nav.scrolled .nav-logo { color: var(--text); }
.site-nav.scrolled .nav-links a { color: var(--text-muted); }
.site-nav.scrolled .nav-links a:hover,
.site-nav.scrolled .nav-links a.active { color: var(--text); }

.nav-inner {
  width: 100%; max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.nav-logo {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
  font-style: italic; letter-spacing: 0.005em; transition: color 0.25s;
  flex-shrink: 0;
}
.nav-links {
  display: flex; align-items: center;
  gap: clamp(0.75rem, 2vw, 1.85rem); flex-wrap: wrap;
}
.nav-links a {
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.2s; white-space: nowrap;
}
.nav-cta {
  color: var(--fire) !important;
  font-weight: 600 !important;
  transition: opacity 0.2s !important;
}
.nav-cta:hover { opacity: 0.75; }
.site-nav.scrolled .nav-cta { color: var(--fire) !important; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--light-text); transition: transform 0.3s, opacity 0.3s; }
.site-nav.scrolled .nav-toggle span { background: var(--text); }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ----- Buttons ----- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.85em 1.85em; border: 1.5px solid transparent;
  cursor: pointer; white-space: nowrap;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.25s;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: none; }
.btn--fire   { background: var(--fire); color: white; border-color: var(--fire); }
.btn--fire:hover { background: var(--fire-soft); border-color: var(--fire-soft); box-shadow: 0 6px 20px rgba(232,77,0,0.35); }
.btn--ember  { background: var(--ember); color: var(--text); border-color: var(--ember); }
.btn--ember:hover { background: var(--ember-soft); border-color: var(--ember-soft); box-shadow: 0 4px 14px rgba(245,166,35,0.3); }
.btn--outline-dark { background: transparent; color: var(--text); border-color: rgba(28,15,5,0.25); }
.btn--outline-dark:hover { border-color: var(--text); }
.btn--outline-light { background: transparent; color: var(--light-text); border-color: rgba(253,248,242,0.35); }
.btn--outline-light:hover { border-color: var(--light-text); background: rgba(253,248,242,0.07); }
.btn--ghost-dark { background: transparent; color: var(--text-muted); border-color: var(--cream-border); }
.btn--ghost-dark:hover { color: var(--text); border-color: var(--text); }

/* ----- HERO ----- */
.hero {
  min-height: 100svh; position: relative; overflow: hidden;
  display: flex; align-items: flex-end;
  padding-top: var(--nav-h);
  background: var(--dark);
}
.hero__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 25%;
  opacity: 0.88;
  filter: saturate(0.9) contrast(1.0);
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(14,7,4,0.92) 0%,
    rgba(14,7,4,0.55) 28%,
    rgba(14,7,4,0.06) 58%,
    rgba(14,7,4,0.0) 100%
  );
}
.hero__glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 45% at 35% 75%, rgba(232,77,0,0.14) 0%, transparent 65%),
    radial-gradient(ellipse 30% 25% at 70% 30%, rgba(245,166,35,0.06) 0%, transparent 60%);
}
.hero__content {
  position: relative; z-index: 1;
  padding: 0 max(var(--gutter), calc((100vw - var(--max-w)) / 2 + var(--gutter)));
  padding-bottom: clamp(4rem, 8vw, 6rem);
  max-width: calc(var(--max-w) + 2 * var(--gutter));
  width: 100%;
}
.hero__eyebrow {
  font-family: var(--font-body); font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--fire-soft); margin-top: clamp(2rem, 4svh, 4rem); margin-bottom: 1.75rem;
  opacity: 0; animation: fadeUp 0.8s 0.2s var(--ease-out-expo) forwards;
}
.hero__title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(4rem, 9.5vw, 10rem);
  line-height: 0.95; letter-spacing: -0.02em;
  color: var(--light-text);
  opacity: 0; animation: fadeUp 0.9s 0.38s var(--ease-out-expo) forwards;
}
.hero__title .fire { color: var(--fire-soft); font-style: italic; }
.hero__tagline {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  color: rgba(253,248,242,0.72); margin-top: 1.5rem; margin-bottom: 1rem;
  opacity: 0; animation: fadeUp 0.8s 0.55s var(--ease-out-expo) forwards;
}
.hero__desc {
  font-size: clamp(0.88rem, 1.2vw, 1rem); font-weight: 400;
  color: rgba(253,248,242,0.55); line-height: 1.9; max-width: 480px;
  opacity: 0; animation: fadeUp 0.8s 0.65s var(--ease-out-expo) forwards;
}
.hero__ctas {
  display: flex; gap: 0.85rem; flex-wrap: wrap; margin-top: 2.25rem;
  opacity: 0; animation: fadeUp 0.7s 0.78s var(--ease-out-expo) forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__btn {
  display: block; width: 100%;
  font-family: var(--font-body); font-size: 0.88rem; font-weight: 600;
  letter-spacing: 0.02em; padding: 0.95em 1.75em;
  border: 1.5px solid transparent; text-align: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.25s;
}
.hero__btn:hover { transform: translateY(-1px); }
.hero__btn--fire { background: var(--fire); color: white; border-color: var(--fire); }
.hero__btn--fire:hover { background: var(--fire-soft); border-color: var(--fire-soft); box-shadow: 0 6px 20px rgba(232,77,0,0.4); }
.hero__btn--outline { background: transparent; color: var(--light-text); border-color: rgba(253,248,242,0.35); }
.hero__btn--outline:hover { border-color: rgba(253,248,242,0.7); background: rgba(253,248,242,0.06); }
.hero__btn--ghost { background: transparent; color: rgba(253,248,242,0.45); border-color: rgba(253,248,242,0.15); }
.hero__btn--ghost:hover { color: rgba(253,248,242,0.75); border-color: rgba(253,248,242,0.3); }
.hero__btns {
  display: flex; flex-direction: column; gap: 0.7rem;
  margin-top: 2.5rem; max-width: 480px;
  opacity: 0; animation: fadeUp 0.7s 0.78s var(--ease-out-expo) forwards;
}

/* ----- Section Titles ----- */
.section-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 2rem; margin-bottom: 3rem; flex-wrap: wrap;
}
.section-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  line-height: 1.03; letter-spacing: -0.015em;
}
.section-title em { font-style: italic; font-weight: 700; }
.section-title .fire  { color: var(--fire); }
.section-title .ember { color: var(--ember); }

/* ----- Current Shows ----- */
.shows-scroll {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; margin-top: 2.5rem;
}
.show-card {
  background: white;
  overflow: hidden; display: block; text-decoration: none;
  box-shadow: 0 2px 10px rgba(28,15,5,0.07);
  transition: transform 0.35s var(--ease-out-expo), box-shadow 0.35s;
}
.show-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 12px 32px rgba(28,15,5,0.14);
}
.show-card__img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  transition: transform 0.55s var(--ease-out-expo);
}
.show-card:hover .show-card__img { transform: scale(1.05); }
.show-card__body { padding: 1.35rem 1.5rem 1.75rem; }
.show-card__status {
  font-family: var(--font-body); font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--fire); margin-bottom: 0.5rem;
}
.show-card__status.ember { color: var(--ember); }
.show-card__title {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.45rem; line-height: 1.0; color: var(--text); letter-spacing: -0.01em;
  margin-bottom: 0.45rem;
}
.show-card__sub { font-size: 0.78rem; color: var(--text-muted); line-height: 1.55; }
.show-card__cta {
  display: inline-flex; align-items: center; gap: 0.35em;
  font-family: var(--font-body); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--fire); margin-top: 0.9rem;
  transition: gap 0.25s;
}
.show-card:hover .show-card__cta { gap: 0.65em; }

/* ----- Pillar Cards ----- */
.pillars-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin-top: 2.5rem;
}
.pillar-card {
  background: white; overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 2px 12px rgba(28,15,5,0.06);
  transition: transform 0.35s var(--ease-out-expo), box-shadow 0.35s;
  text-decoration: none; color: inherit;
}
.pillar-card:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(28,15,5,0.12); }
.pillar-card__img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  filter: saturate(0.85);
  transition: transform 0.5s var(--ease-out-expo), filter 0.4s;
}
.pillar-card:hover .pillar-card__img { transform: scale(1.04); filter: saturate(1.0); }
.pillar-card__body { padding: 2rem; flex: 1; display: flex; flex-direction: column; gap: 0.85rem; }
.pillar-card__tag { font-family: var(--font-body); font-size: 0.6rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--fire); }
.pillar-card__title { font-family: var(--font-display); font-weight: 800; font-size: 1.85rem; line-height: 1.05; color: var(--text); }
.pillar-card__desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; flex: 1; }
.pillar-card__link {
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--fire); display: inline-flex; align-items: center; gap: 0.35em;
  transition: gap 0.25s;
}
.pillar-card:hover .pillar-card__link { gap: 0.65em; }

/* ----- Quote Feature ----- */
.quote-feature {
  background: var(--dark); color: var(--light-text);
  padding: clamp(4rem, 8vw, 7rem) var(--gutter);
  text-align: center; position: relative; overflow: hidden;
}
.quote-feature::before {
  content: '\201C';
  position: absolute; top: -3rem; left: 50%; transform: translateX(-50%);
  font-family: var(--font-display); font-size: clamp(14rem, 28vw, 22rem);
  font-weight: 900; line-height: 1; color: rgba(232,77,0,0.055);
  pointer-events: none; user-select: none;
}
.quote-feature__text {
  font-family: var(--font-display); font-style: italic; font-weight: 700;
  font-size: clamp(1.6rem, 3.5vw, 2.9rem); line-height: 1.35;
  max-width: 860px; margin: 0 auto 1.75rem; position: relative;
  color: rgba(253,248,242,0.9);
}
.quote-feature__source {
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--fire-soft);
  position: relative;
}

/* ----- Press Quotes ----- */
.press-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin-top: 2rem;
}
.press-quote {
  background: white; padding: 2.25rem;
  box-shadow: 0 2px 12px rgba(28,15,5,0.06);
}
.press-quote__stars { color: var(--ember); font-size: 0.82rem; margin-bottom: 0.75rem; letter-spacing: 0.05em; }
.press-quote__text {
  font-family: var(--font-display); font-style: italic; font-weight: 700;
  font-size: 1.05rem; color: var(--text); line-height: 1.65; margin-bottom: 1rem;
}
.press-quote__source {
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.06em; color: var(--text-muted);
}

/* ----- Mission ----- */
.mission-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5.5rem; align-items: center;
}
.mission-body {
  font-size: clamp(0.95rem, 1.3vw, 1.1rem); color: var(--text-mid); line-height: 1.9;
}
.mission-body strong { color: var(--text); font-weight: 600; }
.mission-body p + p { margin-top: 1.2rem; }

/* ----- Education Cards ----- */
.edu-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem;
}
.edu-card {
  background: white; padding: 2.25rem;
  display: flex; flex-direction: column; gap: 1rem;
  box-shadow: 0 2px 12px rgba(28,15,5,0.06);
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s;
}
.edu-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(28,15,5,0.1); }
.edu-card__icon { font-size: 1.85rem; }
.edu-card__title { font-family: var(--font-display); font-weight: 800; font-size: 1.55rem; line-height: 1.1; color: var(--text); }
.edu-card__ages { font-family: var(--font-body); font-size: 0.6rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--fire); }
.edu-card__desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; flex: 1; }
.edu-card__detail { font-size: 0.8rem; color: var(--text-mid); }
.edu-card__detail strong { color: var(--text); }

/* Summer weeks grid */
.weeks-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 2rem; }
.week-card {
  background: white; padding: 1.75rem;
  display: flex; flex-direction: column; gap: 0.5rem;
  box-shadow: 0 2px 8px rgba(28,15,5,0.06);
  border-top: 2px solid transparent;
  transition: transform 0.25s var(--ease-out-expo), box-shadow 0.25s, border-color 0.2s;
}
.week-card:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(28,15,5,0.1); border-top-color: var(--fire); }
.week-card__num { font-family: var(--font-display); font-weight: 900; font-style: italic; font-size: 2.5rem; color: var(--fire); line-height: 1; }
.week-card__date { font-family: var(--font-body); font-size: 0.64rem; font-weight: 500; color: var(--text-muted); letter-spacing: 0.04em; }
.week-card__title { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; line-height: 1.15; color: var(--text); }
.week-card__instructor { font-size: 0.75rem; color: var(--text-muted); font-style: italic; }

/* Pricing */
.pricing-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2rem; }
.price-card {
  background: white; padding: 2.25rem; text-align: center;
  box-shadow: 0 2px 12px rgba(28,15,5,0.07);
  position: relative; border-top: 3px solid transparent;
  transition: transform 0.3s, box-shadow 0.3s;
}
.price-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(28,15,5,0.1); }
.price-card--featured {
  background: var(--dark); color: var(--light-text);
  border-top-color: var(--fire);
  box-shadow: 0 8px 28px rgba(14,7,4,0.25);
}
.price-card__badge {
  position: absolute; top: -0.75rem; left: 50%; transform: translateX(-50%);
  background: var(--ember); color: var(--text); font-family: var(--font-body);
  font-size: 0.56rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.3em 0.9em; white-space: nowrap;
}
.price-card__amount { font-family: var(--font-display); font-weight: 900; font-size: 3.25rem; line-height: 1; color: var(--fire); }
.price-card--featured .price-card__amount { color: var(--ember); }
.price-card__label { font-family: var(--font-body); font-size: 0.72rem; font-weight: 600; color: var(--text-muted); margin-top: 0.5rem; }
.price-card--featured .price-card__label { color: rgba(253,248,242,0.6); }
.price-card__desc { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.85rem; line-height: 1.7; }
.price-card--featured .price-card__desc { color: rgba(253,248,242,0.72); }

/* ----- Team ----- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.team-card { display: flex; flex-direction: column; }
.team-card__img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  filter: saturate(0.8) contrast(1.05);
  transition: filter 0.4s;
}
.team-card:hover .team-card__img { filter: saturate(1.0); }
.team-card__body { padding: 1.1rem 0.2rem; }
.team-card__name { font-family: var(--font-display); font-weight: 800; font-size: 1.35rem; line-height: 1.05; color: var(--text); }
.team-card__role { font-family: var(--font-body); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.06em; color: var(--fire); margin-top: 0.3rem; }
.team-card__bio { font-size: 0.83rem; color: var(--text-muted); margin-top: 0.65rem; line-height: 1.7; }

/* ----- Production Gallery ----- */
.prod-gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}
.prod-gallery-item {
  display: block; text-decoration: none; cursor: pointer;
}
.prod-gallery-item__img-wrap {
  position: relative; overflow: hidden; aspect-ratio: 4/5;
}
.prod-gallery-item__img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  transition: transform 0.5s var(--ease-out-expo), filter 0.4s;
  filter: saturate(0.82);
  display: block;
}
.prod-gallery-item:hover .prod-gallery-item__img {
  transform: scale(1.03);
  filter: saturate(1.0);
}
.prod-gallery-item__body {
  padding: 0.6rem 0.1rem 0;
}
.prod-gallery-item__year {
  font-family: var(--font-body); font-size: 0.55rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--fire);
  margin-bottom: 0.2rem;
}
.prod-gallery-item__title {
  font-family: var(--font-display); font-weight: 800;
  font-size: 0.9rem; line-height: 1.15; color: var(--text);
}
.prod-gallery-item__badge {
  position: absolute; top: 0.5rem; left: 0.5rem;
  font-family: var(--font-body); font-size: 0.5rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.2em 0.55em;
  background: var(--fire); color: white;
}
.prod-gallery-item__badge--award { background: var(--ember); color: var(--text); }

/* Legacy prod-grid (theater page inline override) */
.prod-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
}
.prod-card {
  background: white; overflow: hidden;
  box-shadow: 0 2px 10px rgba(28,15,5,0.07);
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s;
  cursor: default; position: relative;
}
.prod-card[href] { cursor: pointer; text-decoration: none; color: inherit; }
.prod-card:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(28,15,5,0.12); }
.prod-card__img { width: 100%; aspect-ratio: 2/3; object-fit: cover; transition: transform 0.5s var(--ease-out-expo); }
.prod-card:hover .prod-card__img { transform: scale(1.04); }
.prod-card__body { padding: 1.1rem 1.3rem 1.5rem; }
.prod-card__year { font-family: var(--font-body); font-size: 0.6rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fire); margin-bottom: 0.3rem; }
.prod-card__title { font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; line-height: 1.1; color: var(--text); }
.prod-card__sub { font-size: 0.74rem; color: var(--text-muted); margin-top: 0.3rem; line-height: 1.45; }
.prod-card__quote { font-size: 0.72rem; font-style: italic; color: var(--text-muted); margin-top: 0.3rem; line-height: 1.5; border-left: 2px solid var(--fire); padding-left: 0.55rem; }
.prod-card__badge { position: absolute; top: 0.75rem; right: 0.75rem; font-size: 0.54rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.25em 0.7em; background: var(--fire); color: white; }
.prod-card__badge--award { background: var(--ember); color: var(--text); }
.prod-card__placeholder { width: 100%; aspect-ratio: 2/3; background: var(--cream-deep); display: flex; align-items: center; justify-content: center; padding: 1.25rem; }
.prod-card__placeholder-title { font-family: var(--font-display); font-weight: 900; font-size: clamp(1rem, 1.8vw, 1.35rem); text-align: center; color: var(--text-mid); line-height: 1.1; }

/* Theater page reading list */
.readings-list { display: flex; flex-direction: column; gap: 1px; background: var(--cream-border); border: 1px solid var(--cream-border); }
.reading-row {
  background: white; padding: 1.1rem 1.5rem;
  display: grid; grid-template-columns: 60px 1fr; gap: 1.25rem; align-items: baseline;
  border-bottom: 1px solid var(--cream-border); transition: background 0.15s;
}
.reading-row:last-child { border-bottom: none; }
.reading-row:hover { background: var(--cream); }
a.reading-row { cursor: pointer; color: inherit; text-decoration: none; }
.reading-year { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; color: var(--fire); white-space: nowrap; }
.reading-title { font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; line-height: 1.1; }
.reading-sub { font-size: 0.72rem; color: var(--text-muted); margin-top: 0.15rem; }

/* ----- Awards ----- */
.award-note {
  background: linear-gradient(135deg, #fef5eb, #fce8cc);
  padding: 2.75rem 3.25rem;
  display: flex; align-items: flex-start; gap: 2.5rem;
  border-left: 3px solid var(--ember);
}
.award-note__years { font-family: var(--font-display); font-style: italic; font-weight: 700; font-size: clamp(0.95rem, 1.4vw, 1.1rem); color: var(--fire); white-space: nowrap; padding-top: 0.2rem; line-height: 1.85; }
.award-note__body h3 { font-family: var(--font-display); font-weight: 800; font-size: 1.55rem; line-height: 1.1; color: var(--text); margin-bottom: 0.55rem; }
.award-note__body p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; }

/* ----- CTA Warm ----- */
.cta-warm {
  background: var(--dark); color: white; text-align: center;
  padding: clamp(4rem, 8vw, 7rem) var(--gutter);
  position: relative; overflow: hidden;
}
.cta-warm::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 50% 100%, rgba(232,77,0,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 50% 0%, rgba(245,166,35,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.cta-warm .section-title { color: white; position: relative; }
.cta-warm__desc { font-size: clamp(0.9rem, 1.4vw, 1.05rem); margin: 1.25rem auto 2.75rem; max-width: 480px; color: rgba(253,248,242,0.72); line-height: 1.8; position: relative; }
.newsletter-form { display: flex; max-width: 420px; margin: 0 auto; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,0.25); position: relative; }
.newsletter-form input { flex: 1; background: white; border: none; outline: none; padding: 0.95em 1.5em; font-family: var(--font-body); font-size: 0.88rem; color: var(--text); }
.newsletter-form input::placeholder { color: var(--text-muted); }
.newsletter-form button { background: var(--fire); color: white; border: none; cursor: pointer; font-family: var(--font-body); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 0 1.5em; transition: background 0.2s; white-space: nowrap; }
.newsletter-form button:hover { background: var(--fire-soft); }

/* ----- CTA Section ----- */
.cta-section {
  background: var(--dark); color: var(--light-text);
  padding: clamp(4rem, 8vw, 7rem) var(--gutter);
  text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 65% 65% at 50% 100%, rgba(232,77,0,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.cta-section .section-title { color: var(--light-text); position: relative; }
.cta-section__desc { font-size: 1rem; color: rgba(253,248,242,0.68); max-width: 460px; margin: 1rem auto 0; line-height: 1.8; }
.cta-section__ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2.5rem; position: relative; }

/* ----- Two-path split (homepage) ----- */
.two-paths { display: grid; grid-template-columns: 1fr 1fr; }
.path-card {
  position: relative; display: flex; align-items: flex-end;
  overflow: hidden; text-decoration: none; color: var(--light-text);
  min-height: 540px;
}
.path-card__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  transition: transform 0.8s var(--ease-out-expo);
  filter: saturate(0.75);
}
.path-card:hover .path-card__img { transform: scale(1.05); filter: saturate(0.9); }
.path-card__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(8,4,2,0.92) 0%, rgba(8,4,2,0.4) 55%, rgba(8,4,2,0.08) 100%);
}
.path-card__body {
  position: relative; z-index: 2;
  padding: clamp(2rem, 4.5vw, 3.5rem);
  display: flex; flex-direction: column; gap: 0.6rem;
}
.path-card__eyebrow { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--fire-soft); }
.path-card__title { font-family: var(--font-display); font-weight: 900; font-size: clamp(2.25rem, 4.5vw, 3.75rem); line-height: 0.98; color: white; }
.path-card__sub { font-size: 0.88rem; color: rgba(253,248,242,0.65); line-height: 1.6; max-width: 320px; }
.path-card__cta {
  margin-top: 1rem; display: inline-block;
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.03em; color: white;
  border-bottom: 1.5px solid var(--fire); padding-bottom: 3px;
  transition: border-color 0.2s, color 0.2s;
}
.path-card:hover .path-card__cta { border-color: var(--fire-soft); color: var(--fire-soft); }

/* ----- Page Hero (inner pages) ----- */
.page-hero {
  background: var(--dark); padding: calc(var(--nav-h) + 4.5rem) 0 4.5rem;
  border-bottom: 1px solid var(--dark-border);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 80% at 0% 100%, rgba(232,77,0,0.09) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero .container { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: flex-end; position: relative; }
.page-hero__title {
  font-family: var(--font-display); font-weight: 900; font-style: italic;
  font-size: clamp(2.75rem, 6.5vw, 7rem);
  line-height: 0.98; color: var(--light-text); letter-spacing: -0.02em;
}
.page-hero__meta { font-family: var(--font-body); font-size: 0.75rem; color: var(--dark-muted); text-align: right; line-height: 2; }

/* ----- Footer ----- */
.site-footer { background: var(--dark); color: var(--light-text); padding: 5rem 0 3rem; }
.footer-inner { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: start; margin-bottom: 3.5rem; padding-bottom: 3.5rem; border-bottom: 1px solid var(--dark-border); }
.footer-logo { font-family: var(--font-display); font-weight: 800; font-style: italic; font-size: 1.35rem; letter-spacing: 0.005em; color: var(--light-text); display: block; margin-bottom: 0.6rem; }
.footer-logo .fire { color: var(--fire-soft); }
.footer-tagline { font-size: 0.75rem; color: var(--dark-muted); }
.footer-cols { display: grid; grid-template-columns: repeat(3, auto); gap: 3.5rem; }
.footer-col__title { font-family: var(--font-body); font-size: 0.6rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--fire-soft); margin-bottom: 1.1rem; }
.footer-col a { display: block; font-size: 0.82rem; color: var(--dark-muted); margin-bottom: 0.6rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--light-text); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: 0.68rem; color: var(--dark-muted); opacity: 0.6; }
.footer-social { display: flex; gap: 1.5rem; }
.footer-social a { font-family: var(--font-body); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--dark-muted); transition: color 0.2s; }
.footer-social a:hover { color: var(--fire-soft); }

/* ----- Production Show Pages ----- */
.prod-hero {
  min-height: 65vh; position: relative; overflow: hidden;
  display: flex; align-items: flex-end;
  padding-top: var(--nav-h);
  background: var(--dark);
}
.prod-hero__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  opacity: 0.28; filter: saturate(0.55) contrast(1.1);
}
.prod-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(14,7,4,0.98) 0%,
    rgba(14,7,4,0.65) 40%,
    rgba(14,7,4,0.18) 100%
  );
}
.prod-hero__content {
  position: relative; z-index: 1;
  width: 100%; max-width: var(--max-w);
  margin: 0 auto; padding: 0 var(--gutter);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}
.prod-hero__eyebrow {
  font-family: var(--font-body); font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--fire-soft); margin-bottom: 1.25rem;
}
.prod-hero__title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(3rem, 7vw, 8rem);
  line-height: 0.95; letter-spacing: -0.02em;
  color: var(--light-text);
}
.prod-hero__sub {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  color: rgba(253,248,242,0.5); margin-top: 1.25rem;
}
.prod-hero__nav { margin-top: 2rem; }

/* Production body layout */
.prod-body {
  display: grid; grid-template-columns: 1fr 280px;
  gap: 4.5rem; align-items: start;
}
.prod-desc {
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  color: var(--text-mid); line-height: 1.9;
}
.prod-desc p + p { margin-top: 1.2rem; }
.prod-credit {
  font-size: 0.82rem; color: var(--text-muted);
  font-style: italic; margin-top: 1.5rem;
  padding-top: 1.25rem; border-top: 1px solid var(--cream-border);
}
.prod-details {
  background: var(--cream-mid);
  border: 1px solid var(--cream-border);
  padding: 1.75rem;
}
.prod-details dl { display: flex; flex-direction: column; gap: 0; }
.prod-details dt {
  font-family: var(--font-body); font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-muted); margin: 0.85rem 0 0.15rem;
}
.prod-details dt:first-child { margin-top: 0; }
.prod-details dd {
  font-size: 0.85rem; color: var(--text-mid); margin: 0;
  padding-bottom: 0.85rem; border-bottom: 1px solid var(--cream-border);
  line-height: 1.5;
}
.prod-details dd:last-child { border-bottom: none; padding-bottom: 0; }

.prod-award {
  background: linear-gradient(135deg, #fef5eb, #fce8cc);
  border-left: 3px solid var(--ember);
  padding: 1rem 1.25rem; font-size: 0.82rem;
  color: var(--text); line-height: 1.55;
  margin-bottom: 1.25rem;
}

/* Cast & Crew */
.cast-columns {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0 2rem; margin-top: 1.25rem;
}
.cast-item {
  padding: 0.65rem 0; border-bottom: 1px solid var(--cream-border);
}
.cast-item__name {
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  color: var(--text);
}
.cast-item__role {
  font-size: 0.78rem; color: var(--text-muted);
  font-style: italic; margin-top: 0.1rem;
}
.crew-rows {
  display: flex; flex-direction: column;
  margin-top: 1.25rem;
  font-size: 0.88rem; color: var(--text-mid);
}
.crew-rows p {
  padding: 0.55rem 0; border-bottom: 1px solid var(--cream-border);
  line-height: 1.5;
}
.crew-rows p:last-child { border-bottom: none; }

/* Photo grid */
.show-photo-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem; margin-top: 1.5rem;
}
.show-photo-grid img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  display: block; transition: opacity 0.2s, transform 0.2s;
  cursor: zoom-in;
}
.show-photo-grid img:hover { opacity: 0.88; transform: scale(1.01); }
.photo-placeholder {
  grid-column: 1 / -1;
  background: var(--cream-mid); border: 1px dashed var(--cream-border);
  padding: 3rem 2rem; text-align: center;
}
.photo-placeholder p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.photo-placeholder code {
  font-size: 0.8rem; color: var(--fire);
  background: white; padding: 0.2em 0.5em; border: 1px solid var(--cream-border);
}

/* ----- Lightbox ----- */
#lightbox {
  display: none; position: fixed; inset: 0; z-index: 10000;
  background: rgba(8,4,2,0.97);
  flex-direction: column; align-items: center; justify-content: center;
}
#lightbox.lb-open { display: flex; }
.lb-img-wrap {
  display: flex; align-items: center; justify-content: center;
  max-width: 92vw; max-height: 82vh;
}
.lb-img {
  max-width: 92vw; max-height: 82vh;
  object-fit: contain; display: block;
  user-select: none;
}
.lb-close {
  position: fixed; top: 1.25rem; right: 1.5rem;
  font-size: 2.25rem; line-height: 1; color: rgba(253,248,242,0.55);
  background: none; border: none; cursor: pointer;
  transition: color 0.2s; padding: 0.25rem;
}
.lb-close:hover { color: var(--light-text); }
.lb-prev, .lb-next {
  position: fixed; top: 50%; transform: translateY(-50%);
  font-size: 2rem; color: rgba(253,248,242,0.4);
  background: none; border: none; cursor: pointer;
  padding: 1.5rem 1.25rem; transition: color 0.2s;
  user-select: none;
}
.lb-prev:hover, .lb-next:hover { color: var(--light-text); }
.lb-prev { left: 0.5rem; }
.lb-next { right: 0.5rem; }
.lb-counter {
  position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  font-family: var(--font-body); font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.12em; color: rgba(253,248,242,0.35);
}

/* ----- Responsive ----- */
@media (max-width: 1200px) { .prod-gallery { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 1024px) {
  .shows-scroll   { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid   { grid-template-columns: 1fr 1fr; }
  .prod-grid      { grid-template-columns: repeat(3, 1fr); }
  .prod-gallery   { grid-template-columns: repeat(3, 1fr); }
  .team-grid      { grid-template-columns: repeat(2, 1fr); }
  .weeks-grid     { grid-template-columns: repeat(2, 1fr); }
  .edu-cards      { grid-template-columns: 1fr 1fr; }
  .mission-grid   { grid-template-columns: 1fr; gap: 3rem; }
  .footer-cols    { grid-template-columns: repeat(2, auto); }
  .press-row      { grid-template-columns: 1fr 1fr; }
  .prod-body      { grid-template-columns: 1fr; }
  .cast-columns   { grid-template-columns: repeat(2, 1fr); }
  .show-photo-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  /* nav bar always solid cream on mobile — dark treatment is desktop-only */
  .site-nav {
    background: rgba(253,248,242,0.98) !important;
    backdrop-filter: blur(16px) saturate(1.5);
    -webkit-backdrop-filter: blur(16px) saturate(1.5);
    box-shadow: 0 1px 0 var(--cream-border) !important;
  }
  .nav-logo { color: var(--text) !important; }
  .nav-toggle span { background: var(--text) !important; }
  /* dropdown: top:nav-h keeps it below the bar; calc ensures fully off-screen when closed */
  .nav-links {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: rgba(253,248,242,0.98);
    flex-direction: column; align-items: stretch; gap: 0;
    border-bottom: 1px solid var(--cream-border);
    transform: translateY(calc(-100% - var(--nav-h)));
    transition: transform 0.38s var(--ease-out-expo);
    pointer-events: none;
    overflow-y: auto; max-height: calc(100svh - var(--nav-h));
  }
  .nav-links.open { transform: translateY(0); pointer-events: all; }
  .nav-links li { border-bottom: 1px solid var(--cream-border); }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a { display: block; padding: 0.85rem var(--gutter); width: 100%; font-size: 0.9rem; font-weight: 600; color: var(--text-mid) !important; background: transparent !important; border: none !important; border-radius: 0 !important; }
  .nav-links a:hover { background: var(--cream-mid) !important; color: var(--text) !important; }
  .nav-links .nav-cta { color: var(--fire) !important; font-weight: 700 !important; }
  .site-nav .nav-links .nav-cta { border: none !important; padding: 0.85rem var(--gutter) !important; }
  .nav-toggle { display: flex; }
  /* home hero: center on actor's face in negative space above title */
  .hero--home .hero__img { object-position: 25% 5% !important; }
  /* page-hero: tighter mobile padding */
  .page-hero { padding-top: calc(var(--nav-h) + 2rem) !important; padding-bottom: 3rem !important; }
  .shows-scroll   { grid-template-columns: 1fr 1fr; }
  .pillars-grid   { grid-template-columns: 1fr; }
  .prod-grid      { grid-template-columns: 1fr 1fr; }
  .prod-gallery   { grid-template-columns: repeat(2, 1fr); }
  .team-grid      { grid-template-columns: 1fr 1fr; }
  .edu-cards      { grid-template-columns: 1fr; }
  .pricing-cards  { grid-template-columns: 1fr; }
  .weeks-grid     { grid-template-columns: 1fr 1fr; }
  .footer-inner   { grid-template-columns: 1fr; }
  .footer-cols    { grid-template-columns: 1fr; gap: 2rem; }
  .page-hero .container { grid-template-columns: 1fr; }
  .page-hero__meta { text-align: left; }
  .press-row      { grid-template-columns: 1fr; }
  .show-photo-grid { grid-template-columns: repeat(2, 1fr); }
  .award-note     { flex-direction: column; gap: 1rem; padding: 2rem; }
  .mission-grid   { gap: 2.5rem; }
  .two-paths      { grid-template-columns: 1fr; }
  .path-card      { min-height: 360px; }
}
@media (max-width: 480px) {
  .shows-scroll   { grid-template-columns: 1fr; }
  .prod-grid      { grid-template-columns: 1fr 1fr; }
  .prod-gallery   { grid-template-columns: repeat(2, 1fr); }
  .team-grid      { grid-template-columns: 1fr; }
  .weeks-grid     { grid-template-columns: 1fr; }
  .pricing-cards  { grid-template-columns: 1fr; }
}
