:root {
  color-scheme: light;
  --ice-050: #f5fafc;
  --ice-100: #eaf4f8;
  --ice-200: #d5e9f3;
  --ice-400: #98bcd0;
  --steel: #5e8198;
  --ink: #07111d;
  --navy: #081725;
  --navy-raised: #0d2234;
  --red: #b52339;
  --white: #f8fbfc;
  --line-light: rgba(7, 17, 29, 0.2);
  --line-dark: rgba(234, 244, 248, 0.22);
  --edge: clamp(18px, 4vw, 64px);
  --mono: ui-monospace, "SFMono-Regular", "SF Mono", Menlo, Consolas, monospace;
  --display: "Arial Narrow", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --display-heavy: "Arial Black", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
}

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

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

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

body.is-intro-playing {
  overflow: hidden;
}

body::before {
  position: fixed;
  z-index: 100;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 5px;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  display: flex;
  min-height: 44px;
  align-items: center;
  padding: 12px 16px;
  translate: 0 -180%;
  background: var(--white);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  transition: translate 180ms ease;
}

.skip-link:focus {
  translate: 0 0;
}

.site-intro {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  min-height: 100dvh;
  padding: var(--edge);
  place-items: center;
  overflow: hidden;
  background: var(--navy);
  color: var(--ice-100);
  pointer-events: auto;
  will-change: opacity, transform;
  animation: site-intro-exit 520ms var(--ease-in-out) 1040ms forwards;
}

.site-intro-title {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  color: inherit;
  font-family: var(--display-heavy);
  font-size: clamp(66px, min(23vw, 30svh), 330px);
  font-weight: 900;
  letter-spacing: -0.095em;
  /* Keep each cap-height inside its reveal mask; .68 clips the final FEST baseline. */
  line-height: 0.83;
  text-align: center;
  text-transform: uppercase;
}

.site-intro-line {
  display: block;
  overflow: hidden;
}

.site-intro-word {
  display: block;
  opacity: 0;
  transform: translateY(110%);
  will-change: opacity, transform;
  animation: site-intro-word-enter 480ms var(--ease-out) forwards;
}

.site-intro-line:nth-child(2) .site-intro-word {
  animation-delay: 70ms;
}

.site-intro-line:nth-child(3) .site-intro-word {
  animation-delay: 140ms;
}

@keyframes site-intro-word-enter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes site-intro-exit {
  to {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-100%);
  }
}

@keyframes site-intro-fade-out {
  to {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
  }
}

.site-header {
  position: absolute;
  z-index: 50;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  padding: 12px var(--edge);
  border-bottom: 1px solid var(--line-light);
  background: var(--ice-100);
}

.brand {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand-domain,
.site-nav {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.site-nav a {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding-inline: 3px;
  text-decoration: none;
}

.site-nav a::after {
  width: 0;
  height: 1px;
  margin-left: 8px;
  background: currentColor;
  content: "";
  transition: width 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  width: 18px;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  padding: clamp(108px, 12vh, 150px) var(--edge) clamp(72px, 9vh, 112px);
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 24%, rgba(255, 255, 255, 0.92), transparent 27%),
    linear-gradient(145deg, var(--ice-050) 0%, var(--ice-100) 42%, var(--ice-200) 100%);
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: 16%;
  left: -5vw;
  width: 38vw;
  height: 38vw;
  border: 1px solid rgba(7, 17, 29, 0.12);
  border-radius: 50%;
  content: "";
  box-shadow: inset 0 0 0 5vw rgba(255, 255, 255, 0.15);
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: -6vw;
  bottom: 8%;
  width: min(38vw, 560px);
  height: 13px;
  background: var(--red);
  content: "";
  transform: rotate(-4deg);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(100%, 1180px);
  align-self: center;
  min-width: 0;
}

.eyebrow,
.hero-lineup,
.section-index,
.fact-label,
.artist-number,
.site-footer,
.endcap-copy > p {
  font-family: var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  margin: 0 0 clamp(26px, 4vh, 50px);
  align-items: center;
  gap: 14px;
  font-size: clamp(10px, 0.8vw, 12px);
}

.eyebrow span:first-child {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 4px 9px;
  border: 1px solid currentColor;
  background: rgba(255, 255, 255, 0.36);
  font-weight: 800;
}

.hero-title {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: min(66svh, 690px);
  margin: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-family: var(--display-heavy);
  font-size: clamp(102px, min(24vw, 32svh), 330px);
  font-weight: 900;
  letter-spacing: -0.095em;
  line-height: 0.68;
  text-align: center;
  text-transform: uppercase;
}

.festival-word {
  display: block;
  width: fit-content;
  max-width: 100%;
  color: var(--ink);
}

.hero-meta {
  display: flex;
  margin: clamp(34px, 5vh, 60px) 0 0;
  align-items: center;
  gap: clamp(12px, 1.5vw, 24px);
  font-size: clamp(20px, 2vw, 36px);
  font-weight: 850;
  letter-spacing: -0.035em;
  line-height: 1;
  text-transform: uppercase;
}

.hero-meta .slash {
  color: var(--red);
}

.hero-lineup {
  display: flex;
  max-width: 860px;
  margin: 24px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--line-light);
  flex-wrap: wrap;
  gap: 8px 20px;
  list-style: none;
  font-size: clamp(9px, 0.72vw, 11px);
  line-height: 1.4;
}

.hero-lineup li::before {
  color: var(--red);
  content: "× ";
}

.event-info {
  position: relative;
  padding: clamp(90px, 12vw, 180px) var(--edge);
  background: var(--navy);
  color: var(--ice-100);
}

.section-index {
  display: flex;
  align-items: baseline;
  gap: 18px;
  font-size: 10px;
}

.section-index > span {
  color: var(--red);
}

.section-index h2,
.section-index p {
  margin: 0;
  font: inherit;
}

.facts {
  display: grid;
  margin-top: clamp(46px, 7vw, 96px);
  border-top: 1px solid var(--line-dark);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fact {
  min-width: 0;
  min-height: clamp(220px, 28vw, 400px);
  padding: clamp(22px, 3vw, 44px) clamp(12px, 2.4vw, 36px);
  border-right: 1px solid var(--line-dark);
}

.fact:first-child {
  padding-left: 0;
}

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

.fact-label {
  margin: 0 0 auto;
  color: var(--ice-400);
  font-size: 10px;
}

.fact-value {
  max-width: 12ch;
  margin: clamp(64px, 9vw, 132px) 0 0;
  overflow-wrap: anywhere;
  font-size: clamp(38px, 5.7vw, 92px);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.86;
  text-transform: uppercase;
}

.buy-button {
  display: flex;
  min-height: clamp(96px, 13vw, 180px);
  margin-top: clamp(40px, 6vw, 76px);
  align-items: center;
  justify-content: space-between;
  padding: 20px clamp(22px, 4vw, 56px);
  background: var(--ice-100);
  color: var(--ink);
  font-size: clamp(44px, 9vw, 138px);
  font-weight: 900;
  letter-spacing: -0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.buy-button:hover,
.buy-button:focus-visible {
  background: var(--red);
  color: var(--white);
}

.buy-button:active {
  transform: translateY(2px);
}

.buy-button-arrow {
  display: inline-flex;
  width: 0.62em;
  height: 0.62em;
  flex: 0 0 auto;
}

.buy-button-arrow svg,
.artist-arrow svg,
.footer-top-arrow {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.8;
}

.lineup {
  position: relative;
  isolation: isolate;
  padding: clamp(90px, 12vw, 180px) var(--edge) clamp(110px, 14vw, 210px);
  overflow: hidden;
  background: #050d16;
  color: var(--ice-100);
}

.lineup-monogram {
  position: absolute;
  z-index: -1;
  top: 12%;
  right: -0.06em;
  color: rgba(152, 188, 208, 0.055);
  font-size: 46vw;
  font-weight: 950;
  letter-spacing: -0.12em;
  line-height: 0.65;
  transform: rotate(90deg) translateX(56%);
  transform-origin: right top;
}

.lineup-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.lineup-heading h2 {
  margin: 0;
  font-size: clamp(72px, 14vw, 220px);
  font-weight: 950;
  letter-spacing: -0.09em;
  line-height: 0.68;
}

.artist-list {
  margin: clamp(72px, 9vw, 132px) 0 0;
  padding: 0;
  border-bottom: 1px solid var(--line-dark);
  list-style: none;
}

.artist-row {
  position: relative;
  border-top: 1px solid var(--line-dark);
}

.artist-row a {
  display: grid;
  min-height: clamp(130px, 17vw, 250px);
  grid-template-columns: clamp(32px, 4vw, 64px) minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(12px, 2.5vw, 38px);
  padding: 20px clamp(10px, 1.6vw, 26px);
  text-decoration: none;
  transition:
    background-color 220ms ease,
    color 220ms ease;
}

.artist-row a:hover,
.artist-row a:focus-visible {
  background: var(--ice-100);
  color: var(--ink);
}

.artist-number {
  font-size: clamp(9px, 0.8vw, 12px);
}

.artist-number {
  color: var(--ice-400);
}

.artist-name {
  min-width: 0;
  font-size: clamp(42px, 8vw, 132px);
  font-weight: 950;
  letter-spacing: -0.075em;
  line-height: 0.78;
  text-transform: uppercase;
  transition: transform 240ms ease;
}

.artist-row a:hover .artist-name,
.artist-row a:focus-visible .artist-name {
  transform: translateX(0.06em);
}

.artist-arrow {
  display: inline-flex;
  width: clamp(22px, 3vw, 46px);
  height: clamp(22px, 3vw, 46px);
  flex: 0 0 auto;
}

.endcap {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
  background: var(--ice-100);
  color: var(--ink);
}

.endcap-copy {
  position: relative;
  z-index: 2;
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(100%, 1500px);
  margin-inline: auto;
  padding: clamp(90px, 11vw, 170px) var(--edge);
  text-align: center;
}

.endcap-copy > p {
  margin: 0;
  font-size: clamp(9px, 0.8vw, 12px);
}

.endcap-title {
  display: flex;
  margin: clamp(34px, 5vw, 70px) 0;
  flex-direction: column;
  align-items: center;
  color: var(--ink);
  font-family: var(--display-heavy);
  font-size: clamp(102px, min(24vw, 32svh), 330px);
  font-weight: 900;
  letter-spacing: -0.095em;
  line-height: 0.68;
  text-transform: uppercase;
}

.endcap-copy .endcap-venue {
  font-size: clamp(18px, 2vw, 32px);
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.03em;
}

.site-footer {
  display: grid;
  min-height: 116px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 12px var(--edge);
  border-top: 1px solid var(--line-light);
  background: var(--ice-100);
  font-size: 9px;
}

.site-footer p {
  margin: 0;
  justify-self: start;
}

.footer-mark {
  display: grid;
  width: 88px;
  height: 90px;
  place-items: center;
  justify-self: center;
  text-decoration: none;
}

.footer-mark img {
  display: block;
  width: 88px;
  height: 88px;
  object-fit: contain;
  transition: opacity 140ms ease;
}

.footer-mark:hover img,
.footer-mark:focus-visible img {
  opacity: 0.72;
}

.footer-top {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-self: end;
  gap: 0.55em;
  text-decoration: none;
}

.footer-top-arrow {
  width: 1.2em;
  height: 1.2em;
  flex: 0 0 auto;
}

.reveal {
  opacity: 1;
  transform: none;
}

.is-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 620ms cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 620ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

.is-ready .festival-word:nth-child(2) {
  transition-delay: 80ms;
}

.is-ready .festival-word:nth-child(3) {
  transition-delay: 160ms;
}

.is-ready .hero-title .festival-word {
  opacity: 0;
  transform: translateY(0.18em);
  transition:
    opacity 520ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.is-ready .hero-title .festival-word.is-visible {
  opacity: 1;
  transform: none;
}

.is-ready .hero-title .festival-word:nth-child(2) {
  transition-delay: 70ms;
}

.is-ready .hero-title .festival-word:nth-child(3) {
  transition-delay: 140ms;
}

@media (max-width: 1100px) {
  .hero-title {
    min-height: min(61svh, 590px);
    font-size: clamp(98px, min(26vw, 33svh), 292px);
  }
}

@media (max-width: 900px) {
  .site-header {
    min-height: 64px;
  }

  .brand-domain {
    display: none;
  }

  .hero {
    min-height: 100dvh;
    grid-template-columns: 1fr;
    padding-top: 82px;
    padding-bottom: 28px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-title {
    min-height: 0;
    font-size: clamp(86px, min(25vw, 30svh), 220px);
  }

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

  .fact {
    min-height: auto;
    padding: 28px 0 clamp(58px, 10vw, 90px);
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .fact-value {
    margin-top: 52px;
    font-size: clamp(54px, 12vw, 94px);
  }

  .lineup-heading {
    display: block;
  }

  .lineup-heading h2 {
    margin-top: 58px;
  }

  .artist-row a {
    min-height: clamp(128px, 24vw, 190px);
    grid-template-columns: 34px minmax(0, 1fr) auto;
  }

  .artist-name {
    font-size: clamp(44px, 10vw, 88px);
  }

  .endcap {
    min-height: auto;
  }

  .endcap-copy {
    padding-top: clamp(72px, 12vw, 120px);
  }

  .endcap-title {
    font-size: clamp(90px, min(24vw, 29svh), 238px);
  }
}

@media (max-width: 600px) {
  :root {
    --edge: 18px;
  }

  .site-nav {
    gap: 14px;
    font-size: 9px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .site-intro-title {
    font-size: clamp(66px, min(20.5vw, 18svh), 102px);
  }

  .hero {
    min-height: 100dvh;
    padding-top: 92px;
    padding-bottom: 24px;
    background:
      radial-gradient(circle at 76% 23%, rgba(255, 255, 255, 0.9), transparent 30%),
      var(--ice-100);
  }

  .hero::before {
    top: 12%;
    left: -24vw;
    width: 90vw;
    height: 90vw;
  }

  .hero::after {
    right: -9vw;
    bottom: 1.5%;
    width: 35vw;
  }

  .eyebrow {
    position: relative;
    z-index: 2;
    margin: 0;
    align-self: start;
  }

  .hero-copy {
    display: grid;
    min-height: calc(100dvh - 116px);
    grid-template-rows: auto minmax(0, 1fr) auto auto;
    align-self: stretch;
  }

  .hero-title {
    min-height: 0;
    align-self: stretch;
    justify-content: center;
    font-size: clamp(76px, min(23.8vw, 17svh), 112px);
  }

  .hero-meta {
    margin-top: 0;
    padding-top: clamp(12px, 2vh, 20px);
    font-size: clamp(20px, 6.2vw, 30px);
  }

  .hero-lineup {
    margin-top: clamp(12px, 2.5vh, 18px);
    min-height: 78px;
    padding-top: clamp(12px, 2.5vh, 16px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-content: start;
    gap: 7px 12px;
  }

  .event-info,
  .lineup {
    padding-top: 86px;
    padding-bottom: 106px;
  }

  .lineup-heading h2 {
    font-size: 22vw;
  }

  .artist-list {
    margin-top: 72px;
  }

  .artist-row a {
    min-height: 118px;
    grid-template-columns: 26px minmax(0, 1fr) 28px;
    gap: 9px;
    padding-right: 6px;
    padding-left: 2px;
  }

  .artist-name {
    font-size: clamp(29px, 9vw, 54px);
    letter-spacing: -0.08em;
    white-space: nowrap;
  }

  .buy-button {
    min-height: 86px;
    margin-top: 32px;
    padding-inline: 18px;
    font-size: clamp(40px, 13vw, 60px);
  }

  .endcap-title {
    font-size: clamp(86px, min(23vw, 22svh), 130px);
  }

  .site-footer {
    min-height: 112px;
    grid-template-columns: minmax(0, 1fr) 72px minmax(0, 1fr);
    gap: 8px;
    padding: 10px var(--edge);
    font-size: 8px;
    letter-spacing: 0.1em;
  }

  .site-footer p,
  .footer-top {
    white-space: nowrap;
  }

  .footer-mark {
    width: 72px;
    height: 82px;
  }

  .footer-mark img {
    width: 72px;
    height: 72px;
  }
}

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

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

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

  .site-intro {
    animation-name: site-intro-fade-out !important;
    animation-duration: 180ms !important;
    animation-delay: 120ms !important;
    animation-timing-function: var(--ease-out) !important;
  }

  .site-intro-word {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
}

@media (forced-colors: active) {
  .festival-word {
    color: CanvasText;
    background: none;
    -webkit-text-stroke: 0;
    filter: none;
  }

  body::before {
    display: none;
  }
}
