@font-face {
  font-family: 'Teko';
  src: url('fonts/Teko-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Teko';
  src: url('fonts/Teko-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Teko';
  src: url('fonts/Teko-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Teko';
  src: url('fonts/Teko-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Amithen';
  src: url('fonts/Amithen.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --blue: #1892A1;
  --blue-deep: #0C4D52;
  --blue-soft: #6fb2e3;
  --orange: #FF691F;
  --orange-soft: #ffa05a;
  --violet: #413755;
  --berry: #AE1057;
  --plum: #4F1A46;
  --teal: #0C4D52;
  --cloud: #f2f2ee;
  --cream: #f4ecdb;
  --ink: #0a1420;
  --white: #ffffff;
  --line: rgba(255, 255, 255, 0.18);
  --poster-noise: url("map-grain.png");
  --purple-green-bg:
    radial-gradient(circle at 10% -2%, rgba(255, 105, 31, 0.22), transparent 28%),
    radial-gradient(circle at 84% 6%, rgba(51, 204, 171, 0.26), transparent 34%),
    radial-gradient(circle at 10% 42%, rgba(33, 132, 107, 0.2), transparent 32%),
    radial-gradient(circle at 20% 68%, rgba(174, 16, 87, 0.38), transparent 36%),
    radial-gradient(circle at 86% 74%, rgba(47, 170, 139, 0.24), transparent 38%),
    radial-gradient(circle at 50% 96%, rgba(79, 26, 70, 0.56), transparent 44%),
    linear-gradient(180deg, #542047 0%, #332346 32%, #142934 62%, #071018 100%);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--ink);
  color: var(--white);
  overflow-x: clip;
  line-height: 1.5;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }

/* ---------- TOP NAV ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 20, 32, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 18px 32px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.08);
}

.nav::after {
  content: none;
}

.nav__logo {
  display: block;
  flex-shrink: 0;
}

.nav__logo img {
  height: 42px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
}

.nav__cta,
.hero__cta,
.section__link,
.pass-card a,
.pass-strip a {
  font-family: 'Teko', sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0;
}

.nav__cta {
  flex-shrink: 0;
  background: var(--orange);
  color: var(--white);
  padding: 10px 22px;
  font-size: 0.95rem;
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--white);
  transition: transform 0.15s, box-shadow 0.15s;
}

.nav__cta:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--white);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 600px;
  height: calc(100svh - 120px);
  max-height: 720px;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  isolation: isolate;
  contain: layout paint;
  border-bottom: 2px solid rgba(255, 255, 255, 0.14);
}

.hero::before {
  content: "";
  position: absolute;
  inset: -50%;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 20%, var(--blue) 60%, var(--blue) 100%);
  filter: blur(25px);
  transform-origin: 50% 50%;
  animation: wedge-blue 12s ease-in-out infinite alternate;
  will-change: transform;
}

.hero::after {
  content: "";
  position: absolute;
  inset: -50%;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 25%, var(--orange) 65%, var(--orange) 100%);
  filter: blur(25px);
  transform-origin: 50% 50%;
  animation: wedge-orange 9s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes wedge-blue {
  0% { transform: translate(20%, -10%) rotate(-30deg) scale(1.1); }
  25% { transform: translate(-15%, 15%) rotate(140deg) scale(1.4); }
  50% { transform: translate(10%, -20%) rotate(210deg) scale(1.3); }
  75% { transform: translate(-20%, 20%) rotate(70deg) scale(1.5); }
  100% { transform: translate(25%, 5%) rotate(-10deg) scale(1.2); }
}

@keyframes wedge-orange {
  0% { transform: translate(-20%, 15%) rotate(160deg) scale(1.2); }
  25% { transform: translate(15%, -10%) rotate(-40deg) scale(1.5); }
  55% { transform: translate(-25%, -15%) rotate(240deg) scale(1.3); }
  80% { transform: translate(20%, 20%) rotate(30deg) scale(1.6); }
  100% { transform: translate(-10%, -5%) rotate(180deg) scale(1.1); }
}

.hero__video {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.76;
  filter: saturate(1.18) contrast(1.06);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 18% 76%, rgba(65, 55, 85, 0.26), transparent 28%),
    radial-gradient(circle at 88% 24%, rgba(174, 16, 87, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(10, 20, 32, 0.48), rgba(10, 20, 32, 0.16) 42%, rgba(10, 20, 32, 0.64)),
    linear-gradient(90deg, rgba(255, 105, 31, 0.22), rgba(24, 146, 161, 0.18)),
    radial-gradient(ellipse 70% 65% at center, transparent 0%, rgba(10, 20, 32, 0.56) 100%);
}

.hero__content {
  position: relative;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  padding: 0 24px;
  max-width: 1160px;
  transform: translateY(34px);
}

.hero__title {
  font-family: 'Teko', sans-serif;
  font-size: 9.7rem;
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 6px 6px 0 var(--blue-deep), 10px 10px 0 var(--ink);
}

.hero__title em {
  font-family: 'Amithen', cursive;
  font-style: normal;
  font-size: 0.55em;
  font-weight: 700;
  color: var(--orange);
  display: block;
  transform: rotate(-4deg) translateY(-10px);
  text-shadow: 3px 3px 0 var(--ink);
}

.hero__brand {
  display: flex;
  justify-content: center;
  margin: 0 auto 18px;
  max-width: 460px;
  line-height: 1;
  text-shadow: none;
}

.hero__brand img {
  width: min(100%, 460px);
  height: auto;
  filter: none;
}

.hero__date {
  position: relative;
  display: grid;
  place-items: center;
  width: min(500px, 90vw);
  height: 112px;
  margin: 0 auto;
  line-height: 0.82;
  isolation: isolate;
}

.hero__date-days {
  position: relative;
  z-index: 3;
  font-family: 'Teko', sans-serif;
  font-size: clamp(6.2rem, 9.6vw, 8.25rem);
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.02em;
  transform: translateY(28px);
  text-shadow: none;
}

.hero__date-month {
  position: absolute;
  z-index: 4;
  top: 58%;
  left: 50%;
  font-family: 'Amithen', cursive;
  font-size: clamp(3.05rem, 5.35vw, 4.5rem);
  color: var(--white);
  white-space: nowrap;
  transform: translate(-50%, -50%) rotate(-5deg);
  text-shadow: none;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 62px;
  padding: 19px 42px;
  font-size: 1.65rem;
  border: 3px solid var(--ink);
  transition: transform 0.15s, box-shadow 0.15s, background 0.2s, color 0.2s;
}

.hero__cta {
  background: var(--orange);
  color: var(--white);
  box-shadow: 8px 8px 0 var(--ink);
}

.hero__cta:hover {
  background: var(--orange-soft);
  color: var(--ink);
  transform: translate(-2px, -2px);
  box-shadow: 10px 10px 0 var(--ink);
}

.hero__cta svg { width: 24px; height: 24px; }

.hero__countdown {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 0;
  color: rgba(255, 255, 255, 0.76);
}

.hero__countdown div {
  flex: 0 0 54px;
  text-align: center;
}

.hero__countdown strong {
  display: block;
  width: 3ch;
  margin: 0 auto;
  font-family: 'Teko', sans-serif;
  font-size: 2.12rem;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
  color: var(--white);
  text-shadow: 2px 2px 0 rgba(10, 20, 32, 0.55);
}

.hero__countdown strong[data-cd="h"],
.hero__countdown strong[data-cd="m"],
.hero__countdown strong[data-cd="s"] {
  width: 2ch;
}

.hero__countdown span {
  display: block;
  margin-top: 4px;
  font-size: 0.82rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.72);
}

@media (min-width: 769px) and (max-height: 840px) {
  .hero {
    min-height: 620px;
    height: calc(100svh - 128px);
    max-height: 660px;
  }

  .hero__content {
    gap: 20px;
    transform: translateY(40px);
  }

  .hero__brand {
    margin-bottom: 14px;
    max-width: 390px;
  }

  .hero__brand img {
    width: min(100%, 390px);
  }

  .hero__date {
    height: 94px;
    margin: 0 auto;
  }

  .hero__date-days {
    font-size: 6.4rem;
    transform: translateY(22px);
  }

  .hero__date-month {
    top: 57%;
    font-size: 3.45rem;
  }

  .hero__cta {
    min-height: 54px;
    padding: 15px 32px;
    font-size: 1.43rem;
  }

  .hero__countdown {
    gap: 22px;
    margin-top: 0;
  }

  .hero__countdown strong {
    font-size: 1.75rem;
  }
}

@media (min-width: 769px) and (max-height: 680px) {
  .hero {
    min-height: 580px;
    height: calc(100svh - 60px);
    max-height: 620px;
  }

  .hero__content {
    gap: 16px;
    transform: translateY(24px);
  }

  .hero__brand {
    margin-bottom: 10px;
    max-width: 320px;
  }

  .hero__brand img {
    width: min(100%, 320px);
  }

  .hero__date {
    height: 80px;
    margin: 0 auto;
  }

  .hero__date-days {
    font-size: 5.45rem;
    transform: translateY(19px);
  }

  .hero__date-month {
    top: 57%;
    font-size: 3rem;
  }

  .hero__cta {
    min-height: 46px;
    padding: 12px 24px;
    font-size: 1.22rem;
  }

  .hero__countdown {
    gap: 18px;
    margin-top: 0;
  }

  .hero__countdown strong {
    font-size: 1.55rem;
  }
}

/* ---------- SHARED SECTION ---------- */
.section {
  padding: 112px 40px;
  position: relative;
  scroll-margin-top: 76px;
}

.section__inner {
  position: relative;
  z-index: 20;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}

.section__label {
  font-family: 'Amithen', cursive;
  font-size: 2rem;
  color: var(--orange-soft);
  transform: rotate(-2deg);
  display: inline-block;
  margin-bottom: 8px;
}

.section__title {
  font-family: 'Teko', sans-serif;
  font-size: 6.5rem;
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--white);
  text-shadow: 4px 4px 0 var(--ink);
}

.section__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 22px;
  border: 2px solid currentColor;
  color: var(--white);
  font-size: 1rem;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.section__link:hover {
  background: var(--white);
  color: var(--ink);
  transform: translate(-2px, -2px);
}

/* ---------- PASS STRIP ---------- */
.pass-strip {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 22px 40px;
  background: var(--white);
  color: var(--ink);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}

.pass-strip__label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: rgba(10, 20, 32, 0.62);
  font-weight: 800;
}

.pass-strip strong {
  font-family: 'Teko', sans-serif;
  font-size: 1.8rem;
  text-transform: uppercase;
  line-height: 1;
}

.pass-strip a {
  background: var(--orange);
  color: var(--white);
  padding: 14px 24px;
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  font-size: 1rem;
}

/* ---------- COUNTDOWN ---------- */
.countdown {
  background: var(--orange);
  color: var(--ink);
  padding: 64px 40px;
  text-align: center;
  scroll-margin-top: 76px;
}

.countdown__label {
  font-family: 'Amithen', cursive;
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.countdown__title {
  font-family: 'Teko', sans-serif;
  font-size: 4.5rem;
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 28px;
  text-shadow: 4px 4px 0 var(--ink);
  color: var(--white);
}

.countdown__grid {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.countdown__cell {
  background: var(--ink);
  color: var(--white);
  padding: 20px 24px;
  min-width: 110px;
  border: 3px solid var(--ink);
  box-shadow: 6px 6px 0 var(--white);
}

.countdown__num {
  font-family: 'Teko', sans-serif;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--orange-soft);
}

.countdown__unit {
  font-size: 0.75rem;
  text-transform: uppercase;
  margin-top: 8px;
  color: var(--white);
}

/* ---------- SECTION LAYERS ---------- */
.artists,
.artist-detail-main,
.passes,
.beats-section,
.need-to-know,
.partners,
.footer {
  position: relative;
}

.artists,
.artist-detail-main,
.passes,
.beats-section,
.need-to-know,
.partners {
  isolation: isolate;
}

.artists > *,
.artist-detail-main > *,
.passes > *,
.beats-section > *,
.need-to-know > *,
.partners > *,
.footer > * {
  position: relative;
  z-index: 20;
}

.artists::before,
.artist-detail-main::before,
.passes::before,
.beats-section::before,
.need-to-know::before,
.partners::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: var(--poster-noise);
  background-size: 320px 320px;
  mix-blend-mode: overlay;
  opacity: 0.24;
}

.artists::before,
.artist-detail-main::before {
  opacity: 0.26;
}

.passes::before,
.need-to-know::before,
.partners::before {
  opacity: 0.24;
}

.passes .section__head,
.footer__brand {
  position: relative;
}

/* ---------- ARTISTS ---------- */
.artists {
  background: var(--purple-green-bg);
  padding-top: 72px;
}

.artists__group {
  position: relative;
}

.artists__group + .artists__group {
  margin-top: clamp(58px, 7vw, 86px);
  padding-top: clamp(44px, 5vw, 62px);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.artists__head {
  margin-bottom: 28px;
}

.artists__head h2 {
  font-size: 1.65rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.86);
}

.artist-tile-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 24px);
}

.artist-tile {
  position: relative;
  aspect-ratio: 1 / 1;
  min-height: 0;
  overflow: hidden;
  border-radius: 18px;
  color: var(--white);
  text-decoration: none;
  background: #171719;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    inset 0 0 0 7px rgba(255, 255, 255, 0.055),
    0 0 0 1px rgba(0, 0, 0, 0.86),
    0 18px 42px rgba(0, 0, 0, 0.34);
  transition: transform 0.14s ease, border-color 0.14s ease, box-shadow 0.14s ease;
}

.artist-tile::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  z-index: 1;
  height: 62%;
  border-radius: 0 0 12px 12px;
  background:
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.48) 44%, rgba(0, 0, 0, 0.94) 100%),
    radial-gradient(ellipse at 50% 92%, rgba(0, 0, 0, 0.9), transparent 54%);
  pointer-events: none;
}

.artist-tile:hover {
  transform: translateY(-6px) scale(1.015);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow:
    inset 0 0 0 7px rgba(255, 255, 255, 0.08),
    0 0 0 1px rgba(0, 0, 0, 0.86),
    0 24px 56px rgba(0, 0, 0, 0.48);
}

.artist-tile__image {
  position: absolute;
  inset: 10px;
  overflow: hidden;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(10, 20, 32, 0.1), rgba(10, 20, 32, 0.92)),
    radial-gradient(circle at 50% 26%, rgba(255, 255, 255, 0.35), transparent 18%),
    radial-gradient(ellipse at 50% 44%, rgba(255, 255, 255, 0.28), transparent 24%),
    linear-gradient(135deg, var(--blue), var(--blue-deep));
}

.artist-tile__image::before,
.artist-tile__image::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  filter: blur(2px);
}

.artist-tile__image::before {
  top: 38px;
  width: 72px;
  height: 72px;
}

.artist-tile__image::after {
  top: 106px;
  width: 132px;
  height: 182px;
  border-radius: 70px 70px 24px 24px;
}

.artist-tile__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1);
  transition: transform 0.16s ease;
}

.artist-tile--mehringer .artist-tile__image img,
.artist-tile--metzker .artist-tile__image img {
  height: calc(100% + 2px);
  transform: translateY(-1px);
}

.artist-tile:hover .artist-tile__image img {
  transform: scale(1.035);
}

.artist-tile--mehringer:hover .artist-tile__image img,
.artist-tile--metzker:hover .artist-tile__image img {
  transform: translateY(-1px) scale(1.035);
}

.lineup-note {
  margin-top: 22px;
  padding: 18px 20px;
  border-left: 5px solid var(--orange);
  background:
    linear-gradient(90deg, rgba(255, 105, 31, 0.14), rgba(24, 146, 161, 0.06)),
    rgba(255, 255, 255, 0.035);
  color: var(--white);
}

.lineup-note span {
  display: block;
  font-family: 'Amithen', cursive;
  font-size: 1.7rem;
  line-height: 1;
  color: var(--orange-soft);
}

.lineup-note strong {
  display: block;
  font-family: 'Teko', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.92;
  text-transform: uppercase;
  margin-top: 4px;
}

.lineup-note p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
}

.artist-tile--photo {
  aspect-ratio: 1 / 1;
  min-height: 0;
}

.artist-tile--photo .artist-tile__image {
  background: var(--ink);
}

.artist-tile--photo .artist-tile__image::before,
.artist-tile--photo .artist-tile__image::after {
  display: none;
}

.artist-tile--photo strong {
  padding: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.artist-tile--mystery .artist-tile__image {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(10, 20, 32, 0.04), rgba(10, 20, 32, 0.92)),
    radial-gradient(circle at 26% 18%, rgba(255, 105, 31, 0.45), transparent 26%),
    radial-gradient(circle at 78% 10%, rgba(24, 146, 161, 0.34), transparent 24%),
    linear-gradient(135deg, var(--plum), var(--blue-deep));
}

#presenters .artist-tile--mystery .artist-tile__image {
  background:
    linear-gradient(180deg, rgba(10, 20, 32, 0.03), rgba(10, 20, 32, 0.9)),
    radial-gradient(circle at 20% 18%, rgba(255, 105, 31, 0.62), transparent 30%),
    radial-gradient(circle at 80% 14%, rgba(24, 146, 161, 0.56), transparent 28%),
    radial-gradient(ellipse at 54% 60%, rgba(255, 105, 31, 0.14), transparent 44%),
    linear-gradient(135deg, #061820 0%, #0c4d52 58%, #ff691f 148%);
}

.artist-tile--mystery {
  cursor: default;
}

.artist-tile--mystery::after {
  top: 8px;
  height: auto;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 4%, rgba(0, 0, 0, 0.24) 56%, rgba(0, 0, 0, 0.94) 100%),
    radial-gradient(ellipse at 50% 90%, rgba(0, 0, 0, 0.88), transparent 58%);
}

.artist-tile--mystery .artist-tile__image::before,
.artist-tile--mystery .artist-tile__image::after {
  opacity: 0.24;
}

.artist-tile__symbol {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 62%;
  aspect-ratio: 1 / 1;
  font-family: 'Teko', sans-serif;
  font-size: clamp(6.8rem, 12vw, 12rem);
  line-height: 0.8;
  color: var(--white);
  text-shadow: 8px 8px 0 rgba(10, 20, 32, 0.82);
}

.artist-tile__symbol svg {
  width: 78%;
  height: 78%;
  fill: none;
  stroke: currentColor;
  stroke-width: 10;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(8px 8px 0 rgba(10, 20, 32, 0.82));
}

.artist-tile strong {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  display: block;
  min-height: 0;
  padding: 0;
  font-family: 'Teko', sans-serif;
  font-size: clamp(1.35rem, 1.85vw, 1.8rem);
  font-weight: 800;
  line-height: 0.9;
  text-transform: uppercase;
  text-align: center;
  color: var(--white);
  letter-spacing: 0;
  border-radius: 0;
  border-left: 0;
  background: transparent;
  box-shadow: none;
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.9),
    0 3px 14px rgba(0, 0, 0, 1),
    0 0 2px rgba(0, 0, 0, 1);
}

/* ---------- ARTIST DETAIL ---------- */
.artist-detail-page {
  background: var(--ink);
}

.artist-detail-main {
  min-height: 100svh;
  padding: 118px 40px 86px;
  background: var(--purple-green-bg);
  overflow: hidden;
}

.artist-detail-page--mentalitea {
  background: var(--ink);
}

.artist-detail-page--mentalitea .artist-detail-main {
  background: var(--purple-green-bg);
}

.artist-detail {
  width: min(1150px, 100%);
  margin: 0 auto;
}

.artist-detail__top {
  display: grid;
  grid-template-columns: 56px 1fr 56px;
  align-items: center;
  gap: 18px;
}

.artist-detail__back {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.55);
  color: var(--white);
  text-decoration: none;
  font-size: 1.35rem;
  box-shadow: 4px 4px 0 rgba(255, 105, 31, 0.78);
  transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
}

.artist-detail__back:hover {
  background: var(--orange);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
}

.artist-detail h1 {
  font-family: 'Teko', sans-serif;
  font-size: clamp(4.2rem, 9vw, 8.8rem);
  line-height: 0.86;
  text-align: center;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 5px 5px 0 var(--blue-deep), 9px 9px 0 var(--ink);
}

.artist-detail-page--metzker .artist-detail h1 {
  white-space: nowrap;
  font-size: clamp(4.2rem, 7.25vw, 7.35rem);
}

.artist-detail-page--bozont .artist-detail h1 {
  font-size: clamp(3.6rem, 7.25vw, 7.35rem);
  text-wrap: balance;
}

.artist-detail__line {
  height: 2px;
  margin: 40px 0 58px;
  background: rgba(255, 255, 255, 0.18);
}

.artist-detail__grid {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: clamp(38px, 7vw, 96px);
  align-items: start;
}

.artist-detail__image {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #171719;
  box-shadow:
    inset 0 0 0 7px rgba(255, 255, 255, 0.055),
    0 0 0 1px rgba(0, 0, 0, 0.86),
    0 24px 60px rgba(0, 0, 0, 0.48);
}

.artist-detail__image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
}

.artist-detail__meta {
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.artist-detail__meta div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.artist-detail__meta div:last-child {
  border-bottom: 0;
}

.artist-detail__meta span {
  font-family: 'Teko', sans-serif;
  text-transform: uppercase;
  color: var(--orange-soft);
  font-size: 1.05rem;
}

.artist-detail__meta strong {
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.86);
}

.artist-detail__social {
  margin-top: 28px;
}

.artist-detail__social h2,
.artist-detail__copy h2 {
  font-family: 'Teko', sans-serif;
  font-size: 2.5rem;
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
}

.artist-detail__social-icons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(62px, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.artist-detail__social-icon {
  min-height: 62px;
  display: grid;
  place-items: center;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  transition: transform 0.18s, color 0.18s, border-color 0.18s, filter 0.18s;
}

.artist-detail__social-icon svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.artist-detail__social-icon:hover {
  color: var(--orange);
  border-color: rgba(255, 105, 31, 0.62);
  transform: translateY(-3px);
  filter: drop-shadow(0 8px 14px rgba(255, 105, 31, 0.28));
}

.artist-detail__social-icon--empty {
  cursor: default;
  opacity: 0.72;
}

.artist-detail__social-icon--empty:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
  transform: none;
  filter: none;
}

.artist-detail__copy {
  padding-top: 4px;
}

.artist-detail__copy .section__label {
  color: var(--orange-soft);
}

.artist-detail__copy p {
  max-width: 620px;
  margin: 22px 0 34px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  line-height: 1.75;
}

.artist-detail__listen {
  max-width: 620px;
  margin: 0 0 30px;
}

.artist-detail__listen[hidden] {
  display: none;
}

.artist-detail__listen-label {
  display: block;
  margin-bottom: 10px;
  font-family: 'Amithen', cursive;
  font-size: 1.9rem;
  line-height: 1;
  color: var(--orange-soft);
}

.artist-detail__listen-card {
  --listen-bg-1: #12203a;
  --listen-bg-2: #3e192f;
  --listen-bg-3: #0f1b33;
  --listen-accent: #d8dfc8;
  position: relative;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) 54px;
  align-items: center;
  gap: 18px;
  min-height: 136px;
  padding: 18px;
  overflow: hidden;
  border: 2px solid color-mix(in srgb, var(--listen-accent) 78%, var(--listen-bg-1));
  border-radius: 16px;
  background:
    radial-gradient(circle at 8% 16%, color-mix(in srgb, var(--listen-accent) 22%, transparent), transparent 33%),
    radial-gradient(circle at 88% 18%, color-mix(in srgb, var(--listen-bg-2) 58%, transparent), transparent 42%),
    linear-gradient(135deg, var(--listen-bg-1) 0%, var(--listen-bg-3) 56%, var(--listen-bg-2) 100%);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.82),
    7px 7px 0 rgba(5, 16, 24, 0.74);
  color: var(--white);
  text-decoration: none;
  transition: transform 0.16s, box-shadow 0.16s, border-color 0.16s;
}

.artist-detail__listen-card:hover {
  transform: translate(-2px, -2px);
  border-color: var(--listen-accent);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.82),
    9px 9px 0 rgba(5, 16, 24, 0.74),
    0 18px 38px color-mix(in srgb, var(--listen-bg-2) 42%, transparent);
}

.artist-detail__listen-cover {
  position: relative;
  z-index: 1;
  width: 96px;
  aspect-ratio: 1 / 1;
  padding: 8px;
  border-radius: 12px;
  background: var(--listen-accent);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.24);
}

.artist-detail__listen-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 6px;
  filter: saturate(1.02) contrast(1.04);
}

.artist-detail__listen-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.artist-detail__listen-copy span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 9px;
  border-radius: 3px;
  background: color-mix(in srgb, var(--listen-bg-3) 80%, black);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
  color: var(--listen-accent);
}

.artist-detail__listen-copy strong {
  display: block;
  margin-top: 9px;
  font-family: 'Teko', sans-serif;
  font-size: 2.55rem;
  line-height: 0.9;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--listen-accent) 92%, var(--white));
}

.artist-detail__listen-copy em {
  display: block;
  margin-top: 8px;
  font-style: normal;
  font-weight: 800;
  color: color-mix(in srgb, var(--listen-accent) 82%, var(--white));
}

.artist-detail__listen-brand {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 1;
  width: 34px;
  height: 34px;
  color: var(--listen-accent);
}

.artist-detail__listen-brand svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.artist-detail__listen-play {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  justify-self: end;
  align-self: end;
  width: 54px;
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  background: var(--listen-accent);
  color: var(--listen-bg-1);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
}

.artist-detail__listen-play svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.artist-detail__ticket {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 16px 32px;
  background: var(--orange);
  color: var(--white);
  border: 3px solid var(--ink);
  box-shadow: 6px 6px 0 var(--white);
  font-family: 'Teko', sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 1.2rem;
  transition: transform 0.15s, box-shadow 0.15s;
}

.artist-detail__ticket:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--white);
}

.artist-detail__more {
  margin-top: clamp(52px, 7vw, 82px);
  padding-top: clamp(34px, 5vw, 46px);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.artist-detail__more-label {
  display: block;
  font-family: 'Amithen', cursive;
  font-size: 1.9rem;
  line-height: 1;
  color: var(--orange-soft);
}

.artist-detail__more h2 {
  margin-top: 7px;
  font-family: 'Teko', sans-serif;
  font-size: clamp(2.9rem, 5vw, 4.3rem);
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--white);
}

.artist-detail__more-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.artist-detail__more-card {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) 32px;
  align-items: center;
  gap: 14px;
  min-height: 96px;
  padding: 10px 12px 10px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 105, 31, 0.08), rgba(24, 146, 161, 0.06)),
    rgba(255, 255, 255, 0.04);
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  transition: transform 0.18s, border-color 0.18s, background 0.18s, box-shadow 0.18s;
}

.artist-detail__more-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 105, 31, 0.5);
  background:
    linear-gradient(135deg, rgba(255, 105, 31, 0.16), rgba(24, 146, 161, 0.09)),
    rgba(255, 255, 255, 0.055);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.artist-detail__more-image {
  width: 74px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 6px;
  background: var(--ink);
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.08);
}

.artist-detail__more-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.artist-detail__more-copy {
  min-width: 0;
}

.artist-detail__more-copy em {
  display: block;
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  color: var(--orange-soft);
}

.artist-detail__more-copy strong {
  display: block;
  margin-top: 6px;
  overflow-wrap: anywhere;
  font-family: 'Teko', sans-serif;
  font-size: 1.85rem;
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--white);
}

.artist-detail__more-arrow {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--orange-soft);
  font-size: 1.2rem;
  line-height: 1;
  transition: transform 0.18s ease;
}

/* ---------- LEGAL ---------- */
.legal-page {
  background: var(--ink);
  color: var(--white);
}

.legal-main {
  position: relative;
  min-height: 100svh;
  padding: 112px 24px 78px;
  background: var(--purple-green-bg);
  overflow: hidden;
  isolation: isolate;
}

.legal-main::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: var(--poster-noise);
  background-size: 320px 320px;
  mix-blend-mode: overlay;
  opacity: 0.24;
}

.legal-main > * {
  position: relative;
  z-index: 20;
}

.legal-doc {
  width: min(1040px, 100%);
  margin: 0 auto;
  padding: 0;
  background: transparent;
}

.legal-doc__back {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 14px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-family: 'Teko', sans-serif;
  font-size: 1.1rem;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.16s ease, border-color 0.16s ease, transform 0.16s ease;
}

.legal-doc__back:hover {
  color: var(--orange-soft);
  border-color: rgba(255, 105, 31, 0.62);
  transform: translateY(-2px);
}

.legal-doc__header {
  position: relative;
  margin-top: clamp(24px, 4vw, 38px);
  margin-bottom: clamp(28px, 4vw, 42px);
  padding: clamp(24px, 4vw, 40px);
  border-left: 7px solid var(--orange);
  background:
    linear-gradient(120deg, rgba(255, 105, 31, 0.14), rgba(24, 146, 161, 0.08)),
    rgba(255, 255, 255, 0.045);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    7px 7px 0 rgba(5, 16, 24, 0.8);
}

.legal-doc__eyebrow {
  display: block;
  color: var(--orange-soft);
  font-family: 'Amithen', cursive;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1;
}

.legal-doc h1 {
  margin-top: 10px;
  font-family: 'Teko', sans-serif;
  font-size: clamp(3.2rem, 6.2vw, 5.5rem);
  line-height: 0.92;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 4px 4px 0 var(--blue-deep), 7px 7px 0 rgba(2, 6, 10, 0.92);
}

.legal-doc__source {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.9rem;
  font-weight: 800;
}

.legal-doc__notice {
  max-width: 780px;
  margin-top: 18px;
  padding: 14px 16px;
  border-left: 4px solid var(--orange);
  background: rgba(5, 16, 24, 0.54);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.legal-doc section {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(20px, 3.2vw, 30px) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.legal-doc section:last-child {
  border-bottom: 0;
}

.legal-doc h2,
.legal-doc h3 {
  font-family: 'Teko', sans-serif;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--white);
}

.legal-doc h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(1.9rem, 3.6vw, 2.75rem);
}

.legal-doc h2::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 0.82em;
  background: var(--orange);
  box-shadow: 4px 4px 0 rgba(5, 16, 24, 0.72);
  transform: skew(-12deg);
}

.legal-doc h3 {
  margin: 20px 0 8px;
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  color: var(--orange-soft);
}

.legal-doc p {
  max-width: none;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.02rem;
  line-height: 1.72;
}

.legal-doc p + p {
  margin-top: 10px;
}

.legal-doc ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 4px;
  padding: 0;
  list-style: none;
}

.legal-doc li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.legal-doc li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--orange);
  box-shadow: 3px 3px 0 rgba(10, 20, 32, 0.42);
  transform: translateY(-50%) rotate(45deg);
}

.legal-doc strong {
  color: var(--white);
}

.legal-doc__downloads {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.legal-doc__downloads a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 15px;
  border: 2px solid var(--orange);
  background: rgba(255, 105, 31, 0.12);
  color: var(--white);
  font-family: 'Teko', sans-serif;
  font-size: 1.05rem;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.14s ease, background 0.14s ease, color 0.14s ease;
}

.legal-doc__downloads a:hover {
  background: var(--orange);
  color: var(--ink);
  transform: translateY(-2px);
}

/* ---------- PASSES ---------- */
.passes {
  min-height: auto;
  display: flex;
  align-items: center;
  padding-top: clamp(46px, 5vw, 62px);
  padding-bottom: clamp(52px, 5vw, 68px);
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 105, 31, 0.56), transparent 34%),
    radial-gradient(circle at 88% 10%, rgba(24, 146, 161, 0.48), transparent 36%),
    radial-gradient(circle at 80% 72%, rgba(255, 105, 31, 0.34), transparent 30%),
    linear-gradient(145deg, #061820 0%, #0b2b35 32%, #0c4d52 58%, #161526 100%);
  overflow: hidden;
}

.passes__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(18px, 2.4vw, 24px);
  align-items: stretch;
}

.passes .section__head {
  margin-bottom: 18px;
}

.passes .section__title {
  font-size: clamp(3.9rem, 5.4vw, 4.8rem);
}

.ticket-switch {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px 22px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 105, 31, 0.16), rgba(24, 146, 161, 0.08)),
    rgba(5, 16, 24, 0.54);
  color: var(--white);
  box-shadow: 6px 6px 0 rgba(5, 16, 24, 0.42);
}

.ticket-switch[hidden] {
  display: none;
}

.ticket-switch span {
  display: block;
  font-family: 'Amithen', cursive;
  font-size: 1.45rem;
  line-height: 1;
  color: var(--orange-soft);
}

.ticket-switch strong {
  display: block;
  margin-top: 5px;
  font-family: 'Teko', sans-serif;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 0.94;
  text-transform: uppercase;
}

.ticket-switch__countdown {
  display: grid;
  grid-template-columns: repeat(4, clamp(54px, 4.8vw, 76px));
  gap: clamp(12px, 2.2vw, 28px);
  text-align: center;
}

.ticket-switch__countdown b {
  display: inline-block;
  width: 2ch;
  font-family: 'Teko', sans-serif;
  font-size: clamp(2.25rem, 3.2vw, 3.45rem);
  line-height: 0.85;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
  text-align: center;
  color: var(--orange-soft);
}

.ticket-switch__countdown small {
  display: block;
  margin-top: 5px;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.pass-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.pass-grid--single {
  grid-template-columns: minmax(0, 540px);
}

.pass-card {
  padding: 34px;
  border: 3px solid var(--ink);
  background: var(--white);
  color: var(--ink);
  box-shadow: 8px 8px 0 var(--orange);
}

.passes__layout .pass-card {
  min-height: 260px;
  padding: clamp(22px, 2.4vw, 30px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pass-card--featured {
  background: var(--cream);
  box-shadow: 8px 8px 0 var(--ink);
}

.pass-card__tag {
  display: block;
  width: fit-content;
  font-family: 'Amithen', cursive;
  font-size: 1.4rem;
  color: var(--orange);
  margin-bottom: 4px;
  transition: color 0.16s ease, transform 0.16s ease;
}

.pass-card__main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
}

.pass-card__copy {
  min-width: 0;
}

.pass-card__amount {
  text-align: right;
  min-width: 210px;
}

.pass-card h3 {
  position: relative;
  display: inline-block;
  font-family: 'Teko', sans-serif;
  font-size: clamp(2.6rem, 3.7vw, 3.7rem);
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 10px;
  transition: color 0.16s ease, transform 0.16s ease;
}

.pass-card h3::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 5px;
  background: var(--orange);
  box-shadow: 3px 3px 0 rgba(10, 20, 32, 0.16);
  transform: scaleX(0.42);
  transform-origin: left center;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.pass-card--featured:hover h3 {
  color: var(--blue-deep);
  transform: translateY(-2px);
}

.pass-card--featured:hover .pass-card__tag {
  color: var(--blue-deep);
  transform: translateY(-2px);
}

.pass-card--featured:hover h3::after {
  box-shadow: 4px 4px 0 rgba(10, 20, 32, 0.24);
  transform: scaleX(1);
}

.pass-card__price {
  font-family: 'Teko', sans-serif;
  font-size: clamp(4rem, 5.4vw, 5.4rem);
  line-height: 1;
  color: var(--blue-deep);
  margin-bottom: 6px;
}

.pass-card__price small {
  font-size: 0.25em;
  color: var(--ink);
}

.pass-card__fee {
  margin-bottom: 0;
  font-size: 0.9rem;
  font-weight: 800;
  color: rgba(10, 20, 32, 0.72);
}

.pass-card p {
  max-width: none;
  font-size: 1rem;
}

.pass-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  min-height: 46px;
  padding: 12px 22px;
  background: var(--ink);
  color: var(--white);
  font-size: 1.25rem;
  border: 2px solid var(--ink);
  box-shadow: 5px 5px 0 rgba(10, 20, 32, 0.22);
  transition: transform 0.14s ease, box-shadow 0.14s ease, background 0.14s ease, color 0.14s ease;
}

.pass-card--featured a {
  background: var(--orange);
}

.pass-card a:hover {
  background: var(--orange-soft);
  color: var(--ink);
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 rgba(10, 20, 32, 0.28);
}

.ticket-map {
  margin-top: 6px;
  padding-top: clamp(24px, 3vw, 34px);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.ticket-map__head {
  display: block;
  margin-bottom: clamp(18px, 2.4vw, 26px);
}

.ticket-map__head h3 {
  font-family: 'Teko', sans-serif;
  font-size: clamp(2.9rem, 5.6vw, 5.2rem);
  line-height: 0.98;
  text-transform: uppercase;
  color: var(--white);
  max-width: none;
  white-space: nowrap;
}

.ticket-map__head p {
  margin-top: 10px;
  max-width: 980px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
  line-height: 1.35;
}

.ticket-map__visual {
  display: block;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.18);
  background: rgba(5, 16, 24, 0.62);
  box-shadow: 10px 10px 0 rgba(5, 16, 24, 0.5);
}

.ticket-map__visual img {
  width: 100%;
  height: auto;
}

.beats-section {
  background: var(--purple-green-bg);
  color: var(--white);
  padding-top: 74px;
  padding-bottom: 82px;
}

.beats-section__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  max-width: 1080px;
  margin-bottom: 28px;
}

.beats-section__head .section__label {
  color: var(--orange-soft);
  font-size: clamp(2.4rem, 3.4vw, 3.05rem);
}

.beats-section__head .section__title {
  font-size: clamp(3rem, 5vw, 4.55rem);
}

.beats-section__head p {
  margin-top: 0;
  max-width: 960px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.4;
}

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

.beats-timeline article {
  min-height: 210px;
  padding: 24px;
  border: 3px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(150deg, rgba(255, 105, 31, 0.16), rgba(24, 146, 161, 0.08)),
    rgba(255, 255, 255, 0.035);
}

.beats-timeline article:nth-child(2) {
  transform: translateY(18px);
}

.beats-timeline span {
  display: block;
  font-family: 'Amithen', cursive;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--orange-soft);
  margin-bottom: 18px;
}

.beats-timeline strong {
  display: inline-flex;
  min-width: 78px;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  margin: 0 10px 10px 0;
  border: 2px solid rgba(255, 255, 255, 0.82);
  font-family: 'Teko', sans-serif;
  font-size: 3rem;
  line-height: 0.9;
  color: var(--white);
}

/* ---------- NEED TO KNOW ---------- */
.need-to-know {
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 105, 31, 0.56), transparent 34%),
    radial-gradient(circle at 88% 10%, rgba(24, 146, 161, 0.48), transparent 36%),
    radial-gradient(circle at 80% 72%, rgba(255, 105, 31, 0.34), transparent 30%),
    linear-gradient(145deg, #061820 0%, #0b2b35 32%, #0c4d52 58%, #161526 100%);
  color: var(--white);
  overflow: hidden;
}

.need-to-know .section__title {
  color: var(--white);
  text-shadow: 5px 5px 0 var(--ink);
}

.need-to-know .section__label {
  color: var(--orange-soft);
}

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

.info-card {
  min-height: 250px;
  padding: 26px;
  border: 3px solid var(--ink);
  background: var(--white);
  box-shadow: 6px 6px 0 var(--blue);
  color: var(--ink);
}

.info-card:nth-child(2n) {
  box-shadow: 6px 6px 0 var(--orange);
}

.info-card span {
  display: block;
  font-family: 'Amithen', cursive;
  font-size: 1.3rem;
  color: var(--blue-deep);
  margin-bottom: 20px;
}

.info-card h3 {
  font-family: 'Teko', sans-serif;
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
  color: var(--blue-deep);
  margin-bottom: 14px;
}

.info-card p {
  font-size: 0.95rem;
}

/* ---------- PARTNERS ---------- */
.partners {
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 105, 31, 0.56), transparent 34%),
    radial-gradient(circle at 88% 10%, rgba(24, 146, 161, 0.48), transparent 36%),
    radial-gradient(circle at 80% 72%, rgba(255, 105, 31, 0.34), transparent 30%),
    linear-gradient(145deg, #061820 0%, #0b2b35 32%, #0c4d52 58%, #161526 100%);
  padding-top: clamp(70px, 8vw, 96px);
  padding-bottom: clamp(70px, 8vw, 96px);
  scroll-margin-top: 104px;
  text-align: center;
}

.partners .section__inner {
  display: block;
}

.partners__intro {
  margin-bottom: clamp(34px, 4vw, 48px);
}

.partners__intro .section__label {
  display: block;
  color: var(--orange-soft);
  font-size: clamp(1.55rem, 2.4vw, 1.9rem);
  text-align: center;
}

.partners__intro .section__title {
  margin-top: 8px;
  font-size: clamp(3.9rem, 6vw, 5.25rem);
  line-height: 0.9;
  text-align: center;
}

.partners__tiers {
  display: grid;
  gap: 0;
  width: min(880px, 100%);
  margin: 0 auto;
}

.partners__tier {
  --tier-accent: var(--orange);
  display: block;
  margin-bottom: 0;
  padding: 0;
}

.partners__tier + .partners__tier {
  margin-top: clamp(30px, 4.8vw, 46px);
  padding-top: clamp(26px, 4vw, 36px);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.partners__tier-head {
  margin-bottom: clamp(18px, 2.4vw, 24px);
}

.partners__tier:last-child {
  border-bottom: 0;
}

.partners__tier--main {
  --tier-accent: var(--orange-soft);
}

.partners__tier--partner {
  --tier-accent: var(--blue);
}

.partners__tier-label {
  display: block;
  margin-bottom: 8px;
  color: var(--tier-accent);
  font-family: 'Amithen', cursive;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  line-height: 0.9;
  text-transform: lowercase;
}

.partners__tier-title {
  font-family: 'Teko', sans-serif;
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.partners__tier-title::before,
.partners__tier-title::after {
  content: "";
  display: block;
  width: 8px;
  height: 0.78em;
  background: var(--tier-accent);
  transform: skew(-12deg);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.32);
}

.partners__tier--main .partners__tier-title {
  font-size: clamp(2.25rem, 3.4vw, 3rem);
}

.partners__tier--partner .partners__tier-title::before,
.partners__tier--partner .partners__tier-title::after {
  box-shadow: 4px 4px 0 rgba(255, 105, 31, 0.35);
}

.partners__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: clamp(20px, 4vw, 54px);
  width: 100%;
  align-items: center;
  justify-items: center;
}

.partners__grid--single {
  grid-template-columns: minmax(0, min(520px, 100%));
  justify-content: center;
}

.partners__grid--partners {
  grid-template-columns: repeat(2, minmax(0, 280px));
  justify-content: center;
}

.partner {
  color: var(--white);
  padding: 8px 16px;
  font-family: 'Teko', sans-serif;
  font-size: 1.25rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  transition: transform 0.2s, color 0.2s;
}

.partner:hover {
  color: var(--orange);
  transform: translate(-3px, -3px);
}

.partner img {
  max-height: 70px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter 0.2s;
}

.partner--wide img {
  max-height: 78px;
}

.partners__tier--main .partner--wide img {
  max-height: 92px;
  max-width: min(380px, 100%);
}

.partner--beats img {
  max-height: 82px;
  max-width: min(270px, 100%);
}

.partner--placeholder {
  min-height: 96px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.035);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.45rem;
  letter-spacing: 0.02em;
}

.partner:hover img {
  filter: brightness(0) saturate(100%) invert(56%) sepia(91%) saturate(2117%) hue-rotate(343deg) brightness(101%) contrast(104%);
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--ink);
  padding: 28px 40px 24px;
  display: grid;
  grid-template-columns: minmax(320px, 420px) minmax(0, 1fr);
  align-items: center;
  column-gap: clamp(24px, 4vw, 58px);
  row-gap: 18px;
  text-align: left;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.footer--legal {
  border-top-color: rgba(255, 255, 255, 0.16);
}

.footer > * {
  position: relative;
  z-index: 1;
}

.footer__brand {
  grid-row: 1 / span 2;
  max-width: none;
  margin: 0;
  width: min(360px, 100%);
}

.footer__logo {
  width: 180px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 0;
}

.footer__logo img {
  width: 170px;
  max-width: 100%;
  height: auto;
}

.footer__tagline {
  font-family: 'Amithen', cursive;
  color: var(--orange-soft);
  font-size: 1.08rem;
  line-height: 1;
  margin-top: 4px;
  margin-bottom: 0;
  white-space: nowrap;
}

.footer__about {
  display: none;
  max-width: 780px;
  margin: 0 auto 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.96rem;
  line-height: 1.45;
}

.footer__connect {
  width: 100%;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  align-items: start;
  column-gap: 26px;
}

.footer__contact {
  margin-top: 0;
  display: flex;
  align-items: flex-start;
}

.footer__block--social {
  display: block;
}

.footer__block h2 {
  margin-bottom: 5px;
  font-family: 'Teko', sans-serif;
  font-size: 1.08rem;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--orange-soft);
}

.footer__email {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  color: var(--white);
  text-decoration: none;
  transition: color 0.18s, transform 0.18s;
}

.footer__email:hover {
  color: var(--orange);
  transform: translateY(-2px);
}

.footer__email span {
  font-family: 'Teko', sans-serif;
  font-size: 1.08rem;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--orange-soft);
}

.footer__email strong {
  font-size: 0.9rem;
  line-height: 1.1;
  font-weight: 800;
  color: currentColor;
}

.footer__social {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  margin: 0;
}

.footer__social a {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  border-radius: 999px;
  transition: color 0.18s, transform 0.18s, filter 0.18s;
}

.footer__social svg {
  width: 20px;
  height: 20px;
  display: block;
  fill: currentColor;
}

.footer__social a:hover {
  color: var(--orange);
  transform: translateY(-4px) scale(1.08);
  filter: drop-shadow(0 8px 14px rgba(255, 105, 31, 0.34));
}

.footer__nav {
  max-width: none;
  margin: 0;
  padding-top: 0;
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2.6vw, 38px);
  border-top: 0;
}

.footer__nav a {
  position: relative;
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  font-size: 0.92rem;
}

.footer__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.18s;
}

.footer__nav a:hover {
  color: var(--orange-soft);
}

.footer__nav a:hover::after {
  transform: scaleX(1);
}

.footer__bottom {
  display: flex;
  justify-content: flex-end;
  grid-column: 2;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: right;
}

/* ---------- COOKIE BANNER ---------- */
.cookie-banner {
  position: fixed;
  left: auto;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  width: min(430px, calc(100vw - 44px));
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 14px;
  padding: 18px;
  color: var(--white);
  overflow: hidden;
  border-radius: 8px;
  background: rgba(5, 13, 20, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 18px 54px rgba(0, 0, 0, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.cookie-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--berry), var(--blue));
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__copy strong {
  display: block;
  font-family: 'Teko', sans-serif;
  font-size: 1.45rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0;
}

.cookie-banner__copy p {
  margin-top: 6px;
  max-width: none;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  line-height: 1.45;
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  white-space: nowrap;
}

.cookie-banner__buttons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cookie-banner__link {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
  font-size: 0.82rem;
  text-decoration: none;
  text-transform: uppercase;
}

.cookie-banner__link:hover {
  color: var(--orange-soft);
}

.cookie-banner__button {
  min-height: 38px;
  padding: 9px 16px;
  font: 800 0.9rem 'Teko', sans-serif;
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
  background: var(--orange);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  box-shadow: 0 8px 18px rgba(255, 105, 31, 0.22);
  cursor: pointer;
  transition: transform 0.14s ease, box-shadow 0.14s ease, background 0.14s ease;
}

.cookie-banner__button:hover {
  transform: translateY(-1px);
  background: var(--orange-soft);
  box-shadow: 0 10px 24px rgba(255, 105, 31, 0.3);
}

.cookie-banner__button--secondary {
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.cookie-banner__button--secondary:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.scroll-top {
  position: fixed;
  right: clamp(18px, 2vw, 28px);
  bottom: clamp(18px, 2vw, 28px);
  z-index: 95;
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255, 105, 31, 0.18), rgba(24, 146, 161, 0.12)),
    rgba(5, 16, 24, 0.92);
  border: 2px solid var(--orange);
  border-radius: 0;
  box-shadow: 5px 5px 0 rgba(255, 105, 31, 0.76);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  visibility: hidden;
  transition: opacity 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.scroll-top__mark {
  position: relative;
  display: block;
  width: 24px;
  height: 28px;
}

.scroll-top__mark::before,
.scroll-top__mark::after {
  content: '';
  position: absolute;
  left: 50%;
}

.scroll-top__mark::before {
  top: 3px;
  width: 16px;
  height: 16px;
  border-top: 4px solid currentColor;
  border-left: 4px solid currentColor;
  transform: translateX(-50%) rotate(45deg);
}

.scroll-top__mark::after {
  top: 8px;
  width: 4px;
  height: 19px;
  background: currentColor;
  transform: translateX(-50%);
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.scroll-top:hover {
  color: var(--ink);
  background: var(--orange-soft);
  border-color: var(--ink);
  box-shadow: 7px 7px 0 rgba(5, 16, 24, 0.78);
  transform: translate(-2px, -2px);
}

.scroll-top:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 4px;
}

.cookie-banner:not([hidden]) + .scroll-top {
  display: none;
}

/* ---------- MOTION ---------- */
@keyframes hero-intro-rise {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes hero-logo-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes hero-video-drift {
  from { transform: scale(1.02) translate3d(-0.8%, -0.6%, 0); }
  to { transform: scale(1.07) translate3d(0.8%, 0.6%, 0); }
}

@keyframes soft-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.72; }
}

@keyframes line-grow {
  from {
    opacity: 0;
    transform: scaleX(0);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes partner-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@media (prefers-reduced-motion: no-preference) {
  .hero__video {
    animation: hero-video-drift 22s ease-in-out infinite alternate;
    will-change: transform;
  }

  .hero__brand {
    opacity: 0;
    animation:
      hero-intro-rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards,
      hero-logo-float 6s ease-in-out 1.1s infinite;
  }

  .hero__date {
    opacity: 0;
    animation: hero-intro-rise 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.25s forwards;
  }

  .hero__actions {
    opacity: 0;
    animation: hero-intro-rise 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.38s forwards;
  }

  .hero__countdown div {
    opacity: 0;
    animation: hero-intro-rise 0.56s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  .hero__countdown div:nth-child(1) { animation-delay: 0.48s; }
  .hero__countdown div:nth-child(2) { animation-delay: 0.56s; }
  .hero__countdown div:nth-child(3) { animation-delay: 0.64s; }
  .hero__countdown div:nth-child(4) { animation-delay: 0.72s; }

  .hero__cta svg,
  .pass-card a,
  .pass-location a,
  .footer__social a {
    transition-duration: 0.2s;
  }

  .hero__cta:hover svg {
    transform: translateX(5px);
  }

  .ticket-switch__countdown b,
  .price-rise-card__slot span {
    animation: soft-pulse 4.2s ease-in-out infinite;
  }

  .partner img {
    animation: partner-float 7s ease-in-out infinite;
  }

  .partners__tier:nth-child(2) .partner img {
    animation-delay: 0.7s;
  }

  .partners__tier:nth-child(3) .partner:nth-child(1) img {
    animation-delay: 1.1s;
  }

  .partners__tier:nth-child(3) .partner:nth-child(2) img {
    animation-delay: 1.6s;
  }

  .artist-detail-page .artist-detail__top,
  .artist-detail-page .artist-detail__image,
  .artist-detail-page .artist-detail__meta,
  .artist-detail-page .artist-detail__social,
  .artist-detail-page .artist-detail__copy .section__label,
  .artist-detail-page .artist-detail__copy h2,
  .artist-detail-page .artist-detail__copy p,
  .artist-detail-page .artist-detail__listen,
  .artist-detail-page .artist-detail__ticket,
  .artist-detail-page .artist-detail__more-label,
  .artist-detail-page .artist-detail__more h2,
  .artist-detail-page .artist-detail__more-card {
    opacity: 0;
    animation: hero-intro-rise 0.58s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  .artist-detail-page .artist-detail__top { animation-delay: 0.08s; }
  .artist-detail-page .artist-detail__image { animation-delay: 0.18s; }
  .artist-detail-page .artist-detail__meta { animation-delay: 0.28s; }
  .artist-detail-page .artist-detail__social { animation-delay: 0.36s; }
  .artist-detail-page .artist-detail__copy .section__label { animation-delay: 0.2s; }
  .artist-detail-page .artist-detail__copy h2 { animation-delay: 0.28s; }
  .artist-detail-page .artist-detail__copy p { animation-delay: 0.36s; }
  .artist-detail-page .artist-detail__listen { animation-delay: 0.44s; }
  .artist-detail-page .artist-detail__ticket { animation-delay: 0.5s; }
  .artist-detail-page .artist-detail__more-label { animation-delay: 0.56s; }
  .artist-detail-page .artist-detail__more h2 { animation-delay: 0.62s; }
  .artist-detail-page .artist-detail__more-card:nth-child(1) { animation-delay: 0.7s; }
  .artist-detail-page .artist-detail__more-card:nth-child(2) { animation-delay: 0.82s; }
  .artist-detail-page .artist-detail__more-card:nth-child(3) { animation-delay: 0.94s; }

  .artist-detail-page .artist-detail__line {
    opacity: 0;
    transform-origin: left center;
    animation: line-grow 0.64s cubic-bezier(0.22, 1, 0.36, 1) 0.22s forwards;
  }

  .artist-detail-page .artist-detail__image img,
  .artist-detail-page .artist-detail__more-image img {
    transition: transform 0.3s ease, filter 0.3s ease;
  }

  .artist-detail-page .artist-detail__image:hover img {
    transform: scale(1.025);
    filter: saturate(1.06) contrast(1.04);
  }

  .artist-detail-page .artist-detail__more-card:hover .artist-detail__more-image img {
    transform: scale(1.06);
  }

  .artist-detail-page .artist-detail__more-card:hover .artist-detail__more-arrow {
    transform: translateX(3px);
  }

  .reveal {
    opacity: 0;
    transform: translateY(26px);
    transition:
      opacity 0.62s ease,
      transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
  }

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

  .artist-tile.reveal {
    transform: translateY(32px) scale(0.985);
    transition:
      opacity 0.44s ease,
      transform 0.44s cubic-bezier(0.22, 1, 0.36, 1),
      border-color 0.14s ease,
      box-shadow 0.14s ease;
  }

  .info-card.reveal,
  .partner.reveal {
    transform: translateY(22px) scale(0.985);
  }

  .artist-tile.reveal.is-visible,
  .info-card.reveal.is-visible,
  .partner.reveal.is-visible {
    transform: translateY(0) scale(1);
  }

  .artist-tile.reveal.is-visible:hover {
    transform: translateY(-6px) scale(1.015);
  }

  .info-card.reveal.is-visible:hover,
  .partner.reveal.is-visible:hover {
    transform: translateY(-3px) scale(1);
  }
}

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

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

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
  .hero__title { font-size: 7.8rem; }
  .section__title { font-size: 5.4rem; }
  .artist-tile-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .beats-timeline { grid-template-columns: 1fr; }
  .beats-timeline article:nth-child(2) { transform: none; }
  .info-grid,
  .pass-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .passes__layout { grid-template-columns: 1fr; }
  .artist-detail__grid { grid-template-columns: minmax(260px, 380px) minmax(0, 1fr); }
  .artist-detail__more-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .partners .section__inner {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .partners__intro {
    position: static;
    padding-left: 0;
    text-align: center;
  }

  .partners__intro .section__label,
  .partners__intro .section__title {
    text-align: center;
  }

  .partners__intro .section__title {
    font-size: clamp(3.8rem, 7vw, 5.1rem);
  }

  .partners__tiers {
    width: min(820px, 100%);
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 10px 18px;
  }

  .nav::after {
    display: none;
  }

  .nav__logo img {
    height: 34px;
    width: auto;
    max-width: 122px;
  }

  .nav__cta {
    padding: 8px 16px;
    font-size: 0.85rem;
  }

  .hero {
    min-height: 635px;
    height: calc(100svh - 164px);
    max-height: 680px;
    align-items: stretch;
  }

  .hero__title {
    font-size: 5.2rem;
  }

  .hero__brand {
    max-width: 300px;
    margin-bottom: 30px;
  }

  .hero__content {
    width: 100%;
    min-height: 100%;
    justify-content: flex-start;
    gap: 0;
    padding: calc(56px + clamp(30px, 5svh, 42px)) 24px clamp(30px, 5svh, 42px);
    transform: none;
  }

  .hero__date {
    width: min(400px, 92vw);
    height: 104px;
    margin: auto auto 22px;
  }

  .hero__date-days {
    font-size: 6.35rem;
    transform: translateY(25px);
  }

  .hero__date-month {
    top: 57%;
    font-size: 3.5rem;
  }

  .hero__cta {
    width: min(100%, 340px);
    font-size: 1.42rem;
    padding: 17px 26px;
  }

  .hero__actions {
    margin-top: 0;
    margin-bottom: 24px;
  }

  .hero__countdown {
    gap: 24px;
    margin-top: 0;
  }

  .hero__countdown strong {
    font-size: 1.72rem;
  }

  .artist-tile-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .artist-tile {
    border-radius: 13px;
    box-shadow:
      inset 0 0 0 4px rgba(255, 255, 255, 0.05),
      0 0 0 1px rgba(0, 0, 0, 0.78),
      0 12px 28px rgba(0, 0, 0, 0.34);
  }

  .artist-tile::after {
    left: 6px;
    right: 6px;
    bottom: 6px;
    border-radius: 0 0 9px 9px;
  }

  .artist-tile__image {
    inset: 6px;
    border-radius: 9px;
  }

  .artist-tile--mystery .artist-tile__image::before {
    top: 17%;
    width: 28%;
    height: 28%;
    opacity: 0.3;
    filter: blur(1.4px);
  }

  .artist-tile--mystery .artist-tile__image::after {
    top: 52%;
    width: 72%;
    height: 72%;
    border-radius: 46% 46% 24px 24px;
    opacity: 0.24;
    filter: blur(2px);
  }

  .artist-tile--mystery .artist-tile__symbol {
    width: 50%;
    transform: translateY(-10%);
  }

  .lineup-note {
    padding: 16px;
  }

  .pass-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .passes {
    min-height: auto;
    padding: 62px 22px;
  }

  .passes .section__head {
    margin-bottom: 14px;
  }

  .passes .section__title {
    font-size: 3.5rem;
  }

  .passes__layout {
    gap: 28px;
  }

  .ticket-switch {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    padding: 16px;
  }

  .ticket-switch strong {
    font-size: 2.2rem;
  }

  .ticket-switch__countdown {
    width: 100%;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    justify-items: stretch;
    text-align: center;
  }

  .ticket-switch__countdown b {
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum" 1;
    font-size: 2.15rem;
  }

  .passes__layout .pass-card {
    min-height: auto;
  }

  .passes__layout .pass-card {
    padding: 22px;
  }

  .pass-card__main {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .pass-card__amount {
    text-align: left;
    min-width: 0;
  }

  .pass-card h3 {
    font-size: 2.45rem;
  }

  .pass-card__price {
    font-size: 3.8rem;
  }

  .ticket-map {
    padding-top: 24px;
  }

  .ticket-map__head {
    margin-bottom: 16px;
  }

  .ticket-map__head h3 {
    font-size: clamp(1.5rem, 7.7vw, 3.25rem);
    line-height: 1.02;
  }

  .ticket-map__head p {
    font-size: 0.95rem;
  }

  .ticket-map__visual {
    box-shadow: 6px 6px 0 rgba(5, 16, 24, 0.52);
  }

  .beats-section {
    padding-top: 64px;
    padding-bottom: 72px;
  }

  .beats-section__head .section__title {
    font-size: 2.55rem;
  }

  .beats-section__head .section__label {
    font-size: 2.25rem;
  }

  .beats-timeline {
    gap: 18px;
    justify-items: stretch;
  }

  .beats-timeline article {
    width: min(100%, 322px);
    min-height: 0;
    padding: 20px;
    text-align: center;
  }

  .beats-timeline span {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }

  .beats-timeline strong {
    min-width: 60px;
    min-height: 52px;
    font-size: 2.4rem;
    margin: 0 5px 8px;
  }

  .beats-timeline article:nth-child(odd),
  .info-card:nth-child(odd) {
    justify-self: start;
  }

  .beats-timeline article:nth-child(even),
  .info-card:nth-child(even) {
    justify-self: end;
  }

  .info-grid {
    gap: 22px;
    justify-items: stretch;
  }

  .info-card {
    width: min(100%, 322px);
  }

  .artist-tile {
    min-height: 0;
  }

  .section {
    padding: 82px 22px;
  }

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

  .section__title {
    font-size: 3.7rem;
  }

  .partners {
    text-align: center;
  }

  .partners .section__inner {
    display: block;
  }

  .partners__intro {
    position: static;
    margin-bottom: 30px;
  }

  .partners__intro .section__label {
    text-align: center;
  }

  .partners__intro .section__title {
    font-size: clamp(2.75rem, 12.2vw, 4.1rem);
    line-height: 0.88;
  }

  .partners__tiers {
    gap: 0;
    border-top: 0;
    border-bottom: 0;
  }

  .partners__tier {
    display: block;
    padding: 0;
  }

  .partners__tier + .partners__tier {
    margin-top: 34px;
    padding-top: 30px;
  }

  .partners__tier-label,
  .partners__tier-title {
    text-align: center;
  }

  .partners__tier-label {
    font-size: 1.28rem;
    margin-bottom: 7px;
  }

  .partners__tier-title {
    margin-bottom: 0;
    font-size: clamp(1.9rem, 9vw, 2.35rem);
    gap: 10px;
  }

  .partners__tier--main .partners__tier-title {
    font-size: clamp(2.1rem, 10vw, 2.65rem);
  }

  .partners__tier-title::before,
  .partners__tier-title::after {
    width: 6px;
    height: 0.72em;
  }

  .partners__grid,
  .partners__grid--single,
  .partners__grid--partners {
    width: min(340px, 100%);
    grid-template-columns: 1fr;
    margin: 0 auto;
  }

  .partner {
    min-height: 0;
    padding: 8px 12px;
  }

  .partner img {
    max-height: 64px;
  }

  .partner--wide img {
    max-height: 74px;
  }

  .partners__tier--main .partner--wide img {
    max-height: 84px;
  }

  .partner--beats img {
    max-height: 74px;
    max-width: min(250px, 100%);
  }

  .artists {
    padding-top: 60px;
  }

  .legal-main {
    padding: 92px 18px 58px;
  }

  .legal-doc__header {
    padding: 22px 18px;
    border-left-width: 5px;
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.08),
      5px 5px 0 rgba(5, 16, 24, 0.8);
  }

  .legal-doc h1 {
    font-size: clamp(2.9rem, 15vw, 4.3rem);
    line-height: 0.9;
    text-shadow: 3px 3px 0 var(--blue-deep), 5px 5px 0 rgba(2, 6, 10, 0.92);
  }

  .legal-doc__notice {
    padding: 12px 13px;
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .legal-doc section {
    padding: 22px 0;
  }

  .legal-doc h2 {
    font-size: clamp(1.7rem, 8vw, 2.35rem);
  }

  .legal-doc h3 {
    font-size: clamp(1.35rem, 6.8vw, 1.8rem);
  }

  .legal-doc p,
  .legal-doc li {
    font-size: 0.96rem;
    line-height: 1.65;
  }

  .legal-doc__downloads {
    display: grid;
  }

  .artist-detail-main {
    padding: 94px 22px 72px;
  }

  .artist-detail__top {
    grid-template-columns: 46px 1fr 46px;
  }

  .artist-detail__back {
    width: 40px;
    height: 40px;
  }

  .artist-detail__line {
    margin: 30px 0 36px;
  }

  .artist-detail__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .artist-detail__image {
    max-width: 430px;
    margin: 0 auto;
  }

  .artist-detail__copy {
    padding-top: 0;
  }

  .artist-detail__more {
    margin-top: 46px;
    padding-top: 34px;
  }

  .artist-detail__more-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .artist-detail__more h2 {
    font-size: 3.2rem;
  }

  .artist-detail__more-card {
    grid-template-columns: 68px minmax(0, 1fr) 32px;
    min-height: 88px;
  }

  .artist-detail__more-image {
    width: 68px;
  }

  .artist-detail__listen-card {
    grid-template-columns: 82px minmax(0, 1fr) 48px;
    gap: 14px;
    min-height: 122px;
    padding: 14px;
    border-radius: 14px;
  }

  .artist-detail__listen-cover {
    width: 82px;
    padding: 7px;
  }

  .artist-detail__listen-copy strong {
    font-size: 2.15rem;
  }

  .artist-detail__listen-brand {
    top: 14px;
    right: 14px;
    width: 30px;
    height: 30px;
  }

  .artist-detail__listen-play {
    width: 48px;
  }

  .footer {
    padding-top: 30px;
    padding-bottom: 26px;
    padding-left: 22px;
    padding-right: 22px;
    display: block;
    text-align: center;
  }

  .footer__brand {
    margin: 0 auto 16px;
    width: auto;
    max-width: 100%;
    display: block;
  }

  .footer__logo {
    width: 100%;
    justify-content: center;
  }

  .footer__logo img {
    width: min(190px, 72vw);
  }

  .footer__tagline {
    font-size: 1.12rem;
    width: 100%;
    white-space: normal;
  }

  .footer__connect {
    width: min(280px, 100%);
    margin: 16px auto 0;
    padding-top: 14px;
    grid-template-columns: 1fr;
    justify-items: center;
    row-gap: 14px;
  }

  .footer__email {
    align-items: center;
    margin-bottom: 0;
  }

  .footer__contact {
    margin: 0 auto 18px;
    justify-content: center;
    text-align: center;
  }

  .footer__block--social {
    justify-content: center;
  }

  .footer__email span,
  .footer__block h2 {
    font-size: 1.18rem;
    margin-bottom: 7px;
  }

  .footer__social {
    justify-content: center;
    margin-bottom: 0;
  }

  .footer__nav {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 22px;
    margin-bottom: 12px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .footer__nav a {
    font-size: 0.86rem;
  }

  .footer__bottom {
    justify-content: center;
    text-align: center;
  }

  .cookie-banner {
    left: 18px;
    right: 18px;
    bottom: 18px;
    width: auto;
    padding: 16px;
  }

  .cookie-banner__actions {
    width: 100%;
    justify-content: space-between;
  }

  .cookie-banner__buttons {
    gap: 8px;
  }

}

@media (max-width: 480px) {
  .hero__title {
    font-size: 4rem;
    text-shadow: 4px 4px 0 var(--blue-deep), 7px 7px 0 var(--ink);
  }

  .hero__brand {
    max-width: 270px;
    margin-bottom: 28px;
  }

  .hero__brand img {
    filter: none;
  }

  .hero__title em {
    transform: rotate(-4deg) translateY(-6px);
  }

  .hero__date {
    width: min(352px, 92vw);
    height: 92px;
    margin: auto auto 20px;
  }

  .hero__date-days {
    font-size: 5.65rem;
    transform: translateY(23px);
  }

  .hero__date-month {
    top: 56%;
    font-size: 3.04rem;
  }

  .hero__countdown {
    gap: 18px;
    margin-top: 0;
  }

  .hero__countdown div {
    min-width: 44px;
  }

  .hero__countdown strong {
    font-size: 1.42rem;
  }

  .hero__countdown span {
    font-size: 0.68rem;
  }

  .partners__grid--partners {
    grid-template-columns: 1fr;
  }

  .artist-tile {
    border-radius: 12px;
    min-height: 0;
    box-shadow:
      inset 0 0 0 3px rgba(255, 255, 255, 0.05),
      0 0 0 1px rgba(0, 0, 0, 0.76),
      0 10px 24px rgba(0, 0, 0, 0.32);
  }

  .artist-tile::after {
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 0 0 8px 8px;
  }

  .artist-tile__image {
    inset: 5px;
    border-radius: 8px;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    padding: 14px;
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.5);
  }

  .cookie-banner__copy strong {
    font-size: 1.32rem;
  }

  .cookie-banner__copy p {
    font-size: 0.84rem;
    line-height: 1.4;
  }

  .cookie-banner__button {
    min-height: 40px;
    padding: 9px 12px;
  }

  .scroll-top {
    right: 4px;
    bottom: 6px;
    width: 36px;
    height: 36px;
    box-shadow: 3px 3px 0 rgba(255, 105, 31, 0.76);
  }

  .scroll-top__mark {
    width: 16px;
    height: 19px;
  }

  .scroll-top__mark::before {
    width: 10px;
    height: 10px;
    border-width: 3px;
  }

  .scroll-top__mark::after {
    top: 6px;
    width: 3px;
    height: 13px;
  }

  .artist-detail h1 {
    font-size: 3.7rem;
  }

  .artist-detail-page--metzker .artist-detail h1 {
    white-space: normal;
    font-size: 3.7rem;
  }

  .artist-detail-page--bozont .artist-detail h1 {
    font-size: 3.1rem;
  }

  .artist-detail__more h2 {
    font-size: 2.75rem;
  }

  .artist-detail__top {
    grid-template-columns: 42px 1fr 42px;
  }

  .artist-detail__meta div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .artist-detail__listen-label {
    font-size: 1.65rem;
  }

  .artist-detail__listen-card {
    grid-template-columns: 70px minmax(0, 1fr);
    min-height: 110px;
    padding: 13px 60px 13px 13px;
  }

  .artist-detail__listen-cover {
    width: 70px;
    padding: 6px;
  }

  .artist-detail__listen-copy span {
    min-height: 22px;
    padding: 4px 8px;
    font-size: 0.74rem;
  }

  .artist-detail__listen-copy strong {
    font-size: 1.85rem;
  }

  .artist-detail__listen-copy em {
    margin-top: 6px;
    font-size: 0.88rem;
    line-height: 1.15;
  }

  .artist-detail__listen-brand {
    width: 28px;
    height: 28px;
  }

  .artist-detail__listen-play {
    position: absolute;
    right: 13px;
    bottom: 13px;
    width: 40px;
  }

  .artist-detail__listen-play svg {
    width: 24px;
    height: 24px;
  }

}

@media (max-width: 360px) {
  .artist-tile-grid {
    grid-template-columns: 1fr;
  }
}
