@font-face {
  font-family: "Helvetica Now";
  src: url("assets/fonts/HelveticaNowDisplay-Medium.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Futura";
  src: url("assets/fonts/Futura-Medium.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Now Display ExtraBold";
  src: url("assets/fonts/HelveticaNowDisplay-ExtraBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 800;
  font-display: block;
}

:root {
  --font-ui: "Helvetica Now", "Helvetica Neue", Arial, sans-serif;
  --font-content: "Futura", "Avenir Next", Arial, sans-serif;
  --black: #070707;
  --black-soft: #0d0d0d;
  --white: #f3f0eb;
  --white-muted: rgba(243, 240, 235, 0.62);
  --line: rgba(243, 240, 235, 0.18);
  --red: #840d19;
  --red-bright: #c2172a;
  --page-gutter: clamp(1.25rem, 4vw, 4.5rem);
  --header-height: 5.5rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-content);
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

::selection {
  background: var(--red-bright);
  color: var(--white);
}

.ui-label,
.site-header,
.primary-cta,
.ticket-button,
.text-link {
  font-family: var(--font-ui);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background: #050505;
  transition: opacity 0.8s var(--ease), visibility 0.8s;
}

.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.site-loader__word {
  font-family: var(--font-ui);
  font-size: clamp(0.75rem, 1vw, 0.9rem);
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.site-loader__line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  transform-origin: left;
  background: var(--red-bright);
  animation: loaderLine 1.25s var(--ease) forwards;
}

@keyframes loaderLine {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  height: var(--header-height);
  padding: 0 var(--page-gutter);
  border-bottom: 1px solid transparent;
  font-size: 0.68rem;
  transition: height 0.45s var(--ease), background 0.45s, border-color 0.45s;
}

.site-header.is-scrolled {
  height: 4.5rem;
  border-color: var(--line);
  background: rgba(7, 7, 7, 0.86);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand {
  justify-self: start;
  position: relative;
  z-index: 2;
  font-family: var(--font-ui);
}

.brand__wordmark {
  display: inline-block;
  font-size: clamp(0.9rem, 1.25vw, 1.1rem);
  letter-spacing: -0.045em;
  line-height: 1;
}

.brand__wordmark span {
  color: var(--red-bright);
}

.brand__logo {
  display: inline-block;
  font-family: "Helvetica Now Display ExtraBold";
  font-size: clamp(0.9rem, 1.25vw, 1.1rem);
  font-style: normal;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.1em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3.5rem);
}

.desktop-acts {
  position: relative;
}

.desktop-acts__menu {
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  display: grid;
  width: 13.5rem;
  padding: 1.5rem 1.6rem;
  transform: translate(-50%, -0.4rem);
  border-top: 1px solid rgba(243, 240, 235, 0.12);
  background: rgba(7, 7, 7, 0.98);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 180ms var(--ease),
    visibility 180ms;
}

.desktop-acts__menu::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 1rem;
}

.desktop-acts:hover .desktop-acts__menu,
.desktop-acts:focus-within .desktop-acts__menu {
  transform: translate(-50%, 0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.desktop-nav .desktop-acts__item {
  display: grid;
  gap: 0.35rem;
  padding: 0.8rem 0;
  color: inherit;
  font-family: var(--font-ui);
  font-size: 0.58rem;
  line-height: 1.35;
  letter-spacing: 0.12em;
  text-decoration: none;
}

.desktop-nav .desktop-acts__item::after {
  display: none;
}

.desktop-acts__item--unavailable {
  cursor: default;
  opacity: 0.42;
}

.desktop-acts__item small {
  font: inherit;
  font-size: 0.48rem;
  letter-spacing: 0.1em;
  opacity: 0.65;
}

.desktop-nav a,
.ticket-link,
.site-footer a {
  position: relative;
  opacity: 0.82;
  transition: opacity 0.25s;
}

.desktop-nav a::after,
.site-footer__links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.5rem;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  transition: transform 0.35s var(--ease);
}

.desktop-nav a:hover,
.ticket-link:hover,
.site-footer a:hover {
  opacity: 1;
}

.desktop-nav a:hover::after,
.site-footer__links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 1.5rem;
}

.ticket-link {
  padding: 0.7rem 0;
}

.ticket-link::before {
  content: "";
  display: inline-block;
  width: 0.38rem;
  height: 0.38rem;
  margin-right: 0.65rem;
  border-radius: 50%;
  background: var(--red-bright);
  box-shadow: 0 0 1rem rgba(194, 23, 42, 0.7);
}

.menu-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.7rem 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 0.35rem 0;
  background: currentColor;
  transition: transform 0.35s var(--ease);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(0.35rem) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-0.35rem) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  visibility: hidden;
  opacity: 0;
  background: var(--black);
  transition: opacity 0.45s var(--ease), visibility 0.45s;
}

.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
}

.mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(132, 13, 25, 0.3), transparent 34%),
    linear-gradient(150deg, transparent 0 65%, rgba(132, 13, 25, 0.12));
}

.mobile-menu__nav {
  position: absolute;
  top: 50%;
  left: var(--page-gutter);
  display: grid;
  width: calc(100% - (2 * var(--page-gutter)));
  transform: translateY(-50%);
}

.mobile-menu__nav > a,
.mobile-acts__toggle {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  width: 100%;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
  border-top: 0;
  border-right: 0;
  border-left: 0;
  background: transparent;
  color: inherit;
  font-family: var(--font-content);
  font-size: clamp(2.3rem, 10vw, 5rem);
  text-align: left;
  letter-spacing: -0.05em;
  cursor: pointer;
}

.mobile-menu__nav > a > span:first-child,
.mobile-acts__toggle > span:first-child {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  opacity: 0.5;
}

.mobile-acts__toggle:focus-visible,
.mobile-acts__item:focus-visible {
  outline: 1px solid var(--red-bright);
  outline-offset: 0.3rem;
}

.mobile-acts__menu {
  display: grid;
  max-height: 0;
  padding-left: clamp(2rem, 8vw, 5rem);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition:
    max-height 200ms var(--ease),
    opacity 180ms ease,
    visibility 200ms;
}

.mobile-acts__menu.is-open {
  max-height: 15rem;
  opacity: 1;
  visibility: visible;
}

.mobile-menu__nav .mobile-acts__item {
  display: grid;
  gap: 0.25rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(243, 240, 235, 0.1);
  color: inherit;
  font-family: var(--font-ui);
  font-size: clamp(0.72rem, 3vw, 0.9rem);
  line-height: 1.35;
  letter-spacing: 0.12em;
  text-decoration: none;
}

.mobile-acts__item--unavailable {
  cursor: default;
  opacity: 0.4;
}

.mobile-acts__item small {
  font: inherit;
  font-size: 0.52rem;
  opacity: 0.7;
}

.mobile-menu__footer {
  position: absolute;
  bottom: 2rem;
  left: var(--page-gutter);
  margin: 0;
  font-family: var(--font-ui);
  font-size: 0.62rem;
  line-height: 1.7;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.55;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: var(--black);
}

.hero__entry {
  position: relative;
  display: flex;
  min-height: 100svh;
  overflow: hidden;
  align-items: center;
  width: 100%;
  padding: calc(var(--header-height) + 1rem) var(--page-gutter) 2.25rem;
  outline: 1px solid transparent;
  outline-offset: -0.75rem;
  background: var(--black);
}

.hero__entry:focus-visible {
  outline-color: var(--white);
}

.hero__video,
.hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__video {
  z-index: 0;
  display: block;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.001);
  transition: transform 1.2s var(--ease);
}

.hero__overlay {
  z-index: 1;
  background: rgba(0, 0, 0, 0.35);
}

.hero__entry:hover .hero__video,
.hero__entry:focus-visible .hero__video {
  transform: scale(1.015);
}

.hero__entry:hover .hero__enter,
.hero__entry:focus-visible .hero__enter {
  opacity: 0.9;
}

.hero__visual,
.hero__veil,
.hero__grain {
  position: absolute;
  inset: 0;
}

.hero__visual {
  z-index: -2;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0,0,0,.74), transparent 42%, rgba(0,0,0,.42)),
    radial-gradient(circle at 53% 54%, rgba(121, 11, 24, .30), transparent 20%),
    linear-gradient(135deg, #050505 12%, #170408 50%, #030303 88%);
}

.hero__visual::before {
  content: "";
  position: absolute;
  top: -15%;
  left: 51%;
  width: clamp(14rem, 30vw, 34rem);
  height: 130%;
  transform: translateX(-50%) rotate(8deg);
  filter: blur(8px);
  background: linear-gradient(90deg, transparent, rgba(206, 25, 49, 0.13), rgba(255,255,255,.06), transparent);
  clip-path: polygon(44% 0, 75% 0, 52% 100%, 20% 100%);
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.25;
}

.hero__glow--one {
  top: 10%;
  right: 4%;
  width: 22rem;
  height: 22rem;
  background: #8f0b1c;
}

.hero__glow--two {
  bottom: -10%;
  left: 28%;
  width: 30rem;
  height: 15rem;
  background: #4f040c;
}

.hero__veil {
  background: linear-gradient(180deg, rgba(7,7,7,.1), transparent 52%, rgba(7,7,7,.78));
}

.hero__grain {
  opacity: 0.08;
  pointer-events: none;
  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='.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
}

.hero__topline {
  position: absolute;
  top: calc(var(--header-height) + 1.25rem);
  right: var(--page-gutter);
  left: var(--page-gutter);
  display: flex;
  justify-content: space-between;
  font-size: 0.58rem;
  opacity: 0.68;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: block;
  width: min(77rem, 100%);
  margin-top: 2rem;
}

.hero__eyebrow {
  margin: 0 0 clamp(1.3rem, 2.5vw, 2.2rem);
  font-size: 0.62rem;
  opacity: 0.62;
}

.hero__title {
  margin: 0;
  font-size: clamp(3.7rem, 10.6vw, 10.7rem);
  font-weight: 500;
  line-height: 0.79;
  letter-spacing: -0.065em;
  text-transform: uppercase;
}

.hero__title span {
  display: block;
}

.hero__title span:last-child {
  margin-left: clamp(0rem, 7vw, 8rem);
  color: transparent;
  -webkit-text-stroke: 1px rgba(243, 240, 235, 0.8);
}

.hero__enter {
  display: inline-block;
  margin: clamp(2.5rem, 5vw, 4.5rem) 0 0 clamp(0rem, 7vw, 8rem);
  font-size: 0.58rem;
  opacity: 0.58;
  transition: opacity 0.8s var(--ease);
}

.hero__intro {
  width: min(30rem, 80%);
  margin: clamp(2rem, 5vw, 4.5rem) 0 0 clamp(0rem, 7vw, 8rem);
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  line-height: 1.45;
  letter-spacing: -0.015em;
  color: var(--white-muted);
}

.hero__bottom {
  position: absolute;
  right: var(--page-gutter);
  bottom: 2.25rem;
  left: var(--page-gutter);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.primary-cta,
.ticket-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  min-width: 13rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(243, 240, 235, 0.58);
  font-size: 0.62rem;
  transition: color 0.35s, background 0.35s, border-color 0.35s;
}

.primary-cta svg,
.ticket-button svg {
  width: 1.05rem;
  transition: transform 0.35s var(--ease);
}

.primary-cta:hover,
.ticket-button:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--black);
}

.primary-cta:hover svg,
.ticket-button:hover svg {
  transform: translateX(0.25rem);
}

.hero__location {
  display: grid;
  gap: 0.45rem;
  text-align: right;
  font-size: 0.58rem;
}

.hero__location span:last-child {
  opacity: 0.55;
}

.scroll-cue {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  display: grid;
  place-items: center;
  gap: 0.6rem;
  transform: translateX(-50%);
  font-family: var(--font-ui);
  font-size: 0.48rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.65;
}

.scroll-cue i {
  display: block;
  width: 1px;
  height: 2rem;
  overflow: hidden;
  background: rgba(243,240,235,.25);
}

.scroll-cue i::after {
  content: "";
  display: block;
  width: 100%;
  height: 55%;
  background: var(--white);
  animation: scrollCue 1.8s ease-in-out infinite;
}

@keyframes scrollCue {
  0% { transform: translateY(-120%); }
  100% { transform: translateY(220%); }
}

.section {
  padding: clamp(6rem, 12vw, 11rem) var(--page-gutter);
}

.section-index {
  margin-bottom: clamp(3.5rem, 8vw, 7rem);
  font-size: 0.58rem;
  opacity: 0.58;
}

.manifesto {
  background: var(--white);
  color: var(--black);
}

.manifesto__grid {
  display: grid;
  grid-template-columns: minmax(9rem, 0.55fr) 2.45fr;
  gap: clamp(2rem, 6vw, 7rem);
}

.manifesto__aside {
  margin: 0;
  font-size: 0.56rem;
  line-height: 1.8;
  opacity: 0.58;
}

.manifesto__title {
  max-width: 66rem;
  margin: 0;
  font-size: clamp(2.8rem, 6.7vw, 7.4rem);
  font-weight: 500;
  line-height: 0.97;
  letter-spacing: -0.055em;
}

.manifesto__meta {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr 1fr;
  gap: clamp(2rem, 6vw, 7rem);
  align-items: end;
  margin-top: clamp(4rem, 9vw, 9rem);
}

.manifesto__meta > p {
  grid-column: 2;
  max-width: 34rem;
  margin: 0;
  font-size: clamp(1rem, 1.45vw, 1.25rem);
  line-height: 1.55;
  opacity: 0.7;
}

.text-link {
  justify-self: end;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(7, 7, 7, 0.36);
  font-size: 0.58rem;
}

.text-link span {
  margin-left: 1rem;
}

.feature-panel {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 100svh;
  background: #0a0a0a;
}

.feature-panel__visual {
  position: relative;
  display: grid;
  min-height: 48rem;
  overflow: hidden;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(143, 11, 28, 0.3), transparent 20%),
    linear-gradient(145deg, #130307, #070707 60%);
}

.feature-panel__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 70%, #0a0a0a), linear-gradient(0deg, rgba(0,0,0,.4), transparent 45%);
}

.mask-orbit {
  position: absolute;
  border: 1px solid rgba(243, 240, 235, 0.13);
  border-radius: 50%;
}

.mask-orbit--outer {
  width: min(65vw, 46rem);
  aspect-ratio: 1;
  animation: orbit 28s linear infinite;
}

.mask-orbit--inner {
  width: min(47vw, 32rem);
  aspect-ratio: 1;
  border-style: dashed;
  animation: orbit 19s linear reverse infinite;
}

@keyframes orbit { to { transform: rotate(360deg); } }

.mask-symbol {
  position: relative;
  width: min(35vw, 22rem);
  aspect-ratio: 1.65;
  border: 1px solid rgba(243,240,235,.42);
  border-radius: 50% 50% 46% 46% / 70% 70% 35% 35%;
  box-shadow: inset 0 0 5rem rgba(132, 13, 25, 0.18), 0 0 6rem rgba(132, 13, 25, 0.18);
}

.mask-symbol::before {
  content: "";
  position: absolute;
  top: 35%;
  left: 50%;
  width: 6%;
  height: 44%;
  transform: translateX(-50%);
  border-right: 1px solid rgba(243,240,235,.32);
  border-left: 1px solid rgba(243,240,235,.32);
}

.mask-symbol__eye {
  position: absolute;
  top: 35%;
  width: 28%;
  height: 18%;
  border-top: 1px solid rgba(243,240,235,.68);
  border-radius: 50%;
}

.mask-symbol__eye--left { left: 14%; transform: rotate(8deg); }
.mask-symbol__eye--right { right: 14%; transform: rotate(-8deg); }

.feature-panel__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(5rem, 8vw, 9rem) var(--page-gutter);
}

.feature-panel__content .section-index {
  margin-bottom: clamp(3rem, 7vw, 6rem);
}

.feature-panel__content h2 {
  margin: 0 0 2rem;
  font-size: clamp(3rem, 5.5vw, 6.5rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.feature-panel__content > p {
  max-width: 30rem;
  margin: 0;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.6;
  color: var(--white-muted);
}

.feature-list {
  margin-top: clamp(3.5rem, 7vw, 6rem);
  border-top: 1px solid var(--line);
}

.feature-list div {
  display: grid;
  grid-template-columns: 3rem 1fr;
  align-items: center;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
}

.feature-list span {
  font-family: var(--font-ui);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  opacity: 0.45;
}

.feature-list p {
  margin: 0;
  font-size: 1rem;
}

.information {
  background: #0f0f0f;
}

.information__header {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: clamp(5rem, 10vw, 10rem);
}

.information__header h2 {
  margin: 0;
  font-size: clamp(3.4rem, 8vw, 9rem);
  font-weight: 500;
  line-height: 0.84;
  letter-spacing: -0.065em;
}

.information__header p {
  max-width: 18rem;
  margin: 0 0 0.6rem;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--white-muted);
}

.information__list {
  border-top: 1px solid var(--line);
}

.info-row {
  display: grid;
  grid-template-columns: 0.3fr 0.9fr 1.4fr;
  align-items: center;
  min-height: 7.5rem;
  border-bottom: 1px solid var(--line);
  transition: padding 0.35s var(--ease), background 0.35s;
}

.info-row:hover {
  padding-right: 1rem;
  padding-left: 1rem;
  background: rgba(255,255,255,.025);
}

.info-row__number {
  font-size: 0.55rem;
  opacity: 0.42;
}

.info-row h3,
.info-row p {
  margin: 0;
  font-weight: 500;
}

.info-row h3 {
  font-size: clamp(1.6rem, 3vw, 3rem);
  letter-spacing: -0.04em;
}

.info-row p {
  justify-self: end;
  text-align: right;
  font-size: clamp(0.9rem, 1.35vw, 1.15rem);
  color: var(--white-muted);
}

.ticket-section {
  position: relative;
  display: flex;
  min-height: 90svh;
  overflow: hidden;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 7rem var(--page-gutter);
  text-align: center;
  background: #090909;
}

.ticket-section::before,
.ticket-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.ticket-section::before {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(transparent, rgba(243,240,235,.2), transparent);
}

.ticket-section::after {
  width: min(68vw, 55rem);
  aspect-ratio: 1;
  border: 1px solid rgba(243,240,235,.08);
  border-radius: 50%;
}

.ticket-section__glow {
  position: absolute;
  width: 36rem;
  height: 36rem;
  border-radius: 50%;
  filter: blur(100px);
  background: rgba(132, 13, 25, 0.28);
}

.ticket-section > *:not(.ticket-section__glow) {
  position: relative;
  z-index: 1;
}

.ticket-section > p:first-of-type {
  margin: 0 0 2.5rem;
  font-size: 0.58rem;
  opacity: 0.62;
}

.ticket-section h2 {
  margin: 0 0 clamp(3rem, 6vw, 5rem);
  font-size: clamp(4rem, 10vw, 10rem);
  font-weight: 500;
  line-height: 0.78;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}

.ticket-button {
  min-width: min(23rem, 90vw);
  padding: 1.25rem 1.4rem;
}

.ticket-section__note {
  margin: 1.5rem 0 0;
  font-size: 0.5rem;
  opacity: 0.45;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 2rem;
  padding: 3.5rem var(--page-gutter);
  border-top: 1px solid var(--line);
  background: var(--black);
}

.brand--footer .brand__wordmark {
  font-size: 1.25rem;
}

.site-footer__links,
.site-footer__legal {
  display: flex;
  gap: 1.5rem;
  font-size: 0.52rem;
}

.site-footer__legal {
  justify-self: end;
  opacity: 0.55;
}

/* Acts archive */
.acts-page .desktop-nav .is-active,
.acts-page .mobile-menu__nav .is-active {
  opacity: 1;
}

.acts-page .desktop-nav .is-active::after {
  transform: scaleX(1);
}

.acts-intro {
  min-height: 88svh;
  padding: clamp(11rem, 20vh, 15rem) var(--page-gutter) clamp(6rem, 11vw, 10rem);
  background:
    radial-gradient(circle at 76% 32%, rgba(132, 13, 25, 0.12), transparent 25%),
    var(--black);
}

.acts-intro__label {
  margin: 0 0 clamp(3rem, 8vw, 7rem);
  font-size: 0.58rem;
  opacity: 0.58;
}

.acts-intro h1 {
  margin: 0;
  font-size: clamp(5rem, 15vw, 14rem);
  font-weight: 500;
  line-height: 0.76;
  letter-spacing: -0.075em;
}

.acts-intro__text {
  width: min(34rem, 75%);
  margin: clamp(3.5rem, 7vw, 6rem) 0 0 auto;
  font-size: clamp(1.1rem, 1.7vw, 1.5rem);
  line-height: 1.55;
  color: var(--white-muted);
}

.acts-archive {
  padding: 0 var(--page-gutter) clamp(7rem, 14vw, 13rem);
  background: var(--black);
}

.act-entry {
  position: relative;
  min-height: min(56rem, 82svh);
  border-top: 1px solid var(--line);
}

.act-entry:last-child {
  border-bottom: 1px solid var(--line);
}

.act-entry__link,
.act-entry--locked {
  display: grid;
  grid-template-columns: minmax(18rem, 0.92fr) minmax(24rem, 1.08fr);
  gap: clamp(3rem, 7vw, 8rem);
  min-height: inherit;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.act-entry__link {
  outline: 1px solid transparent;
  outline-offset: 0.75rem;
  transition: color 0.8s var(--ease), outline-color 0.35s, transform 0.8s var(--ease);
}

.act-entry__link:focus-visible {
  outline-color: var(--red-bright);
}

.act-entry__link:hover,
.act-entry__link:focus-visible {
  transform: translateY(-4px);
}

.act-entry__visual {
  position: relative;
  min-height: 35rem;
  overflow: hidden;
  background: #0c0c0c;
  isolation: isolate;
  transition: filter 1.1s var(--ease);
}

.act-entry__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.62));
}

.act-entry__visual > span {
  position: absolute;
  transition: transform 1.2s var(--ease), opacity 1.2s var(--ease);
}

.act-entry__visual--one {
  justify-self: start;
  width: 86%;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: #080808;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.14);
}

.act-entry__visual--one::before {
  content: "";
  position: absolute;
  top: 12.5%;
  bottom: 12.5%;
  left: -0.9rem;
  width: 2px;
  z-index: 6;
  background: var(--red);
}

.act-entry__visual--one::after {
  border-radius: 9px;
  background: rgba(7, 7, 7, 0.08);
}

.act-entry__visual--one img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  border-radius: 9px;
  transform: scale(1.001);
  transition: transform 0.8s var(--ease);
}

.act-entry__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 0 0.5rem;
}

.act-entry__topline {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  font-size: 0.58rem;
}

.act-entry__status {
  color: var(--red-bright);
}

.act-entry h2 {
  margin: auto 0;
  max-width: 44rem;
  font-size: clamp(3.4rem, 6.4vw, 7.5rem);
  font-weight: 500;
  line-height: 0.86;
  letter-spacing: -0.06em;
}

.act-entry__details {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  font-size: 0.55rem;
  line-height: 1.5;
  color: var(--white-muted);
}

.act-entry__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(22rem, 100%);
  margin-top: 2.5rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(243, 240, 235, 0.42);
  font-size: 0.58rem;
}

.act-entry__cta svg {
  width: 1.1rem;
  transition: transform 0.8s var(--ease);
}

.act-entry__link:hover .act-entry__visual,
.act-entry__link:focus-visible .act-entry__visual {
  filter: contrast(1.12) brightness(1.08);
}

.act-entry__link:hover .act-entry__visual--one img,
.act-entry__link:focus-visible .act-entry__visual--one img {
  transform: scale(1.03);
}

.act-entry__link:hover .act-entry__cta svg,
.act-entry__link:focus-visible .act-entry__cta svg {
  transform: translateX(0.4rem);
}

.act-entry--locked {
  opacity: 0.48;
}

.act-entry--locked .act-entry__content {
  justify-content: flex-start;
}

.act-entry--locked h2 {
  margin: auto 0;
}

.act-entry__visual--two {
  order: 2;
  background:
    radial-gradient(circle at 50% 50%, rgba(243, 240, 235, 0.05), transparent 28%),
    #0a0a0a;
}

.act-entry__ring {
  top: 50%;
  left: 50%;
  width: 58%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(243, 240, 235, 0.18);
  border-radius: 50%;
}

.act-entry__line {
  top: 12%;
  bottom: 12%;
  left: 50%;
  width: 1px;
  background: linear-gradient(transparent, rgba(194, 23, 42, 0.38), transparent);
}

.act-entry__visual--three {
  background:
    linear-gradient(180deg, transparent, rgba(132, 13, 25, 0.08)),
    #090909;
}

.act-entry__monolith {
  top: 16%;
  bottom: 10%;
  left: 50%;
  width: 22%;
  transform: translateX(-50%) skewY(-4deg);
  border: 1px solid rgba(243, 240, 235, 0.14);
  background: linear-gradient(120deg, rgba(243, 240, 235, 0.045), transparent);
}

.act-entry__horizon {
  top: 62%;
  right: 8%;
  left: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(243, 240, 235, 0.18), transparent);
}

/* Act detail hero */
.act-detail-page {
  background: #050505;
}

.act-detail-page .site-header .brand__logo {
  color: var(--red-bright);
}

.act-lock {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: calc(var(--header-height) + 4rem) var(--page-gutter) 5rem;
  background: radial-gradient(circle at 50% 46%, rgba(132, 13, 25, 0.09), transparent 30%), var(--black);
  text-align: center;
}

.act-lock__content {
  width: min(75rem, 100%);
}

.act-lock__label {
  margin: 0 0 clamp(3rem, 7vw, 6rem);
  font-size: 0.58rem;
  opacity: 0.5;
}

.act-lock h1 {
  margin: 0;
  font-size: clamp(4rem, 9vw, 9rem);
  font-weight: 500;
  line-height: 0.84;
  letter-spacing: -0.065em;
}

.act-lock__text {
  margin: clamp(3rem, 6vw, 5rem) auto 0;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.6;
  color: var(--white-muted);
}

.act-lock__return {
  margin: clamp(3rem, 6vw, 5rem) 0 0;
  font-size: 0.55rem;
  opacity: 0.42;
}

.act-detail-page .desktop-nav .is-active,
.act-detail-page .mobile-menu__nav .is-active {
  opacity: 1;
}

.act-detail-page .desktop-nav .is-active::after {
  transform: scaleX(1);
}

.act-hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  overflow: hidden;
  align-items: center;
  padding: calc(var(--header-height) + 4rem) var(--page-gutter) 7rem;
  isolation: isolate;
}

.act-hero__video,
.act-hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.act-hero__video {
  z-index: -2;
  display: block;
  object-fit: cover;
  object-position: center center;
  background: #050505;
}

.act-hero__overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.08) 65%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), transparent 42%, rgba(0, 0, 0, 0.48));
}

.act-hero__content {
  width: min(78rem, 100%);
}

.act-hero__label {
  margin: 0 0 clamp(2rem, 4vw, 3.5rem);
  font-size: 0.62rem;
  opacity: 0.78;
}

.act-hero h1 {
  margin: 0;
  font-size: clamp(4rem, 9.2vw, 10rem);
  font-weight: 500;
  line-height: 0.82;
  letter-spacing: -0.065em;
}

.act-hero__details {
  display: flex;
  gap: clamp(2rem, 6vw, 6rem);
  margin-top: clamp(3rem, 6vw, 5.5rem);
  font-size: 0.58rem;
  line-height: 1.5;
}

.act-hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  display: grid;
  place-items: center;
  gap: 0.75rem;
  transform: translateX(-50%);
  font-size: 0.5rem;
  white-space: nowrap;
  opacity: 0.72;
}

.act-hero__scroll:focus-visible {
  outline: 1px solid var(--red-bright);
  outline-offset: 0.75rem;
}

.act-hero__scroll i {
  display: block;
  width: 1px;
  height: 2rem;
  overflow: hidden;
  background: rgba(243, 240, 235, 0.26);
}

.act-hero__scroll i::after {
  content: "";
  display: block;
  width: 100%;
  height: 55%;
  background: var(--white);
  animation: scrollCue 1.8s ease-in-out infinite;
}

.act-story {
  position: relative;
  min-height: 150svh;
  padding: clamp(9rem, 18vw, 17rem) var(--page-gutter) clamp(10rem, 20vw, 20rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 62%, rgba(132, 13, 25, 0.08), transparent 24%),
    var(--black);
}

.act-story::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: clamp(8rem, 18vw, 16rem);
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.28), transparent);
}

.act-story__label,
.act-story h2,
.act-story__body {
  position: relative;
}

.act-story__label {
  margin: 0 0 clamp(4rem, 9vw, 8rem);
  font-size: 0.58rem;
  opacity: 0.58;
}

.act-story h2 {
  max-width: 76rem;
  margin: 0;
  font-size: clamp(3.7rem, 8.4vw, 9.5rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.act-story__body {
  width: min(43rem, 58%);
  margin: clamp(8rem, 17vw, 17rem) 5vw 0 auto;
}

.act-story__body p {
  margin: 0;
}

.act-story__lead {
  max-width: 35rem;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.5;
  color: var(--white-muted);
}

.act-story__statement {
  margin-top: clamp(4rem, 8vw, 7rem) !important;
  font-size: clamp(1.6rem, 3vw, 3.2rem);
  line-height: 1.3;
  letter-spacing: -0.035em;
}

.night-schedule {
  padding: clamp(9rem, 17vw, 16rem) var(--page-gutter) clamp(10rem, 19vw, 18rem);
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 18% 48%, rgba(132, 13, 25, 0.065), transparent 22%),
    #080808;
}

.night-schedule__label {
  margin: 0 0 clamp(4rem, 8vw, 7rem);
  font-size: 0.58rem;
  opacity: 0.58;
}

.night-schedule > h2 {
  width: min(76rem, 92%);
  margin: 0;
  font-size: clamp(3.7rem, 7.4vw, 8.3rem);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: -0.06em;
}

.night-schedule__list {
  position: relative;
  width: min(78rem, 92%);
  margin: clamp(8rem, 16vw, 16rem) 0 0 auto;
  padding: 0;
  list-style: none;
}

.night-schedule__list::before {
  content: "";
  position: absolute;
  top: 0.4rem;
  bottom: 0.4rem;
  left: 32%;
  width: 1px;
  background: linear-gradient(180deg, var(--red), var(--line) 14%, var(--line) 86%, var(--red));
}

.night-schedule__list li {
  position: relative;
  display: grid;
  grid-template-columns: 32% 68%;
  min-height: clamp(14rem, 21vw, 20rem);
}

.night-schedule__list li::before {
  content: "";
  position: absolute;
  top: 0.35rem;
  left: 32%;
  width: 0.4rem;
  height: 0.4rem;
  transform: translateX(-50%);
  border: 1px solid rgba(243, 240, 235, 0.5);
  border-radius: 50%;
  background: #080808;
}

.night-schedule__list time {
  padding-right: clamp(2rem, 5vw, 5rem);
  font-size: 0.58rem;
  line-height: 1.5;
  text-align: right;
  color: var(--white-muted);
}

.night-schedule__step {
  padding: 0 0 clamp(4rem, 8vw, 7rem) clamp(2rem, 6vw, 6rem);
}

.night-schedule__step h3 {
  margin: 0;
  font-size: clamp(2.2rem, 4.4vw, 5rem);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.night-schedule__step p {
  max-width: 34rem;
  margin: clamp(1.5rem, 3vw, 2.5rem) 0 0;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.6;
  color: var(--white-muted);
}

.event-information {
  padding: clamp(9rem, 17vw, 16rem) var(--page-gutter) clamp(8rem, 15vw, 14rem);
  border-top: 1px solid var(--line);
  background:
    linear-gradient(155deg, rgba(132, 13, 25, 0.045), transparent 28%),
    #0a0a0a;
}

.event-information__label {
  margin: 0 0 clamp(4rem, 8vw, 7rem);
  font-size: 0.58rem;
  opacity: 0.58;
}

.event-information > h2 {
  width: min(72rem, 88%);
  margin: 0;
  font-size: clamp(3.7rem, 7.5vw, 8.5rem);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: -0.06em;
}

.event-information__details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(7rem, 14vw, 14rem);
  border-top: 1px solid var(--line);
}

.event-detail {
  min-height: clamp(15rem, 24vw, 23rem);
  padding: clamp(2rem, 4vw, 3.5rem) clamp(1rem, 4vw, 4rem) clamp(2rem, 4vw, 3.5rem) 0;
  border-bottom: 1px solid var(--line);
}

.event-detail:nth-child(even) {
  padding-right: 0;
  padding-left: clamp(1rem, 4vw, 4rem);
  border-left: 1px solid var(--line);
}

.event-detail h3 {
  margin: 0 0 clamp(3rem, 7vw, 6rem);
  font-size: 0.55rem;
  opacity: 0.5;
}

.event-detail > p:not(.event-detail__note) {
  margin: 0;
  font-family: var(--font-ui);
  font-size: clamp(1.25rem, 2.2vw, 2.25rem);
  line-height: 1.3;
  letter-spacing: 0.02em;
}

.event-detail > p span {
  display: inline-block;
  margin-top: 0.55rem;
  font-size: 0.64em;
  color: var(--white-muted);
}

.event-detail__note {
  max-width: 29rem;
  margin: clamp(2rem, 4vw, 3.5rem) 0 0;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  line-height: 1.7;
  color: var(--white-muted);
}

.lighting-warning {
  display: grid;
  grid-template-columns: minmax(10rem, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(2rem, 7vw, 8rem);
  margin-top: clamp(6rem, 12vw, 11rem);
  padding: clamp(2.25rem, 4vw, 3.75rem) 0 clamp(2.25rem, 4vw, 3.75rem) clamp(1.5rem, 3vw, 3rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 2px solid var(--red);
}

.lighting-warning h3 {
  margin: 0;
  font-size: 0.55rem;
}

.lighting-warning div {
  max-width: 47rem;
}

.lighting-warning p {
  margin: 0;
  font-size: clamp(1rem, 1.45vw, 1.25rem);
  line-height: 1.6;
  color: var(--white-muted);
}

.lighting-warning p + p {
  margin-top: 1.25rem;
}

.lighting-warning p:last-child {
  color: var(--white);
}

.event-tickets {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.75fr);
  gap: clamp(3rem, 9vw, 10rem);
  align-items: end;
  margin-top: clamp(9rem, 18vw, 18rem);
}

.event-tickets__copy h3 {
  max-width: 55rem;
  margin: 0;
  font-family: var(--font-content);
  font-size: clamp(3rem, 6vw, 7rem);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: -0.055em;
}

.event-tickets__copy p {
  margin: clamp(2rem, 4vw, 3.5rem) 0 0;
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  color: var(--white-muted);
}

.event-tickets__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.4rem 1.5rem;
  border: 1px solid rgba(243, 240, 235, 0.48);
  background: transparent;
  color: var(--white);
  font-size: 0.62rem;
  cursor: not-allowed;
  opacity: 0.62;
  transition: border-color 0.35s, opacity 0.35s;
}

.event-tickets__button svg {
  width: 1.1rem;
}

.event-tickets__button:focus-visible {
  outline: 1px solid var(--red-bright);
  outline-offset: 0.4rem;
  border-color: var(--white);
  opacity: 1;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(2.2rem);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  :root { --header-height: 4.75rem; }

  html,
  body {
    max-width: 100%;
    overflow-x: clip;
  }

  main,
  section {
    min-width: 0;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .ticket-link {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero__title {
    font-size: clamp(3.4rem, 13vw, 7rem);
    line-height: 0.82;
  }

  .hero__title span:last-child {
    margin-left: 0;
  }

  .hero__enter {
    margin-left: 0;
  }

  .hero__intro {
    margin-left: 0;
  }

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

  .manifesto__aside {
    display: none;
  }

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

  .manifesto__meta > p {
    grid-column: 1;
  }

  .feature-panel {
    grid-template-columns: 1fr;
  }

  .feature-panel__visual {
    min-height: 70svh;
  }

  .feature-panel__visual::after {
    background: linear-gradient(0deg, #0a0a0a, transparent 35%);
  }

  .mask-symbol { width: min(62vw, 22rem); }
  .mask-orbit--outer { width: min(96vw, 46rem); }
  .mask-orbit--inner { width: min(72vw, 32rem); }

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

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

  .site-footer__links {
    justify-self: end;
  }

  .site-footer__legal {
    grid-column: 1 / -1;
    justify-self: stretch;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
  }

  .acts-page .desktop-nav,
  .acts-page .ticket-link {
    display: none;
  }

  .acts-intro {
    min-height: 76svh;
  }

  .act-entry {
    min-height: auto;
  }

  .act-entry__link,
  .act-entry--locked {
    grid-template-columns: 1fr;
  }

  .act-entry__visual {
    min-height: 62svh;
  }

  .act-entry__visual--one {
    width: 100%;
  }

  .act-entry__content {
    min-height: 31rem;
  }

  .act-entry__visual--two {
    order: 0;
  }

  .act-detail-page .desktop-nav,
  .act-detail-page .ticket-link {
    display: none;
  }

  .act-hero {
    padding-top: calc(var(--header-height) + 3rem);
  }

  .act-story {
    min-height: 130svh;
  }

  .act-story__body {
    width: min(39rem, 78%);
    margin-right: 0;
  }

  .night-schedule > h2,
  .night-schedule__list {
    width: 100%;
  }

  .night-schedule__list::before,
  .night-schedule__list li::before {
    left: 28%;
  }

  .night-schedule__list li {
    grid-template-columns: 28% 72%;
  }

  .event-information > h2 {
    width: 100%;
  }

  .event-detail {
    min-height: 18rem;
  }

  .lighting-warning {
    grid-template-columns: minmax(8rem, 0.45fr) minmax(0, 1.55fr);
  }

  .event-tickets {
    grid-template-columns: 1fr;
  }

  .event-tickets__button {
    width: min(28rem, 100%);
  }
}

@media (max-width: 600px) {
  .act-lock {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }

  .act-lock h1 {
    font-size: clamp(3.1rem, 14vw, 4.8rem);
  }

  .hero {
    padding: 0;
  }

  .hero__entry {
    justify-content: center;
    padding-bottom: 7rem;
  }

  .hero__topline {
    top: calc(var(--header-height) + 0.75rem);
  }

  .hero__topline span:last-child {
    display: none;
  }

  .hero__content {
    width: min(100%, 34rem);
    margin-top: -1rem;
  }

  .hero__title {
    width: 100%;
    max-width: 100%;
    font-size: clamp(2.45rem, 11.5vw, 4.3rem);
    line-height: 0.84;
    overflow-wrap: normal;
    text-wrap: balance;
  }

  .hero__enter {
    margin-top: clamp(2.25rem, 8vw, 3rem);
  }

  .hero__intro {
    width: 100%;
    margin-top: 2rem;
    font-size: 0.95rem;
  }

  .hero__bottom {
    align-items: stretch;
    flex-direction: column;
    gap: 1.2rem;
  }

  .primary-cta {
    width: 100%;
  }

  .hero__location {
    display: none;
  }

  .scroll-cue {
    display: none;
  }

  .section-index {
    margin-bottom: 3rem;
  }

  .manifesto__title {
    font-size: clamp(2.5rem, 13vw, 4.2rem);
  }

  .manifesto__meta {
    grid-template-columns: 1fr;
    margin-top: 4rem;
  }

  .manifesto__meta > p {
    grid-column: auto;
  }

  .text-link {
    justify-self: start;
    margin-top: 1rem;
  }

  .feature-panel__visual {
    min-height: 58svh;
  }

  .feature-panel__content h2 {
    font-size: clamp(3rem, 14vw, 4.7rem);
  }

  .information__header h2 {
    font-size: clamp(3.2rem, 15vw, 5rem);
  }

  .info-row {
    grid-template-columns: 2rem 1fr;
    min-height: 0;
    padding: 1.5rem 0;
  }

  .info-row p {
    grid-column: 2;
    justify-self: start;
    margin-top: 0.55rem;
    text-align: left;
  }

  .info-row:hover {
    padding-right: 0;
    padding-left: 0;
  }

  .ticket-section {
    min-height: 76svh;
  }

  .ticket-section h2 {
    font-size: clamp(3.6rem, 18vw, 6rem);
  }

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

  .site-footer__links {
    justify-self: start;
    flex-wrap: wrap;
    margin-top: 1.5rem;
  }

  .site-footer__legal {
    grid-column: auto;
  }

  .acts-intro {
    min-height: 70svh;
    padding-top: 9rem;
  }

  .acts-intro h1 {
    font-size: clamp(4.4rem, 22vw, 7rem);
  }

  .acts-intro__text {
    width: 100%;
    margin-left: 0;
  }

  .act-entry__link,
  .act-entry--locked {
    gap: 2.5rem;
    padding: 3.5rem 0;
  }

  .act-entry__visual {
    min-height: 68svh;
  }

  .act-entry__content {
    min-height: 27rem;
  }

  .act-entry h2 {
    font-size: clamp(2.9rem, 14vw, 4.8rem);
  }

  .act-entry__details {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.75rem;
  }

  .act-hero {
    align-items: flex-end;
    padding-bottom: 8rem;
  }

  .act-hero h1 {
    font-size: clamp(3.2rem, 16vw, 5.4rem);
    line-height: 0.86;
  }

  .act-hero__details {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.75rem;
  }

  .act-hero__overlay {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.08) 34%, rgba(0, 0, 0, 0.64));
  }

  .act-story {
    min-height: auto;
    padding-top: 8rem;
    padding-bottom: 10rem;
  }

  .act-story h2 {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .act-story__body {
    width: 100%;
    margin-top: 7rem;
  }

  .act-story__statement {
    font-size: clamp(1.5rem, 7vw, 2.25rem);
  }

  .night-schedule {
    padding-top: 8rem;
    padding-bottom: 10rem;
  }

  .night-schedule > h2 {
    font-size: clamp(3rem, 13.5vw, 4.8rem);
  }

  .night-schedule__list {
    margin-top: 7rem;
    padding-left: 1.5rem;
  }

  .night-schedule__list::before {
    left: 0;
  }

  .night-schedule__list li {
    display: block;
    min-height: 0;
    padding: 0 0 6rem 1.5rem;
  }

  .night-schedule__list li:last-child {
    padding-bottom: 0;
  }

  .night-schedule__list li::before {
    top: 0.25rem;
    left: 0;
  }

  .night-schedule__list time {
    display: block;
    padding: 0;
    text-align: left;
  }

  .night-schedule__step {
    padding: 2rem 0 0;
  }

  .night-schedule__step h3 {
    font-size: clamp(2.3rem, 11vw, 3.7rem);
  }

  .event-information {
    padding-top: 8rem;
    padding-bottom: 9rem;
  }

  .event-information > h2 {
    font-size: clamp(3rem, 13.5vw, 4.8rem);
  }

  .event-information__details {
    grid-template-columns: 1fr;
    margin-top: 7rem;
  }

  .event-detail,
  .event-detail:nth-child(even) {
    min-height: 0;
    padding: 2.5rem 0 3rem;
    border-left: 0;
  }

  .event-detail h3 {
    margin-bottom: 2.5rem;
  }

  .lighting-warning {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 6rem;
    padding: 2.5rem 0 2.5rem 1.25rem;
  }

  .event-tickets {
    gap: 3.5rem;
    margin-top: 9rem;
  }

  .event-tickets__copy h3 {
    font-size: clamp(2.8rem, 13vw, 4.4rem);
  }

  .event-tickets__button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Landing page - continuous dark editorial treatment */
.landing-page,
.landing-page main,
.landing-page .manifesto,
.landing-page .feature-panel,
.landing-page .feature-panel__visual,
.landing-page .information,
.landing-page .ticket-section,
.landing-page .site-footer {
  background: var(--black);
  color: var(--white);
}

.landing-page .section {
  padding-top: clamp(9rem, 17vw, 16rem);
  padding-bottom: clamp(9rem, 17vw, 16rem);
}

.landing-page .manifesto__meta {
  margin-top: clamp(6rem, 13vw, 13rem);
}

.landing-page .manifesto__meta > p {
  color: var(--white-muted);
  opacity: 1;
}

.landing-page .text-link {
  border-bottom-color: rgba(243, 240, 235, 0.28);
}

.landing-page .feature-panel {
  min-height: 110svh;
}

.landing-page .feature-panel__visual {
  background: var(--black);
}

.landing-page .feature-panel__visual::after {
  background: linear-gradient(90deg, transparent 72%, var(--black));
}

.landing-page .feature-panel__content {
  padding-top: clamp(9rem, 14vw, 15rem);
  padding-bottom: clamp(9rem, 14vw, 15rem);
}

.landing-page .feature-list,
.landing-page .feature-list div,
.landing-page .information__list,
.landing-page .info-row,
.landing-page .site-footer {
  border-color: rgba(243, 240, 235, 0.08);
}

.landing-page .information__header {
  margin-bottom: clamp(7rem, 14vw, 14rem);
}

.landing-page .info-row {
  min-height: clamp(8.5rem, 10vw, 11rem);
}

.landing-page .info-row:hover {
  background: transparent;
}

.landing-page .ticket-section {
  min-height: 100svh;
  padding-top: clamp(10rem, 17vw, 17rem);
  padding-bottom: clamp(10rem, 17vw, 17rem);
}

.landing-page .ticket-section::after {
  border-color: rgba(243, 240, 235, 0.055);
}

.landing-page .ticket-section__glow {
  opacity: 0.62;
}

.landing-experience {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: clamp(9rem, 17vw, 16rem) var(--page-gutter);
  background: var(--black);
  color: var(--white);
  text-align: center;
}

.landing-experience__content {
  width: min(76rem, 100%);
}

.landing-experience__label {
  margin: 0 0 clamp(3.5rem, 8vw, 7rem);
  font-size: 0.58rem;
  opacity: 0.55;
}

.landing-experience h2 {
  margin: 0;
  font-size: clamp(4rem, 9vw, 9.5rem);
  font-weight: 500;
  line-height: 0.84;
  letter-spacing: -0.065em;
}

.landing-experience__text {
  width: min(42rem, 82%);
  margin: clamp(3rem, 6vw, 5rem) auto 0;
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  line-height: 1.6;
  color: var(--white-muted);
}

.landing-experience__cta {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: clamp(3.5rem, 7vw, 6rem);
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(243, 240, 235, 0.3);
  font-size: 0.58rem;
  transition: gap 0.6s var(--ease), border-color 0.3s;
}

.landing-experience__cta:hover,
.landing-experience__cta:focus-visible {
  gap: 2rem;
  border-color: var(--white);
}

.landing-experience__cta:focus-visible {
  outline: 1px solid var(--red-bright);
  outline-offset: 0.55rem;
}

@media (max-width: 600px) {
  .landing-experience {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }

  .landing-experience h2 {
    font-size: clamp(3.4rem, 16vw, 5.5rem);
  }

  .landing-experience__text {
    width: 100%;
  }
}
