:root {
  --ink: #111111;
  --paper: #f7f7f4;
  --white: #ffffff;
  --red: #c7272d;
  --red-dark: #81171b;
  --green: #0c7b61;
  --gray: #5c5c5c;
  --line: rgba(17, 17, 17, 0.14);
  --shadow: 0 22px 70px rgba(17, 17, 17, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

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

.visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  left: 0;
  padding: 14px clamp(18px, 4vw, 54px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand img {
  height: 26px;
  width: auto;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  justify-content: flex-end;
  text-transform: uppercase;
}

nav a {
  color: #292929;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

nav .nav-action {
  background: transparent;
  border: 0;
  color: #292929;
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0;
  text-transform: uppercase;
}

nav a:hover,
nav .nav-action:hover,
nav a:focus-visible,
nav .nav-action:focus-visible {
  color: var(--red);
}

.hero {
  align-items: end;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  position: relative;
}

.hero-photo,
.hero-overlay {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.hero-photo {
  object-fit: cover;
  object-position: center top;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.8), rgba(17, 17, 17, 0.35) 48%, rgba(17, 17, 17, 0)),
    linear-gradient(0deg, rgba(17, 17, 17, 0.72), rgba(17, 17, 17, 0) 55%);
}

.hero-content {
  color: var(--white);
  max-width: 760px;
  padding: 160px clamp(22px, 7vw, 90px) 72px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffdfdf;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  line-height: 0.95;
  margin: 0;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(4.1rem, 14.4vw, 10.7rem);
  max-width: min(94vw, 820px);
  overflow-wrap: normal;
  word-break: normal;
}

h1 span {
  display: block;
  white-space: nowrap;
}

h2 {
  font-size: clamp(2.35rem, 7vw, 5.4rem);
}

h3 {
  font-size: 1.35rem;
  line-height: 1.1;
  margin: 16px 0 4px;
  text-transform: uppercase;
}

.hero-content p:not(.eyebrow) {
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  margin: 20px 0 0;
  max-width: 620px;
}

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

.button {
  border: 2px solid currentColor;
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0.04em;
  min-height: 48px;
  padding: 12px 18px;
  text-transform: uppercase;
}

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

.button.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.section {
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.intro-strip {
  background: var(--ink);
  color: var(--white);
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.intro-strip div {
  border-left: 5px solid var(--red);
  padding-left: 18px;
}

.intro-strip p {
  color: rgba(255, 255, 255, 0.78);
  margin: 4px 0 0;
}

.stat {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.split {
  align-items: center;
  display: grid;
  gap: clamp(28px, 5vw, 68px);
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
}

.copy-block p:not(.eyebrow),
.section-heading p:not(.eyebrow) {
  color: #363636;
  font-size: 1.08rem;
  max-width: 720px;
}

.image-feature {
  margin: 0;
}

.image-feature img,
.media-grid img,
.member-card img {
  border-radius: 8px;
  box-shadow: var(--shadow);
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.image-feature img {
  aspect-ratio: 4 / 3;
  height: auto;
  object-position: center center;
}

.image-feature figcaption {
  color: var(--black);
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  letter-spacing: 0.03em;
  line-height: 0.95;
  margin-top: 18px;
  text-transform: uppercase;
}

.dark-section {
  background: #111111;
  color: var(--white);
}

.dark-section .eyebrow,
.dark-section .section-heading p:not(.eyebrow) {
  color: #ffdfdf;
}

.section-heading {
  margin-bottom: 30px;
  max-width: 830px;
}

.member-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.member-card {
  background: #1d1d1d;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
  padding: 12px;
}

.member-card img {
  aspect-ratio: 4 / 5;
  box-shadow: none;
}

.member-card p {
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 4px;
}

.shows-section {
  background:
    linear-gradient(135deg, rgba(199, 39, 45, 0.08), rgba(12, 123, 97, 0.08)),
    var(--paper);
}

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

.show-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 8px solid var(--red);
  border-radius: 8px;
  overflow: hidden;
}

.show-item .show-card {
  background: transparent;
  border: 0;
  border-radius: 0;
}

.show-item summary {
  cursor: pointer;
  list-style: none;
}

.show-item summary::-webkit-details-marker {
  display: none;
}

.show-card {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 8px solid var(--red);
  border-radius: 8px;
  display: grid;
  gap: 16px;
  grid-template-columns: 120px minmax(0, 1fr) auto;
  padding: 18px;
}

.show-card:focus-visible {
  outline: 3px solid rgba(199, 39, 45, 0.28);
  outline-offset: -3px;
}

.show-date {
  color: var(--red-dark);
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.show-date span {
  display: block;
  font-size: 2rem;
}

.show-card h3 {
  margin: 0 0 4px;
}

.show-card p {
  color: var(--gray);
  margin: 0;
}

.show-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.show-pill,
.show-toggle {
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 900;
  padding: 8px 12px;
  text-transform: uppercase;
  white-space: nowrap;
}

.show-pill {
  background: #f0f0ec;
}

.show-toggle {
  background: var(--ink);
  color: var(--white);
}

.show-toggle::after {
  content: "+";
  margin-left: 8px;
}

.show-item[open] .show-toggle::after {
  content: "-";
}

.show-details {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 18px 18px 20px 138px;
}

.show-detail-grid {
  display: grid;
  gap: 8px;
}

.show-detail-grid p {
  color: #333333;
  margin: 0;
}

.show-detail-grid span {
  color: var(--red-dark);
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.show-directions {
  align-self: start;
  background: var(--red);
  border-radius: 6px;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
  padding: 10px 14px;
  text-transform: uppercase;
  white-space: nowrap;
}

.media-section {
  background: var(--white);
}

.media-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.media-link {
  align-items: center;
  background: var(--ink);
  border-radius: 999px;
  color: var(--white);
  display: inline-flex;
  height: 48px;
  justify-content: center;
  margin-top: 0;
  padding: 0;
  transition: transform 160ms ease, box-shadow 160ms ease;
  width: 48px;
}

.media-link:hover,
.media-link:focus-visible {
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.22);
  transform: translateY(-2px);
}

.media-link svg {
  fill: currentColor;
  height: 24px;
  width: 24px;
}

.media-link.youtube {
  background: var(--red);
}

.media-link.instagram {
  background: var(--ink);
}

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

.media-grid figure {
  margin: 0;
}

.media-grid img {
  aspect-ratio: 1 / 1;
}

.media-grid figcaption {
  color: var(--gray);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.25;
  margin-top: 10px;
  text-transform: uppercase;
}

.spotlight-reel {
  grid-column: span 2;
}

.video-frame {
  aspect-ratio: 16 / 9;
  background: var(--ink);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.18);
  overflow: hidden;
}

.video-frame iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
}

.booking-section {
  background: var(--ink);
  color: var(--white);
}

.booking-card {
  align-items: start;
  background: #191919;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 1fr);
  padding: clamp(22px, 5vw, 48px);
}

.booking-card .copy-block p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.75);
}

.contact-form {
  display: grid;
  gap: 14px;
}

label {
  color: rgba(255, 255, 255, 0.78);
  display: grid;
  font-size: 0.85rem;
  font-weight: 900;
  gap: 6px;
  text-transform: uppercase;
}

input,
textarea {
  background: #ffffff;
  border: 0;
  border-radius: 6px;
  color: var(--ink);
  font: inherit;
  min-height: 46px;
  padding: 12px;
  resize: vertical;
}

.contact-form .button {
  width: fit-content;
}

.form-note {
  color: rgba(255, 255, 255, 0.68);
  margin: 0;
}

.site-footer {
  align-items: center;
  background: var(--white);
  color: #333333;
  display: flex;
  gap: 16px;
  justify-content: center;
  padding: 28px;
  text-align: center;
}

.site-footer img {
  border-radius: 50%;
  height: 54px;
  width: 54px;
}

@media (max-width: 920px) {
  .intro-strip,
  .split,
  .booking-card {
    grid-template-columns: 1fr;
  }

  .member-grid,
  .media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .show-card,
  .show-details {
    grid-template-columns: 1fr;
  }

  .show-details {
    padding-left: 18px;
  }

  .show-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .brand img {
    height: 22px;
  }

  nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: 720px;
  }

  .hero-photo {
    object-position: 56% top;
  }

  .hero-content {
    padding-top: 170px;
  }

  h1 {
    font-size: clamp(3.2rem, 15.5vw, 6.4rem);
  }

  .intro-strip,
  .member-grid,
  .media-grid {
    grid-template-columns: 1fr;
  }

  .media-grid {
    gap: 24px;
  }

  .media-grid figure {
    display: flex;
    flex-direction: column;
  }

  .media-grid figcaption {
    margin: 10px 2px 2px;
  }

  .spotlight-reel {
    grid-column: auto;
  }

  .button,
  .contact-form .button,
  .show-directions {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
  }
}

.show-empty {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 8px solid var(--red);
  border-radius: 8px;
  color: var(--gray);
  font-weight: 800;
  margin: 0;
  padding: 18px;
}
