:root {
  --ink: #050505;
  --ink-soft: #111111;
  --paper: #f3efe5;
  --acid: #f9ff01;
  --acid-soft: #e8f000;
  --cursor-red: #ff2b2b;
  --muted: #aaa398;
  --line-light: rgba(243, 239, 229, .18);
  --line-dark: rgba(5, 5, 5, .2);
  --max: 1480px;
  --pad: clamp(20px, 4.6vw, 76px);
  --display: "Archivo Black", Impact, sans-serif;
  --body: "DM Sans", Arial, sans-serif;
  --mono: "Space Mono", monospace;
  --script: "Permanent Marker", cursive;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--body);
  overflow-x: hidden;
}
body.menu-open,
body.lightbox-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }
::selection { background: var(--acid); color: var(--ink); }

.noise {
  position: fixed;
  inset: 0;
  z-index: 1800;
  pointer-events: none;
  opacity: .045;
  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='.8' numOctaves='4' stitchTiles='stitchTiles'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.85'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.scroll-progress {
  position: fixed;
  z-index: 1700;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, .06);
  pointer-events: none;
}
.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--acid);
  transform: scaleX(0);
  transform-origin: left;
  box-shadow: 0 0 22px rgba(249, 255, 1, .75);
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 2400;
  display: grid;
  place-items: center;
  background: var(--acid);
  color: var(--ink);
  transition: transform .9s cubic-bezier(.76, 0, .24, 1), visibility .9s;
}
.preloader.is-done {
  transform: translateY(-100%);
  visibility: hidden;
}
.preloader__logo-wrap {
  width: clamp(130px, 16vw, 230px);
  filter: brightness(0);
  transform: rotate(-4deg);
}
.preloader p {
  position: absolute;
  bottom: 12vh;
  margin: 0;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.preloader__bar {
  position: absolute;
  bottom: 8.5vh;
  width: min(320px, 72vw);
  height: 2px;
  background: rgba(5, 5, 5, .2);
  overflow: hidden;
}
.preloader__bar span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--ink);
  transform-origin: left;
  animation: loading 1.2s ease forwards;
}
@keyframes loading { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.cursor,
.cursor-dot {
  position: fixed;
  z-index: 2300;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0;
}
.cursor {
  width: 42px;
  height: 42px;
  border: 2px solid var(--cursor-red);
  background: rgba(255, 43, 43, .08);
  box-shadow: 0 0 0 2px rgba(5, 5, 5, .42), 0 0 24px rgba(255, 43, 43, .45);
  transition: width .2s, height .2s, background .2s, border-color .2s, box-shadow .2s;
}
.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--cursor-red);
  box-shadow: 0 0 0 2px var(--paper);
}
.cursor.is-active {
  width: 74px;
  height: 74px;
  background: rgba(255, 43, 43, .16);
  border-color: var(--cursor-red);
  box-shadow: 0 0 0 2px var(--paper), 0 0 34px rgba(255, 43, 43, .55);
}
.cursor.is-down { width: 28px; height: 28px; }
@media (pointer: fine) and (min-width: 900px) {
  body, a, button { cursor: none; }
  .cursor, .cursor-dot { opacity: 1; }
}

.site-header {
  position: fixed;
  z-index: 1600;
  top: 0;
  left: 0;
  right: 0;
  height: 92px;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: height .35s, background .35s, border-color .35s;
}
.site-header.is-scrolled {
  height: 72px;
  background: rgba(5, 5, 5, .9);
  border-color: var(--line-light);
  backdrop-filter: blur(18px);
}
.brand {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand__logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
}
.brand__word {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.desktop-nav {
  display: flex;
  gap: clamp(22px, 2.3vw, 38px);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.desktop-nav a {
  position: relative;
  padding: 8px 0;
  transition: color .2s;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--acid);
  transition: right .25s;
}
.desktop-nav a:hover,
.desktop-nav a.is-active { color: var(--acid); }
.desktop-nav a:hover::after,
.desktop-nav a.is-active::after { right: 0; }
.desktop-book { justify-self: end; }

.menu-toggle {
  display: none;
  justify-self: end;
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 0;
  background: transparent;
}
.menu-toggle span {
  display: block;
  height: 2px;
  margin: 7px 0;
  background: currentColor;
  transition: transform .25s;
}
.menu-toggle.is-open span:first-child { transform: translateY(4.5px) rotate(45deg); }
.menu-toggle.is-open span:last-child { transform: translateY(-4.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1500;
  padding: 120px var(--pad) 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--acid);
  color: var(--ink);
  visibility: hidden;
  transform: translateY(-100%);
  transition: transform .65s cubic-bezier(.76, 0, .24, 1), visibility .65s;
  overflow: hidden;
}
.mobile-menu.is-open { visibility: visible; transform: translateY(0); }
.mobile-menu__mark {
  position: absolute;
  right: -40px;
  bottom: 4vh;
  width: min(55vw, 340px);
  opacity: .08;
  filter: brightness(0);
  transform: rotate(9deg);
}
.mobile-menu nav { position: relative; z-index: 2; display: flex; flex-direction: column; }
.mobile-menu nav > a:not(.button) {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid rgba(5, 5, 5, .22);
  font-family: var(--display);
  font-size: clamp(38px, 11vw, 70px);
  line-height: .9;
  letter-spacing: -.06em;
  text-transform: uppercase;
}
.mobile-menu nav > a span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .1em;
}
.mobile-menu .button { margin-top: 24px; }
.mobile-menu__foot {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.button {
  position: relative;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  padding: 0 24px;
  border: 1px solid currentColor;
  border-radius: 2px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  overflow: hidden;
  transition: transform .25s, background .25s, color .25s, border-color .25s;
}
.button::before {
  content: "";
  position: absolute;
  inset: -1px auto -1px -45%;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .55), transparent);
  transform: skewX(-20deg);
  transition: left .45s;
}
.button:hover::before { left: 115%; }
.button > * { position: relative; }
.button svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.button:hover { transform: translateY(-3px); }
.button--mini { min-height: 43px; padding: 0 18px; }
.button--acid { background: var(--acid); color: var(--ink); border-color: var(--acid); }
.button--acid:hover { background: var(--paper); border-color: var(--paper); }
.button--outline { background: transparent; color: var(--paper); border-color: var(--line-light); }
.button--outline:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.button--dark { background: var(--ink); color: var(--acid); border-color: var(--ink); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.text-link span { color: var(--acid); font-size: 18px; }
.text-link--dark span { color: var(--ink); }

.hero {
  position: relative;
  min-height: 100svh;
  padding: 126px var(--pad) 50px;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
}
.hero__media,
.hero__image,
.hero__duotone,
.hero__grid { position: absolute; inset: 0; }
.hero__media { z-index: -2; background: #161616; }
.hero__image {
  background-image: url("https://latemperatura.ch/wp-content/uploads/2023/10/ok6.jpeg");
  background-size: cover;
  background-position: center 56%;
  filter: grayscale(.18) contrast(1.18) brightness(.72);
  transform: scale(1.06);
  animation: heroZoom 14s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero__duotone {
  background:
    linear-gradient(180deg, rgba(5, 5, 5, .6) 0%, rgba(5, 5, 5, .15) 35%, rgba(5, 5, 5, .4) 66%, rgba(5, 5, 5, .95) 100%),
    linear-gradient(100deg, rgba(249, 255, 1, .26), transparent 38%);
  mix-blend-mode: multiply;
}
.hero__grid {
  opacity: .22;
  background-image:
    linear-gradient(rgba(255, 255, 255, .14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .14) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .9), transparent 72%);
}
.hero__topline {
  position: absolute;
  top: 116px;
  left: var(--pad);
  right: var(--pad);
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
}
.live-dot { display: inline-flex; align-items: center; gap: 10px; }
.live-dot::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 6px rgba(249, 255, 1, .15);
  animation: pulse 1.6s infinite;
}
@keyframes pulse { 50% { box-shadow: 0 0 0 12px rgba(249, 255, 1, 0); } }
.hero__side-label {
  position: absolute;
  left: 18px;
  top: 50%;
  display: flex;
  gap: 48px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .13em;
  text-transform: uppercase;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center;
}
.hero__content { width: 100%; max-width: var(--max); margin: 0 auto; }
.eyebrow {
  margin: 0 0 18px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero .eyebrow { color: rgba(255, 255, 255, .78); }
.hero__title {
  position: relative;
  margin: 0;
  font-family: var(--display);
  line-height: .72;
  letter-spacing: -.075em;
  text-transform: uppercase;
}
.hero__title-la {
  display: block;
  margin-left: -.04em;
  color: var(--acid);
  font-size: clamp(90px, 14vw, 222px);
}
.hero__title-main {
  display: block;
  margin-left: -.045em;
  font-size: clamp(58px, 10.6vw, 174px);
  white-space: nowrap;
  text-shadow: 0 8px 40px rgba(0, 0, 0, .35);
}
.hero__bottom {
  margin-top: 38px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
}
.hero__claim { margin: 0; font-size: clamp(18px, 1.75vw, 27px); line-height: 1.08; }
.hero__claim strong { font-weight: 700; color: var(--acid); }
.hero__actions { display: flex; align-items: center; gap: 28px; }
.hero__butterfly {
  position: absolute;
  right: clamp(8px, 4vw, 70px);
  top: 16%;
  width: clamp(210px, 27vw, 450px);
  opacity: .16;
  transform: rotate(6deg);
  pointer-events: none;
}
.hero__temperature {
  position: absolute;
  right: var(--pad);
  bottom: 42%;
  width: 84px;
  display: grid;
  grid-template-columns: auto 5px auto;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .1em;
  transform: rotate(90deg);
  transform-origin: right bottom;
}
.hero__temperature div { height: 5px; background: rgba(255, 255, 255, .22); overflow: hidden; }
.hero__temperature i { display: block; width: 78%; height: 100%; background: var(--acid); }
.hero__temperature strong { font-family: var(--display); font-size: 20px; letter-spacing: -.05em; }

.marquee {
  overflow: hidden;
  background: var(--acid);
  color: var(--ink);
  border-block: 1px solid rgba(5, 5, 5, .3);
}
.marquee__track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 0;
  font-family: var(--display);
  font-size: clamp(21px, 2.7vw, 40px);
  letter-spacing: -.04em;
  animation: marquee 26s linear infinite;
}
.marquee__track i { font-style: normal; color: var(--ink); font-size: .55em; }
@keyframes marquee { to { transform: translateX(-50%); } }

.section {
  position: relative;
  scroll-margin-top: 90px;
  padding: clamp(92px, 11vw, 170px) var(--pad);
}
.section-kicker {
  max-width: var(--max);
  margin: 0 auto clamp(52px, 6vw, 86px);
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line-dark);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.section-kicker--light { border-color: var(--line-light); color: var(--muted); }
.section-heading {
  max-width: var(--max);
  margin: 0 auto clamp(48px, 7vw, 96px);
}
.section-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(48px, 8vw, 124px);
  line-height: .86;
  letter-spacing: -.065em;
  text-transform: uppercase;
}
.section-heading h2 em {
  position: relative;
  z-index: 0;
  display: inline-block;
  font-family: var(--script);
  font-size: .72em;
  font-weight: 400;
  color: var(--acid);
  text-transform: none;
  letter-spacing: -.03em;
}
.next-event .section-heading h2 em,
.crew .section-heading h2 em {
  color: var(--ink);
}
.next-event .section-heading h2 em::after,
.crew .section-heading h2 em::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -.08em;
  right: -.06em;
  bottom: .07em;
  height: .22em;
  background: var(--acid);
  transform: rotate(-1.5deg);
}
.section-heading--row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 50px;
}
.section-heading--row > p {
  max-width: 390px;
  margin: 0 0 8px;
  color: var(--muted);
  line-height: 1.65;
}

.next-event { background: var(--paper); color: var(--ink); }
.next-event .eyebrow { color: #6d675f; }
.section-heading--event h2 em { color: var(--ink); }
.event-card {
  max-width: var(--max);
  min-height: 760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, .88fr);
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 32px 90px rgba(5, 5, 5, .18);
}
.event-card__visual { position: relative; min-height: 680px; overflow: hidden; }
.event-card__photo {
  position: absolute;
  inset: 0;
  background: #171717 url("https://latemperatura.ch/wp-content/uploads/2023/10/ok13.jpeg") center/cover;
  filter: grayscale(.12) contrast(1.14) brightness(.78);
  transition: transform .8s cubic-bezier(.2, .8, .2, 1);
}
.event-card:hover .event-card__photo { transform: scale(1.035); }
.event-card__texture {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, .12), rgba(5, 5, 5, .82)),
    linear-gradient(90deg, rgba(249, 255, 1, .3), transparent 42%);
  mix-blend-mode: multiply;
}
.event-card__poster {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: clamp(28px, 4.2vw, 62px);
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr auto;
  align-items: end;
}
.event-card__poster-top {
  grid-column: 1 / 3;
  align-self: start;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .13em;
}
.event-card__day {
  align-self: center;
  margin-left: -.07em;
  font-family: var(--display);
  font-size: clamp(150px, 20vw, 300px);
  line-height: .68;
  letter-spacing: -.11em;
  color: var(--acid);
}
.event-card__month {
  align-self: center;
  font-family: var(--display);
  font-size: clamp(34px, 4.2vw, 62px);
  line-height: .85;
  letter-spacing: -.05em;
  text-align: right;
}
.event-card__logo {
  grid-column: 1;
  width: clamp(100px, 12vw, 170px);
  opacity: .92;
}
.event-card__guest {
  justify-self: end;
  padding: 10px 12px;
  background: var(--acid);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  transform: rotate(-2deg);
}
.event-card__info {
  min-width: 0;
  padding: clamp(34px, 4.5vw, 66px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.event-card__meta { display: flex; flex-wrap: wrap; gap: 8px; }
.event-card__meta span {
  padding: 7px 10px;
  border: 1px solid var(--line-light);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.event-card__venue { margin: clamp(38px, 5vw, 72px) 0 28px; }
.event-card__venue > p:first-child {
  margin: 0 0 10px;
  color: var(--acid);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.event-card__venue h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(48px, 5.2vw, 82px);
  line-height: .82;
  letter-spacing: -.055em;
  text-transform: uppercase;
}
.event-card__address { margin: 18px 0 0; color: var(--muted); font-size: 13px; }
.lineup { display: flex; flex-wrap: wrap; gap: 6px; }
.lineup span {
  padding: 7px 10px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.lineup span:nth-child(2n) { background: var(--acid); }
.event-card__copy { max-width: 540px; margin: 24px 0 0; color: var(--muted); line-height: 1.65; }
.countdown {
  margin: 30px 0 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line-light);
}
.countdown div { padding: 17px 10px; border-right: 1px solid var(--line-light); }
.countdown div:first-child { padding-left: 0; }
.countdown div:last-child { border: 0; }
.countdown strong { display: block; font-family: var(--display); font-size: clamp(26px, 3vw, 45px); line-height: 1; }
.countdown span { display: block; margin-top: 7px; color: var(--muted); font-family: var(--mono); font-size: 8px; letter-spacing: .09em; text-transform: uppercase; }
.event-card__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.event-card__info small { margin-top: 16px; color: var(--muted); }
.event-follow {
  max-width: var(--max);
  margin: clamp(34px, 5vw, 72px) auto 0;
  padding: 20px 0;
  display: grid;
  grid-template-columns: .7fr 1.5fr auto;
  align-items: center;
  gap: 30px;
  border-block: 1px solid var(--line-dark);
}
.event-follow__label {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .13em;
}
.event-follow p { margin: 0; font-family: var(--display); font-size: clamp(23px, 2.2vw, 34px); letter-spacing: -.04em; text-transform: uppercase; }

.manifesto { padding-bottom: 0; }
.manifesto__grid {
  max-width: var(--max);
  margin: 0 auto clamp(70px, 10vw, 140px);
  display: grid;
  grid-template-columns: .8fr 4fr;
  gap: 42px;
}
.manifesto__statement {
  font-family: var(--display);
  font-size: clamp(34px, 5.5vw, 86px);
  line-height: .96;
  letter-spacing: -.06em;
  text-transform: uppercase;
}
.manifesto__statement p { margin: 0; color: rgba(243, 239, 229, .18); transition: color .55s; }
.manifesto__statement p.is-visible { color: var(--paper); }
.manifesto__statement span { color: var(--acid); }
.experience-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr .82fr .82fr;
  grid-template-rows: 410px 410px;
  gap: 14px;
}
.experience-card { position: relative; margin: 0; overflow: hidden; background: #171717; }
.experience-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(5, 5, 5, .62));
  pointer-events: none;
}
.experience-card img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.88) contrast(1.05); transition: transform .8s, filter .45s; }
.experience-card:hover img { transform: scale(1.045); filter: saturate(1.15) contrast(1.08); }
.experience-card figcaption {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 18px;
  bottom: 16px;
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, .45);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.experience-card figcaption span { color: var(--acid); }
.experience-card--wide { grid-row: 1 / 3; }
.experience-card--portrait { grid-column: 2; grid-row: 1; }
.experience-card--compact { grid-column: 2; grid-row: 2; }
.experience-card--square { grid-column: 3; grid-row: 2; }
.experience-note {
  grid-column: 3;
  grid-row: 1;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--acid);
  color: var(--ink);
  background-image:
    linear-gradient(rgba(5, 5, 5, .13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 5, 5, .13) 1px, transparent 1px);
  background-size: 28px 28px;
}
.experience-note__top,
.experience-note__bottom { font-family: var(--mono); font-size: 9px; font-weight: 700; letter-spacing: .12em; }
.experience-note p { margin: 30px 0; line-height: 1.45; }
.experience-note strong { font-family: var(--display); font-size: clamp(24px, 2.35vw, 39px); line-height: .9; letter-spacing: -.04em; text-transform: uppercase; }

.crew { background: var(--paper); color: var(--ink); overflow: hidden; }
.crew .section-heading--row > p { color: #6e685f; }
.crew .eyebrow { color: #6e685f; }
.artist-experience {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, .68fr) minmax(0, 1.75fr);
  min-height: 690px;
  border: 1px solid var(--line-dark);
  background: var(--ink);
}
.artist-more {
  max-width: var(--max);
  margin: 22px auto 0;
  font-family: var(--script);
  font-size: clamp(28px, 4.2vw, 64px);
  line-height: .9;
  color: var(--ink);
}
.artist-more em {
  position: relative;
  z-index: 0;
  font-style: normal;
}
.artist-more em::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -.08em;
  right: -.08em;
  bottom: .05em;
  height: .28em;
  background: var(--acid);
  transform: rotate(-1.5deg);
}
.artist-index { display: flex; flex-direction: column; background: var(--paper); }
.artist-index__item {
  position: relative;
  flex: 1;
  min-height: 116px;
  padding: 20px 22px;
  display: grid;
  grid-template-columns: 36px 1fr auto;
  grid-template-rows: 1fr auto;
  gap: 4px 12px;
  align-items: center;
  border: 0;
  border-bottom: 1px solid var(--line-dark);
  background: transparent;
  color: var(--ink);
  text-align: left;
  overflow: hidden;
  transition: background .25s, color .25s;
}
.artist-index__item:last-child { border-bottom: 0; }
.artist-index__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--acid);
  transform: translateX(-101%);
  transition: transform .35s cubic-bezier(.2, .8, .2, 1);
}
.artist-index__item:hover::before,
.artist-index__item.is-active::before { transform: translateX(0); }
.artist-index__item > * { position: relative; z-index: 1; }
.artist-index__item > span { grid-row: 1 / 3; font-family: var(--mono); font-size: 9px; font-weight: 700; }
.artist-index__item strong {
  font-family: var(--display);
  font-size: clamp(22px, 2vw, 34px);
  line-height: .9;
  letter-spacing: -.045em;
  text-transform: uppercase;
}
.artist-index__item small { grid-column: 2; font-family: var(--mono); font-size: 8px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; opacity: .55; }
.artist-index__item i { grid-column: 3; grid-row: 1 / 3; font-style: normal; font-size: 22px; transform: rotate(0); transition: transform .25s; }
.artist-index__item:hover i,
.artist-index__item.is-active i { transform: rotate(45deg); }

.artist-stage {
  position: relative;
  min-width: 0;
  min-height: 690px;
  padding: clamp(26px, 4vw, 58px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  isolation: isolate;
  transition: background .45s, color .45s;
}
.artist-stage__grid {
  position: absolute;
  inset: 0;
  z-index: -4;
  opacity: .08;
  background-image:
    linear-gradient(rgba(243, 239, 229, .3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(243, 239, 229, .3) 1px, transparent 1px);
  background-size: 52px 52px;
}
.artist-stage::before,
.artist-stage::after {
  content: "";
  position: absolute;
  z-index: -2;
  pointer-events: none;
  transition: transform .55s, opacity .55s, background .55s;
}
.artist-stage::before {
  width: min(52vw, 700px);
  aspect-ratio: 1;
  right: -12%;
  top: -20%;
  border-radius: 50%;
  border: clamp(14px, 2.4vw, 34px) solid var(--acid);
  opacity: .42;
}
.artist-stage::after {
  left: -12%;
  right: -12%;
  bottom: 18%;
  height: 66px;
  background: var(--acid);
  transform: rotate(-7deg);
}
.artist-stage__topline,
.artist-stage__bottom {
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.artist-stage__orbit {
  position: absolute;
  z-index: 1;
  right: clamp(30px, 6vw, 100px);
  top: 50%;
  width: clamp(180px, 23vw, 330px);
  aspect-ratio: 1;
  transform: translateY(-52%);
  opacity: .14;
}
.artist-stage__orbit span {
  display: none;
}
.artist-stage__orbit span:nth-child(2) { inset: 14%; animation-direction: reverse; animation-duration: 12s; }
.artist-stage__orbit span:nth-child(3) { inset: 29%; animation-duration: 8s; }
.artist-stage__orbit span::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--acid);
}
.artist-stage__orbit img {
  position: absolute;
  inset: 24%;
  width: 52%;
  height: 52%;
  object-fit: contain;
  opacity: .92;
}
@keyframes orbit { to { transform: rotate(360deg); } }
.artist-stage__name {
  position: relative;
  z-index: 3;
  margin: auto 0;
  font-family: var(--display);
  font-size: clamp(92px, 11vw, 184px);
  line-height: .72;
  letter-spacing: -.09em;
  text-transform: uppercase;
}
.artist-stage__name span { display: block; transition: transform .35s, opacity .35s; }
.artist-stage__name span:last-child { color: var(--acid); margin-left: 7%; }
.artist-stage.is-switching .artist-stage__name span:first-child { opacity: 0; transform: translateX(-40px); }
.artist-stage.is-switching .artist-stage__name span:last-child { opacity: 0; transform: translateX(40px); }
.artist-stage__bottom { align-items: flex-end; }
.artist-stage__bottom > div { display: flex; flex-direction: column; gap: 7px; }
.artist-stage__bottom strong { font-family: var(--display); font-size: 22px; letter-spacing: -.04em; }
.artist-stage__bottom p { display: none; }
.artist-stage__label { color: var(--acid); }
.artist-stage__ticker {
  display: none;
}
.artist-stage__ticker span { padding: 12px 14px; }
@keyframes artistTicker { to { transform: rotate(-7deg) translateX(-50%); } }

.artist-stage.theme-kemuel::before { border-radius: 0; transform: rotate(18deg); right: -8%; top: -24%; }
.artist-stage.theme-kemuel::after { transform: rotate(8deg); bottom: 22%; }
.artist-stage.theme-kemuel .artist-stage__orbit { left: 54%; right: auto; opacity: .74; }
.artist-stage.theme-kemuel .artist-stage__name span:last-child { margin-left: 0; color: var(--paper); -webkit-text-stroke: 3px var(--acid); }

.artist-stage.theme-maximarcus { background: var(--acid); color: var(--ink); }
.artist-stage.theme-maximarcus .artist-stage__grid { background-image: linear-gradient(rgba(5, 5, 5, .25) 1px, transparent 1px), linear-gradient(90deg, rgba(5, 5, 5, .25) 1px, transparent 1px); }
.artist-stage.theme-maximarcus::before { border-color: var(--ink); border-radius: 0; transform: rotate(45deg); opacity: .13; }
.artist-stage.theme-maximarcus::after { background: var(--ink); transform: rotate(-4deg); }
.artist-stage.theme-maximarcus .artist-stage__orbit span { border-color: rgba(5, 5, 5, .45); }
.artist-stage.theme-maximarcus .artist-stage__orbit span::before { background: var(--ink); }
.artist-stage.theme-maximarcus .artist-stage__orbit img { filter: brightness(0); }
.artist-stage.theme-maximarcus .artist-stage__name { font-size: clamp(68px, 8.8vw, 142px); }
.artist-stage.theme-maximarcus .artist-stage__name span:last-child { margin-left: 4%; color: var(--ink); -webkit-text-stroke: 0; }
.artist-stage.theme-maximarcus .artist-stage__bottom p { color: rgba(5, 5, 5, .68); }
.artist-stage.theme-maximarcus .artist-stage__label { color: var(--ink); }
.artist-stage.theme-maximarcus .artist-stage__ticker { background: var(--ink); color: var(--acid); }

.artist-stage.theme-nyo::before { width: min(62vw, 800px); right: -22%; top: -40%; border-width: clamp(35px, 6vw, 92px); opacity: .72; }
.artist-stage.theme-nyo::after { left: 45%; right: -15%; bottom: -8%; height: 58%; transform: rotate(14deg); opacity: .85; }
.artist-stage.theme-nyo .artist-stage__orbit { right: 11%; top: 44%; transform: translateY(-50%) scale(.78); }
.artist-stage.theme-nyo .artist-stage__name { font-size: clamp(140px, 18vw, 300px); }
.artist-stage.theme-nyo .artist-stage__name span:last-child { display: none; }

.artist-stage.theme-rodriguez { background: var(--paper); color: var(--ink); }
.artist-stage.theme-rodriguez .artist-stage__grid { background-image: linear-gradient(rgba(5, 5, 5, .2) 1px, transparent 1px), linear-gradient(90deg, rgba(5, 5, 5, .2) 1px, transparent 1px); }
.artist-stage.theme-rodriguez::before { border-color: var(--acid); right: -4%; top: -25%; border-radius: 50% 0 50% 0; }
.artist-stage.theme-rodriguez::after { background: var(--ink); bottom: 13%; transform: rotate(4deg); }
.artist-stage.theme-rodriguez .artist-stage__orbit span { border-color: rgba(5, 5, 5, .4); }
.artist-stage.theme-rodriguez .artist-stage__orbit img { filter: brightness(0); }
.artist-stage.theme-rodriguez .artist-stage__name { font-size: clamp(62px, 8vw, 132px); }
.artist-stage.theme-rodriguez .artist-stage__name span:last-child { margin-left: 3%; color: var(--ink); -webkit-text-stroke: 2px var(--acid); }
.artist-stage.theme-rodriguez .artist-stage__bottom p { color: rgba(5, 5, 5, .66); }
.artist-stage.theme-rodriguez .artist-stage__label { color: var(--ink); }
.artist-stage.theme-rodriguez .artist-stage__ticker { background: var(--ink); color: var(--acid); }

.gallery { background: var(--ink); }
.gallery-grid {
  max-width: var(--max);
  height: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(12, 1fr);
  gap: 12px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: #171717;
  color: var(--paper);
}
.gallery-item::after {
  content: "+";
  position: absolute;
  right: 14px;
  top: 14px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .55);
  font-family: var(--mono);
  font-size: 20px;
  background: rgba(5, 5, 5, .35);
  backdrop-filter: blur(8px);
  transition: background .25s, color .25s, transform .25s;
}
.gallery-item:hover::after { background: var(--acid); color: var(--ink); transform: rotate(90deg); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.82) contrast(1.06); transition: transform .75s, filter .4s; }
.gallery-item:hover img { transform: scale(1.045); filter: saturate(1.12) contrast(1.08); }
.gallery-item > span {
  position: absolute;
  z-index: 2;
  left: 14px;
  bottom: 14px;
  padding: 8px 10px;
  background: var(--acid);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.gallery-item--a { grid-column: 1 / 8; grid-row: 1 / 7; }
.gallery-item--b { grid-column: 8 / 13; grid-row: 1 / 5; }
.gallery-item--c { grid-column: 8 / 13; grid-row: 5 / 9; }
.gallery-item--d { grid-column: 1 / 5; grid-row: 7 / 13; }
.gallery-item--e { grid-column: 5 / 10; grid-row: 7 / 13; }
.gallery-item--f { grid-column: 10 / 13; grid-row: 9 / 13; }

.social-cta {
  min-height: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--acid);
  color: var(--ink);
  overflow: hidden;
  isolation: isolate;
}
.social-cta__grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .28;
  background-image: linear-gradient(rgba(5, 5, 5, .28) 1px, transparent 1px), linear-gradient(90deg, rgba(5, 5, 5, .28) 1px, transparent 1px);
  background-size: 48px 48px;
}
.social-cta__logo {
  position: absolute;
  z-index: -1;
  width: min(55vw, 700px);
  opacity: .09;
  filter: brightness(0);
  transform: rotate(-8deg);
}
.social-cta .eyebrow { color: var(--ink); }
.social-cta h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(62px, 10vw, 165px);
  line-height: .76;
  letter-spacing: -.075em;
  text-transform: uppercase;
}
.social-cta h2 span {
  display: inline-block;
  padding: 0 .08em .05em;
  background: var(--ink);
  color: var(--acid);
  transform: rotate(-2deg);
}
.social-cta__copy { max-width: 570px; margin: 36px auto 30px; line-height: 1.6; }
.instagram-button {
  width: min(760px, 100%);
  min-height: 96px;
  padding: 0 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  border: 2px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  text-align: left;
  transition: background .25s, color .25s, transform .25s;
}
.instagram-button:hover { background: var(--ink); color: var(--acid); }
.instagram-button__icon { font-size: 36px; }
.instagram-button > span:nth-child(2) { display: flex; flex-direction: column; font-family: var(--display); font-size: clamp(18px, 2.8vw, 38px); letter-spacing: -.04em; }
.instagram-button small { font-family: var(--mono); font-size: 8px; letter-spacing: .13em; }
.instagram-button__arrow { font-size: 30px; }

.site-footer {
  padding: clamp(70px, 9vw, 120px) var(--pad) 34px;
  background: var(--ink);
  color: var(--paper);
}
.site-footer__brand { max-width: var(--max); margin: 0 auto clamp(60px, 8vw, 110px); }
.site-footer__brand img { width: clamp(130px, 16vw, 220px); }
.site-footer__grid {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 28px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 50px;
  border-top: 1px solid var(--line-light);
}
.site-footer__grid > div { display: flex; flex-direction: column; gap: 9px; }
.footer-label { margin-bottom: 12px; color: var(--acid); font-family: var(--mono); font-size: 8px; font-weight: 700; letter-spacing: .12em; }
.site-footer__grid a { width: max-content; max-width: 100%; font-size: clamp(16px, 1.65vw, 24px); }
.site-footer__grid a:hover { color: var(--acid); }
.site-footer__bottom {
  max-width: var(--max);
  margin: 70px auto 0;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid var(--line-light);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.mobile-book { display: none; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2100;
  padding: 70px;
  display: grid;
  place-items: center;
  background: rgba(5, 5, 5, .93);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { max-width: min(1200px, 92vw); max-height: 84vh; object-fit: contain; }
.lightbox__close {
  position: absolute;
  top: 22px;
  right: 28px;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line-light);
  background: var(--acid);
  color: var(--ink);
  font-size: 28px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .75s ease, transform .75s cubic-bezier(.2, .8, .2, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1180px) {
  .desktop-nav { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-book { display: none; }
  .menu-toggle { display: block; }
  .event-card { grid-template-columns: 1fr; }
  .event-card__visual { min-height: 720px; }
  .event-follow { grid-template-columns: .7fr 1.2fr auto; }
  .experience-grid { grid-template-columns: 1.2fr 1fr; grid-template-rows: 520px 360px 420px; }
  .experience-card--wide { grid-column: 1; grid-row: 1 / 3; }
  .experience-card--portrait { grid-column: 2; grid-row: 1; }
  .experience-note { grid-column: 2; grid-row: 2; }
  .experience-card--compact { grid-column: 1; grid-row: 3; }
  .experience-card--square { grid-column: 2; grid-row: 3; }
  .artist-experience { grid-template-columns: 250px minmax(0, 1fr); }
  .artist-stage__name { font-size: clamp(72px, 10vw, 130px); }
  .artist-stage.theme-maximarcus .artist-stage__name { font-size: clamp(60px, 7.5vw, 100px); }
  .artist-stage.theme-rodriguez .artist-stage__name { font-size: clamp(54px, 7vw, 92px); }
}

@media (max-width: 860px) {
  .brand__word { display: none; }
  .hero__side-label,
  .hero__temperature { display: none; }
  .hero__butterfly { right: -50px; top: 18%; width: 330px; }
  .hero__title-main { font-size: clamp(47px, 12.4vw, 96px); }
  .hero__bottom { flex-direction: column; align-items: flex-start; }
  .hero__actions { width: 100%; justify-content: space-between; }
  .event-follow { grid-template-columns: 1fr; align-items: start; }
  .manifesto__grid { grid-template-columns: 1fr; gap: 20px; }
  .artist-experience { display: flex; flex-direction: column; min-height: 0; }
  .artist-index {
    display: grid;
    grid-template-columns: repeat(5, minmax(170px, 1fr));
    overflow-x: auto;
    scrollbar-width: none;
  }
  .artist-index::-webkit-scrollbar { display: none; }
  .artist-index__item { min-height: 108px; border-right: 1px solid var(--line-dark); border-bottom: 0; }
  .artist-stage { min-height: 560px; }
  .gallery-grid { height: 900px; }
}

@media (max-width: 680px) {
  :root { --pad: 18px; }
  .site-header { height: 74px; }
  .site-header.is-scrolled { height: 64px; }
  .brand__logo { width: 46px; height: 46px; }
  .hero { min-height: 100svh; padding-top: 100px; padding-bottom: 38px; }
  .hero__topline { top: 88px; font-size: 8px; }
  .hero__topline span:first-child { display: none; }
  .hero__topline { justify-content: flex-end; }
  .hero__image { background-position: 53% center; }
  .hero__grid { background-size: 42px 42px; }
  .hero__title-la { font-size: clamp(78px, 29vw, 120px); }
  .hero__title-main { font-size: clamp(34px, 11vw, 51px); }
  .hero__butterfly { top: 22%; right: -72px; width: 300px; opacity: .12; }
  .hero__bottom { margin-top: 28px; gap: 25px; }
  .hero__actions { flex-direction: column; align-items: stretch; gap: 18px; }
  .hero__actions .button { width: 100%; }
  .marquee__track { padding: 13px 0; }
  .section { padding-top: 86px; padding-bottom: 86px; }
  .section-kicker { margin-bottom: 42px; gap: 20px; font-size: 8px; }
  .section-kicker span:last-child { text-align: right; }
  .section-heading { margin-bottom: 42px; }
  .section-heading--row { flex-direction: column; align-items: flex-start; gap: 28px; }
  .section-heading h2 { font-size: clamp(45px, 14vw, 72px); }
  .event-card__visual { min-height: 560px; }
  .event-card__poster { padding: 24px 20px; }
  .event-card__poster-top { font-size: 8px; }
  .event-card__poster-top span:last-child { text-align: right; }
  .event-card__day { font-size: clamp(124px, 45vw, 180px); }
  .event-card__month { font-size: clamp(27px, 9.5vw, 40px); }
  .event-card__logo { width: 95px; }
  .event-card__guest { font-size: 7px; }
  .event-card__info { padding: 30px 20px 38px; }
  .event-card__venue { margin-top: 40px; }
  .event-card__venue h3 { font-size: clamp(44px, 13vw, 58px); }
  .countdown { grid-template-columns: repeat(2, 1fr); }
  .countdown div:nth-child(2) { border-right: 0; }
  .countdown div:nth-child(-n+2) { border-bottom: 1px solid var(--line-light); }
  .event-card__actions { flex-direction: column; }
  .event-card__actions .button { width: 100%; }
  .experience-grid { display: flex; flex-direction: column; }
  .experience-card { height: 400px; }
  .experience-card--wide { height: 500px; }
  .experience-note { min-height: 360px; }
  .manifesto__statement { font-size: clamp(30px, 10vw, 48px); }
  .artist-experience { gap: 12px; border: 0; background: transparent; }
  .artist-index { grid-template-columns: 1fr; overflow: visible; }
  .artist-index__item {
    min-height: 72px;
    padding: 14px 16px;
    grid-template-columns: 30px 1fr;
    border: 1px solid var(--line-dark);
    border-bottom: 0;
  }
  .artist-index__item:last-child { border-bottom: 1px solid var(--line-dark); }
  .artist-index__item strong { white-space: normal; font-size: 21px; }
  .artist-index__item small { font-size: 7px; }
  .artist-index__item i { display: none; }
  .artist-stage {
    min-height: 430px;
    padding: 22px 18px;
    border: 1px solid var(--line-dark);
  }
  .artist-stage::before { width: 300px; right: -46%; top: -16%; opacity: .36; }
  .artist-stage::after { bottom: 24%; height: 50px; }
  .artist-stage__orbit { width: 190px; right: -52px; top: 45%; opacity: .1; }
  .artist-stage__topline,
  .artist-stage__bottom { gap: 16px; font-size: 8px; }
  .artist-stage__name { font-size: clamp(56px, 17vw, 82px); line-height: .78; letter-spacing: -.075em; }
  .artist-stage.theme-maximarcus .artist-stage__name { font-size: clamp(42px, 12.5vw, 58px); }
  .artist-stage.theme-nyo .artist-stage__name { font-size: clamp(86px, 28vw, 126px); }
  .artist-stage.theme-rodriguez .artist-stage__name { font-size: clamp(34px, 10.5vw, 48px); }
  .artist-stage__bottom { align-items: flex-end; }
  .artist-stage__bottom strong { font-size: 18px; }
  .artist-more { margin-top: 18px; }
  .gallery-grid { height: auto; grid-template-columns: 1fr 1fr; grid-template-rows: none; gap: 7px; }
  .gallery-item { grid-column: auto !important; grid-row: auto !important; height: 250px; }
  .gallery-item--a,
  .gallery-item--e { grid-column: 1 / 3 !important; height: 330px; }
  .social-cta { min-height: 760px; }
  .social-cta h2 {
    width: 100%;
    font-size: clamp(42px, 13vw, 58px);
    line-height: .84;
    letter-spacing: -.045em;
  }
  .social-cta h2 span {
    display: block;
    width: max-content;
    max-width: 100%;
    margin: 6px auto;
    padding-inline: .06em;
    font-size: .82em;
    overflow-wrap: anywhere;
  }
  .instagram-button { min-height: 82px; padding: 0 16px; gap: 12px; }
  .instagram-button__icon { font-size: 27px; }
  .instagram-button > span:nth-child(2) { font-size: clamp(15px, 5vw, 23px); overflow-wrap: anywhere; }
  .site-footer { padding-bottom: 108px; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 34px; }
  .site-footer__bottom { flex-direction: column; gap: 12px; }
  .mobile-book {
    position: fixed;
    z-index: 1400;
    left: 10px;
    right: 10px;
    bottom: 10px;
    min-height: 60px;
    padding: 0 17px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--acid);
    color: var(--ink);
    border: 1px solid var(--ink);
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: .06em;
    box-shadow: 0 12px 34px rgba(0, 0, 0, .4);
  }
  .mobile-book strong { font-size: 10px; }
  .lightbox { padding: 60px 12px 90px; }
}

@media (max-width: 380px) {
  .hero__title-main { font-size: 32px; }
  .event-card__poster-top { flex-direction: column; gap: 6px; }
  .event-card__poster-top span:last-child { text-align: left; }
  .event-card__day { font-size: 120px; }
  .artist-stage__name { font-size: 52px; }
  .artist-stage.theme-maximarcus .artist-stage__name { font-size: 38px; }
  .artist-stage.theme-rodriguez .artist-stage__name { font-size: 32px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 680px) {
  .artist-index { grid-template-columns: 1fr; }
  .artist-index__item { grid-template-columns: 26px 1fr; }
  .artist-index__item strong { white-space: nowrap; font-size: 20px; }
  .artist-index__item i { display: none; }
}

/* --------------------------------------------------------------------------
   ProcessWire adaptation
   -------------------------------------------------------------------------- */
.cursor, .cursor-dot { display: none !important; }
body { cursor: default !important; }
a, button, [role="button"] { cursor: pointer !important; }
input, textarea, select { cursor: text !important; }

.inner-page { background: var(--ink); color: var(--paper); }
.inner-main { min-height: 70vh; padding-top: 92px; }
.inner-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(90px, 12vw, 180px) var(--pad) clamp(70px, 8vw, 120px);
  border-bottom: 1px solid var(--line-light);
}
.inner-hero--compact { padding-bottom: 70px; }
.inner-hero h1 {
  max-width: 1100px;
  margin: 16px 0 0;
  font-family: var(--display);
  font-size: clamp(56px, 9.5vw, 150px);
  line-height: .84;
  letter-spacing: -.075em;
  text-transform: uppercase;
}
.inner-hero h1 em { color: var(--acid); font-family: var(--script); font-style: normal; font-size: .72em; }
.inner-hero__copy { max-width: 540px; margin: 36px 0 0 auto; color: var(--muted); font-size: clamp(18px, 2vw, 25px); }

.event-archive, .artist-archive, .content-page { background: var(--paper); color: var(--ink); }
.event-archive__grid { max-width: var(--max); margin: 0 auto; display: grid; gap: 2px; background: var(--ink); }
.archive-event-card { display: grid; grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr); min-height: 500px; background: var(--paper); }
.archive-event-card--featured { min-height: 680px; }
.archive-event-card__image { position: relative; min-height: 100%; overflow: hidden; background: var(--ink-soft); }
.archive-event-card__image img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.08) contrast(1.08); transition: transform .7s cubic-bezier(.2,.8,.2,1); }
.archive-event-card:hover .archive-event-card__image img { transform: scale(1.035); }
.archive-event-card__image > span { position: absolute; top: 24px; left: 24px; padding: 10px 14px; background: var(--acid); color: var(--ink); font: 700 11px/1 var(--mono); letter-spacing: .08em; }
.archive-event-card.is-past .archive-event-card__image img { filter: grayscale(1) brightness(.65); }
.archive-event-card__content { padding: clamp(34px, 5vw, 80px); display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.archive-event-card__content h2 { margin: 12px 0 22px; font-family: var(--display); font-size: clamp(38px, 5vw, 82px); line-height: .92; letter-spacing: -.055em; text-transform: uppercase; }
.archive-event-card__content > p:not(.eyebrow) { max-width: 650px; margin: 0 0 30px; font-size: 18px; line-height: 1.6; color: #4c4943; }
.archive-event-card__meta { display: flex; flex-wrap: wrap; gap: 10px 20px; margin-bottom: 22px; font: 700 10px/1.3 var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.archive-event-card__meta span { padding-bottom: 5px; border-bottom: 1px solid var(--ink); }

.event-detail-hero { position: relative; min-height: 78vh; display: flex; align-items: flex-end; overflow: hidden; isolation: isolate; }
.event-detail-hero__media { position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center; filter: grayscale(.18) contrast(1.16) brightness(.62); }
.event-detail-hero::after { content:""; position:absolute; inset:0; z-index:-1; background:linear-gradient(180deg,rgba(5,5,5,.3),rgba(5,5,5,.95)),linear-gradient(100deg,rgba(249,255,1,.22),transparent 45%); }
.event-detail-hero__content { width: 100%; max-width: var(--max); margin: 0 auto; padding: 170px var(--pad) 70px; }
.event-detail-hero h1 { max-width: 1050px; margin: 15px 0 28px; font-family: var(--display); font-size: clamp(58px, 9vw, 150px); line-height: .84; letter-spacing: -.07em; text-transform: uppercase; }
.event-detail-hero__meta { display: flex; flex-wrap: wrap; gap: 12px; }
.event-detail-hero__meta span { padding: 11px 14px; border: 1px solid rgba(255,255,255,.28); font: 700 10px/1 var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.event-detail { display: grid; grid-template-columns: minmax(320px, .8fr) minmax(0, 1.2fr); max-width: var(--max); margin: 0 auto; }
.event-detail__poster { min-height: 700px; background: var(--ink-soft); }
.event-detail__poster img { width: 100%; height: 100%; object-fit: cover; }
.event-detail__content { padding: clamp(46px, 6vw, 100px); background: var(--paper); color: var(--ink); }
.event-detail__content h2 { margin: 14px 0 44px; font-family: var(--display); font-size: clamp(42px, 5.6vw, 88px); line-height: .9; letter-spacing: -.055em; text-transform: uppercase; }
.event-detail__content h2 em { font-family: var(--script); font-style: normal; color: #777d00; font-size: .75em; }
.event-detail__facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; margin-bottom: 46px; background: var(--ink); }
.event-detail__facts > div { min-height: 130px; padding: 24px; display: flex; flex-direction: column; gap: 8px; background: var(--paper); }
.event-detail__facts span, .event-detail__lineup > span { font: 700 10px/1 var(--mono); letter-spacing: .1em; text-transform: uppercase; color: #6b675f; }
.event-detail__facts strong { font-size: 22px; }
.event-detail__facts small { color: #6b675f; }
.event-detail__description { max-width: 720px; font-size: 18px; line-height: 1.7; }
.event-detail__lineup { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin: 36px 0; }
.event-detail__lineup a { padding: 9px 13px; background: var(--ink); color: var(--paper); font: 700 11px/1 var(--mono); text-transform: uppercase; }
.event-detail__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.event-detail__actions .button--outline { border-color: var(--ink); color: var(--ink); }
.event-detail__note { margin-top: 24px; font: 700 11px/1.5 var(--mono); text-transform: uppercase; }

.guestlist-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(40px, 7vw, 120px); background: var(--ink); }
.guestlist-section__intro h2 { margin: 14px 0 24px; font-family: var(--display); font-size: clamp(42px, 5.4vw, 86px); line-height: .9; letter-spacing: -.055em; text-transform: uppercase; }
.guestlist-section__intro h2 em { color: var(--acid); font-family: var(--script); font-style: normal; font-size: .72em; }
.guestlist-section__intro > p:last-child { max-width: 520px; color: var(--muted); line-height: 1.65; }
.guestlist-form { align-self: start; padding: clamp(30px, 4vw, 54px); background: var(--paper); color: var(--ink); }
.guestlist-form__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.guestlist-form label { display: grid; gap: 8px; }
.guestlist-form label > span { font: 700 10px/1 var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.guestlist-form input[type="text"], .guestlist-form input[type="email"], .guestlist-form input[type="tel"] { width: 100%; padding: 15px 0; border: 0; border-bottom: 1px solid var(--ink); border-radius: 0; background: transparent; color: var(--ink); outline: 0; }
.guestlist-form input:focus { border-bottom-width: 3px; }
.guestlist-form__checkbox { display: flex !important; grid-template-columns: auto 1fr; align-items: flex-start; gap: 11px !important; margin: 28px 0; }
.guestlist-form__checkbox input { margin-top: 2px; accent-color: var(--ink); }
.guestlist-form__checkbox span { font-family: var(--body) !important; font-size: 13px !important; font-weight: 500 !important; line-height: 1.5 !important; text-transform: none !important; letter-spacing: 0 !important; }
.guestlist-form__honeypot { position: absolute; left: -9999px; }
.form-message { margin-bottom: 24px; padding: 16px; border: 1px solid var(--ink); line-height: 1.5; }
.form-message--success { background: var(--acid); }
.form-message--error { background: #ffd8d8; }
.form-message ul { margin: 8px 0 0; padding-left: 20px; }

.artist-archive__grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2px; background: var(--ink); }
.artist-card { background: var(--paper); color: var(--ink); }
.artist-card__visual { min-height: 480px; display: grid; place-items: center; overflow: hidden; background: var(--ink); color: var(--paper); }
.artist-card__visual img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.12) contrast(1.1); }
.artist-card__visual > span { padding: 30px; font-family: var(--display); font-size: clamp(54px, 8vw, 120px); line-height: .8; letter-spacing: -.07em; text-align: center; word-break: break-word; }
.artist-card__visual.theme-maximarcus { background: var(--acid); color: var(--ink); }
.artist-card__visual.theme-rodriguez { background: var(--paper); color: var(--ink); border: 1px solid var(--ink); }
.artist-card__content { padding: 34px; }
.artist-card__content > span { font: 700 10px/1 var(--mono); }
.artist-card__content h2 { margin: 12px 0; font: 400 clamp(38px, 5vw, 72px)/.9 var(--display); letter-spacing: -.055em; text-transform: uppercase; }
.artist-card__content p { color: #5d5952; }
.artist-card__content .text-link { color: var(--ink); }

.artist-detail { min-height: calc(100vh - 92px); display: grid; grid-template-columns: 1fr 1fr; }
.artist-detail__visual { min-height: 720px; display: grid; place-items: center; overflow: hidden; background: var(--acid); color: var(--ink); }
.artist-detail__visual img { width: 100%; height: 100%; object-fit: cover; }
.artist-detail__visual strong { padding: var(--pad); font: 400 clamp(70px, 11vw, 170px)/.78 var(--display); letter-spacing: -.075em; text-align: center; word-break: break-word; }
.artist-detail__content { padding: clamp(70px, 9vw, 150px) var(--pad); display: flex; flex-direction: column; justify-content: center; }
.artist-detail__content h1 { margin: 14px 0 20px; font: 400 clamp(58px, 8vw, 132px)/.83 var(--display); letter-spacing: -.07em; text-transform: uppercase; }
.artist-detail__styles { color: var(--acid); font: 700 11px/1.5 var(--mono); text-transform: uppercase; }
.artist-detail__bio { max-width: 620px; margin-top: 34px; color: var(--muted); font-size: 18px; line-height: 1.7; }
.artist-detail__links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }

.content-page__body { max-width: 900px; margin: 0 auto; font-size: 18px; line-height: 1.8; }
.content-page__body h2, .content-page__body h3 { font-family: var(--display); text-transform: uppercase; }
.empty-state { max-width: var(--max); margin: 0 auto; padding: 100px var(--pad); font: 400 clamp(34px, 5vw, 70px)/1 var(--display); text-transform: uppercase; }

@media (max-width: 900px) {
  .archive-event-card, .event-detail, .guestlist-section, .artist-detail { grid-template-columns: 1fr; }
  .archive-event-card__image { min-height: 430px; }
  .event-detail__poster { min-height: 520px; }
  .guestlist-section { gap: 40px; }
  .artist-archive__grid { grid-template-columns: 1fr; }
  .artist-detail__visual { min-height: 520px; }
}
@media (max-width: 600px) {
  .inner-main { padding-top: 74px; }
  .inner-hero { padding-top: 80px; }
  .inner-hero h1 { font-size: clamp(46px, 16vw, 74px); }
  .archive-event-card__image { min-height: 360px; }
  .archive-event-card__content { padding: 30px 22px 42px; }
  .event-detail-hero { min-height: 70vh; }
  .event-detail-hero__content { padding: 130px 20px 44px; }
  .event-detail-hero h1 { font-size: clamp(46px, 15vw, 76px); }
  .event-detail__content { padding: 44px 22px; }
  .event-detail__facts, .guestlist-form__grid { grid-template-columns: 1fr; }
  .guestlist-form { padding: 26px 20px; }
  .artist-card__visual { min-height: 360px; }
  .artist-detail__content { padding: 60px 22px; }
}
