/* ============================================================
   Entertainment Events Inc — style.css
   Theme: Dark theatrical, gold accents
   ============================================================ */

/* ---------- Custom Properties ---------- */
:root {
  --gold: #c9a84c;
  --gold-light: #e2c47a;
  --gold-dark: #9e7e30;
  --navy: #0a0d1a;
  --navy-mid: #111528;
  --navy-card: #161c35;
  --navy-border: #1e2644;
  --white: #ffffff;
  --off-white: #e8e8ec;
  --muted: #8a8fa8;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
  --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-gold: 0 0 24px rgba(201,168,76,0.25);
  --max-width: 1200px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--navy);
  color: var(--off-white);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--white);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
h4 { font-size: 1rem; }
p { color: var(--off-white); }

.gold { color: var(--gold); }
.muted { color: var(--muted); }

/* ---------- Layout Utilities ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-pad { padding: 5rem 0; }
.section-pad-sm { padding: 3rem 0; }

.text-center { text-align: center; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.grid { display: grid; }

/* ---------- Section Labels ---------- */
.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-header {
  margin-bottom: 3rem;
}
.section-header p {
  max-width: 580px;
  margin: 1rem auto 0;
  color: var(--muted);
  font-size: 1.05rem;
}

/* ---------- Divider ---------- */
.gold-divider {
  width: 64px;
  height: 3px;
  background: var(--gold);
  margin: 1.25rem auto;
  border-radius: 2px;
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 13, 26, 0.97);
  padding: 0.75rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
  backdrop-filter: blur(12px);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.04em;
}
.nav-logo span { color: var(--gold); }
.nav-logo:hover { color: var(--white); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--off-white);
  transition: color var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }

.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius);
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--gold-light); color: var(--navy) !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--off-white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* ====== Video Hero ====== */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.hero-vid {
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}
.hero-vid.active {
  opacity: 1;
}

/* Split hero layout */
.hero-split {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}
.hero-split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding-top: 6rem;
  padding-bottom: 4rem;
}
.hero-split-text { z-index: 1; }
.hero-split-video {
  z-index: 1;
  display: flex;
  justify-content: center;
}
.hero-vid-wrap {
  position: relative;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,168,76,0.15);
}
.hero-vid-wrap .hero-vid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 860px) {
  .hero-split-inner {
    grid-template-columns: 1fr;
  }
  .hero-split-video {
    display: none;
  }
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 20, 0.65);
  z-index: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10,13,26,0.92) 0%, rgba(10,13,26,0.75) 50%, rgba(10,13,26,0.88) 100%),
    radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.08) 0%, transparent 60%),
    linear-gradient(160deg, #0a0d1a 0%, #0f1830 40%, #1a0f25 100%);
  z-index: 0;
}

/* Spotlight effect */
.hero-bg::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Stage curtain texture */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      90deg,
      rgba(201,168,76,0.015) 0px,
      transparent 2px,
      transparent 60px,
      rgba(201,168,76,0.015) 62px
    );
  pointer-events: none;
}

.hero .container { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.35);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s ease both;
}

.hero-title {
  animation: fadeInUp 0.8s ease 0.15s both;
  max-width: 800px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: var(--muted);
  max-width: 560px;
  margin: 1.25rem 0 2.5rem;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeInUp 0.8s ease 0.45s both;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 1;
  animation: fadeIn 1s ease 1.5s both;
}
.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold-light);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  background: transparent;
  color: var(--off-white);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-ghost:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.75rem;
}

/* ---------- Stats Bar ---------- */
.stats-bar {
  background: var(--navy-card);
  border-top: 1px solid var(--navy-border);
  border-bottom: 1px solid var(--navy-border);
  padding: 2rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.stat-item {
  padding: 1rem;
  border-right: 1px solid var(--navy-border);
}
.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Show Cards ---------- */
.shows-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.show-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
}

.show-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,168,76,0.4);
  box-shadow: var(--shadow-card), var(--shadow-gold);
}

.show-img {
  width: 100%;
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
}
.show-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #0a0d1a;
  display: block;
  transition: transform 0.4s ease;
}
/* Ensure uniform card image height everywhere */
.show-card .show-img,
.flagship-card .show-img {
  aspect-ratio: 16/9 !important;
}
.show-card:hover .show-img img {
  transform: scale(1.04);
}

/* CSS gradient placeholders — theatrical look */
.show-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.show-img-placeholder.girls-night {
  background: linear-gradient(135deg, #1a0a2e 0%, #3d1a6e 40%, #8b1a4a 100%);
}
.show-img-placeholder.catechism {
  background: linear-gradient(135deg, #0a1a0a 0%, #1a3a1a 40%, #2a5a2a 100%);
}
.show-img-placeholder.pickle {
  background: linear-gradient(135deg, #1a2a0a 0%, #3a5a0a 40%, #5a8a0a 100%);
}
.show-img-placeholder.comedy {
  background: linear-gradient(135deg, #1a0a0a 0%, #3a1a1a 40%, #6a2a0a 100%);
}
.show-img-placeholder.parody {
  background: linear-gradient(135deg, #0a0a2a 0%, #1a1a4a 40%, #2a2a7a 100%);
}
.show-img-placeholder.holiday {
  background: linear-gradient(135deg, #1a0a0a 0%, #4a0a0a 40%, #7a1a1a 100%);
}
.show-img-placeholder.interactive {
  background: linear-gradient(135deg, #0a1a2a 0%, #0a3a4a 40%, #0a5a6a 100%);
}
.show-img-placeholder.divas {
  background: linear-gradient(135deg, #2a0a1a 0%, #4a0a3a 40%, #7a0a5a 100%);
}
.show-img-placeholder.missing {
  background: linear-gradient(135deg, #1a1a0a 0%, #3a3a0a 40%, #5a5a0a 100%);
}
.show-img-placeholder.sex-city {
  background: linear-gradient(135deg, #1a001a 0%, #3a0a3a 40%, #6a0a5a 100%);
}
.show-img-placeholder.date-night {
  background: linear-gradient(135deg, #0a0a1a 0%, #1a0a3a 40%, #3a0a5a 100%);
}
.show-img-placeholder.christmas {
  background: linear-gradient(135deg, #1a0a00 0%, #4a1a00 40%, #7a2a00 100%);
}
.show-img-placeholder.vegas {
  background: linear-gradient(135deg, #1a1400 0%, #3a2c00 40%, #6a5000 100%);
}
.show-img-placeholder.school {
  background: linear-gradient(135deg, #001a1a 0%, #003a3a 40%, #005a5a 100%);
}

.show-img-placeholder .show-icon {
  font-size: 3rem;
  opacity: 0.4;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

.show-card:hover .show-img-placeholder .show-icon {
  opacity: 0.65;
  transform: scale(1.05);
  transition: all var(--transition);
}

.show-new-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 50px;
  z-index: 2;
}

.show-body {
  padding: 1.5rem;
}

.show-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}

.tag {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.35);
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
}

.show-body h3 {
  margin-bottom: 0.6rem;
  font-size: 1.05rem;
}

.show-body p {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.show-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ---------- Pitch Sections ---------- */
.pitch-section {
  background: var(--navy-mid);
  border-top: 1px solid var(--navy-border);
  border-bottom: 1px solid var(--navy-border);
}

.pitch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.pitch-visual {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.pitch-visual-bg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pitch-visual-bg.presenters {
  background: linear-gradient(135deg, #0a0d1a 0%, #101830 50%, #1a1060 100%);
}
.pitch-visual-bg.fundraisers {
  background: linear-gradient(135deg, #1a0a08 0%, #2a1010 50%, #4a1a00 100%);
}

.pitch-visual-icon {
  font-size: 5rem;
  opacity: 0.3;
}

.pitch-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.pitch-content { max-width: 520px; }

.pitch-list {
  list-style: none;
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pitch-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--off-white);
  font-size: 0.95rem;
}

.pitch-list li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.7rem;
  margin-top: 0.35rem;
  flex-shrink: 0;
}

/* ---------- Testimonials ---------- */
.testimonials {
  background: linear-gradient(135deg, #0a0d1a 0%, #111528 100%);
}

.testimonial-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -0.5rem;
  left: 2rem;
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
}

.testimonial-text {
  font-size: 1.15rem;
  color: var(--off-white);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.testimonial-org {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

/* ---------- CTA Section ---------- */
.cta-section {
  background: linear-gradient(
    135deg,
    rgba(201,168,76,0.08) 0%,
    rgba(10,13,26,1) 50%,
    rgba(201,168,76,0.05) 100%
  );
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  text-align: center;
  padding: 5rem 0;
}

.cta-section h2 { margin-bottom: 1rem; }
.cta-section p { color: var(--muted); max-width: 480px; margin: 0 auto 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
footer {
  background: #060810;
  border-top: 1px solid var(--navy-border);
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .nav-logo {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--muted);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--off-white); }

.footer-bottom {
  border-top: 1px solid var(--navy-border);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ---------- Shows Page ---------- */
.page-hero {
  padding: 10rem 0 5rem;
  text-align: center;
  background: linear-gradient(180deg, #0f1326 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.filter-bar {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.filter-btn {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.55rem 1.25rem;
  border-radius: 50px;
  border: 1.5px solid var(--navy-border);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}

.shows-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.show-card[data-hidden="true"] { display: none; }

/* ---------- About Page ---------- */
.about-story {
  padding: 5rem 0;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-visual {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, #0a0d1a 0%, #1a1040 50%, #0d0a2a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201,168,76,0.15);
}
.about-visual-icon { font-size: 6rem; opacity: 0.25; }

.about-lead {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--off-white);
  margin-bottom: 1.25rem;
}

.about-body {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.about-stats {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
  margin: 3rem 0;
}

.about-stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.about-stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.team-section {
  background: var(--navy-mid);
  border-top: 1px solid var(--navy-border);
  padding: 5rem 0;
  text-align: center;
}

.team-placeholder {
  background: var(--navy-card);
  border: 1px dashed var(--navy-border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  max-width: 600px;
  margin: 2rem auto 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* ---------- Contact Page ---------- */
.contact-page {
  padding: 5rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}

.contact-info h3 {
  margin-bottom: 0.5rem;
  color: var(--gold);
}

.contact-info p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.contact-detail-icon {
  font-size: 1.2rem;
  color: var(--gold);
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.contact-detail-text {
  font-size: 0.9rem;
  color: var(--off-white);
  line-height: 1.5;
}
.contact-detail-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

/* Form */
.contact-form-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.contact-form-card h3 {
  margin-bottom: 0.5rem;
}
.contact-form-card > p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-group.full { grid-column: 1 / -1; }

label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

input, select, textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius);
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  transition: border-color var(--transition), background var(--transition);
  width: 100%;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.05);
}
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238a8fa8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
select option { background: var(--navy-card); }
textarea { resize: vertical; min-height: 130px; }

input::placeholder, textarea::placeholder { color: rgba(138,143,168,0.5); }

.form-submit {
  margin-top: 0.5rem;
}
.form-submit .btn { width: 100%; justify-content: center; padding: 1rem; }
.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.75rem;
}

/* ---------- Flagship Showcase ---------- */
.flagship-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.flagship-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.flagship-card:hover {
  border-color: rgba(201,168,76,0.4);
  box-shadow: var(--shadow-card), var(--shadow-gold);
}

.flagship-card .show-img { aspect-ratio: 16/9; }

.flagship-card .show-body { padding: 1.75rem; }
.flagship-card .show-body h3 { font-size: 1.2rem; }

/* ---------- Series Section ---------- */
.series-section {
  background: var(--navy-mid);
  border-top: 1px solid var(--navy-border);
  border-bottom: 1px solid var(--navy-border);
  padding: 5rem 0;
}

.series-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.series-item {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.series-item:hover {
  border-color: rgba(201,168,76,0.35);
  background: rgba(201,168,76,0.04);
  transform: translateX(4px);
}

.series-num {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--gold);
  opacity: 0.6;
  width: 1.5rem;
  flex-shrink: 0;
}

.series-name {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--off-white);
  line-height: 1.3;
}

/* ---------- Animations ---------- */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* Scroll-reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .shows-grid, .shows-full-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .flagship-row { grid-template-columns: 1fr; }
  .series-list { grid-template-columns: repeat(2, 1fr); }
  .pitch-grid { gap: 2rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(6,8,16,0.98);
    backdrop-filter: blur(16px);
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 999;
  }
  .nav-links.mobile-open a {
    font-size: 1.2rem;
  }
  .nav-toggle { z-index: 1001; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid var(--navy-border); }

  .shows-grid, .shows-full-grid { grid-template-columns: 1fr; }

  .pitch-grid { grid-template-columns: 1fr; }
  .pitch-visual { aspect-ratio: 16/7; }

  .about-story-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }

  .contact-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .series-list { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .about-stats { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
