:root {
  color-scheme: dark;
  --ink: #070709;
  --ink-soft: #121216;
  --paper: #f4f0ea;
  --paper-muted: #c9c2bc;
  --pink: #ff009d;
  --pink-dark: #b02a8a;
  --acid: #ccff00;
  --plum: #2e0a28;
  --white: #fff;
  --line-light: rgba(244, 240, 234, 0.32);
  --line-dark: rgba(7, 7, 9, 0.22);
  --page-padding: clamp(20px, 4.3vw, 72px);
  --display-font: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  --body-font: "Helvetica Neue", Arial, ui-sans-serif, system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--ink);
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--body-font);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  font: inherit;
}

a {
  color: inherit;
}

button {
  color: inherit;
}

h1,
h2,
h3,
p,
figure {
  margin-top: 0;
}

figure {
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
}

h1,
h2,
h3 {
  font-family: var(--display-font);
  font-weight: 900;
  letter-spacing: -0.055em;
  text-wrap: balance;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 7.2vw, 7.8rem);
  line-height: 0.84;
}

p {
  line-height: 1.45;
}

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

:focus-visible {
  outline: 3px solid var(--acid);
  outline-offset: 4px;
  box-shadow: 0 0 0 3px var(--ink);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  transform: translateY(-180%);
  background: var(--paper);
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

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

.announcement {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 6vw, 84px);
  border-bottom: 1px solid var(--line-light);
  padding: 8px var(--page-padding);
  background: var(--pink);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid var(--line-light);
  padding: 10px var(--page-padding);
  background: rgba(7, 7, 9, 0.88);
  backdrop-filter: blur(18px);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--paper-muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.language-switch a {
  border-bottom: 2px solid transparent;
  padding: 8px 2px 6px;
  color: inherit;
  text-decoration: none;
}

.language-switch a:hover,
.language-switch a:focus-visible,
.language-switch a[aria-current="page"] {
  border-bottom-color: var(--pink);
  color: var(--paper);
}

.festival-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--paper);
  text-decoration: none;
}

.festival-mark__kite {
  width: clamp(94px, 9vw, 132px);
  height: auto;
}

.festival-mark__anniversary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-left: 1px solid var(--line-light);
  padding-left: 10px;
}

.festival-mark__anniversary strong {
  color: var(--pink);
  font-family: var(--display-font);
  font-size: 2.25rem;
  letter-spacing: -0.1em;
  line-height: 0.72;
}

.festival-mark__anniversary span {
  font-family: var(--display-font);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 0.9;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 48px);
}

.site-nav a {
  position: relative;
  padding: 10px 0;
  color: var(--paper);
  font-size: 0.78rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--pink);
  content: "";
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-ticket,
.mobile-buy > a[data-primary-cta] {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 18px;
  background: var(--pink);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  border: 0;
  padding: 10px;
  background: transparent;
}

.menu-toggle span:not(.sr-only) {
  width: 24px;
  height: 2px;
  display: block;
  margin: 5px 0;
  background: var(--paper);
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  min-height: calc(100svh - 106px);
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid var(--line-light);
}

.hero__media,
.hero__wash,
.hero__grid {
  position: absolute;
  z-index: -3;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  filter: saturate(0.94) contrast(1.06);
}

.hero__wash {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7, 7, 9, 0.96) 0%, rgba(7, 7, 9, 0.74) 42%, rgba(7, 7, 9, 0.12) 78%),
    linear-gradient(0deg, rgba(7, 7, 9, 0.92) 0%, rgba(7, 7, 9, 0.05) 65%),
    linear-gradient(135deg, rgba(255, 0, 157, 0.33), transparent 45%);
}

.route-pass .hero__wash {
  background:
    linear-gradient(90deg, rgba(7, 7, 9, 0.92) 0%, rgba(7, 7, 9, 0.54) 48%, rgba(7, 7, 9, 0.08) 78%),
    linear-gradient(0deg, rgba(7, 7, 9, 0.88) 0%, rgba(7, 7, 9, 0.08) 72%),
    linear-gradient(135deg, rgba(204, 255, 0, 0.2), transparent 44%);
}

.route-shame .hero__wash {
  background:
    linear-gradient(90deg, rgba(7, 7, 9, 0.96) 0%, rgba(46, 10, 40, 0.62) 53%, rgba(7, 7, 9, 0.16) 82%),
    linear-gradient(0deg, rgba(7, 7, 9, 0.93) 0%, rgba(7, 7, 9, 0.04) 70%);
}

.hero__grid {
  z-index: -1;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(244, 240, 234, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 240, 234, 0.18) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(90deg, #000, transparent 78%);
}

.hero__content {
  width: min(1420px, 100%);
  padding: clamp(80px, 10vh, 130px) var(--page-padding) clamp(52px, 7vh, 86px);
}

.hero__partner-lockup {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 26px;
  color: var(--paper-muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.kite-bar-presenter {
  width: clamp(150px, 15vw, 210px);
  height: auto;
  object-fit: contain;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--paper-muted);
  font-size: clamp(0.72rem, 1vw, 0.9rem);
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow--dark {
  color: rgba(7, 7, 9, 0.64);
}

.hero h1 {
  max-width: 1120px;
  margin-bottom: 26px;
  font-size: clamp(4.4rem, 11.5vw, 12rem);
  line-height: 0.72;
}

.hero__lead,
.hero__headline,
.hero__suffix {
  display: block;
}

.hero__lead {
  color: var(--paper);
  font-size: 0.2em;
  letter-spacing: 0.015em;
  line-height: 1;
}

.hero__headline {
  margin-top: 0.09em;
  color: var(--pink);
  text-shadow: 0.045em 0.045em 0 rgba(7, 7, 9, 0.86);
}

.hero__suffix {
  max-width: 18ch;
  margin-top: 0.3em;
  color: var(--paper);
  font-size: 0.145em;
  letter-spacing: 0.02em;
  line-height: 1.05;
  text-shadow: none;
}

.hero__suffix:empty {
  display: none;
}

.route-dara .hero h1 {
  max-width: 1240px;
}

.route-dara .hero__lead {
  font-size: 0.4em;
  letter-spacing: -0.035em;
}

.route-dara .hero__headline {
  margin-top: 0.035em;
  font-size: 1.04em;
}

.route-dara .hero__suffix {
  max-width: none;
  margin-top: 0.24em;
  font-size: 0.18em;
  letter-spacing: 0.035em;
  line-height: 0.95;
}

.route-pass .hero__headline {
  color: var(--acid);
  font-size: 0.82em;
}

.route-bks .hero__headline {
  color: var(--acid);
  font-size: 0.88em;
  line-height: 0.85;
}

.route-shame .hero__headline {
  max-width: 12ch;
  color: var(--paper);
  font-size: 0.86em;
  line-height: 0.86;
  text-shadow: 0.055em 0.055em 0 var(--pink-dark);
}

.hero__subheadline {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(1.05rem, 2vw, 1.42rem);
  font-weight: 700;
  line-height: 1.35;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero__meta span {
  border: 1px solid var(--line-light);
  padding: 8px 11px;
  background: rgba(7, 7, 9, 0.32);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.hero__actions,
.event-feature__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  border: 2px solid var(--paper);
  padding: 0 22px;
  background: transparent;
  color: var(--paper);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translate(-3px, -3px);
}

.button--primary {
  border-color: var(--pink);
  background: var(--pink);
  box-shadow: 6px 6px 0 var(--paper);
  color: var(--ink);
}

.route-pass .hero .button--primary {
  border-color: var(--acid);
  background: var(--acid);
}

.button--ghost {
  background: rgba(7, 7, 9, 0.54);
}

.button--ink {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
  box-shadow: 6px 6px 0 var(--paper);
}

.button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.62;
}

.button[aria-disabled="true"]:hover {
  transform: none;
}

.ticket-card__button--pending {
  cursor: help;
  opacity: 0.72;
}

.hero__edition {
  position: absolute;
  right: var(--page-padding);
  bottom: 30px;
  margin: 0;
  color: rgba(244, 240, 234, 0.56);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  writing-mode: vertical-rl;
}

.facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line-light);
}

.fact {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-right: 1px solid var(--line-light);
  padding: clamp(24px, 3vw, 44px);
  background: var(--ink-soft);
}

.fact:nth-child(2) {
  background: var(--paper);
  color: var(--ink);
}

.fact:nth-child(3) {
  background: var(--pink);
  color: var(--ink);
}

.fact:nth-child(4) {
  background: var(--acid);
  color: var(--ink);
}

.fact:last-child {
  border-right: 0;
}

.fact strong {
  font-family: var(--display-font);
  font-size: clamp(3.7rem, 7vw, 7.8rem);
  letter-spacing: -0.09em;
  line-height: 0.72;
}

.fact span {
  margin-top: 20px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section {
  position: relative;
  padding: clamp(72px, 9vw, 138px) var(--page-padding);
}

.section--paper {
  background: var(--paper);
  color: var(--ink);
}

.section--ink {
  border-bottom: 1px solid var(--line-light);
  background: var(--ink);
  color: var(--paper);
}

.section--pink {
  background: var(--pink);
  color: var(--ink);
}

.section-heading {
  position: relative;
  z-index: 1;
  max-width: 1220px;
  margin-bottom: clamp(42px, 6vw, 82px);
}

.section-heading--split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: clamp(34px, 7vw, 110px);
  align-items: end;
}

.section-heading--split h2 {
  max-width: 980px;
  margin-bottom: 0;
}

.section-heading--split > p,
.section-intro {
  max-width: 620px;
  margin-bottom: 0;
  font-size: clamp(1rem, 1.5vw, 1.24rem);
  font-weight: 700;
}

.tickets__release-note {
  max-width: 840px;
  margin: clamp(-48px, -4vw, -28px) 0 clamp(42px, 5vw, 64px);
  display: grid;
  gap: 6px;
  padding: 18px 22px;
  border-left: 6px solid var(--pink);
  background: var(--ink);
  box-shadow: 8px 8px 0 var(--pink);
  color: rgba(247, 242, 236, 0.86);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.45;
}

.tickets__release-note strong {
  color: var(--pink);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

.ticket-grid[data-ticket-group="dara"] {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.ticket-card {
  position: relative;
  min-width: 0;
  min-height: 510px;
  display: flex;
  flex-direction: column;
  border: 2px solid var(--ink);
  padding: clamp(24px, 3vw, 38px);
  background: var(--paper);
  color: var(--ink);
}

.ticket-card--featured {
  transform: translateY(-18px);
  background: var(--pink);
  box-shadow: 12px 12px 0 var(--ink);
  color: var(--ink);
}

.ticket-grid--pass .ticket-card {
  border-color: var(--paper);
  background: rgba(7, 7, 9, 0.86);
  color: var(--paper);
  backdrop-filter: blur(12px);
}

.ticket-grid--pass .ticket-card--featured {
  border-color: var(--acid);
  background: var(--acid);
  box-shadow: 12px 12px 0 var(--paper);
  color: var(--ink);
}

.ticket-card__topline {
  min-height: 42px;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 36px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ticket-card__topline span:last-child {
  text-align: right;
  opacity: 0.62;
}

.ticket-card h3 {
  max-width: 12ch;
  margin-bottom: 22px;
  font-size: clamp(2.25rem, 4vw, 4.5rem);
  line-height: 0.84;
  overflow-wrap: anywhere;
}

.ticket-card__price {
  margin-bottom: 30px;
  font-family: var(--display-font);
  font-size: clamp(3rem, 5.4vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.76;
}

.ticket-card__next {
  display: block;
  margin-top: 14px;
  font-family: var(--body-font);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  opacity: 0.62;
}

.ticket-card ul {
  display: grid;
  gap: 0;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.ticket-card li {
  border-top: 1px solid currentColor;
  padding: 12px 0;
  font-size: 0.88rem;
  font-weight: 700;
}

.ticket-card li::before {
  margin-right: 10px;
  color: var(--pink);
  content: "/";
  font-weight: 900;
}

.ticket-card--featured li::before,
.ticket-grid--pass .ticket-card li::before {
  color: currentColor;
}

.ticket-card__button {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  border: 2px solid currentColor;
  padding: 0 18px;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.78rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.ticket-card--featured .ticket-card__button {
  background: var(--paper);
  color: var(--ink);
}

.ticket-disclaimer {
  max-width: 820px;
  margin: 44px 0 0;
  border-left: 4px solid var(--pink);
  padding-left: 18px;
  font-size: 0.9rem;
  font-weight: 700;
}

.pass {
  min-height: 850px;
  isolation: isolate;
  overflow: hidden;
}

.pass__media,
.pass__shade {
  position: absolute;
  z-index: -2;
  inset: 0;
}

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

.pass__shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 7, 9, 0.96), rgba(7, 7, 9, 0.62) 60%, rgba(7, 7, 9, 0.35)),
    linear-gradient(0deg, rgba(7, 7, 9, 0.94), rgba(7, 7, 9, 0.04) 75%);
}

.pass__content {
  position: relative;
  z-index: 1;
}

.pass-comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0 0 34px;
  border: 1px solid var(--line-light);
  background: var(--line-light);
}

.pass-comparison__card {
  min-width: 0;
  display: grid;
  gap: 8px;
  padding: clamp(20px, 2.5vw, 30px);
  background: rgba(7, 7, 9, 0.9);
  color: var(--paper);
}

.pass-comparison__card--featured {
  background: var(--acid);
  color: var(--ink);
}

.pass-comparison__label,
.pass-comparison__meta {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pass-comparison__meta {
  opacity: 0.68;
}

.pass-comparison__price {
  font-family: var(--display-font);
  font-size: clamp(3.3rem, 6vw, 6.4rem);
  letter-spacing: -0.07em;
  line-height: 0.82;
}

.pass-comparison__delta {
  grid-column: 1 / -1;
  margin: 0;
  padding: 15px 20px;
  background: var(--ink);
  color: var(--acid);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pass h2 {
  color: var(--acid);
}

.night-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr) minmax(0, 0.82fr);
  gap: 16px;
  align-items: stretch;
}

.night-card {
  min-height: 540px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line-light);
  padding: clamp(24px, 3vw, 38px);
  background: var(--ink-soft);
}

.night-card--shame {
  background: var(--plum);
}

.night-card--dara {
  min-height: 620px;
  transform: translateY(-30px);
  background: var(--pink);
  color: var(--ink);
}

.night-card--bks {
  background: var(--paper);
  color: var(--ink);
}

.night-card__index {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: auto;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.night-card__brand {
  display: block;
  width: auto;
  max-width: 100%;
  margin: 42px 0 24px;
  object-fit: contain;
  object-position: left center;
}

.night-card__brand--shame {
  width: min(190px, 68%);
  max-height: 118px;
}

.night-card__brand--dara {
  width: 104px;
  height: 104px;
}

.night-card__brand--bks {
  width: 52px;
  max-height: 94px;
}

.night-card h3 {
  margin: 48px 0 18px;
  font-size: clamp(2.7rem, 5vw, 5.8rem);
  line-height: 0.82;
}

.night-card--dara h3 {
  font-size: clamp(7rem, 11vw, 12rem);
  line-height: 0.7;
}

.night-card p {
  max-width: 44ch;
  margin-bottom: 28px;
  font-size: 0.98rem;
  font-weight: 700;
}

.night-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  border-top: 1px solid currentColor;
  padding-top: 16px;
}

.night-card__links a {
  font-size: 0.74rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.scale-story {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
  min-height: 760px;
  border-bottom: 1px solid var(--line-light);
  background: var(--ink);
}

.scale-story__media {
  min-height: 600px;
}

.scale-story__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scale-story__copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(48px, 7vw, 104px) var(--page-padding);
  background: var(--acid);
  color: var(--ink);
}

.scale-story__copy .eyebrow {
  color: rgba(7, 7, 9, 0.66);
}

.scale-story__copy h2 {
  font-size: clamp(3.4rem, 6.7vw, 7.2rem);
}

.scale-story__copy p:last-child {
  max-width: 52ch;
  margin-bottom: 0;
  font-size: 1.06rem;
  font-weight: 700;
}

.dara-story {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(38px, 7vw, 110px);
  align-items: end;
}

.dara-story__copy {
  padding-bottom: 26px;
}

.story-brand {
  display: block;
  object-fit: contain;
}

.story-brand--hot-pop {
  width: clamp(128px, 11vw, 176px);
  height: auto;
  margin-bottom: 26px;
}

.dara-story__copy h2 {
  max-width: 7ch;
  font-size: clamp(5rem, 8.8vw, 9.8rem);
  line-height: 0.76;
}

.dara-story__copy h2 span,
.dara-story__copy h2 small {
  display: block;
}

.dara-story__copy h2 small {
  margin-top: 0.14em;
  font-size: 0.46em;
  letter-spacing: 0.02em;
  line-height: 0.88;
}

.dara-story__copy .dara-story__milestone {
  width: fit-content;
  max-width: 100%;
  margin: 22px 0 20px;
  padding: 9px 0 8px;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.dara-story__copy p:not(.eyebrow) {
  max-width: 50ch;
  margin-bottom: 30px;
  font-size: 1.05rem;
  font-weight: 700;
}

.dara-story__portrait {
  position: relative;
  overflow: hidden;
  border: 2px solid var(--ink);
  background: var(--pink-dark);
  box-shadow: 16px 16px 0 var(--ink);
}

.dara-story__portrait img {
  width: 100%;
  height: auto;
  min-height: 500px;
  aspect-ratio: 1.45 / 1;
  object-fit: contain;
  object-position: center center;
  background: #fff;
  filter: saturate(0.92) contrast(1.04);
}

.dara-story__portrait figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 12px 16px;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.event-feature {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid var(--line-light);
}

.event-feature__media,
.event-feature__shade {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.event-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-feature__shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 7, 9, 0.96), rgba(7, 7, 9, 0.38) 72%, transparent),
    linear-gradient(0deg, rgba(7, 7, 9, 0.9), rgba(7, 7, 9, 0.03) 72%);
}

.event-feature--shame .event-feature__shade {
  background:
    linear-gradient(90deg, rgba(46, 10, 40, 0.97), rgba(46, 10, 40, 0.48) 66%, rgba(7, 7, 9, 0.1)),
    linear-gradient(0deg, rgba(7, 7, 9, 0.92), rgba(7, 7, 9, 0.03) 72%);
}

.event-feature__content {
  width: min(960px, 100%);
  padding: clamp(80px, 12vw, 160px) var(--page-padding) clamp(60px, 8vw, 110px);
}

.event-feature__brand {
  display: block;
  margin-bottom: 24px;
  object-fit: contain;
  object-position: left center;
}

.event-feature__brand--shame {
  width: min(220px, 42vw);
  max-height: 112px;
}

.event-feature__brand--bks {
  width: 58px;
  max-height: 102px;
}

.event-feature__index {
  margin-bottom: 20px;
  color: var(--paper-muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.event-feature h2 {
  margin-bottom: 28px;
  font-size: clamp(5rem, 12vw, 13rem);
  line-height: 0.7;
}

.event-feature--shame h2 {
  text-shadow: 0.06em 0.06em 0 var(--pink-dark);
}

.event-feature--bks h2 {
  color: var(--acid);
  font-size: clamp(4rem, 8vw, 8.5rem);
}

.event-feature__content > p:not(.eyebrow, .event-feature__index) {
  max-width: 650px;
  margin-bottom: 0;
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 700;
}

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

.reservation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 2px solid var(--ink);
  background: var(--ink);
  gap: 2px;
}

.reservation-option {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3vw, 40px);
  background: var(--acid);
}

.reservation-option--featured {
  background: var(--pink);
}

.reservation-option__index {
  margin-bottom: auto;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.reservation-option h3 {
  margin: 54px 0 14px;
  font-size: clamp(2.6rem, 5vw, 5.6rem);
  line-height: 0.78;
}

.reservation-option p {
  margin-bottom: 18px;
  font-size: 0.92rem;
  font-weight: 900;
  text-transform: uppercase;
}

.reservation-option strong {
  font-family: var(--display-font);
  font-size: clamp(3rem, 5vw, 5.6rem);
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.reservation-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 2px solid var(--ink);
  border-top: 0;
  padding: clamp(24px, 3vw, 38px);
}

.reservation-contact p {
  margin-bottom: 0;
  font-size: clamp(0.96rem, 1.5vw, 1.18rem);
  font-weight: 700;
}

.reservation-contact .button {
  flex: 0 0 auto;
  box-shadow: 6px 6px 0 var(--paper);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 2px solid var(--ink);
}

.info-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  border-right: 2px solid var(--ink);
  padding: 30px;
}

.info-card:last-child {
  border-right: 0;
}

.info-card__number {
  margin-bottom: auto;
  font-size: 0.74rem;
  font-weight: 900;
}

.info-card h3 {
  margin: 50px 0 14px;
  font-size: clamp(2rem, 3.2vw, 3.7rem);
  line-height: 0.84;
}

.info-card p {
  margin-bottom: 18px;
  font-size: 0.92rem;
  font-weight: 700;
}

.info-card a {
  width: fit-content;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.faq-list {
  border-top: 1px solid var(--line-light);
}

.faq-item {
  border-bottom: 1px solid var(--line-light);
}

.faq-item summary {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--display-font);
  font-size: clamp(1.25rem, 2.5vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.95;
  text-transform: uppercase;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  color: var(--pink);
  content: "+";
  font-size: 2rem;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item__index {
  color: var(--paper-muted);
  font-family: var(--body-font);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.faq-item p {
  max-width: 820px;
  margin: 0 0 30px 70px;
  color: var(--paper-muted);
  font-size: 1rem;
  font-weight: 600;
}

.final-cta {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
}

.final-cta__media,
.final-cta__shade {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.final-cta__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.final-cta__shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 7, 9, 0.96), rgba(7, 7, 9, 0.3) 72%),
    linear-gradient(0deg, rgba(7, 7, 9, 0.92), rgba(7, 7, 9, 0.08) 70%);
}

.final-cta__content {
  padding: clamp(80px, 12vw, 160px) var(--page-padding) clamp(70px, 9vw, 120px);
}

.final-cta h2 {
  max-width: 1100px;
  margin-bottom: 30px;
  color: var(--acid);
  font-size: clamp(4.2rem, 10vw, 11rem);
  line-height: 0.72;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  padding: 0 var(--page-padding) 54px;
  background: var(--ink);
  color: var(--paper-muted);
}

.footer-brand-rail {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.45fr 1fr 0.9fr 0.7fr;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.footer-brand {
  min-height: 170px;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line-light);
  padding: 28px;
  text-decoration: none;
  transition: background 160ms ease;
}

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

.footer-brand:hover,
.footer-brand:focus-visible {
  background: rgba(204, 255, 0, 0.08);
}

.footer-brand img {
  width: auto;
  max-width: 100%;
  max-height: 92px;
  object-fit: contain;
}

.footer-brand--kite img {
  width: min(230px, 100%);
}

.footer-brand--shame img {
  width: min(180px, 100%);
}

.footer-brand--hot-pop img {
  width: 78px;
  height: 78px;
}

.footer-brand--bks img {
  width: 48px;
  max-height: 96px;
}

.site-footer p {
  margin-bottom: 0;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px 18px;
}

.site-footer__links a,
.site-footer__links button {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 700;
  text-decoration: underline;
}

.site-footer__note {
  justify-self: end;
  opacity: 0.52;
}

.mobile-buy {
  display: none;
}

.toast {
  position: fixed;
  z-index: 600;
  right: 20px;
  bottom: 20px;
  max-width: min(440px, calc(100% - 40px));
  border: 2px solid var(--paper);
  padding: 16px 18px;
  background: var(--ink);
  box-shadow: 7px 7px 0 var(--pink);
  color: var(--paper);
  font-size: 0.84rem;
  font-weight: 800;
}

.toast[hidden] {
  display: none;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto 1fr auto auto;
  }

  .menu-toggle {
    display: block;
    order: 2;
  }

  .site-nav {
    position: fixed;
    z-index: 90;
    top: 72px;
    right: 0;
    left: 0;
    min-height: calc(100svh - 72px);
    display: grid;
    align-content: center;
    justify-items: start;
    gap: 4px;
    padding: 40px var(--page-padding) 100px;
    transform: translateY(-120%);
    visibility: hidden;
    background: var(--ink);
    pointer-events: none;
    transition: transform 220ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
  }

  .site-nav a {
    font-family: var(--display-font);
    font-size: clamp(2.5rem, 8vw, 5.6rem);
    letter-spacing: -0.06em;
    line-height: 0.95;
  }

  .header-ticket {
    grid-column: 5;
  }

  .language-switch {
    grid-column: 4;
  }

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

  .ticket-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    min-height: 420px;
  }

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

  .night-card,
  .night-card--dara {
    min-height: 420px;
    transform: none;
  }

  .scale-story {
    grid-template-columns: 1fr;
  }

  .scale-story__media {
    min-height: 62svh;
  }

  .dara-story {
    grid-template-columns: 1fr;
  }

  .dara-story__portrait {
    width: min(900px, 100%);
  }
}

@media (max-width: 760px) {
  :root {
    --page-padding: 20px;
  }

  html {
    scroll-padding-top: 72px;
  }

  body {
    padding-bottom: calc(74px + env(safe-area-inset-bottom));
  }

  .announcement {
    min-height: 30px;
    justify-content: space-between;
    gap: 8px;
    padding: 7px 10px;
    font-size: 0.55rem;
    letter-spacing: 0.03em;
  }

  .announcement span:nth-child(3) {
    display: none;
  }

  .site-header {
    min-height: 62px;
    grid-template-columns: auto 1fr auto auto;
    gap: 10px;
    padding: 8px 14px;
  }

  .festival-mark__kite {
    width: 84px;
  }

  .festival-mark__anniversary {
    gap: 6px;
    padding-left: 8px;
  }

  .festival-mark__anniversary strong {
    font-size: 1.75rem;
  }

  .festival-mark__anniversary span {
    font-size: 0.46rem;
  }

  .menu-toggle {
    grid-column: 4;
    order: initial;
  }

  .language-switch {
    grid-column: 3;
    gap: 4px;
    font-size: 0.64rem;
  }

  .header-ticket {
    display: none;
  }

  .site-nav {
    top: 62px;
    min-height: calc(100svh - 62px);
  }

  .hero {
    min-height: calc(100svh - 92px);
  }

  .hero__media img {
    object-position: 58% center;
  }

  .route-shame .hero__media img {
    object-position: center;
  }

  .hero__wash {
    background:
      linear-gradient(0deg, rgba(7, 7, 9, 0.96) 0%, rgba(7, 7, 9, 0.55) 54%, rgba(7, 7, 9, 0.14) 88%),
      linear-gradient(135deg, rgba(255, 0, 157, 0.42), transparent 54%);
  }

  .hero__grid {
    background-size: 54px 54px;
  }

  .hero__content {
    padding-top: 130px;
    padding-bottom: 38px;
  }

  .hero__partner-lockup {
    margin-bottom: 20px;
  }

  .kite-bar-presenter {
    width: 150px;
  }

  .hero h1 {
    margin-bottom: 22px;
    font-size: clamp(4.2rem, 23vw, 7.2rem);
  }

  .hero__lead {
    font-size: 0.2em;
  }

  .hero__suffix {
    max-width: 20ch;
    font-size: 0.15em;
  }

  .route-dara .hero__lead {
    font-size: 0.3em;
  }

  .route-dara .hero__headline {
    font-size: 1em;
  }

  .route-shame .hero__headline {
    font-size: 0.78em;
  }

  .route-pass .hero__headline {
    font-size: 0.76em;
  }

  .hero__subheadline {
    font-size: 1rem;
  }

  .hero__meta span {
    padding: 7px 8px;
    font-size: 0.62rem;
  }

  .hero__actions {
    display: grid;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__edition {
    display: none;
  }

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

  .fact {
    min-height: 170px;
    border-bottom: 1px solid var(--line-light);
    padding: 22px;
  }

  .fact:nth-child(2) {
    border-right: 0;
  }

  .fact:nth-child(3),
  .fact:nth-child(4) {
    border-bottom: 0;
  }

  .fact strong {
    font-size: 4.6rem;
  }

  .fact span {
    margin-top: 14px;
    font-size: 0.66rem;
  }

  .section {
    padding-top: 76px;
    padding-bottom: 80px;
  }

  .section-heading,
  .section-heading--split {
    display: block;
    margin-bottom: 42px;
  }

  .section-heading--split > p {
    margin-top: 26px;
  }

  .tickets__release-note {
    margin-top: -18px;
    margin-bottom: 42px;
    padding: 16px 18px;
    box-shadow: 5px 5px 0 var(--pink);
  }

  h2 {
    font-size: clamp(3.2rem, 16vw, 5.6rem);
  }

  .program .section-heading h2 {
    font-size: clamp(2.65rem, 13vw, 5.2rem);
  }

  .ticket-grid,
  .ticket-grid--pass,
  .ticket-grid[data-ticket-group="dara"] {
    grid-template-columns: 1fr;
  }

  .pass-comparison {
    margin-bottom: 26px;
  }

  .pass-comparison__card {
    padding: 18px 14px;
  }

  .pass-comparison__price {
    font-size: clamp(2.8rem, 14vw, 4rem);
  }

  .pass-comparison__meta {
    min-height: 2.4em;
  }

  .ticket-card,
  .ticket-card:last-child:nth-child(odd) {
    min-height: 460px;
    grid-column: auto;
  }

  .ticket-card--featured {
    transform: none;
    box-shadow: 8px 8px 0 var(--ink);
  }

  .ticket-grid--pass .ticket-card--featured {
    box-shadow: 8px 8px 0 var(--paper);
  }

  .pass {
    min-height: 0;
  }

  .pass__media img {
    object-position: 58% center;
  }

  .night-card,
  .night-card--dara {
    min-height: 380px;
  }

  .night-card h3 {
    font-size: 3.6rem;
  }

  .night-card--dara h3 {
    font-size: clamp(4.8rem, 24vw, 6.75rem);
    line-height: 0.72;
  }

  .night-card__brand {
    margin-top: 34px;
  }

  .night-card__brand--shame {
    width: 168px;
    max-height: 100px;
  }

  .night-card__brand--dara {
    width: 88px;
    height: 88px;
  }

  .night-card__brand--bks {
    width: 44px;
    max-height: 80px;
  }

  .scale-story__media {
    min-height: 62svh;
  }

  .scale-story__media img {
    object-position: center;
  }

  .scale-story__copy {
    padding: 68px 20px 76px;
  }

  .scale-story__copy h2 {
    font-size: clamp(3.1rem, 16vw, 4.2rem);
  }

  .dara-story {
    gap: 42px;
  }

  .dara-story__copy h2 {
    font-size: clamp(4.2rem, 20vw, 6rem);
  }

  .story-brand--hot-pop {
    width: 132px;
  }

  .scale-story > *,
  .dara-story > *,
  .final-cta__content {
    min-width: 0;
  }

  .dara-story__portrait {
    box-shadow: 8px 8px 0 var(--ink);
  }

  .dara-story__portrait img {
    min-height: 420px;
    aspect-ratio: 0.86 / 1;
  }

  .event-feature {
    min-height: 88svh;
  }

  .event-feature__media img {
    object-position: center;
  }

  .event-feature__content {
    padding-top: 120px;
    padding-bottom: 54px;
  }

  .event-feature h2 {
    font-size: clamp(4.7rem, 22vw, 7.6rem);
  }

  .event-feature--bks h2 {
    font-size: clamp(3rem, 14vw, 4.4rem);
  }

  .event-feature__actions {
    display: grid;
  }

  .event-feature__actions .button {
    width: 100%;
  }

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

  .reservation-option {
    min-height: 300px;
  }

  .reservation-contact {
    align-items: stretch;
    flex-direction: column;
  }

  .reservation-contact .button {
    width: 100%;
  }

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

  .info-card {
    min-height: 250px;
    border-right: 0;
    border-bottom: 2px solid var(--ink);
    padding: 26px 0;
  }

  .info-card:last-child {
    border-bottom: 0;
  }

  .faq-item summary {
    grid-template-columns: 36px 1fr auto;
    gap: 10px;
    font-size: 1.35rem;
  }

  .faq-item p {
    margin-left: 46px;
  }

  .final-cta {
    min-height: 86svh;
  }

  .final-cta__media img {
    object-position: 56% center;
  }

  .final-cta h2 {
    font-size: clamp(3.4rem, 17vw, 6rem);
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
    padding-bottom: 92px;
  }

  .footer-brand-rail {
    width: 100%;
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    min-height: 118px;
    padding: 20px;
  }

  .footer-brand:nth-child(2) {
    border-right: 0;
  }

  .footer-brand:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-light);
  }

  .footer-brand img {
    max-height: 68px;
  }

  .footer-brand--hot-pop img {
    width: 58px;
    height: 58px;
  }

  .footer-brand--bks img {
    width: 36px;
    max-height: 72px;
  }

  .site-footer p {
    text-align: left;
  }

  .site-footer__links {
    justify-content: flex-start;
  }

  .site-footer__note {
    justify-self: start;
  }

  .mobile-buy {
    position: fixed;
    z-index: 160;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: calc(74px + env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: stretch;
    border-top: 1px solid var(--line-light);
    padding-bottom: env(safe-area-inset-bottom);
    background: rgba(7, 7, 9, 0.96);
    backdrop-filter: blur(16px);
  }

  .route-pass .mobile-buy {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .mobile-buy > div {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px 14px;
  }

  .mobile-buy__pass {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid var(--line-light);
    padding: 10px 12px;
    color: var(--paper);
    text-decoration: none;
  }

  .mobile-buy__pass strong {
    color: var(--acid);
  }

  .route-pass .mobile-buy__pass {
    display: none;
  }

  .mobile-buy span {
    max-width: 100%;
    overflow: hidden;
    color: var(--paper-muted);
    font-size: 0.64rem;
    font-weight: 900;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .mobile-buy strong {
    margin-top: 3px;
    font-size: 1.1rem;
  }

  .mobile-buy > a[data-primary-cta] {
    min-width: 96px;
    padding: 0 12px;
  }

  .toast {
    right: 12px;
    bottom: 90px;
    max-width: calc(100% - 24px);
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
