* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: #111827;
  background: #f9fafb;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
button:hover {
  cursor: pointer;
}

img {
  max-width: 100%;
  display: block;
}

/* Layout */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(15, 23, 42, 0.94);
  color: white;
  backdrop-filter: blur(10px);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo img {
  display: block;
  height: 32px;
}

.site-nav {
  display: flex;
  gap: 1.25rem;
  font-size: 0.9rem;
}

.site-nav a {
  opacity: 0.9;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  opacity: 1;
  text-decoration: underline;
}

.hero {
  position: relative;
  min-height: 60vh;
  color: white;
  background: #020617;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
}

.hero-image-wrapper {
  position: relative;
  overflow: hidden;
}

.hero-image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.8), transparent 60%);
}

.hero img {
  width: 100%;
  height: 100%;
  max-height: 80vh;
  object-fit: contain;
}

.hero-content {
  position: relative;
  padding: 4rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 480px;
}

.hero-content h1 {
  font-size: clamp(2rem, 3vw + 1rem, 3rem);
  margin-bottom: 0.5rem;
}

.hero-content p {
  font-size: 1rem;
  margin-bottom: 1.0rem;
  opacity: 0.95;
}

.hero-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: rgba(15, 23, 42, 0.85);
  color: #e5e7eb;
}

.hero-status--inline {
  margin-bottom: 0.6rem;
}

.hero-status--overlay {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: none;
}

.section {
  padding: 3.5rem 1.5rem;
}

.section:nth-of-type(even) {
  background: #e5e7eb;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.6rem;
}

.section-intro {
  margin-top: 0;
  margin-bottom: 1.5rem;
  color: #4b5563;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  border: none;
  background: #f97316;
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.35);
}

.btn:hover,
.btn:focus-visible {
  background: #ea580c;
}

/* Shows grid */

.shows-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.show-card {
  background: white;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
  display: flex;
  flex-direction: column;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.show-card--disabled {
  opacity: 0.6;
  cursor: default;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.08);
}

.show-card:not(.show-card--disabled):hover,
.show-card:not(.show-card--disabled):focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.2);
}

.show-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.show-card img.show-card-logo {
  width: auto;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.5rem 2rem;
  margin: 0 auto;
  box-sizing: border-box;
  filter: grayscale(1);
}

.show-card-body {
  padding: 0.9rem 1rem 1.1rem;
}

.show-card-title {
  margin: 0 0 0.15rem;
  font-size: 1rem;
}

.show-card-meta {
  margin: 0;
  font-size: 0.85rem;
  color: #6b7280;
}

/* Show details */

.show-details .details-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2rem;
}

.show-stats {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.75rem;
  row-gap: 0.35rem;
  margin: 0;
}

.show-stats dt {
  font-weight: 600;
}

.show-stats dd {
  margin: 0;
}

.show-cast ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.show-cast li + li {
  margin-top: 0.2rem;
}

/* Gallery & lightbox */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.75rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
    border: 0;
}

.gallery-item img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  transition: transform 150ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.05);
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 40;
}

.lightbox.is-open {
  display: flex;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.85);
}

.lightbox-content {
  position: relative;
  max-width: min(900px, 92vw);
  max-height: 90vh;
  z-index: 1;
}

.lightbox-content img {
  width: 100%;
  height: auto;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 0.5rem;
}

.lightbox-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
}

/* Newsletter form */

.newsletter-form-container {
  max-width: 420px;
}

.field {
  display: block;
  margin-bottom: 0.85rem;
}

.field span {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.9rem;
}

input[type="text"],
input[type="email"] {
  width: 100%;
  padding: 0.5rem 0.6rem;
  border-radius: 0.4rem;
  border: 1px solid #d1d5db;
  font-size: 0.95rem;
}

.form-message {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #16a34a;
}

/* Footer */

.site-footer {
  background: #111827;
  color: #9ca3af;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  font-size: 0.85rem;
}

/* Responsive */

@media (max-width: 800px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-content {
    padding-top: 2rem;
    padding-bottom: 2.5rem;
  }

  .hero-status--inline {
    display: none;
  }

  .hero-status--overlay {
    display: inline-flex;
    left: 50%;
    transform: translateX(-50%);
  }

  .show-details .details-layout {
    grid-template-columns: 1fr;
  }

  .site-nav {
    gap: 0.8rem;
    font-size: 0.85rem;
  }
}
