:root {
  --bg: #0a0a0a;
  --paper: #0e0e0e;
  --yellow: #fcb25d;
  --orange: #f5663a;
  --white: #f7f7f7;
  --cyan: #06bba8;
  --pink: #e71a5f;
  --blue: #17337c;
  --lime: #c8ff2b;
  --shadow: #000;
  --border: #141414;
  --max-content: 1400px;
  --nav-height: 56px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top, #202020 0%, #090909 45%, #000 100%);
  color: var(--white);
  font-family: Oswald, Arial, sans-serif;
}

/* ── Navigation ─────────────────────────────────────────── */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  height: var(--nav-height);
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}

.nav-logo {
  font-family: Anton, Impact, sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--yellow);
  text-decoration: none;
  line-height: 1;
}

.nav-logo:hover {
  opacity: 0.85;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 4px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  padding: 7px 15px;
  font-family: Bebas Neue, Impact, sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247, 247, 247, 0.78);
  text-decoration: none;
  border-radius: 8px;
  border: 2px solid transparent;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.nav-link:hover {
  color: var(--yellow);
  background: rgba(255, 212, 0, 0.08);
}

.nav-link.active {
  color: var(--yellow);
  background: rgba(255, 212, 0, 0.1);
  border-color: rgba(255, 212, 0, 0.25);
}

/* ── Page shell ─────────────────────────────────────────── */

.page {
  width: 100%;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at bottom left ,var(--orange) 35%, transparent 36%), radial-gradient(circle at top right ,var(--cyan) 35%, transparent 36%), radial-gradient(circle at center ,var(--pink) 15%, transparent 16%);
  background-size: 6em 6em;
  background-color: var(--bg);
  opacity: 1;
  position: relative;
  overflow: hidden;
}

.flyer {
  width: min(100%, var(--max-content));
  background: linear-gradient(180deg, #101010 0%, #020202 100%);
  border: 10px solid #050505;
  border-radius: 22px;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.55),
    inset 0 0 0 2px #1d1d1d;
  padding: clamp(24px, 3vw, 46px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 44px);
  align-items: center;
}

.flyer::before,
.flyer::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  z-index: -1;
}

.flyer::before {
  background:
    repeating-linear-gradient(
      180deg,
      rgba(255,255,255,0.08) 0,
      rgba(255,255,255,0.08) 2px,
      transparent 2px,
      transparent 6px
    );
  mix-blend-mode: screen;
}

.flyer::after {
  background:
    radial-gradient(circle at 20% 15%, rgba(255,255,255,0.25), transparent 20%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.15), transparent 18%),
    radial-gradient(circle at 50% 75%, rgba(255,255,255,0.12), transparent 25%);
}

/* ── Flyer hero (index) ─────────────────────────────────── */

.left,
.right {
  position: relative;
  z-index: 1;
  width: 100%;
}

.left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.right {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.title {
  text-align: center;
  margin-bottom: 8px;
  width: 100%;
}

.title-main {
  display: inline-block;
  font-family: 'Bungee Outline', Impact, sans-serif;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.86;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--yellow);
  text-shadow:
    -3px -3px 0 var(--shadow),
    3px -3px 0 var(--shadow),
    -3px 3px 0 var(--shadow),
    3px 3px 0 var(--shadow),
    0 6px 0 #ff6a00;
  transform: rotate(-3deg);
  max-width: 100%;
  word-break: break-word;
}

.subtitle {
  text-align: center;
  margin-top: 8px;
  margin-bottom: 18px;
  font-size: clamp(0.72rem, 1vw, 0.95rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #f2f2f2;
  position: relative;
  z-index: 1;
  line-height: 1.45;
}

.hero {
  position: relative;
  margin: 12px auto 0;
  width: min(100%, 460px);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.burst {
  width: 100%;
  aspect-ratio: 1.6 / 1;
  background: var(--cyan);
  clip-path: polygon(0% 55%, 10% 46%, 4% 30%, 18% 35%, 18% 14%, 31% 24%, 42% 5%, 48% 25%, 65% 6%, 64% 27%, 84% 18%, 76% 39%, 100% 45%, 82% 58%, 96% 74%, 74% 72%, 80% 95%, 59% 81%, 50% 100%, 42% 80%, 24% 94%, 24% 74%, 4% 79%, 18% 60%);
  z-index: 0;
  transform: rotate(8deg);
}

.burst::before {
  width: 75%;
  aspect-ratio: 1.5 / 1;
  left: -10%;
  top: -10%;
  background: var(--orange);
  clip-path: polygon(0 50%, 16% 35%, 8% 8%, 32% 24%, 37% 0, 52% 18%, 69% 4%, 70% 28%, 100% 30%, 79% 49%, 93% 69%, 70% 68%, 74% 96%, 51% 82%, 38% 100%, 31% 76%, 9% 85%, 19% 60%);
  z-index: -1;
}

.burst::after {
  width: 70%;
  aspect-ratio: 1.48 / 1;
  right: -8%;
  bottom: -6%;
  background: #ffffff;
  clip-path: polygon(0 48%, 15% 39%, 7% 18%, 27% 28%, 31% 0, 47% 20%, 64% 8%, 67% 30%, 100% 35%, 78% 53%, 95% 71%, 71% 72%, 75% 100%, 52% 84%, 38% 98%, 31% 75%, 9% 83%, 17% 58%);
  z-index: -1;
}

.hero-image-wrap {
  position: relative;
  z-index: 2;
  width: min(100%, 340px);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: contrast(1.18) saturate(1.1) brightness(0.95);
}

.artists {
  position: relative;
  z-index: 1;
  text-align: center;
  text-transform: uppercase;
  font-family: Bebas Neue, Impact, sans-serif;
  letter-spacing: 0.04em;
  width: 100%;
}

.artists .row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: 10px 0;
  font-size: clamp(1.2rem, 2.2vw, 2.55rem);
  line-height: 1;
  text-shadow: 2px 2px 0 #000;
}

.artists .small {
  font-size: clamp(1rem, 1.6vw, 1.4rem);
  letter-spacing: 0.06em;
  opacity: 0.97;
}

.dot {
  color: var(--yellow);
  font-size: 0.85em;
  transform: translateY(-2px);
}

.date-box {
  margin-top: 22px;
  background: var(--yellow);
  color: #000;
  border: 4px solid #000;
  transform: rotate(-1.4deg);
  box-shadow: 0 5px 0 #ff7d00;
  padding: 10px 18px 9px;
  text-align: center;
  width: fit-content;
  min-width: min(100%, 360px);
  align-self: center;
  max-width: 100%;
}

.date-line {
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(1.9rem, 3.8vw, 4rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.footer {
  text-align: center;
  margin-top: 18px;
  text-transform: uppercase;
  font-family: Bebas Neue, sans-serif;
  letter-spacing: 0.06em;
  font-size: clamp(1.1rem, 1.8vw, 2rem);
  line-height: 1.05;
  color: var(--cyan);
}

.footer small {
  display: block;
  margin-top: 6px;
  font-size: 0.8em;
  color: var(--white);
}

.site-hint {
  display: none;
}

/* ── Lineup section ─────────────────────────────────────── */

.lineup-section {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: 10px;
  padding-top: 18px;
  border-top: 2px solid rgba(255, 255, 255, 0.12);
}

.section-heading {
  margin: 0 0 18px;
  text-align: left;
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(2rem, 4.6vw, 3.8rem);
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--yellow);
  text-shadow:
    -2px -2px 0 var(--shadow),
    2px -2px 0 var(--shadow),
    -2px 2px 0 var(--shadow),
    2px 2px 0 var(--shadow),
    0 5px 0 #ff6a00;
}

.lineup-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}

.band-card {
  width: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.03) 100%);
  border: 2px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  align-items: start;
}

.band-image-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 14px;
  font-family: Bebas Neue, Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.72);
  background: rgba(0,0,0,0.22);
  overflow: hidden;
  position: relative;
}

.band-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  position: absolute;
  inset: 0;
}

.band-content {
  min-width: 0;
}

.band-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.band-name {
  margin: 0;
  font-family: Bebas Neue, Impact, sans-serif;
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.band-time {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border: 2px solid #000;
  background: var(--yellow);
  color: #000;
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(0.95rem, 1.4vw, 1.2rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 3px 0 #ff7d00;
  white-space: nowrap;
}

.band-description {
  margin: 0 0 14px;
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.9);
}

.band-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.band-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  text-decoration: none;
  flex-shrink: 0;
}

.band-link:hover {
  background: rgba(255, 212, 0, 0.14);
  border-color: rgba(255, 212, 0, 0.5);
}

/* ── Arrival section ────────────────────────────────────── */

.arrival-section {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 18px;
  border-top: 2px solid rgba(255, 255, 255, 0.12);
}

.arrival-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.arrival-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.03) 100%);
  border: 2px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.arrival-card--highlight {
  border-color: rgba(255, 212, 0, 0.35);
  background: linear-gradient(180deg, rgba(255, 212, 0, 0.08) 0%, rgba(255, 212, 0, 0.03) 100%);
}

.arrival-icon {
  font-size: 2rem;
  line-height: 1;
}

.arrival-card-title {
  margin: 0;
  font-family: Bebas Neue, Impact, sans-serif;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}

.arrival-card-text {
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.6;
  color: rgba(247, 247, 247, 0.82);
}

.arrival-card-text strong {
  color: var(--yellow);
  font-weight: 600;
}

@media (max-width: 640px) {
  .arrival-cards {
    grid-template-columns: 1fr;
  }
}

/* ── About page ─────────────────────────────────────────── */

.about-header {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-bottom: clamp(16px, 2.5vw, 28px);
  border-bottom: 2px solid rgba(255, 255, 255, 0.12);
}

.about-logo {
  width: min(100%, 120px);
  height: auto;
  object-fit: contain;
  margin-bottom: 20px;
  filter: contrast(1.1) saturate(1.05);
}

.about-title {
  margin: 0 0 10px;
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--yellow);
  text-shadow:
    -2px -2px 0 var(--shadow),
    2px -2px 0 var(--shadow),
    -2px 2px 0 var(--shadow),
    2px 2px 0 var(--shadow),
    0 5px 0 #ff6a00;
}

.about-tagline {
  margin: 0;
  font-size: clamp(0.75rem, 1.1vw, 0.95rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247, 247, 247, 0.6);
}

.about-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 3vw, 40px);
}

.about-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-section-title {
  margin: 0;
  font-family: Bebas Neue, Impact, sans-serif;
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cyan);
}

.about-section p {
  margin: 0;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.7;
  color: rgba(247, 247, 247, 0.88);
}

.about-contact {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: clamp(16px, 2.5vw, 28px);
  border-top: 2px solid rgba(255, 255, 255, 0.12);
}

.contact-card {
  flex: 1 1 220px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.03) 100%);
  border: 2px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 18px 20px;
}

.contact-card-label {
  display: block;
  margin-bottom: 6px;
  font-family: Bebas Neue, Impact, sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 247, 247, 0.45);
}

.contact-card-value {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--white);
}

.contact-card-value a {
  color: var(--yellow);
  text-decoration: none;
}

.contact-card-value a:hover {
  text-decoration: underline;
}

/* ── Gallery page ───────────────────────────────────────── */

.gallery-header {
  position: relative;
  z-index: 1;
  text-align: left;
  padding-bottom: clamp(16px, 2.5vw, 28px);
  border-bottom: 2px solid rgba(255, 255, 255, 0.12);
}

.gallery-header .section-heading,
.gallery-year .section-heading {
  text-align: left;
  position: relative;
  z-index: 2;
}

.gallery-header .subtitle {
  text-align: left;
}

.gallery-year {
  position: relative;
  z-index: 1;
  width: 100%;
  min-width: 0;
}

.gallery-year + .gallery-year {
  padding-top: clamp(16px, 2.5vw, 28px);
  border-top: 2px solid rgba(255, 255, 255, 0.12);
}

.gallery-nav-row {
  display: flex;
  align-items: center;
  gap: 10px;
  touch-action: pan-x;
}

.strip-nav {
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  background: rgba(40, 40, 40, 0.98);
  color: #f7f7f7;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, border-color 0.15s, color 0.15s, opacity 0.15s;
}

.strip-nav:hover {
  background: rgba(255, 212, 0, 0.15);
  border-color: rgba(255, 212, 0, 0.5);
  color: #ffd400;
}

.strip-nav:disabled {
  opacity: 0.2;
  pointer-events: none;
}

.gallery-strip {
  flex: 1;
  min-width: 0;
  display: flex;
  gap: 8px;
  overflow-x: scroll;
  overflow-y: hidden;
  padding-bottom: 6px;
  touch-action: pan-x;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 212, 0, 0.35) transparent;
}

.gallery-strip::-webkit-scrollbar {
  height: 4px;
}

.gallery-strip::-webkit-scrollbar-track {
  background: transparent;
}

.gallery-strip::-webkit-scrollbar-thumb {
  background: rgba(255, 212, 0, 0.35);
  border-radius: 99px;
}

.gallery-thumb {
  flex-shrink: 0;
  height: 240px;
  padding: 0;
  border: 2px solid transparent;
  background: rgba(255,255,255,0.04);
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.15s;
}

.gallery-thumb:hover {
  border-color: rgba(255, 212, 0, 0.5);
}

.gallery-thumb img {
  height: 100%;
  width: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.2s, filter 0.2s;
  filter: brightness(0.88);
  pointer-events: none;
}

.gallery-thumb:hover img {
  transform: scale(1.04);
  filter: brightness(1);
}

/* ── Lightbox ────────────────────────────────────────────── */

dialog.lightbox {
  position: fixed;
  inset: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  margin: 0;
  padding: 16px;
  border: none;
  background: rgba(0, 0, 0, 0.93);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: none;
  grid-template-columns: 64px 1fr 64px;
  align-items: center;
  justify-items: center;
  gap: 0;
}

dialog.lightbox[open] {
  display: grid;
}

.lightbox-arrow {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  background: rgba(20, 20, 20, 0.9);
  color: #f7f7f7;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  flex-shrink: 0;
}

.lightbox-arrow:hover {
  background: rgba(255, 212, 0, 0.15);
  border-color: rgba(255, 212, 0, 0.5);
  color: #ffd400;
}

.lightbox-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-width: min(100%, 1100px);
  width: 100%;
}

.lightbox-img {
  max-width: 100%;
  max-height: calc(100vh - 120px);
  object-fit: contain;
  border-radius: 6px;
  display: block;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
}

.lightbox-caption {
  color: rgba(247, 247, 247, 0.55);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0;
  min-height: 1.2em;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.2);
  background: rgba(20,20,20,0.9);
  color: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}

.lightbox-close:hover {
  background: rgba(255, 212, 0, 0.15);
  border-color: rgba(255, 212, 0, 0.5);
}

@media (max-width: 640px) {
  dialog.lightbox {
    grid-template-columns: 44px 1fr 44px;
    padding: 12px 6px;
  }

  .lightbox-arrow {
    width: 38px;
    height: 38px;
  }
}

/* ── Responsive ─────────────────────────────────────────── */

@media (max-width: 980px) {
  .band-card {
    grid-template-columns: 140px 1fr;
  }

  .page {
    padding: 18px;
  }

  .flyer {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 760px;
  }

  .left,
  .right {
    width: 100%;
  }

  .title {
    margin-bottom: 4px;
  }

  .subtitle {
    margin-bottom: 14px;
  }

  .hero {
    width: min(100%, 360px);
  }

  .artists .row {
    font-size: clamp(1.15rem, 4vw, 2rem);
  }

  .artists .small {
    font-size: clamp(0.95rem, 2.4vw, 1.2rem);
  }
}

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

  .nav-logo {
    font-size: 1.05rem;
  }

  .band-card {
    grid-template-columns: 1fr;
    padding: 14px;
    gap: 14px;
  }

  .band-image-placeholder {
    max-width: 220px;
    margin: 0 auto;
  }

  .band-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .band-description {
    font-size: 0.95rem;
  }

  .page {
    padding: 10px;
  }

  .flyer {
    border-width: 8px;
    border-radius: 14px;
    padding: 16px 14px 18px;
    gap: 16px;
  }

  .title-main {
    font-size: clamp(2.6rem, 13vw, 4.2rem);
  }

  .subtitle {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }

  .hero {
    width: min(100%, 250px);
  }

  .hero-image-wrap {
    width: min(100%, 210px);
  }

  .artists .row {
    gap: 6px 10px;
    margin: 8px 0;
    font-size: clamp(1.05rem, 6vw, 1.55rem);
  }

  .artists .small {
    font-size: clamp(0.9rem, 4.2vw, 1.05rem);
  }

  .date-box {
    margin-top: 16px;
    width: 100%;
    min-width: 0;
    padding: 8px 10px;
  }

  .date-line {
    font-size: clamp(1.5rem, 8vw, 2.25rem);
  }

  .footer {
    margin-top: 12px;
    font-size: clamp(1rem, 5vw, 1.35rem);
  }
}

/* Sponsors section */
.sponsors-section {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255 255 255 / 0.12);
}

.sponsors-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 28px 48px;
  margin-top: 32px;
}

.sponsor-logo {
  max-height: 56px;
  max-width: min(180px, 44vw);
  width: auto;
  height: auto;
  object-fit: contain;
  transition: opacity 0.2s;
}

.sponsor-logo:hover {
  opacity: 1;
}

.sponsors-cta {
  text-align: center;
  margin-top: 28px;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sponsors-cta a {
  color: rgba(247, 247, 247, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.sponsors-cta a:hover {
  color: var(--yellow);
}
