/* ── Type system (Direction A: Flyer / Brutalist) — self-hosted ─────── */
@font-face {
  font-family: 'Archivo Expanded';
  src: url('./assets/fonts/archivo-var.woff2') format('woff2');
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-display: swap;
}
@font-face { font-family: 'Space Grotesk'; src: url('./assets/fonts/space-grotesk-400.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Space Grotesk'; src: url('./assets/fonts/space-grotesk-500.woff2') format('woff2'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'Space Grotesk'; src: url('./assets/fonts/space-grotesk-700.woff2') format('woff2'); font-weight: 700; font-display: swap; }
@font-face { font-family: 'Space Mono'; src: url('./assets/fonts/space-mono-400.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Space Mono'; src: url('./assets/fonts/space-mono-700.woff2') format('woff2'); font-weight: 700; font-display: swap; }

:root {
  --bg: #000;
  --panel: #020902;
  --green: #9b5de5;
  --green-hot: #a855f7;
  --green-soft: rgba(155, 93, 229, 0.3);
  --purple: #9b5de5;
  --purple-hot: #a855f7;
  --purple-deep: #7c3aed;
  --pink: #f72585;
  --text: #fff;
  --muted: #d1d5dc;
  --dim: #99a1af;
  --line: rgba(155, 93, 229, 0.28);
  --max: 1280px;
  /* fonts */
  --font-body: 'Space Grotesk', 'Helvetica Neue', Arial, sans-serif;
  --font-display: 'Archivo Expanded', 'Space Grotesk', sans-serif;
  --font-mono: 'Space Mono', ui-monospace, 'SFMono-Regular', monospace;
  /* reclaimed signature accent (matches the hero glow); purple is now secondary */
  --accent: #32e07a;
  --accent-line: rgba(50, 224, 122, 0.42);
  --accent-soft: rgba(50, 224, 122, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color: var(--text);
  color-scheme: dark;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

/* Display face (expanded grotesque) for the big statement type */
.preview-panel h2,
.split-heading,
.recap-intro h1,
.event-hero h1,
.artist-hero h1,
.current-artist-intro h1,
.previous-events h2,
.lineup-section h2,
.recap-lineup h2,
.drinks-section h2,
.tickets-strip h2,
.ticket-cta h2,
.about-grid h2,
.event-tile__meta strong,
.next-teaser time,
.mobile-next-hero-content h1,
.mobile-recap-info h1,
.mobile-artist-title h1,
.mobile-home-next-card h2,
.mobile-home-tickets h2,
.mobile-home-about h2,
.mobile-home-crew h2,
.mobile-home-events h2,
.mobile-next-lineup h2,
.mobile-drinks h2,
.mobile-next-tickets h2,
.mobile-home-event__meta strong,
.mobile-next-teaser time {
  font-family: var(--font-display);
  font-stretch: 125%;
  letter-spacing: -0.01em;
}

/* Monospace for technical labels / metadata / eyebrows */
.section-kicker,
.mobile-section-label,
.recap-date,
.recap-eyebrow,
.lineup-note,
.event-detail-card,
.set-card,
.drink-card__image span,
.mobile-drink-card span,
.recap-pager span,
.mobile-recap-info p,
.mobile-recap-credit,
.mobile-artist-bio aside span,
.mobile-next-hero-content p,
.next-teaser__eyebrow,
.next-teaser__copy,
.event-teaser__eyebrow,
.event-teaser__copy,
.event-tile__meta small,
.mobile-home-event__meta small,
.details-status,
.site-nav__status {
  font-family: var(--font-mono);
}

body.no-scroll {
  overflow: hidden;
}

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

button {
  color: inherit;
  font: inherit;
}

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

img[style*="--media-position"] {
  object-position: var(--media-position);
}

#app {
  min-height: 100vh;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(155, 93, 229, 0.04), transparent 18rem),
    var(--bg);
}

.section-border {
  border-bottom: 1px solid var(--line);
}

.button {
  display: inline-flex;
  min-height: 60px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--green);
  border-radius: 10px;
  padding: 0 34px;
  background: rgba(0, 0, 0, 0.1);
  color: #a855f7;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 0 34px rgba(168, 85, 247, 0.55);
}

.button--solid {
  background: var(--green);
  color: #000;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 28px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.5));
  backdrop-filter: blur(14px);
  transition: padding 220ms ease, background 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  padding: 10px 28px;
  background: rgba(0, 0, 0, 0.9);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.site-nav {
  display: flex;
  width: min(var(--max), 100%);
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #fff;
}

.site-brand__mark {
  display: inline-block;
  width: 26px;
  height: 26px;
  background-color: var(--accent);
  -webkit-mask-image: url('./assets/instinct-mark.svg');
  mask-image: url('./assets/instinct-mark.svg');
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  flex: none;
  transition: width 220ms ease, height 220ms ease, background-color 220ms ease;
}

.site-header.is-scrolled .site-brand__mark {
  width: 21px;
  height: 21px;
}

.site-brand__name {
  font-family: var(--font-display);
  font-stretch: 125%;
  font-weight: 800;
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  transition: font-size 220ms ease;
}

.site-header.is-scrolled .site-brand__name {
  font-size: 14px;
}

.site-nav__toggle {
  display: none;
  align-items: center;
  gap: 8px;
  background: none;
  border: 0;
  padding: 6px 0;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav__links a,
.site-nav-menu > summary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 0;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: color 160ms ease;
}

.site-nav__links a::before,
.site-nav-menu > summary::before {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1.5px;
  background: var(--accent);
  transition: right 220ms ease;
}

.site-nav__links a:hover,
.site-nav__links a:focus-visible,
.site-nav__links a.is-active,
.site-nav-menu > summary:hover,
.site-nav-menu > summary:focus-visible,
.site-nav-menu.is-active > summary,
.site-brand.is-active .site-brand__name {
  color: #fff;
}

.site-nav__links a:hover::before,
.site-nav__links a:focus-visible::before,
.site-nav__links a.is-active::before,
.site-nav-menu > summary:hover::before,
.site-nav-menu.is-active > summary::before {
  right: 0;
}

.site-nav__links a.is-cta {
  color: var(--accent);
}

.site-nav__status {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--accent-line);
  border-radius: 999px;
  padding: 7px 11px;
  color: var(--accent);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav-tickets > summary {
  border: 1px solid var(--accent-line);
  border-radius: 999px;
  padding: 7px 11px;
  color: var(--accent);
  font-size: 10px;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.site-nav-tickets > summary::before {
  display: none;
}

.site-nav-tickets > div {
  min-width: 290px;
}

.site-nav-menu {
  position: relative;
}

.site-nav-menu > summary {
  list-style: none;
}

.site-nav-menu > summary::-webkit-details-marker {
  display: none;
}

.site-nav-menu > summary::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 4px solid currentColor;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  opacity: 0.6;
  transition: transform 180ms ease;
}

.site-nav-menu[open] > summary::after {
  transform: rotate(180deg);
}

.site-nav-menu > div {
  position: absolute;
  top: calc(100% + 16px);
  right: 0;
  min-width: 196px;
  display: grid;
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 7px;
  background: rgba(0, 0, 0, 0.97);
  box-shadow: 0 26px 56px rgba(0, 0, 0, 0.7);
}

.site-nav-menu > div a {
  padding: 9px 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  transition: color 140ms ease, background 140ms ease;
}

.site-nav-menu > div a:hover,
.site-nav-menu > div a:focus-visible,
.site-nav-menu > div a.is-active {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.05);
}

.recap-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 24px 0 0;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.recap-nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(155, 93, 229, 0.4);
  border-radius: 999px;
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.72);
  color: #d1d5dc;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.recap-nav a:hover,
.recap-nav a:focus-visible,
.recap-nav a.is-active {
  border-color: var(--green);
  background: rgba(155, 93, 229, 0.14);
  color: var(--green);
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #a855f7;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  letter-spacing: 4px;
}

.section-kicker span {
  display: block;
  width: 64px;
  height: 1px;
  background: var(--green);
}

.section-kicker--center {
  justify-content: center;
}

.green-line,
.green-rule {
  display: block;
  width: 96px;
  height: 4px;
  background: var(--green);
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.8);
}

.home-hero {
  position: relative;
  min-height: 919px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #000;
  isolation: isolate;
}

.home-hero__image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.home-hero::after,
.preview-panel::after,
.tickets-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), #000 100%);
}

.home-hero__tagline {
  position: absolute;
  left: 50%;
  bottom: clamp(28px, 4vh, 48px);
  z-index: 1;
  width: min(760px, calc(100% - 48px));
  transform: translateX(-50%);
  border: 1px solid rgba(155, 93, 229, 0.24);
  border-radius: 8px;
  padding: clamp(12px, 1.7vw, 18px) clamp(16px, 3vw, 30px);
  background:
    linear-gradient(180deg, rgba(8, 3, 16, 0.62), rgba(0, 0, 0, 0.38)),
    rgba(0, 0, 0, 0.44);
  color: var(--muted);
  font-size: clamp(13px, 1.1vw, 16px);
  line-height: 1.5;
  text-align: center;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.8);
  box-shadow: 0 0 32px rgba(155, 93, 229, 0.1);
  backdrop-filter: blur(10px);
}

.preview-panel {
  position: relative;
  min-height: 763px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  isolation: isolate;
}

.preview-panel__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(40px, 6vw, 96px);
  width: min(1100px, 100%);
}

.preview-panel__media {
  flex: none;
  aspect-ratio: 9 / 16;
  height: clamp(440px, 62vh, 600px);
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(155, 93, 229, 0.35);
  background: #050108;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}

.preview-panel img,
.preview-panel video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.preview-panel h2 {
  flex: 0 1 auto;
  margin: 0;
  color: #fff;
  font-size: clamp(72px, 7.5vw, 124px);
  line-height: 0.95;
  font-weight: 600;
  text-transform: uppercase;
}

.preview-panel h2 span {
  display: block;
}

.preview-panel h2 span,
.split-heading span,
.tickets-strip h2 span,
.ticket-cta h2 span {
  color: var(--green);
}

.next-card {
  position: relative;
  min-height: 930px;
  display: grid;
  place-items: center;
  padding: 96px 24px;
  background: #000;
  text-align: center;
}

.next-card::before {
  content: "";
  position: absolute;
  inset: 12% auto auto 50%;
  width: 520px;
  height: 520px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(155, 93, 229, 0.05);
  filter: blur(64px);
}

.next-card__poster {
  width: min(544px, 70vw);
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.8));
}

.next-card__poster img {
  width: 100%;
  height: auto;
}

.split-heading {
  position: absolute;
  top: 360px;
  left: 50%;
  transform: translateX(-50%);
  width: min(720px, 90vw);
  color: #fff;
  font-size: 96px;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
}

.next-card p {
  margin: 18px 0 0;
  color: #fff;
  font-size: 24px;
  text-transform: uppercase;
}

.next-card--poster {
  gap: 20px;
  min-height: auto;
}

.next-card__events,
.next-card__event {
  width: 100%;
  display: grid;
  justify-items: center;
}

.next-card__events {
  gap: 108px;
}

.next-card__event {
  gap: 20px;
}

.next-card--poster::before {
  inset: 30% auto auto 50%;
  background: rgba(229, 241, 9, 0.08);
}

.next-card--poster .next-card__poster {
  position: relative;
  z-index: 1;
  display: block;
  border: 1px solid rgba(229, 241, 9, 0.45);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.75);
  transition: transform 300ms ease, border-color 300ms ease;
}

.next-card--poster .next-card__poster:hover,
.next-card--poster .next-card__poster:focus-visible {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.next-card--poster .next-card__poster:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 5px;
}

.next-card--poster h2 {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 12px 0 0;
  color: #fff;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.95;
  text-transform: uppercase;
}

.next-card--poster .next-card__eyebrow {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.3em;
}

.next-card--teaser {
  min-height: 860px;
}

.next-teaser {
  position: relative;
  width: min(1040px, calc(100% - 48px));
  min-height: 640px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(155, 93, 229, 0.38);
  border-radius: 18px;
  background: #020102;
  isolation: isolate;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.75);
}

.next-teaser::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 35%, rgba(155, 93, 229, 0.26), transparent 34%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.16), #000 92%);
}

.next-teaser > img {
  position: absolute;
  inset: -12%;
  z-index: -2;
  width: 124%;
  height: 124%;
  object-fit: cover;
  opacity: 0.64;
  filter: contrast(1.12);
  transition: transform 500ms ease, opacity 300ms ease;
}

.next-teaser:hover > img,
.next-teaser:focus-visible > img {
  transform: scale(1.025);
  opacity: 0.76;
}

.next-teaser:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 5px;
}

.next-teaser__glow {
  position: absolute;
  width: min(70vw, 720px);
  height: min(70vw, 720px);
  border-radius: 50%;
  background: rgba(50, 224, 122, 0.055);
  filter: blur(70px);
}

.next-teaser__content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 22px;
  padding: 48px 24px;
  text-transform: uppercase;
}

.next-teaser__eyebrow {
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 0.3em;
}

.next-teaser time {
  color: #fff;
  font-size: clamp(64px, 7.5vw, 108px);
  font-weight: 900;
  line-height: 0.9;
  white-space: nowrap;
  text-shadow: 0 0 52px rgba(155, 93, 229, 0.48);
}

.next-teaser__copy {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  letter-spacing: 0.2em;
}

.about-section {
  position: relative;
  padding: 96px 24px 118px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), #000 18%);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 576px);
  gap: 64px;
  width: min(var(--max), calc(100% - 48px));
  margin: 48px auto 0;
}

.about-section > .section-kicker {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.about-grid h2 {
  margin: 0;
  font-size: 86px;
  line-height: 1;
  font-weight: 500;
}

.about-grid p {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 29px;
}

.about-grid figure {
  margin: 0;
  align-self: start;
}

.about-grid figure img {
  width: 100%;
  height: clamp(520px, 42vw, 640px);
  object-fit: cover;
  object-position: center 44%;
  border: 2px solid var(--green);
  border-radius: 10px;
  box-shadow: 0 0 0 24px rgba(155, 93, 229, 0.08);
}

.about-grid figcaption {
  margin-top: 18px;
  color: #a855f7;
  font-size: 16px;
  text-transform: uppercase;
}

.previous-events {
  position: relative;
  padding: 120px 24px 110px;
  text-align: center;
  background: #000;
}

.previous-events h2,
.lineup-section h2,
.recap-lineup h2,
.drinks-section h2 {
  margin: 0 0 64px;
  color: #a855f7;
  font-size: 36px;
  line-height: 40px;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
}

.event-tiles {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
  width: min(1248px, calc(100% - 48px));
  margin: 0 auto;
}

.event-tile,
.lineup-card {
  position: relative;
  overflow: hidden;
  border: 2px solid var(--green);
  border-radius: 10px;
  background: #071207;
}

.event-tile {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.event-tile img,
.lineup-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

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

.event-tile__meta {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  width: 100%;
  min-width: 0;
  display: grid;
  justify-items: start;
  gap: 5px;
  overflow: hidden;
  padding: 24px 18px 18px;
  color: #fff;
  text-align: left;
}

.event-tile__meta strong {
  display: block;
  width: 100%;
  max-width: 100%;
  font-size: clamp(16px, 1.3vw, 20px);
  font-weight: 900;
  line-height: 0.98;
  overflow-wrap: break-word;
  text-transform: uppercase;
}

.event-tile__meta small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 9px;
  line-height: 1.25;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-tile:hover img,
.lineup-card:hover img {
  transform: scale(1.04);
}

.tickets-strip {
  position: relative;
  min-height: 771px;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
  isolation: isolate;
}

.tickets-strip > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.tickets-strip h2,
.ticket-cta h2 {
  margin: 0 0 24px;
  color: #fff;
  font-size: 36px;
  line-height: 40px;
  font-weight: 500;
  text-transform: uppercase;
}

.tickets-strip p,
.ticket-cta p {
  margin: 0 0 32px;
  color: var(--dim);
  font-size: 16px;
}

.tickets-strip__details {
  display: grid;
  gap: 8px;
  margin: 0 0 32px;
}

.tickets-strip__details p {
  margin: 0;
}

.tickets-strip__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.details-status {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent-line);
  border-radius: 999px;
  padding: 0 24px;
  background: rgba(0, 0, 0, 0.5);
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.details-status:hover,
.next-event-page__tickets:hover,
.mobile-home-ticket-status:hover,
.mobile-next-event__tickets:hover,
.details-status:focus-visible,
.next-event-page__tickets:focus-visible,
.mobile-home-ticket-status:focus-visible,
.mobile-next-event__tickets:focus-visible {
  border-color: var(--accent);
  color: #fff;
}

.details-status:focus-visible,
.next-event-page__tickets:focus-visible,
.mobile-home-ticket-status:focus-visible,
.mobile-next-event__tickets:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.event-hero {
  position: relative;
  min-height: 951px;
  overflow: hidden;
  display: grid;
  place-items: center;
  text-align: center;
}

.event-hero > img {
  position: absolute;
  inset: -25% -10%;
  width: 120%;
  height: 150%;
  object-fit: cover;
  opacity: 0.38;
}

.event-hero__shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 72%, rgba(155, 93, 229, 0.22), transparent 23rem),
    radial-gradient(circle at 86% 25%, rgba(155, 93, 229, 0.16), transparent 24rem),
    linear-gradient(180deg, #000, transparent 45%, #000);
}

.event-hero__content {
  position: relative;
  z-index: 1;
}

.event-hero h1 {
  margin: 0;
  font-size: 128px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 0 40px rgba(155, 93, 229, 0.5);
}

.event-hero .green-rule {
  margin: 28px auto 48px;
  width: 128px;
}

.event-detail-card {
  display: grid;
  gap: 18px;
  min-width: 337px;
  border: 1px solid rgba(155, 93, 229, 0.2);
  border-radius: 16px;
  padding: 32px 48px;
  background: rgba(0, 0, 0, 0.22);
}

.event-detail-card strong {
  color: #a855f7;
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
}

.event-detail-card span {
  color: var(--muted);
  font-size: 18px;
}

.event-teaser__eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.event-teaser__copy {
  margin: -18px 0 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.event-detail-card--soon {
  max-width: 520px;
  margin-right: auto;
  margin-left: auto;
}

.event-detail-card--soon strong {
  color: var(--accent);
  font-size: 18px;
}

.next-event-page {
  display: grid;
  grid-template-columns: minmax(320px, 560px) minmax(360px, 1fr);
  gap: clamp(56px, 8vw, 120px);
  align-items: center;
  min-height: 951px;
  padding: 96px max(48px, calc((100vw - 1240px) / 2));
  background:
    radial-gradient(circle at 18% 42%, rgba(229, 241, 9, 0.1), transparent 28rem),
    radial-gradient(circle at 82% 68%, rgba(155, 93, 229, 0.16), transparent 28rem),
    #000;
}

.next-event-page__poster {
  margin: 0;
}

.next-event-page__poster img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(229, 241, 9, 0.48);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.8);
}

.next-event-page__content h1 {
  max-width: 720px;
  margin: 0;
  color: #fff;
  font-size: clamp(64px, 7.4vw, 112px);
  line-height: 0.88;
  text-transform: uppercase;
  text-wrap: balance;
}

.next-event-page__meta {
  margin: 32px 0 0;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 16px;
  line-height: 1.8;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.next-event-page .green-rule {
  display: block;
  width: 128px;
  height: 3px;
  margin: 32px 0;
  background: var(--accent);
}

.next-event-page__bio {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.65;
}

.next-event-page__bio + .next-event-page__bio {
  margin-top: 14px;
}

.next-event-page__tickets {
  display: inline-flex;
  margin: 32px 0 0;
  border: 1px solid var(--accent-line);
  border-radius: 999px;
  padding: 14px 20px;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.featured-drinks {
  padding: 104px max(48px, calc((100vw - 1240px) / 2)) 120px;
  background:
    radial-gradient(circle at 20% 32%, rgba(229, 241, 9, 0.08), transparent 24rem),
    radial-gradient(circle at 80% 68%, rgba(155, 93, 229, 0.15), transparent 28rem),
    #000;
}

.featured-drinks__heading {
  margin: 0 auto 48px;
  text-align: center;
}

.featured-drinks__heading p {
  margin: 0 0 14px;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
}

.featured-drinks__heading h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(52px, 7vw, 96px);
  line-height: 0.92;
  text-transform: uppercase;
}

.featured-drinks__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 5vw, 72px);
  width: min(1120px, 100%);
  margin: 0 auto;
}

.featured-drink-card {
  min-width: 0;
  text-align: center;
}

.featured-drink-card figure {
  margin: 0;
}

.featured-drink-card img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(229, 241, 9, 0.48);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.8);
}

.featured-drink-card h3 {
  margin: 24px 0 0;
  color: #fff;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1;
  text-transform: uppercase;
}

.featured-drink-card p {
  max-width: 480px;
  margin: 14px auto 0;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.6;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.featured-drinks__notice {
  width: min(1120px, 100%);
  margin: 48px auto 0;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.76);
  font-family: var(--font-mono);
  font-size: 12px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.lineup-section,
.recap-lineup {
  position: relative;
  padding: 96px 24px 130px;
}

.lineup-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  width: min(1152px, calc(100% - 48px));
  margin: 0 auto;
}

.lineup-card {
  height: 363px;
  border-width: 1px;
  border-radius: 0;
}

.lineup-card span {
  position: absolute;
  z-index: 1;
  left: 24px;
  bottom: 24px;
  color: var(--green);
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
}

.lineup-note {
  margin: 64px 0 0;
  color: #fff;
  font-size: 24px;
  text-align: center;
  text-transform: uppercase;
}

.drinks-section {
  padding: 120px 24px 140px;
  background:
    radial-gradient(circle at 50% 0, rgba(155, 93, 229, 0.14), transparent 36rem),
    #000;
}

.drink-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 5vw, 72px);
  align-items: stretch;
  justify-content: center;
  width: min(1248px, calc(100% - 48px));
  margin: 0 auto;
}

.drink-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr;
  min-width: 0;
  border: 1px solid rgba(155, 93, 229, 0.22);
  border-radius: 8px;
  padding: 0 0 26px;
  background:
    linear-gradient(180deg, rgba(155, 93, 229, 0.12), rgba(8, 3, 16, 0.76)),
    rgba(0, 0, 0, 0.74);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.42), 0 0 36px rgba(155, 93, 229, 0.14);
}

.drink-card__image {
  position: relative;
  aspect-ratio: 16 / 9;
  height: auto;
  overflow: hidden;
  border: 2px solid var(--green);
  border-radius: 8px;
  box-shadow: 0 0 30px rgba(168, 85, 247, 0.3);
}

.drink-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.drink-card__image span {
  position: absolute;
  top: 18px;
  left: 18px;
  border: 1px solid rgba(155, 93, 229, 0.5);
  border-radius: 999px;
  padding: 10px 16px;
  background: rgba(0, 0, 0, 0.82);
  color: #a855f7;
  font-size: 14px;
  text-transform: uppercase;
}

.drink-card h3 {
  margin: 24px 16px 10px;
  font-size: 36px;
  font-weight: 500;
}

.drink-card p {
  margin: 0 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 26px;
}

.ticket-cta {
  padding: 96px 24px;
  text-align: center;
}

.site-footer {
  border-top: 1px solid rgba(155, 93, 229, 0.2);
  display: grid;
  gap: 16px;
  justify-items: center;
  padding: 40px 24px 46px;
  background:
    radial-gradient(circle at 50% 0, rgba(155, 93, 229, 0.12), transparent 20rem),
    #000;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  line-height: 18px;
  text-align: center;
}

.site-footer__brand {
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 18px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.site-footer > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
}

.site-footer > div a {
  color: rgba(168, 85, 247, 0.86);
}

.site-footer p {
  margin: 0;
  color: #4a5565;
  font-size: 11px;
  letter-spacing: 0;
}

.recap-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 85% 12rem, rgba(155, 93, 229, 0.12), transparent 24rem),
    radial-gradient(circle at 10% 80rem, rgba(155, 93, 229, 0.1), transparent 20rem),
    #000;
}

.recap-intro {
  width: min(1152px, calc(100% - 48px));
  margin: 0 auto;
  padding-top: 80px;
}

.recap-intro h1 {
  margin: 24px 0 10px;
  font-size: 128px;
  line-height: 1;
  font-weight: 900;
}

.recap-date {
  margin: 0 0 32px;
  color: var(--dim);
  font-size: 18px;
}

.recap-copy {
  max-width: 768px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 29px;
}

.recap-page--centered .recap-intro {
  text-align: center;
}

.recap-page--centered .recap-copy {
  margin: 0 auto;
}

.recap-gallery {
  width: min(1152px, calc(100% - 48px));
  margin: 64px auto 0;
}

.photo-card {
  display: block;
  min-width: 0;
  overflow: hidden;
  border: 2px solid rgba(155, 93, 229, 0.2);
  border-radius: 10px;
  padding: 0;
  background: #071207;
  cursor: zoom-in;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.photo-card:hover img,
.photo-card:focus-visible img {
  transform: scale(1.03);
}

.recap-gallery--masonry {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 178px;
  gap: 16px;
}

.recap-gallery--masonry .photo-card--1,
.recap-gallery--masonry .photo-card--2,
.recap-gallery--masonry .photo-card--3 {
  grid-row: span 2;
}

.recap-gallery--masonry .photo-card--5,
.recap-gallery--masonry .photo-card--6,
.recap-gallery--masonry .photo-card--7 {
  grid-row: span 2;
}

.recap-page--split {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.15fr);
  gap: 36px;
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  padding-top: 150px;
}

.recap-page--split .recap-intro,
.recap-page--split .recap-gallery {
  width: auto;
  margin: 0;
  padding-top: 0;
}

.recap-page--split .recap-copy {
  font-size: 24px;
  line-height: 29px;
}

.recap-gallery--split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 250px;
  gap: 16px;
}

.recap-gallery--split .photo-card--1,
.recap-gallery--split .photo-card--6 {
  grid-row: span 2;
}

.recap-page--split .recap-lineup {
  grid-column: 1 / -1;
  width: calc(100% + 48px);
  margin-left: -24px;
}

.recap-page--split .recap-nav,
.recap-page--split .recap-pager {
  grid-column: 1 / -1;
}

.recap-gallery--centered {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 260px;
  gap: 20px;
}

.recap-gallery--centered .photo-card--1 {
  grid-column: 1 / -1;
  grid-row: span 2;
}

.recap-photo-link {
  margin: 48px 0 96px;
  text-align: center;
}

.recap-pager {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(896px, calc(100% - 48px));
  margin: 0 auto;
  padding: 72px 0 96px;
}

.recap-pager a {
  min-height: 92px;
  display: grid;
  align-content: center;
  gap: 8px;
  border: 1px solid rgba(155, 93, 229, 0.35);
  border-radius: 10px;
  padding: 18px;
  background: rgba(155, 93, 229, 0.06);
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.recap-pager a:hover,
.recap-pager a:focus-visible {
  transform: translateY(-2px);
  border-color: var(--green);
  box-shadow: 0 0 26px rgba(155, 93, 229, 0.2);
}

.recap-pager span {
  color: var(--green);
  font-size: 12px;
  letter-spacing: 2px;
}

.current-artist-page {
  --current-artist-accent: var(--accent);
  background:
    radial-gradient(circle at 16% 18rem, color-mix(in srgb, var(--current-artist-accent) 14%, transparent), transparent 28rem),
    radial-gradient(circle at 86% 46rem, rgba(155, 93, 229, 0.14), transparent 30rem),
    #000;
}

.current-artist-hero {
  display: grid;
  grid-template-columns: minmax(360px, 560px) minmax(380px, 1fr);
  gap: clamp(56px, 8vw, 120px);
  align-items: center;
  min-height: 900px;
  padding: 96px max(48px, calc((100vw - 1240px) / 2));
}

.current-artist-portrait {
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--current-artist-accent) 62%, transparent);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.8), 0 0 44px color-mix(in srgb, var(--current-artist-accent) 12%, transparent);
}

.current-artist-portraits {
  min-width: 0;
}

.current-artist-portraits.is-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.current-artist-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.current-artist-intro {
  min-width: 0;
}

.current-artist-eyebrow,
.current-artist-billing {
  margin: 0 0 18px;
  color: var(--current-artist-accent);
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.current-artist-billing {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.12em;
}

.current-artist-intro h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(76px, 9vw, 144px);
  line-height: 0.88;
  text-transform: uppercase;
  text-wrap: balance;
}

[data-route="comfort"] .current-artist-intro h1 {
  font-size: clamp(58px, 5.8vw, 84px);
}

[data-route="niko-couture-b2b-balla"] .current-artist-intro h1 {
  font-size: clamp(52px, 5.2vw, 76px);
}

[data-route="artur-exists"] .current-artist-intro h1 {
  font-size: clamp(46px, 4vw, 58px);
}

.current-artist-instagram {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin-top: 36px;
  border: 1px solid color-mix(in srgb, var(--current-artist-accent) 62%, transparent);
  border-radius: 999px;
  padding: 12px 22px;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: transform 180ms ease, background 180ms ease;
}

.current-artist-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.current-artist-socials .current-artist-instagram {
  margin-top: 0;
}

.current-artist-instagram:hover,
.current-artist-instagram:focus-visible {
  transform: translateY(-2px);
  background: color-mix(in srgb, var(--current-artist-accent) 14%, transparent);
}

.current-artist-instagram:focus-visible,
.current-artist-tabs a:focus-visible {
  outline: 2px solid var(--current-artist-accent);
  outline-offset: 4px;
}

.current-artist-details {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding: 96px 0 112px;
}

.current-artist-bio .section-kicker {
  color: var(--current-artist-accent);
}

.current-artist-bio p {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
  line-height: 1.7;
}

.current-artist-member + .current-artist-member {
  border-top: 1px solid var(--line);
  margin-top: 42px;
  padding-top: 42px;
}

.current-artist-member h2 {
  margin: 24px 0 0;
  color: var(--current-artist-accent);
  font-size: 34px;
  line-height: 1;
  text-transform: uppercase;
}

.current-artist-member h2 + p {
  margin-top: 18px;
}

.current-artist-set {
  display: grid;
  gap: 14px;
  border: 1px solid color-mix(in srgb, var(--current-artist-accent) 42%, transparent);
  padding: 34px;
  background: color-mix(in srgb, var(--current-artist-accent) 7%, transparent);
  text-align: center;
}

.current-artist-set span,
.current-artist-set small {
  color: var(--current-artist-accent);
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.current-artist-set strong {
  color: #fff;
  font-size: 34px;
  font-weight: 600;
  line-height: 1.1;
}

.current-artist-set p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
}

.current-artist-set small {
  border-top: 1px solid var(--line);
  margin-top: 8px;
  padding-top: 18px;
}

.current-artist-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding: 48px 24px 72px;
}

.current-artist-tabs a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 10px 18px;
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.current-artist-tabs a:hover,
.current-artist-tabs a.is-active {
  border-color: var(--current-artist-accent);
  color: #fff;
  background: color-mix(in srgb, var(--current-artist-accent) 12%, transparent);
}

@media (max-width: 1050px) {
  .current-artist-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 72px 48px 88px;
  }

  .current-artist-portrait {
    width: min(560px, 100%);
    margin: 0 auto;
  }

  .current-artist-portraits.is-pair {
    width: min(760px, 100%);
    margin: 0 auto;
  }

  .current-artist-intro {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
  }

  .current-artist-socials {
    justify-content: center;
  }

  .current-artist-details {
    grid-template-columns: 1fr;
  }

  .current-artist-set {
    width: min(520px, 100%);
    margin: 0 auto;
  }
}

.artist-page {
  background:
    radial-gradient(circle at 10% 4rem, rgba(153, 0, 255, 0.16), transparent 22rem),
    radial-gradient(circle at 86% 20rem, rgba(153, 0, 255, 0.12), transparent 28rem),
    #000;
}

.artist-hero {
  position: relative;
  min-height: 951px;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
}

.artist-hero__glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(153, 0, 255, 0.08), transparent 48%, #000 100%);
}

.corner-home {
  position: absolute;
  top: 28px;
  left: 28px;
  z-index: 2;
  border: 1px solid rgba(153, 0, 255, 0.45);
  padding: 10px 14px;
  color: rgba(153, 0, 255, 0.9);
  font-size: 13px;
  text-transform: uppercase;
}

.artist-hero h1 {
  position: relative;
  margin: 0 0 28px;
  font-size: 96px;
  line-height: 1;
  font-weight: 900;
}

.artist-socials {
  position: absolute;
  top: calc(50% + 70px);
  left: 50%;
  display: flex;
  gap: 12px;
  transform: translateX(-50%);
}

.artist-socials a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(168, 85, 247, 0.68);
  border-radius: 999px;
  padding: 10px 20px;
  background: rgba(8, 3, 16, 0.78);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  box-shadow: 0 0 24px rgba(155, 93, 229, 0.16);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.artist-socials a:hover,
.artist-socials a:focus-visible {
  transform: translateY(-2px);
  border-color: var(--purple-hot);
  background: rgba(155, 93, 229, 0.18);
  box-shadow: 0 0 34px rgba(155, 93, 229, 0.28);
}

.artist-info {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 448px;
  gap: 64px;
  width: min(1024px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0 0 106px;
  align-items: center;
}

.artist-bio {
  text-align: right;
}

.artist-bio .section-kicker {
  justify-content: flex-end;
}

.artist-bio p {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  line-height: 32px;
}

.set-card {
  display: grid;
  gap: 16px;
  border: 1px solid rgba(153, 0, 255, 0.3);
  padding: 33px;
  background: rgba(2, 38, 2, 0.26);
  box-shadow: 0 0 26px rgba(153, 0, 255, 0.22);
  text-align: center;
}

.set-card span {
  color: var(--green-hot);
  font-size: 14px;
  text-transform: uppercase;
}

.set-card strong {
  color: var(--green-hot);
  font-size: 42px;
  font-weight: 400;
}

.artist-band {
  position: relative;
  height: 620px;
  margin: 0;
  overflow: hidden;
}

.artist-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.66;
}

.artist-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, #000);
}

.qa-block {
  width: min(896px, calc(100% - 48px));
  margin: 0 auto;
  padding: 128px 32px;
}

.qa-block > div {
  max-width: 832px;
  border: 1px solid rgba(168, 85, 247, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(155, 93, 229, 0.15), rgba(3, 0, 10, 0.64) 44%, rgba(0, 0, 0, 0.92)),
    rgba(0, 0, 0, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 22px 54px rgba(0, 0, 0, 0.35);
}

.qa-block--left > div {
  border-left: 5px solid var(--green-hot);
  padding: 32px 36px;
}

.qa-block--right > div {
  margin-left: auto;
  border-right: 5px solid var(--green-hot);
  padding: 32px 36px;
  text-align: right;
}

.qa-block h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 32px;
  line-height: 40px;
  font-weight: 500;
}

.qa-block p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 24px;
  line-height: 32px;
}

.artist-feature {
  width: min(1088px, calc(100% - 48px));
  margin: 0 auto;
  overflow: hidden;
  border: 2px solid rgba(153, 0, 255, 0.4);
  box-shadow: 0 0 48px rgba(153, 0, 255, 0.1);
}

.artist-feature button {
  display: block;
  width: 100%;
  height: 570px;
  border: 0;
  padding: 0;
  background: #000;
  cursor: zoom-in;
}

.artist-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.missing-page {
  min-height: 100vh;
  display: grid;
  place-content: center;
  gap: 24px;
  text-align: center;
}

.missing-page h1 {
  margin: 0;
  font-size: 64px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 64px 24px 24px;
  background: rgba(0, 0, 0, 0.92);
}

.lightbox.is-open {
  display: flex;
}

.lightbox__image {
  max-width: min(1200px, 96vw);
  max-height: 86vh;
  border: 1px solid rgba(155, 93, 229, 0.4);
  object-fit: contain;
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  border: 1px solid var(--green);
  border-radius: 999px;
  padding: 10px 18px;
  background: #000;
  color: var(--green);
  cursor: pointer;
}

.event-tile img,
.lineup-card img,
.drink-card__image img,
.artist-feature img,
.artist-band img {
  object-position: center 40%;
}

.preview-panel img,
.preview-panel video,
.tickets-strip > img,
.event-hero > img {
  object-position: center center;
}

[data-route="vol-1"] .photo-card--1 img,
[data-route="vol-1"] .photo-card--4 img,
[data-route="vol-3"] .photo-card--1 img,
[data-route="vol-3"] .photo-card--4 img,
[data-route="vol-4"] .photo-card img {
  object-position: center 42%;
}

[data-route="escapade-afterparty"] .recap-intro h1 {
  font-size: clamp(72px, 9.5vw, 120px);
  line-height: 0.92;
  text-wrap: balance;
}

[data-route="escapade-afterparty"] .photo-card--1 img {
  object-position: center 48%;
}

[data-route="escapade-afterparty"] .photo-card:not(.photo-card--1) img {
  object-position: center 38%;
}

[data-route="dose"] .artist-band img,
[data-route="dose"] .artist-feature img {
  object-position: center center;
}

@media (max-width: 1050px) {
  .next-event-page {
    grid-template-columns: 1fr;
    padding: 72px 48px 96px;
  }

  .next-event-page__poster {
    width: min(520px, 100%);
    margin: 0 auto;
  }

  .next-event-page__content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
  }

  .next-event-page .green-rule {
    margin-right: auto;
    margin-left: auto;
  }

  .preview-panel h2,
  .split-heading,
  .recap-intro h1,
  .event-hero h1 {
    font-size: 88px;
  }

  .preview-panel__inner {
    flex-direction: column;
    gap: 40px;
  }

  .preview-panel h2 {
    flex: 0 0 auto;
    text-align: center;
  }

  .about-grid,
  .artist-info,
  .recap-page--split {
    grid-template-columns: 1fr;
  }

  .recap-page--split {
    width: 100%;
    padding: 80px 24px 0;
  }

  .recap-page--split .recap-lineup {
    width: auto;
    margin-left: 0;
  }

  .recap-page--split .recap-nav,
  .recap-page--split .recap-pager {
    width: 100%;
  }

  .artist-bio,
  .artist-bio .section-kicker {
    text-align: left;
    justify-content: flex-start;
  }

  .lineup-grid,
  .drink-grid {
    grid-template-columns: 1fr;
  }

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

  .event-tile__meta strong {
    font-size: clamp(20px, 3vw, 28px);
  }

  .lineup-card {
    height: 420px;
  }
}

@media (max-width: 720px) {
  .home-hero {
    min-height: 720px;
  }

  .home-hero__image {
    object-fit: contain;
    object-position: center center;
  }

  .home-hero__tagline {
    bottom: clamp(32px, 8vh, 70px);
    width: min(342px, calc(100% - 32px));
    padding: 12px 14px;
    font-size: 13px;
    line-height: 19px;
  }

  .preview-panel,
  .next-card,
  .event-hero,
  .artist-hero {
    min-height: 720px;
  }

  .preview-panel h2,
  .split-heading,
  .recap-intro h1,
  .event-hero h1,
  .artist-hero h1 {
    font-size: 58px;
  }

  .about-grid h2 {
    font-size: 48px;
  }

  .next-card__poster {
    width: min(420px, 82vw);
  }

  .split-heading {
    top: 285px;
  }

  .event-tile__meta strong {
    font-size: 28px;
  }

  .recap-gallery--masonry,
  .recap-gallery--split,
  .recap-gallery--centered {
    grid-template-columns: 1fr;
    grid-auto-rows: 310px;
  }

  .recap-gallery--centered .photo-card--1,
  .recap-gallery--masonry .photo-card,
  .recap-gallery--split .photo-card {
    grid-column: auto;
    grid-row: auto;
  }

  .recap-nav {
    position: static;
    padding-top: 16px;
  }

  .recap-nav a {
    flex: 1 1 130px;
  }

  .recap-pager {
    grid-template-columns: 1fr;
  }

  .artist-socials {
    flex-wrap: wrap;
    justify-content: center;
    width: calc(100% - 48px);
  }

  .set-card strong {
    font-size: 32px;
  }

  .artist-feature button,
  .artist-band {
    height: 420px;
  }

  .qa-block h2 {
    font-size: 24px;
    line-height: 32px;
  }

  .qa-block p {
    font-size: 18px;
    line-height: 28px;
  }
}

.mobile-view {
  display: none;
}

@media (max-width: 720px) {
  #app {
    background: #000;
  }

  .site-header {
    padding: 14px 18px;
  }

  .site-nav {
    gap: 16px;
  }

  .site-nav__toggle {
    display: inline-flex;
  }

  .site-header.is-open .site-nav__toggle {
    color: var(--accent);
  }

  .site-nav__links {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 4px 18px 20px;
    background: rgba(0, 0, 0, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.7);
  }

  .site-header.is-open .site-nav__links {
    display: flex;
  }

  .site-nav__links a,
  .site-nav-menu > summary {
    padding: 14px 0;
    font-size: 13px;
    letter-spacing: 0.1em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .site-nav__status {
    justify-content: center;
    margin: 14px 0 0;
    padding: 10px 12px;
  }

  .site-nav-tickets > summary {
    width: 100%;
    justify-content: space-between;
    margin: 14px 0 0;
    padding: 12px 14px;
  }

  .site-nav-tickets > div {
    min-width: 0;
  }

  .site-nav__links a::before,
  .site-nav-menu > summary::before {
    display: none;
  }

  .site-nav-menu {
    position: static;
  }

  .site-nav-menu > summary {
    justify-content: space-between;
  }

  .site-nav-menu > div {
    position: static;
    display: grid;
    gap: 0;
    min-width: 0;
    border: 0;
    padding: 2px 0 10px 16px;
    background: none;
    box-shadow: none;
  }

  .site-nav-menu > div a {
    padding: 11px 0;
    color: rgba(255, 255, 255, 0.5);
    border-bottom: 0;
  }

  .with-mobile > .desktop-view {
    display: none;
  }

  .with-mobile > .mobile-view {
    display: block;
  }

  .mobile-view {
    width: min(390px, 100%);
    margin: 0 auto;
    overflow: hidden;
    background: #000;
    color: #fff;
  }

  .current-artist-page {
    width: min(390px, 100%);
    margin: 0 auto;
    overflow: hidden;
  }

  .current-artist-hero {
    gap: 38px;
    padding: 34px 24px 56px;
  }

  .current-artist-portrait {
    width: 100%;
  }

  .current-artist-intro h1 {
    font-size: clamp(52px, 17vw, 68px);
    line-height: 0.92;
  }

  [data-route="comfort"] .current-artist-intro h1 {
    font-size: 44px;
  }

  [data-route="niko-couture-b2b-balla"] .current-artist-intro h1 {
    font-size: 36px;
    line-height: 0.98;
  }

  [data-route="artur-exists"] .current-artist-intro h1 {
    font-size: 34px;
  }

  .current-artist-eyebrow,
  .current-artist-billing {
    font-size: 10px;
    line-height: 1.6;
  }

  .current-artist-instagram {
    width: min(280px, 100%);
    margin-top: 28px;
  }

  .current-artist-socials {
    display: grid;
    justify-content: stretch;
    margin-top: 28px;
  }

  .current-artist-socials .current-artist-instagram {
    margin-top: 0;
  }

  .current-artist-details {
    width: auto;
    gap: 40px;
    margin: 0 24px;
    padding: 56px 0 64px;
  }

  .current-artist-bio p {
    font-size: 16px;
    line-height: 1.65;
  }

  .current-artist-member h2 {
    font-size: 28px;
  }

  .current-artist-set {
    width: 100%;
    padding: 28px 20px;
  }

  .current-artist-set strong {
    font-size: 28px;
  }

  .current-artist-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 32px 24px 56px;
  }

  .current-artist-tabs a {
    padding-right: 10px;
    padding-left: 10px;
  }

  .current-artist-tabs a.is-wide {
    grid-column: 1 / -1;
  }

  [data-route="dosen"] .current-artist-portrait img {
    object-position: center 45%;
  }

  [data-route="tone-a"] .current-artist-portrait img {
    object-position: center 35%;
  }

  [data-route="comfort"] .current-artist-portrait img {
    object-position: center 42%;
  }

  [data-route="g3lio"] .current-artist-portrait img {
    object-position: center 38%;
  }

  .mobile-home {
    --home-green: var(--purple);
    --home-line: rgba(155, 93, 229, 0.22);
  }

  .mobile-home-hero {
    position: relative;
    height: 771px;
    background: #000;
    overflow: hidden;
  }

  .mobile-home-hero img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .mobile-home-welcome,
  .mobile-home-tagline {
    position: absolute;
    left: 55px;
    width: 280px;
    margin: 0;
    color: #99a1af;
    font-size: 12px;
    line-height: 19.5px;
    text-align: center;
  }

  .mobile-home-welcome {
    top: 103px;
  }

  .mobile-home-tagline {
    top: 614px;
  }

  .mobile-home-section {
    border-top: 1px solid var(--home-line);
    padding-right: 24px;
    padding-left: 24px;
  }

  .mobile-section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--home-green);
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    text-transform: uppercase;
    letter-spacing: 3.6px;
  }

  .mobile-section-label span {
    width: 32px;
    height: 1px;
    background: var(--home-green);
  }

  .mobile-home-preview {
    height: 745px;
    padding-top: 49px;
  }

  .mobile-home-video {
    aspect-ratio: 342 / 608;
    height: auto;
    margin-top: 24px;
    border: 2px solid rgba(155, 93, 229, 0.3);
    padding: 2px;
    overflow: hidden;
  }

  .mobile-home-video img,
  .mobile-home-video video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .mobile-home-next-card {
    min-height: 620px;
    padding-top: 49px;
    padding-bottom: 49px;
    text-align: center;
  }

  .mobile-home-next-card h2,
  .mobile-home-tickets h2 {
    margin: 0;
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    text-transform: uppercase;
    letter-spacing: 1.25px;
  }

  .mobile-home-next-card h2 span,
  .mobile-home-tickets h2 span {
    color: var(--home-green);
  }

  .mobile-home-next-events {
    display: grid;
    gap: 64px;
  }

  .mobile-home-next-event {
    min-width: 0;
  }

  .mobile-home-poster {
    position: relative;
    display: block;
    height: auto;
    aspect-ratio: 1180 / 1474;
    margin-top: 24px;
    overflow: hidden;
    border: 2px solid var(--home-green);
    border-radius: 10px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  }

  .mobile-home-poster img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .mobile-next-teaser::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 50% 38%, rgba(155, 93, 229, 0.3), transparent 38%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.08), #000 96%);
  }

  .mobile-next-teaser img {
    opacity: 0.72;
    transform: scale(1.16);
  }

  .mobile-next-teaser > span {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: grid;
    place-content: center;
    gap: 18px;
    padding: 24px;
    color: #fff;
    text-transform: uppercase;
  }

  .mobile-next-teaser time {
    font-size: 46px;
    font-weight: 900;
    line-height: 0.95;
    text-shadow: 0 0 32px rgba(155, 93, 229, 0.6);
  }

  .mobile-next-teaser em {
    color: rgba(255, 255, 255, 0.68);
    font-family: var(--font-mono);
    font-size: 11px;
    font-style: normal;
    letter-spacing: 0.18em;
  }

  .mobile-home-next-card p {
    margin: 16px 0 0;
    color: var(--home-green);
    font-size: 12px;
    line-height: 16px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
  }

  .mobile-home-about {
    min-height: 397px;
    padding-top: 49px;
    padding-bottom: 48px;
  }

  .mobile-home-about h2 {
    margin: 16px 0 0;
    color: #fff;
    font-size: 30px;
    font-weight: 500;
    line-height: 36px;
    text-transform: uppercase;
  }

  .mobile-home-about > i {
    display: block;
    width: 64px;
    height: 4px;
    margin-top: 8px;
    background: var(--home-green);
  }

  .mobile-home-about p,
  .mobile-home-about details p {
    margin: 24px 0 0;
    color: #d1d5dc;
    font-size: 14px;
    line-height: 22.75px;
  }

  .mobile-home-about summary {
    display: inline-flex;
    margin-top: 18px;
    color: var(--home-green);
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    cursor: pointer;
  }

  .mobile-home-about summary::-webkit-details-marker {
    display: none;
  }

  .mobile-home-crew {
    height: 648px;
    padding-top: 49px;
  }

  .mobile-home-crew h2,
  .mobile-home-events h2 {
    margin: 0;
    color: var(--home-green);
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    text-transform: uppercase;
    letter-spacing: 2.4px;
  }

  .mobile-home-crew > div {
    height: 511px;
    margin-top: 24px;
    border: 2px solid var(--home-green);
    border-radius: 10px;
    padding: 2px;
    overflow: hidden;
  }

  .mobile-home-crew img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .mobile-home-events {
    display: grid;
    gap: 16px;
    padding-top: 49px;
    padding-bottom: 81px;
  }

  .mobile-home-events h2 {
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    letter-spacing: 3.16px;
  }

  .mobile-home-event {
    position: relative;
    height: 342px;
    overflow: hidden;
    border: 2px solid var(--home-green);
    border-radius: 10px;
    background: #050108;
  }

  .mobile-home-event img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.74;
  }

  .mobile-home-event::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.18);
  }

  .mobile-home-event__meta {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 8px;
    padding: 24px;
    color: #fff;
    text-align: left;
  }

  .mobile-home-event__meta strong {
    max-width: 100%;
    font-size: 34px;
    font-weight: 900;
    line-height: 0.98;
    text-transform: uppercase;
  }

  .mobile-home-event__meta small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 10px;
    line-height: 1.4;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .mobile-home-tickets {
    min-height: 392px;
    padding-top: 65px;
    padding-bottom: 65px;
    text-align: center;
  }

  .mobile-home-tickets h2 {
    font-size: 30px;
    line-height: 36px;
  }

  .mobile-home-tickets p {
    margin: 0;
    color: #99a1af;
    font-size: 12px;
    line-height: 16px;
  }

  .mobile-home-ticket-details {
    display: grid;
    gap: 8px;
    margin: 8px 0 24px;
  }

  .mobile-home-ticket-links {
    display: grid;
    gap: 12px;
  }

  .mobile-home-tickets a,
  .mobile-home-ticket-status {
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--home-green);
    border-radius: 8px;
    background: var(--home-green);
    color: #000;
    font-family: inherit;
    font-size: 14px;
    font-weight: 800;
    line-height: 20px;
    text-transform: uppercase;
    letter-spacing: 0;
    box-shadow: 0 0 28px rgba(155, 93, 229, 0.28);
  }

  .mobile-home-ticket-status {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.14em;
  }

  .mobile-next-page {
    --mobile-purple: #7c3aed;
    --mobile-purple-text: #a855f7;
  }

  .mobile-next-event {
    min-height: 100vh;
    padding: 34px 24px 64px;
    background:
      radial-gradient(circle at 50% 28%, rgba(229, 241, 9, 0.1), transparent 20rem),
      radial-gradient(circle at 84% 78%, rgba(124, 58, 237, 0.18), transparent 18rem),
      #000;
  }

  .mobile-next-event + .mobile-next-event {
    border-top: 1px solid var(--line);
  }

  .mobile-next-event__eyebrow {
    margin: 0 0 18px;
    color: var(--home-green);
    font-family: var(--font-mono);
    font-size: 11px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.26em;
  }

  .mobile-next-event figure {
    width: min(342px, 100%);
    margin: 0 auto;
  }

  .mobile-next-event figure img {
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid rgba(229, 241, 9, 0.5);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.72);
  }

  .mobile-next-event__content {
    width: min(342px, 100%);
    margin: 36px auto 0;
  }

  .mobile-next-event__content h1 {
    margin: 0;
    color: #fff;
    font-size: 44px;
    line-height: 0.94;
    text-align: center;
    text-transform: uppercase;
    text-wrap: balance;
  }

  .mobile-next-event__meta {
    margin: 22px 0 0;
    color: #fff;
    font-family: var(--font-mono);
    font-size: 12px;
    line-height: 1.8;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }

  .mobile-next-event__content > span {
    display: block;
    width: 80px;
    height: 3px;
    margin: 24px auto;
    background: var(--home-green);
    box-shadow: 0 0 20px rgba(50, 224, 122, 0.65);
  }

  .mobile-next-event__bio {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
    line-height: 1.65;
  }

  .mobile-next-event__bio + .mobile-next-event__bio {
    margin-top: 14px;
  }

  .mobile-next-event__tickets {
    display: block;
    margin: 28px 0 0;
    border: 1px solid rgba(50, 224, 122, 0.5);
    border-radius: 999px;
    padding: 12px 16px;
    color: var(--home-green);
    font-family: var(--font-mono);
    font-size: 10px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }

  .featured-drinks--mobile {
    padding: 64px 24px 72px;
  }

  .featured-drinks--mobile .featured-drinks__heading {
    margin-bottom: 32px;
  }

  .featured-drinks--mobile .featured-drinks__heading p {
    font-size: 10px;
  }

  .featured-drinks--mobile .featured-drinks__heading h2 {
    font-size: 44px;
  }

  .featured-drinks--mobile .featured-drinks__grid {
    grid-template-columns: 1fr;
    gap: 48px;
    width: min(342px, 100%);
  }

  .featured-drinks--mobile .featured-drink-card h3 {
    margin-top: 20px;
    font-size: 30px;
  }

  .featured-drinks--mobile .featured-drinks__notice {
    width: min(342px, 100%);
    margin-top: 40px;
    font-size: 10px;
    line-height: 1.6;
  }

  .mobile-next-hero {
    position: relative;
    height: 520px;
    display: grid;
    place-items: center;
    overflow: hidden;
    text-align: center;
    isolation: isolate;
  }

  .mobile-next-hero > img {
    position: absolute;
    inset: 0;
    z-index: -3;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
  }

  .mobile-next-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 42%, #000 100%);
  }

  .mobile-next-glow,
  .mobile-artist-glow {
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
  }

  .mobile-next-glow--one {
    top: 82px;
    left: 20px;
    width: 120px;
    height: 120px;
    background: rgba(124, 58, 237, 0.28);
    filter: blur(54px);
  }

  .mobile-next-glow--two {
    right: 10px;
    bottom: 76px;
    width: 150px;
    height: 150px;
    background: rgba(236, 72, 153, 0.2);
    filter: blur(70px);
  }

  .mobile-next-hero-content {
    width: 342px;
  }

  .mobile-next-hero-content p {
    margin: 0 0 10px;
    color: var(--mobile-purple-text);
    font-size: 12px;
    line-height: 16px;
    text-transform: uppercase;
    letter-spacing: 3px;
  }

  .mobile-next-hero-content h1 {
    margin: 0;
    color: #fff;
    width: max-content;
    font-size: 86px;
    font-weight: 900;
    line-height: 86px;
    text-transform: uppercase;
    white-space: nowrap;
    position: relative;
    left: 50%;
    transform: translateX(-50%) scaleX(0.7);
    transform-origin: center;
  }

  .mobile-next-hero--teaser .mobile-next-hero-content h1 {
    left: auto;
    width: auto;
    font-size: 36px;
    line-height: 44px;
    transform: none;
  }

  .mobile-next-hero-content > span {
    display: block;
    width: 80px;
    height: 3px;
    margin: 16px auto 24px;
    background: var(--mobile-purple);
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.9);
  }

  .mobile-next-hero-content > div {
    display: grid;
    gap: 8px;
    width: 342px;
    min-height: 89px;
    align-content: center;
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.4);
  }

  .mobile-next-hero-content strong {
    color: var(--mobile-purple-text);
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
  }

  .mobile-next-hero-content em {
    color: #d1d5dc;
    font-size: 14px;
    font-style: normal;
    line-height: 20px;
  }

  .mobile-next-lineup {
    min-height: 596px;
    padding: 40px 16px 24px;
  }

  .mobile-next-lineup h2,
  .mobile-drinks h2 {
    margin: 0 0 28px;
    color: var(--mobile-purple-text);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 4px;
  }

  .mobile-next-lineup > div {
    display: grid;
    gap: 12px;
  }

  .mobile-lineup-card {
    position: relative;
    aspect-ratio: 356 / 138;
    height: auto;
    background-color: #050107;
    overflow: hidden;
    border: 2px solid var(--green);
    border-radius: 14px;
  }

  .mobile-lineup-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 260ms ease;
  }

  .mobile-lineup-card:hover img,
  .mobile-lineup-card:active img {
    transform: scale(1.04);
  }

  .mobile-lineup-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 22%, rgba(0, 0, 0, 0.92));
  }

  .mobile-lineup-card span {
    position: absolute;
    left: 16px;
    bottom: 16px;
    z-index: 1;
    color: var(--mobile-purple-text);
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
  }

  .mobile-next-lineup p {
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
    line-height: 16px;
    text-align: center;
  }

  .mobile-next-tickets {
    min-height: 241px;
    border-top: 1px solid rgba(124, 58, 237, 0.2);
    padding: 49px 24px 48px;
    text-align: center;
  }

  .mobile-next-tickets h2 {
    margin: 0;
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    text-transform: uppercase;
  }

  .mobile-next-tickets h2 span {
    color: var(--mobile-purple-text);
  }

  .mobile-next-tickets p {
    margin: 8px 0 24px;
    color: #99a1af;
    font-size: 14px;
    line-height: 20px;
  }

  .mobile-next-tickets a {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--mobile-purple);
    border-radius: 8px;
    background: var(--mobile-purple);
    color: #000;
    font-family: inherit;
    font-size: 24px;
    font-weight: 800;
    line-height: 32px;
    text-transform: uppercase;
    box-shadow: 0 0 28px rgba(124, 58, 237, 0.32);
  }

  .mobile-drinks {
    min-height: 881px;
    display: grid;
    gap: 32px;
    border-top: 1px solid rgba(124, 58, 237, 0.2);
    padding: 49px 16px 32px;
  }

  .mobile-drinks h2 {
    margin-bottom: 3px;
  }

  .mobile-drink-card {
    overflow: hidden;
    border-radius: 16px;
    padding-bottom: 24px;
  }

  .mobile-drink-card--pink {
    border: 1px solid rgba(236, 72, 153, 0.4);
    background: rgba(236, 72, 153, 0.06);
    box-shadow: 0 0 36px rgba(236, 72, 153, 0.12);
  }

  .mobile-drink-card--purple {
    border: 1px solid rgba(124, 58, 237, 0.4);
    background: rgba(107, 33, 168, 0.1);
  }

  .mobile-drink-card > div {
    position: relative;
    height: 220px;
  }

  .mobile-drink-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .mobile-drink-card span {
    position: absolute;
    top: 14px;
    left: 14px;
    border: 1px solid rgba(236, 72, 153, 0.45);
    border-radius: 999px;
    padding: 7px 11px;
    background: rgba(0, 0, 0, 0.74);
    color: #f9a8d4;
    font-size: 10px;
    line-height: 12px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
  }

  .mobile-drink-card h3 {
    margin: 22px 16px 8px;
    color: #fff;
    font-size: 28px;
    font-weight: 500;
    line-height: 34px;
  }

  .mobile-drink-card p {
    margin: 0 16px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 22px;
  }

  .mobile-recap {
    --recap-purple: #9b5de5;
  }

  .mobile-recap-poster {
    height: 520px;
    border: 2px solid rgba(155, 93, 229, 0.3);
    overflow: hidden;
  }

  .mobile-recap-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .mobile-recap-info {
    padding: 32px 24px 24px;
  }

  .mobile-recap-info h1 {
    margin: 0;
    color: #fff;
    font-size: 40px;
    font-weight: 900;
    line-height: 40px;
  }

  [data-route="escapade-afterparty"] .mobile-recap-info h1 {
    font-size: 34px;
    line-height: 36px;
  }

  .mobile-recap-info p {
    margin: 16px 0;
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    line-height: 19.5px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .mobile-recap-info div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .mobile-recap-info span {
    min-height: 25px;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(155, 93, 229, 0.35);
    border-radius: 999px;
    padding: 4px 10px;
    color: rgba(155, 93, 229, 0.85);
    font-size: 10px;
    font-weight: 500;
    line-height: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
  }

  .mobile-recap-photos {
    padding-top: 12px;
  }

  .mobile-recap-label,
  .mobile-artist-label {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 24px 12px;
    color: var(--recap-purple);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    text-transform: uppercase;
    letter-spacing: 3.85px;
  }

  .mobile-recap-label span,
  .mobile-artist-label span {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, currentColor);
  }

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

  .mobile-recap-grid button {
    height: 193.5px;
    border: 0;
    padding: 0;
    background: #000;
    cursor: zoom-in;
  }

  .mobile-recap-grid button:nth-child(1) {
    grid-column: 1 / -1;
    height: 219px;
  }

  .mobile-recap-grid button:nth-child(4) {
    grid-column: 1 / -1;
    height: 195px;
  }

  .mobile-recap-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .mobile-recap-actions {
    padding: 32px 24px;
  }

  .mobile-recap-credit {
    display: block;
    margin-bottom: 20px;
    color: rgba(155, 93, 229, 0.45);
    font-size: 11px;
    line-height: 16px;
    text-align: center;
  }

  .mobile-recap-actions nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 12px;
  }

  .mobile-recap-actions nav a {
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--recap-purple);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 16px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
  }

  .mobile-recap-actions nav a:last-child {
    background: var(--recap-purple);
    color: #000;
  }

  .mobile-artist {
    --artist-accent: #9900ff;
    background: #000;
  }

  .mobile-artist-hero {
    position: relative;
    height: 771px;
    overflow: hidden;
  }

  .mobile-artist-hero > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
  }

  .mobile-artist-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, color-mix(in srgb, var(--artist-accent) 10%, transparent), transparent 50%, #000 100%);
  }

  .mobile-artist-glow--one {
    top: 80px;
    left: 40px;
    width: 128px;
    height: 128px;
    background: var(--artist-accent);
    opacity: 0.22;
    filter: blur(80px);
  }

  .mobile-artist-glow--two {
    top: 451px;
    left: 190px;
    width: 160px;
    height: 160px;
    background: var(--artist-accent);
    opacity: 0.2;
    filter: blur(100px);
  }

  .mobile-artist-title {
    position: absolute;
    inset: 0;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 32px;
    padding: 24px;
    text-align: center;
  }

  .mobile-artist-title h1 {
    margin: 0;
    color: #fff;
    font-size: 56px;
    font-weight: 900;
    line-height: 84px;
  }

  .mobile-artist-title div {
    display: grid;
    gap: 12px;
    width: 280px;
  }

  .mobile-artist-title a {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid color-mix(in srgb, var(--artist-accent) 72%, transparent);
    border-radius: 999px;
    background: rgba(6, 0, 14, 0.78);
    color: #fff;
    font-size: 16px;
    font-weight: 750;
    line-height: 22px;
    box-shadow: 0 0 24px color-mix(in srgb, var(--artist-accent) 22%, transparent);
  }

  .mobile-artist-bio {
    padding: 48px 24px;
  }

  .mobile-artist-label {
    padding: 0 0 24px;
    color: var(--artist-accent);
  }

  .mobile-artist-bio p {
    margin: 0 0 16px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 26px;
    text-align: right;
  }

  .mobile-artist-bio aside {
    height: 118px;
    display: grid;
    align-content: center;
    gap: 14px;
    margin-top: 32px;
    border: 1px solid color-mix(in srgb, var(--artist-accent) 45%, transparent);
    background: rgba(38, 0, 77, 0.1);
    text-align: center;
  }

  .mobile-artist-bio aside span {
    color: var(--artist-accent);
    font-size: 12px;
    line-height: 16px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
  }

  .mobile-artist-bio aside strong {
    color: var(--artist-accent);
    font-size: 30px;
    font-weight: 400;
    line-height: 36px;
  }

  .mobile-artist-qa {
    padding-top: 32px;
  }

  .mobile-artist-question {
    width: 342px;
    min-height: 122px;
    margin: 0 auto 48px;
    border: 1px solid color-mix(in srgb, var(--artist-accent) 34%, transparent);
    border-radius: 8px;
    background:
      linear-gradient(135deg, color-mix(in srgb, var(--artist-accent) 15%, transparent), rgba(3, 0, 10, 0.72) 48%, rgba(0, 0, 0, 0.9)),
      #000;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 16px 42px rgba(0, 0, 0, 0.32);
  }

  .mobile-artist-question--left {
    border-left: 5px solid var(--artist-accent);
    padding: 22px 24px;
  }

  .mobile-artist-question--right {
    border-right: 5px solid var(--artist-accent);
    padding: 22px 24px;
    text-align: right;
  }

  .mobile-artist-question h2 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
  }

  .mobile-artist-question p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 24px;
  }

  .mobile-artist-question:first-child h2 {
    font-size: 20px;
    line-height: 25px;
  }

  .mobile-artist-photo {
    position: relative;
    width: 390px;
    height: 484px;
    display: block;
    margin: 0 0 48px;
    border: 2px solid color-mix(in srgb, var(--artist-accent) 45%, transparent);
    padding: 6px;
    background: rgba(153, 0, 255, 0.16);
    box-shadow: 0 0 36px rgba(153, 0, 255, 0.2);
    cursor: zoom-in;
  }

  .mobile-artist-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .mobile-artist-nav {
    height: 112px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 16px;
    padding: 32px 24px;
  }

  .mobile-artist-nav a {
    min-width: 121px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    background: var(--artist-accent);
    color: #000;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    white-space: nowrap;
  }

  [data-route="seb-b-balla"] .mobile-artist-title h1 {
    font-size: 36px;
    line-height: 45px;
  }

  [data-route="seb-b-balla"] .mobile-artist-nav a {
    color: #fff;
  }

  .mobile-home-poster img,
  .mobile-home-crew img,
  .mobile-home-event img,
  .mobile-recap-poster img,
  .mobile-recap-grid img,
  .mobile-artist-hero > img,
  .mobile-artist-photo img {
    object-position: center 40%;
  }

  .mobile-home-hero img,
  .mobile-next-hero > img {
    object-position: center center;
  }

  [data-route="vol-1"] .mobile-recap-grid button:nth-child(1) img,
  [data-route="vol-1"] .mobile-recap-grid button:nth-child(4) img,
  [data-route="vol-3"] .mobile-recap-grid button:nth-child(1) img,
  [data-route="vol-3"] .mobile-recap-grid button:nth-child(4) img {
    object-position: center 35%;
  }

  [data-route="vol-4"] .mobile-recap-grid img {
    object-position: center 48%;
  }

  [data-route="escapade-afterparty"] .mobile-recap-poster img {
    object-position: center 45%;
  }

  [data-route="escapade-afterparty"] .mobile-recap-grid button:first-child img {
    object-position: center 48%;
  }

  [data-route="escapade-afterparty"] .mobile-recap-grid button:not(:first-child) img {
    object-position: center 38%;
  }

  [data-route="dj-cobb"] .mobile-artist-hero > img,
  [data-route="babyjake"] .mobile-artist-hero > img {
    object-position: center 50%;
  }

  [data-route="seb-b-balla"] .mobile-artist-hero > img,
  [data-route="seb-b-balla"] .mobile-artist-photo img {
    object-position: center 38%;
  }
}
