/* =========================================================
   FIREBIRD YOUTH THEATER — Global Styles
   Tone: warm, welcoming, professional, family-forward
   Fonts: Playfair Display (display) · Nunito (body)
   Shared DNA with thefirebirdproject.org — distinct voice
   ========================================================= */

@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 light palette */
  --cream:        #fdf8f2;
  --cream-mid:    #f5ebe0;
  --cream-deep:   #ede0ce;
  --text:         #1c0f05;
  --text-mid:     #5a3a20;
  --text-muted:   #9a7a5a;
  --cream-border: #e0cbb5;

  /* Dark warm sections */
  --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.15);
  --ember:        #f5a623;
  --ember-soft:   #ffd080;

  /* Youth-specific */
  --forest:       #2a6140;
  --forest-soft:  #347a51;

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

  /* Layout */
  --nav-h:   68px;
  --max-w:   1240px;
  --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; }

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

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

/* ----- Scroll-reveal ----- */
[data-fade] {
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.65s var(--ease-out-expo), transform 0.65s 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);
  background: rgba(253, 248, 242, 0.95);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  box-shadow: 0 1px 0 var(--cream-border);
  transition: background 0.3s, box-shadow 0.3s;
}
.site-nav.scrolled {
  background: rgba(253, 248, 242, 0.98);
  box-shadow: 0 2px 12px rgba(28,15,5,0.08);
}
.nav-inner {
  width: 100%; max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.nav-logo {
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  color: var(--text); transition: color 0.2s;
  display: flex; flex-direction: column; gap: 0.1rem; flex-shrink: 0;
}
.nav-logo span {
  font-family: var(--font-body); font-size: 0.58rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--fire);
}
.nav-links {
  display: flex; align-items: center;
  gap: clamp(0.65rem, 1.8vw, 1.5rem); flex-wrap: wrap;
}
.nav-links a {
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 600;
  color: var(--text-muted); transition: color 0.2s; white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-cta {
  background: var(--forest) !important; color: white !important;
  padding: 0.45em 1.1em; font-weight: 700 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--forest-soft) !important; }
.nav-donate {
  background: var(--fire) !important; color: white !important;
  padding: 0.45em 1.1em; font-weight: 700 !important;
  transition: background 0.2s !important;
}
.nav-donate:hover { background: var(--fire-soft) !important; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--text); transition: transform 0.3s, opacity 0.3s; }
.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: 700;
  letter-spacing: 0.02em;
  padding: 0.85em 1.85em; border-radius: 100px; border: 2px solid transparent;
  cursor: pointer; white-space: nowrap;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s;
}
.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 5px 16px rgba(232,77,0,0.3); }
.btn--forest { background: var(--forest); color: white; border-color: var(--forest); }
.btn--forest:hover { background: var(--forest-soft); border-color: var(--forest-soft); box-shadow: 0 5px 16px rgba(42,97,64,0.25); }
.btn--ember  { background: var(--ember); color: var(--text); border-color: var(--ember); }
.btn--ember:hover { background: var(--ember-soft); }
.btn--outline-dark { background: transparent; color: var(--text); border-color: rgba(28,15,5,0.22); }
.btn--outline-dark:hover { border-color: var(--text); }
.btn--outline-fire { background: transparent; color: var(--fire); border-color: var(--fire); }
.btn--outline-fire:hover { background: var(--fire); color: white; }
.btn--outline-light { background: transparent; color: var(--light-text); border-color: rgba(253,248,242,0.4); }
.btn--outline-light:hover { border-color: var(--light-text); background: rgba(253,248,242,0.08); }

/* ----- 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.70;
  filter: saturate(0.7) contrast(1.05);
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(14,7,4,0.96) 0%,
    rgba(14,7,4,0.65) 45%,
    rgba(14,7,4,0.25) 100%
  );
}
.hero__content {
  position: relative; z-index: 1;
  padding: 0 max(var(--gutter), calc((100vw - var(--max-w)) / 2 + var(--gutter)));
  padding-bottom: clamp(3.5rem, 7vw, 5.5rem);
  max-width: calc(var(--max-w) + 2 * var(--gutter));
  width: 100%;
}
.hero__eyebrow {
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ember); margin-bottom: 1.5rem;
}
.hero__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.0; letter-spacing: -0.015em;
  color: var(--light-text);
}
.hero__title em { font-style: italic; font-weight: 600; color: var(--fire-soft); }
.hero__tagline {
  font-family: var(--font-body); font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 400; color: rgba(253,248,242,0.72);
  line-height: 1.8; max-width: 520px;
  margin-top: 1.5rem; margin-bottom: 2rem;
}
.hero__ctas { display: flex; gap: 0.9rem; flex-wrap: wrap; }
.hero__meta { display: flex; gap: 1.75rem; margin-top: 2rem; flex-wrap: wrap; }
.hero__meta-item { font-family: var(--font-body); font-size: 0.78rem; font-weight: 400; color: rgba(253,248,242,0.55); }
.hero__meta-item strong { color: rgba(253,248,242,0.88); font-weight: 700; }

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

/* ----- Program Cards ----- */
.programs-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; margin-top: 2.5rem;
}
.program-card {
  background: white; display: flex; flex-direction: column; overflow: hidden;
  box-shadow: 0 2px 12px rgba(28,15,5,0.06);
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s;
}
.program-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(28,15,5,0.1); }
.program-card__badge {
  background: var(--fire); color: white;
  font-family: var(--font-body); font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.5em 1em; align-self: flex-start;
}
.program-card__badge--ember  { background: var(--ember); color: var(--text); }
.program-card__badge--forest { background: var(--forest); }
.program-card__body { padding: 1.5rem 1.75rem 2rem; flex: 1; display: flex; flex-direction: column; gap: 0.65rem; }
.program-card__title { font-family: var(--font-display); font-weight: 800; font-size: 1.45rem; line-height: 1.1; color: var(--text); }
.program-card__desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; flex: 1; }
.program-card__price { font-family: var(--font-display); font-weight: 800; font-size: 1.35rem; color: var(--fire); }

/* ----- Quote Strip (original fire design) ----- */
.quote-strip { background: var(--fire); color: white; overflow: hidden; }
.quote-strip__inner {
  display: grid; grid-template-columns: 1fr 50%; align-items: center;
}
.quote-strip__content {
  padding: 3rem 3rem 3rem max(var(--gutter), calc((100vw - var(--max-w)) / 2 + var(--gutter)));
}
.quote-strip__text {
  font-family: var(--font-display); font-size: clamp(1.1rem, 2.4vw, 1.75rem);
  font-style: italic; line-height: 1.5; max-width: 560px; margin-bottom: 1rem;
}
.quote-strip__source { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.8; }
.quote-strip__photo-wrap { position: relative; height: 280px; overflow: hidden; }
.quote-strip__photo-wrap::before {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(to right, var(--fire) 0%, rgba(232,77,0,0) 40%);
}
.quote-strip__photo { width: 100%; height: 100%; object-fit: cover; object-position: center 12%; display: block; }
@media (max-width: 700px) {
  .quote-strip__inner { grid-template-columns: 1fr; display: flex; flex-direction: column; }
  .quote-strip__photo-wrap { order: -1; height: 210px; width: 100%; }
  .quote-strip__photo-wrap::before { background: linear-gradient(to top, var(--fire) 0%, rgba(232,77,0,0) 40%); }
  .quote-strip__content { padding: 1.5rem var(--gutter) 2.5rem; text-align: center; }
}

/* ----- Why Grid ----- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 2.5rem; }
.why-card__title {
  font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; line-height: 1.15; color: var(--text);
  margin-bottom: 0.65rem; padding-left: 0.85rem; border-left: 2px solid var(--fire);
}
.why-card__desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; padding-left: 0.85rem; }

/* ----- CTA Section ----- */
.cta-section {
  background: var(--dark); color: var(--light-text);
  padding: clamp(4rem, 8vw, 6.5rem) var(--gutter);
  text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 100%, rgba(232,77,0,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.cta-section .section-title { color: var(--light-text); position: relative; }
.cta-section__desc { font-size: clamp(0.9rem, 1.4vw, 1.05rem); color: rgba(253,248,242,0.65); 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; }

/* ----- Pricing Cards ----- */
.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;
  display: flex; flex-direction: column; align-items: center;
}
.price-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(28,15,5,0.1); }
.price-card--featured { background: var(--forest); color: white; border-top-color: var(--ember); box-shadow: 0 8px 28px rgba(42,97,64,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; border-radius: 100px; white-space: nowrap; }
.price-card__amount { font-family: var(--font-display); font-weight: 900; font-size: 3rem; line-height: 1; color: var(--fire); margin-top: 1rem; }
.price-card--featured .price-card__amount { color: var(--ember-soft); }
.price-card__label { font-family: var(--font-body); font-size: 0.72rem; font-weight: 700; color: var(--text-muted); margin-top: 0.4rem; letter-spacing: 0.06em; text-transform: uppercase; }
.price-card--featured .price-card__label { color: rgba(255,255,255,0.65); }
.price-card__desc { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.85rem; line-height: 1.7; flex: 1; }
.price-card--featured .price-card__desc { color: rgba(255,255,255,0.78); }
.price-card .btn { margin-top: 1.5rem; }

/* ----- 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: 3px solid var(--cream-border);
  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.09); border-top-color: var(--fire); }
.week-card__num { font-family: var(--font-display); font-weight: 900; font-style: italic; font-size: 2.25rem; color: var(--fire); line-height: 1; }
.week-card__date { font-family: var(--font-body); font-size: 0.64rem; font-weight: 600; color: var(--text-muted); }
.week-card__title { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; line-height: 1.2; color: var(--text); }
.week-card__instructor { font-size: 0.75rem; color: var(--text-muted); font-style: italic; }

/* ----- 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: 1/1; object-fit: cover; filter: saturate(0.85); transition: filter 0.35s; }
.team-card:hover .team-card__img { filter: saturate(1.05); }
.team-card__body { padding: 1rem 0.25rem; }
.team-card__name { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; line-height: 1.1; color: var(--text); }
.team-card__role { font-family: var(--font-body); font-size: 0.7rem; font-weight: 700; color: var(--fire); margin-top: 0.3rem; letter-spacing: 0.04em; }
.team-card__bio { font-size: 0.84rem; 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 for existing HTML */
.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; }
.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: 700; 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; }

/* ----- Classes/Coaching cards ----- */
.class-card { background: white; padding: 2rem; display: flex; flex-direction: column; gap: 0.75rem; box-shadow: 0 2px 12px rgba(28,15,5,0.06); border-top: 3px solid var(--cream-border); transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s, border-color 0.2s; }
.class-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(28,15,5,0.1); border-top-color: var(--fire); }
.class-card__ages { font-family: var(--font-body); font-size: 0.6rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--fire); }
.class-card__title { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; line-height: 1.1; color: var(--text); }
.class-card__instructor { font-size: 0.78rem; font-style: italic; color: var(--text-muted); }
.class-card__desc { font-size: 0.87rem; color: var(--text-muted); line-height: 1.7; flex: 1; }
.class-card__detail { font-size: 0.8rem; color: var(--text-mid); }
.class-card__detail strong { color: var(--text); }

/* ----- Press Quotes ----- */
.press-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.press-quote { background: white; padding: 2rem; 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.04em; }
.press-quote__text { font-family: var(--font-display); font-style: italic; font-weight: 700; font-size: 1rem; 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.04em; color: var(--text-muted); }

/* ----- Info blocks ----- */
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.info-block { padding: 1.75rem 2rem; background: var(--cream-mid); }
.info-block__label { font-family: var(--font-body); font-size: 0.6rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--fire); margin-bottom: 0.65rem; }
.info-block__content { font-size: 0.9rem; color: var(--text-mid); line-height: 1.8; }
.info-block__content strong { color: var(--text); font-weight: 700; }
.info-block__content a { color: var(--fire); border-bottom: 1px solid transparent; transition: border-color 0.2s; }
.info-block__content a:hover { border-color: var(--fire); }

/* ----- Contact form ----- */
.contact-form { max-width: 560px; display: flex; flex-direction: column; gap: 1.25rem; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-label { font-family: var(--font-body); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text); }
.form-input, .form-select, .form-textarea { font-family: var(--font-body); font-size: 0.92rem; color: var(--text); background: white; border: 1.5px solid var(--cream-border); padding: 0.75em 1em; outline: none; transition: border-color 0.2s, box-shadow 0.2s; width: 100%; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--fire); box-shadow: 0 0 0 3px var(--fire-glow); }
.form-textarea { resize: vertical; min-height: 140px; }

/* ----- Page Hero (inner pages) — warm/cream for youth ----- */
.page-hero { background: var(--cream-mid); padding: calc(var(--nav-h) + 3.5rem) 0 3.5rem; border-bottom: 1px solid var(--cream-border); }
.page-hero .container { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: flex-end; }
.page-hero__title { font-family: var(--font-display); font-weight: 900; font-size: clamp(2.5rem, 5.5vw, 5.5rem); line-height: 1.03; color: var(--text); letter-spacing: -0.015em; }
.page-hero__meta { font-family: var(--font-body); font-size: 0.78rem; color: var(--text-muted); text-align: right; line-height: 2; }

/* ----- FAQ ----- */
.faq-list { display: flex; flex-direction: column; gap: 1px; background: var(--cream-border); border: 1px solid var(--cream-border); }
.faq-item { background: white; }
.faq-item summary { padding: 1.1rem 1.5rem; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; font-family: var(--font-body); font-weight: 700; font-size: 0.9rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item[open] summary { color: var(--fire); }
.faq-item__body { padding: 0.75rem 1.5rem 1.25rem; font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; }

/* ----- 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: 700; font-size: 1.25rem; color: var(--light-text); display: flex; flex-direction: column; gap: 0.15rem; margin-bottom: 0.65rem; }
.footer-logo span { font-family: var(--font-body); font-size: 0.58rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fire-soft); }
.footer-tagline { font-size: 0.74rem; 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: 700; 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: 700; 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 detail) pages ----- */
.prod-hero {
  background: var(--dark); color: var(--light-text);
  padding: calc(var(--nav-h) + 4rem) var(--gutter) 4rem;
  position: relative;
  background-size: cover;
  background-position: center top;
}
.prod-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(14,7,4,0.92) 45%, rgba(14,7,4,0.55) 100%);
  pointer-events: none;
}
.prod-hero .container { position: relative; z-index: 1; }
.prod-hero__eyebrow {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--fire-soft); margin-bottom: 0.85rem;
}
.prod-hero__title {
  font-family: var(--font-display); font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900; line-height: 0.9; margin-bottom: 1.25rem;
}
.prod-hero__quote {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1rem, 2vw, 1.35rem); color: rgba(253,248,242,0.65);
  max-width: 600px; line-height: 1.5;
  border-left: 3px solid var(--fire); padding-left: 1.25rem;
  margin-bottom: 2rem;
}

.prod-body {
  display: grid; grid-template-columns: 1fr 300px;
  gap: clamp(2.5rem, 5vw, 4.5rem); align-items: start;
}
.prod-description p {
  font-size: 1rem; color: var(--text-mid); line-height: 1.85; margin-bottom: 1.25rem;
}
.prod-description p:last-child { margin-bottom: 0; }

.prod-details {
  background: var(--cream-mid); border: 1px solid var(--cream-border); padding: 1.75rem;
}
.prod-details__row { margin-bottom: 1.25rem; }
.prod-details__row:last-child { margin-bottom: 0; }
.prod-details__label {
  font-family: var(--font-body); font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.25rem;
}
.prod-details__value { font-size: 0.88rem; color: var(--text); line-height: 1.6; }

.prod-award {
  background: var(--ember); color: var(--text);
  font-size: 0.72rem; font-weight: 700; padding: 0.75rem 1rem; margin-top: 1.5rem;
  line-height: 1.5;
}
.prod-award__title { font-family: var(--font-display); font-size: 0.88rem; font-weight: 800; margin-bottom: 0.5rem; }
.prod-award__line { font-size: 0.72rem; margin-bottom: 0.2rem; }
.prod-award__line:last-child { margin-bottom: 0; }

.cast-columns {
  column-count: 2; column-gap: 3rem; margin-top: 1.5rem;
}
.cast-item { font-size: 0.9rem; color: var(--text-mid); line-height: 1.55; margin-bottom: 0.5rem; break-inside: avoid; }
.cast-item__name { font-weight: 700; color: var(--text); }
.cast-item__role { display: block; font-size: 0.8rem; color: var(--text-muted); }

.crew-rows { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
.crew-row { font-size: 0.88rem; color: var(--text-mid); }
.crew-row strong { color: var(--text); font-weight: 700; }

.trailer-section__label {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--fire-soft); margin-bottom: 1.25rem;
}
.trailer-wrap {
  position: relative; aspect-ratio: 16/9;
  background: var(--dark-mid); max-width: 860px;
}
.trailer-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.trailer-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.75rem; color: rgba(253,248,242,0.3);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
}
.trailer-placeholder::before { content: '▶'; font-size: 3rem; color: rgba(253,248,242,0.12); }

.show-photo-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.35rem; margin-top: 1.5rem;
}
.show-photo-grid img {
  width: 100%; aspect-ratio: 3/2; object-fit: cover; display: block;
  transition: opacity 0.2s;
}
.show-photo-grid img:hover { opacity: 0.85; cursor: zoom-in; }
.photo-credit {
  font-size: 0.68rem; color: var(--text-muted); font-style: italic;
  margin-top: 0.65rem; text-align: right;
}

.audience-quotes { margin-top: 1.75rem; display: flex; flex-direction: column; gap: 0.65rem; }
.audience-quote {
  font-family: var(--font-display); font-style: italic;
  font-size: 0.95rem; color: var(--text-mid); line-height: 1.65;
  padding-left: 1rem; border-left: 2px solid var(--cream-border);
}

@media (max-width: 900px) {
  .prod-body { grid-template-columns: 1fr; }
  .cast-columns { column-count: 1; }
}
@media (max-width: 600px) {
  .show-photo-grid { grid-template-columns: 1fr 1fr; }
}

/* ----- Responsive ----- */
@media (max-width: 1200px) { .prod-gallery { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 1024px) {
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid       { grid-template-columns: 1fr 1fr; }
  .weeks-grid     { grid-template-columns: repeat(2, 1fr); }
  .team-grid      { grid-template-columns: repeat(2, 1fr); }
  .prod-grid      { grid-template-columns: repeat(3, 1fr); }
  .prod-gallery   { grid-template-columns: repeat(3, 1fr); }
  .info-grid      { grid-template-columns: 1fr 1fr; }
  .press-grid     { grid-template-columns: 1fr 1fr; }
  .footer-cols    { grid-template-columns: repeat(2, auto); }
  .pricing-cards  { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: rgba(253,248,242,0.98); backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 0;
    border-bottom: 1px solid var(--cream-border);
    box-shadow: 0 6px 24px rgba(28,15,5,0.08);
    transform: translateY(calc(-100% - var(--nav-h))); transition: transform 0.35s 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-radius: 0 !important;
  }
  .nav-links a:hover { background: var(--cream-mid) !important; color: var(--text) !important; }
  .nav-links .nav-donate { color: var(--fire) !important; font-weight: 700 !important; }
  .nav-links .nav-cta    { color: var(--forest) !important; font-weight: 700 !important; }
  .nav-toggle { display: flex; }
  .programs-grid  { grid-template-columns: 1fr 1fr; }
  .why-grid       { grid-template-columns: 1fr; }
  .weeks-grid     { grid-template-columns: 1fr 1fr; }
  .team-grid      { grid-template-columns: 1fr 1fr; }
  .prod-grid      { grid-template-columns: 1fr 1fr; }
  .prod-gallery   { grid-template-columns: repeat(2, 1fr); }
  .info-grid      { grid-template-columns: 1fr; }
  .press-grid     { grid-template-columns: 1fr; }
  .pricing-cards  { grid-template-columns: 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; }
}
@media (max-width: 480px) {
  .programs-grid  { grid-template-columns: 1fr; }
  .weeks-grid     { grid-template-columns: 1fr; }
  .team-grid      { grid-template-columns: 1fr; }
  .prod-grid      { grid-template-columns: 1fr 1fr; }
  .prod-gallery   { grid-template-columns: repeat(2, 1fr); }
  .pricing-cards  { grid-template-columns: 1fr; }
}

/* ----- Form submit area ----- */
.form-submit { margin-top: 1.75rem; display: flex; flex-direction: column; gap: 0.75rem; align-items: flex-start; }
.form-note { font-size: 0.75rem; color: var(--text-muted); line-height: 1.65; max-width: 480px; }

/* ----- Production media block (inside first section, above body text) ----- */
.prod-media-block {
  margin-bottom: 3rem; overflow: hidden;
  background: var(--dark-mid);
}
.prod-media-block img {
  width: 100%; max-height: 460px; object-fit: cover;
  object-position: center 25%; display: block;
}
.prod-media-block .trailer-wrap { max-width: 100%; }

/* ----- Lightbox ----- */
.lb-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(14,7,4,0.94);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s;
}
.lb-overlay.open { opacity: 1; pointer-events: all; }
.lb-overlay img {
  max-width: 92vw; max-height: 88vh;
  object-fit: contain;
  border: none;
  box-shadow: 0 12px 60px rgba(0,0,0,0.6);
  transition: opacity 0.2s;
}
.lb-close {
  position: absolute; top: 1.25rem; right: 1.5rem;
  background: none; border: none; cursor: pointer;
  color: rgba(253,248,242,0.7); font-size: 2rem; line-height: 1;
  transition: color 0.2s;
}
.lb-close:hover { color: white; }
.lb-prev, .lb-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(253,248,242,0.08); border: 1px solid rgba(253,248,242,0.15);
  color: rgba(253,248,242,0.7); font-size: 1.5rem; line-height: 1;
  padding: 0.75rem 1rem; cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.lb-prev:hover, .lb-next:hover { background: rgba(253,248,242,0.15); color: white; }
.lb-prev { left: 1rem; }
.lb-next { right: 1rem; }
.lb-counter { position: absolute; bottom: 1.25rem; left: 50%; transform: translateX(-50%); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; color: rgba(253,248,242,0.45); }

/* Compact instructor headshots (2-column conservatory layout) */
.team-card--compact .team-card__img { aspect-ratio: 1/1;}
.team-card--compact .team-card__name { font-size: 1.1rem; }
.team-card--compact .team-card__role { font-size: 0.65rem; }
.team-card--compact .team-card__bio { font-size: 0.8rem; }
