/*
Theme Name: La Temperatura
Theme URI: https://latemperatura.ch/
Author: Nicolas Simonet
Description: Thème WordPress sur mesure pour La Temperatura, dérivé du prototype Next.js.
Version: 1.3.0
Requires at least: 6.4
Tested up to: 6.8
Requires PHP: 8.1
Text Domain: la-temperatura
*/
:root {
  --ink: #050505;
  --ink-soft: #111111;
  --paper: #f3efe5;
  --acid: #f9ff01;
  --acid-soft: #e8f000;
  --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); } }

/* Native system cursor. The previous decorative cursor was intentionally removed. */
html, body, a, button, input, textarea, select, label, [role="button"] {
  cursor: auto;
}
a, button, label, [role="button"], input[type="submit"], input[type="button"] {
  cursor: pointer;
}

.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("assets/images/la-temperatura-fallback.svg");
  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("assets/images/la-temperatura-fallback.svg") 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;
}

.subpage {
  min-height: 100svh;
  padding-top: 86px;
  background: var(--ink);
}

.subpage .section-heading h1,
.event-detail h1 {
  max-width: 980px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(58px, 10vw, 150px);
  line-height: .82;
  letter-spacing: 0;
  text-transform: uppercase;
}

.event-list {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.event-list__item {
  min-height: 96px;
  padding: 22px clamp(18px, 3vw, 36px);
  display: grid;
  grid-template-columns: minmax(170px, .6fr) minmax(0, 1.4fr) auto;
  align-items: center;
  gap: 24px;
  border: 1px solid var(--line-light);
  background: rgba(243, 239, 229, .04);
  transition: transform .25s, background .25s, border-color .25s;
}

.event-list__item:hover,
.event-list__item:focus-visible {
  transform: translateX(8px);
  border-color: var(--acid);
  background: rgba(249, 255, 1, .08);
}

.event-list__item span,
.event-list__item em {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.event-list__item strong {
  font-family: var(--display);
  font-size: clamp(24px, 4vw, 54px);
  line-height: .9;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.empty-state {
  max-width: var(--max);
  margin: 0 auto;
  padding: 34px;
  border: 1px dashed var(--line-light);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
}

.event-detail {
  padding-top: 86px;
  background: var(--ink);
}

.event-detail__hero {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 460px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: end;
}

.event-detail__hero img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid var(--line-light);
  background: var(--acid);
}

.event-detail__hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 24px);
  line-height: 1.5;
}

.event-detail__actions,
.admin-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.event-detail__body {
  max-width: var(--max);
  margin: clamp(54px, 7vw, 100px) auto 0;
  display: grid;
  gap: 28px;
}

.event-detail__body section {
  padding: clamp(22px, 3vw, 34px);
  border-top: 1px solid var(--line-light);
}

.event-detail__body h2 {
  margin: 0 0 18px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--acid);
}

.event-detail__body p {
  max-width: 850px;
  margin: 0;
  color: var(--paper);
  line-height: 1.75;
}

.lineup {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.lineup span {
  padding: 10px 13px;
  border: 1px solid var(--line-light);
  background: rgba(243, 239, 229, .06);
  font-family: var(--display);
  font-size: clamp(20px, 3vw, 38px);
  line-height: .9;
  text-transform: uppercase;
}

.legal-page {
  max-width: 900px;
  margin-inline: auto;
}

.legal-page h1 {
  margin: 0 0 28px;
  font-family: var(--display);
  font-size: clamp(46px, 8vw, 104px);
  line-height: .86;
  text-transform: uppercase;
}

.legal-page p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.legal-page a:not(.button) {
  color: var(--acid);
  text-decoration: underline;
}

.button--ghost {
  background: transparent;
  color: var(--paper);
  border-color: var(--line-light);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: var(--acid);
  color: var(--acid);
}

.admin-login {
  min-height: 100svh;
  padding: 28px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(120deg, rgba(249, 255, 1, .12), transparent 42%),
    var(--ink);
}

.admin-login__card {
  width: min(460px, 100%);
  padding: clamp(26px, 5vw, 46px);
  border: 1px solid var(--line-light);
  background: rgba(17, 17, 17, .94);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .45);
}

.admin-login__card img {
  width: 92px;
  margin-bottom: 28px;
}

.admin-login__card h1,
.admin-page-head h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 78px);
  line-height: .88;
  text-transform: uppercase;
}

.admin-shell {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  background: #080808;
  color: var(--paper);
}

.admin-sidebar {
  position: sticky;
  top: 0;
  min-height: 100svh;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  border-right: 1px solid var(--line-light);
  background: #050505;
}

.admin-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.admin-brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.admin-nav {
  display: grid;
  gap: 8px;
}

.admin-nav a,
.admin-logout,
.admin-row__actions a,
.admin-row__actions button,
.admin-row__actions select,
.admin-danger button {
  min-height: 42px;
  padding: 11px 12px;
  border: 1px solid var(--line-light);
  background: rgba(243, 239, 229, .035);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.admin-nav a:hover,
.admin-nav a:focus-visible,
.admin-row__actions a:hover,
.admin-row__actions button:hover,
.admin-danger button:hover {
  border-color: var(--acid);
  color: var(--acid);
}

.admin-logout {
  width: 100%;
  margin-top: auto;
  text-align: left;
}

.admin-content {
  min-width: 0;
  padding: clamp(20px, 3.8vw, 58px);
}

.admin-topbar {
  margin-bottom: 30px;
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

.admin-topbar strong {
  color: var(--acid);
}

.admin-page-head {
  margin-bottom: 34px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
}

.admin-stats,
.admin-grid-two {
  display: grid;
  gap: 16px;
}

.admin-stats {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 18px;
}

.admin-stats article,
.admin-card,
.admin-row,
.admin-danger {
  border: 1px solid var(--line-light);
  background: rgba(243, 239, 229, .045);
}

.admin-stats article {
  padding: 22px;
}

.admin-stats span,
.admin-card h2,
.admin-danger h2 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}

.admin-stats strong {
  display: block;
  margin-top: 12px;
  font-family: var(--display);
  font-size: 46px;
  line-height: .9;
}

.admin-grid-two {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.admin-card,
.admin-danger {
  padding: clamp(20px, 3vw, 32px);
}

.admin-card h2,
.admin-danger h2 {
  margin: 0 0 18px;
  color: var(--acid);
}

.admin-big {
  display: block;
  font-family: var(--display);
  font-size: clamp(30px, 4vw, 54px);
  line-height: .9;
  text-transform: uppercase;
}

.admin-list,
.admin-stack {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.admin-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-light);
}

.admin-list small,
.admin-list span {
  color: var(--muted);
}

.admin-table {
  display: grid;
  gap: 12px;
}

.admin-row {
  padding: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(260px, .85fr);
  align-items: center;
  gap: 18px;
}

.admin-row strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 44px);
  line-height: .9;
  text-transform: uppercase;
}

.admin-row span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

.admin-row mark {
  padding: 9px 11px;
  background: var(--acid);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.admin-row__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.admin-row__actions form {
  display: flex;
  gap: 8px;
}

.admin-form {
  display: grid;
  gap: 18px;
}

.admin-form label,
.admin-fieldset {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.admin-form input,
.admin-form textarea,
.admin-form select,
.admin-danger input {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line-light);
  border-radius: 0;
  background: rgba(5, 5, 5, .72);
  color: var(--paper);
}

.admin-form textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.5;
}

.admin-form input:focus,
.admin-form textarea:focus,
.admin-form select:focus,
.admin-danger input:focus {
  outline: 2px solid var(--acid);
  outline-offset: 2px;
}

.admin-form__grid,
.admin-check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.admin-checkbox {
  min-height: 48px;
  display: flex !important;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line-light);
}

.admin-checkbox input {
  width: 18px;
  min-height: 18px;
  padding: 0;
}

.admin-fieldset {
  padding: 18px;
  border: 1px solid var(--line-light);
}

.admin-fieldset legend {
  padding-inline: 8px;
  color: var(--acid);
}

.admin-details {
  border: 1px solid var(--line-light);
}

.admin-details summary {
  min-height: 56px;
  padding: 14px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
}

.admin-details .admin-card {
  border: 0;
  border-top: 1px solid var(--line-light);
  background: transparent;
}

.admin-danger {
  margin-top: 26px;
  border-color: rgba(255, 43, 43, .45);
}

.admin-error {
  padding: 12px;
  border: 1px solid rgba(255, 43, 43, .55);
  background: rgba(255, 43, 43, .1);
  color: #ffbdbd;
}

.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; }
  .event-detail__hero,
  .admin-grid-two,
  .admin-stats {
    grid-template-columns: 1fr;
  }
  .admin-shell {
    grid-template-columns: 1fr;
  }
  .admin-sidebar {
    position: static;
    min-height: auto;
  }
  .admin-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .admin-row {
    grid-template-columns: 1fr;
  }
  .admin-row__actions {
    justify-content: flex-start;
  }
}

@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%; }
  .subpage,
  .event-detail {
    padding-top: 70px;
  }
  .subpage .section-heading h1,
  .event-detail h1 {
    font-size: clamp(42px, 14vw, 68px);
  }
  .event-list__item {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 9px;
  }
  .event-detail__body section,
  .event-detail__hero {
    padding-inline: 0;
  }
  .admin-login {
    padding: 12px;
  }
  .admin-content,
  .admin-sidebar {
    padding: 18px;
  }
  .admin-page-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .admin-page-head .button,
  .admin-actions .button,
  .admin-actions form,
  .admin-row__actions,
  .admin-row__actions form,
  .admin-row__actions a,
  .admin-row__actions button,
  .admin-row__actions select {
    width: 100%;
  }
  .admin-nav {
    grid-template-columns: 1fr 1fr;
  }
  .admin-form__grid,
  .admin-check-grid {
    grid-template-columns: 1fr;
  }
  .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; }
}

/* WordPress integration */
.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .site-header { top: 46px; } }
.screen-reader-text {
  border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%);
  height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute;
  width: 1px; word-wrap: normal !important;
}
.lt-notice {
  margin: 22px 0; padding: 15px 18px; border: 1px solid currentColor;
  font-family: var(--mono); font-size: 12px; letter-spacing: .04em;
}
.lt-notice--success { background: var(--acid); color: var(--ink); }
.lt-notice--error { background: #381414; color: #ffd4d4; }
.lt-guestlist {
  margin-top: 44px; padding: clamp(24px, 4vw, 48px); border: 1px solid var(--line-light);
  background: rgba(255,255,255,.025);
}
.lt-guestlist h2 { margin-top: 0; }
.lt-guestlist__grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.lt-guestlist label { display: grid; gap: 8px; font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: .07em; }
.lt-guestlist input[type="text"],
.lt-guestlist input[type="email"],
.lt-guestlist input[type="tel"] {
  width: 100%; border: 1px solid var(--line-light); background: #0c0c0c; color: var(--paper);
  padding: 14px 16px; outline: none;
}
.lt-guestlist input:focus { border-color: var(--acid); box-shadow: 0 0 0 2px rgba(249,255,1,.12); }
.lt-guestlist__check { display: flex !important; grid-column: 1/-1; align-items: flex-start; gap: 10px !important; text-transform: none !important; }
.lt-guestlist__check input { margin-top: 3px; }
.lt-guestlist__hp { position: absolute !important; left: -9999px !important; }
.lt-guestlist .button { margin-top: 18px; border: 0; }
.lt-page-content { max-width: 820px; font-size: clamp(17px,1.5vw,21px); line-height: 1.7; }
.lt-page-content a { color: var(--acid); text-decoration: underline; }
.lt-admin-help { max-width: 900px; }
.artist-stage__orbit img { object-fit: cover; }
@media (max-width: 700px) {
  .lt-guestlist__grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   v1.3 · Contrast hardening + editorial event archive
   -------------------------------------------------------------------------- */

/* Elementor and global-theme color settings must never erase the artist area. */
.crew,
.elementor .crew,
.elementor-widget-html .crew {
  background: var(--paper) !important;
  color: var(--ink) !important;
}
.crew .section-kicker,
.crew .section-heading,
.crew .section-heading h1,
.crew .section-heading h2,
.crew .section-heading h3,
.crew .artist-more,
.elementor .crew .section-kicker,
.elementor .crew .section-heading,
.elementor .crew .section-heading h1,
.elementor .crew .section-heading h2,
.elementor .crew .section-heading h3,
.elementor .crew .artist-more {
  color: var(--ink) !important;
}
.crew .section-heading p,
.crew .eyebrow,
.elementor .crew .section-heading p,
.elementor .crew .eyebrow {
  color: #615c54 !important;
}
.crew .section-heading em,
.elementor .crew .section-heading em {
  color: var(--ink) !important;
}

.artist-experience,
.elementor .artist-experience {
  background: #090909 !important;
  border-color: rgba(5, 5, 5, .24) !important;
  box-shadow: 0 24px 70px rgba(5, 5, 5, .16);
}
.artist-index,
.elementor .artist-index {
  background: var(--paper) !important;
}
.artist-index__item,
.elementor .artist-index__item,
.elementor button.artist-index__item {
  background: transparent !important;
  color: var(--ink) !important;
  border-color: rgba(5, 5, 5, .2) !important;
}
.artist-index__item::before,
.elementor .artist-index__item::before {
  background: var(--acid) !important;
}
.artist-index__item span,
.artist-index__item strong,
.artist-index__item small,
.artist-index__item i,
.elementor .artist-index__item span,
.elementor .artist-index__item strong,
.elementor .artist-index__item small,
.elementor .artist-index__item i {
  color: var(--ink) !important;
}
.artist-index__item small,
.elementor .artist-index__item small {
  opacity: .62 !important;
}

/* One consistent stage palette: no artist can accidentally become black on black. */
.artist-stage,
.artist-stage.theme-kemuel,
.artist-stage.theme-maximarcus,
.artist-stage.theme-nyo,
.artist-stage.theme-rodriguez,
.elementor .artist-stage,
.elementor .artist-stage.theme-kemuel,
.elementor .artist-stage.theme-maximarcus,
.elementor .artist-stage.theme-nyo,
.elementor .artist-stage.theme-rodriguez {
  background: #090909 !important;
  color: var(--paper) !important;
}
.artist-stage__grid,
.artist-stage.theme-maximarcus .artist-stage__grid,
.artist-stage.theme-rodriguez .artist-stage__grid {
  background-image:
    linear-gradient(rgba(243, 239, 229, .22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(243, 239, 229, .22) 1px, transparent 1px) !important;
}
.artist-stage::before,
.artist-stage.theme-kemuel::before,
.artist-stage.theme-maximarcus::before,
.artist-stage.theme-nyo::before,
.artist-stage.theme-rodriguez::before {
  border-color: var(--acid) !important;
}
.artist-stage::after,
.artist-stage.theme-kemuel::after,
.artist-stage.theme-maximarcus::after,
.artist-stage.theme-nyo::after,
.artist-stage.theme-rodriguez::after {
  background: var(--acid) !important;
}
.artist-stage__topline,
.artist-stage__bottom,
.artist-stage__bottom strong,
.artist-stage__name,
.artist-stage__name span:first-child,
.elementor .artist-stage__topline,
.elementor .artist-stage__bottom,
.elementor .artist-stage__bottom strong,
.elementor .artist-stage__name,
.elementor .artist-stage__name span:first-child {
  color: var(--paper) !important;
  -webkit-text-fill-color: currentColor !important;
}
.artist-stage__name span:last-child,
.artist-stage.theme-kemuel .artist-stage__name span:last-child,
.artist-stage.theme-maximarcus .artist-stage__name span:last-child,
.artist-stage.theme-rodriguez .artist-stage__name span:last-child,
.elementor .artist-stage__name span:last-child {
  display: block;
  color: var(--acid) !important;
  -webkit-text-fill-color: var(--acid) !important;
  -webkit-text-stroke: 0 !important;
}
.artist-stage.theme-nyo .artist-stage__name span:last-child { display: none; }
.artist-stage__label,
.artist-stage.theme-maximarcus .artist-stage__label,
.artist-stage.theme-rodriguez .artist-stage__label,
.elementor .artist-stage__label {
  color: var(--acid) !important;
}
.artist-stage__orbit img,
.artist-stage.theme-maximarcus .artist-stage__orbit img,
.artist-stage.theme-rodriguez .artist-stage__orbit img {
  filter: none !important;
}

/* Events archive: large visual cards rather than a technical-looking list. */
.events-page {
  background:
    radial-gradient(circle at 82% 4%, rgba(249, 255, 1, .08), transparent 25%),
    var(--ink);
}
.section-heading--events {
  max-width: var(--max);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(240px, .55fr);
  align-items: end;
  gap: clamp(28px, 5vw, 90px);
}
.section-heading--events h1 em {
  position: relative;
  display: inline-block;
  color: var(--acid);
  font-style: normal;
}
.section-heading--events > p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: clamp(15px, 1.45vw, 20px);
  line-height: 1.65;
}
.events-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 34px);
}
.event-tile {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--line-light);
  background: #0d0d0d;
  color: var(--paper);
  overflow: hidden;
  transition: transform .35s cubic-bezier(.2, .8, .2, 1), border-color .35s, box-shadow .35s;
}
.event-tile:hover,
.event-tile:focus-visible {
  transform: translateY(-7px);
  border-color: var(--acid);
  box-shadow: 0 28px 72px rgba(0, 0, 0, .42);
}
.event-tile--featured {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.22fr) minmax(320px, .78fr);
  grid-template-rows: none;
  min-height: clamp(520px, 62vw, 720px);
}
.event-tile__visual {
  position: relative;
  min-height: clamp(330px, 42vw, 540px);
  overflow: hidden;
  background: #151515;
}
.event-tile--featured .event-tile__visual { min-height: 100%; }
.event-tile__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2, .8, .2, 1), filter .5s;
}
.event-tile:hover .event-tile__visual img,
.event-tile:focus-visible .event-tile__visual img {
  transform: scale(1.035);
  filter: saturate(1.08) contrast(1.04);
}
.event-tile__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 5, .08), rgba(5, 5, 5, .08) 44%, rgba(5, 5, 5, .72));
  pointer-events: none;
}
.event-tile__status {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 9px 11px;
  border: 1px solid rgba(5, 5, 5, .18);
  background: var(--acid);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.event-tile__date {
  position: absolute;
  right: 20px;
  bottom: 20px;
  min-width: 86px;
  padding: 13px 15px 12px;
  display: grid;
  place-items: center;
  background: var(--paper);
  color: var(--ink);
  text-transform: uppercase;
}
.event-tile__date strong {
  font-family: var(--display);
  font-size: clamp(42px, 5vw, 72px);
  line-height: .78;
}
.event-tile__date span {
  margin-top: 7px;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
}
.event-tile__content {
  min-width: 0;
  padding: clamp(24px, 3.4vw, 48px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.event-tile__meta {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 24px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.event-tile h2 {
  margin: clamp(28px, 4vw, 64px) 0 18px;
  color: var(--paper) !important;
  font-family: var(--display);
  font-size: clamp(40px, 6.4vw, 96px);
  line-height: .82;
  letter-spacing: -.055em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}
.event-tile:not(.event-tile--featured) h2 {
  margin-top: 28px;
  font-size: clamp(34px, 4vw, 60px);
}
.event-tile__content p {
  max-width: 590px;
  margin: 0 0 32px;
  color: var(--muted) !important;
  line-height: 1.65;
}
.event-tile__link {
  margin-top: auto;
  padding-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--line-light);
  color: var(--acid) !important;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.event-tile__link i {
  font-style: normal;
  font-size: 18px;
  transition: transform .25s;
}
.event-tile:hover .event-tile__link i { transform: translate(3px, -3px); }
.event-tile.is-cancelled .event-tile__visual img { filter: grayscale(1); }
.event-tile.is-cancelled .event-tile__status { background: var(--paper); }

@media (max-width: 980px) {
  .section-heading--events { grid-template-columns: 1fr; }
  .section-heading--events > p { max-width: 640px; }
  .event-tile--featured {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    min-height: 0;
  }
  .event-tile--featured .event-tile__visual { min-height: clamp(400px, 68vw, 620px); }
}

@media (max-width: 720px) {
  .events-grid { grid-template-columns: 1fr; }
  .event-tile--featured { grid-column: auto; }
  .event-tile__visual,
  .event-tile--featured .event-tile__visual { min-height: min(118vw, 540px); }
  .event-tile__content { padding: 24px 20px 26px; }
  .event-tile h2,
  .event-tile:not(.event-tile--featured) h2 { font-size: clamp(38px, 12vw, 58px); }
  .event-tile__date { right: 14px; bottom: 14px; min-width: 76px; }
  .event-tile__status { top: 14px; left: 14px; }
  .artist-stage,
  .artist-stage.theme-kemuel,
  .artist-stage.theme-maximarcus,
  .artist-stage.theme-nyo,
  .artist-stage.theme-rodriguez { min-height: 520px; }
}

.events-grid--compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.events-grid--compact .event-tile__visual { min-height: 300px; }
.events-grid--compact .event-tile__content { padding: 22px; }
.events-grid--compact .event-tile h3 {
  margin: 26px 0 24px;
  color: var(--paper) !important;
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 46px);
  line-height: .84;
  letter-spacing: -.05em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}
.related-events > h2 { margin-bottom: 26px; }

@media (max-width: 1100px) {
  .events-grid--compact { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .events-grid--compact { grid-template-columns: 1fr; }
}
.event-tile__visual img {
  position: absolute;
  inset: 0;
}
