@font-face {
  font-family: "Clash Display";
  src: url("ClashDisplay-Variable.ttf") format("truetype-variations");
  font-style: normal;
  font-weight: 200 700;
  font-display: swap;
}

:root {
  --ink: #09090c;
  --cream: #f5f4ef;
  --blue: #168fe2;
  --pink: #dd4e9a;
  --orange: #f24614;
  --yellow: #f0b93a;
  --line-light: rgba(245, 244, 239, 0.26);
  --line-dark: rgba(9, 9, 12, 0.2);
  --pad: clamp(1.25rem, 3.5vw, 4.5rem);
  --header-height: 96px;
  --display: "Clash Display", "Arial Narrow", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-height); }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img, video { display: block; max-width: 100%; }
h1, h2, h3 { font-weight: 400; }
strong { font-weight: 600; }

.paint-trail,
.paint-cursor { display: none; pointer-events: none; }
.paint-trail {
  position: fixed;
  z-index: 180;
  inset: 0;
  width: 100vw;
  height: 100vh;
}
.paint-cursor {
  position: fixed;
  z-index: 181;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  margin: -6px 0 0 -6px;
  border-radius: 50%;
  background: #2f66df;
  opacity: 0;
  transition: width 100ms ease, height 100ms ease, margin 100ms ease, opacity 120ms ease;
}
body.paint-cursor-enabled,
body.paint-cursor-enabled a,
body.paint-cursor-enabled button { cursor: none !important; }
body.paint-effect-enabled .paint-trail,
body.paint-cursor-enabled .paint-cursor { display: block; }
.paint-cursor.is-visible { opacity: 1; }
.paint-cursor.is-pressed { width: 8px; height: 8px; margin: -4px 0 0 -4px; }

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 0;
  transform: translateY(-180%);
  border-bottom: 1px solid currentColor;
  background: var(--ink);
  color: var(--cream);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 2px solid var(--yellow); outline-offset: 4px; }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  height: var(--header-height);
  grid-template-columns: 145px minmax(260px, 1fr) auto auto;
  align-items: center;
  border-bottom: 1px solid var(--line-light);
  background: var(--ink);
}
.brand {
  display: grid;
  height: 100%;
  place-items: center;
  border-right: 1px solid var(--line-light);
}
.brand img { width: 88px; }
.header-date {
  display: grid;
  height: 100%;
  align-content: center;
  gap: 0.25rem;
  padding-inline: clamp(1.3rem, 2.2vw, 2.4rem);
  text-transform: uppercase;
}
.header-place {
  color: var(--cream);
  font-size: clamp(0.92rem, 1.1vw, 1.15rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
}
.header-when {
  color: var(--orange);
  font-size: clamp(0.75rem, 0.85vw, 0.88rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1;
}
.desktop-nav { display: flex; height: 100%; align-items: center; }
.desktop-nav a {
  display: grid;
  height: 100%;
  padding-inline: clamp(0.72rem, 1vw, 1rem);
  place-items: center;
  color: rgba(245, 244, 239, 0.82);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 160ms ease;
}
.desktop-nav a:hover { color: var(--cream); }
.header-ticket {
  display: grid;
  height: 100%;
  min-width: 150px;
  padding-inline: 1.25rem;
  place-items: center;
  background: var(--orange);
  color: var(--cream);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background-color 160ms ease;
}
.header-ticket:hover { background: #d83c0f; }
.menu-toggle, .mobile-menu { display: none; }

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  align-items: flex-end;
  overflow: hidden;
  padding: calc(var(--header-height) + 3rem) var(--pad) clamp(3.5rem, 7vw, 7rem);
  background: var(--ink) url("assets/tinto-trama-web-v2.jpg") center 48% / cover no-repeat;
}
.hero::before {
  position: absolute;
  inset: 0;
  background: rgba(9, 9, 12, 0.1);
  content: "";
  pointer-events: none;
}
.hero-copy { position: relative; z-index: 1; width: 100%; }
.eyebrow {
  margin: 0 0 1.2rem;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero h1, .section h2, .final-cta h2 {
  margin: 0;
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.92;
  text-transform: uppercase;
}
.hero h1 {
  max-width: none;
  font-size: clamp(3.8rem, 6.8vw, 7rem);
  font-weight: 600;
  white-space: nowrap;
}
.hero-intro {
  width: min(620px, 100%);
  margin: 1.5rem 0 0;
  color: var(--cream);
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  font-weight: 400;
}
.hero-actions, .location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  margin-top: 2rem;
}
.hero-link, .button, .text-link {
  display: inline-flex;
  min-width: 0;
  min-height: 0;
  align-items: center;
  padding: 0.35rem 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  box-shadow: none;
  color: inherit;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: opacity 160ms ease;
}
.hero-link:hover, .button:hover, .text-link:hover { transform: none; opacity: 0.62; }
.link-icon {
  width: 0.95em;
  height: 0.95em;
  flex: none;
  margin-left: 0.28rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.35;
}
.button--cream, .button--black, .button--large, .text-link--dark {
  min-width: 0;
  min-height: 0;
  padding: 0.35rem 0;
  border-color: currentColor;
  background: transparent;
  box-shadow: none;
  color: inherit;
  font-size: 0.76rem;
}

.text-marquee {
  overflow: hidden;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--orange);
  color: var(--ink);
}
.text-marquee__track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 24s linear infinite;
  will-change: transform;
}
.text-marquee p {
  flex: none;
  margin: 0;
  padding: 1rem 0;
  font-size: clamp(1.5rem, 2.7vw, 2.8rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}
.text-marquee p span {
  padding-inline: 0.65em;
  font-weight: 400;
}
@keyframes marquee-scroll {
  to { transform: translateX(-50%); }
}

.section { position: relative; padding: clamp(5.5rem, 10vw, 10rem) var(--pad); }
.experience {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: clamp(2.5rem, 6vw, 7rem);
  background: var(--cream);
  color: var(--ink);
}
.section-heading h2, .location h2, .partners h2 {
  font-size: clamp(3rem, 6.5vw, 7rem);
}
.section-heading h2 em { color: inherit; font-style: normal; font-weight: 400; }
.experience-copy { width: min(560px, 100%); align-self: end; }
.experience-copy p, .location-copy > p:not(.eyebrow) {
  margin-bottom: 0;
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  font-weight: 400;
  line-height: 1.55;
}
.experience-copy .lead {
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 400;
  line-height: 1.25;
}
.countdown {
  display: flex;
  gap: clamp(1.5rem, 3vw, 4rem);
  align-items: center;
  justify-content: center;
  padding: 0.8rem var(--pad);
  border-block: 1px solid var(--ink);
  background: var(--blue);
  color: var(--ink);
}
.countdown-heading { display: contents; }
.countdown-heading h2 {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}
.countdown-heading time {
  padding-left: clamp(1.5rem, 3vw, 3rem);
  border-left: 1px solid rgba(9, 9, 12, 0.45);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-align: right;
  text-transform: uppercase;
}
.countdown-grid {
  display: flex;
  min-width: 0;
  align-items: center;
}
.countdown-unit {
  display: flex;
  min-width: 0;
  align-items: baseline;
  gap: 0.32rem;
  padding: 0 clamp(0.45rem, 0.9vw, 0.9rem);
}
.countdown-unit:first-child { padding-left: 0; }
.countdown-unit:last-child { padding-right: 0; }
.countdown-unit:not(:last-child)::after {
  margin-left: clamp(0.45rem, 0.9vw, 0.9rem);
  content: "·";
  font-size: 1.25rem;
  font-weight: 400;
  opacity: 0.5;
}
.countdown-unit strong {
  display: block;
  font-size: clamp(1.9rem, 2.8vw, 3rem);
  font-variant-numeric: tabular-nums;
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.82;
}
.countdown-unit span {
  display: block;
  font-size: clamp(0.5rem, 0.62vw, 0.62rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.countdown.is-complete .countdown-grid { display: none; }
.countdown.is-complete { justify-content: space-between; }
.lineup {
  --lineup-color: rgb(242, 70, 20);
  padding: clamp(4.5rem, 8vw, 8rem) var(--pad) clamp(5rem, 9vw, 9rem);
  background: var(--ink);
  color: var(--lineup-color);
}
.lineup-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: clamp(2rem, 4vw, 4rem);
}
.lineup-heading .eyebrow { margin-bottom: 1.15rem; color: var(--cream); }
.lineup-heading h3 {
  margin: 0;
  font-size: clamp(4.6rem, 12vw, 13rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.72;
  text-transform: uppercase;
}
.lineup-date {
  margin: 0;
  color: var(--cream);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.6;
  text-align: right;
  text-transform: uppercase;
}
.lineup-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid currentColor;
  list-style: none;
}
.lineup-list li {
  display: grid;
  grid-template-columns: minmax(90px, 0.35fr) minmax(0, 1.65fr) auto;
  gap: clamp(1.5rem, 4vw, 5rem);
  align-items: start;
  padding: clamp(1.6rem, 3vw, 3rem) 0;
  border-bottom: 1px solid currentColor;
}
.lineup-list time,
.lineup-list > li > span {
  padding-top: 0.45em;
  font-size: clamp(0.7rem, 0.9vw, 0.82rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.lineup-list h4 {
  margin: 0;
  color: currentColor;
  font-size: clamp(2.2rem, 5vw, 5.5rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.92;
  text-transform: uppercase;
}
.lineup-list div p {
  width: min(520px, 100%);
  margin: 0.9rem 0 0;
  color: var(--cream);
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  font-weight: 400;
  line-height: 1.5;
}

.manifesto { overflow: clip; background: var(--ink); }
.manifesto-write { min-height: 165svh; }
.manifesto-write__sticky {
  position: sticky;
  top: calc(var(--header-height) + clamp(1.5rem, 4vw, 4rem));
}
.manifesto-title { font-size: clamp(2.9rem, 6.5vw, 7rem); }
.manifesto-title > [data-write-line] {
  display: block;
  padding-block: 0.2em;
  border-bottom: 1px solid var(--line-light);
  color: var(--cream);
}
.write-word { display: inline-block; white-space: nowrap; }
.manifesto-write.is-ready .write-char {
  color: rgba(245, 244, 239, var(--char-opacity, 0.2));
  transition: color 80ms linear;
}

.aftermovie {
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  background: var(--ink);
  text-align: center;
}
.aftermovie-heading { padding-inline: var(--pad); }
.aftermovie h2 {
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 6.5rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.95;
  text-transform: uppercase;
}
.video-scroll { height: 170svh; margin-top: 2rem; }
.video-sticky {
  position: sticky;
  top: var(--header-height);
  display: grid;
  height: calc(100svh - var(--header-height));
  place-items: center;
  overflow: hidden;
}
.video-frame {
  --video-scale: 0.52;
  width: min(1180px, 92vw);
  transform: scale(var(--video-scale));
  transform-origin: center;
  will-change: transform;
}
.video-frame video { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.video-label {
  display: block;
  margin-top: 0.8rem;
  color: rgba(245, 244, 239, 0.58);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.location {
  display: grid;
  grid-template-columns: minmax(280px, 0.6fr) minmax(0, 1.4fr);
  gap: 0;
  padding: 0;
  scroll-margin-top: var(--header-height);
  border-block: 1px solid rgba(9, 9, 12, 0.24);
  background: var(--orange);
  color: var(--ink);
}
.location-kicker {
  display: flex;
  min-height: clamp(430px, 38vw, 480px);
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: clamp(2.25rem, 3.5vw, 3.5rem) var(--pad);
  border-right: 1px solid rgba(9, 9, 12, 0.24);
  background: transparent;
  text-transform: uppercase;
}
.location-date {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.location-kicker strong {
  margin-block: 0.35rem 0.5rem;
  font-size: clamp(6rem, 10vw, 9rem);
  font-weight: 300;
  letter-spacing: -0.06em;
  line-height: 0.78;
}
.location-date span,
.location-note {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
}
.location-note { margin: 0; }
.location-copy {
  display: flex;
  min-width: 0;
  min-height: clamp(430px, 38vw, 480px);
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(2.25rem, 3.5vw, 3.5rem) var(--pad);
}
.location-copy h2 {
  margin: 0;
  font-size: clamp(3.8rem, 6.5vw, 7rem);
  font-weight: 300;
  line-height: 0.82;
}
.location-copy h2 span { color: rgba(9, 9, 12, 0.7); }
.location-details {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 1.5rem clamp(2rem, 5vw, 6rem);
  align-items: end;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(9, 9, 12, 0.28);
}
.location-address {
  margin: 0;
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  font-weight: 400;
  line-height: 1.55;
}
.location-copy .location-time {
  margin: 0;
  font-size: clamp(1.5rem, 2.15vw, 2.45rem);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1;
  white-space: nowrap;
}
.location-actions { grid-column: 1 / -1; margin-top: 0.15rem; }
.partners {
  background: var(--cream);
  color: var(--ink);
}
.partners-heading { width: min(760px, 100%); }
.partners h2 { font-size: clamp(3rem, 6vw, 6.5rem); }
.partner-marquees {
  margin-top: clamp(3rem, 7vw, 7rem);
  overflow: hidden;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.partner-carousel { overflow: hidden; }
.partner-carousel + .partner-carousel { border-top: 1px solid var(--line-dark); }
.partner-track { display: flex; width: 100%; }
.partner-group {
  display: grid;
  width: 100%;
  flex: none;
  grid-auto-columns: minmax(0, 1fr);
  grid-auto-flow: column;
}
.partner-carousel.is-ready .partner-track {
  width: 200%;
  animation: partner-scroll 30s linear infinite;
  will-change: transform;
}
.partner-carousel--reverse.is-ready .partner-track { animation-direction: reverse; }
.partner-carousel:hover .partner-track,
.partner-carousel:focus-within .partner-track { animation-play-state: paused; }
.partner-carousel.is-ready .partner-group { flex-basis: 50%; }
.partner-group figure {
  display: grid;
  min-width: 0;
  min-height: clamp(185px, 17vw, 245px);
  margin: 0;
  padding: clamp(0.55rem, 1.1vw, 1rem);
  place-items: center;
  border-right: 1px solid var(--line-dark);
}
.partner-group img {
  max-width: 96%;
  max-height: 132px;
  object-fit: contain;
  filter: grayscale(1) saturate(0);
  mix-blend-mode: multiply;
  opacity: 0.68;
  transition: filter 220ms ease, opacity 220ms ease;
}
.partner-group figure:hover img {
  filter: grayscale(0) saturate(1);
  opacity: 1;
}
@keyframes partner-scroll {
  to { transform: translateX(-50%); }
}

.final-cta {
  display: flex;
  min-height: 360px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
  padding: clamp(2.75rem, 4.5vw, 4.5rem) var(--pad);
  background: var(--ink) url("assets/tinto-trama-web-v2.jpg") center 46% / cover no-repeat;
}
.final-cta h2 {
  font-size: clamp(2.8rem, 5.5vw, 5.75rem);
  font-weight: 250;
  letter-spacing: -0.025em;
}

.site-footer {
  position: relative;
  min-height: 180px;
  padding: 2rem var(--pad);
  border-top: 1px solid var(--line-light);
  background: var(--ink);
}
.site-footer > img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 112px;
  transform: translate(-50%, -50%);
}
.site-footer p {
  margin: 0;
  color: rgba(245, 244, 239, 0.58);
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.55;
  text-transform: uppercase;
}
.footer-tagline { position: absolute; bottom: 2rem; left: var(--pad); }
.copyright { position: absolute; right: var(--pad); bottom: 2rem; text-align: right; }

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 520ms ease, transform 520ms ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1120px) {
  .site-header { grid-template-columns: 125px 1fr auto; }
  .desktop-nav, .header-ticket { display: none; }
  .menu-toggle {
    display: grid;
    width: 82px;
    height: 100%;
    place-content: center;
    gap: 8px;
    border: 0;
    border-left: 1px solid var(--line-light);
    background: transparent;
    cursor: pointer;
  }
  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 30px;
    height: 1px;
    background: var(--cream);
    transition: transform 180ms ease;
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(4.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-4.5px) rotate(-45deg); }
  .mobile-menu {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: flex;
    visibility: hidden;
    height: calc(100svh - var(--header-height));
    flex-direction: column;
    padding: 2rem var(--pad);
    transform: translateY(-100%);
    background: var(--ink);
    opacity: 0;
    transition: transform 220ms ease, opacity 180ms ease, visibility 220ms;
  }
  .mobile-menu.is-open { visibility: visible; transform: translateY(0); opacity: 1; }
  .mobile-menu a {
    padding-block: 1rem;
    border-bottom: 1px solid var(--line-light);
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1;
    text-transform: uppercase;
  }
  .mobile-menu a:last-child { margin-top: auto; border-bottom: 0; color: var(--orange); }
  .partners { grid-template-columns: 1fr; }
  .partner-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 780px) {
  :root { --header-height: 76px; }
  .site-header { grid-template-columns: 105px 1fr 68px; }
  .brand img { width: 72px; }
  .header-date { justify-items: end; padding-inline: 0.8rem; text-align: right; }
  .header-place { font-size: 0.72rem; }
  .header-when { font-size: 0.58rem; letter-spacing: 0.08em; }
  .menu-toggle { width: 68px; }
  .hero {
    min-height: 100svh;
    padding-top: calc(var(--header-height) + 3rem);
    padding-bottom: 3.5rem;
    background-position: center;
  }
  .hero h1 {
    max-width: 11ch;
    font-size: clamp(3.1rem, 15vw, 4.8rem);
    line-height: 0.9;
    white-space: normal;
  }
  .text-marquee p { padding-block: 0.8rem; font-size: 1.45rem; }
  .experience, .location { grid-template-columns: 1fr; }
  .countdown {
    gap: 0;
    padding-block: 0.72rem;
  }
  .countdown-heading > div,
  .countdown-heading time { display: none; }
  .countdown.is-complete .countdown-heading > div { display: block; }
  .countdown-grid { width: 100%; justify-content: space-between; }
  .countdown-unit {
    align-items: baseline;
    flex-direction: row;
    gap: 0.2rem;
    padding-right: 0.2rem;
    padding-left: 0.2rem;
  }
  .countdown-unit:first-child { padding-left: 0; }
  .countdown-unit:last-child { padding-right: 0; }
  .countdown-unit:not(:last-child)::after { margin-left: clamp(0.25rem, 1.4vw, 0.45rem); }
  .countdown-unit strong { font-size: clamp(1.45rem, 6.8vw, 2.25rem); }
  .countdown-unit span { font-size: 0; }
  .countdown-unit span::after {
    content: attr(data-short);
    font-size: 0.48rem;
    letter-spacing: 0.03em;
  }
  .lineup-heading { align-items: flex-start; flex-direction: column; }
  .lineup-heading h3 { font-size: clamp(4.5rem, 25vw, 7rem); line-height: 0.8; }
  .lineup-date { text-align: left; }
  .lineup-list li { grid-template-columns: 76px minmax(0, 1fr); gap: 1rem; }
  .lineup-list > li > span { display: none; }
  .manifesto-write { min-height: 150svh; }
  .manifesto-write__sticky { top: calc(var(--header-height) + 1.25rem); }
  .video-scroll { height: 135svh; }
  .video-frame { --video-scale: 0.78; width: calc(100vw - 2rem); }
  .location-kicker {
    min-height: 190px;
    padding-block: 2rem;
    border-right: 0;
    border-bottom: 1px solid rgba(9, 9, 12, 0.24);
  }
  .location-kicker strong { font-size: clamp(5.5rem, 26vw, 8rem); }
  .location-copy {
    min-height: 380px;
    padding-block: 2.5rem;
  }
  .location-copy h2 { font-size: clamp(3.4rem, 15vw, 5.5rem); }
  .location-details { grid-template-columns: 1fr; gap: 1.15rem; }
  .location-copy .location-time { white-space: normal; }
  .partner-carousel.is-ready .partner-track { width: 600%; }
  .partner-group figure { min-height: 175px; padding: 0.75rem; }
  .partner-group img { max-width: 94%; max-height: 118px; }
  .final-cta {
    min-height: 380px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-end;
    gap: 2rem;
  }
  .site-footer { min-height: 180px; }
}

@media (max-width: 460px) {
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 1rem; }
  .location-actions { align-items: flex-start; gap: 1.25rem; }
  .lineup-list li { grid-template-columns: 1fr; }
  .lineup-list time { padding-top: 0; }
  .lineup-list h4 { font-size: clamp(2.4rem, 13vw, 3.7rem); }
  .site-footer { min-height: 170px; }
  .site-footer > img { top: 45%; width: 100px; }
  .footer-tagline { display: none; }
  .copyright { right: 50%; bottom: 1.25rem; transform: translateX(50%); text-align: center; white-space: nowrap; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .video-frame { transform: scale(1); }
  .text-marquee__track { animation: none; }
  .partner-carousel.is-ready .partner-track { width: 100%; animation: none; transform: none; }
  .partner-carousel.is-ready .partner-group { flex-basis: 100%; }
  .partner-carousel.is-ready .partner-group[aria-hidden="true"] { display: none; }
  .manifesto-write { min-height: auto; }
  .manifesto-write__sticky { position: static; }
  .manifesto-write.is-ready .write-char { --char-opacity: 1 !important; }
}
