:root {
  color-scheme: dark;
  --bg: #06080b;
  --bg-soft: #0c1117;
  --panel: rgba(13, 19, 25, 0.78);
  --panel-solid: #101820;
  --text: #f5fbff;
  --muted: #a9bbc7;
  --line: rgba(137, 241, 255, 0.18);
  --accent: #20d9f2;
  --accent-2: #0aa7c2;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  --radius: 8px;
  --max: 1180px;
}

:root[data-theme="light"] {
  color-scheme: light;
  --bg: #f5fbff;
  --bg-soft: #eaf6fb;
  --panel: rgba(255, 255, 255, 0.82);
  --panel-solid: #ffffff;
  --text: #071118;
  --muted: #52636f;
  --line: rgba(5, 108, 130, 0.18);
  --accent: #0089a5;
  --accent-2: #08bad6;
  --shadow: 0 28px 70px rgba(7, 30, 42, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 10% 10%, rgba(32, 217, 242, 0.18), transparent 34rem),
    radial-gradient(circle at 80% 0%, rgba(10, 167, 194, 0.12), transparent 30rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 7px, var(--accent) 8px, transparent 9px),
    radial-gradient(circle, rgba(32, 217, 242, 0.55), transparent 58%);
  box-shadow: 0 0 32px rgba(32, 217, 242, 0.5);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2.5vw, 34px);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  content: "";
  background: var(--accent);
  transition: width 180ms ease;
}

.site-nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 800;
  cursor: pointer;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-solid);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.site-header.nav-open .nav-toggle span:first-child {
  transform: translateY(6px) rotate(45deg);
}

.site-header.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .nav-toggle span:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

.toggle-track {
  width: 48px;
  height: 28px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel-solid);
}

.toggle-dot {
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 24px rgba(32, 217, 242, 0.7);
  transition: transform 180ms ease;
}

:root[data-theme="light"] .toggle-dot {
  transform: translateX(19px);
}

.section {
  padding: clamp(78px, 9vw, 132px) clamp(18px, 4vw, 56px);
}

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

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

.hero-video {
  object-fit: cover;
  filter: saturate(1.15) contrast(1.08);
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(3, 7, 11, 0.92) 0%, rgba(3, 7, 11, 0.52) 48%, rgba(3, 7, 11, 0.2) 100%),
    linear-gradient(0deg, var(--bg) 0%, transparent 34%);
}

:root[data-theme="light"] .hero-scrim {
  background:
    linear-gradient(90deg, rgba(245, 251, 255, 0.94) 0%, rgba(245, 251, 255, 0.68) 45%, rgba(245, 251, 255, 0.16) 100%),
    linear-gradient(0deg, var(--bg) 0%, transparent 40%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(290px, 0.58fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: end;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: "Space Grotesk", Inter, sans-serif;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(4rem, 14vw, 10.7rem);
  line-height: 0.78;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 0 38px rgba(32, 217, 242, 0.32);
}

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

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 32px;
  font-size: clamp(1.05rem, 2vw, 1.34rem);
}

.hero-actions,
.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 900;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--accent);
  color: #031014;
  box-shadow: 0 18px 42px rgba(32, 217, 242, 0.28);
}

.button.ghost {
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--panel-solid) 72%, transparent);
}

.hero-card,
.booking-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-card {
  position: relative;
  overflow: hidden;
  padding: 12px;
  border-color: color-mix(in srgb, var(--accent) 30%, var(--line));
  border-radius: 14px;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--accent) 8%, transparent), transparent 44%),
    color-mix(in srgb, var(--panel-solid) 78%, transparent);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(32, 217, 242, 0.05) inset;
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease;
}

.hero-card::before {
  position: absolute;
  inset: -1px;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 18% 8%, rgba(32, 217, 242, 0.18), transparent 9rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 34%);
  opacity: 0.85;
}

.hero-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--accent) 52%, var(--line));
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.48),
    0 0 42px rgba(32, 217, 242, 0.1),
    0 0 0 1px rgba(32, 217, 242, 0.08) inset;
}

.hero-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 178px;
  padding: 22px;
  object-fit: contain;
  border: 1px solid rgba(137, 241, 255, 0.14);
  border-radius: 10px;
  background:
    radial-gradient(circle at 50% 45%, rgba(32, 217, 242, 0.16), transparent 56%),
    #020506;
}

.hero-stats {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  margin-top: 10px;
  background: transparent;
}

.hero-stats span {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  min-height: 56px;
  padding: 13px 15px;
  border: 1px solid rgba(137, 241, 255, 0.12);
  border-radius: 10px;
  background: rgba(8, 16, 22, 0.78);
  color: var(--muted);
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-stats strong {
  color: var(--accent);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.75rem;
  line-height: 1;
}

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--panel-solid);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 22s linear infinite;
}

.marquee span {
  padding: 18px 34px;
  color: var(--accent);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(1rem, 2vw, 1.45rem);
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.section-heading,
.split-heading,
.about-layout,
.setlist-grid,
.video-grid,
.gallery-grid,
.load-more-actions,
.booking-panel {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 48px;
}

.section-heading.centered {
  text-align: center;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.55fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 42px;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image::after {
  position: absolute;
  inset: 24px -18px -18px 24px;
  z-index: -1;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  content: "";
  opacity: 0.45;
}

.about-image img,
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.about-content > p {
  font-size: 1.08rem;
}

.feature-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.feature-list div,
.set-card,
.video-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.feature-list div {
  padding: 22px;
}

.feature-list span,
.set-card span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.feature-list p,
.set-card p {
  margin-bottom: 0;
}

.shows {
  background:
    linear-gradient(180deg, transparent, color-mix(in srgb, var(--accent) 7%, transparent), transparent);
}

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

.set-card {
  min-height: 220px;
  padding: 24px;
  transition:
    transform 200ms ease,
    border-color 200ms ease;
}

.set-card:hover,
.video-card:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--accent) 70%, var(--line));
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
}

.video-card {
  appearance: none;
  grid-column: span 3;
  padding: 0;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  transition:
    transform 200ms ease,
    border-color 200ms ease;
}

.featured-video {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  width: min(100%, 980px);
  justify-self: center;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--accent) 13%, transparent), transparent 58%),
    var(--panel);
}

.video-card:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.video-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-thumb::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.68)),
    radial-gradient(circle at center, rgba(32, 217, 242, 0.16), transparent 46%);
  opacity: 0.9;
  transition: opacity 200ms ease;
}

.video-card:hover .video-thumb::after {
  opacity: 0.58;
}

.featured-video .video-thumb {
  aspect-ratio: 16 / 7;
  min-height: 0;
  max-height: 360px;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 320ms ease;
}

.featured-video .video-thumb img {
  aspect-ratio: 16 / 7;
  object-position: 42% center;
  transform: scale(1.12);
  transform-origin: left center;
}

.video-card:hover .video-thumb img {
  transform: scale(1.05);
}

.featured-video:hover .video-thumb img {
  transform: scale(1.16);
}

.play-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(3, 11, 15, 0.72);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  backdrop-filter: blur(12px);
  transform: translate(-50%, -50%);
}

.play-badge::before {
  width: 0;
  height: 0;
  content: "";
  border-block: 7px solid transparent;
  border-left: 11px solid var(--accent);
}

.video-info {
  display: grid;
  gap: 6px;
  align-content: center;
  min-height: 88px;
  padding: 17px 18px;
}

.featured-video .video-info {
  min-width: 0;
  padding: clamp(16px, 2.4vw, 24px);
}

.video-kicker {
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.video-title {
  display: block;
  color: var(--text);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(1.04rem, 1.4vw, 1.22rem);
  line-height: 1.15;
  font-weight: 700;
}

.featured-video .video-title {
  max-width: 100%;
  overflow-wrap: break-word;
  font-size: clamp(1.65rem, 3.2vw, 2.75rem);
  line-height: 1.05;
}

.load-more-actions {
  display: flex;
  justify-content: center;
  margin-top: clamp(24px, 4vw, 42px);
}

.load-more-button {
  min-width: 210px;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 48px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.video-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(1, 5, 8, 0.82);
  backdrop-filter: blur(14px);
  cursor: pointer;
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 1120px);
  max-height: calc(100svh - 36px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #03070a;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.62);
  transform: translateY(16px) scale(0.98);
  transition: transform 180ms ease;
}

.video-modal.active .modal-panel {
  transform: translateY(0) scale(1);
}

.modal-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(137, 241, 255, 0.18);
  background: #091017;
}

.modal-topbar h3 {
  margin: 0;
  color: #fff;
}

.modal-close {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font: inherit;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 900;
  cursor: pointer;
}

.modal-video {
  width: 100%;
  max-height: min(74svh, 680px);
  background: #000;
}

body.modal-open {
  overflow: hidden;
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
  background: var(--panel-solid);
  box-shadow: var(--shadow);
}

.gallery-item img {
  transition: transform 320ms ease;
}

.gallery-item:hover img {
  transform: scale(1.055);
}

.gallery-item.logo-shot {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.booking-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 5vw, 58px);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--accent) 15%, transparent), transparent 58%),
    var(--panel);
}

.booking-panel h2 {
  max-width: 720px;
}

.booking-panel p {
  max-width: 680px;
  margin-bottom: 0;
}

.contact-form {
  width: min(100%, var(--max));
  margin: clamp(24px, 4vw, 38px) auto 0;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 20% 0%, color-mix(in srgb, var(--accent) 12%, transparent), transparent 34rem),
    var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.form-heading {
  margin-bottom: 24px;
}

.form-heading h3 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3.8vw, 3rem);
  line-height: 1;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--panel-solid) 86%, transparent);
  color: var(--text);
  font: inherit;
  padding: 13px 14px;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 18%, transparent);
}

.contact-form ::placeholder {
  color: color-mix(in srgb, var(--muted) 76%, transparent);
}

.full-field {
  grid-column: 1 / -1;
}

.form-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}

.form-status {
  margin: 0;
  color: var(--accent);
  font-weight: 800;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 30px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

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

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 14px;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: grid;
    justify-content: stretch;
    gap: 4px;
    max-height: 0;
    padding: 0;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: var(--radius);
    background: color-mix(in srgb, var(--panel-solid) 94%, transparent);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-8px);
    backdrop-filter: blur(18px);
    transition:
      max-height 240ms ease,
      opacity 180ms ease,
      padding 180ms ease,
      transform 180ms ease,
      border-color 180ms ease;
  }

  .site-header.nav-open .site-nav {
    max-height: 340px;
    padding: 10px;
    border-color: var(--line);
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav a {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 12px 14px;
    border-radius: var(--radius);
    color: var(--text);
  }

  .site-nav a:hover {
    background: color-mix(in srgb, var(--accent) 13%, transparent);
  }

  .site-nav a::after {
    display: none;
  }

  .nav-toggle {
    display: inline-block;
  }

  .hero {
    padding-top: 156px;
  }

  .hero-grid,
  .about-layout,
  .split-heading,
  .booking-panel,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .video-card {
    grid-column: span 6;
  }

  .featured-video {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
  }

  .featured-video .video-thumb {
    aspect-ratio: 16 / 9;
    min-height: 0;
    max-height: none;
  }

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

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

@media (max-width: 640px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand span:last-child {
    display: none;
  }

  .theme-toggle {
    gap: 8px;
  }

  .toggle-label {
    display: none;
  }

  .hero-grid {
    align-items: start;
  }

  h1 {
    font-size: clamp(3.5rem, 19vw, 5.5rem);
  }

  .hero-actions,
  .booking-actions,
  .form-footer {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .setlist-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

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

  .video-info {
    min-height: auto;
    padding: 15px 16px 17px;
  }

  .featured-video .video-info {
    padding: 15px 16px 17px;
  }

  .featured-video .video-title {
    font-size: clamp(1.45rem, 8vw, 2.2rem);
  }

  .play-badge {
    left: 50%;
    top: 50%;
    min-height: 38px;
    padding: 8px 12px;
    font-size: 0.76rem;
    transform: translate(-50%, -50%);
  }

  .load-more-button {
    width: 100%;
    min-width: 0;
  }

  .gallery-item.logo-shot,
  .gallery-item.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .video-modal {
    padding: 10px;
  }

  .modal-panel {
    max-height: calc(100svh - 20px);
  }

  .modal-topbar {
    padding: 12px;
  }

  .modal-topbar h3 {
    font-size: 1rem;
  }

  .modal-video {
    max-height: 72svh;
  }

  .gallery-grid {
    grid-auto-rows: 260px;
  }
}
