:root {
  --black: #050505;
  --ink: #101010;
  --cream: #f4f0ea;
  --white: #fffaf7;
  --cyan: #10e4ff;
  --blue: #3778ff;
  --magenta: #ff00e6;
  --pink: #ff2b9d;
  --bubble: #ff71d6;
  --chrome: #d8e4f2;
  --text: var(--white);
  --body: 'Archivo', 'Arial', sans-serif;
  --display: 'Anton', 'Impact', 'Arial Narrow', sans-serif;
  --condensed: 'Bebas Neue', 'Impact', 'Arial Narrow', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 112px;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  cursor: none;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(
      circle at 14% 18%,
      rgba(255, 0, 230, 0.18),
      transparent 22%
    ),
    radial-gradient(circle at 86% 8%, rgba(16, 228, 255, 0.2), transparent 20%),
    linear-gradient(
      120deg,
      transparent 0 36%,
      rgba(255, 255, 255, 0.04) 37%,
      transparent 42%
    );
  mix-blend-mode: screen;
}

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

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

button,
input {
  font: inherit;
}

::selection {
  background: var(--magenta);
  color: var(--black);
}

.cursor {
  position: fixed;
  width: 22px;
  height: 22px;
  border: 2px solid var(--cyan);
  border-radius: 999px;
  pointer-events: none;
  z-index: 200;
  transform: translate(-50%, -50%);
  box-shadow:
    0 0 22px var(--cyan),
    inset 0 0 12px rgba(255, 255, 255, 0.45);
  mix-blend-mode: difference;
}

.site-noise,
.scanlines {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
}

.site-noise {
  opacity: 0.13;
  background-image:
    radial-gradient(
      circle at 18% 71%,
      rgba(255, 255, 255, 0.8) 0 1px,
      transparent 1.5px
    ),
    radial-gradient(
      circle at 72% 32%,
      rgba(255, 0, 230, 0.7) 0 1px,
      transparent 1.5px
    ),
    radial-gradient(
      circle at 42% 44%,
      rgba(16, 228, 255, 0.8) 0 1px,
      transparent 1.5px
    );
  background-size:
    83px 91px,
    127px 139px,
    191px 211px;
  animation: driftNoise 12s linear infinite;
}

.scanlines {
  opacity: 0.12;
  background: repeating-linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.16) 0 1px,
    transparent 1px 5px
  );
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 100;
  width: min(1180px, calc(100% - 28px));
  height: 76px;
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 10px 12px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(5, 5, 5, 0.44);
  backdrop-filter: blur(18px);
  box-shadow:
    0 0 40px rgba(16, 228, 255, 0.14),
    inset 0 0 24px rgba(255, 255, 255, 0.05);
}

.brand {
  position: relative;
  display: block;
  height: 50px;
  overflow: hidden;
  background: transparent;
  border: 0;
  clip-path: none;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  transform: none;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 3vw, 36px);
  color: rgba(255, 250, 247, 0.72);
  font-family: var(--condensed);
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-menu {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
  clip-path: inset(50%);
  border: 0;
}

.main-nav a,
.nav-cta {
  transition:
    color 180ms ease,
    text-shadow 180ms ease,
    transform 180ms ease;
}

.main-nav a:hover,
.nav-cta:hover {
  color: var(--cyan);
  text-shadow: 0 0 18px var(--cyan);
  transform: skew(-7deg);
}

.nav-cta {
  padding: 12px 18px;
  color: var(--black);
  font-family: var(--display);
  font-size: 16px;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--magenta), var(--cyan));
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 20px rgba(255, 0, 230, 0.4);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 120px 22px 72px;
  isolation: isolate;
  background: #8bdcf0;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(5, 5, 5, 0.02),
    rgba(5, 5, 5, 0.08) 58%,
    rgba(5, 5, 5, 0.24) 100%
  );
}

.hero-sky {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 18%;
  filter: saturate(1.3) brightness(1.08);
  transform: scale(1.01);
  animation: slowZoom 24s ease-in-out infinite alternate;
}

.hero-liquid {
  display: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  width: min(1200px, 100%);
  display: grid;
  grid-template-columns: 0.9fr 1.5fr 0.9fr;
  align-items: end;
  gap: 26px;
}

.hero-meta {
  align-self: start;
  width: fit-content;
  max-width: 280px;
  padding: 10px 14px;
  color: var(--black);
  font-family: var(--condensed);
  font-size: 22px;
  line-height: 1;
  text-transform: uppercase;
  background: rgba(255, 250, 247, 0.82);
  border: 1px solid var(--black);
  transform: rotate(-2deg);
  box-shadow: 8px 8px 0 rgba(255, 0, 230, 0.85);
}

.signal-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--magenta);
  box-shadow: 0 0 18px var(--magenta);
}

.hero-lockup {
  min-width: 0;
  display: grid;
  justify-items: center;
}

.pre-title,
.section-kicker,
.panel-code {
  margin: 0 0 14px;
  color: var(--cyan);
  font-family: var(--condensed);
  font-size: clamp(18px, 2vw, 24px);
  letter-spacing: 0.12em;
  line-height: 0.95;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(16, 228, 255, 0.72);
}

.pre-title {
  position: relative;
  z-index: 0;
  width: 100%;
  text-align: center;
  color: rgba(255, 250, 247, 0.86);
  text-shadow: 0 0 16px rgba(255, 250, 247, 0.42);
}

.pre-title::before {
  content: none;
}

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

h1 {
  position: relative;
  min-height: 430px;
  font-size: clamp(88px, 15vw, 215px);
}

.hero-main-title {
  min-height: 0;
  display: grid;
  place-items: center;
}

.hero-main-logo {
  width: min(760px, 68vw);
  max-height: 56vh;
  object-fit: contain;
  filter: drop-shadow(14px 14px 0 rgba(255, 0, 230, 0.72))
    drop-shadow(-10px -8px 0 rgba(16, 228, 255, 0.55))
    drop-shadow(0 0 34px rgba(255, 255, 255, 0.35));
  transform: rotate(-2deg);
}

.headline-k,
.headline-festival,
.headline-spain {
  position: absolute;
  display: block;
}

.headline-k {
  top: 0;
  left: -3vw;
  color: var(--black);
  -webkit-text-stroke: 2px var(--white);
  text-shadow:
    10px 10px 0 rgba(255, 0, 230, 0.72),
    0 0 32px rgba(16, 228, 255, 0.4);
  transform: skew(-7deg);
}

.headline-festival {
  top: 155px;
  right: -2vw;
  color: var(--white);
  text-shadow:
    8px 8px 0 var(--black),
    0 0 28px var(--cyan);
}

.headline-spain {
  bottom: 8px;
  left: 17%;
  padding: 18px 22px 8px;
  color: var(--black);
  font-family: var(--condensed);
  font-size: clamp(60px, 10vw, 150px);
  background: linear-gradient(
    135deg,
    var(--magenta),
    var(--bubble) 43%,
    var(--cyan)
  );
  border: 2px solid var(--white);
  border-radius: 2px;
  transform: rotate(-6deg);
  box-shadow: 0 0 40px rgba(255, 0, 230, 0.5);
}

.hero-logo-card {
  position: absolute;
  right: 7%;
  bottom: 19%;
  width: min(275px, 27vw);
  padding: 8px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 0 28px rgba(255, 255, 255, 0.4),
    inset 0 0 28px rgba(16, 228, 255, 0.2);
  transform: rotate(5deg);
}

.hero-logo-card img {
  aspect-ratio: 1.35;
  object-fit: cover;
  object-position: center;
}

.hero-copy {
  align-self: center;
  padding: 22px;
  background: rgba(5, 5, 5, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(14px);
  box-shadow: inset 0 0 24px rgba(255, 255, 255, 0.06);
  transform: translateY(80px);
}

.date-line {
  margin: 0 0 12px;
  color: var(--white);
  font-family: var(--condensed);
  font-size: clamp(24px, 3vw, 42px);
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.tagline {
  margin: 0 0 22px;
  color: var(--text);
  font-size: 15px;
}

.tagline strong {
  color: var(--pink);
  text-shadow: 0 0 16px var(--pink);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 22px;
  border: 0;
  color: var(--black);
  font-family: var(--display);
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transform: skew(-8deg);
  transition:
    transform 180ms ease,
    filter 180ms ease,
    box-shadow 180ms ease;
  cursor: none;
}

.btn > *,
.btn {
  white-space: nowrap;
}

.btn-primary {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.65), transparent 42%),
    linear-gradient(135deg, var(--pink), var(--magenta) 48%, var(--cyan));
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow:
    0 12px 0 rgba(5, 5, 5, 0.7),
    0 0 28px rgba(255, 0, 230, 0.58);
}

.btn-secondary {
  color: var(--white);
  background: rgba(5, 5, 5, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: inset 0 0 20px rgba(16, 228, 255, 0.16);
}

.btn:hover {
  transform: skew(-14deg) translateY(-4px) scale(1.04);
  filter: saturate(1.35);
  box-shadow:
    0 16px 0 rgba(5, 5, 5, 0.76),
    0 0 38px rgba(16, 228, 255, 0.65);
}

.sticker,
.experience-icon,
.venue-palm,
.venue-plane,
.wishlist-badge {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.42));
}

.sticker-heart {
  width: clamp(86px, 12vw, 170px);
  top: 20%;
  right: 7%;
  animation: floatRotate 8s ease-in-out infinite;
}

.sticker-star {
  width: clamp(72px, 10vw, 145px);
  left: 6%;
  bottom: 12%;
  animation: floatRotate 9s ease-in-out infinite reverse;
}

.sticker-mic {
  width: clamp(95px, 15vw, 210px);
  right: 24%;
  bottom: 7%;
  transform: rotate(-16deg);
  animation: chromeSwing 7s ease-in-out infinite;
}

.ticker {
  --ticker-gap: clamp(28px, 3vw, 54px);
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.28);
}

.ticker-hot {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 6;
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
  color: var(--black);
}

.ticker-black {
  background: var(--black);
  color: var(--white);
}

.ticker-track {
  display: flex;
  width: max-content;
  min-width: max-content;
  will-change: transform;
  animation: marquee 36s linear infinite;
}

.ticker-track.reverse {
  animation-direction: reverse;
}

.ticker span {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 12px 0 12px var(--ticker-gap);
  font-family: var(--condensed);
  font-size: 22px;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker span::after {
  content: '✦';
  margin-left: var(--ticker-gap);
}

.section-pad {
  position: relative;
  padding: clamp(52px, 6.5vw, 96px) 22px;
  overflow: hidden;
}

.identity {
  min-height: auto;
  display: grid;
  place-items: center;
  background: linear-gradient(
    180deg,
    var(--black),
    #111 40%,
    var(--cream) 40% 100%
  );
  color: var(--black);
}

.identity .section-kicker {
  align-self: end;
  margin-bottom: clamp(26px, 5vw, 58px);
}

.manifesto {
  width: min(780px, 100%);
  text-align: center;
}

.manifesto .separate-sentence {
  display: block;
  max-width: 560px;
  margin: -12px auto 28px;
}

.manifesto p,
.artist-copy p,
.experience-copy p,
.venue-copy p,
.terminal-body p {
  margin: 0 0 22px;
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.72;
}

.lead {
  color: inherit;
  font-weight: 800;
}

.manifesto .lead,
.experience-copy .lead {
  font-size: clamp(20px, 2.4vw, 36px);
  line-height: 0.98;
  max-width: 680px;
  margin-inline: auto;
}

.manifesto .lead {
  display: block;
  margin-bottom: 0;
  padding-bottom: clamp(56px, 6vw, 96px);
}

.manifesto .lead + p {
  margin-top: clamp(24px, 3vw, 48px);
}

p strong,
.lead,
.gradient-copy {
  background: linear-gradient(
    105deg,
    var(--magenta),
    var(--bubble),
    var(--cyan)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  font-weight: 800;
}

.gradient-copy {
  font-size: clamp(18px, 1.65vw, 26px) !important;
  line-height: 1.18 !important;
}

.waitlist-note {
  max-width: 720px;
  margin: clamp(18px, 2vw, 28px) auto 0 !important;
}

.brush-callout {
  display: inline-block;
  margin-top: 14px !important;
  color: var(--pink);
  font-family: var(--condensed);
  font-size: clamp(32px, 5vw, 70px) !important;
  line-height: 0.76 !important;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transform: rotate(-1deg);
  text-shadow: 0 0 16px rgba(255, 43, 157, 0.35);
}

.manifesto .brush-callout {
  max-width: 980px;
  margin-top: 0 !important;
  line-height: 0.72 !important;
}

.floating-label {
  position: static;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  font-family: var(--condensed);
  font-size: 18px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  white-space: nowrap;
}

.identity-stamps {
  width: min(780px, calc(100% - 32px));
  margin: clamp(22px, 3vw, 42px) auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(12px, 2vw, 22px);
  flex-wrap: wrap;
}

.label-left {
  color: var(--cyan);
  transform: rotate(-7deg);
}

@media (min-width: 1180px) {
  .manifesto .lead {
    max-width: 780px;
    padding-inline: 140px;
  }
}

.label-right {
  color: var(--pink);
  transform: rotate(5deg);
}

.section-heading {
  width: min(900px, 100%);
  margin: 0 auto clamp(28px, 3.5vw, 40px);
  text-align: center;
}

.section-heading h2,
.terminal h2 {
  font-size: clamp(54px, 9vw, 132px);
  text-shadow: 0 0 28px rgba(255, 0, 230, 0.25);
}

.section-heading p:last-child {
  max-width: 650px;
  margin: 16px auto 0;
  color: var(--white);
}

.section-heading h2 + .lineup-intro {
  margin-top: clamp(30px, 3vw, 54px);
}

.artists {
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(255, 0, 230, 0.18),
      transparent 28%
    ),
    radial-gradient(
      circle at 78% 42%,
      rgba(16, 228, 255, 0.15),
      transparent 30%
    ),
    var(--black);
}

.artist-panels {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  align-items: end;
}

.artist-panel {
  position: relative;
  min-height: 420px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.18), transparent 28%),
    radial-gradient(
      circle at 50% 22%,
      rgba(255, 0, 230, 0.52),
      transparent 22%
    ),
    linear-gradient(180deg, rgba(16, 228, 255, 0.12), rgba(5, 5, 5, 0.94)),
    var(--black);
  border: 1px solid rgba(255, 255, 255, 0.22);
  clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
  transition:
    transform 220ms ease,
    filter 220ms ease,
    box-shadow 220ms ease;
}

.artist-panel::before {
  content: '';
  position: absolute;
  inset: 14% 20% 27%;
  background:
    radial-gradient(
      ellipse at 50% 10%,
      rgba(255, 255, 255, 0.34),
      transparent 17%
    ),
    linear-gradient(180deg, rgba(16, 228, 255, 0.18), rgba(255, 0, 230, 0.2));
  filter: blur(2px);
  opacity: 0.72;
  clip-path: polygon(26% 0, 74% 0, 86% 100%, 14% 100%);
}

.artist-panel::after {
  content: 'ENCRYPTED';
  position: absolute;
  top: 34px;
  right: -34px;
  padding: 8px 44px;
  color: var(--black);
  font-family: var(--display);
  background: var(--cyan);
  transform: rotate(35deg);
}

.lock-icon {
  position: absolute;
  z-index: 2;
  width: clamp(108px, 13vw, 185px);
  left: 50%;
  top: 38%;
  transform: translate(-50%, -50%) rotate(-8deg);
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.48))
    drop-shadow(0 0 24px rgba(16, 228, 255, 0.24));
  mix-blend-mode: screen;
  animation: lockFloat 7s ease-in-out infinite;
}

.lock-b {
  animation-delay: -2.5s;
  transform: translate(-50%, -50%) rotate(8deg);
}

.artist-panel.tall {
  min-height: 500px;
}

.artist-panel:hover {
  transform: translateY(-18px) rotate(-1deg) scale(1.03);
  filter: saturate(1.5) contrast(1.1);
  box-shadow: 0 0 48px rgba(255, 0, 230, 0.34);
}

.artist-panel strong {
  position: relative;
  z-index: 2;
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 60px);
  line-height: 0.9;
  text-transform: uppercase;
}

.artist-panel em {
  position: relative;
  z-index: 2;
  color: var(--cyan);
  font-family: var(--condensed);
  font-size: 22px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-style: normal;
}

.artist-copy {
  width: min(760px, 100%);
  margin: 36px auto 0;
  text-align: center;
  color: var(--text);
}

.artist-copy span {
  color: var(--pink);
  font-family: var(--condensed);
  font-size: 24px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.experience {
  min-height: auto;
  background:
    radial-gradient(
      circle at 80% 22%,
      rgba(16, 228, 255, 0.17),
      transparent 26%
    ),
    linear-gradient(180deg, #08080b, var(--black));
}

.inverted h2 {
  color: var(--white);
}

.experience-layout,
.venue-layout {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}

.chat-stack {
  position: relative;
  min-height: 480px;
}

.chat-window,
.ticket-strip,
.photo-grid {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  box-shadow:
    0 0 30px rgba(16, 228, 255, 0.16),
    inset 0 0 24px rgba(255, 255, 255, 0.06);
}

.chat-window {
  top: 10px;
  left: 4%;
  width: 76%;
  padding: 20px;
  transform: rotate(-4deg);
  z-index: 2;
}

.chat-window span {
  display: block;
  color: var(--cyan);
  font-family: var(--condensed);
  font-size: 22px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.chat-window strong {
  display: block;
  margin-top: 8px;
  font-family: var(--display);
  font-size: 56px;
  line-height: 0.9;
  text-transform: uppercase;
}

.chat-window p {
  margin: 16px 0 0;
  color: var(--pink);
  font-family: var(--condensed);
  font-size: 24px;
}

.ticket-strip {
  right: 0;
  top: 190px;
  width: 72%;
  padding: 12px;
  display: grid;
  gap: 8px;
  transform: rotate(5deg);
  z-index: 12;
}

.ticket-strip span {
  padding: 8px 10px;
  color: var(--black);
  font-family: var(--display);
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--cyan), var(--pink));
}

.photo-grid {
  left: 10%;
  bottom: 0;
  width: 78%;
  padding: 12px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  transform: rotate(-2deg);
  z-index: 4;
}

.photo-grid span {
  aspect-ratio: 0.72;
  background-image:
    linear-gradient(150deg, rgba(255, 255, 255, 0.42), transparent 28%),
    url('images/photo-grid.webp');
  background-size: 310% 210%;
  border: 1px solid rgba(255, 255, 255, 0.7);
  filter: saturate(1.12) contrast(1.05);
}

.photo-one {
  background-position: 0% 0%;
}
.photo-two {
  background-position: 50% 0%;
}
.photo-three {
  background-position: 100% 0%;
}
.photo-four {
  background-position: 0% 100%;
}
.photo-five {
  background-position: 50% 100%;
}
.photo-six {
  background-position: 100% 100%;
}

.experience-copy {
  color: var(--text);
  max-width: 640px;
}

@media (min-width: 1180px) {
  .experience-layout {
    width: min(1240px, calc(100% - 64px));
    grid-template-columns: minmax(520px, 0.95fr) minmax(520px, 1.05fr);
    align-items: center;
  }

  .chat-stack {
    min-height: 570px;
    transform: translateY(8px);
  }

  .chat-window {
    top: 0;
    left: 2%;
    width: 76%;
    min-height: 220px;
  }

  .ticket-strip {
    top: 292px;
    right: 1%;
    width: 52%;
  }

  .photo-grid {
    left: 9%;
    bottom: 10px;
    width: 68%;
    padding: 10px;
    gap: 8px;
  }

  .photo-grid span {
    aspect-ratio: 0.66;
  }
}

.icon-camera {
  width: clamp(110px, 17vw, 220px);
  left: 4%;
  top: 12%;
  transform: rotate(-16deg);
  animation: floatRotate 10s ease-in-out infinite;
}

.icon-hand {
  width: clamp(90px, 13vw, 170px);
  right: 6%;
  bottom: 9%;
  animation: floatRotate 8s ease-in-out infinite reverse;
}

.venue {
  position: relative;
  color: var(--black);
  overflow: hidden;
  background: var(--cream);
  isolation: isolate;
}

.venue::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: min(82vw, 920px);
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(244, 240, 234, 0) 0%,
    rgba(244, 240, 234, 0.08) 34%,
    rgba(244, 240, 234, 0.58) 70%,
    var(--cream) 100%
  );
}

.venue .section-heading {
  position: relative;
  z-index: 2;
  color: var(--black);
}

.venue .section-kicker {
  margin-bottom: clamp(18px, 2vw, 30px);
  color: var(--pink);
  text-shadow: 0 0 14px rgba(255, 43, 157, 0.35);
}

.venue .section-heading h2 {
  line-height: 0.9;
  padding-top: 0.03em;
}

.venue-sky {
  position: absolute;
  inset: 0 auto auto 0;
  z-index: 0;
  width: 100%;
  height: min(82vw, 920px);
  max-width: none;
  object-fit: cover;
  object-position: center 26%;
  filter: saturate(1.25) brightness(1.08);
  pointer-events: none;
}

.venue-layout {
  position: relative;
  z-index: 2;
}

.venue-copy {
  color: rgba(5, 5, 5, 0.72);
  max-width: 610px;
}

.map-panel {
  position: relative;
  min-height: 450px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.7)),
    var(--black);
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(5, 5, 5, 0.2);
  box-shadow:
    14px 14px 0 var(--cyan),
    -12px -12px 0 var(--pink);
  transform: rotate(2deg);
}

.venue-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.18) contrast(1.04) brightness(0.92);
  transform: scale(1.04);
}

.map-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(5, 5, 5, 0) 0%,
      rgba(5, 5, 5, 0.12) 42%,
      rgba(5, 5, 5, 0.86) 100%
    ),
    linear-gradient(
      120deg,
      rgba(16, 228, 255, 0.12),
      transparent 38%,
      rgba(255, 0, 230, 0.16)
    );
  mix-blend-mode: normal;
}

.map-panel strong {
  position: relative;
  z-index: 3;
  font-family: var(--display);
  font-size: clamp(38px, 5vw, 68px);
  line-height: 0.9;
  text-transform: uppercase;
}

.map-panel p {
  position: relative;
  z-index: 3;
  margin: 14px 0 0;
}

.map-lines {
  position: absolute;
  inset: 18px;
  z-index: 2;
  background:
    linear-gradient(
      90deg,
      transparent 48%,
      rgba(255, 255, 255, 0.56) 49% 51%,
      transparent 52%
    ),
    linear-gradient(
      0deg,
      transparent 48%,
      rgba(255, 255, 255, 0.46) 49% 51%,
      transparent 52%
    );
  background-size: 82px 82px;
  opacity: 0.22;
  mix-blend-mode: screen;
}

.venue-palm {
  width: clamp(140px, 18vw, 260px);
  right: 6%;
  top: 12%;
  animation: chromeSwing 8s ease-in-out infinite;
}

.venue-plane {
  width: clamp(90px, 12vw, 160px);
  left: 7%;
  top: 16%;
  transform: rotate(-14deg);
  animation: flyBy 12s ease-in-out infinite;
}

.wishlist {
  min-height: auto;
  display: grid;
  align-items: start;
  justify-items: center;
  overflow: visible;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 0, 230, 0.24), transparent 34%),
    radial-gradient(
      circle at 10% 90%,
      rgba(16, 228, 255, 0.16),
      transparent 28%
    ),
    var(--black);
}

.terminal-shell {
  position: relative;
  z-index: 2;
  width: min(920px, 100%);
  margin-top: clamp(82px, 8vw, 125px);
}

.terminal {
  position: relative;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(8, 8, 10, 0.78);
  backdrop-filter: blur(18px);
  box-shadow:
    0 0 60px rgba(255, 0, 230, 0.22),
    inset 0 0 32px rgba(255, 255, 255, 0.07);
  scroll-margin-top: 120px;
}

.terminal-bar {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.16),
    rgba(16, 228, 255, 0.12),
    rgba(255, 0, 230, 0.16)
  );
}

.terminal-bar span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--pink);
}

.terminal-bar span:nth-child(2) {
  background: var(--cyan);
}

.terminal-bar span:nth-child(3) {
  background: var(--white);
}

.terminal-bar em {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--condensed);
  font-size: 18px;
  letter-spacing: 0.14em;
  font-style: normal;
}

.terminal-body {
  padding: clamp(26px, 5vw, 58px);
  text-align: center;
}

.terminal-body > p:not(.section-kicker) {
  max-width: 680px;
  margin-inline: auto;
  color: var(--text);
}

.wishlist-intro {
  margin-top: clamp(26px, 4vw, 46px) !important;
}

.wishlist-action {
  margin: 34px auto 0;
  width: min(720px, 100%);
  display: flex;
  justify-content: center;
}

.wishlist-action .btn {
  min-width: min(440px, 100%);
}

.wishlist-badge {
  width: clamp(130px, 14vw, 190px);
  left: 50%;
  right: auto;
  top: clamp(-230px, -16vw, -170px);
  z-index: 5;
  transform: translateX(-50%) rotate(-1deg);
  animation: badgeFloat 8s ease-in-out infinite;
  mix-blend-mode: normal;
  opacity: 1;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.5))
    drop-shadow(0 0 28px rgba(255, 0, 230, 0.45));
}

.cookie-popup {
  position: fixed;
  left: clamp(14px, 2.5vw, 34px);
  bottom: clamp(14px, 2.5vw, 34px);
  z-index: 140;
  width: min(520px, calc(100vw - 28px));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(8, 8, 10, 0.84);
  backdrop-filter: blur(18px);
  box-shadow:
    0 0 48px rgba(255, 0, 230, 0.26),
    0 0 30px rgba(16, 228, 255, 0.12),
    inset 0 0 32px rgba(255, 255, 255, 0.07);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.cookie-popup.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.cookie-popup__bar {
  height: 38px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.16),
    rgba(16, 228, 255, 0.12),
    rgba(255, 0, 230, 0.16)
  );
}

.cookie-popup__bar span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--pink);
}

.cookie-popup__bar span:nth-child(2) {
  background: var(--cyan);
}

.cookie-popup__bar span:nth-child(3) {
  background: var(--white);
}

.cookie-popup__bar em {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--condensed);
  font-size: 17px;
  letter-spacing: 0.14em;
  font-style: normal;
}

.cookie-popup__body {
  padding: clamp(20px, 3vw, 30px);
}

.cookie-popup__body .section-kicker {
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--cyan);
}

.cookie-popup__title,
.cookie-popup h2 {
  margin: 0;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(28px, 3.8vw, 42px);
  line-height: 0.92;
  text-transform: uppercase;
  text-shadow:
    4px 4px 0 rgba(255, 0, 230, 0.55),
    0 0 24px rgba(16, 228, 255, 0.34);
}

.cookie-popup__copy {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  color: var(--text);
}

.cookie-popup__copy p {
  margin: 0;
  font-size: clamp(13px, 1.35vw, 14.5px);
  line-height: 1.48;
}

.cookie-popup__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 22px;
}

.cookie-popup__button {
  min-height: 44px;
  padding: 10px 16px;
  color: var(--white);
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 250, 247, 0.08);
  box-shadow:
    0 8px 0 rgba(5, 5, 5, 0.72),
    inset 0 0 18px rgba(255, 255, 255, 0.05);
  transform: skew(-7deg);
  transition:
    transform 180ms ease,
    filter 180ms ease,
    box-shadow 180ms ease,
    opacity 180ms ease;
}

.cookie-popup__button:hover:not(:disabled) {
  transform: skew(-12deg) translateY(-3px);
  filter: saturate(1.25);
  box-shadow:
    0 11px 0 rgba(5, 5, 5, 0.76),
    0 0 26px rgba(16, 228, 255, 0.32);
}

.cookie-popup__button--accept {
  color: var(--black);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.65), transparent 42%),
    linear-gradient(135deg, var(--pink), var(--magenta) 48%, var(--cyan));
  border-color: rgba(255, 255, 255, 0.85);
  box-shadow:
    0 8px 0 rgba(5, 5, 5, 0.7),
    0 0 28px rgba(255, 0, 230, 0.46);
}

.cookie-popup__button--reject {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(5, 5, 5, 0.76), rgba(16, 228, 255, 0.12)),
    rgba(255, 255, 255, 0.04);
}

.cookie-popup__button--configure {
  color: var(--cyan);
  background:
    linear-gradient(135deg, rgba(16, 228, 255, 0.16), rgba(255, 0, 230, 0.08)),
    rgba(255, 250, 247, 0.04);
  border-color: rgba(16, 228, 255, 0.42);
}

.cookie-preferences {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: grid;
  place-items: center;
  padding: clamp(16px, 3vw, 34px);
  background:
    radial-gradient(circle at 16% 82%, rgba(16, 228, 255, 0.14), transparent 26%),
    radial-gradient(circle at 82% 18%, rgba(255, 0, 230, 0.18), transparent 24%),
    rgba(5, 5, 5, 0.66);
  backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
}

.cookie-preferences.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.cookie-preferences__panel {
  width: min(760px, 100%);
  max-height: min(820px, calc(100svh - 32px));
  overflow: hidden;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(8, 8, 10, 0.92);
  backdrop-filter: blur(18px);
  box-shadow:
    0 0 68px rgba(255, 0, 230, 0.28),
    0 0 40px rgba(16, 228, 255, 0.14),
    inset 0 0 32px rgba(255, 255, 255, 0.07);
  transform: translate3d(0, 18px, 0) scale(0.98);
  transition: transform 200ms ease;
}

.cookie-preferences.is-visible .cookie-preferences__panel {
  transform: translate3d(0, 0, 0) scale(1);
}

.cookie-preferences__bar {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.16),
    rgba(16, 228, 255, 0.12),
    rgba(255, 0, 230, 0.16)
  );
}

.cookie-preferences__bar span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--pink);
}

.cookie-preferences__bar span:nth-child(2) {
  background: var(--cyan);
}

.cookie-preferences__bar span:nth-child(3) {
  background: var(--white);
}

.cookie-preferences__bar em {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--condensed);
  font-size: 18px;
  letter-spacing: 0.14em;
  font-style: normal;
}

.cookie-preferences__close {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-left: 8px;
  color: var(--white);
  font-family: var(--display);
  font-size: 18px;
  line-height: 1;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(5, 5, 5, 0.32);
  cursor: pointer;
}

.cookie-preferences__body {
  max-height: calc(min(820px, 100svh - 32px) - 42px);
  overflow: auto;
  padding: clamp(22px, 4vw, 38px);
}

.cookie-preferences__body .section-kicker {
  margin-bottom: 12px;
  color: var(--cyan);
}

.cookie-preferences h2 {
  margin: 0;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(36px, 6vw, 64px);
  line-height: 0.9;
  text-transform: uppercase;
  text-shadow:
    5px 5px 0 rgba(255, 0, 230, 0.52),
    0 0 28px rgba(16, 228, 255, 0.35);
}

.cookie-preferences__intro,
.cookie-preferences__note {
  margin: 18px 0 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.5;
}

.cookie-preferences__list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.cookie-preference-card {
  position: relative;
  min-height: 94px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 38%),
    rgba(255, 250, 247, 0.04);
  box-shadow: inset 0 0 24px rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.cookie-preference-card.is-required {
  border-color: rgba(16, 228, 255, 0.42);
  background:
    linear-gradient(135deg, rgba(16, 228, 255, 0.16), rgba(255, 0, 230, 0.06)),
    rgba(255, 250, 247, 0.05);
}

.cookie-preference-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
  font-size: 15px;
}

.cookie-preference-card small {
  display: block;
  color: rgba(255, 250, 247, 0.72);
  font-size: 13.5px;
  line-height: 1.45;
}

.cookie-preference-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cookie-toggle {
  position: relative;
  width: 48px;
  height: 26px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 250, 247, 0.12);
  box-shadow: inset 0 0 14px rgba(0, 0, 0, 0.28);
}

.cookie-toggle::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: rgba(255, 250, 247, 0.84);
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.cookie-preference-card input:checked + .cookie-toggle {
  border-color: rgba(16, 228, 255, 0.8);
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  box-shadow: 0 0 18px rgba(16, 228, 255, 0.28);
}

.cookie-preference-card input:checked + .cookie-toggle::before {
  transform: translateX(22px);
  background: var(--white);
  box-shadow: 0 0 12px rgba(255, 250, 247, 0.54);
}

.cookie-preference-card input:focus-visible + .cookie-toggle {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

.cookie-preference-card input:disabled + .cookie-toggle {
  opacity: 0.82;
}

.cookie-preferences__note {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.cookie-preferences__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 24px;
}

.site-footer {
  padding: clamp(28px, 4vw, 54px) 22px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 36% 84%,
      rgba(16, 228, 255, 0.08),
      transparent 22%
    ),
    radial-gradient(circle at 12% 10%, rgba(255, 0, 230, 0.1), transparent 24%),
    var(--black);
  border-top: 1px solid rgba(255, 250, 247, 0.1);
}

.footer-tagline {
  display: none;
  width: min(1200px, 100%);
  margin: 0 auto 54px;
  font-family: var(--display);
  font-size: clamp(64px, 13vw, 190px);
  line-height: 0.82;
  text-transform: uppercase;
  background: linear-gradient(
    100deg,
    var(--white),
    var(--cyan),
    var(--magenta),
    var(--white)
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: chromeText 7s linear infinite;
}

.footer-row {
  width: min(1360px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(170px, 230px) minmax(520px, 760px) minmax(
      170px,
      230px
    );
  justify-content: center;
  gap: clamp(28px, 4vw, 72px);
  align-items: start;
  color: var(--white);
  font-size: 13px;
}

.footer-row img {
  width: clamp(190px, 16vw, 245px);
  height: auto;
  object-fit: contain;
  object-position: left top;
  background: transparent;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 18px rgba(255, 0, 230, 0.22));
}

.footer-main {
  width: min(820px, 100%);
  justify-self: center;
  display: grid;
  gap: 28px;
  align-content: start;
  justify-items: center;
  padding-top: 44px;
  text-align: center;
}

.footer-social {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2vw, 28px);
  flex-wrap: wrap;
  color: var(--white);
  font-family: var(--condensed);
  font-size: clamp(22px, 2vw, 30px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-copy {
  justify-self: end;
  align-self: center;
  margin: 0;
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
  white-space: nowrap;
}

.footer-main a:hover {
  color: var(--pink);
}

.footer-legal {
  width: min(720px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 247, 0.28);
  border-radius: 18px;
  background: rgba(255, 250, 247, 0.1);
  box-shadow:
    inset 0 0 18px rgba(255, 250, 247, 0.04),
    0 0 20px rgba(16, 228, 255, 0.06);
}

.footer-legal a {
  display: grid;
  place-items: center;
  min-width: 0;
  width: 100%;
  min-height: 38px;
  padding: 9px 18px;
  color: var(--white);
  font-family: var(--mono);
  font-size: clamp(9.5px, 0.72vw, 11px);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  text-align: center;
  border-right: 1px solid rgba(255, 250, 247, 0.12);
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.footer-legal a:last-child {
  border-right: 0;
}

.footer-legal a:hover {
  color: var(--white);
  background: rgba(255, 250, 247, 0.1);
  transform: none;
}

@keyframes marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes slowZoom {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.12) translate3d(-1.5%, 1%, 0);
  }
}

@keyframes liquidShift {
  from {
    transform: translateX(-3%) skewY(-2deg);
    opacity: 0.62;
  }
  to {
    transform: translateX(3%) skewY(2deg);
    opacity: 0.9;
  }
}

@keyframes floatRotate {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-8deg);
  }
  50% {
    transform: translate3d(0, -24px, 0) rotate(9deg);
  }
}

@keyframes chromeSwing {
  0%,
  100% {
    transform: translateY(0) rotate(-14deg);
  }
  50% {
    transform: translateY(-20px) rotate(-5deg);
  }
}

@keyframes flyBy {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-14deg);
  }
  50% {
    transform: translate3d(28px, -18px, 0) rotate(-4deg);
  }
}

@keyframes driftNoise {
  from {
    background-position:
      0 0,
      0 0,
      0 0;
  }
  to {
    background-position:
      83px 91px,
      -127px 139px,
      191px -211px;
  }
}

@keyframes chromeText {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 300% 50%;
  }
}

@keyframes lockFloat {
  0%,
  100% {
    translate: 0 0;
    filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.48))
      drop-shadow(0 0 22px rgba(16, 228, 255, 0.2));
  }
  50% {
    translate: 0 -18px;
    filter: drop-shadow(0 24px 30px rgba(0, 0, 0, 0.5))
      drop-shadow(0 0 32px rgba(255, 0, 230, 0.42));
  }
}

@keyframes badgeFloat {
  0%,
  100% {
    transform: translateX(-50%) translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateX(-50%) translateY(-16px) rotate(2deg);
  }
}

@keyframes badgeFloatMobile {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-12px) rotate(2deg);
  }
}

@media (max-width: 980px) {
  body {
    cursor: auto;
  }

  .cursor {
    display: none;
  }

  .identity-stamps {
    margin-top: 24px;
  }

  .floating-label {
    font-size: 16px;
  }

  .identity {
    min-height: auto;
    padding-top: clamp(60px, 9vw, 92px);
    padding-bottom: clamp(48px, 8vw, 78px);
    background: linear-gradient(
      180deg,
      var(--black),
      #111 30%,
      var(--cream) 30% 100%
    );
  }

  .identity .section-kicker {
    margin-bottom: clamp(18px, 4vw, 34px);
  }

  .manifesto {
    width: min(880px, calc(100% - 32px));
  }

  .manifesto .lead {
    padding-bottom: clamp(42px, 7vw, 70px);
  }

  .site-header {
    grid-template-columns: minmax(132px, 1fr) auto auto;
    height: auto;
  }

  .brand {
    height: 46px;
  }

  .brand img {
    width: 100%;
    height: 100%;
    transform: none;
  }

  .main-nav {
    display: none;
  }

  .mobile-menu {
    position: relative;
    display: block;
    justify-self: end;
    color: var(--white);
    font-family: var(--condensed);
    text-transform: uppercase;
  }

  .mobile-menu summary {
    width: 38px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0;
    color: rgba(255, 250, 247, 0.9);
    font-size: 0;
    letter-spacing: 0;
    list-style: none;
    cursor: pointer;
    border: 0;
    background: transparent;
    box-shadow: none;
    -webkit-appearance: none;
    appearance: none;
  }

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

  .mobile-menu summary::marker {
    content: '';
  }

  .mobile-menu summary::before {
    content: '';
    display: block;
    flex: 0 0 auto;
    width: 30px;
    height: 20px;
    background:
      linear-gradient(currentColor, currentColor) 0 0 / 100% 3px no-repeat,
      linear-gradient(currentColor, currentColor) 0 8px / 100% 3px no-repeat,
      linear-gradient(currentColor, currentColor) 0 16px / 100% 3px no-repeat;
    filter: drop-shadow(0 0 10px rgba(16, 228, 255, 0.35));
  }

  .mobile-menu[open] summary {
    color: var(--cyan);
    text-shadow: 0 0 14px rgba(16, 228, 255, 0.7);
  }

  .mobile-menu[open] summary::before {
    content: 'X';
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    color: var(--cyan);
    font-family: var(--display);
    font-size: 22px;
    line-height: 1;
    background: none;
  }

  .mobile-menu:not([open]) nav {
    display: none;
  }

  .mobile-menu nav {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    z-index: 102;
    width: min(310px, calc(100vw - 36px));
    padding: 10px;
    display: grid;
    gap: 8px;
    transform: none;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(5, 5, 5, 0.9);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    box-shadow:
      0 18px 44px rgba(0, 0, 0, 0.46),
      inset 0 0 28px rgba(255, 0, 230, 0.12);
  }

  .mobile-menu nav a {
    padding: 13px 14px;
    color: rgba(255, 250, 247, 0.86);
    font-size: 18px;
    letter-spacing: 0.1em;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(
      90deg,
      rgba(16, 228, 255, 0.1),
      rgba(255, 0, 230, 0.1)
    );
  }

  .nav-cta {
    justify-self: end;
  }

  .hero {
    min-height: 920px;
    align-items: start;
    padding-top: 124px;
  }

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

  .hero-copy {
    transform: none;
    max-width: 540px;
    text-align: center;
  }

  h1 {
    min-height: 350px;
    font-size: clamp(80px, 24vw, 155px);
  }

  .hero-main-title {
    min-height: 0;
  }

  .headline-k {
    left: 0;
  }

  .headline-festival {
    top: 128px;
    right: 0;
  }

  .headline-spain {
    left: 8%;
  }

  .hero-logo-card {
    right: 2%;
    bottom: 26%;
    width: min(210px, 46vw);
  }

  .artist-panels,
  .experience-layout,
  .venue-layout {
    grid-template-columns: 1fr;
  }

  .artist-panel,
  .artist-panel.tall {
    min-height: 300px;
  }

  .artist-panels {
    grid-template-columns: repeat(2, 1fr);
  }

  .chat-stack {
    min-height: 430px;
  }

  .chat-window,
  .ticket-strip,
  .photo-grid {
    position: relative;
    inset: auto;
    width: 100%;
    margin-bottom: 16px;
  }

  .chat-window {
    transform: rotate(-3deg);
  }

  .ticket-strip {
    width: min(360px, 88%);
    margin-left: auto;
    margin-right: 0;
    padding: 10px;
    gap: 7px;
    transform: rotate(4deg);
    z-index: 4;
  }

  .ticket-strip span {
    min-height: 34px;
  }

  .photo-grid {
    transform: rotate(-2deg);
    z-index: 3;
  }

  .footer-row {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .footer-main {
    padding-top: 0;
    justify-items: center;
    text-align: center;
  }

  .footer-copy {
    justify-self: center;
    text-align: center;
  }

  .footer-legal {
    width: min(620px, 100%);
    margin-top: 0;
  }

  .cookie-popup {
    left: 14px;
    bottom: 14px;
    width: calc(100vw - 28px);
  }

  .cookie-popup__actions {
    justify-content: stretch;
  }

  .cookie-popup__button {
    flex: 1 1 150px;
  }

  .cookie-preferences {
    padding: 14px;
  }

  .cookie-preferences__panel {
    width: 100%;
    max-height: calc(100svh - 28px);
  }

  .cookie-preferences__body {
    max-height: calc(100svh - 70px);
  }

  .cookie-preferences__actions {
    justify-content: stretch;
  }

  .cookie-preferences__actions .cookie-popup__button {
    flex: 1 1 180px;
  }

  .section-heading,
  .artist-copy,
  .experience-copy,
  .venue-copy,
  .terminal-body {
    text-align: center;
  }

  .venue-copy {
    margin-inline: auto;
  }
}

@media (max-width: 620px) {
  #margin-paragraph {
    padding-top: 2rem;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    grid-template-columns: 1fr auto auto;
    gap: 8px;
    padding: 8px;
  }

  .brand {
    height: 34px;
  }

  .brand img {
    width: 100%;
    height: 100%;
    transform: none;
  }

  .mobile-menu summary {
    width: 34px;
    height: 42px;
  }

  .mobile-menu nav {
    position: fixed;
    top: 72px;
    left: 10px;
    right: 10px;
    width: auto;
    transform: none;
  }

  .mobile-menu nav a {
    font-size: 17px;
  }

  .nav-cta {
    padding: 10px 9px;
    font-size: 12px;
    white-space: nowrap;
  }

  .hero {
    min-height: 820px;
    padding-inline: 14px;
  }

  .hero-meta {
    max-width: 230px;
    font-size: 19px;
  }

  h1 {
    min-height: 305px;
  }

  .hero-main-title {
    min-height: 0;
  }

  .headline-festival {
    top: 116px;
  }

  .headline-spain {
    bottom: 16px;
  }

  .hero-copy,
  .terminal-body {
    padding: 18px;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
    min-height: 50px;
    font-size: 14px;
  }

  .ticker span {
    --ticker-gap: 26px;
    font-size: 18px;
  }

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

  .section-heading {
    text-align: center;
  }

  .section-heading h2,
  .terminal h2 {
    font-size: clamp(46px, 17vw, 78px);
  }

  .terminal-shell {
    margin-top: 128px;
  }

  .experience-icon,
  .venue-palm,
  .venue-plane,
  .sticker-mic {
    display: none;
  }

  .wishlist-badge {
    display: block;
    position: absolute;
    left: 50%;
    top: -176px;
    width: min(160px, 44vw);
    margin: 0;
    transform: translateX(-50%) rotate(-1deg);
    animation-name: badgeFloat;
  }

  .chat-stack {
    min-height: auto;
  }

  .map-panel {
    min-height: 340px;
    transform: none;
    box-shadow:
      8px 8px 0 var(--cyan),
      -8px -8px 0 var(--pink);
  }

  .site-footer {
    padding: 78px 18px 28px;
  }

  .footer-tagline {
    margin-bottom: 42px;
    font-size: clamp(52px, 21vw, 116px);
    line-height: 0.78;
  }

  .footer-row {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 34px;
    text-align: center;
  }

  .footer-row img {
    width: min(300px, 72vw);
    height: auto;
    margin: 0 auto;
    object-position: center;
  }

  .footer-main {
    gap: 24px;
    width: min(620px, 100%);
    justify-items: center;
  }

  .footer-social {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .footer-social a {
    display: grid;
    place-items: center;
    min-width: 118px;
    min-height: 48px;
    padding: 10px 8px;
    color: var(--white);
    border: 1px solid rgba(255, 250, 247, 0.22);
    background: rgba(255, 250, 247, 0.045);
    box-shadow: inset 0 0 20px rgba(16, 228, 255, 0.08);
  }

  .footer-copy {
    margin: 0;
    color: var(--white);
    font-size: 12px;
    white-space: normal;
  }

  .footer-legal {
    width: min(620px, 100%);
    margin-top: 24px;
    border-radius: 16px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-legal a {
    flex-basis: 100%;
    min-height: 36px;
    padding: 8px 6px;
    font-size: clamp(7.5px, 2.1vw, 10px);
    border-right: 1px solid rgba(255, 250, 247, 0.1);
    border-bottom: 0;
  }

  .footer-legal a:last-child {
    border-right: 0;
    border-bottom: 0;
  }

  .cookie-popup {
    max-height: calc(100svh - 28px);
  }

  .cookie-popup__bar {
    height: 36px;
  }

  .cookie-popup__bar em {
    font-size: 15px;
  }

  .cookie-popup__body {
    padding: 18px;
  }

  .cookie-popup h2 {
    font-size: clamp(28px, 9vw, 36px);
  }

  .cookie-popup__copy p {
    font-size: 13px;
  }

  .cookie-popup__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cookie-popup__button {
    width: 100%;
    transform: skew(-5deg);
  }

  .cookie-popup__button:hover:not(:disabled) {
    transform: skew(-8deg) translateY(-2px);
  }

  .cookie-preferences__bar {
    height: 38px;
  }

  .cookie-preferences__bar em {
    font-size: 14px;
  }

  .cookie-preferences__close {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }

  .cookie-preferences__body {
    padding: 18px;
  }

  .cookie-preferences h2 {
    font-size: clamp(34px, 12vw, 48px);
  }

  .cookie-preferences__intro,
  .cookie-preferences__note {
    font-size: 13.5px;
  }

  .cookie-preference-card {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: auto;
    padding: 15px 13px;
  }

  .cookie-toggle {
    justify-self: end;
  }

  .cookie-preferences__actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}

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