:root {
  --bg: #050505;
  --bg-2: #101010;
  --panel: #171717;
  --paper: #e8e0d2;
  --muted: #aaa092;
  --line: rgba(232, 224, 210, 0.16);
  --accent: #2f7d32;
  --green-rgb: 47, 125, 50;
  --orange: #f5861f;
  --cyan: #4ab9c4;
  --green: #92d63b;
  --shadow: rgba(0, 0, 0, 0.54);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(var(--green-rgb), 0.18), transparent 30rem),
    linear-gradient(180deg, #020202 0%, var(--bg) 42%, #0b0808 100%);
  color: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.50;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  padding: 0.8rem clamp(1rem, 3vw, 2rem);
  background: rgba(5, 5, 5, 0.74);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px);
  transition: border-color 160ms ease, background 160ms ease;
}

.site-header.is-scrolled {
  background: rgba(5, 5, 5, 0.92);
  border-color: var(--line);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem 1.1rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav a {
  text-decoration: none;
}

.nav a:hover {
  color: var(--paper);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 8rem clamp(1rem, 5vw, 4rem) 4rem;
}

.hero-media,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.2) contrast(1.08);
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.38) 54%, rgba(0, 0, 0, 0.7)),
    linear-gradient(0deg, rgba(5, 5, 5, 1), transparent 52%);
}

.hero-logo {
  position: absolute;
  right: clamp(1rem, 5vw, 4rem);
  bottom: clamp(2rem, 6vw, 4.5rem);
  z-index: 2;
  width: clamp(15rem, 24vw, 25rem);
  max-height: 130rem;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0.35rem 0.35rem 0 rgba(0, 0, 0, 0.55));
}

.hero-content {
  position: relative;
  width: min(48rem, 100%);
}

.kicker,
.section-label {
  margin: 0 0 0.7rem;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 0.85;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 15.5ch;
  margin-bottom: 1.2rem;
  font-family: "Arial Black", "Franklin Gothic Heavy", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(3.1rem, 7.8vw, 6.8rem);
  font-weight: 900;
  text-shadow: 0.025em 0.035em 0 rgba(var(--green-rgb), 0.65), 0 0 2rem var(--shadow);
}

h2 {
  margin-bottom: 1rem;
  font-family: "Arial Black", "Franklin Gothic Heavy", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(2rem, 4.8vw, 4.2rem);
}

h3 {
  margin-bottom: 0.45rem;
  font-size: 1.3rem;
}

.hero-copy {
  max-width: 43rem;
  color: #f4ebde;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
}

.hero-actions,
.link-row,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.78rem 1.05rem;
  border: 2px solid currentColor;
  color: var(--paper);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
}

.button-primary {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0.28rem 0.28rem 0 var(--paper);
}

.button-primary:hover {
  background: var(--orange);
  border-color: var(--orange);
}

.button-secondary {
  background: rgba(0, 0, 0, 0.44);
}

.button-secondary:hover {
  color: var(--orange);
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 3rem;
  padding: 0.58rem 0.88rem 0.58rem 0.62rem;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid var(--line);
  color: var(--paper);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.social-link:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.social-icon {
  display: inline-grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  background: var(--paper);
  color: var(--bg);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
}

.section,
.intro {
  padding: clamp(4rem, 9vw, 7rem) clamp(1rem, 5vw, 4rem);
}

.band-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 1.1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: end;
  background:
    linear-gradient(90deg, rgba(var(--green-rgb), 0.24), transparent),
    var(--bg-2);
  border-block: 1px solid var(--line);
}

.band-strip p:last-child {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.section-heading {
  max-width: 58rem;
  margin-bottom: 2rem;
}

.section-heading p:not(.section-label),
.split-copy p,
.booking-card p {
  color: var(--muted);
  font-size: 1.03rem;
}

.show-list {
  display: grid;
  gap: 1rem;
}

.show-card {
  display: grid;
  grid-template-columns: auto minmax(5.5rem, 7rem) minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: 0.5rem 0.5rem 0 rgba(var(--green-rgb), 0.28);
}

.show-card.is-placeholder {
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.show-date {
  width: 5.8rem;
  padding: 0.65rem 0.5rem;
  text-align: center;
  background: var(--paper);
  color: var(--bg);
}

.show-date span,
.show-date strong {
  display: block;
}

.show-date span {
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.show-date strong {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.7rem;
}

.show-info p {
  margin-bottom: 0;
  color: var(--muted);
}

.show-flyer {
  display: grid;
  gap: 0.45rem;
  width: 100%;
  padding: 0;
  background: transparent;
  border: 0;
  color: var(--orange);
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.show-flyer img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #000;
  border: 1px solid var(--line);
}

.show-flyer:hover img,
.show-flyer:focus-visible img {
  border-color: var(--orange);
}

.show-flyer:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.text-link {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link-muted {
  color: var(--muted);
  text-decoration: none;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(18rem, 1.12fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.media-panel {
  border: 1px solid var(--line);
  background: #000;
  box-shadow: -0.6rem 0.6rem 0 rgba(74, 185, 196, 0.28);
}

.media-panel img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.merch {
  background:
    linear-gradient(180deg, rgba(245, 134, 31, 0.1), transparent 22rem),
    #0b0b0b;
  border-block: 1px solid var(--line);
}

.merch-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.9fr);
  gap: clamp(1.5rem, 5vw, 3rem);
  align-items: center;
  max-width: 68rem;
}

.merch-feature img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--line);
}

.merch-media p {
  margin: 1rem 0 0;
  color: var(--paper);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.35;
}

.merch-feature p {
  color: var(--muted);
}

.merch-signup {
  padding: clamp(1.25rem, 4vw, 2rem);
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: 0.45rem 0.45rem 0 rgba(var(--green-rgb), 0.28);
}


.gallery-carousel {
  display: grid;
  gap: 1rem;
  max-width: 68rem;
}

figure {
  margin: 0;
  background: var(--panel);
  border: 1px solid var(--line);
}

.carousel-figure {
  box-shadow: 0.6rem 0.6rem 0 rgba(var(--green-rgb), 0.28);
}

.carousel-image-button {
  display: block;
  width: 100%;
  padding: 0;
  background: #000;
  border: 0;
  cursor: pointer;
}

.carousel-image-button:focus-visible,
.carousel-control:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.carousel-figure img {
  width: 100%;
  max-height: min(68vh, 46rem);
  aspect-ratio: 16 / 10;
  object-fit: contain;
  background: #000;
}

.carousel-figure figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.carousel-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.carousel-control {
  min-height: 2.75rem;
  padding: 0.72rem 1rem;
  background: var(--paper);
  border: 2px solid var(--paper);
  color: var(--bg);
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.carousel-control:hover {
  background: var(--orange);
  border-color: var(--orange);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

figcaption {
  padding: 0.75rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(18rem, 1.15fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}

.booking-card {
  padding: clamp(1.25rem, 4vw, 2rem);
  background:
    linear-gradient(135deg, rgba(var(--green-rgb), 0.18), transparent),
    var(--panel);
  border: 1px solid var(--line);
}

.site-footer {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem clamp(1rem, 5vw, 4rem) 1.25rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer img {
  width: 18rem;
  height: 18rem;
  object-fit: contain;
  object-position: center;
}

.site-footer p {
  margin: 0;
  text-align: center;
}

.flyer-lightbox[hidden] {
  display: none;
}

.flyer-lightbox {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 2rem);
}

.flyer-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  border: 0;
  cursor: pointer;
}

.flyer-lightbox__frame {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.75rem;
  width: min(42rem, 100%);
  max-height: 92vh;
}

.flyer-lightbox__frame img {
  width: 100%;
  max-height: calc(92vh - 4rem);
  object-fit: contain;
  background: #000;
  border: 1px solid var(--line);
  box-shadow: 0.5rem 0.5rem 0 rgba(var(--green-rgb), 0.32);
}

.flyer-lightbox__close {
  justify-self: end;
  min-height: 2.5rem;
  padding: 0.65rem 0.9rem;
  background: var(--paper);
  border: 2px solid var(--paper);
  color: var(--bg);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.flyer-lightbox__close:hover,
.flyer-lightbox__close:focus-visible {
  background: var(--orange);
  border-color: var(--orange);
}

@media (min-width: 821px) {
  .section,
  .intro {
    padding-block: clamp(3rem, 5vw, 4.75rem);
  }
}

@media (max-width: 820px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .nav {
    max-width: 13rem;
  }

  .hero {
    min-height: 88vh;
    padding-top: 7rem;
  }

  .band-strip,
  .split,
  .merch-feature,
  .booking {
    grid-template-columns: 1fr;
  }

  .carousel-figure img {
    aspect-ratio: 4 / 3;
  }

  .show-card {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .show-card.is-placeholder {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .show-flyer {
    grid-column: 1;
    width: 5.8rem;
  }

  .show-info {
    grid-column: 2;
  }

  .show-card .text-link {
    grid-column: 2;
  }
}

@media (max-width: 520px) {
  .site-header {
    display: none;
  }

  .nav {
    display: none;
  }

  .hero-logo {
    right: 0.85rem;
    bottom: 0.45rem;
    width: 8.5rem;
    max-height: 5rem;
  }

  h1 {
    font-size: clamp(2.65rem, 12vw, 3.85rem);
    line-height: 1;
  }

  .hero {
    min-height: 86vh;
  }

  .carousel-figure figcaption {
    align-items: flex-start;
    flex-direction: column;
  }

  .carousel-controls {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .show-card {
    grid-template-columns: 1fr;
  }

  .show-flyer,
  .show-info,
  .show-card .text-link {
    grid-column: auto;
  }

  .show-flyer {
    width: min(12rem, 100%);
  }

  .site-footer {
    align-items: center;
  }

  .site-footer p {
    text-align: center;
  }
}
