:root {
  --color-black: #000000;
  --color-white: #ffffff;
  --color-soft-white: #f5f5f5;
  --color-orange: #ff914d;
  --color-border: #ffffff;
  --color-shadow: rgba(0, 0, 0, 0.25);
  --color-glow-orange: rgba(255, 145, 77, 0.66);
  --color-glow-white: rgba(255, 255, 255, 0.65);

  --font-league: "League Gothic", "Arial Narrow", sans-serif;
  --font-jersey: "Jersey 25", monospace;
  --font-erica: "Erica One", Georgia, serif;
  --font-doppio: "Doppio One", Arial, sans-serif;
  --font-rubik-beastly: "Rubik Beastly", fantasy;
  --font-climate: "Climate Crisis", Impact, sans-serif;
  --font-fugaz: "Fugaz One", Arial, sans-serif;

  --stage-width: 414px;
  --stage-height: 2504px;
  --radius-card: 5px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 10px;
  --space-4: 14px;
  --space-5: 20px;
  --text-tiny: 4px;
  --text-xxs: 6px;
  --text-xs: 8px;
  --text-logo: 12px;
  --text-button: 24px;
  --text-xl: 30px;
  --text-2xl: 32px;
  --text-3xl: 36px;
  --text-4xl: 40px;
  --text-5xl: 60px;
  --text-6xl: 64px;
  --text-hero: 105px;
}

* {
  box-sizing: border-box;
}

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

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--color-black);
  color: var(--color-white);
  font-family: var(--font-doppio);
}

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

a {
  color: inherit;
}

.site-shell {
  --stage-scale: 1;
  width: 100%;
  min-height: var(--stage-height);
  height: var(--stage-height);
  display: flex;
  justify-content: center;
  background: var(--color-black);
  position: relative;
}

.festival__lang-toggle {
  position: absolute;
  z-index: 50;
  left: 14px;
  top: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  border-radius: 999px;
  border: 1px solid rgba(255, 145, 77, 0.85);
  background: rgba(0, 0, 0, 0.55);
  box-shadow: 0 0 18px rgba(255, 145, 77, 0.18);
  cursor: pointer;
  transition: box-shadow 400ms ease, border-color 400ms ease;
}

.festival__lang-pill {
  display: inline-flex;
  gap: 2px;
}

.festival__lang-option {
  font-family: var(--font-doppio);
  font-size: 14px;
  line-height: 1;
  padding: 8px 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.7);
  transition: transform 400ms ease, background 400ms ease, color 400ms ease;
  user-select: none;
}

.festival__lang-option--active {
  background: linear-gradient(180deg, rgba(255, 145, 77, 0.95), rgba(255, 145, 77, 0.55));
  color: var(--color-black);
  text-shadow: none;
  transform: translateY(-1px);
}

.festival__music-toggle {
  position: absolute;
  z-index: 50;
  right: 14px;
  top: 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  background: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.festival__music-bar {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 145, 77, 0.5);
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 0 20px rgba(255, 145, 77, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: border-color 400ms ease, box-shadow 400ms ease, background 400ms ease, transform 200ms ease;
}

.festival__music-toggle:hover .festival__music-bar,
.festival__music-toggle:focus-visible .festival__music-bar {
  border-color: rgba(255, 145, 77, 0.85);
  box-shadow: 0 0 28px rgba(255, 145, 77, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.festival__music-toggle:active .festival__music-bar {
  transform: translateY(0) scale(0.97);
}

.festival__music-bar-icon {
  position: relative;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 145, 77, 0.9);
  transition: color 400ms ease, transform 400ms ease;
}

.festival__music-play-icon,
.festival__music-pause-icon {
  position: absolute;
  width: 18px;
  height: 18px;
  transition: opacity 400ms ease, transform 400ms ease;
}

.festival__music-play-icon {
  opacity: 1;
  transform: scale(1);
}

.festival__music-pause-icon {
  opacity: 0;
  transform: scale(0.5);
}

.festival__music-toggle[aria-pressed="true"] .festival__music-play-icon {
  opacity: 0;
  transform: scale(0.5);
}

.festival__music-toggle[aria-pressed="true"] .festival__music-pause-icon {
  opacity: 1;
  transform: scale(1);
}

.festival__music-bar-text {
  font-family: var(--font-doppio);
  font-size: 11px;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
  user-select: none;
  transition: color 400ms ease;
}

.festival__music-toggle[aria-pressed="true"] .festival__music-bar-text {
  color: rgba(255, 145, 77, 0.95);
}

/* Pulsing glow ring when music is playing */
.festival__music-toggle[aria-pressed="true"] .festival__music-bar {
  border-color: rgba(255, 145, 77, 0.7);
  box-shadow: 0 0 20px rgba(255, 145, 77, 0.2), 0 0 40px rgba(255, 145, 77, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  animation: festival-music-pulse 2.4s ease-in-out infinite;
}

@keyframes festival-music-pulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(255, 145, 77, 0.2), 0 0 40px rgba(255, 145, 77, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }
  50% {
    box-shadow: 0 0 28px rgba(255, 145, 77, 0.35), 0 0 56px rgba(255, 145, 77, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }
}

.festival {
  position: relative;
  width: var(--stage-width);
  height: var(--stage-height);
  overflow: hidden;
  flex: 0 0 var(--stage-width);
  background: var(--color-black);
  transform-origin: top center;
  transform: scale(var(--stage-scale));
}

.festival__hero,
.festival__intro,
.festival__events,
.festival__performers,
.festival__tickets,
.festival__shop,
.festival__products,
.festival__footer {
  position: absolute;
  left: 0;
  width: var(--stage-width);
}

.festival__hero {
  top: 2px;
  height: 297px;
  overflow: hidden;
  background: var(--color-black);
}

.festival__hero-video {
  position: absolute;
  inset: 44px 0 5px;
  width: 100%;
  height: calc(100% - 49px);
  object-fit: cover;
  filter: grayscale(1) contrast(1.18);
  opacity: 0.42;
  pointer-events: none;
}

.festival__hero-image {
  position: absolute;
  left: -1px;
  top: 44px;
  width: 414px;
  height: 248px;
  object-fit: cover;
  opacity: 0;
}

.festival__hero-title {
  position: absolute;
  left: 3px;
  top: 81px;
  width: 407px;
  height: 96px;
  margin: 0;
  color: var(--color-orange);
  font-family: var(--font-league);
  font-size: var(--text-hero);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 2.1px;
  text-align: center;
  text-shadow: 0 4px 4px var(--color-shadow);
  opacity: 0.55;
  font-variation-settings: "wdth" 100;
  z-index: 1;
}

.festival__hero-stamp {
  position: absolute;
  left: 317px;
  top: 67px;
  width: 57.149px;
  height: 36.536px;
  object-fit: contain;
  transform: rotate(-10.41deg);
  transform-origin: center;
  z-index: 1;
}

.festival__tickets-available {
  position: absolute;
  left: 121px;
  top: 230px;
  width: 171.313px;
  height: 17.712px;
  object-fit: contain;
  z-index: 1;
}

.festival__mark {
  position: absolute;
  width: 32px;
  height: 32px;
  color: var(--color-orange);
  font-family: var(--font-jersey);
  font-weight: 400;
  line-height: 1;
  z-index: 2;
}

.festival__mark--hero {
  left: 195px;
  top: 8px;
}

.festival__mark--nav {
  left: 10px;
  top: 1px;
}

.festival__mark-letter {
  position: absolute;
  font-size: var(--text-logo);
}

.festival__mark-letter--w {
  left: 0;
  top: 0;
}

.festival__mark-letter--o {
  left: 13px;
  top: 0;
}

.festival__mark-letter--t {
  left: 1px;
  top: 13px;
}

.festival__mark-letter--c {
  left: 13px;
  top: 13px;
}

.festival__mark-tag {
  position: absolute;
  left: 0;
  top: 12px;
  width: 22px;
  height: 2px;
  overflow: hidden;
  font-size: 2.5px;
  white-space: nowrap;
}

.festival__mark-year {
  position: absolute;
  left: 5px;
  top: 2px;
  width: 11px;
  height: 5px;
  font-size: 5px;
  text-align: center;
  transform: rotate(-90deg);
  transform-origin: center;
}

.festival__intro {
  top: 297px;
  height: 293px;
  overflow: visible;
}

.festival__nav-bar {
  position: absolute;
  left: 0;
  top: 0;
  width: 414px;
  height: 59px;
  background: var(--color-black);
}

.festival__nav {
  position: absolute;
  inset: 0;
  z-index: 5;
}

.festival__nav-list {
  position: absolute;
  left: 237.69px;
  top: 21.16px;
  width: 157.91px;
  height: 7.93px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--color-white);
  font-family: var(--font-doppio);
  font-size: 8px;
  line-height: 1;
  white-space: nowrap;
}

.festival__nav-link {
  text-decoration: none;
}

.festival__nav-toggle {
  position: absolute;
  right: 13px;
  top: 13px;
  width: 31px;
  height: 31px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  border: 1px solid rgba(255, 145, 77, 0.7);
  border-radius: var(--radius-card);
  background: var(--color-black);
  color: var(--color-orange);
  cursor: pointer;
}

.festival__nav-toggle-line {
  width: 16px;
  height: 2px;
  background: currentColor;
}

.festival__intro-title {
  position: absolute;
  left: 10px;
  top: 24px;
  width: 401px;
  height: 80px;
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-erica);
  font-size: var(--text-5xl);
  font-weight: 400;
  line-height: 1;
  transform: scaleX(0.9);
  transform-origin: left top;
}

.festival__intro-accent {
  position: absolute;
  left: 234px;
  top: 101px;
  width: 178px;
  height: 51px;
  margin: 0;
  color: var(--color-orange);
  font-family: var(--font-erica);
  font-size: var(--text-4xl);
  line-height: 1;
  transform: scaleX(0.88);
  transform-origin: left top;
}

.festival__intro-copy {
  position: absolute;
  left: 11px;
  top: 109px;
  width: 199px;
  height: 70px;
  margin: 0;
  overflow: hidden;
  color: var(--color-white);
  font-family: var(--font-doppio);
  font-size: var(--text-xs);
  line-height: normal;
  white-space: normal;
}

.festival__separator {
  position: absolute;
  left: 10px;
  top: 198px;
  width: 395px;
  height: 1px;
}

.festival__year-title {
  position: absolute;
  left: 10px;
  top: 207px;
  width: 394px;
  height: 83px;
  margin: 0;
  color: var(--color-orange);
  font-family: var(--font-erica);
  font-size: var(--text-6xl);
  line-height: 1;
  white-space: nowrap;
  transform: scaleX(0.82);
  transform-origin: left top;
}

.festival__year-title-alt {
  color: var(--color-soft-white);
}

.festival__events {
  top: 623px;
  height: 389px;
  overflow: hidden;
}

.festival__events-video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 111px;
  object-fit: cover;
  opacity: 0.35;
  pointer-events: none;
}

.festival__events-title {
  position: absolute;
  left: 50%;
  top: 20px;
  width: 380px;
  height: 120px;
  margin: 0;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
  z-index: 1;
  transform: translateX(-50%);
}

.festival__upcoming-letter {
  position: absolute;
  top: 0;
  bottom: 0;
}

.festival__upcoming-letter img {
  width: 100%;
  height: 100%;
}

.festival__upcoming-letter--1 {
  left: 93.55%;
  right: 0;
}

.festival__upcoming-letter--2 {
  left: 86.41%;
  right: 6.83%;
}

.festival__upcoming-letter--3 {
  left: 79.52%;
  right: 14.03%;
}

.festival__upcoming-letter--4 {
  left: 73.22%;
  right: 20.93%;
}

.festival__upcoming-letter--5 {
  left: 66.4%;
  right: 27.15%;
}

.festival__upcoming-letter--6 {
  left: 60.27%;
  right: 33.89%;
}

.festival__upcoming-letter--7 {
  left: 46.75%;
  right: 46.8%;
}

.festival__upcoming-letter--8 {
  left: 39.84%;
  right: 53.71%;
}

.festival__upcoming-letter--9 {
  left: 36.24%;
  right: 60.68%;
}

.festival__upcoming-letter--10 {
  left: 27.48%;
  right: 64.31%;
}

.festival__upcoming-letter--11 {
  left: 20.56%;
  right: 72.99%;
}

.festival__upcoming-letter--12 {
  left: 13.78%;
  right: 79.78%;
}

.festival__upcoming-letter--13 {
  left: 6.94%;
  right: 86.61%;
}

.festival__upcoming-letter--14 {
  left: 0;
  right: 93.55%;
}

.festival__poster {
  position: absolute;
  top: 162px;
  width: 148px;
  height: 210px;
  overflow: hidden;
  z-index: 1;
}

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

.festival__poster--left {
  left: 39px;
}

.festival__poster--right {
  left: 230px;
}

.festival__performers {
  top: 1030px;
  height: 380px;
}

.festival__performers-title {
  position: absolute;
  left: 14px;
  top: 0;
  width: 386px;
  height: 51px;
  margin: 0;
  color: var(--color-orange);
  font-family: var(--font-erica);
  font-size: var(--text-4xl);
  font-weight: 400;
  line-height: 1;
  transform: scaleX(0.88);
  transform-origin: left top;
}

.festival__performer-panel {
  position: absolute;
  display: block;
}

.festival__performer-panel--left {
  left: -1px;
  top: 82px;
  width: 206px;
  height: 298px;
}

.festival__performer-panel--right {
  left: 205px;
  top: 65px;
  width: 208px;
  height: 315px;
}

.festival__performer-name {
  position: absolute;
  left: 232px;
  top: 200px;
  width: 153px;
  height: 51px;
  margin: 0;
  color: var(--color-soft-white);
  font-family: var(--font-fugaz);
  font-size: var(--text-3xl);
  line-height: 1;
  opacity: 0.9;
  z-index: 1;
}

.festival__tickets {
  top: 1402px;
  height: 291px;
}

.festival__ticket-card {
  position: absolute;
  left: 122px;
  top: 34px;
  width: 170px;
  height: 190px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: var(--color-black);
}

.festival__ticket-date {
  position: absolute;
  left: 18px;
  top: 4px;
  width: 132px;
  height: 23px;
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-doppio);
  font-size: var(--text-button);
  font-weight: 400;
  line-height: 1;
  text-align: center;
}

.festival__ticket-location {
  position: absolute;
  left: 11px;
  top: 35px;
  width: 145px;
  height: 20px;
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-doppio);
  font-size: var(--text-xxs);
  line-height: normal;
  text-align: center;
}

.festival__ticket-location a,
.festival__ticket-location span {
  display: block;
}

.festival__ticket-link {
  position: absolute;
  color: rgba(255, 255, 255, 0.18);
  font-family: var(--font-rubik-beastly);
  font-size: var(--text-button);
  line-height: 0.85;
  text-decoration: underline;
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
}

.festival__ticket-link--buy {
  left: 9px;
  top: 134px;
  width: 106px;
  height: 47px;
}

.festival__ticket-link--merch {
  right: 5px;
  top: 70px;
  width: 103px;
  height: 49px;
  text-align: right;
}

.festival__countdown {
  position: absolute;
  left: 0;
  top: 240px;
  width: 414px;
  height: 34.724px;
}

.festival__shop {
  top: 1681px;
  height: 291px;
}

.festival__shop-image,
.festival__shop-strip {
  position: absolute;
  overflow: hidden;
}

.festival__shop-image img,
.festival__shop-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.festival__shop-image--1 {
  left: 10px;
  top: 14px;
  width: 128px;
  height: 122px;
}

.festival__shop-image--2 {
  left: 143px;
  top: 14px;
  width: 128px;
  height: 122px;
}

.festival__shop-image--3 {
  left: 276px;
  top: 14px;
  width: 128px;
  height: 122px;
}

.festival__shop-image--4 {
  left: 10px;
  top: 141px;
  width: 128px;
  height: 122px;
}


.festival__shop-image--5 {
  left: 143px;
  top: 141px;
  width: 128px;
  height: 122px;
}


.festival__shop-image--6 {
  left: 276px;
  top: 141px;
  width: 128px;
  height: 122px;
}


.festival__shop-strip {
  left: 276px;
  width: 128px;
  height: 21px;
}

.festival__shop-strip--1 {
  top: 143px;
}

.festival__shop-strip--2 {
  top: 179px;
}

.festival__shop-strip--3 {
  top: 200px;
}

.festival__shop-strip--4 {
  top: 221px;
}

.festival__shop-strip--5 {
  top: 242px;
}

.festival__shop-title {
  position: absolute;
  left: 158px;
  top: 105px;
  width: 113.835px;
  height: 77.2px;
  margin: 0;
}

.festival__shop-title img {
  width: 100%;
  height: 100%;
}

.festival__products {
  top: 1947px;
  height: 353px;
}

.festival__products-kicker {
  position: absolute;
  left: 181px;
  top: 0;
  width: 51px;
  height: 6px;
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-doppio);
  font-size: var(--text-tiny);
  line-height: 1;
  opacity: 0.7;
  white-space: nowrap;
}

.festival__footer {
  top: 2255px;
  height: 246px;
}

.festival__social {
  position: absolute;
  top: 210px;
  width: 28px;
  height: 22px;
  overflow: hidden;
}

.festival__social img {
  width: 281.38%;
  max-width: none;
  height: 242.86%;
  object-fit: cover;
}

.festival__social--1 {
  left: 14px;
}

.festival__social--1 img {
  transform: translate(-62%, -21%);
}

.festival__social--2 {
  left: 44px;
}

.festival__social--2 img {
  transform: translate(-33%, -17%);
}

.festival__social--3 {
  left: 76px;
}

.festival__social--3 img {
  transform: translate(-2%, -19%);
}

.festival__follow {
  position: absolute;
  left: 113px;
  top: 178px;
  width: 292px;
  height: 43px;
  margin: 0;
  color: var(--color-orange);
  font-family: var(--font-climate);
  font-size: var(--text-2xl);
  line-height: 1;
  text-shadow: 0 4px 2px var(--color-glow-orange);
  white-space: nowrap;
  font-variation-settings: "YEAR" 1979;
  transform: scaleX(0.82);
  transform-origin: left top;
}

.festival__follow span {
  color: var(--color-white);
}

@media (max-width: 1024px) {
  .festival__nav-toggle {
    display: flex;
  }

  .festival__nav-list {
    left: auto;
    right: 13px;
    top: 49px;
    width: 151px;
    height: auto;
    max-height: 0;
    overflow: hidden;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 0 solid rgba(255, 145, 77, 0.7);
    border-radius: var(--radius-card);
    background: var(--color-black);
    font-size: 12px;
    transition: max-height 180ms ease;
  }

  .festival__nav--open .festival__nav-list {
    border-width: 1px;
    max-height: 170px;
  }

  .festival__nav-link {
    display: block;
    padding: 10px 12px;
  }
}

.festival__countdown {
  display: block;
  color: var(--color-white);
  font-family: var(--font-erica);
  font-size: 28px;
  line-height: 0.95;
  text-align: center;
  text-shadow: 0 4px 4px var(--color-shadow);
  white-space: nowrap;
}

.festival__countdown-number {
  color: var(--color-orange);
}

.festival__products {
  overflow: hidden;
}

.festival__products-kicker span,
.festival__marquee-item span {
  color: var(--color-orange);
}

.festival__marquee-row {
  position: absolute;
  left: 0;
  width: 100%;
  height: 45px;
  overflow: hidden;
}

.festival__marquee-row:nth-of-type(1) {
  top: 48px;
}

.festival__marquee-row:nth-of-type(2) {
  top: 93px;
}

.festival__marquee-row:nth-of-type(3) {
  top: 138px;
}

.festival__marquee-row:nth-of-type(4) {
  top: 183px;
}

.festival__marquee-row:nth-of-type(5) {
  top: 228px;
}

.festival__marquee-row:nth-of-type(6) {
  top: 273px;
}

.festival__marquee-row:nth-of-type(7) {
  top: 318px;
}

.festival__marquee-track {
  display: flex;
  width: max-content;
  min-width: 300%;
  animation-duration: 16s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  will-change: transform;
}

.festival__marquee-row--left .festival__marquee-track {
  animation-name: festival-marquee-left;
}

.festival__marquee-row--right .festival__marquee-track {
  animation-name: festival-marquee-right;
}

.festival__marquee-item {
  display: inline-block;
  padding-right: 28px;
  color: var(--color-white);
  font-family: var(--font-erica);
  font-size: var(--text-xl);
  line-height: 1;
  white-space: nowrap;
}

.festival__footer {
  display: flex;
  align-items: flex-start;
}

.festival__social {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  overflow: visible;
  transition: opacity 160ms ease, transform 160ms ease;
}

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

.festival__social--instagram {
  left: 14px;
}

.festival__social--tiktok {
  left: 48px;
}

.festival__social--email {
  left: 82px;
}

.festival__social svg {
  width: 100%;
  height: 100%;
}

@keyframes festival-marquee-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-33.333%);
  }
}

@keyframes festival-marquee-right {
  from {
    transform: translateX(-33.333%);
  }

  to {
    transform: translateX(0);
  }
}

@media (min-width: 769px) {
  .site-shell {
    --stage-scale: 1 !important;
    display: block;
    min-height: 100vh !important;
    height: auto !important;
  }

  .festival {
    width: 100%;
    height: auto;
    min-height: 100vh;
    overflow: visible;
    flex: none;
    transform: none !important;
  }

  .festival__hero,
  .festival__intro,
  .festival__events,
  .festival__performers,
  .festival__tickets,
  .festival__shop,
  .festival__products,
  .festival__footer {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
  }

  .festival__hero {
    height: min(78vh, 760px);
    min-height: 560px;
  }

  .festival__hero-video {
    inset: clamp(90px, 9vw, 145px) clamp(70px, 7vw, 120px) clamp(45px, 5vw, 82px);
    width: auto;
    height: auto;
    opacity: 0.46;
  }

  .festival__hero-image {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-position: center;
  }

  .festival__hero-title {
    left: 50%;
    top: 50%;
    width: auto;
    height: auto;
    font-size: clamp(150px, 20vw, 320px);
    line-height: 0.9;
    transform: translate(-50%, -50%);
  }

  .festival__mark--hero {
    left: 50%;
    top: 28px;
    transform: translateX(-50%) scale(1.45);
    transform-origin: top center;
  }

  .festival__hero-stamp {
    left: auto;
    right: clamp(54px, 11vw, 170px);
    top: 22%;
    width: clamp(92px, 8vw, 138px);
    height: auto;
    aspect-ratio: 57.149 / 36.536;
    object-fit: contain;
  }

  .festival__tickets-available {
    left: 50%;
    top: calc(50% + clamp(98px, 10vw, 148px));
    bottom: auto;
    width: clamp(220px, 20vw, 330px);
    height: auto;
    aspect-ratio: 171.786 / 17.8847;
    object-fit: contain;
    transform: translateX(-50%);
  }

  .festival__intro {
    min-height: 620px;
    padding: 0 clamp(32px, 6vw, 96px) 155px;
    overflow: visible;
  }

  .festival__nav-bar {
    position: sticky;
    z-index: 20;
    left: auto;
    top: 0;
    width: 100%;
    height: 78px;
    margin: 0 calc(clamp(32px, 6vw, 96px) * -1);
    padding: 0 clamp(32px, 6vw, 96px);
  }

  .festival__mark--nav {
    left: clamp(32px, 6vw, 96px);
    top: 18px;
    transform: scale(1.45);
    transform-origin: left top;
  }

  .festival__nav-list {
    left: auto;
    right: clamp(32px, 6vw, 96px);
    top: 30px;
    width: auto;
    height: auto;
    gap: clamp(22px, 3vw, 48px);
    font-size: 16px;
  }

  .festival__nav-toggle {
    display: none;
  }

  .festival__intro-title {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: auto;
    margin-top: 70px;
    font-size: clamp(78px, 11vw, 170px);
    transform: scaleX(0.92);
  }

  .festival__intro-accent {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: auto;
    margin-top: -18px;
    margin-left: 0;
    font-size: clamp(52px, 7vw, 112px);
    text-align: right;
    transform: scaleX(0.88);
    transform-origin: right top;
  }

  .festival__intro-copy {
    position: relative;
    left: auto;
    top: auto;
    width: min(580px, 46vw);
    height: auto;
    margin-top: -18px;
    font-size: clamp(13px, 1.15vw, 18px);
    line-height: 1.36;
  }

  .festival__separator {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    margin-top: 48px;
  }

  .festival__year-title {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: auto;
    margin-top: 30px;
    font-size: clamp(92px, 12vw, 188px);
    transform: scaleX(0.86);
  }

  .festival__events {
    display: grid;
    grid-template-columns: repeat(2, minmax(250px, 380px));
    justify-content: center;
    gap: clamp(42px, 7vw, 110px);
    min-height: 1250px;
    padding: 330px clamp(32px, 6vw, 96px) 230px;
  }

  .festival__events-video {
    top: 230px;
    height: clamp(250px, 24vw, 360px);
    opacity: 0.72;
  }

  .festival__events-title {
    position: relative;
    grid-column: 1 / -1;
    left: auto;
    top: auto;
    width: min(100%, 1180px);
    height: clamp(150px, 16vw, 260px);
    margin: 0 auto 22px;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.6));
    transform: none;
  }

  .festival__poster {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: clamp(420px, 46vw, 620px);
    aspect-ratio: 148 / 210;
  }

  .festival__performers {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 430px));
    justify-content: center;
    align-items: end;
    gap: 0;
    min-height: 1120px;
    padding: 130px clamp(32px, 6vw, 96px) 220px;
  }

  .festival__performers-title {
    position: relative;
    grid-column: 1 / -1;
    left: auto;
    top: auto;
    width: 100%;
    height: auto;
    margin-bottom: 42px;
    font-size: clamp(52px, 5.8vw, 88px);
    justify-self: center;
    text-align: center;
    white-space: nowrap;
    transform: scaleX(0.92);
  }

  .festival__performer-panel {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: clamp(540px, 48vw, 680px);
    object-fit: contain;
  }

  .festival__performer-name {
    left: calc(50% + 68px);
    top: auto;
    bottom: 225px;
    width: auto;
    height: auto;
    font-size: clamp(42px, 4.2vw, 74px);
  }

  .festival__tickets {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 78px;
    min-height: 820px;
    padding: 130px clamp(32px, 6vw, 96px);
  }

  .festival__ticket-card {
    position: relative;
    left: auto;
    top: auto;
    width: clamp(870px, 34vw, 540px);
    height: clamp(330px, 34vw, 470px);
  }

  .festival__ticket-date {
    left: 50%;
    top: 22px;
    width: 80%;
    height: auto;
    font-size: clamp(44px, 4.4vw, 68px);
    transform: translateX(-50%);
  }

  .festival__ticket-location {
    left: 50%;
    top: 105px;
    width: 72%;
    height: auto;
    font-size: clamp(13px, 1.2vw, 18px);
    transform: translateX(-50%);
  }

  .festival__ticket-link {
    font-size: clamp(42px, 4vw, 64px);
  }

  .festival__ticket-link--buy {
    left: 22px;
    top: auto;
    bottom: 34px;
    width: 52%;
    height: auto;
  }

  .festival__ticket-link--merch {
    right: 24px;
    top: 53%;
    width: 52%;
    height: auto;
  }

  .festival__countdown {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    height: auto;
    color: var(--color-white);
    font-size: clamp(46px, 6.4vw, 98px);
    text-align: center;
  }

  .festival__shop {
    display: grid;
    grid-template-columns: repeat(6, minmax(100px, 1fr));
    grid-auto-rows: clamp(145px, 15.5vw, 230px);
    gap: 12px;
    min-height: 560px;
    padding: 110px clamp(32px, 6vw, 96px) 44px;
  }

  .festival__shop-image,
  .festival__shop-strip {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    height: auto;
  }

  .festival__shop-image {
    height: 100%;
  }

  .festival__shop-strip {
    height: clamp(32px, 3vw, 48px);
  }

  .festival__shop-image--1 {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .festival__shop-image--2 {
    grid-column: 3 / 5;
    grid-row: 1;
  }

  .festival__shop-image--3 {
    grid-column: 5 / 7;
    grid-row: 1;
  }

  .festival__shop-image--4 {
    grid-column: 1 / 3;
    grid-row: 2;
  }

  .festival__shop-image--4 img {
    width: 100%;
    max-width: 100%;
    object-fit: cover;
    object-position: center;
    background: transparent;
  }

  .festival__shop-image--5 {
    grid-column: 3 / 5;
    grid-row: 2;
  }

  .festival__shop-image--5 img {
    width: 100%;
    max-width: 100%;
    object-fit: cover;
    object-position: center;
  }

  .festival__shop-image--6 {
    grid-column: 5 / 7;
    grid-row: 2;
  }

  .festival__shop-strip {
    grid-column: 5 / 7;
  }

  .festival__shop-strip--1 {
    grid-row: 2;
  }

  .festival__shop-strip--2,
  .festival__shop-strip--3,
  .festival__shop-strip--4,
  .festival__shop-strip--5 {
    grid-row: 2;
  }

  .festival__shop-strip--1 {
    align-self: start;
  }

  .festival__shop-strip--2 {
    align-self: center;
    transform: translateY(-52px);
  }

  .festival__shop-strip--3 {
    align-self: center;
  }

  .festival__shop-strip--4 {
    align-self: center;
    transform: translateY(52px);
  }

  .festival__shop-strip--5 {
    align-self: end;
  }

  .festival__shop-title {
    left: 50%;
    top: 50%;
    width: clamp(180px, 19vw, 300px);
    height: auto;
    transform: translate(-50%, -50%);
  }

  .festival__products {
    height: auto;
    min-height: 650px;
    padding: 48px 0 105px;
  }

  .festival__products-kicker {
    position: relative;
    left: auto;
    top: auto;
    width: max-content;
    height: auto;
    margin: 0 auto 24px;
    font-size: 12px;
  }

  .festival__marquee-row {
    position: relative;
    top: auto !important;
    height: clamp(58px, 7.5vw, 116px);
    margin-top: 10px;
  }

  .festival__marquee-track {
    animation-duration: 18s;
  }

  .festival__marquee-item {
    padding-right: clamp(38px, 5vw, 84px);
    font-size: clamp(46px, 6vw, 104px);
  }

  .festival__footer {
    min-height: 260px;
    height: auto;
    align-items: center;
    justify-content: flex-start;
    gap: 28px;
    padding: 80px clamp(32px, 6vw, 96px);
  }

  .festival__social {
    position: relative;
    left: auto;
    top: auto;
    width: 44px;
    height: 44px;
  }

  .festival__follow {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    height: auto;
    margin-left: auto;
    font-size: clamp(48px, 6vw, 108px);
    transform: none;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .festival__nav-toggle {
    display: flex;
    right: clamp(32px, 6vw, 96px);
    top: 22px;
  }

  .festival__nav-list {
    right: clamp(32px, 6vw, 96px);
    top: 64px;
    width: 190px;
    max-height: 0;
    overflow: hidden;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 0 solid rgba(255, 145, 77, 0.7);
    border-radius: var(--radius-card);
    background: var(--color-black);
    font-size: 14px;
    transition: max-height 180ms ease;
  }

  .festival__nav--open .festival__nav-list {
    border-width: 1px;
    max-height: 190px;
  }
}

@media (max-width: 768px) {
  .site-shell {
    --stage-scale: 1 !important;
    display: block;
    min-height: auto !important;
    height: auto !important;
  }

  .festival {
    width: 100% !important;
    height: auto !important;
    min-height: 100vh;
    overflow: visible !important;
    flex: none !important;
    transform: none !important;
  }

  .festival__hero,
  .festival__intro,
  .festival__events,
  .festival__performers,
  .festival__tickets,
  .festival__shop,
  .festival__products,
  .festival__footer {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    height: auto !important;
    overflow: visible !important;
  }

  .festival__mark--hero {
    left: 50%;
    top: 8px;
    transform: translateX(-50%) scale(1.45);
    transform-origin: top center;
  }

  .festival__hero {
    height: min(60vh, 420px);
    min-height: 340px;
    overflow: hidden;
  }

  .festival__hero-video {
    inset: 50px 0 0;
    width: 100%;
    height: calc(100% - 50px);
  }

  .festival__hero-image {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-position: center;
  }

  .festival__hero-title {
    left: 50%;
    top: 50%;
    width: 90%;
    height: auto;
    font-size: clamp(80px, 22vw, 130px);
    line-height: 0.85;
    transform: translate(-50%, -50%);
    letter-spacing: 3px;
    opacity: 0.65;
  }

  .festival__hero-stamp {
    left: auto;
    right: 14px;
    top: 18%;
    width: clamp(48px, 14vw, 64px);
    height: auto;
    aspect-ratio: 57.149 / 36.536;
    transform: rotate(-10.41deg);
  }

  .festival__tickets-available {
    left: 50%;
    top: calc(50% + clamp(70px, 16vw, 100px));
    width: clamp(170px, 42vw, 210px);
    height: auto;
    aspect-ratio: 171.786 / 17.8847;
    transform: translateX(-50%);
  }

  .festival__intro {
    padding: 0 14px 40px;
    min-height: 440px;
  }

  .festival__nav-bar {
    position: sticky;
    z-index: 20;
    top: 0;
    width: 100%;
    height: 50px;
    background: var(--color-black);
    display: flex;
    align-items: center;
    padding: 0 14px;
  }

  .festival__mark--nav {
    position: relative;
    left: auto;
    top: auto;
    transform: scale(1.2);
    transform-origin: left center;
    flex-shrink: 0;
  }

  .festival__nav {
    position: relative;
    inset: auto;
    margin-left: auto;
  }

  .festival__nav-list {
    position: absolute;
    left: auto;
    right: 0;
    top: 38px;
    width: 170px;
    height: auto;
    max-height: 0;
    overflow: hidden;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 0 solid rgba(255, 145, 77, 0.7);
    border-radius: var(--radius-card);
    background: var(--color-black);
    font-size: 13px;
    z-index: 10;
    transition: max-height 180ms ease;
  }

  .festival__nav--open .festival__nav-list {
    border-width: 1px;
    max-height: 200px;
  }

  .festival__nav-toggle {
    display: flex;
    position: relative;
    right: auto;
    top: auto;
    width: 34px;
    height: 34px;
  }

  .festival__nav-link {
    display: block;
    padding: 12px 16px;
  }

  .festival__intro-title {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: auto;
    margin-top: 40px;
    font-size: clamp(44px, 12vw, 64px);
    transform: scaleX(0.9);
    transform-origin: left top;
  }

  .festival__intro-accent {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: auto;
    margin-top: -10px;
    font-size: clamp(32px, 8vw, 44px);
    text-align: right;
    transform: scaleX(0.88);
    transform-origin: right top;
  }

  .festival__intro-copy {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: auto;
    margin-top: 6px;
    overflow: visible;
    font-size: clamp(11px, 3vw, 14px);
    line-height: 1.4;
  }

  .festival__separator {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    margin-top: 32px;
  }

  .festival__year-title {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: auto;
    margin-top: 20px;
    font-size: clamp(48px, 14vw, 72px);
    transform: scaleX(0.82);
    transform-origin: left top;
  }

  .festival__events {
    min-height: 500px;
    padding: 14px 14px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .festival__events-video {
    position: relative;
    width: 100%;
    height: clamp(180px, 30vw, 240px);
    top: auto;
    margin-bottom: 20px;
    opacity: 0.35;
    border-radius: 8px;
  }

  .festival__events-title {
    position: relative;
    left: auto;
    top: auto;
    width: min(100%, 400px);
    height: clamp(90px, 24vw, 130px);
    margin: 0 auto 20px;
    transform: none;
  }

  .festival__poster {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    max-width: 260px;
    height: auto;
    aspect-ratio: 148 / 210;
    margin-bottom: 24px;
  }

  .festival__poster--left,
  .festival__poster--right {
    left: auto;
  }

  .festival__performers {
    min-height: 500px;
    padding: 14px 14px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .festival__performers-title {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    font-size: clamp(32px, 8vw, 44px);
    text-align: center;
    transform: scaleX(0.88);
  }

  .festival__performer-panel {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    max-width: 320px;
    height: auto;
    aspect-ratio: 206 / 298;
    margin-bottom: 16px;
  }

  .festival__performer-panel--left,
  .festival__performer-panel--right {
    left: auto;
    top: auto;
  }

  .festival__performer-name {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: auto;
    margin-top: 10px;
    font-size: clamp(28px, 7vw, 38px);
    text-align: center;
  }

  .festival__tickets {
    min-height: 400px;
    padding: 24px 14px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .festival__ticket-card {
    position: relative;
    left: auto;
    top: auto;
    width: min(280px, 88%);
    height: auto;
    min-height: 220px;
    padding: 14px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .festival__ticket-date {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    height: auto;
    font-size: clamp(20px, 5vw, 26px);
    transform: none;
  }

  .festival__ticket-location {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: auto;
    font-size: var(--text-xs);
    line-height: 1.3;
    transform: none;
  }

  .festival__ticket-location a,
  .festival__ticket-location span {
    display: block;
  }

  .festival__ticket-link {
    position: relative;
    left: auto;
    top: auto;
    right: auto;
    bottom: auto;
    width: auto;
    height: auto;
    font-size: clamp(20px, 5vw, 26px);
    text-align: center;
    transform: none;
    margin-top: 4px;
  }

  .festival__ticket-link--buy,
  .festival__ticket-link--merch {
    left: auto;
    top: auto;
    bottom: auto;
    right: auto;
    width: auto;
    height: auto;
    transform: none;
    text-align: center;
  }

  .festival__countdown {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    height: auto;
    font-size: clamp(20px, 5vw, 26px);
    line-height: 1.1;
    white-space: normal;
    text-align: center;
    transform: none;
  }

  .festival__shop {
    min-height: 460px;
    padding: 14px 14px 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .festival__shop-image,
  .festival__shop-strip {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    height: auto;
  }

  .festival__shop-image {
    height: clamp(100px, 28vw, 130px);
  }

  .festival__shop-image--1 { grid-column: 1; grid-row: 1; }
  .festival__shop-image--2 { grid-column: 2; grid-row: 1; }
  .festival__shop-image--3 { grid-column: 3; grid-row: 1; }
  .festival__shop-image--4 { grid-column: 1; grid-row: 2; }
  .festival__shop-image--5 { grid-column: 2; grid-row: 2; }
  .festival__shop-image--6 { grid-column: 3; grid-row: 2; }

  .festival__shop-strip {
    display: none;
  }

  .festival__shop-title {
    position: absolute;
    left: 50%;
    top: 50%;
    width: clamp(120px, 28vw, 160px);
    height: auto;
    transform: translate(-50%, -50%);
    grid-column: 1 / -1;
    grid-row: 1 / -1;
    z-index: 2;
    pointer-events: none;
  }

  .festival__products {
    min-height: 400px;
    padding: 24px 0 30px;
  }

  .festival__products-kicker {
    position: relative;
    left: auto;
    top: auto;
    width: max-content;
    height: auto;
    margin: 0 auto 16px;
    font-size: 8px;
  }

  .festival__marquee-row {
    position: relative;
    top: auto !important;
    height: clamp(36px, 10vw, 50px);
    margin-top: 6px;
  }

  .festival__marquee-track {
    animation-duration: 14s;
  }

  .festival__marquee-item {
    font-size: clamp(22px, 6vw, 32px);
    padding-right: 20px;
  }

  .festival__footer {
    min-height: 180px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 40px 14px;
    flex-wrap: wrap;
  }

  .festival__social {
    position: relative;
    left: auto;
    top: auto;
    width: 36px;
    height: 36px;
  }

  .festival__follow {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: auto;
    font-size: clamp(28px, 7vw, 36px);
    text-align: center;
    transform: none;
    margin-top: 16px;
  }

  .festival__countdown {
    color: var(--color-white);
  }
}
