:root {
  --bg: #050505;
  --sheet: #0d0d0f;
  --panel: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.12);
  --text: #f6efe5;
  --muted: rgba(246, 239, 229, 0.74);
  --yellow: #ffd54b;
  --pink: #ff5496;
  --cyan: #44d9ff;
  --orange: #ff7c20;
  --display: "Avenir Next Condensed", "Arial Narrow", "Franklin Gothic Medium",
    sans-serif;
  --body: "Avenir Next", "Segoe UI", sans-serif;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 10% 8%, rgba(255, 84, 150, 0.14), transparent 22%),
    radial-gradient(circle at 88% 12%, rgba(68, 217, 255, 0.14), transparent 24%),
    radial-gradient(circle at 82% 82%, rgba(255, 124, 32, 0.13), transparent 20%),
    linear-gradient(180deg, #020202 0%, #080808 100%);
  color: var(--text);
  font-family: var(--body);
}

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

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

.page-shell {
  padding: 28px;
}

.sheet {
  width: min(1400px, 100%);
  margin: 0 auto;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    var(--sheet);
  box-shadow: var(--shadow);
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 22px;
}

.brand img {
  width: 124px;
  height: 124px;
  object-fit: contain;
}

.topnav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.topnav a {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer,
.hero,
.booking-grid,
.visual-break {
  display: grid;
  gap: 18px;
}
.cta-row a,
.footer-label,
.quote span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero {
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  align-items: stretch;
  margin-bottom: 20px;
}

.hero-copy,
.hero-image,
.card,
.visual-copy {
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  background: var(--panel);
}

.hero-copy,
.visual-copy,
.card {
  padding: 24px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--yellow);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.visual-copy .eyebrow,
.secondary-grid .eyebrow,
.press-grid .eyebrow {
  color: var(--yellow);
}

h1,
h2 {
  margin: 0;
  font-family: var(--display);
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(3.6rem, 8vw, 7.8rem);
}

h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  margin-bottom: 16px;
}

.hero-text,
.hero-subtext,
.card p,
.card li,
.visual-copy p,
.footer p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 1rem;
}

.hero-subtext {
  margin: 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.listen-section,
.booking-grid {
  margin-bottom: 20px;
}

.listen-shell {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.gallery-shell {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.gallery-stage {
  position: relative;
  min-height: 720px;
  background: rgba(0, 0, 0, 0.45);
}

.gallery-panel {
  display: none;
  width: 100%;
  height: 100%;
  min-height: 720px;
  margin: 0;
}

.gallery-panel.is-active {
  display: block;
}

.gallery-panel img,
.gallery-panel video {
  width: 100%;
  height: 100%;
  min-height: 720px;
  object-fit: cover;
  display: block;
}

.press-gallery-shell {
  margin-top: 22px;
}

.press-gallery-stage,
.press-gallery-stage .gallery-panel,
.press-gallery-stage .gallery-panel img,
.press-gallery-stage .gallery-panel video {
  min-height: 360px;
  height: 360px;
}

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

.cta-row a:hover,
.cta-row a:focus-visible {
  border-color: rgba(255, 213, 75, 0.4);
  color: var(--text);
}

.hero-image img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.hero-image {
  position: relative;
  min-height: 560px;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

.stats-band article {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
}

.stats-band strong {
  display: block;
  font-size: 1.5rem;
}

.stats-band span {
  color: var(--muted);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}

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

.highlights-card {
  background:
    linear-gradient(135deg, rgba(255, 84, 150, 0.1), transparent 50%),
    rgba(255, 255, 255, 0.04);
}

.highlights-card ul {
  margin: 0;
  padding-left: 18px;
}

.visual-break {
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  align-items: stretch;
  margin-bottom: 20px;
}

.visual-stack {
  position: relative;
  min-height: 430px;
}

.visual-main,
.visual-accent {
  position: absolute;
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.visual-main {
  inset: 0 38px 0 0;
  width: calc(100% - 38px);
  height: 100%;
}

.visual-accent {
  width: 42%;
  right: 0;
  bottom: 24px;
}

.quote {
  margin-top: 24px;
}

.quote p {
  margin: 12px 0 0;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.section-copy {
  margin-bottom: 16px;
}

.link-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.link-list a,
.download-card {
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.link-list a:hover,
.download-card:hover,
.topnav a:hover,
.topnav a:focus-visible,
.link-list a:focus-visible,
.download-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 213, 75, 0.4);
  color: var(--text);
}

.compact-points {
  margin: 0;
  padding-left: 18px;
}

.releases-section,
.press-section,
.show-section,
.downloads-section,
.past-events-section {
  margin-bottom: 20px;
}

.release-list,
.downloads-grid {
  display: grid;
  gap: 14px;
}

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

.discography-card {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.discography-art {
  width: 108px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
}

.discography-copy {
  min-width: 0;
}

.discography-copy h3 {
  margin: 0;
  font-size: 1.06rem;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.discography-copy p {
  margin: 7px 0 0;
  color: var(--muted);
}

.discography-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  color: var(--text);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1;
  transition: background 160ms ease, transform 160ms ease, border-color 160ms ease;
}

.discography-play:hover,
.discography-play:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--yellow);
  transform: translateY(-1px);
}

.image-download-copy {
  margin-top: 28px;
}

.press-grid {
  display: grid;
  gap: 16px;
}

.press-grid {
  grid-template-columns: 1.05fr 0.95fr;
}

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

.release-grid {
  display: grid;
  gap: 16px;
}

.release-card {
  display: block;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.release-art {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.release-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 220ms ease;
}

.release-meta {
  display: grid;
  gap: 8px;
  padding: 16px 18px 18px;
}

.release-meta strong {
  font-size: 1.05rem;
}

.release-card:hover,
.release-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 213, 75, 0.4);
}

.release-card:hover .release-art img,
.release-card:focus-visible .release-art img {
  transform: scale(1.04);
}

.release-meta span,
.download-card p,
.show-meta span,
.show-lineup p {
  color: var(--muted);
}

.press-quote-card {
  background:
    linear-gradient(135deg, rgba(255, 84, 150, 0.1), rgba(68, 217, 255, 0.08)),
    rgba(255, 255, 255, 0.05);
}

.press-quote {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.press-source {
  margin: 16px 0 0;
  color: var(--yellow);
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.show-card {
  padding: 24px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
}

.show-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 22px;
  align-items: start;
}

.show-poster img,
.event-card img {
  width: 100%;
  border-radius: 22px;
  border: 1px solid var(--line);
  object-fit: cover;
}

.show-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 22px;
}

.show-meta span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

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

.show-lineup p {
  margin: 10px 0 0;
  font-size: 1.05rem;
}

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

.download-type {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--yellow);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.download-card h3 {
  margin: 0 0 8px;
}

.events-dropdown {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
  margin-top: 14px;
}

.events-dropdown summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.events-dropdown summary::-webkit-details-marker {
  display: none;
}

.events-dropdown summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--yellow);
}

.events-dropdown[open] summary::after {
  content: "-";
}

.event-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.event-list-featured {
  border-top: none;
}

.events-combined {
  margin-top: 14px;
}

.event-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.event-row:first-child {
  border-top: none;
}

.event-row:hover,
.event-row:focus-visible {
  background: rgba(255, 255, 255, 0.05);
}

.event-row strong {
  max-width: 58%;
}

.event-row span {
  color: var(--muted);
  text-align: right;
}

.events-more-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  border-top: 1px solid var(--line);
  font-weight: 700;
}

.events-more-link::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--yellow);
}

.events-more-link:hover,
.events-more-link:focus-visible {
  background: rgba(255, 255, 255, 0.05);
}

.flyer-marquee {
  position: relative;
  margin-top: 12px;
  overflow: visible;
  padding: 18px 0;
}

.flyer-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: flyer-marquee 70s linear infinite;
}

.flyer-marquee:hover .flyer-track,
.flyer-marquee:focus-within .flyer-track {
  animation-play-state: paused;
}

.flyer-track img {
  position: relative;
  width: 176px;
  aspect-ratio: 4 / 5;
  height: auto;
  border-radius: 16px;
  border: 1px solid var(--line);
  object-fit: cover;
  flex: 0 0 auto;
  opacity: 0.9;
  transition:
    transform 220ms ease,
    opacity 220ms ease,
    border-color 220ms ease;
}

.flyer-track img:hover {
  transform: scale(1.12);
  opacity: 1;
  border-color: rgba(255, 213, 75, 0.45);
}

.flyer-preview {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms ease, visibility 180ms ease;
  z-index: 60;
}

.flyer-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.24);
  backdrop-filter: blur(3px);
}

.flyer-preview.is-visible {
  opacity: 1;
  visibility: visible;
}

.flyer-preview img {
  position: relative;
  width: min(38vw, 520px);
  max-height: min(80vh, 880px);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid rgba(255, 213, 75, 0.4);
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.45);
}

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

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

.footer {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
}

.footer-links {
  display: grid;
  gap: 16px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.footer-nav a {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 213, 75, 0.4);
  color: var(--text);
}

.footer-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.footer-actions a {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.footer-actions a:hover,
.footer-actions a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 213, 75, 0.4);
  color: var(--text);
}

.footer-logo {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.footer-logo img {
  width: 112px;
  height: 112px;
  object-fit: contain;
}

@media (max-width: 1024px) {
  .topbar,
  .hero,
  .booking-grid,
  .visual-break,
  .content-grid,
  .footer {
    grid-template-columns: 1fr;
  }

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

  .secondary-grid,
  .press-grid,
  .release-grid,
  .show-lineup,
  .downloads-grid,
  .footer-meta {
    grid-template-columns: 1fr 1fr;
  }

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

  .discography-card {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 14px;
  }

  .discography-art {
    width: 96px;
  }

  .gallery-stage,
  .gallery-panel,
  .gallery-panel img,
  .gallery-panel video {
    min-height: 560px;
  }

  .press-gallery-stage,
  .press-gallery-stage .gallery-panel,
  .press-gallery-stage .gallery-panel img,
  .press-gallery-stage .gallery-panel video {
    min-height: 320px;
    height: 320px;
  }

  .flyer-track img {
    width: 160px;
  }

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

  .visual-stack {
    min-height: 500px;
  }
}

@media (max-width: 720px) {
  .page-shell,
  .sheet {
    padding: 14px;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-row {
    justify-self: start;
  }

  .stats-band {
    grid-template-columns: 1fr;
  }

  .visual-main {
    inset: 0 0 120px 0;
    width: 100%;
    height: auto;
  }

  .secondary-grid,
  .press-grid,
  .release-grid,
  .show-lineup,
  .downloads-grid,
  .footer-meta {
    grid-template-columns: 1fr;
  }

  .discography-stack {
    grid-template-columns: 1fr;
  }

  .discography-card {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 12px;
    padding: 10px;
  }

  .discography-art {
    width: 88px;
  }

  .discography-copy h3 {
    font-size: 1rem;
  }

  .discography-copy p {
    font-size: 0.94rem;
  }

  .gallery-stage,
  .gallery-panel,
  .gallery-panel img,
  .gallery-panel video {
    min-height: 360px;
  }

  .press-gallery-stage,
  .press-gallery-stage .gallery-panel,
  .press-gallery-stage .gallery-panel img,
  .press-gallery-stage .gallery-panel video {
    min-height: 260px;
    height: 260px;
  }

  .flyer-track img {
    width: 136px;
  }

  .event-row {
    flex-direction: column;
  }

  .event-row strong,
  .event-row span {
    max-width: none;
    text-align: left;
  }

  .visual-accent {
    width: 56%;
  }
}

@media print {
  body {
    background: #0a0a0a;
  }

  .page-shell {
    padding: 0;
  }

  .sheet {
    border: none;
    border-radius: 0;
    box-shadow: none;
  }
}
