@font-face {
  font-family: "Neue Haas";
  src: url("assets/fonts/nhg-medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Alte Haas";
  src: url("assets/fonts/alte-haas-regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Alte Haas";
  src: url("assets/fonts/alte-haas-bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

:root {
  --grey: #9b9898;
  --ink: #161515;
  --cream: #ded8c8;
  --signal: #ee4b31;
  --acid: #f0d000;
  --pad: clamp(18px, 3.2vw, 52px);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--grey);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--grey);
  color: var(--ink);
  font-family: "Neue Haas", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  letter-spacing: .012em;
}

body.intro-active,
body.menu-open { overflow: hidden; }

button,
input,
select,
a {
  color: inherit;
  font: inherit;
}

a { text-decoration: none; }
button { border: 0; }
img { display: block; max-width: 100%; }

::selection {
  background: var(--acid);
  color: var(--ink);
}

.blend-text {
  color: #fff;
  mix-blend-mode: difference;
}

.skip-link {
  position: fixed;
  z-index: 500;
  top: 10px;
  left: 10px;
  padding: 12px 16px;
  background: var(--acid);
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

/* Headliner intro */
.intro {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  background: #111;
  color: #fff;
  font-family: "Alte Haas", "Neue Haas", sans-serif;
  font-weight: 700;
  transition: opacity .7s var(--ease), visibility .7s;
}

.intro::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: .3;
  background-image: radial-gradient(rgba(255, 255, 255, .65) .6px, transparent .7px);
  background-size: 6px 6px;
  mix-blend-mode: overlay;
}

.intro.is-leaving {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-strip {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, .45);
  transform: translateY(-110%);
  animation: introStripIn 1.15s var(--ease) calc(var(--intro-order) * .55s) forwards;
}

.intro-strip:nth-child(even) { transform: translateY(110%); }

.intro-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.16) brightness(.68);
  transform: scale(1.18);
  animation: introImage 4s var(--ease) calc(var(--intro-order) * .55s) forwards;
}

.intro-strip--francis img { object-position: 48% 42%; }
.intro-strip--mahmut img { object-position: 50% 44%; }
.intro-strip--maison img { object-position: 53% 48%; }
.intro-strip--marten img { object-position: 61% 50%; }

.intro-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, .84));
}

.intro-strip p {
  position: absolute;
  z-index: 2;
  left: clamp(12px, 2vw, 28px);
  bottom: clamp(22px, 5vh, 70px);
  margin: 0;
  font-size: clamp(25px, 3vw, 62px);
  line-height: .94;
  letter-spacing: -.025em;
  font-weight: 700;
  text-transform: lowercase;
  opacity: 0;
  transform: translateY(20px);
  animation: introName .8s var(--ease) calc(1s + var(--intro-order) * .55s) forwards;
}

.intro-strip__number {
  position: absolute;
  z-index: 2;
  top: 22px;
  left: 22px;
  font-size: 12px;
  letter-spacing: .08em;
}

.intro-title {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: grid;
  place-content: center;
  text-align: center;
  pointer-events: none;
  opacity: 0;
  animation: introTitle 1.5s var(--ease) 3.35s forwards;
}

.intro-title strong {
  font-family: "Alte Haas", "Neue Haas", sans-serif;
  font-weight: 700;
  font-size: clamp(100px, 24vw, 430px);
  line-height: .72;
  letter-spacing: -.065em;
  color: var(--acid);
  -webkit-text-stroke: .028em currentColor;
  paint-order: stroke fill;
}

.intro-title small {
  margin-top: 28px;
  font-size: 12px;
  letter-spacing: .16em;
}

.intro-skip {
  position: absolute;
  z-index: 8;
  right: 20px;
  bottom: 18px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 0;
  background: #111;
  color: #fff;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
}

@keyframes introStripIn { to { transform: translateY(0); } }
@keyframes introImage { to { transform: scale(1); filter: grayscale(.2) contrast(1.08) brightness(.86); } }
@keyframes introName { to { opacity: 1; transform: translateY(0); } }
@keyframes introTitle {
  0% { opacity: 0; transform: scale(.9); }
  35%, 75% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.08); }
}

/* Background and site entrance */
.site {
  position: relative;
  min-height: 100vh;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .75s ease, transform .75s var(--ease);
}

body.site-ready .site { opacity: 1; transform: none; }
body.intro-skipped .site { transition-duration: .45s; }

.lava-field {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--grey);
  pointer-events: none;
}

.lava {
  position: absolute;
  display: block;
  width: 58vmax;
  aspect-ratio: 1;
  border-radius: 43% 57% 62% 38% / 47% 33% 67% 53%;
  filter: blur(58px);
  opacity: .55;
  mix-blend-mode: multiply;
  will-change: transform, border-radius;
}

.lava--one {
  left: -22vmax;
  top: 12vh;
  background: var(--signal);
  animation: lavaOne 15s ease-in-out infinite alternate;
}

.lava--two {
  right: -24vmax;
  top: -14vh;
  background: var(--acid);
  animation: lavaTwo 18s ease-in-out infinite alternate;
}

.lava--three { display: none; }

@keyframes lavaOne {
  to { transform: translate(34vw, 30vh) rotate(78deg) scale(.72); border-radius: 64% 36% 31% 69% / 57% 68% 32% 43%; }
}

@keyframes lavaTwo {
  to { transform: translate(-30vw, 62vh) rotate(-62deg) scale(.84); border-radius: 33% 67% 56% 44% / 66% 38% 62% 34%; }
}

.site-header,
main,
footer {
  position: relative;
  z-index: 2;
}

/* Header */
.site-header,
.site-header.is-scrolled {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  display: flex;
  justify-content: flex-end;
  padding: 16px var(--pad);
  background: transparent;
  pointer-events: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 9px;
  pointer-events: auto;
}

.ticket-menu { position: relative; }

.ticket-menu summary {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: var(--ink);
  color: var(--cream);
  font-size: 12px;
  letter-spacing: .07em;
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
}

.ticket-menu summary::-webkit-details-marker { display: none; }
.ticket-menu summary span { color: var(--acid); }

.ticket-menu__panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 230px;
  border: 1px solid rgba(255, 255, 255, .55);
  background: var(--ink);
  color: var(--cream);
}

.ticket-menu__panel a {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .22);
  font-size: 14px;
}

.ticket-menu__panel a:last-child { border-bottom: 0; }
.ticket-menu__panel a:hover { background: var(--acid); }

.ticket-menu__panel small {
  font-size: 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .62;
}

.menu-toggle {
  position: relative;
  width: 46px;
  height: 46px;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: var(--acid);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 13px;
  width: 20px;
  height: 1.5px;
  background: var(--ink);
  transition: width .25s ease;
}

.menu-toggle span:first-child { top: 19px; }
.menu-toggle span:last-child { top: 26px; width: 14px; }
.menu-toggle:hover span:last-child { width: 20px; }

.menu-panel {
  position: fixed;
  z-index: 210;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--pad);
  overflow-y: auto;
  background: var(--ink);
  color: var(--cream);
  clip-path: inset(0 0 100% 0);
  visibility: hidden;
  transition: clip-path .7s var(--ease), visibility .7s;
}

.menu-panel.is-open { clip-path: inset(0); visibility: visible; }

.menu-close {
  align-self: flex-end;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0;
  background: transparent;
  color: var(--cream);
  font-size: 12px;
  letter-spacing: .07em;
  text-transform: uppercase;
  cursor: pointer;
}

.menu-close span { color: var(--acid); font-size: 30px; line-height: 1; }

.menu-panel nav {
  display: grid;
  margin-block: 30px;
}

.menu-panel nav a {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(222, 216, 200, .18);
  font-size: clamp(42px, 8vh, 88px);
  line-height: .92;
  letter-spacing: 0;
}

.menu-panel nav a:hover { color: var(--acid); }

.menu-panel nav small {
  min-width: 24px;
  font-size: 11px;
  letter-spacing: .08em;
}

.menu-panel > p {
  margin: 0;
  font-size: 13px;
  line-height: 1.3;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image: radial-gradient(rgba(22, 21, 21, .55) .7px, transparent .9px);
  background-size: 8px 8px;
  mask-image: linear-gradient(to bottom, transparent, black 25%, black 76%, transparent);
  pointer-events: none;
}

.hero__center {
  position: relative;
  z-index: 3;
  width: min(1420px, 94vw);
  text-align: center;
}

.hero h1 {
  position: relative;
  display: inline-block;
  margin: 0;
  font-weight: 500;
}

.hero__word {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  font-family: "Alte Haas", "Neue Haas", sans-serif;
  font-weight: 700;
  font-size: clamp(165px, 29vw, 520px);
  line-height: .62;
  letter-spacing: 0;
  color: var(--signal);
  -webkit-text-stroke: .028em currentColor;
  paint-order: stroke fill;
}

.hero__word > span { display: block; }
.hero__word > span + span { margin-left: -.055em; }
.hero__word > span:nth-child(3) { margin-right: .035em; }

.hero__festival {
  position: absolute;
  z-index: 2;
  left: 78.8%;
  bottom: 2%;
  color: var(--cream);
  font-size: clamp(16px, 1.65vw, 30px);
  line-height: 1;
  letter-spacing: .01em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.hero__statement {
  margin: 0;
  font-size: clamp(18px, 2.15vw, 32px);
  letter-spacing: 0;
  word-spacing: .06em;
}

.hero__dates {
  width: min(940px, 86vw);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(24px, 4vw, 70px);
  margin: clamp(54px, 8vh, 88px) auto 0;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.hero__dates > span:first-child { text-align: right; }
.hero__dates > span:last-child { text-align: left; }

.hero__scroll {
  position: absolute;
  z-index: 4;
  bottom: 24px;
  left: 50%;
  display: grid;
  justify-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: .07em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero__scroll i {
  width: 1px;
  height: 38px;
  background: var(--ink);
  animation: pulseLine 1.8s ease-in-out infinite;
}

@keyframes pulseLine { 50% { transform: scaleY(.35); transform-origin: bottom; } }

/* Shared section system */
.section {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 92px var(--pad) 42px;
  overflow: hidden;
}

.section-head {
  display: block;
  margin-bottom: clamp(28px, 4vh, 48px);
}

.section-head .section-index { margin-bottom: 14px; }

.section-index {
  margin: 0;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.section-head h2,
.memory h2,
footer h2 {
  margin: 0;
  font-weight: 500;
  font-size: clamp(52px, 6.5vw, 116px);
  line-height: .94;
  letter-spacing: 0;
  word-spacing: .06em;
}

.section-note {
  margin: 0;
  max-width: 220px;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: .018em;
}

.locations .section-head h2 {
  white-space: nowrap;
  font-size: clamp(44px, 6vw, 108px);
}

/* Cities */
.location-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(18px, 2.5vw, 40px);
  perspective: 1600px;
}

.location-card {
  position: relative;
  flex: 0 1 min(34vw, calc(80svh - 232px), 500px);
  width: min(34vw, calc(80svh - 232px), 500px);
  min-width: 0;
  background: transparent;
  outline-offset: 5px;
}

.location-card__inner {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  transform-style: preserve-3d;
  transition: transform .72s var(--ease);
}

@media (hover: hover) {
  .location-card:hover .location-card__inner { transform: rotateY(180deg); }
}

.location-card.is-flipped .location-card__inner { transform: rotateY(180deg); }

.location-card__face {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.location-card__front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-card__back { transform: rotateY(180deg); }

.city-lineup {
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 3vw, 42px);
  background: var(--acid);
}

.city-lineup--warm { background: var(--signal); }

.city-lineup__label {
  margin: 0 0 auto;
  font-size: 12px;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.city-lineup ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.city-lineup li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: clamp(7px, 1.1vh, 12px) 0;
  border-bottom: 1px solid rgba(22, 21, 21, .24);
  font-size: clamp(22px, 2.25vw, 38px);
  line-height: 1;
  letter-spacing: 0;
  word-spacing: .04em;
}

.city-lineup li span {
  min-width: 22px;
  font-size: 10px;
  letter-spacing: .08em;
}

.location-card__ticket {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  padding: 0 16px;
  border: 0;
  border-radius: 0;
  background: var(--ink);
  color: var(--cream);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.location-card__ticket span { font-size: 18px; }
.location-card__ticket:hover { background: var(--acid); }

/* Headliners */

.artist-track {
  width: calc(100% + var(--pad));
  height: min(66svh, 700px);
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 31vw);
  gap: clamp(20px, 2.25vw, 34px);
  overflow-x: auto;
  padding: 0 var(--pad) 18px 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
  touch-action: pan-x;
}

.artist-track::-webkit-scrollbar { display: none; }

.artist-card {
  position: relative;
  min-height: 0;
  height: 100%;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: var(--ink);
  color: #fff;
  scroll-snap-align: start;
}

.artist-card::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: auto 0 0;
  height: 31%;
  background: rgba(22, 21, 21, .92);
  pointer-events: none;
}

.artist-card__image,
.artist-card__image img,
.artist-card__image video {
  width: 100%;
  height: 100%;
}

.artist-card__image {
  position: relative;
}

.artist-card__image img,
.artist-card__image video {
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: opacity .28s ease, transform .65s var(--ease);
}

.artist-card__image img {
  filter: saturate(.76) contrast(1.06);
}

.artist-card__image video {
  opacity: 0;
  transform: scale(1.025);
  pointer-events: none;
}

.artist-card.is-previewing .artist-card__image img { opacity: 0; }
.artist-card.is-previewing .artist-card__image video {
  opacity: 1;
  transform: scale(1);
}

.artist-card:nth-child(1) img { object-position: 50% 45%; }
.artist-card:nth-child(2) img { object-position: 50% 45%; }
.artist-card:nth-child(3) img { object-position: 54% 45%; }
.artist-card:nth-child(4) img { object-position: 60% 50%; }

.artist-card__count,
.artist-card__cities,
.artist-card h3 {
  position: absolute;
  z-index: 2;
}

.artist-card__count {
  top: 14px;
  left: 16px;
  margin: 0;
  font-size: 12px;
  letter-spacing: .08em;
}

.artist-card h3 {
  left: 20px;
  right: 52px;
  bottom: 22px;
  margin: 0;
  font-size: clamp(42px, 4.5vw, 72px);
  line-height: .94;
  letter-spacing: 0;
  word-spacing: .04em;
  font-weight: 500;
}

.artist-card__cities {
  right: 18px;
  bottom: 22px;
  margin: 0;
  font-size: 11px;
  letter-spacing: .06em;
  writing-mode: vertical-rl;
}

/* About */
.memory {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: var(--pad);
  background: var(--ink);
  color: var(--cream);
}

.memory__halftone {
  position: absolute;
  inset: 0;
  opacity: .5;
  background:
    radial-gradient(ellipse at 18% 42%, var(--signal) 0 12%, transparent 42%),
    radial-gradient(ellipse at 82% 62%, var(--acid) 0 10%, transparent 38%),
    radial-gradient(rgba(222, 216, 200, .55) .7px, transparent .9px);
  background-size: auto, auto, 8px 8px;
}

.memory__content {
  position: relative;
  z-index: 2;
  width: min(1180px, 92vw);
  text-align: center;
}

.memory h2 {
  margin-top: clamp(26px, 4vh, 48px);
  font-size: clamp(54px, 7.4vw, 126px);
  line-height: .94;
  letter-spacing: .006em;
  word-spacing: .1em;
  text-wrap: balance;
}

.memory__content > p:last-child {
  width: min(620px, 90%);
  margin: clamp(40px, 7vw, 88px) auto 0;
  font-size: clamp(18px, 1.8vw, 26px);
  line-height: 1.3;
  letter-spacing: .018em;
  word-spacing: .08em;
}

/* ZURI Nights */
.nights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, min(29vw, calc(80svh - 216px), 480px)));
  justify-content: center;
  gap: clamp(18px, 2.25vw, 34px);
}

.night-card {
  display: flex;
  flex-direction: column;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.night-card__media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.night-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.night-card--signup {
  color: var(--cream);
}

.night-card__announcement {
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 2.8vw, 40px);
  background: var(--ink);
}

.night-card__number,
.night-card__announcement p,
.night-card__action {
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.night-card__announcement p {
  margin: 28px 0 0;
}

.night-card__announcement h3 {
  margin: auto 0;
  font-size: clamp(36px, 4vw, 66px);
  font-weight: 500;
  line-height: .98;
  letter-spacing: 0;
  word-spacing: .05em;
}

.night-card__action {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 10px;
  padding: 0 16px;
  background: var(--ink);
  color: var(--cream);
}

/* Footer and form */
footer {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(520px, 1.22fr);
  grid-template-rows: auto auto;
  align-content: center;
  gap: clamp(38px, 6vw, 90px);
  padding: clamp(82px, 9vw, 130px) var(--pad) var(--pad);
  background: var(--signal);
  color: var(--ink);
}

footer .blend-text {
  color: inherit;
  mix-blend-mode: normal;
}

.footer-intro {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 70px;
}

.footer-wordmark,
.footer-wordmark .blend-text { color: var(--acid); }

.footer-wordmark {
  grid-column: 1;
  grid-row: 2;
  justify-self: start;
  align-self: start;
  margin: 0 0 clamp(52px, 4vw, 72px);
  font-family: "Alte Haas", "Neue Haas", sans-serif;
  font-weight: 700;
  font-size: min(18vw, 370px);
  line-height: .72;
  letter-spacing: -.065em;
  -webkit-text-stroke: .028em currentColor;
  paint-order: stroke fill;
}

.footer-intro h2 {
  max-width: 560px;
  margin: 18px 0 24px;
  font-size: clamp(52px, 6vw, 104px);
  line-height: .94;
}

.footer-intro div > p:last-child {
  max-width: 420px;
  margin: 0;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: .018em;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select {
  width: 100%;
  height: 54px;
  padding: 0 16px;
  border: 1px solid var(--ink);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 15px;
  letter-spacing: .02em;
  text-transform: none;
}

.contact-form input::placeholder { color: rgba(22, 21, 21, .68); }

.contact-form input:focus,
.contact-form select:focus { background: var(--acid); }

.phone-field {
  display: grid;
  grid-template-columns: minmax(145px, .38fr) 1fr;
  gap: 8px;
}

.contact-form button {
  min-height: 56px;
  border-radius: 0;
  background: var(--acid);
  color: var(--ink);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
}

.form-status {
  min-height: 18px;
  margin: 0;
  font-size: 12px;
  letter-spacing: .04em;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.footer-links nav {
  display: grid;
  align-content: start;
}

.footer-links p {
  margin: 0 0 16px;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-links a {
  width: fit-content;
  padding: 5px 0;
  font-size: 18px;
  letter-spacing: .015em;
}

.footer-links a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-meta {
  grid-column: 1;
  grid-row: 2;
  align-self: end;
  margin: 0;
  font-size: 13px;
  line-height: 1.35;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .locations .section-head h2 {
    font-size: clamp(38px, 7.7vw, 74px);
  }

  .location-card {
    flex-basis: min(42vw, calc(80svh - 232px), 460px);
    width: min(42vw, calc(80svh - 232px), 460px);
  }

  footer {
    grid-template-columns: minmax(240px, .72fr) minmax(440px, 1.28fr);
  }
}

@media (max-width: 820px) {
  .site-header,
  .site-header.is-scrolled { padding: 12px var(--pad); }

  .ticket-menu summary { min-height: 42px; gap: 16px; }

  .menu-toggle { width: 42px; height: 42px; }
  .menu-toggle span { left: 12px; width: 18px; }
  .menu-toggle span:first-child { top: 17px; }
  .menu-toggle span:last-child { top: 24px; width: 12px; }

  .menu-panel nav a { font-size: clamp(38px, 8vh, 68px); }

  .hero__center { width: 98vw; }

  .hero__word {
    gap: 0;
    font-size: 38vw;
    letter-spacing: 0;
  }

  .hero__word > span + span { margin-left: -.055em; }
  .hero__word > span:nth-child(3) { margin-right: .035em; }

  .hero__festival {
    left: 79%;
    bottom: 1%;
    font-size: 3.65vw;
  }

  .hero__dates {
    width: auto;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 54px;
  }

  .hero__statement { order: -1; margin-bottom: 10px; }
  .hero__dates > span { text-align: center !important; }

  .hero__scroll {
    right: var(--pad);
    left: auto;
    transform: none;
  }

  .section { padding: 84px var(--pad) 28px; }
  .section-head h2 { font-size: clamp(48px, 12vw, 82px); }

  .locations .section-head h2 {
    font-size: clamp(30px, 8.4vw, 58px);
  }

  .section-note { max-width: 155px; font-size: 13px; }

  .location-grid {
    width: calc(100% + var(--pad));
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    padding-right: var(--pad);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    touch-action: pan-x;
  }

  .location-grid::-webkit-scrollbar { display: none; }

  .location-card {
    flex: 0 0 min(78vw, calc(80svh - 180px), 420px);
    width: min(78vw, calc(80svh - 180px), 420px);
    scroll-snap-align: center;
  }

  .artist-track {
    height: 68svh;
    grid-auto-columns: minmax(270px, 80vw);
    gap: 22px;
  }

  .artist-card h3 { font-size: clamp(42px, 12vw, 68px); }

  .memory h2 {
    font-size: clamp(46px, 12vw, 82px);
    line-height: .98;
    word-spacing: .09em;
  }

  .nights { justify-content: center; }

  .nights-grid {
    width: calc(100% + var(--pad));
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(270px, 80vw);
    grid-template-columns: none;
    gap: 20px;
    overflow-x: auto;
    padding-right: var(--pad);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    touch-action: pan-x;
  }

  .nights-grid::-webkit-scrollbar { display: none; }

  .night-card { scroll-snap-align: center; }

  footer {
    display: block;
    min-height: 100svh;
    padding-top: 84px;
  }

  .footer-intro {
    display: grid;
    gap: 50px;
    margin-bottom: 64px;
  }

  .footer-wordmark {
    display: block;
    margin: 0 0 64px;
    text-align: left;
    font-size: 36vw;
  }
  .contact-form { margin-bottom: 58px; }
  .footer-links { margin-bottom: 64px; }
}

@media (max-width: 520px) {
  .intro-strip__number { top: 12px; left: 9px; }

  .intro-strip p {
    left: 7px;
    bottom: 18px;
    font-size: clamp(17px, 5vw, 30px);
  }

  .intro-title strong { font-size: 29vw; }
  .intro-skip { right: 12px; bottom: 10px; }
  .ticket-menu__panel { width: 210px; }
  .menu-panel nav a { font-size: 12vw; }

  .locations .section-head h2 {
    font-size: clamp(27px, 8.2vw, 43px);
  }

  .section-note { font-size: 11px; }
  .city-lineup { padding: 22px; }
  .city-lineup li { font-size: clamp(20px, 6.4vw, 29px); }
  .phone-field { grid-template-columns: 1fr; }
  .footer-links { gap: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .intro-title,
  .intro-strip,
  .intro-strip p {
    opacity: 1;
    transform: none;
  }
}
