:root {
  color-scheme: light;
  --ink: #171715;
  --muted: #68645d;
  --paper: #fbfaf5;
  --line: #ded8ca;
  --gold: #d9a441;
  --red: #b94135;
  --green: #2b7d73;
  --blue: #285f8f;
  --charcoal: #242320;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(32, 29, 22, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.site-header {
  align-items: center;
  background: rgba(251, 250, 245, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(222, 216, 202, 0.78);
  display: flex;
  justify-content: space-between;
  left: 0;
  min-height: 72px;
  padding: 0 5vw;
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand,
.site-nav,
.hero-actions,
.filters {
  align-items: center;
  display: flex;
}

.brand {
  font-weight: 800;
  gap: 12px;
  letter-spacing: 0;
}

.brand-mark {
  align-items: center;
  background: var(--red);
  color: var(--white);
  display: inline-flex;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.site-nav {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  gap: 28px;
}

.site-nav a:hover,
.text-link:hover {
  color: var(--red);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  min-height: calc(100vh - 72px);
  overflow: hidden;
}

.hero-media {
  min-height: 640px;
  position: relative;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.hero-media::after {
  background: linear-gradient(90deg, rgba(23, 23, 21, 0), rgba(23, 23, 21, 0.2));
  content: "";
  inset: 0;
  position: absolute;
}

.hero-copy {
  align-self: center;
  padding: 8vw 7vw;
}

.eyebrow {
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 14px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(4.5rem, 12vw, 9.5rem);
  letter-spacing: 0;
  line-height: 0.88;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  letter-spacing: 0;
  line-height: 0.96;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.15rem;
  line-height: 1.2;
  margin-bottom: 8px;
}

.hero-text,
.section-heading p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button,
.filter-button {
  border: 1px solid var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  min-height: 46px;
  padding: 12px 18px;
}

.button-primary {
  background: var(--ink);
  color: var(--white);
}

.button-secondary,
.filter-button {
  background: transparent;
  color: var(--ink);
}

.button:hover,
.filter-button:hover,
.filter-button.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.quick-panel {
  background: var(--charcoal);
  color: var(--white);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 5vw;
}

.quick-panel article {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  min-height: 132px;
  padding: 30px 28px;
}

.quick-panel article:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.stat {
  display: block;
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1;
}

.label {
  color: rgba(255, 255, 255, 0.7);
  display: block;
  font-size: 0.92rem;
  margin-top: 10px;
}

.section {
  padding: 104px 5vw;
}

.section-heading {
  max-width: 760px;
}

.filters {
  flex-wrap: wrap;
  gap: 10px;
  margin: 34px 0;
}

.filter-button {
  border-color: var(--line);
}

.media-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(12, 1fr);
}

.media-card {
  background: var(--white);
  border: 1px solid var(--line);
  grid-column: span 4;
  min-height: 100%;
  overflow: hidden;
}

.media-card.featured {
  grid-column: span 6;
}

.media-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.media-card-content {
  padding: 20px;
}

.tag-row {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-size: 0.82rem;
  font-weight: 700;
  gap: 8px;
  justify-content: space-between;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.play-pill {
  background: var(--green);
  color: var(--white);
  padding: 6px 9px;
}

.performance-band {
  background: #f0ece2;
}

.performance-layout {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  margin-top: 42px;
}

.feature-show {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.feature-show img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}

.feature-show div {
  padding: 30px;
}

.text-link {
  color: var(--blue);
  font-weight: 800;
}

.show-list {
  display: grid;
  gap: 14px;
}

.show-list article {
  align-items: start;
  background: var(--white);
  border: 1px solid var(--line);
  display: grid;
  gap: 18px;
  grid-template-columns: 86px 1fr;
  padding: 22px;
}

.show-list time {
  background: var(--gold);
  color: var(--ink);
  display: inline-flex;
  font-size: 0.95rem;
  font-weight: 800;
  justify-content: center;
  padding: 10px 8px;
}

.show-list p,
.schedule-card p,
.media-card p {
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 0;
}

.schedule-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 42px;
}

.schedule-card {
  background: var(--white);
  border: 1px solid var(--line);
  min-height: 230px;
  padding: 28px;
}

.schedule-card.emphasized {
  background: var(--green);
  color: var(--white);
}

.schedule-card.emphasized p,
.schedule-card.emphasized .place {
  color: rgba(255, 255, 255, 0.76);
}

.day {
  color: var(--red);
  display: block;
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 38px;
  text-transform: uppercase;
}

.emphasized .day {
  color: #ffe0a0;
}

.place {
  color: var(--muted);
  display: block;
  font-weight: 800;
  margin-top: 28px;
}

.contact-band {
  align-items: start;
  background: var(--charcoal);
  color: var(--white);
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.66);
}

.contact-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, 1fr);
}

.contact-grid a {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 1.05rem;
  font-weight: 800;
  min-height: 138px;
  padding: 24px;
}

.contact-grid a:hover {
  background: var(--red);
}

.contact-grid span {
  color: rgba(255, 255, 255, 0.58);
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.site-footer {
  align-items: center;
  background: #11110f;
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  justify-content: space-between;
  padding: 28px 5vw;
}

.site-footer span:first-child {
  color: var(--white);
  font-weight: 800;
}

@media (max-width: 940px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 18px;
    padding-top: 18px;
    position: static;
  }

  .site-nav {
    gap: 16px;
    overflow-x: auto;
    width: 100%;
  }

  .hero,
  .performance-layout,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-media {
    min-height: 430px;
  }

  .quick-panel,
  .schedule-grid,
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .media-card,
  .media-card.featured {
    grid-column: span 6;
  }
}

@media (max-width: 620px) {
  .hero-copy,
  .section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-media {
    min-height: 330px;
  }

  .quick-panel,
  .schedule-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .quick-panel {
    padding: 0;
  }

  .quick-panel article {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .media-card,
  .media-card.featured {
    grid-column: 1 / -1;
  }

  .show-list article {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}
