:root {
  --black: #050607;
  --graphite: #0d1014;
  --panel: rgba(255, 255, 255, 0.055);
  --panel-strong: rgba(255, 255, 255, 0.1);
  --line: rgba(255, 255, 255, 0.13);
  --text: #f8f8f8;
  --muted: rgba(255, 255, 255, 0.68);
  --green: #00d46a;
  --yellow: #ffd43b;
  --pink: #ff40b3;
  --blue: #3b5bff;
  --radius: 28px;
  --container: min(1160px, calc(100% - 40px));
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 18% 8%, rgba(0, 212, 106, 0.12), transparent 28%),
    radial-gradient(circle at 82% 14%, rgba(255, 64, 179, 0.12), transparent 26%),
    var(--black);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

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

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

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

button,
input {
  font: inherit;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 1000;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--yellow), var(--pink), var(--blue));
  transform-origin: left center;
  transform: scaleX(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px clamp(20px, 4vw, 56px);
  transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease, padding 0.25s ease;
}

.site-header.is-scrolled {
  padding-block: 12px;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 6, 7, 0.72);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  transition: color 0.25s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--pink));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.site-nav a:hover {
  color: #fff;
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 130px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.96) 0%, rgba(5, 6, 7, 0.62) 45%, rgba(5, 6, 7, 0.28) 100%),
    linear-gradient(180deg, rgba(5, 6, 7, 0.15) 0%, rgba(5, 6, 7, 0.8) 100%),
    url("assets/hero-stage.png") center/cover no-repeat;
  transform: scale(1.04);
  animation: heroBreath 14s ease-in-out infinite alternate;
}

.hero-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.2;
  background:
    radial-gradient(circle at 60% 20%, rgba(255, 212, 59, 0.18), transparent 26%),
    radial-gradient(circle at 78% 54%, rgba(59, 91, 255, 0.18), transparent 28%),
    linear-gradient(115deg, transparent 0 42%, rgba(255, 255, 255, 0.09) 42.2%, transparent 43% 100%);
}

@keyframes heroBreath {
  from { transform: scale(1.04); }
  to { transform: scale(1.09); }
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: clamp(40px, 6vw, 88px);
  align-items: end;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.color-green { color: var(--green); }
.color-yellow { color: var(--yellow); }
.color-pink { color: var(--pink); }
.color-blue { color: var(--blue); }

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

.hero h1 {
  max-width: 840px;
  font-size: clamp(3.5rem, 8.4vw, 8.5rem);
  line-height: 0.86;
  letter-spacing: -0.075em;
  text-transform: uppercase;
}

.hero-copy p {
  max-width: 590px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.03rem, 1.35vw, 1.24rem);
  line-height: 1.6;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  cursor: pointer;
}

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

.btn-primary {
  background: linear-gradient(90deg, var(--green), var(--yellow));
  color: #040404;
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.32);
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.09);
}

.full {
  width: 100%;
}

.next-show {
  position: relative;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 22px;
  padding: 28px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.75)),
    url("assets/feed-flyer-green.png") center/cover no-repeat;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.next-show::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(0, 212, 106, 0.32), transparent 42%);
}

.next-show > * {
  position: relative;
}

.show-tag,
.demo-label {
  width: fit-content;
  padding: 7px 10px;
  background: rgba(0, 0, 0, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.date-chip {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(5, 6, 7, 0.72);
}

.date-chip strong {
  font-size: 2.3rem;
  line-height: 0.9;
}

.date-chip span {
  margin-top: -14px;
  color: var(--yellow);
  font-size: 0.76rem;
  font-weight: 900;
}

.next-show h2 {
  font-size: clamp(1.7rem, 2vw, 2.2rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.next-show p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.5;
}

.next-show a {
  display: inline-flex;
  width: fit-content;
  color: var(--green);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
}

.hero-marquee {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  width: max-content;
  gap: 42px;
  padding: 18px 0;
  color: rgba(255, 255, 255, 0.22);
  font-size: clamp(2rem, 4vw, 4.4rem);
  font-weight: 950;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  animation: marquee 24s linear infinite;
}

.hero-marquee span::after {
  content: "•";
  margin-left: 42px;
  color: var(--pink);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

section {
  position: relative;
}

.agenda-section,
.video-section,
.gallery-section,
.setlist-section {
  padding: clamp(78px, 9vw, 130px) 0;
}

.section-head {
  margin-bottom: 34px;
}

.head-row {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: clamp(28px, 6vw, 90px);
  align-items: end;
}

.head-row h2,
.about-copy h2,
.booking-copy h2,
.final-card h2,
.setlist-layout h2 {
  font-size: clamp(2.4rem, 5.4vw, 5.4rem);
  line-height: 0.9;
  letter-spacing: -0.065em;
  text-transform: uppercase;
}

.head-row p,
.about-copy > p,
.booking-copy > p,
.final-card p {
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.65;
}

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

.agenda-card {
  position: relative;
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr) 240px 230px;
  gap: 22px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.078), rgba(255, 255, 255, 0.025));
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.agenda-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--accent);
}

.agenda-card:hover {
  transform: translateX(8px);
  border-color: rgba(255, 255, 255, 0.28);
  background: linear-gradient(90deg, color-mix(in srgb, var(--accent), transparent 80%), rgba(255, 255, 255, 0.03));
}

.agenda-date {
  display: grid;
  place-items: center;
  height: 94px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.28);
}

.agenda-date strong {
  font-size: 2.8rem;
  line-height: 0.85;
  letter-spacing: -0.07em;
}

.agenda-date span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.agenda-info {
  display: grid;
  gap: 8px;
}

.agenda-info h3 {
  font-size: clamp(1.5rem, 2.6vw, 2.4rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.agenda-info p,
.agenda-meta span {
  color: var(--muted);
}

.agenda-meta {
  display: grid;
  gap: 6px;
}

.agenda-meta strong {
  font-size: 1.8rem;
  color: #fff;
}

.agenda-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.agenda-actions a,
.text-button {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.agenda-actions a:hover,
.text-button:hover {
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.1);
}

.about-section {
  padding: clamp(70px, 9vw, 130px) 0;
  background: #f2f0eb;
  color: #060606;
}

.about-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(34px, 7vw, 100px);
  align-items: center;
}

.about-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.98) contrast(1.08);
}

.about-image::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.about-copy .eyebrow {
  color: #9b7600;
}

.about-copy > p {
  margin-top: 26px;
  color: rgba(0, 0, 0, 0.66);
}

.about-note {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  margin-top: 36px;
  padding-top: 26px;
  border-top: 1px solid rgba(0, 0, 0, 0.16);
  color: rgba(0, 0, 0, 0.58);
}

.about-note span {
  width: 44px;
  height: 3px;
  margin-top: 10px;
  background: linear-gradient(90deg, var(--green), var(--pink));
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 250px;
  gap: 16px;
}

.video-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--panel);
  min-height: 250px;
}

.video-card.large {
  grid-row: span 2;
}

.video-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease, filter 0.55s ease;
}

.video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.82));
}

.video-card span,
.video-card strong {
  position: relative;
  z-index: 1;
}

.video-card span {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.video-card strong {
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.video-card:hover img {
  transform: scale(1.08);
  filter: saturate(1.2);
}

.booking-section {
  padding: clamp(78px, 9vw, 130px) 0;
  background:
    linear-gradient(120deg, rgba(0, 212, 106, 0.12), transparent 30%),
    linear-gradient(300deg, rgba(255, 64, 179, 0.11), transparent 34%),
    #080a0d;
}

.booking-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(34px, 7vw, 100px);
  align-items: start;
}

.booking-copy {
  position: sticky;
  top: 110px;
}

.booking-copy > p {
  margin-top: 26px;
}

.booking-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.booking-tags li {
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.booking-form {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.065);
  box-shadow: var(--shadow);
}

.booking-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-form input {
  min-height: 50px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.28);
  color: #fff;
  padding: 0 14px;
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.booking-form input:focus {
  border-color: var(--green);
  background: rgba(0, 0, 0, 0.42);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-note {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.82rem;
  line-height: 1.5;
}

.mosaic {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1fr;
  grid-auto-rows: 230px;
  gap: 16px;
}

.mosaic-item {
  position: relative;
  min-height: 230px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
}

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

.mosaic-item.wide {
  grid-column: span 2;
}

.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.mosaic-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(0, 0, 0, 0.78));
}

.mosaic-item figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mosaic-item:hover img {
  transform: scale(1.06);
}

.setlist-section {
  overflow: hidden;
}

.setlist-layout {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) 0.8fr;
  gap: clamp(20px, 5vw, 70px);
  align-items: start;
  padding: clamp(26px, 5vw, 54px);
  border: 1px solid var(--line);
  background: linear-gradient(120deg, rgba(255, 212, 59, 0.11), rgba(255, 255, 255, 0.04));
}

.section-number {
  color: rgba(255, 255, 255, 0.18);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 950;
  line-height: 0.8;
  letter-spacing: -0.08em;
}

.setlist-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.setlist-list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.final-cta {
  padding: clamp(78px, 9vw, 130px) 0;
}

.final-card {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) auto;
  gap: clamp(22px, 4vw, 60px);
  align-items: center;
  padding: clamp(26px, 5vw, 56px);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 0% 0%, rgba(59, 91, 255, 0.18), transparent 38%),
    radial-gradient(circle at 100% 0%, rgba(255, 64, 179, 0.14), transparent 32%),
    rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.final-card > img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

.final-card p {
  margin-top: 18px;
}

.final-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.site-footer {
  padding: 28px 0 96px;
  border-top: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.62);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-grid div {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-grid a {
  color: rgba(255, 255, 255, 0.78);
}

.mobile-quickbar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 90;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--line);
  background: rgba(5, 6, 7, 0.82);
  backdrop-filter: blur(18px);
}

.mobile-quickbar a {
  min-height: 48px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-quickbar a:last-child {
  background: linear-gradient(90deg, var(--green), var(--yellow));
  color: #040404;
}

.detail-dialog {
  width: min(520px, calc(100% - 36px));
  border: 1px solid var(--line);
  background: #0b0d10;
  color: #fff;
  padding: 34px;
  box-shadow: var(--shadow);
}

.detail-dialog::backdrop {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
}

.detail-dialog h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.detail-dialog p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 22px;
}

.dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
  font-size: 1.4rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1020px) {
  .hero-grid,
  .head-row,
  .about-layout,
  .booking-layout,
  .final-card,
  .setlist-layout {
    grid-template-columns: 1fr;
  }

  .next-show {
    max-width: 520px;
    min-height: 320px;
  }

  .agenda-card {
    grid-template-columns: 100px minmax(0, 1fr);
  }

  .agenda-meta,
  .agenda-actions {
    grid-column: 2;
    justify-content: flex-start;
  }

  .booking-copy {
    position: relative;
    top: auto;
  }

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

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

  .brand span {
    font-size: 0.9rem;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 72px;
    left: 12px;
    right: 12px;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    background: rgba(5, 6, 7, 0.94);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 16px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

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

  .hero {
    min-height: auto;
    padding: 112px 0 88px;
  }

  .hero-grid {
    gap: 30px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 5.6rem);
    line-height: 0.9;
  }

  .hero-copy p {
    font-size: 1rem;
  }

  .hero-actions,
  .final-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-marquee {
    display: none;
  }

  .agenda-section,
  .video-section,
  .gallery-section,
  .setlist-section,
  .booking-section,
  .about-section,
  .final-cta {
    padding: 74px 0;
  }

  .head-row h2,
  .about-copy h2,
  .booking-copy h2,
  .final-card h2,
  .setlist-layout h2 {
    font-size: clamp(2.5rem, 13vw, 4.2rem);
    line-height: 0.92;
  }

  .agenda-card {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 16px;
    padding: 16px;
  }

  .agenda-date {
    height: 82px;
  }

  .agenda-date strong {
    font-size: 2.25rem;
  }

  .agenda-meta,
  .agenda-actions {
    grid-column: 1 / -1;
  }

  .agenda-actions a,
  .text-button {
    flex: 1;
  }

  .video-grid,
  .mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .video-card,
  .video-card.large,
  .mosaic-item,
  .mosaic-item.tall,
  .mosaic-item.wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 300px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .about-note {
    grid-template-columns: 1fr;
  }

  .about-note span {
    margin-top: 0;
  }

  .setlist-layout {
    padding: 24px;
  }

  .final-card {
    padding: 26px;
  }

  .footer-grid {
    display: grid;
  }

  .mobile-quickbar {
    display: grid;
  }
}

@media (max-width: 460px) {
  :root {
    --container: min(100% - 28px, 1160px);
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .next-show {
    padding: 20px;
    min-height: 280px;
  }

  .date-chip {
    width: 76px;
    height: 76px;
  }

  .agenda-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}
