@font-face {
  font-family: "Charcuterie Block";
  src: url("charcuterie-block-bold[41].otf") format("opentype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --blue: #006e98;
  --blue-deep: #005170;
  --orange: #bf6604;
  --yellow: #fbea00;
  --green-dark: #073c24;
  --green-light: #33ab71;
  --brown: #4c2902;
  --black: #000000;
  --white: #ffffff;
  --sky-tint: #dff5ff;
  --cream: #fffdf2;
  --sand: #fff5c4;
  --line-blue: rgba(0, 110, 152, 0.16);
  --line-white: rgba(255, 255, 255, 0.18);
  --shadow-soft: 0 18px 42px rgba(0, 0, 0, 0.12);
  --shadow-mid: 0 24px 58px rgba(0, 0, 0, 0.18);
  --shadow-strong: 0 30px 76px rgba(0, 0, 0, 0.28);
  --radius-sm: 0.95rem;
  --radius-md: 1.3rem;
  --radius-lg: 1.7rem;
  --radius-xl: 2.25rem;
  --site-width: 82rem;
  --nav-height: 5.15rem;
  --section-pad: clamp(3.2rem, 6vw, 4.9rem);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 1.2rem);
}

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--brown);
  background: linear-gradient(180deg, var(--sky-tint) 0%, var(--white) 28%, var(--cream) 100%);
  line-height: 1.55;
  overflow-x: clip;
}

::selection {
  background: rgba(251, 234, 0, 0.55);
  color: var(--black);
}

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

a {
  color: inherit;
}

button,
input,
summary {
  font: inherit;
}

button {
  cursor: pointer;
}

section[id],
footer[id] {
  scroll-margin-top: calc(var(--nav-height) + 1.35rem);
}

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

.skip-link {
  position: fixed;
  top: 0.8rem;
  left: 0.8rem;
  z-index: 200;
  transform: translateY(-220%);
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  text-decoration: none;
  box-shadow: var(--shadow-soft);
}

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

.container {
  width: min(calc(100% - 1.5rem), var(--site-width));
  margin-inline: auto;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 3.15rem;
  padding: 0.9rem 1.32rem;
  border: 1px solid transparent;
  border-radius: 1rem;
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button:focus-visible,
.lineup-poster__button:focus-visible,
.faq-item summary:focus-visible,
.media-dialog__close:focus-visible,
.social-icon:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.button--primary {
  background: linear-gradient(180deg, #fff7a6 0%, #fbea00 46%, #ffcf24 100%);
  border-color: rgba(191, 102, 4, 0.26);
  color: var(--brown);
  box-shadow:
    0 14px 28px rgba(191, 102, 4, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.button--secondary {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 248, 220, 0.94) 100%);
  border-color: rgba(191, 102, 4, 0.18);
  color: var(--brown);
  box-shadow:
    0 12px 24px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.button--govx {
  background: linear-gradient(180deg, rgba(246, 248, 251, 0.96) 0%, rgba(220, 226, 233, 0.98) 100%);
  border-color: rgba(72, 86, 102, 0.16);
  color: #4a5563;
  box-shadow:
    0 10px 22px rgba(11, 20, 29, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.button--govx-inverse,
.button--govx-cta {
  background: linear-gradient(180deg, #005f83 0%, #004e6d 100%);
  border-color: rgba(255, 255, 255, 0.24);
  color: var(--white);
  box-shadow:
    0 14px 28px rgba(0, 54, 76, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.button--primary:hover,
.button--primary:focus-visible {
  box-shadow:
    0 18px 34px rgba(191, 102, 4, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.button--secondary:hover,
.button--secondary:focus-visible {
  box-shadow:
    0 16px 30px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.button--govx:hover,
.button--govx:focus-visible {
  box-shadow:
    0 14px 26px rgba(11, 20, 29, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.button--govx-inverse:hover,
.button--govx-inverse:focus-visible,
.button--govx-cta:hover,
.button--govx-cta:focus-visible {
  box-shadow:
    0 18px 34px rgba(0, 54, 76, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.button--header {
  min-height: 3.05rem;
  padding-inline: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0.2rem);
  pointer-events: none;
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    visibility 220ms ease;
}

.button--header-vendor {
  display: inline-flex;
  align-items: center;
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.72rem;
}

.header-actions__stack {
  display: grid;
  justify-items: center;
  gap: 0.3rem;
}

.govx-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: auto;
  padding: 0;
  border: 0;
  background: none;
  box-shadow: none;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.govx-link img,
.footer-link--govx img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.38));
}

.govx-link:hover,
.govx-link:focus-visible {
  color: rgba(255, 255, 255, 0.75);
}

.govx-link--header {
  justify-self: center;
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
}

.govx-link--header img {
  width: 3.83rem;
}

.govx-link--hero {
  justify-self: center;
  text-align: center;
  font-size: 1rem;
}

.govx-link--hero img {
  width: min(5.93rem, 21vw);
}

.govx-link--section {
  color: rgba(99, 110, 122, 0.92);
}

.govx-link--section img {
  width: min(7.2rem, 31.5vw);
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.34));
}

.govx-link--section-ticket img {
  width: min(10.8rem, 47vw);
}

.govx-link--section-buy img {
  width: min(5.4rem, 23.6vw);
}

.button--footer {
  min-height: 2.95rem;
  padding-inline: 1.15rem;
}

.section {
  position: relative;
  padding: var(--section-pad) 0;
}

.section-heading {
  display: grid;
  gap: 0.6rem;
  max-width: 46rem;
  margin-bottom: 1rem;
}

.section-heading--tight {
  max-width: 42rem;
}

.section-heading__kicker {
  margin: 0;
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  font-family: "Charcuterie Block", "Alfa Slab One", serif;
  font-size: clamp(1.9rem, 6vw, 4rem);
  line-height: 0.96;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.section-heading p:last-child {
  margin: 0;
  color: rgba(76, 41, 2, 0.82);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 120;
  background:
    radial-gradient(circle at 14% 50%, rgba(251, 234, 0, 0.16), transparent 16rem),
    linear-gradient(180deg, rgba(0, 110, 152, 0.98) 0%, rgba(0, 81, 112, 0.98) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
  transition:
    transform 280ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease;
}

.site-header.is-hero {
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
}

.site-header.is-hero .brand,
.site-header.is-hero .header-meta {
  opacity: 0;
  pointer-events: none;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.12), transparent 34%, transparent 68%, rgba(255, 255, 255, 0.06));
  opacity: 0.38;
  pointer-events: none;
}

.site-header.is-hero::before,
.site-header.is-hero::after {
  opacity: 0;
}

.site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow) 0%, #ffd300 42%, var(--orange) 100%);
}

.site-header.is-hidden {
  transform: translateY(-110%);
}

.site-header.is-solid {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.site-header.show-cta .button--header {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.header-shell {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.62rem;
  min-height: var(--nav-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  padding: 0.08rem 0;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  text-decoration: none;
}

.site-header .brand img {
  width: clamp(6.4rem, 11.8vw, 8.2rem);
  height: auto;
  max-width: 100%;
  display: block;
  aspect-ratio: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 0 1px rgba(0, 0, 0, 0.46))
    drop-shadow(0 2px 0 rgba(255, 255, 255, 0.18))
    drop-shadow(0 10px 18px rgba(0, 0, 0, 0.28));
}

.site-header.is-hero .brand img {
  opacity: 1;
  filter:
    drop-shadow(0 0 1px rgba(0, 0, 0, 0.56))
    drop-shadow(0 2px 0 rgba(255, 255, 255, 0.14))
    drop-shadow(0 12px 24px rgba(0, 0, 0, 0.38));
}

.header-meta {
  display: grid;
  gap: 0.08rem;
  margin: 0;
  min-width: 0;
}

.header-meta__date,
.header-meta__venue {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header-meta__date {
  color: rgba(255, 249, 209, 0.94);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.header-meta__venue {
  color: var(--white);
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.12;
}

.site-header.is-hero .header-meta__date {
  color: rgba(255, 249, 209, 0.94);
}

.site-header.is-hero .header-meta__venue {
  color: var(--white);
}

.hero {
  position: relative;
  min-height: calc(var(--hero-height, 100svh) + var(--nav-height) + 1rem);
  padding-top: calc(var(--nav-height) + 1rem);
  padding-bottom: clamp(4rem, 7vw, 5.2rem);
  color: var(--white);
  background: #082432;
  isolation: isolate;
}

.hero::after {
  content: none;
}

.hero--recap-page {
  min-height: 100svh;
  padding-top: var(--nav-height);
  padding-bottom: 0;
  background: #000;
  overflow: clip;
}

.hero__inner.hero__inner--recap-page {
  width: 100%;
  min-height: calc(100svh - var(--nav-height));
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-content: start;
  justify-items: stretch;
  padding: 0;
}

.hero-recap--fullpage {
  --recap-intro-height: clamp(10.9rem, 21svh, 12rem);
  width: 100%;
  display: grid;
  gap: 0;
  justify-items: stretch;
  text-align: center;
}

.hero-recap.hero-recap--fullpage {
  gap: 0;
}

.hero-recap--fullpage .hero-recap__kicker,
.hero-recap--fullpage h2 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  white-space: nowrap;
}

.hero-recap--fullpage .hero-recap__intro {
  width: 100vw;
  height: var(--recap-intro-height);
  margin-left: calc(50% - 50vw);
  display: grid;
  align-content: center;
  justify-items: center;
  gap: clamp(0.24rem, 0.62vw, 0.42rem);
  padding: clamp(0.38rem, 0.9vw, 0.62rem) clamp(1rem, 4vw, 2rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, #061b26 0%, #000 100%);
}

.hero-recap__logo {
  width: clamp(8.15rem, 12vw, 9.35rem);
  height: auto;
  filter:
    drop-shadow(0 0 1px rgba(0, 0, 0, 0.58))
    drop-shadow(0 10px 18px rgba(0, 0, 0, 0.4));
}

.hero-recap__message {
  max-width: 56rem;
  margin: 0;
  color: #fff7c6;
  font-size: clamp(0.82rem, 1.14vw, 1rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.22;
  text-transform: uppercase;
}

.hero-recap--fullpage .hero-recap__video {
  width: 100vw;
  height: calc(100svh - var(--nav-height) - var(--recap-intro-height) - 4.35rem);
  max-height: none;
  margin-left: calc(50% - 50vw);
  border: 0;
  border-radius: 0;
  object-fit: contain;
  box-shadow: none;
}

.hero-recap--fullpage .hero-recap__link {
  width: 100vw;
  min-height: 4.35rem;
  margin-left: calc(50% - 50vw);
  border-radius: 0;
}

.hero--recap-page .hero__scroll {
  display: none;
}

.hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(108deg, transparent 24%, rgba(255, 255, 255, 0.18) 42%, rgba(255, 255, 255, 0.06) 52%, transparent 70%);
  mix-blend-mode: screen;
  opacity: 0;
  transform: translateX(-120%);
  animation: hero-glimmer 4.8s linear infinite;
  pointer-events: none;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-object-position, center center);
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(1, 17, 25, 0.38) 0%, rgba(0, 39, 58, 0.44) 22%, rgba(5, 38, 25, 0.34) 52%, rgba(0, 0, 0, 0.82) 100%),
    radial-gradient(circle at 78% 74%, rgba(251, 234, 0, 0.12), transparent 23rem),
    radial-gradient(circle at 16% 16%, rgba(0, 110, 152, 0.14), transparent 22rem);
}

.hero__inner {
  position: relative;
  z-index: 1;
  min-height: calc(var(--hero-height, 100svh) - 0.1rem);
  display: grid;
  gap: 0.9rem;
  align-items: center;
  padding: 0.45rem 0 clamp(4rem, 7vw, 5.2rem);
}

.hero__content {
  max-width: 38rem;
  padding-top: 0;
  align-self: start;
  margin-top: -0.55rem;
}

.hero h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  border: 0;
  white-space: nowrap;
}

.hero__festival-type {
  display: none;
}

.hero__subhead {
  display: none;
}

.hero__brand-lockup {
  display: grid;
  gap: 0;
  justify-items: start;
  width: min(100%, 28rem);
  margin-bottom: 0.82rem;
}

.hero__brand-lockup img {
  width: min(100%, 25rem);
  height: auto;
  max-width: 100%;
  display: block;
  aspect-ratio: auto;
  object-fit: contain;
  transform: translateY(0.92rem);
  filter: drop-shadow(0 16px 30px rgba(0, 0, 0, 0.28));
}

.hero__meta {
  display: grid;
  gap: 0.02rem;
  margin: -0.22rem 0 0;
}

.hero__meta-date,
.hero__meta-venue {
  display: block;
}

.venue-line {
  display: block;
}

.hero__meta-date {
  color: rgba(255, 249, 209, 0.98);
  font-size: clamp(0.94rem, 2.35vw, 1.14rem);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.32);
}

.hero__meta-venue {
  color: rgba(255, 255, 255, 0.98);
  font-size: clamp(1.18rem, 2.8vw, 1.52rem);
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.34);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.68rem;
  margin-top: 1.05rem;
}

.hero__tickets-stack {
  display: grid;
  justify-items: center;
  gap: 0.42rem;
  align-self: flex-start;
}

.hero__panel {
  align-self: center;
  justify-self: center;
  display: grid;
  gap: 0.72rem;
  width: 100%;
  max-width: 27.5rem;
  padding: 1.18rem 1.16rem;
  margin-top: -10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-top: 5px solid #fbea00;
  border-radius: 1.55rem;
  background:
    radial-gradient(circle at 22% 16%, rgba(251, 234, 0, 0.22), transparent 11rem),
    linear-gradient(180deg, rgba(11, 53, 74, 0.92) 0%, rgba(3, 28, 40, 0.94) 100%);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
}

.hero__panel--recap {
  max-width: min(100%, 35rem);
  padding: 0.72rem;
}

.hero-recap {
  display: grid;
  gap: 0.58rem;
}

.hero-recap__kicker {
  margin: 0;
  color: var(--yellow);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-recap h2 {
  margin: 0;
  color: var(--white);
  font-family: "Charcuterie Block", "Alfa Slab One", serif;
  font-size: clamp(1.35rem, 3vw, 2.05rem);
  letter-spacing: 0.02em;
  line-height: 0.98;
  text-transform: uppercase;
}

.hero-recap__video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  background: #000;
  object-fit: cover;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.26);
}

.hero-recap__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.82rem 0.9rem;
  border: 1px solid rgba(251, 234, 0, 0.35);
  border-radius: 0.95rem;
  background: linear-gradient(180deg, var(--yellow) 0%, #f4c51e 100%);
  color: var(--brown);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.hero-recap__link:hover,
.hero-recap__link:focus-visible {
  transform: translateY(-1px);
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.countdown-shell {
  display: grid;
  gap: 0.8rem;
  justify-items: center;
  text-align: center;
}

.countdown-shell__label {
  margin: 0;
  color: #fbea00;
  font-family: "Charcuterie Block", "Alfa Slab One", serif;
  font-size: clamp(1.16rem, 2.9vw, 1.66rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 0.98;
  text-transform: uppercase;
  text-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.54rem;
  width: 100%;
}

.countdown__item {
  display: grid;
  gap: 0.28rem;
  padding: 0.88rem 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.95rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.08) 100%);
  color: var(--white);
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.countdown__value {
  font-family: "Charcuterie Block", "Alfa Slab One", serif;
  font-size: clamp(1.72rem, 5vw, 2.36rem);
  line-height: 0.9;
}

.countdown__label {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 1.7rem;
  z-index: 1;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
}

.hero__scroll::after {
  content: "";
  display: block;
  width: 2px;
  height: 4.2rem;
  margin: 0.5rem auto 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), transparent);
  animation: hero-scroll-pulse 1.8s ease-in-out infinite;
}

@keyframes hero-scroll-pulse {
  0%,
  100% {
    transform: scaleY(0.82);
    opacity: 0.72;
  }

  50% {
    transform: scaleY(1.08);
    opacity: 1;
  }
}

@keyframes hero-glimmer {
  0%,
  58% {
    opacity: 0;
    transform: translateX(-120%);
  }

  78% {
    opacity: 0.24;
    transform: translateX(-8%);
  }

  100% {
    opacity: 0;
    transform: translateX(120%);
  }
}

@keyframes badge-bob {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-0.12rem);
  }
}

@keyframes timeline-dot-ripple {
  0% {
    opacity: 0.82;
    transform: translate(-50%, -50%) scale(1);
  }

  42% {
    opacity: 0.42;
    transform: translate(-50%, -50%) scale(2.35);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(4.8);
  }
}

.section--lineup {
  z-index: auto;
  margin-top: 0;
  background: linear-gradient(180deg, #7dd9ff 0%, #ffe36f 56%, #ff8e39 100%);
  padding-top: calc(var(--section-pad) + min(3.4vw, 1.9rem));
}

.section--lineup .section-heading {
  max-width: 34rem;
  margin-bottom: 5px;
}

.section--lineup .section-heading h2 {
  font-size: clamp(2.35rem, 6vw, 3.75rem);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.section--lineup .section-heading p:last-child {
  font-size: 1.12rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section--lineup::before {
  content: none;
}

.lineup-layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.64rem;
}

.lineup-poster-wrap {
  display: grid;
  justify-items: center;
  align-content: start;
}

.lineup-poster {
  margin: 0;
  width: min(100%, 43rem);
}

.lineup-poster__button {
  position: relative;
  display: block;
  width: 100%;
  max-width: 43rem;
  aspect-ratio: 1 / 1.34;
  margin-inline: auto;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.lineup-poster__button img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  padding: 0;
  background: transparent;
  transform: scale(1);
}

.lineup-poster__button span {
  position: absolute;
  left: 50%;
  bottom: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0.5rem 0.72rem;
  border-radius: 999px;
  background: rgba(7, 60, 36, 0.84);
  color: var(--yellow);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.lineup-content {
  display: grid;
  gap: 0;
}

.artist-day {
  display: grid;
  gap: 0.06rem;
  margin: 0 0 5px;
  padding: 0;
  border: 0;
  border-radius: 1.3rem;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}

.artist-day:last-child {
  margin-bottom: 0;
}

.artist-day__heading {
  justify-items: center;
  text-align: center;
}

.artist-day__heading {
  display: grid;
  gap: 0.02rem;
  padding: 0 0.3rem;
}

.artist-day__label {
  width: fit-content;
  margin: 0;
  padding: 0.28rem 0.54rem;
  border-radius: 999px;
  background: rgba(251, 234, 0, 0.22);
  color: var(--orange);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.artist-day__heading h3 {
  margin: 0;
  font-family: "Alfa Slab One", serif;
  font-size: clamp(1.18rem, 3.2vw, 1.55rem);
  line-height: 1;
  text-transform: uppercase;
}

.artist-day__board {
  width: 100%;
  display: grid;
  grid-template-rows: auto auto;
  gap: 0;
  justify-items: stretch;
  align-content: start;
  padding: 0;
  border-radius: 0;
  background: var(--white);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.artist-day__support {
  display: grid;
  width: 100%;
  gap: 0.02rem;
  justify-content: center;
  align-items: start;
  align-content: start;
  padding: 0.03rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  background: var(--white);
}

.artist-card {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-rows: auto;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.artist-card img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center top;
  padding: 0;
  background: transparent;
  transform: scale(1.05);
  filter: none;
  transition: none;
  will-change: auto;
}

.artist-card--isaac img {
  transform: translateY(-0.22rem) scale(1.05);
}

.artist-card__body {
  display: grid;
  gap: 0.12rem;
  padding: 0.46rem 0.54rem 0.54rem;
}

.artist-card__tag {
  margin: 0;
  color: var(--green-dark);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.artist-card h4 {
  margin: 0;
  font-family: "Alfa Slab One", serif;
  font-size: clamp(0.88rem, 2.4vw, 1.04rem);
  line-height: 1;
  text-transform: uppercase;
}

.artist-card__text {
  margin: 0.1rem 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.8rem;
}

.artist-card__callout {
  display: none;
  margin: 0;
}

.artist-day:not(.artist-day--mc) .artist-card__body {
  display: none;
}

.artist-card--feature {
  width: 100%;
  max-width: none;
  color: var(--white);
  text-align: center;
}

.artist-card--feature img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center top;
  padding: 0;
  background: transparent;
  transform: scale(1.03);
}

.artist-card--feature .artist-card__body {
  justify-items: center;
  gap: 0.16rem;
  padding: 0.62rem 0.72rem 0.72rem;
}

.artist-card--feature h4 {
  font-size: clamp(1.08rem, 2.6vw, 1.38rem);
}

.artist-card--feature .artist-card__tag,
.artist-card--mc .artist-card__tag {
  color: var(--yellow);
}

.artist-card--mc {
  width: 100%;
  max-width: none;
  margin-inline: auto;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: var(--white);
}

.artist-card--mc img {
  aspect-ratio: 16 / 9.2;
  object-fit: contain;
  object-position: center center;
  padding: 0;
  background: transparent;
}

.artist-card--mc .artist-card__body {
  display: none;
}

.artist-day--mc {
  gap: 0.18rem;
  background: transparent;
}

.section--tickets {
  background: linear-gradient(180deg, #d6f1be 0%, #fff7c8 10%, #ffffff 34%, #fff6e8 100%);
  padding-top: calc(var(--section-pad) + 0.75rem);
  padding-bottom: calc(var(--section-pad) + 0.95rem);
}

.section--tickets .section-heading {
  margin-bottom: 0.7rem;
}

.section--tickets .section-heading h2 {
  font-size: clamp(2rem, 5vw, 3.35rem);
}

.section--tickets .section-heading p:last-child {
  font-size: 1.04rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section--tickets .section-heading p:last-child {
  font-size: 0.94rem;
}

.ticket-note {
  display: grid;
  gap: 0.28rem;
  max-width: 58rem;
  margin: 0 0 0.9rem;
  padding: 0.78rem 0.9rem;
  border: 1px solid rgba(0, 110, 152, 0.16);
  border-left: 5px solid var(--yellow);
  border-radius: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 251, 226, 0.96) 100%);
  box-shadow: 0 14px 32px rgba(0, 110, 152, 0.09);
}

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

.ticket-note__title,
.ticket-note__body {
  margin: 0;
}

.ticket-note__title {
  color: var(--blue-deep);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.ticket-note__body {
  max-width: 54rem;
  color: rgba(76, 41, 2, 0.82);
  font-size: 0.88rem;
  line-height: 1.45;
}

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

.ticket-govx {
  display: flex;
  justify-content: center;
  margin-top: 0.9rem;
}

.section--hotel-partner {
  padding-top: calc(var(--section-pad) - 0.05rem);
  padding-bottom: calc(var(--section-pad) - 0.2rem);
  background:
    radial-gradient(circle at 16% 18%, rgba(31, 181, 191, 0.16), transparent 15rem),
    radial-gradient(circle at 88% 18%, rgba(255, 155, 42, 0.24), transparent 13rem),
    linear-gradient(180deg, #fff8b5 0%, #ffe86a 34%, #fff4b0 100%);
}

.hotel-partner {
  display: grid;
  gap: 1rem;
  align-items: center;
  padding: 1.25rem 1.1rem;
  border: 1px solid rgba(17, 145, 158, 0.16);
  border-radius: 1.5rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(249, 255, 253, 0.96) 100%);
  box-shadow: 0 18px 36px rgba(0, 64, 74, 0.12);
}

.hotel-partner__brand {
  display: grid;
  justify-items: center;
  gap: 0.82rem;
}

.hotel-partner__icon,
.hotel-partner__wordmark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.hotel-partner__icon img {
  width: min(100%, 13rem);
  height: auto;
  display: block;
}

.hotel-partner__copy {
  display: grid;
  justify-items: center;
  gap: 0.54rem;
  text-align: center;
}

.hotel-partner__eyebrow {
  margin: 0;
  color: #11919e;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hotel-partner__copy h2 {
  margin: 0;
  color: #005f66;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.hotel-partner__copy p:last-of-type {
  margin: 0;
  max-width: 34rem;
  color: rgba(0, 78, 87, 0.82);
  font-size: 1rem;
}

.button--hotel {
  background: linear-gradient(180deg, #1bbbc3 0%, #0f9eac 48%, #0b7d8d 100%);
  border-color: rgba(0, 95, 102, 0.24);
  color: var(--white);
  box-shadow:
    0 14px 28px rgba(0, 89, 98, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.button--hotel:hover,
.button--hotel:focus-visible {
  box-shadow:
    0 18px 34px rgba(0, 89, 98, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.ticket-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  min-height: 30.25rem;
  overflow: hidden;
  border: 1px solid rgba(0, 110, 152, 0.14);
  border-top: 5px solid rgba(0, 110, 152, 0.12);
  border-radius: 1.15rem;
  background: linear-gradient(180deg, var(--white) 0%, #fffbe6 100%);
  box-shadow: var(--shadow-soft);
}

.ticket-note.reveal {
  opacity: 1;
  --reveal-x: 0px;
  --reveal-y: 0px;
}

.ticket-card.reveal {
  opacity: 1;
  --reveal-x: 0px;
  --reveal-y: 4.2rem;
}

.ticket-grid .ticket-card:nth-child(2) {
  border-top-color: var(--blue);
}

.ticket-grid .ticket-card:nth-child(3) {
  border-top-color: var(--green-light);
}

.ticket-grid .ticket-card:nth-child(4) {
  border-top-color: var(--blue);
}

.ticket-card--featured {
  border: 1px solid rgba(251, 234, 0, 0.38);
  border-top: 5px solid var(--yellow);
  background: linear-gradient(160deg, var(--blue) 0%, #004f6e 54%, var(--green-dark) 100%);
  color: var(--white);
  box-shadow: var(--shadow-mid);
}

.ticket-card__media {
  position: relative;
  aspect-ratio: 1.06 / 0.84;
  overflow: hidden;
}

.ticket-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: none;
  will-change: auto;
}

.ticket-card--reserved .ticket-card__media img {
  object-position: center center;
  transform-origin: center center;
  transform: scale(1.325);
}

.ticket-card__badge {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  padding: 0.38rem 0.58rem;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--brown);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  animation: badge-bob 4.6s ease-in-out infinite;
}

.ticket-card__body {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 0.58rem;
  padding: 0.82rem;
}

.ticket-card__status {
  display: grid;
  gap: 0.18rem;
  align-content: start;
  min-height: 2.28rem;
}

.ticket-card .ticket-card__kicker {
  margin: 0;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.18;
  text-transform: uppercase;
}

.ticket-card .ticket-card__status .ticket-card__kicker + .ticket-card__kicker {
  font-size: 0.58rem;
  letter-spacing: 0.08em;
}

.ticket-card .ticket-card__kicker--sold-out {
  color: var(--blue-deep);
}

.ticket-card--featured .ticket-card__kicker {
  color: rgba(255, 255, 255, 0.88);
}

.ticket-card--featured .ticket-card__kicker--sold-out {
  color: var(--yellow);
}

.ticket-card h3 {
  margin: 0;
  font-family: "Alfa Slab One", serif;
  font-size: clamp(1.1rem, 3.8vw, 1.55rem);
  line-height: 1;
  text-transform: uppercase;
}

.ticket-card p {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(76, 41, 2, 0.82);
}

.ticket-card__body > p:not(.ticket-card__kicker) {
  display: none;
}

.ticket-card--featured p {
  color: rgba(255, 255, 255, 0.88);
}

.ticket-card__list {
  display: grid;
  gap: 0.24rem;
  align-content: start;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ticket-card__list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.84rem;
}

.ticket-card__list li::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  flex: 0 0 auto;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
}

.ticket-card .button {
  margin-top: auto;
  width: 100%;
  min-height: 3.2rem;
}

.section--about {
  z-index: 1;
  padding-bottom: clamp(3.9rem, 6.8vw, 5.6rem);
  color: var(--white);
  background: linear-gradient(180deg, #0f96c9 0%, var(--blue) 42%, #0d6c53 100%);
  box-shadow: 0 -1.25rem 3rem rgba(0, 0, 0, 0.22);
}

.section--about::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: clamp(9rem, 14vw, 12rem);
  background: linear-gradient(180deg, rgba(13, 108, 83, 0) 0%, rgba(13, 108, 83, 0.06) 52%, rgba(8, 79, 63, 0.24) 82%, rgba(7, 60, 36, 0.66) 100%);
  pointer-events: none;
}

.section--about .section-heading__kicker {
  margin-bottom: 0.1rem;
}

.section--about::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 14%, rgba(251, 234, 0, 0.22), transparent 20rem),
    url("assets/brand/background-sunburst.jpg") center top / cover no-repeat;
  opacity: 0.18;
  pointer-events: none;
}

.anniversary-layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.9rem;
}

.anniversary-copy .section-heading__kicker {
  color: rgba(255, 247, 184, 0.92);
}

.anniversary-copy h2 {
  margin: 0 0 0.72rem;
  font-family: "Alfa Slab One", serif;
  font-size: clamp(1.95rem, 5.8vw, 3.45rem);
  line-height: 1.02;
  text-transform: uppercase;
}

.anniversary-copy p {
  margin: 0 0 0.78rem;
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.9);
}

.anniversary-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.52rem;
  margin-top: 0.85rem;
}

.anniversary-facts article {
  padding: 0.72rem 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.1);
}

.anniversary-facts strong {
  display: block;
  font-family: "Alfa Slab One", serif;
  font-size: 1.25rem;
  line-height: 1;
}

.anniversary-facts span {
  display: block;
  margin-top: 0.18rem;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.82);
}

.anniversary-art {
  position: relative;
  display: grid;
  gap: 0;
  align-content: center;
}

.anniversary-photo {
  --parallax-y: 0px;
}

.anniversary-photo {
  margin: 0;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 1.35rem;
  box-shadow: var(--shadow-strong);
}

.anniversary-photo img {
  width: 100%;
  aspect-ratio: 16 / 11.8;
  object-fit: cover;
  transform: scale(1.06);
  transition: none;
  will-change: auto;
}

.section--legacy {
  z-index: 2;
  margin-top: -1px;
  padding-top: clamp(0.12rem, 0.8vw, 0.32rem);
  padding-bottom: clamp(2.4rem, 4vw, 3.2rem);
  color: rgba(76, 41, 2, 0.96);
  background: linear-gradient(180deg, #FBEA00 0%, #BF6604 48%, #006E98 100%);
  box-shadow: 0 -1.25rem 3rem rgba(0, 0, 0, 0.18);
  isolation: isolate;
  overflow: clip;
}

.section--legacy .section-heading {
  max-width: 37rem;
  margin: 0 auto 0.22rem;
}

.section--legacy .section-heading h2 {
  font-size: clamp(1.55rem, 4.6vw, 2.75rem);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.section--legacy .section-heading p:last-child {
  font-size: 0.92rem;
  color: rgba(76, 41, 2, 0.84);
}

.section--legacy::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/brand/sunrays.png") center bottom / 52rem no-repeat;
  opacity: 0.05;
  pointer-events: none;
}

.section--legacy::after {
  content: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.92) 16%, rgba(0, 0, 0, 0.92) 84%, rgba(0, 0, 0, 0) 100%);
  z-index: 2;
  pointer-events: none;
}

.legacy-heading {
  position: relative;
  top: auto;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
  padding-bottom: 0.44rem;
  background: transparent;
  max-height: none;
  transform: none !important;
  will-change: auto;
  translate: none !important;
  transition: none !important;
}

.legacy-heading .section-heading {
  margin-inline: auto;
  transform: none !important;
  translate: none !important;
  animation: none !important;
  transition: none !important;
  --reveal-x: 0px !important;
  --reveal-y: 0px !important;
  --reveal-progress: 1 !important;
}

.section--lineup .section-heading.reveal,
.legacy-heading .section-heading.reveal {
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

.timeline-detail {
  justify-items: center;
  width: min(100%, 72rem);
  padding: 1.45rem 1.25rem 1.1rem;
  border-color: transparent;
  border-radius: 1rem;
  background: transparent;
  box-shadow: none;
  color: var(--white);
  max-height: clamp(12rem, 38svh, 19rem);
  overflow: auto;
  backdrop-filter: none;
}

.timeline-detail:not(.is-idle) {
  display: grid;
  gap: 0.7rem;
  position: fixed;
  inset: 50% auto auto 50%;
  width: min(calc(100vw - 1.5rem), 42rem);
  max-width: 42rem;
  max-height: min(76svh, 34rem);
  margin: 0;
  padding: 1.15rem 1.28rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.97);
  color: rgba(76, 41, 2, 0.94);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.16);
  transform: translate(-50%, -50%);
  z-index: 80;
  overflow: auto;
  overscroll-behavior: contain;
}

.timeline-popup {
  display: grid;
  gap: 0.7rem;
  position: fixed;
  inset: 50% auto auto 50%;
  width: min(calc(100vw - 1.5rem), 42rem);
  max-width: 42rem;
  max-height: min(76svh, 34rem);
  margin: 0;
  padding: 1.15rem 1.28rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.97);
  color: rgba(76, 41, 2, 0.94);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.16);
  transform: translate(-50%, -50%);
  z-index: 80;
  overflow: auto;
  overscroll-behavior: contain;
}

.timeline-popup[hidden] {
  display: none;
}

.timeline-detail.is-idle {
  display: grid;
  width: min(100%, 37rem);
  max-width: 37rem;
  margin: 0 auto;
  justify-items: center;
}

.timeline-detail.is-idle .timeline-detail__header {
  display: grid;
  width: 100%;
  justify-items: center;
}

.timeline-detail.is-idle .timeline-detail__header > div {
  display: grid;
  justify-items: center;
  width: 100%;
}

.timeline-detail.is-idle .timeline-detail__kicker,
.timeline-detail.is-idle .timeline-detail__close,
.timeline-detail.is-idle .timeline-detail__text {
  display: none;
}

.timeline-detail.is-idle h3 {
  color: var(--white);
  font-family: "Charcuterie Block", "Alfa Slab One", serif;
  font-size: clamp(2.1rem, 4.8vw, 3.15rem);
  line-height: 0.98;
  letter-spacing: 0.03em;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.timeline-detail.is-idle::after {
  content: "";
  display: block;
  width: 1.4rem;
  height: 3rem;
  margin-top: 0.02rem;
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 72'%3E%3Crect x='11' y='0' width='6' height='50' rx='3' fill='white'/%3E%3Cpath fill='white' d='M14 72L1 53h8.5L14 59.5 18.5 53H27z'/%3E%3C/svg%3E");
}

.timeline-detail[hidden] {
  display: none;
}

.timeline-detail__header {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  justify-content: space-between;
  gap: 0.8rem;
}

.timeline-detail__kicker {
  margin: 0 0 0.24rem;
  color: var(--orange);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.timeline-detail h3 {
  margin: 0;
  font-family: "Alfa Slab One", serif;
  font-size: clamp(1.1rem, 2.4vw, 1.55rem);
  line-height: 1;
  text-transform: uppercase;
}

.timeline-detail__text {
  margin: 0;
  max-width: none;
  font-size: 1.04rem;
  line-height: 1.62;
  color: rgba(76, 41, 2, 0.9);
}

.timeline-detail__close {
  min-height: 2.4rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(0, 110, 152, 0.16);
  border-radius: 999px;
  background: var(--white);
  color: var(--blue-deep);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section--legacy .section-heading__kicker {
  color: rgba(121, 46, 4, 0.82);
}

.section--legacy .section-heading p:last-child {
  color: rgba(76, 41, 2, 0.84);
}

.legacy-scroll {
  --timeline-line-y: 50%;
  --timeline-dot-size: 2.46rem;
  --timeline-line-thickness: 2px;
  --timeline-note-gap: 1.28rem;
  --timeline-step: clamp(5.4rem, 7.8vw, 7rem);
  position: relative;
  z-index: 1;
  height: var(--timeline-height, auto);
}

.legacy-scroll__sticky {
  position: static;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 0.34rem;
  align-items: center;
}

.legacy-scroll__viewport {
  position: relative;
  display: grid;
  align-items: center;
  overflow-x: auto;
  min-height: 100%;
  padding: 0.12rem 0 0.48rem;
  scrollbar-width: none;
}

.legacy-scroll__viewport::-webkit-scrollbar {
  display: none;
}

[data-timeline-ready="true"] .legacy-scroll__viewport {
  overflow: hidden;
}

.legacy-scroll__viewport::before {
  content: "";
  position: absolute;
  inset: calc(var(--timeline-line-y) - (var(--timeline-line-thickness) / 2)) 0 auto;
  height: var(--timeline-line-thickness);
  border-radius: 999px;
  background: rgba(121, 46, 4, 0.24);
}

.legacy-rail {
  display: flex;
  align-items: stretch;
  gap: 0;
  width: max-content;
  min-height: 12.4rem;
  padding: 0 max(46vw, 24rem);
  will-change: auto;
}

.timeline-node {
  position: relative;
  flex: 0 0 var(--timeline-step);
  min-width: var(--timeline-step);
  min-height: 100%;
  padding-top: 0;
}

.timeline-node__year {
  position: absolute;
  top: calc(var(--timeline-line-y) + 2rem);
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  font-family: "Alfa Slab One", serif;
  font-size: 0.72rem;
  line-height: 1;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.96);
}

.timeline-node__dot {
  display: block;
  position: absolute;
  top: var(--timeline-line-y);
  left: 50%;
  width: var(--timeline-dot-size);
  height: var(--timeline-dot-size);
  margin-top: 0;
  border: 3px solid rgba(7, 60, 36, 0.5);
  border-radius: 999px;
  background: #c5ccd1;
  box-shadow:
    0 0 0 8px rgba(7, 60, 36, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transform: translate(-50%, -50%);
  transition:
    transform 240ms ease,
    background-color 240ms ease,
    box-shadow 240ms ease;
}

.timeline-node__dot::before {
  content: "";
  position: absolute;
  inset: 22%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.timeline-node__dot::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 100%;
  height: 100%;
  border: 3px solid rgba(7, 60, 36, 0.66);
  border-radius: 999px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(1);
}

.timeline-node__note {
  display: none;
}

.timeline-node:has(.timeline-node__note) {
  cursor: pointer;
}

.timeline-node.is-active .timeline-node__dot {
  transform: translate(-50%, -50%) scale(1.04);
  background: #c5ccd1;
  border-color: rgba(7, 60, 36, 0.64);
  box-shadow:
    0 0 0 10px rgba(7, 60, 36, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.timeline-node.is-active .timeline-node__dot::after,
.timeline-node.is-open .timeline-node__dot::after {
  animation: timeline-dot-ripple 520ms ease-out 1;
}

.timeline-node.is-open .timeline-node__dot,
.timeline-node[role="button"]:focus-visible .timeline-node__dot {
  transform: translate(-50%, -50%) scale(1.06);
  background: #c5ccd1;
  border-color: rgba(7, 60, 36, 0.74);
  box-shadow:
    0 0 0 11px rgba(7, 60, 36, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.52);
}

.timeline-node[role="button"]:focus-visible {
  outline: none;
}

.timeline-node[data-hover-label]::after {
  content: none;
}

.section--faq {
  background: linear-gradient(180deg, #ffffff 0%, #eef9ff 100%);
}

.section--buy-cta {
  padding-top: calc(var(--section-pad) - 0.2rem);
  padding-bottom: calc(var(--section-pad) - 0.3rem);
  background: linear-gradient(180deg, #fff4bb 0%, #fbea00 34%, #ff8e39 100%);
}

.buy-cta {
  display: grid;
  justify-items: center;
  gap: 0.46rem;
  padding: 1.2rem 1rem;
  border-radius: 1.45rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.68) 0%, rgba(255, 249, 220, 0.9) 100%);
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.12);
  text-align: center;
}

.buy-cta h2 {
  margin: 0;
  font-family: "Charcuterie Block", "Alfa Slab One", serif;
  font-size: clamp(1.8rem, 4.2vw, 3rem);
  line-height: 0.98;
  text-transform: uppercase;
  color: var(--brown);
}

.buy-cta p {
  margin: 0;
  max-width: 38rem;
  color: rgba(76, 41, 2, 0.82);
  font-size: 0.98rem;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
  width: min(100%, 56rem);
  margin-inline: auto;
}

.faq-item {
  display: grid;
  grid-template-rows: auto 0fr;
  width: 100%;
  overflow: clip;
  border: 1px solid rgba(0, 110, 152, 0.14);
  border-left: 6px solid var(--yellow);
  border-radius: 1.1rem;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition:
    grid-template-rows 280ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.faq-item[open] {
  grid-template-rows: auto 1fr;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.08);
}

.faq-item summary {
  position: relative;
  padding: 1rem 3.1rem 1rem 1rem;
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  overflow-wrap: anywhere;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 999px;
  background: rgba(251, 234, 0, 0.9);
  color: var(--brown);
  font-family: "Alfa Slab One", serif;
  font-size: 1.1rem;
  line-height: 1.8rem;
  text-align: center;
}

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

.faq-item__content {
  min-height: 0;
  padding: 0 1rem;
  overflow: hidden;
  color: rgba(76, 41, 2, 0.84);
  transition: padding 280ms ease;
}

.faq-item[open] .faq-item__content {
  padding-bottom: 1rem;
}

.faq-item__body {
  display: grid;
  gap: 0.72rem;
  transform: translateY(-0.35rem);
  opacity: 0;
  transition:
    transform 280ms ease,
    opacity 220ms ease;
}

.faq-item[open] .faq-item__body {
  transform: translateY(0);
  opacity: 1;
}

.faq-item__content p,
.faq-item__content ul {
  margin: 0;
}

.faq-item__content ul {
  padding-left: 1.15rem;
}

.faq-item__content li + li {
  margin-top: 0.28rem;
}

.faq-link--highlight {
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.12em;
}

.site-footer {
  margin-top: -1px;
  padding: 0.95rem 0 0.85rem;
  background: linear-gradient(180deg, #fff6cf 0%, #ffe898 100%);
  color: var(--brown);
  border-top: 1px solid rgba(76, 41, 2, 0.12);
}

.footer-shell {
  display: grid;
  gap: 0.6rem;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(15rem, 0.95fr) minmax(16rem, 1fr) auto;
  align-items: start;
  gap: 0.85rem 1rem;
  padding-top: 0;
  border-top: 0;
}

.footer-brand {
  grid-column: 1;
  display: grid;
  gap: 0.5rem;
  align-content: start;
}

.footer-brand img {
  width: clamp(7.8rem, 14vw, 9.4rem);
  margin-bottom: 0;
  filter: brightness(0) saturate(100%);
}

.footer-brand p {
  margin: 0;
  display: grid;
  gap: 0.05rem;
  font-size: 0.8rem;
  line-height: 1.42;
  color: rgba(76, 41, 2, 0.8);
}

.footer-brand__line,
.footer-contact__line {
  display: block;
}

.footer-contact {
  grid-column: 2;
  display: grid;
  gap: 0.3rem;
  align-content: start;
  padding: 0.82rem 0.92rem;
  border: 1px solid rgba(76, 41, 2, 0.12);
  border-radius: 1rem;
  background: rgba(255, 248, 228, 0.45);
}

.footer-contact a,
.footer-contact p {
  margin: 0;
  color: rgba(76, 41, 2, 0.82);
  font-size: 0.78rem;
  line-height: 1.42;
  text-decoration: none;
}

.footer-contact a {
  font-weight: 700;
}

.footer-contact p {
  display: grid;
  gap: 0.04rem;
}

.footer-links {
  grid-column: 3;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, auto));
  gap: 0.34rem 0.56rem;
  align-content: start;
  justify-content: start;
}

.footer-seal {
  grid-column: 4;
  grid-row: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  justify-self: start;
  padding: 0;
}

.footer-seal img {
  width: clamp(4.1rem, 4.6vw, 5.2rem);
  height: auto;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  color: var(--blue-deep);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-decoration: none;
  text-transform: uppercase;
  min-height: 2.2rem;
  padding: 0.46rem 0.74rem;
  border-radius: 0.9rem;
  background: rgba(255, 248, 228, 0.54);
  border: 1px solid rgba(76, 41, 2, 0.12);
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.08rem;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(248, 190, 32, 0.24);
  border-radius: 999px;
  background: rgba(0, 110, 152, 0.9);
  color: var(--white);
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.social-icon svg {
  width: 1rem;
  height: 1rem;
}

.social-icon rect,
.social-icon circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.social-icon[aria-label="Facebook"] path,
.social-icon[aria-label="TikTok"] path {
  fill: currentColor;
  stroke: none;
}

.social-icon[aria-label="Spotify"] path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.75;
}

.footer-bottom {
  display: grid;
  gap: 0.18rem;
  align-items: center;
  padding-top: 0.05rem;
  border-top: 0;
}

.footer-legal {
  margin: 0;
  color: rgba(76, 41, 2, 0.62);
  font-size: 0.68rem;
  text-align: center;
}

.media-dialog {
  width: min(92vw, 70rem);
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.8rem;
  background: linear-gradient(180deg, #063149 0%, #041b2b 100%);
  color: var(--white);
  box-shadow: var(--shadow-strong);
}

.media-dialog::backdrop {
  background: rgba(0, 0, 0, 0.78);
}

.media-dialog__close-wrap {
  display: flex;
  justify-content: flex-end;
  padding: 1rem 1rem 0;
}

.media-dialog__close {
  min-height: 2.75rem;
  padding: 0.65rem 1rem;
  border: 2px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.media-dialog__content {
  padding: 0 1rem 1rem;
}

.media-dialog__kicker {
  margin: 0 0 0.5rem;
  color: var(--yellow);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.media-dialog__content h2 {
  margin: 0 0 1rem;
  font-family: "Alfa Slab One", serif;
  font-size: clamp(1.9rem, 5vw, 3.4rem);
  line-height: 1.02;
  text-transform: uppercase;
}

.media-dialog__content img {
  width: 100%;
  height: auto;
  border-radius: 1.2rem;
}

.policy-dialog {
  width: min(92vw, 44rem);
}

.policy-dialog__content {
  max-width: 38rem;
  padding: 0 1.2rem 1.4rem;
}

.policy-dialog__content p {
  margin: 0 0 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.65;
}

.policy-dialog__list {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.65;
}

.policy-dialog__list li + li {
  margin-top: 0.42rem;
}

.policy-dialog__final {
  margin-bottom: 0;
  color: var(--yellow) !important;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

[data-parallax] {
  --parallax-y: 0px;
}

.reveal {
  --reveal-x: 0px;
  --reveal-y: 0px;
  --reveal-progress: 0;
  transform:
    translate3d(
      calc(var(--reveal-x) * (1 - var(--reveal-progress))),
      calc((var(--reveal-y) * (1 - var(--reveal-progress))) + var(--parallax-y, 0px)),
      0
    );
  opacity: 1;
  will-change: transform;
  transition: none;
}

.reveal--left {
  --reveal-x: -10rem;
}

.reveal--right {
  --reveal-x: 10rem;
}

.reveal--up {
  --reveal-x: -7rem;
}

.reveal--down {
  --reveal-x: 7rem;
}

.ticket-grid .ticket-card:nth-child(2) {
  transition-delay: 60ms;
}

.ticket-grid .ticket-card:nth-child(3) {
  transition-delay: 120ms;
}

.ticket-grid .ticket-card:nth-child(4) {
  transition-delay: 180ms;
}

.lineup-content .artist-day:nth-child(2) {
  transition-delay: 80ms;
}

.lineup-content .artist-day:nth-child(3) {
  transition-delay: 140ms;
}

.lineup-content .artist-day:nth-child(4) {
  transition-delay: 200ms;
}

.section-heading > *:nth-child(2),
.artist-day .artist-card:nth-child(2),
.ticket-card:nth-child(2) > *,
.anniversary-facts article:nth-child(2) {
  transition-delay: 80ms;
}

.section-heading > *:nth-child(3),
.artist-day .artist-card:nth-child(3),
.ticket-card:nth-child(3) > *,
.anniversary-facts article:nth-child(3) {
  transition-delay: 140ms;
}

.section-heading > *:nth-child(4),
.artist-day .artist-card:nth-child(4),
.ticket-card:nth-child(4) > *,
.anniversary-facts article:nth-child(4) {
  transition-delay: 200ms;
}

@media (hover: hover) and (pointer: fine) {
  .artist-card,
  .social-icon,
  .footer-links a {
    transition:
      transform 220ms ease,
      box-shadow 220ms ease,
      border-color 220ms ease,
      background-color 220ms ease;
  }

  .artist-card:hover,
  .artist-card:focus-within {
    transform: none;
    box-shadow: none;
  }

  .social-icon:hover,
  .social-icon:focus-visible {
    transform: translateY(-2px);
    background: var(--green-dark);
    border-color: rgba(251, 234, 0, 0.42);
  }

  .footer-links a:hover,
  .footer-links a:focus-visible {
    transform: none;
    color: var(--green-dark);
  }
}

@media (min-width: 42rem) {
  .container {
    width: min(calc(100% - 2rem), var(--site-width));
  }

  .hero__meta {
    margin-top: -0.3rem;
  }

  .hero__panel {
    max-width: 33.3rem;
    padding: 1.42rem 1.38rem;
  }

  .hero__panel--recap {
    max-width: min(100%, 37rem);
    padding: 0.8rem;
  }

  .countdown-shell__label {
    font-size: clamp(1.38rem, 3.35vw, 2rem);
  }

  .countdown__value {
    font-size: clamp(2.3rem, 6.4vw, 3.16rem);
  }

  .timeline-detail.is-idle h3 {
    color: rgba(255, 248, 230, 0.98);
  }

  .timeline-detail.is-idle::after {
    filter: drop-shadow(0 10px 18px rgba(9, 62, 95, 0.18));
  }

  .timeline-node__year {
    color: rgba(255, 246, 224, 0.96);
    font-size: 0.76rem;
    letter-spacing: 0.06em;
    text-shadow: 0 6px 14px rgba(7, 60, 36, 0.18);
  }

  .timeline-node__dot {
    border-color: rgba(255, 246, 224, 0.56);
    background: rgba(12, 78, 112, 0.96);
    box-shadow:
      0 0 0 8px rgba(255, 201, 87, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.52);
  }

  .timeline-node__dot::before {
    background: rgba(255, 255, 255, 0.18);
  }

  .timeline-node__dot::after {
    border-color: rgba(255, 227, 145, 0.62);
  }

  .timeline-node.is-active .timeline-node__dot {
    border-color: rgba(255, 244, 217, 0.74);
    box-shadow:
      0 0 0 10px rgba(255, 196, 72, 0.24),
      inset 0 1px 0 rgba(255, 255, 255, 0.58);
  }

  .timeline-node.is-open .timeline-node__dot,
  .timeline-node[role="button"]:focus-visible .timeline-node__dot {
    border-color: rgba(255, 247, 232, 0.82);
    box-shadow:
      0 0 0 11px rgba(255, 181, 58, 0.28),
      inset 0 1px 0 rgba(255, 255, 255, 0.64);
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1.12fr) minmax(18rem, 0.88fr);
  }

  .hotel-partner {
    grid-template-columns: minmax(16rem, 0.86fr) minmax(0, 1.14fr);
    gap: 1.35rem;
    padding: 1.45rem 1.5rem;
  }

  .hotel-partner__brand {
    justify-items: start;
  }

  .hotel-partner__copy {
    justify-items: start;
    text-align: left;
  }

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

  .artist-day__support--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .artist-day--mc .artist-card--mc {
    display: grid;
    grid-template-columns: minmax(15rem, 1fr) minmax(0, 1.05fr);
  }

  .artist-card--mc .artist-card__body {
    display: grid;
    align-content: center;
    gap: 0.48rem;
    padding: 0.8rem 0.95rem;
    color: var(--brown);
  }

  .artist-card--mc .artist-card__tag {
    color: var(--green-dark);
  }

  .artist-card--mc h4 {
    font-size: clamp(1.4rem, 2.4vw, 2rem);
  }

  .artist-card__callout {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 2.5rem;
    padding: 0.6rem 0.9rem;
    border-radius: 0.9rem;
    background: rgba(251, 234, 0, 0.86);
    color: var(--brown);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    box-shadow: none;
  }

  .artist-card--mc .artist-card__tag {
    display: none;
  }

  .footer-main {
    grid-template-columns: minmax(0, 1.2fr) minmax(15rem, 0.95fr) minmax(16rem, 1fr) auto;
    align-items: start;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 54rem) {
  .section {
    padding: clamp(3.6rem, 5.6vw, 5rem) 0;
  }

  .lineup-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
  }

  .lineup-poster-wrap {
    position: sticky;
    top: max(calc(50svh - 19rem), calc(var(--nav-height) + 2.4rem));
    min-height: auto;
    align-content: start;
    transform: none;
  }

  .lineup-poster {
    width: min(100%, 49rem);
  }

  .section--lineup .section-heading {
    max-width: 49rem;
    margin-left: 0;
    justify-items: start;
    text-align: left;
  }

  .section--lineup .section-heading__kicker,
  .section--lineup .section-heading h2,
  .section--lineup .section-heading p:last-child {
    text-align: left;
  }

  .artist-day:not(.artist-day--mc) {
    grid-template-columns: minmax(5rem, 5.8rem) minmax(0, 1fr);
    align-items: start;
    gap: 0.28rem;
  }

  .artist-day:not(.artist-day--mc) .artist-day__heading {
    justify-items: start;
    text-align: left;
    align-content: start;
    padding-top: 0;
  }

  .artist-day--mc {
    grid-template-columns: minmax(5rem, 5.8rem) minmax(0, 1fr);
    align-items: start;
    gap: 0.28rem;
  }

  .artist-day--mc .artist-day__heading {
    display: none;
  }

  .artist-day--mc .artist-card--mc {
    grid-column: 2;
  }

  .artist-day:not(.artist-day--mc) .artist-day__board {
    padding: 0;
  }

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

  .anniversary-layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
  }

  .footer-main {
    grid-template-columns: minmax(0, 1.2fr) minmax(15rem, 0.95fr) minmax(16rem, 1fr) auto;
    align-items: start;
  }
}

@media (min-width: 64rem) {
  :root {
    --nav-height: 5.35rem;
  }

  .header-meta__date {
    font-size: 0.72rem;
  }

  .header-meta__venue {
    font-size: 0.98rem;
  }

  .site-header .brand img {
    width: 8.55rem;
  }

  .section-heading h2 {
    font-size: clamp(2.15rem, 4vw, 3.55rem);
  }

  .hero h1 {
    font-size: clamp(3rem, 5vw, 4.8rem);
  }

  .legacy-scroll__sticky {
    position: sticky;
    top: max(calc(50svh - 13.5rem), calc(var(--nav-height) + 0.85rem));
    height: min(62svh, 27rem);
  }
}

@media (min-width: 42rem) and (max-width: 63.99rem) {
  .hero__scroll {
    bottom: 2.05rem;
  }

  .hero__scroll::after {
    height: 5rem;
  }
}

@media (min-width: 80rem) {
  .container {
    width: min(calc(100% - 3rem), var(--site-width));
  }
}

@media (max-width: 41.99rem) {
  .section--legacy {
    padding-bottom: 0;
  }

  html,
  body {
    overflow-x: hidden;
  }

  :root {
    --nav-height: 5.05rem;
  }

  .site-header .brand img {
    width: 6rem;
  }

  .header-shell {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 0.45rem;
  }

  .header-actions {
    gap: 0.38rem;
  }

  .header-actions__stack {
    gap: 0.24rem;
  }

  .header-meta__date {
    font-size: 0.7rem;
  }

  .header-meta__venue {
    font-size: 0.84rem;
    white-space: normal;
  }

  .button--header {
    min-height: 2.58rem;
    padding-inline: 0.82rem;
    font-size: 0.82rem;
    white-space: nowrap;
  }

  .button--header-vendor {
    font-size: 0.58rem;
    letter-spacing: 0.14em;
  }

  .govx-link {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
  }

  .govx-link--header {
    font-size: 0.58rem;
    letter-spacing: 0.14em;
  }

  .govx-link--header img {
    width: 3.11rem;
  }

  .govx-link--hero {
    font-size: 0.84rem;
  }

  .govx-link--hero img {
    width: min(5.7rem, 25.5vw);
  }

  .hero.hero--recap-page {
    min-height: 100svh;
    padding-top: var(--nav-height);
    padding-bottom: 0;
  }

  .hero--recap-page .hero__inner--recap-page {
    min-height: calc(100svh - var(--nav-height));
    padding: 0;
  }

  .hero-recap--fullpage {
    --recap-intro-height: clamp(11.6rem, 22svh, 12.1rem);
    gap: 0;
  }

  .hero-recap__logo {
    width: clamp(7.4rem, 36vw, 8.05rem);
  }

  .hero-recap__message {
    max-width: 21.5rem;
    font-size: clamp(0.76rem, 3.15vw, 0.88rem);
    line-height: 1.2;
  }

  .hero-recap--fullpage .hero-recap__video {
    height: calc(100svh - var(--nav-height) - var(--recap-intro-height) - 4.15rem);
    max-height: none;
  }

  .hero-recap--fullpage .hero-recap__link {
    width: 100vw;
    min-height: 4.15rem;
  }

  .hero {
    min-height: calc(100svh + 0.1rem);
    padding-top: calc(var(--nav-height) + 0.3rem);
    padding-bottom: 2.9rem;
    overflow: clip;
  }

  .hero__media,
  .hero__video,
  .hero__scrim {
    inset: 0;
  }

  .hero__video {
    object-fit: cover;
    object-position: center top;
    background: #082432;
  }

  .hero__inner {
    min-height: calc(100svh - var(--nav-height) - 0.6rem);
    padding-top: 0.5rem;
    padding-bottom: 2.7rem;
    align-content: start;
    justify-items: center;
    gap: 0.45rem;
  }

  .hero__content {
    display: grid;
    justify-items: center;
    width: 100%;
    margin-top: -0.95rem;
    padding-top: 0;
    text-align: center;
  }

  .hero__brand-lockup {
    width: min(100%, 17.5rem);
    gap: 0;
    margin-bottom: 0.7rem;
    justify-items: center;
  }

  .hero__brand-lockup img {
    width: min(100%, 16rem);
    transform: translateY(0.62rem);
  }

  .hero__meta-date {
    font-size: 0.88rem;
    letter-spacing: 0.16em;
  }

  .hero__meta-venue {
    font-size: 1.12rem;
    text-align: center;
  }

  .hero__meta {
    margin-top: -0.26rem;
    gap: 0;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: center;
    width: 100%;
    column-gap: 0.68rem;
    row-gap: 0.42rem;
  }

  .hero__actions > .button--secondary {
    grid-column: 1;
    grid-row: 1;
  }

  .hero__tickets-stack {
    display: contents;
  }

  .hero__actions > .hero__tickets-stack > .button--primary {
    grid-column: 2;
    grid-row: 1;
  }

  .govx-link--section {
    font-size: 0.92rem;
    letter-spacing: 0.14em;
  }

  .govx-link--section img {
    width: min(7.8rem, 39vw);
  }

  .govx-link--section-ticket img {
    width: min(11.7rem, 58.5vw);
  }

  .govx-link--section-buy img {
    width: min(5.85rem, 29.25vw);
  }

  .govx-link--hero {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: center;
    width: auto;
  }

  .hero__panel {
    width: min(75%, 20rem);
    max-width: min(75%, 20rem);
    padding: 0.75rem 0.69rem;
    margin-top: 0.48rem;
    justify-self: center;
  }

  .hero__panel--recap {
    width: min(100%, 24rem);
    max-width: 24rem;
    padding: 0.62rem;
  }

  .hero-recap {
    gap: 0.44rem;
  }

  .hero-recap h2 {
    font-size: 1.18rem;
  }

  .hero-recap__kicker {
    font-size: 0.56rem;
    letter-spacing: 0.14em;
  }

  .hero-recap__video {
    border-radius: 0.8rem;
  }

  .hero-recap__link {
    min-height: 2.64rem;
    padding: 0.68rem 0.72rem;
    font-size: 0.72rem;
    letter-spacing: 0.05em;
  }

  .countdown-shell__label {
    font-size: clamp(1.45rem, 4.1vw, 2.08rem);
  }

  .timeline-detail {
    width: 100%;
    padding: 1rem 1rem;
    max-height: min(46svh, 18rem);
  }

  .anniversary-layout,
  .anniversary-art,
  .anniversary-facts {
    gap: 5px;
  }

  .anniversary-badge,
  .anniversary-photo,
  .anniversary-facts article {
    margin: 0;
  }

  .anniversary-badge {
    padding-top: calc(0.78rem + 10px);
  }

  .hero__scroll {
    bottom: 1.2rem;
  }

  .section-heading,
  .section-heading--tight {
    justify-items: center;
    max-width: none;
    margin-inline: auto;
    text-align: center;
  }

  .section-heading__kicker,
  .section-heading h2,
  .section-heading p:last-child {
    text-align: center;
  }

  .section--lineup .section-heading p:last-child {
    margin-bottom: 5px;
  }

  .section--lineup .container {
    width: 100%;
  }

  .section--lineup {
    padding-top: calc(var(--section-pad) + 0.18rem);
  }

  .lineup-layout {
    gap: 0.95rem;
  }

  .lineup-poster {
    width: min(calc(100vw - 0.55rem), 32rem);
    max-width: min(calc(100vw - 0.55rem), 32rem);
    margin-inline: auto;
    transform: none;
  }

  .lineup-poster__button {
    width: 100%;
    max-width: none;
  }

  .lineup-content {
    width: 100%;
    margin-top: 10px;
  }

  .artist-day {
    margin: 5px 0;
  }

  .artist-day:first-child {
    margin-top: 20px;
  }

  .artist-day:last-child {
    margin-bottom: 5px;
  }

  .artist-day__board {
    --support-card-width: min(100%, 12rem);
    grid-template-rows: auto auto;
  }

  .artist-day--mc .artist-day__heading {
    display: none;
  }

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

  .artist-day__support--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .artist-day__support--3 .artist-card:last-child {
    grid-column: auto;
    justify-self: stretch;
  }

  .section--tickets {
    padding-top: calc(var(--section-pad) + 0.25rem);
    padding-bottom: calc(var(--section-pad) + 0.35rem);
  }

  .ticket-note {
    margin-bottom: 0.72rem;
    padding: 0.7rem 0.78rem;
  }

  .ticket-note__title {
    font-size: 0.76rem;
    letter-spacing: 0.08em;
  }

  .ticket-note__body {
    font-size: 0.8rem;
  }

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

  .ticket-card.reveal {
    opacity: 1 !important;
    --reveal-x: -2.4rem;
    --reveal-y: 0px;
  }

  .ticket-card {
    min-height: 21.5rem;
  }

  .ticket-card__body {
    gap: 0.42rem;
    padding: 0.68rem;
  }

  .ticket-card__status {
    min-height: 2.65rem;
  }

  .ticket-card .ticket-card__kicker {
    font-size: 0.58rem;
    letter-spacing: 0.08em;
  }

  .ticket-card .ticket-card__status .ticket-card__kicker + .ticket-card__kicker {
    font-size: 0.44rem;
    letter-spacing: 0.04em;
  }

  .ticket-card__list li {
    font-size: 0.74rem;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, auto));
    gap: 0.2rem 0.7rem;
    justify-content: center;
  }

  .legacy-heading {
    display: none;
  }

  .section--legacy::before {
    content: none;
  }

  .legacy-scroll {
    --timeline-line-x: 50%;
    --timeline-step: 4.6rem;
    --timeline-dot-size: 1.7rem;
    --timeline-line-thickness: 3px;
  }

  .legacy-scroll__sticky {
    position: sticky;
    top: calc(var(--nav-height) + 0.45rem);
    width: 100%;
    height: calc(100svh - var(--nav-height) - 6rem);
    grid-template-rows: auto minmax(0, 1fr);
    gap: 0.6rem;
    align-items: stretch;
    justify-items: center;
    margin-inline: auto;
    overflow: visible;
  }

  .legacy-scroll__sticky::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8.4rem;
    background: linear-gradient(180deg, #fbea00 0%, #f2dc2f 58%, rgba(251, 234, 0, 0.96) 78%, rgba(251, 234, 0, 0) 100%);
    z-index: 2;
    pointer-events: none;
  }

  .legacy-scroll__viewport {
    overflow: visible !important;
    width: 100%;
    max-width: 24rem;
    height: 100%;
    min-height: 0;
    margin-inline: auto;
    padding-inline: 0;
    padding-top: 3.4rem;
    padding-bottom: 0;
    position: relative;
    z-index: 1;
  }

  .legacy-rail {
    display: grid;
    gap: var(--timeline-step);
    width: 100%;
    max-width: 24rem;
    min-height: 100%;
    height: 100%;
    align-content: space-between;
    padding: 0;
    margin-inline: auto;
  }

  .legacy-scroll__viewport::before {
    inset: 0 auto 0 var(--timeline-line-x);
    width: var(--timeline-line-thickness);
    height: auto;
    transform: translateX(-50%);
  }

  .timeline-node {
    min-width: 0;
    min-height: 0;
    padding: 0 0 0 calc(50% + 1.28rem);
  }

  .timeline-node__dot {
    top: 0.88rem;
    left: var(--timeline-line-x);
    transform: translate(-50%, -50%);
  }

  .timeline-node__year {
    top: 0.16rem;
    left: calc(50% + 1.28rem);
    transform: none;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    color: rgba(255, 248, 228, 0.98);
  }

  .timeline-detail.is-idle {
    align-self: start;
    width: min(100%, 21rem);
    margin: 0 auto;
    padding: 0.24rem 0.45rem 0.82rem;
    background: transparent;
    border: 0;
    box-shadow: none;
    filter: none;
    backdrop-filter: none;
    opacity: var(--timeline-prompt-opacity, 1);
    transition: opacity 180ms linear;
    position: relative;
    z-index: 3;
  }

  .timeline-detail.is-idle.reveal {
    --reveal-x: 0px;
    --reveal-y: 0px;
    transform: none !important;
  }

  .timeline-detail.is-idle h3 {
    font-size: clamp(1.88rem, 7.1vw, 2.35rem);
    text-shadow: none;
  }

  .timeline-detail.is-idle::after {
    width: 1.5rem;
    height: 3.15rem;
    margin-top: 0.08rem;
    opacity: 0.94;
  }

  .timeline-detail:not(.is-idle) {
    width: min(calc(100vw - 1rem), 22rem);
    max-height: min(72svh, 28rem);
  }

  .timeline-popup {
    width: min(calc(100vw - 1rem), 22rem);
    max-height: min(72svh, 28rem);
  }

  .timeline-detail:not(.is-idle).reveal {
    --reveal-x: 0px;
    --reveal-y: 0px;
    opacity: 1;
    transform: translate(-50%, -50%) !important;
  }

  .site-footer {
    padding: 1.15rem 0 1rem;
  }

  .footer-shell {
    gap: 0.95rem;
  }

  .footer-main,
  .footer-bottom {
    width: 100%;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 0.92rem;
    justify-items: stretch;
  }

  .footer-brand,
  .footer-contact,
  .footer-links,
  .footer-seal,
  .footer-bottom {
    width: min(100%, 22rem);
    margin-inline: auto;
    text-align: center;
    justify-self: center;
  }

  .footer-brand {
    display: grid;
    gap: 0.62rem;
    justify-items: center;
  }

  .footer-brand img {
    margin-inline: auto;
    width: clamp(10.8rem, 47vw, 12.8rem);
  }

  .footer-brand p {
    width: 100%;
    margin: 0;
    display: grid;
    gap: 0.06rem;
    font-size: 0.9rem;
    line-height: 1.42;
  }

  .footer-brand__line {
    font-weight: 800;
    letter-spacing: 0.04em;
  }

  .social-icons {
    gap: 0.76rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 0;
  }

  .social-icon {
    width: 2.8rem;
    height: 2.8rem;
  }

  .social-icon svg {
    width: 1.24rem;
    height: 1.24rem;
  }

  .footer-links {
    order: 3;
    width: min(100%, 22rem);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.44rem 0.52rem;
    justify-content: stretch;
  }

  .footer-links a {
    width: 100%;
    max-width: none;
    min-height: 2.18rem;
    padding: 0.48rem 0.72rem;
    margin-inline: 0;
    font-size: 0.69rem;
    letter-spacing: 0.05em;
    justify-content: center;
    text-align: center;
  }

  .footer-contact {
    order: 2;
    display: grid;
    gap: 0.34rem;
    width: min(100%, 22rem);
    padding: 0.9rem 0.95rem;
    border: 1px solid rgba(76, 41, 2, 0.12);
    border-radius: 1rem;
    background: rgba(255, 248, 228, 0.42);
    justify-items: center;
    grid-column: auto;
    grid-row: auto;
    margin-top: 0;
  }

  .footer-contact a,
  .footer-contact p {
    width: 100%;
    max-width: none;
    margin: 0;
    font-size: 0.84rem;
    line-height: 1.4;
  }

  .footer-contact a {
    font-weight: 800;
  }

  .footer-contact p {
    display: grid;
    gap: 0.04rem;
  }

  .footer-seal {
    justify-self: center;
    align-self: center;
    margin-top: 0.08rem;
    order: 4;
    grid-column: auto;
    grid-row: auto;
  }

  .footer-seal img {
    width: 5.8rem;
  }

  .footer-bottom {
    order: 5;
    display: block;
    padding-inline: 0;
  }

  .footer-shell::after {
    content: none;
  }

  .footer-legal {
    display: block;
    margin: 0 auto;
    width: min(100%, 22rem);
    color: rgba(76, 41, 2, 0.62);
    font-size: 0.67rem;
    line-height: 1.34;
    text-align: center;
  }
}

/* Footer refresh */
.site-footer {
  padding: 0.82rem 0 0.72rem;
  background:
    radial-gradient(circle at top right, rgba(251, 234, 0, 0.38), transparent 28%),
    linear-gradient(180deg, #fff6d0 0%, #ffe58b 100%);
  border-top: 1px solid rgba(76, 41, 2, 0.14);
}

.site-footer .footer-shell {
  display: grid;
  gap: 0.5rem;
}

.site-footer .footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.55fr);
  gap: 0.75rem 1rem;
  align-items: center;
  justify-items: center;
}

.site-footer .footer-brand,
.site-footer .footer-contact,
.site-footer .footer-links,
.site-footer .footer-seal,
.site-footer .footer-bottom {
  grid-column: auto;
  grid-row: auto;
  margin: 0;
  width: auto;
}

.site-footer .footer-brand {
  display: grid;
  gap: 0.45rem;
  align-content: center;
  justify-items: center;
  text-align: center;
}

.site-footer .footer-brand img {
  width: clamp(8.3rem, 15vw, 10rem);
  margin: 0;
}

.site-footer .footer-brand p {
  margin: 0;
  display: grid;
  gap: 0.04rem;
  font-size: 0.78rem;
  line-height: 1.38;
  text-align: center;
}

.site-footer .footer-brand__line {
  font-weight: 800;
  letter-spacing: 0.04em;
}

.site-footer .social-icons {
  gap: 0.46rem;
  margin-top: 0;
  justify-content: center;
}

.site-footer .social-icon {
  width: 2.05rem;
  height: 2.05rem;
}

.site-footer .footer-panels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  align-items: center;
  justify-items: center;
  width: 100%;
}

.site-footer .footer-panel {
  display: grid;
  gap: 0.34rem;
  padding: 0.2rem 0;
  border: 0;
  background: transparent;
  justify-items: center;
  text-align: center;
}

.site-footer .footer-panel__label {
  margin: 0;
  color: rgba(76, 41, 2, 0.62);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer .footer-contact {
  align-content: start;
  justify-items: center;
  text-align: center;
}

.site-footer .footer-contact a,
.site-footer .footer-contact p {
  margin: 0;
  color: rgba(76, 41, 2, 0.84);
  font-size: 0.74rem;
  line-height: 1.36;
  text-decoration: none;
}

.site-footer .footer-contact a {
  font-weight: 800;
}

.site-footer .footer-contact p {
  display: grid;
  gap: 0.04rem;
}

.site-footer .footer-links {
  display: grid;
  gap: 0.32rem;
  justify-items: center;
  text-align: center;
}

.site-footer .footer-links__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.26rem 0.36rem;
  width: 100%;
  justify-items: center;
}

.site-footer .footer-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.75rem;
  padding: 0.14rem 0.26rem;
  border-radius: 0;
  border: 0;
  background: transparent;
  color: var(--blue-deep);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.site-footer .footer-links__grid a:last-child {
  grid-column: 1 / -1;
}

.site-footer .footer-trust {
  align-content: center;
  justify-items: center;
  text-align: center;
}

.site-footer .footer-seal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.site-footer .footer-seal img {
  width: clamp(4.2rem, 4.5vw, 4.8rem);
  height: auto;
}

.site-footer .footer-bottom {
  display: block;
  width: 100%;
  padding-top: 0.04rem;
}

.site-footer .footer-legal {
  margin: 0;
  color: rgba(76, 41, 2, 0.62);
  font-size: 0.68rem;
  line-height: 1.34;
  text-align: center;
}

.site-footer .footer-shell::after {
  content: none;
}

@media (max-width: 53.998rem) {
  .site-footer {
    padding: 0.62rem 0 0.62rem;
  }

  .site-footer .footer-shell {
    gap: 0.44rem;
  }

  .site-footer .footer-main {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .site-footer .footer-brand {
    width: 100%;
    grid-template-columns: auto auto;
    gap: 0.4rem;
    row-gap: 0.08rem;
    align-items: center;
    justify-content: center;
    justify-items: start;
    text-align: left;
  }

  .site-footer .footer-brand img {
    grid-row: 1;
    width: clamp(7.4rem, 32vw, 8.6rem);
    align-self: center;
  }

  .site-footer .footer-brand p {
    width: auto;
    max-width: 11rem;
    font-size: 0.8rem;
    text-align: left;
    align-self: center;
    margin: 0;
  }

  .site-footer .social-icons {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: center;
    gap: 0.62rem;
    margin-top: -0.16rem;
  }

  .site-footer .social-icon {
    width: 2.55rem;
    height: 2.55rem;
  }

  .site-footer .footer-panels {
    grid-template-columns: repeat(2, max-content);
    gap: 0.34rem 1rem;
    justify-content: center;
    align-items: start;
    width: 100%;
  }

  .site-footer .footer-panel {
    padding: 0;
    gap: 0.18rem;
  }

  .site-footer .footer-contact,
  .site-footer .footer-trust {
    justify-items: center;
    text-align: center;
  }

  .site-footer .footer-links {
    display: grid;
    grid-column: 1 / -1;
    width: min(100%, 22rem);
    margin-inline: auto;
    padding-inline: 0;
    text-align: center;
    justify-items: center;
    justify-self: center;
  }

  .site-footer .footer-trust {
    grid-column: 1;
    justify-self: center;
    align-self: center;
  }

  .site-footer .footer-contact {
    grid-column: 2;
    justify-self: center;
    align-self: center;
    text-align: center;
  }

  .site-footer .footer-links .footer-panel__label {
    display: none;
  }

  .site-footer .footer-contact a,
  .site-footer .footer-contact p {
    font-size: 0.8rem;
    line-height: 1.32;
  }

  .site-footer .footer-contact p {
    text-align: center;
  }

  .site-footer .footer-links__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.18rem 0.46rem;
    width: 100%;
    margin-inline: auto;
    justify-items: center;
    justify-content: center;
    place-content: center;
  }

  .site-footer .footer-links__grid a:last-child {
    grid-column: 2 / 3;
    justify-self: center;
  }

  .site-footer .footer-links a {
    width: 100%;
    min-height: 1.9rem;
    padding: 0.2rem 0.38rem;
    background: transparent;
    font-size: 0.74rem;
  }

  .site-footer .footer-seal img {
    width: 4.5rem;
  }

  .site-footer .footer-legal {
    width: min(100%, 22rem);
    margin: 0 auto;
    font-size: 0.63rem;
    line-height: 1.28;
  }
}

/* Rebuilt footer */
.site-footer {
  position: relative;
  z-index: 3;
  padding: 0;
  background: linear-gradient(180deg, #fff6da 0%, #ffe8a2 100%);
  border-top: 0;
}

.site-footer .footer-shell--rebuilt {
  display: grid;
  gap: 0.7rem;
  padding-block: 0.58rem 0.48rem;
  position: relative;
}

.site-footer .footer-shell--rebuilt::before {
  content: none;
  display: block;
  height: 3px;
  width: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #bf6604 0%, #f4a11f 100%);
}

#about,
#legacy {
  scroll-margin-top: 0;
}

.footer-layout {
  display: grid;
  grid-template-columns:
    minmax(0, 1.15fr)
    minmax(14rem, 0.9fr)
    minmax(16rem, 1fr);
  align-items: center;
  gap: 0.82rem 1rem;
}

.footer-block {
  display: grid;
  gap: 0.28rem;
  min-width: 0;
}

.footer-block--brand {
  justify-items: start;
  text-align: left;
}

.footer-logo {
  width: clamp(8rem, 13vw, 10rem);
  height: auto;
  filter: brightness(0) saturate(100%);
}

.footer-event {
  display: grid;
  gap: 0.02rem;
}

.footer-event p,
.footer-address,
.footer-link--contact {
  margin: 0;
  color: rgba(76, 41, 2, 0.84);
  font-size: 0.83rem;
  line-height: 1.42;
  text-decoration: none;
}

.footer-event__date,
.footer-link--contact:nth-of-type(2) {
  font-weight: 800;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.38rem;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  background: rgba(0, 110, 152, 0.94);
  color: var(--white);
  text-decoration: none;
}

.footer-social svg {
  width: 1.08rem;
  height: 1.08rem;
}

.footer-social rect,
.footer-social circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.footer-social[aria-label="Facebook"] path,
.footer-social[aria-label="TikTok"] path {
  fill: currentColor;
  stroke: none;
}

.footer-social[aria-label="Spotify"] path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.75;
}

.footer-heading {
  margin: 0;
  color: rgba(76, 41, 2, 0.64);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-block--contact {
  justify-items: center;
  text-align: center;
}

.footer-block--nav {
  justify-items: start;
}

@media (min-width: 74.001rem) {
  .footer-block--contact,
  .footer-block--nav {
    min-height: 7rem;
    align-content: start;
  }
}

.footer-navgrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.22rem 0.4rem;
  width: 100%;
}

.footer-link {
  color: var(--blue-deep);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-link--wide {
  grid-column: 1 / -1;
}

.footer-block--trust {
  justify-items: center;
  text-align: center;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.footer-badge img {
  width: clamp(4.8rem, 5vw, 5.8rem);
  height: auto;
}

.footer-badge--govx img {
  width: clamp(3.6rem, 3.75vw, 4.35rem);
}

.footer-legal--rebuilt {
  margin: 0;
  color: rgba(76, 41, 2, 0.62);
  font-size: 0.68rem;
  line-height: 1.34;
  text-align: center;
}

@media (max-width: 74rem) {
  .footer-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 0.68rem 0.78rem;
  }

  .footer-block--trust {
    justify-items: start;
    text-align: left;
  }

  .footer-navgrid {
    max-width: 20rem;
  }
}

@media (max-width: 53.998rem) {
  .site-footer .footer-shell--rebuilt {
    gap: 0.54rem;
    padding-block: 0.62rem 0.56rem;
  }

  .site-footer .footer-shell--rebuilt::before {
    height: 3px;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    gap: 0.62rem;
    justify-items: center;
  }

  .footer-block,
  .footer-block--brand,
  .footer-block--contact,
  .footer-block--nav,
  .footer-block--trust {
    width: min(100%, 22rem);
    justify-items: center;
    text-align: center;
  }

  .footer-logo {
    width: clamp(10.8rem, 48vw, 12.8rem);
  }

  .footer-event p,
  .footer-address,
  .footer-link--contact {
    font-size: 0.88rem;
  }

  .footer-socials {
    justify-content: center;
    gap: 0.52rem;
  }

  .footer-social {
    width: 2.8rem;
    height: 2.8rem;
  }

  .footer-heading {
    font-size: 0.68rem;
  }

  .footer-navgrid {
    grid-template-columns: 1fr;
    gap: 0.32rem 0.52rem;
    justify-items: center;
  }

  .footer-link--wide {
    grid-column: auto;
  }

  .footer-link {
    width: 100%;
    text-align: center;
    font-size: 0.76rem;
  }

  .footer-badge img {
    width: 6.1rem;
  }

  .footer-legal--rebuilt {
    width: min(100%, 22rem);
    margin: 0 auto;
    font-size: 0.65rem;
    line-height: 1.3;
  }
}

.timeline-node--current .timeline-node__dot {
  background: linear-gradient(180deg, #fff8a6 0%, #fbea00 56%, #ffbf2b 100%);
  border-color: rgba(191, 102, 4, 0.72);
  box-shadow:
    0 0 0 10px rgba(251, 234, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.timeline-node--current .timeline-node__dot::after {
  border-color: rgba(251, 234, 0, 0.76);
}

.timeline-node--current.is-active::before,
.timeline-node--current.is-open::before {
  content: "You are here";
  position: absolute;
  left: 50%;
  top: calc(var(--timeline-line-y) - 4.3rem);
  transform: translateX(-50%);
  padding: 0.45rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 244, 195, 0.96);
  color: var(--brown);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

html.cs-hive-lock,
html.cs-hive-lock body {
  overflow: hidden !important;
}

.cs-hive-popup {
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.cs-hive-popup[hidden] {
  display: none;
}

.cs-hive-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 60, 36, 0.5);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 220ms ease;
}

.cs-hive-popup__dialog {
  position: relative;
  width: min(960px, 100%);
  max-height: min(92vh, 54rem);
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 1.7rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 249, 220, 0.96) 100%);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.3);
  color: var(--brown);
  transform: translateY(20px) scale(0.985);
  opacity: 0;
  transition:
    transform 240ms ease,
    opacity 240ms ease;
}

.cs-hive-popup.is-visible .cs-hive-popup__backdrop,
.cs-hive-popup.is-visible .cs-hive-popup__dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.cs-hive-popup__layout {
  display: grid;
  grid-template-columns: minmax(18rem, 0.92fr) minmax(22rem, 1.08fr);
}

.cs-hive-popup__promo {
  position: relative;
  overflow: hidden;
  padding: 2.15rem 2rem;
  background:
    radial-gradient(circle at top left, rgba(251, 234, 0, 0.26), transparent 32%),
    linear-gradient(160deg, var(--green-dark) 0%, var(--blue) 52%, var(--orange) 100%);
  color: var(--white);
}

.cs-hive-popup__promo::after {
  content: "";
  position: absolute;
  right: -3rem;
  bottom: -3rem;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251, 234, 0, 0.36), transparent 68%);
  filter: blur(12px);
}

.cs-hive-popup__eyebrow {
  margin: 0 0 0.8rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.cs-hive-popup__offer {
  margin: 0;
  font-family: "Charcuterie Block", "Alfa Slab One", serif;
  font-size: clamp(3.6rem, 7vw, 5.7rem);
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--yellow);
}

.cs-hive-popup__headline {
  margin: 0.95rem 0 0.7rem;
  max-width: 12ch;
  font-family: "Alfa Slab One", serif;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.cs-hive-popup__copy {
  margin: 0;
  max-width: 31ch;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.98rem;
  line-height: 1.65;
}

.cs-hive-popup__highlights {
  display: grid;
  gap: 0.72rem;
  margin-top: 1.6rem;
}

.cs-hive-popup__highlights div {
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
}

.cs-hive-popup__panel {
  padding: 2.15rem 2rem;
}

.cs-hive-popup__close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  z-index: 2;
  width: 2.55rem;
  height: 2.55rem;
  border: 1px solid rgba(191, 102, 4, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--brown);
  font-size: 1.8rem;
  line-height: 1;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.cs-hive-form {
  position: relative;
}

.cs-hive-form__honeypot {
  position: absolute;
  left: -5000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.cs-hive-form__intro h3 {
  margin: 0 0 0.45rem;
  font-family: "Charcuterie Block", "Alfa Slab One", serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 0.96;
  text-transform: uppercase;
  color: var(--brown);
}

.cs-hive-form__intro p {
  margin: 0 0 1.2rem;
  color: rgba(76, 41, 2, 0.78);
  font-size: 0.95rem;
  line-height: 1.65;
}

.cs-hive-form label {
  display: block;
  margin: 0 0 0.45rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(76, 41, 2, 0.84);
}

.cs-hive-form input,
.cs-hive-form .iti {
  width: 100%;
  box-sizing: border-box;
}

.cs-hive-form input {
  margin: 0 0 0.9rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(191, 102, 4, 0.18);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.88);
  color: var(--brown);
  font: 500 0.98rem/1.2 "DM Sans", sans-serif;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.cs-hive-form input:focus {
  outline: none;
  border-color: rgba(191, 102, 4, 0.52);
  box-shadow: 0 0 0 4px rgba(251, 234, 0, 0.18);
  background: var(--white);
}

.cs-hive-form input:-webkit-autofill,
.cs-hive-form input:-webkit-autofill:hover,
.cs-hive-form input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--brown);
  -webkit-box-shadow:
    0 0 0 1000px rgba(255, 255, 255, 0.96) inset,
    0 0 0 4px rgba(251, 234, 0, 0.08);
  transition: background-color 9999s ease-in-out 0s;
}

.cs-hive-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.cs-hive-form__checkbox {
  display: grid;
  grid-template-columns: 1.1rem 1fr;
  gap: 0.7rem;
  align-items: start;
  margin: 0.2rem 0 1rem;
}

.cs-hive-form__checkbox input[type="checkbox"] {
  width: 1.1rem;
  height: 1.1rem;
  margin: 0.15rem 0 0;
  padding: 0;
}

.cs-hive-form__checkbox span,
.cs-hive-form__checkbox a {
  font-size: 0.74rem;
  line-height: 1.55;
  color: rgba(76, 41, 2, 0.72);
}

.cs-hive-form__checkbox a {
  color: var(--orange);
}

.cs-hive-form button[type="submit"] {
  width: 100%;
  min-height: 3.15rem;
  border: 1px solid rgba(191, 102, 4, 0.26);
  border-radius: 1rem;
  padding: 0.95rem 1.32rem;
  background: linear-gradient(180deg, #fff7a6 0%, #fbea00 46%, #ffcf24 100%);
  color: var(--brown);
  font: 800 0.98rem/1 "DM Sans", sans-serif;
  letter-spacing: 0.04em;
  box-shadow:
    0 14px 28px rgba(191, 102, 4, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.cs-hive-popup.is-success .cs-hive-popup__layout {
  position: relative;
  grid-template-columns: minmax(0, 1fr);
}

.cs-hive-popup.is-success .cs-hive-popup__promo {
  display: block;
  position: absolute;
  inset: 0;
  padding: 0;
  opacity: 0.16;
  pointer-events: none;
}

.cs-hive-popup.is-success .cs-hive-popup__promo > * {
  visibility: hidden;
}

.cs-hive-popup.is-success .cs-hive-popup__dialog {
  width: min(35rem, calc(100vw - 0.85rem));
}

.cs-hive-popup.is-success .cs-hive-popup__panel {
  position: relative;
  z-index: 1;
  padding: 0.7rem;
  width: 100%;
  grid-column: 1;
}

.cs-hive-form.is-success {
  width: 100%;
  max-width: none;
  margin: 0 auto;
}

.cs-hive-form__success {
  display: none;
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 1.65rem 1.5rem 1.35rem;
  border: 1px solid rgba(191, 102, 4, 0.16);
  border-radius: 1.45rem;
  background:
    radial-gradient(circle at top, rgba(251, 234, 0, 0.22), transparent 48%),
    linear-gradient(180deg, rgba(255, 249, 220, 0.98) 0%, rgba(255, 243, 210, 0.98) 100%);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  text-align: center;
}

.cs-hive-form__success-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
}

.cs-hive-form__success-burst {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.cs-hive-form__success-burst span {
  position: absolute;
  top: 18%;
  left: 50%;
  width: 0.5rem;
  height: 1rem;
  border-radius: 999px;
  opacity: 0;
  transform-origin: center 5.2rem;
  animation: cs-confetti-burst 1.15s cubic-bezier(0.18, 0.8, 0.28, 1) forwards;
}

.cs-hive-form__success-burst span:nth-child(1) { --confetti-rotate: 0deg; background: #fbea00; animation-delay: 0.02s; }
.cs-hive-form__success-burst span:nth-child(2) { --confetti-rotate: 30deg; background: #bf6604; animation-delay: 0.05s; }
.cs-hive-form__success-burst span:nth-child(3) { --confetti-rotate: 60deg; background: #006e98; animation-delay: 0.08s; }
.cs-hive-form__success-burst span:nth-child(4) { --confetti-rotate: 90deg; background: #0d6c53; animation-delay: 0.11s; }
.cs-hive-form__success-burst span:nth-child(5) { --confetti-rotate: 120deg; background: #fff7a6; animation-delay: 0.14s; }
.cs-hive-form__success-burst span:nth-child(6) { --confetti-rotate: 150deg; background: #ffcf24; animation-delay: 0.17s; }
.cs-hive-form__success-burst span:nth-child(7) { --confetti-rotate: 180deg; background: #fbea00; animation-delay: 0.2s; }
.cs-hive-form__success-burst span:nth-child(8) { --confetti-rotate: 210deg; background: #bf6604; animation-delay: 0.23s; }
.cs-hive-form__success-burst span:nth-child(9) { --confetti-rotate: 240deg; background: #006e98; animation-delay: 0.26s; }
.cs-hive-form__success-burst span:nth-child(10) { --confetti-rotate: 270deg; background: #0d6c53; animation-delay: 0.29s; }
.cs-hive-form__success-burst span:nth-child(11) { --confetti-rotate: 300deg; background: #fff7a6; animation-delay: 0.32s; }
.cs-hive-form__success-burst span:nth-child(12) { --confetti-rotate: 330deg; background: #ffcf24; animation-delay: 0.35s; }

.cs-hive-form__success-eyebrow {
  margin: 0 0 0.55rem;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.cs-hive-form__success-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 6.5rem;
  min-height: 2.35rem;
  margin: 0 0 0.85rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #fff7a6 0%, #fbea00 50%, #ffcf24 100%);
  color: var(--brown);
  font: 800 0.92rem/1 "DM Sans", sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow:
    0 16px 28px rgba(191, 102, 4, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
  animation: cs-success-pop 520ms cubic-bezier(0.18, 0.84, 0.28, 1) both;
}

.cs-hive-form__success h3 {
  margin: 0 0 0.55rem;
  font-family: "Charcuterie Block", "Alfa Slab One", serif;
  font-size: clamp(2.2rem, 6vw, 3rem);
  line-height: 0.92;
  text-transform: uppercase;
  color: var(--brown);
}

.cs-hive-form__success-copy {
  max-width: none;
  margin: 0 auto;
}

.cs-hive-form__success p {
  margin: 0;
  color: rgba(76, 41, 2, 0.76);
  line-height: 1.55;
}

.cs-hive-form__coupon-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  width: 100%;
  max-width: none;
  gap: 0.7rem;
  margin: 1.05rem 0 0.85rem;
  align-items: center;
  justify-items: stretch;
}

.cs-hive-form__coupon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 3.4rem;
  padding: 1rem 1rem;
  border: 1px dashed rgba(191, 102, 4, 0.34);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.94);
  color: var(--brown);
  font: 800 1.7rem/1 "Alfa Slab One", serif;
  letter-spacing: 0.08em;
  text-align: center;
  text-decoration: none;
  cursor: copy;
  user-select: text;
  -webkit-user-select: text;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.cs-hive-form__copy-button,
.cs-hive-form__success-close {
  width: 100%;
  min-height: 3.05rem;
  border: 1px solid rgba(191, 102, 4, 0.18);
  border-radius: 1rem;
  padding: 0.9rem 1.1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 248, 220, 0.94) 100%);
  color: var(--brown);
  font: 800 0.92rem/1 "DM Sans", sans-serif;
  letter-spacing: 0.04em;
  box-shadow:
    0 12px 24px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.cs-hive-form__copy-button {
  justify-self: stretch;
}

.cs-hive-form__success-actions {
  display: grid;
  width: 100%;
  max-width: none;
  gap: 0.7rem;
}

.cs-hive-form__tickets-link {
  display: inline-flex;
  width: 100%;
  min-height: 3.2rem;
  margin-bottom: 0;
}

.cs-hive-form__copy-hint {
  margin: 0 0 0.45rem;
  font-size: 0.76rem;
  line-height: 1.45;
  color: rgba(76, 41, 2, 0.7);
}

.cs-hive-form__copy-feedback {
  min-height: 1.1rem;
  margin: 0 0 0.95rem;
  color: var(--blue-deep);
  font-size: 0.8rem;
  font-weight: 700;
}

.cs-hive-form.is-success .cs-hive-form__fields {
  display: none;
}

.cs-hive-form.is-success .cs-hive-form__success {
  display: block !important;
}

.hive-signup-form-has-error,
.cs-hive-form input.hive-signup-form-has-error {
  border-color: #cf4f44 !important;
}

@media (max-width: 52rem) {
  .cs-hive-popup__layout {
    grid-template-columns: 1fr;
  }

  .cs-hive-popup__promo,
  .cs-hive-popup__panel {
    padding: 1.2rem 1rem;
  }

  .cs-hive-popup__headline,
  .cs-hive-form__intro h3 {
    font-size: 1.62rem;
  }

  .cs-hive-form__coupon-row {
    grid-template-columns: 1fr;
  }

  .cs-hive-popup.is-success .cs-hive-popup__panel {
    padding: 0.65rem;
  }

  .cs-hive-form.is-success {
    max-width: none;
  }

  .cs-hive-form__success {
    padding: 1.3rem 1rem 1rem;
    border-radius: 1.1rem;
  }

  .cs-hive-form__success-burst span {
    transform-origin: center 4.25rem;
  }

  .cs-hive-form__success-badge {
    min-width: 5.9rem;
    min-height: 2.15rem;
    margin-bottom: 0.75rem;
    font-size: 0.82rem;
  }

  .cs-hive-form__success h3 {
    font-size: 2.1rem;
  }

  .cs-hive-form__coupon-link {
    font-size: 1.45rem;
    letter-spacing: 0.06em;
  }

  .cs-hive-popup.is-success .cs-hive-popup__dialog {
    width: min(100%, calc(100vw - 0.8rem));
    max-height: min(90svh, 39rem);
  }
}

@media (max-width: 36rem) {
  .cs-hive-popup {
    padding: 0.55rem;
  }

  .cs-hive-popup__dialog {
    border-radius: 1.15rem;
    max-height: min(90svh, 36rem);
  }

  .cs-hive-popup__promo,
  .cs-hive-popup__panel {
    padding: 0.95rem 0.85rem;
  }

  .cs-hive-form__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .cs-hive-popup__promo {
    padding-bottom: 0.7rem;
  }

  .cs-hive-popup__eyebrow {
    margin-bottom: 0.3rem;
    font-size: 0.64rem;
  }

  .cs-hive-popup__offer {
    font-size: 3.6rem;
  }

  .cs-hive-popup__headline {
    margin: 0.48rem 0 0.32rem;
    font-size: 1.42rem;
  }

  .cs-hive-popup__copy {
    font-size: 0.9rem;
    line-height: 1.48;
  }

  .cs-hive-popup__highlights {
    display: none;
  }

  .cs-hive-form__intro p {
    margin-bottom: 0.68rem;
    font-size: 0.9rem;
    line-height: 1.48;
  }

  .cs-hive-form label {
    margin-bottom: 0.32rem;
  }

  .cs-hive-form input {
    margin-bottom: 0.62rem;
    padding: 0.78rem 0.88rem;
  }

  .cs-hive-form__checkbox {
    gap: 0.55rem;
    margin-bottom: 0.65rem;
  }

  .cs-hive-form__checkbox span,
  .cs-hive-form__checkbox a {
    font-size: 0.7rem;
    line-height: 1.42;
  }

  .cs-hive-form button[type="submit"] {
    min-height: 2.9rem;
    padding: 0.82rem 1rem;
    font-size: 0.92rem;
  }

  .cs-hive-popup.is-success .cs-hive-popup__dialog {
    max-height: min(90svh, 34rem);
  }

  .cs-hive-form__success {
    padding: 1.15rem 0.95rem 0.95rem;
  }

  .cs-hive-form__success-copy {
    font-size: 0.9rem;
    line-height: 1.42;
  }

  .cs-hive-form__copy-feedback {
    margin-bottom: 0.75rem;
  }
}

@keyframes cs-success-pop {
  0% {
    opacity: 0;
    transform: scale(0.82);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes cs-confetti-burst {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(0) scale(0.7) rotate(var(--confetti-rotate, 0deg));
  }

  18% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(-5.6rem) scale(1) rotate(var(--confetti-rotate, 0deg));
  }
}

@media (max-width: 33rem) {
  .countdown {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


/* Recap archive: direct horizontal year picker. */
.section--legacy {
  overflow: hidden;
}

.timeline-detail.is-idle h3 {
  max-width: 45rem;
}

.timeline-detail.is-idle::after {
  width: 3.6rem;
  height: 1.35rem;
  margin-top: 0.42rem;
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 96 32'%3E%3Cpath fill='white' d='M16 29 1 16 16 3v9h64V3l15 13-15 13v-9H16z'/%3E%3C/svg%3E");
}

.legacy-scroll {
  --timeline-line-y: 50%;
  --timeline-dot-size: 2.46rem;
  --timeline-line-thickness: 2px;
  --timeline-note-gap: 1.28rem;
  --timeline-step: clamp(5.4rem, 7.8vw, 7rem);
  height: auto !important;
}

.legacy-scroll__sticky {
  position: relative !important;
  top: auto !important;
  width: 100%;
  height: auto !important;
  min-height: 0 !important;
  display: grid;
  grid-template-rows: auto auto;
  gap: clamp(0.45rem, 1.6vw, 0.85rem);
  align-items: center;
  justify-items: stretch;
  overflow: visible;
}

.legacy-scroll__sticky::before {
  content: none !important;
}

.legacy-scroll__viewport,
[data-timeline-ready="true"] .legacy-scroll__viewport {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  width: 100%;
  max-width: none;
  height: auto;
  min-height: clamp(11.5rem, 18vw, 13.4rem);
  margin-inline: 0;
  padding: 0.45rem 0 1.05rem;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.88) rgba(255, 255, 255, 0.2);
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}

.legacy-scroll__viewport::-webkit-scrollbar {
  display: block;
  height: 0.64rem;
}

.legacy-scroll__viewport::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
}

.legacy-scroll__viewport::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.86);
  border-radius: 999px;
}

.legacy-scroll__viewport::before {
  inset: calc(var(--timeline-line-y) - (var(--timeline-line-thickness) / 2)) 0 auto;
  width: auto;
  height: var(--timeline-line-thickness);
  transform: none;
}

.legacy-rail {
  display: flex;
  align-items: stretch;
  gap: 0;
  width: max-content;
  max-width: none;
  min-height: clamp(10.25rem, 16vw, 12.2rem);
  height: auto;
  padding: 0 max(46vw, 24rem);
  margin-inline: 0;
  transform: none !important;
  will-change: auto;
}

.timeline-node {
  position: relative;
  flex: 0 0 var(--timeline-step);
  min-width: var(--timeline-step);
  min-height: 100%;
  padding: 0;
  scroll-snap-align: center;
}

.timeline-node__dot {
  top: var(--timeline-line-y);
  left: 50%;
  transform: translate(-50%, -50%);
}

.timeline-node__year {
  top: calc(var(--timeline-line-y) + 2rem);
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem;
  letter-spacing: 0;
}

@media (max-width: 41.999rem) {
  .legacy-heading {
    display: grid;
  }

  .section--legacy {
    padding-top: clamp(1.35rem, 5vw, 2.1rem);
    padding-bottom: clamp(2rem, 7vw, 2.7rem);
  }

  .timeline-detail.is-idle {
    width: min(100%, 22rem);
    padding: 0.25rem 0.55rem 0.5rem;
    opacity: 1;
  }

  .timeline-detail.is-idle h3 {
    font-size: clamp(1.55rem, 7vw, 2.05rem);
  }

  .legacy-scroll {
    --timeline-step: 4.85rem;
    --timeline-dot-size: 1.9rem;
    --timeline-line-thickness: 2px;
  }

  .legacy-scroll__viewport,
  [data-timeline-ready="true"] .legacy-scroll__viewport {
    min-height: 10.75rem;
    padding-top: 0.4rem;
    padding-bottom: 0.95rem;
  }

  .legacy-rail {
    min-height: 9.6rem;
    padding-inline: max(44vw, 9.8rem);
  }

  .timeline-node__year {
    top: calc(var(--timeline-line-y) + 1.55rem);
    font-size: 0.76rem;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1);
  }

  .legacy-scroll {
    height: auto !important;
  }

  .legacy-scroll__sticky {
    position: static;
    height: auto;
  }

  .legacy-scroll__viewport {
    overflow-x: auto !important;
  }

  .legacy-rail {
    transform: none !important;
  }
}
