:root {
  --black: #03050a;
  --midnight: #0c1630;
  --purple: #7f5bff;
  --coral: #ff5b5c;
  --yellow: #ffdd57;
  --aqua: #66e5d9;
  --gray-100: #f5f6fa;
  --gray-200: #e3e7f0;
  --gray-400: #9ba1b0;
  --white: #fff;
  --radius: 12px;
  --shadow: 0 25px 55px rgba(5, 9, 32, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Space Grotesk', 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
}

body.internal {
  background: #050714;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.flex {
  display: flex;
}

.between {
  justify-content: space-between;
}

.center {
  align-items: center;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(3, 5, 10, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 50;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 1.3rem;
  color: var(--white);
  text-shadow: 0 6px 25px rgba(255, 91, 92, 0.35);
}

.site-nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  font-size: 0.95rem;
  color: var(--gray-200);
}

.site-nav a.active,
.site-nav a:hover {
  color: var(--white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: linear-gradient(120deg, var(--coral), var(--purple));
  color: var(--white);
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 12px 35px rgba(255, 91, 92, 0.35);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn.ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: none;
}

.hero,
.page-hero {
  padding: 7rem 0 5rem;
  background: radial-gradient(circle at top right, rgba(127, 91, 255, 0.2), transparent 45%),
    radial-gradient(circle at top left, rgba(255, 91, 92, 0.3), transparent 50%),
    var(--black);
}

.hero {
  background: radial-gradient(circle at top right, rgba(127, 91, 255, 0.25), transparent 45%),
    radial-gradient(circle at top left, rgba(255, 91, 92, 0.35), transparent 50%),
    linear-gradient(120deg, rgba(3, 5, 10, 0.92), rgba(3, 5, 10, 0.65)),
    url('../bg_image.png') center/cover no-repeat, var(--black);
}

.hero h1,
.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero p,
.page-hero p {
  max-width: 640px;
  color: var(--gray-200);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  color: var(--aqua);
  margin-bottom: 1rem;
}

.cta-row {
  margin: 2rem 0 1rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  color: var(--gray-400);
  font-size: 0.9rem;
}

.section {
  padding: 5rem 0;
  background: #070914;
}

.section.alt {
  background: #0c1022;
}

.section.split {
  background: #06060c;
}

.section-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  flex: 1;
  margin: 0;
}

.section-note {
  margin-top: 1.5rem;
  color: var(--gray-200);
  text-align: center;
}

.section-note a {
  color: var(--aqua);
  font-weight: 600;
}

.link-arrow {
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
  font-weight: 600;
}

.link-arrow::after {
  content: '→';
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.cast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.cast-card {
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.cast-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background-size: cover;
  background-position: center;
  border: 3px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.45);
}

.cast-role {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--aqua);
  margin: 0 0 0.75rem;
}

.show-card,
.news-card,
.experience-card,
.spotlight-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.experience-card {
  min-height: 230px;
}

.tag {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--yellow);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: start;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.calendar-list {
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.calendar-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.calendar-item:last-child {
  border-bottom: none;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.checklist li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--aqua);
}

.spotlight-card h3 {
  margin-top: 0;
}

.experience-card h2,
.experience-card h3 {
  margin-top: 0;
}

.hours {
  margin: 2rem 0 0;
}

.hours div {
  margin-bottom: 1rem;
}

.map-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.newsletter-form {
  display: flex;
  gap: 1rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: none;
}

.visually-hidden {
  position: absolute;
  left: -9999px;
}

.site-footer {
  background: var(--midnight);
  padding: 4rem 0 2rem;
}

.site-footer h4 {
  margin-top: 0;
}

.footer-note {
  text-align: center;
  color: var(--gray-400);
  font-size: 0.85rem;
}

.social-list {
  list-style: none;
  padding: 0;
}

.social-list li + li {
  margin-top: 0.35rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
}

.calendar-table {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.calendar-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.calendar-row span {
  padding: 0.75rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.calendar-row span:last-child {
  border-right: none;
}

.calendar-row--head {
  background: rgba(255, 255, 255, 0.05);
  font-weight: 600;
}

.accordion article {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.contact-form,
.contact-form .form-row,
.newsletter-form,
.site-nav ul {
  width: 100%;
}

.contact-form {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(4, 7, 18, 0.8);
  color: var(--white);
}

.contact-form textarea {
  resize: vertical;
}

.site-footer .logo {
  text-transform: uppercase;
}

.hero .container,
.page-hero .container {
  text-align: left;
}

.hero .container p,
.page-hero .container p {
  font-size: 1.1rem;
}

@media (max-width: 900px) {
  .site-nav {
    position: fixed;
    inset: 0 0 auto;
    background: rgba(3, 5, 10, 0.97);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    padding: 5rem 2rem 2rem;
  }

  .site-nav.open {
    transform: translateY(0);
  }

  .site-nav ul {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-toggle {
    display: flex;
  }

  .site-header .btn {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .newsletter-form {
    flex-direction: column;
  }

  .calendar-row {
    grid-template-columns: repeat(5, minmax(100px, 1fr));
  }
}
