/*
  DJ Digital Stage v3 — fluid, editorial, portable.
  No external fonts or front-end dependencies.
*/
:root {
  --bg: #070907;
  --surface: #11150f;
  --surface-2: #171c14;
  --text: #f2f5eb;
  --muted: #a6ad9e;
  --accent: #d7ff54;
  --accent-alt: #736cff;
  --accent-text: #070907;
  --line: #30372b;
  --display: Arial Black, Arial, Helvetica, sans-serif;
  --body: Arial, Helvetica, sans-serif;
  --page: min(1540px, calc(100vw - 48px));
  --narrow: min(1120px, calc(100vw - 48px));
  --gutter: max(24px, calc((100vw - min(1540px, calc(100vw - 48px))) / 2));
  --header-h: 78px;
  --radius: 30px;
  --radius-sm: 16px;
  --radius-pill: 999px;
  --shadow: 0 34px 100px rgba(0,0,0,.38);
  --ease: cubic-bezier(.18,.8,.18,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 85% 4%, color-mix(in srgb, var(--accent-alt) 20%, transparent), transparent 33rem),
    radial-gradient(circle at 12% 31%, color-mix(in srgb, var(--accent) 8%, transparent), transparent 32rem),
    var(--bg);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: .08;
  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='.72' numOctaves='5' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
::selection { background: var(--accent); color: var(--accent-text); }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  transform: translateY(-180%);
  padding: 11px 15px;
  border-radius: var(--radius-pill);
  color: var(--accent-text);
  background: var(--accent);
  font-size: 12px;
  font-weight: 900;
}
.skip-link:focus { transform: none; }

.demo-banner {
  position: relative;
  z-index: 400;
  padding: 7px 20px;
  color: var(--accent-text);
  background: var(--accent);
  text-align: center;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.scroll-progress {
  position: fixed;
  z-index: 500;
  inset: 0 0 auto;
  height: 2px;
  pointer-events: none;
}
.scroll-progress span { display: block; width: 0; height: 100%; background: var(--accent); }

/* Header + compact action dock */
.site-header {
  position: absolute;
  z-index: 210;
  top: var(--demo-offset, 0px);
  left: 0;
  right: 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
}
.header-inner {
  width: var(--page);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
}
.brand {
  width: max-content;
  font-family: var(--display);
  font-size: clamp(19px, 2vw, 29px);
  letter-spacing: -.075em;
  line-height: .8;
  text-transform: uppercase;
}
.header-nav { display: flex; align-items: center; gap: 28px; }
.header-nav a, .header-meta {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.header-nav a { position: relative; }
.header-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: var(--accent);
  transition: right .35s var(--ease);
}
.header-nav a:hover::after, .header-nav a:focus-visible::after { right: 0; }
.header-meta { justify-self: end; color: var(--muted); }
.menu-button { display: none; border: 0; background: none; padding: 12px; font-size: 11px; font-weight: 900; letter-spacing: .14em; }

.action-dock {
  position: fixed;
  z-index: 190;
  left: 50%;
  bottom: max(16px, env(safe-area-inset-bottom));
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
  padding: 5px;
  border: 1px solid color-mix(in srgb, var(--text) 16%, transparent);
  border-radius: var(--radius-pill);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  box-shadow: 0 16px 60px rgba(0,0,0,.35);
  backdrop-filter: blur(18px) saturate(1.2);
}
.action-dock a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border-radius: var(--radius-pill);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.action-dock a:last-child { color: var(--accent-text); background: var(--accent); }

/* Hero: stage first, interface second */
.hero {
  position: relative;
  z-index: 1;
  min-height: max(780px, 100svh);
  overflow: clip;
  isolation: isolate;
}
.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.18), transparent 35%, color-mix(in srgb, var(--bg) 55%, transparent) 70%, var(--bg) 100%),
    linear-gradient(90deg, color-mix(in srgb, var(--bg) 72%, transparent), transparent 64%);
}
.hero-media img, .hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-focal, 50% 50%);
  filter: saturate(.92) contrast(1.08);
  transform: scale(1.025);
  animation: heroBreath 18s var(--ease) infinite alternate;
}
@keyframes heroBreath { to { transform: scale(1.075) translate3d(-.4%, -.5%, 0); } }
.hero-veil {
  position: absolute;
  z-index: 2;
  width: min(62vw, 900px);
  aspect-ratio: 1.05;
  right: -6%;
  top: 7%;
  border-radius: 48% 52% 39% 61% / 61% 35% 65% 39%;
  border: 1px solid color-mix(in srgb, var(--accent) 34%, transparent);
  background:
    radial-gradient(circle at 42% 38%, color-mix(in srgb, var(--accent) 30%, transparent), transparent 34%),
    radial-gradient(circle at 65% 68%, color-mix(in srgb, var(--accent-alt) 22%, transparent), transparent 42%);
  filter: blur(.1px);
  animation: morph 15s var(--ease) infinite alternate;
}
.hero-veil::before, .hero-veil::after {
  content: "";
  position: absolute;
  border: 1px solid color-mix(in srgb, var(--text) 14%, transparent);
  border-radius: inherit;
}
.hero-veil::before { inset: 11%; transform: rotate(14deg); }
.hero-veil::after { inset: 30%; transform: rotate(-17deg); background: color-mix(in srgb, var(--accent) 7%, transparent); }
@keyframes morph {
  to { border-radius: 62% 38% 56% 44% / 40% 65% 35% 60%; transform: rotate(8deg) scale(1.04); }
}
.hero-inner {
  position: relative;
  z-index: 5;
  width: var(--page);
  min-height: max(780px, 100svh);
  margin-inline: auto;
  padding: calc(var(--header-h) + 76px) 0 54px;
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: end;
}
.hero-identity { align-self: center; padding-top: 8vh; }
.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.hero-title {
  margin: 0;
  max-width: 9.5ch;
  font-family: var(--display);
  font-size: clamp(78px, 16.3vw, 258px);
  letter-spacing: -.105em;
  line-height: .69;
  text-transform: uppercase;
  text-wrap: balance;
}
.hero-tagline {
  max-width: 22ch;
  margin: 28px 0 0;
  font-size: clamp(22px, 2.4vw, 38px);
  line-height: 1;
  letter-spacing: -.045em;
}
.hero-now {
  display: grid;
  grid-template-columns: minmax(320px, 1.1fr) auto;
  gap: 30px;
  align-items: end;
  margin-left: min(22vw, 340px);
}
.now-card {
  position: relative;
  display: grid;
  grid-template-columns: 112px minmax(0,1fr);
  gap: 20px;
  align-items: center;
  padding: 15px;
  border: 1px solid color-mix(in srgb, var(--text) 16%, transparent);
  border-radius: calc(var(--radius) * 1.25);
  background: color-mix(in srgb, var(--bg) 73%, transparent);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px) saturate(1.25);
}
.now-art {
  width: 112px;
  aspect-ratio: 1;
  border-radius: calc(var(--radius) * .8);
  object-fit: cover;
}
.now-copy { min-width: 0; }
.now-copy .eyebrow { margin-bottom: 8px; }
.now-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(30px, 4vw, 58px);
  line-height: .9;
  letter-spacing: -.07em;
  text-transform: uppercase;
}
.now-copy p { max-width: 52ch; margin: 8px 0 14px; color: var(--muted); font-size: 14px; }
.countdown {
  display: flex;
  gap: 5px;
  padding: 5px;
  border: 1px solid color-mix(in srgb, var(--text) 16%, transparent);
  border-radius: var(--radius-pill);
  background: color-mix(in srgb, var(--bg) 73%, transparent);
  backdrop-filter: blur(16px);
}
.countdown div {
  min-width: 70px;
  padding: 13px 12px;
  border-radius: var(--radius-pill);
  text-align: center;
}
.countdown div:first-child { color: var(--accent-text); background: var(--accent); }
.countdown strong { display: block; font-size: 24px; line-height: 1; }
.countdown span { display: block; margin-top: 4px; color: currentColor; opacity: .7; font-size: 8px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.hero-tail {
  position: absolute;
  z-index: 4;
  left: -5vw;
  right: -5vw;
  bottom: -3px;
  height: clamp(55px, 8vw, 118px);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  background: var(--bg);
}

/* Shared section language */
.section {
  position: relative;
  z-index: 2;
  padding: clamp(100px, 12vw, 190px) 0;
}
.section + .section { margin-top: -1px; }
.section-inner { width: var(--page); margin-inline: auto; }
.section-head {
  display: grid;
  grid-template-columns: minmax(120px, .34fr) 1.66fr;
  gap: 34px;
  margin-bottom: clamp(58px, 8vw, 116px);
}
.section-index { color: var(--accent); font-size: 10px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.section-title {
  max-width: 12ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(50px, 8.5vw, 138px);
  letter-spacing: -.082em;
  line-height: .78;
  text-transform: uppercase;
  text-wrap: balance;
}
.section-copy { max-width: 56ch; margin: 25px 0 0; color: var(--muted); font-size: clamp(16px,1.5vw,21px); }
.section-orb {
  position: absolute;
  z-index: -1;
  width: min(46vw, 720px);
  aspect-ratio: 1;
  right: -18vw;
  top: 9%;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent-alt) 18%, transparent), transparent 66%);
  filter: blur(30px);
  pointer-events: none;
}
.button-row { display: flex; flex-wrap: wrap; gap: 9px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 19px;
  border: 1px solid var(--accent);
  border-radius: var(--radius-pill);
  color: var(--accent-text);
  background: var(--accent);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), color .3s var(--ease), background .3s var(--ease);
}
.button:hover, .button:focus-visible { transform: translateY(-3px); box-shadow: 0 12px 32px color-mix(in srgb, var(--accent) 18%, transparent); }
.button-ghost { color: var(--text); background: transparent; border-color: color-mix(in srgb, var(--text) 23%, transparent); }
.button-ghost:hover { color: var(--accent); border-color: var(--accent); }

/* Tour: information as typography, not cards */
.tour-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(250px, .6fr) 1.4fr;
  gap: clamp(34px, 7vw, 120px);
  align-items: center;
  margin-bottom: clamp(68px, 9vw, 130px);
}
.next-date-orb {
  position: relative;
  width: min(31vw, 440px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 47% 53% 60% 40% / 46% 37% 63% 54%;
  color: var(--accent-text);
  background: var(--accent);
  transform: rotate(-4deg);
  box-shadow: var(--shadow);
}
.next-date-orb::after {
  content: "";
  position: absolute;
  inset: 12px -12px -12px 12px;
  z-index: -1;
  border: 1px solid color-mix(in srgb, var(--accent) 50%, transparent);
  border-radius: inherit;
}
.next-date-orb div { transform: rotate(4deg); text-align: center; }
.next-date-orb strong { display: block; font-family: var(--display); font-size: clamp(82px, 13vw, 190px); line-height: .68; letter-spacing: -.095em; }
.next-date-orb span { display: block; margin-top: 17px; font-size: 11px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.next-show-copy h3 { margin: 0; font-family: var(--display); font-size: clamp(52px, 7vw, 110px); line-height: .82; letter-spacing: -.075em; text-transform: uppercase; }
.next-show-copy p { margin: 18px 0 26px; color: var(--muted); font-size: 18px; }
.tour-list { border-top: 1px solid var(--line); }
.event-row {
  position: relative;
  display: grid;
  grid-template-columns: 120px 1fr minmax(170px,.7fr) 145px;
  gap: 24px;
  align-items: center;
  min-height: 96px;
  border-bottom: 1px solid var(--line);
  transition: padding .35s var(--ease), color .35s var(--ease);
}
.event-row::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 8px -12px;
  border-radius: var(--radius-pill);
  background: var(--surface);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease-out);
}
.event-row:hover::before, .event-row:focus-within::before { transform: scaleX(1); }
.event-row:hover, .event-row:focus-within { padding-inline: 16px; }
.event-date { font-family: var(--display); font-size: 25px; letter-spacing: -.05em; }
.event-place strong { display: block; font-size: 19px; }
.event-place span, .event-venue { color: var(--muted); }
.status { justify-self: start; padding: 7px 11px; border: 1px solid var(--line); border-radius: var(--radius-pill); font-size: 9px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.status--low-tickets, .status--presale { color: var(--accent); border-color: var(--accent); }
.status--sold-out, .status--cancelled, .status--past { opacity: .54; }
.event-cta { justify-self: end; font-size: 10px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.bit-widget-wrap { padding: clamp(24px,4vw,52px); border: 1px solid var(--line); border-radius: calc(var(--radius) * 1.25); background: color-mix(in srgb, var(--surface) 76%, transparent); }

/* Media system: one active official embed, URL-driven */
.music-composition {
  display: grid;
  grid-template-columns: minmax(280px, .82fr) 1.18fr;
  gap: clamp(38px, 7vw, 120px);
  align-items: center;
}
.artwork-shell { position: relative; }
.artwork-shell::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 8% -8% -8% 12%;
  border-radius: 44% 56% 38% 62% / 55% 37% 63% 45%;
  background: color-mix(in srgb, var(--accent-alt) 32%, transparent);
  filter: blur(2px);
}
.artwork-shell img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 45% 55% 58% 42% / 51% 42% 58% 49%;
  box-shadow: var(--shadow);
}
.music-copy h3 { margin: 0; max-width: 11ch; font-family: var(--display); font-size: clamp(52px, 7.5vw, 118px); line-height: .8; letter-spacing: -.08em; text-transform: uppercase; }
.music-copy > p { max-width: 56ch; margin: 22px 0 28px; color: var(--muted); font-size: 18px; }
.media-stage { margin-top: 34px; }
.media-player {
  position: relative;
  min-height: var(--media-height, 190px);
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--text) 15%, transparent);
  border-radius: calc(var(--radius) * 1.2);
  background:
    radial-gradient(circle at 80% 20%, color-mix(in srgb, var(--accent-alt) 22%, transparent), transparent 55%),
    var(--surface);
  box-shadow: var(--shadow);
}
.media-player iframe { display: block; width: 100%; min-height: var(--media-height, 190px); border: 0; }
.media-player[data-ratio="video"] { aspect-ratio: 16/9; min-height: 0; }
.media-player[data-ratio="video"] iframe { position: absolute; inset: 0; height: 100%; }
.media-facade {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: #090b09;
  cursor: pointer;
}
.media-facade img { width: 100%; height: 100%; object-fit: cover; opacity: .82; transition: transform .8s var(--ease), opacity .4s var(--ease); }
.media-facade::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 28%, rgba(0,0,0,.72)); }
.media-facade:hover img { transform: scale(1.04); opacity: 1; }
.media-play {
  position: absolute;
  z-index: 2;
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--accent-text);
  background: var(--accent);
  font-weight: 900;
  box-shadow: 0 18px 70px rgba(0,0,0,.4);
}
.media-facade-copy { position: absolute; z-index: 2; left: 28px; right: 28px; bottom: 24px; display: flex; align-items: end; justify-content: space-between; gap: 20px; text-align: left; }
.media-facade-copy strong { font-family: var(--display); font-size: clamp(28px,4vw,58px); line-height: .86; letter-spacing: -.06em; text-transform: uppercase; }
.media-facade-copy span { font-size: 10px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.media-demo {
  min-height: 230px;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  align-items: center;
  padding: 28px;
}
.media-demo-art { width: 120px; aspect-ratio: 1; border-radius: 30%; background: linear-gradient(135deg,var(--accent),var(--accent-alt)); box-shadow: var(--shadow); }
.media-demo strong { display: block; font-family: var(--display); font-size: clamp(30px,4vw,56px); line-height: .9; letter-spacing: -.06em; text-transform: uppercase; }
.media-demo p { max-width: 48ch; margin: 10px 0 0; color: var(--muted); }
.media-tabs {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  overflow-x: auto;
  padding: 2px 2px 8px;
  scrollbar-width: thin;
}
.media-tab {
  min-width: min(270px, 78vw);
  flex: 1 0 210px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  color: var(--text);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: border-color .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.media-tab:hover, .media-tab:focus-visible, .media-tab[aria-selected="true"] { border-color: var(--accent); background: color-mix(in srgb, var(--accent) 9%, transparent); }
.media-tab[aria-selected="true"] .provider-mark { color: var(--accent-text); background: var(--accent); }
.provider-mark { min-width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; color: var(--accent); background: var(--surface-2); font-size: 9px; font-weight: 900; letter-spacing: .08em; }
.media-tab-copy { min-width: 0; }
.media-tab-copy span { display: block; color: var(--muted); font-size: 8px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.media-tab-copy strong { display: block; overflow: hidden; margin-top: 2px; font-size: 13px; text-overflow: ellipsis; white-space: nowrap; }
.platform-list { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 18px; }
.platform-pill { padding: 9px 13px; border: 1px solid var(--line); border-radius: var(--radius-pill); font-size: 9px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.platform-pill:hover, .platform-pill:focus-visible { color: var(--accent); border-color: var(--accent); }

/* Live becomes a cinematic field */
.live-section { overflow: clip; }
.live-shell {
  width: min(1760px, calc(100vw - 24px));
  margin-inline: auto;
  padding: clamp(34px, 6vw, 92px);
  border-radius: clamp(42px, 7vw, 110px);
  background:
    radial-gradient(circle at 80% 15%, color-mix(in srgb,var(--accent) 18%, transparent), transparent 34rem),
    linear-gradient(135deg, color-mix(in srgb,var(--surface) 95%, black), color-mix(in srgb,var(--accent-alt) 14%, var(--surface)));
  box-shadow: var(--shadow);
}
.live-shell .section-head { margin-bottom: clamp(42px, 6vw, 84px); }
.live-shell .section-title { max-width: 10ch; }
.live-shell .media-player { min-height: 0; aspect-ratio: 16/9; border-radius: clamp(28px, 5vw, 78px); }
.live-shell .media-player iframe { position: absolute; inset: 0; height: 100%; }

/* Artist + proof */
.about-composition {
  display: grid;
  grid-template-columns: minmax(280px,.76fr) 1.24fr;
  gap: clamp(44px, 9vw, 150px);
  align-items: center;
}
.portrait-shell { position: relative; }
.portrait-shell::before {
  content: "";
  position: absolute;
  inset: 13% -11% -9% 17%;
  z-index: -1;
  border-radius: 58% 42% 52% 48% / 42% 60% 40% 58%;
  background: color-mix(in srgb, var(--accent) 34%, transparent);
  filter: blur(1px);
}
.portrait-shell img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 51% 49% 43% 57% / 39% 58% 42% 61%;
  box-shadow: var(--shadow);
}
.about-copy-large { margin: 0; font-size: clamp(30px, 4.7vw, 70px); line-height: 1; letter-spacing: -.05em; }
.about-detail { max-width: 62ch; margin-top: 30px; color: var(--muted); font-size: 18px; }
.genre-line { margin-top: 26px; color: var(--text); font-size: 11px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.proof-cloud { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 54px; }
.proof-item {
  flex: 1 1 180px;
  min-height: 156px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 50px 50px 50px 12px;
  background: color-mix(in srgb, var(--surface) 72%, transparent);
}
.proof-item:nth-child(2) { transform: translateY(20px); border-radius: 50px 12px 50px 50px; }
.proof-item:nth-child(3) { border-radius: 12px 50px 50px 50px; }
.proof-item strong { display: block; color: var(--accent); font-family: var(--display); font-size: clamp(34px,4vw,60px); line-height: .8; letter-spacing: -.07em; }
.proof-item span { display: block; max-width: 22ch; margin-top: 15px; color: var(--muted); }

.quote-section { padding-top: 40px; }
.quote-card { width: var(--narrow); margin-inline: auto; text-align: center; }
.quote-mark { color: var(--accent); font-family: Georgia,serif; font-size: 128px; line-height: .5; }
.quote-card blockquote { margin: 24px auto; font-family: var(--display); font-size: clamp(36px, 6vw, 92px); line-height: .91; letter-spacing: -.065em; }
.quote-card cite { color: var(--muted); font-style: normal; font-size: 10px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }

/* Contact portal: one organic composition instead of two boxes */
.contact-portal {
  position: relative;
  z-index: 3;
  width: min(1780px, calc(100vw - 24px));
  margin: clamp(80px,10vw,160px) auto 0;
  padding: clamp(34px,6vw,94px);
  overflow: hidden;
  border-radius: clamp(50px,8vw,130px) clamp(50px,8vw,130px) 24px 24px;
  color: var(--accent-text);
  background: var(--accent);
}
.contact-portal::before {
  content: "";
  position: absolute;
  width: 72vw;
  aspect-ratio: 1;
  right: -35vw;
  top: -45vw;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-alt) 62%, transparent);
  filter: blur(12px);
}
.contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(44px,8vw,140px);
  align-items: start;
}
.contact-intro h2 { max-width: 8ch; margin: 0; font-family: var(--display); font-size: clamp(58px, 9vw, 148px); line-height: .75; letter-spacing: -.09em; text-transform: uppercase; }
.contact-intro > p { max-width: 45ch; margin: 26px 0; font-size: 18px; }
.fan-card {
  margin-top: 46px;
  padding: 24px;
  border: 1px solid color-mix(in srgb,var(--accent-text) 30%,transparent);
  border-radius: 44px 44px 12px 44px;
  background: color-mix(in srgb, white 16%, transparent);
}
.fan-card h3 { margin: 0; font-family: var(--display); font-size: clamp(30px,4vw,58px); line-height: .9; letter-spacing: -.06em; }
.fan-card p { margin: 12px 0 0; }
.booking-shell {
  padding: clamp(24px,4vw,50px);
  border-radius: 24px 80px 80px 80px;
  color: var(--text);
  background: var(--bg);
  box-shadow: var(--shadow);
}
.booking-shell h3 { margin: 0; font-family: var(--display); font-size: clamp(38px,5vw,76px); line-height: .86; letter-spacing: -.07em; text-transform: uppercase; }
.booking-shell > p { max-width: 48ch; color: var(--muted); }
.booking-contacts { display: grid; gap: 10px; margin: 28px 0; }
.booking-contact { display: grid; grid-template-columns: minmax(120px,.45fr) 1fr; gap: 12px; padding-top: 11px; border-top: 1px solid var(--line); }
.booking-contact span { color: var(--muted); font-size: 9px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.booking-contact a { overflow-wrap: anywhere; font-size: 15px; }
.form-grid { display: grid; gap: 12px; margin-top: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-grid label { display: grid; gap: 7px; font-size: 9px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.form-grid input, .form-grid textarea, .form-grid select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  outline: 0;
  color: inherit;
  background: color-mix(in srgb, var(--surface) 70%, transparent);
}
.form-grid textarea { min-height: 118px; resize: vertical; }
.form-grid input:focus, .form-grid textarea:focus, .form-grid select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px color-mix(in srgb,var(--accent) 20%,transparent); }
.checkbox { grid-template-columns: auto 1fr !important; align-items: start; letter-spacing: 0 !important; text-transform: none !important; font-weight: 400 !important; }
.checkbox input { width: auto; margin-top: 4px; }
.form-message { min-height: 22px; color: var(--muted); font-size: 12px; }
.contact-portal .fan-card .form-grid input { border-color: color-mix(in srgb,var(--accent-text) 40%,transparent); color: var(--accent-text); background: color-mix(in srgb,white 14%,transparent); }
.contact-portal .fan-card .button { color: var(--text); background: var(--bg); border-color: var(--bg); }

.site-footer { position: relative; z-index: 2; padding: 78px 0 100px; }
.footer-inner { width: var(--page); margin-inline: auto; }
.footer-name { margin: 0; padding-top: .1em; font-family: var(--display); font-size: clamp(76px, 18.5vw, 292px); line-height: .88; letter-spacing: -.108em; white-space: nowrap; text-transform: uppercase; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 70px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.social-list { display: flex; flex-wrap: wrap; gap: 17px; }

/* Event detail pages */
.event-page-main { width: var(--page); margin-inline: auto; padding: calc(var(--header-h) + 80px) 0 120px; }
.event-page-hero { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(36px,7vw,110px); align-items: center; min-height: 72vh; }
.event-page-date { width: min(36vw,480px); aspect-ratio: 1; display: grid; place-items: center; border-radius: 50%; color: var(--accent-text); background: var(--accent); }
.event-page-date strong { font-family: var(--display); font-size: clamp(86px,14vw,210px); line-height: .7; letter-spacing: -.1em; }
.event-page-content h1 { margin: 0; font-family: var(--display); font-size: clamp(56px,9vw,142px); line-height: .78; letter-spacing: -.085em; text-transform: uppercase; }
.event-page-content p { max-width: 58ch; color: var(--muted); font-size: 18px; }

/* EPK */
.epk-page { color: #151611; background: #f4f1e8; }
.epk-page::before { opacity: .035; }
.epk-page .site-header { position: relative; top: 0; color: #151611; }
.epk-page .header-meta, .epk-page .header-nav { color: #5f6259; }
.epk-page .action-dock { display: none; }
.epk-main { width: min(1320px, calc(100vw - 48px)); margin-inline: auto; padding: 50px 0 110px; }
.epk-hero { display: grid; grid-template-columns: 1.15fr .85fr; gap: 50px; align-items: end; padding: 70px 0 80px; border-bottom: 1px solid #c9c5ba; }
.epk-hero h1 { margin: 0; font-family: var(--display); font-size: clamp(74px,14vw,210px); line-height: .68; letter-spacing: -.105em; text-transform: uppercase; }
.epk-hero .eyebrow { color: #6358d8; }
.epk-hero p { font-size: 20px; }
.epk-page .button { color: #f4f1e8; background: #171812; border-color: #171812; }
.epk-section { padding: 78px 0; border-bottom: 1px solid #c9c5ba; }
.epk-section h2 { margin: 0 0 25px; font-family: var(--display); font-size: clamp(38px,5vw,76px); line-height: .86; letter-spacing: -.065em; text-transform: uppercase; }
.epk-two { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; }
.epk-assets { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.epk-asset { display: grid; gap: 12px; color: #151611; }
.epk-asset img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 36px 36px 8px 36px; }
.epk-asset span { font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.epk-asset-file { min-height: 180px; place-items: center; border: 1px solid #c9c5ba; border-radius: 36px; }
.epk-page a { text-decoration-thickness: 1px; text-underline-offset: 4px; }

/* Reveal: content remains visible without JS */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .85s var(--ease-out), transform .85s var(--ease-out); }
.js .reveal.is-visible { opacity: 1; transform: none; }

/* Preset composition changes */
.preset-industrial { --radius: 10px; }
.preset-industrial .hero-veil { border-radius: 0; clip-path: polygon(12% 0,100% 8%,86% 100%,0 82%); animation-duration: 10s; }
.preset-industrial .now-card, .preset-industrial .media-player, .preset-industrial .live-shell { border-radius: 8px; }
.preset-industrial .next-date-orb { border-radius: 0; clip-path: polygon(10% 0,100% 12%,88% 100%,0 82%); }
.preset-industrial .artwork-shell img, .preset-industrial .portrait-shell img { border-radius: 0; clip-path: polygon(5% 0,100% 4%,94% 100%,0 94%); }
.preset-industrial .section-index::before { content: "// "; }
.preset-industrial .event-date, .preset-industrial .countdown strong { font-variant-numeric: tabular-nums; }

.preset-ether .hero-veil { filter: blur(4px); }
.preset-ether .hero-title { text-transform: none; }
.preset-ether .section-title, .preset-ether .music-copy h3 { text-transform: none; font-weight: 600; }
.preset-ether .live-shell { background: radial-gradient(circle at 75% 20%, color-mix(in srgb,var(--accent) 24%,transparent), transparent 34rem), linear-gradient(145deg,#0b1021,#11172c); }

.preset-festival { --radius: 4px; }
.preset-festival .hero-title { font-size: clamp(92px,18.2vw,286px); }
.preset-festival .hero-veil { clip-path: polygon(20% 0,100% 0,82% 100%,0 86%); border-radius: 0; }
.preset-festival .countdown { border-radius: 0; transform: rotate(-2deg); }
.preset-festival .countdown div { border-radius: 0; min-width: 88px; }
.preset-festival .next-date-orb { border-radius: 0; transform: rotate(-5deg); }
.preset-festival .now-card, .preset-festival .media-player, .preset-festival .live-shell, .preset-festival .booking-shell { border-radius: 0; }
.preset-festival .section-title { font-size: clamp(58px,9.4vw,154px); }

.preset-editorial { --radius: 0px; }
.preset-editorial { color: #171410; background: #f4f1e9; }
.preset-editorial body, body.preset-editorial { background: #f4f1e9; }
body.preset-editorial { --bg:#f4f1e9; --surface:#faf8f2; --surface-2:#efeadd; --text:#171410; --muted:#6e6858; --line:#d9d2c2; }
.preset-editorial .hero-media img, .preset-editorial .hero-media video { filter: grayscale(.2) contrast(1.02); }
.preset-editorial .hero-veil { display: none; }
.preset-editorial .hero-title, .preset-editorial .section-title, .preset-editorial .music-copy h3 { text-transform: none; }
.preset-editorial .section { border-top: 1px solid var(--line); }
.preset-editorial .section-head { align-items: start; }
.preset-editorial .section-title { font-style: italic; font-weight: 500; }
.preset-editorial .about-copy-large::first-letter { float: left; margin-right: 10px; font-family: var(--display); font-size: 3.2em; line-height: .75; color: var(--accent); }
.preset-editorial .hero-tail { display: none; }
.preset-editorial .live-shell { border: 1px solid var(--line); box-shadow: none; background: var(--surface); }
.preset-editorial .proof-item, .preset-editorial .now-card, .preset-editorial .booking-shell { border-radius: 0; box-shadow: none; }
.preset-editorial .action-dock { background: rgba(244,241,233,.86); }

.preset-acid .hero-veil { border-radius: 70% 30% 62% 38% / 35% 70% 30% 65%; }
.preset-acid .hero-title { transform: rotate(-1.5deg); }
.preset-acid .now-card, .preset-acid .media-player, .preset-acid .booking-shell { border-radius: 70px; }
.preset-acid .next-date-orb { border-radius: 70% 30% 50% 50% / 42% 68% 32% 58%; }
.preset-acid .section-title { transform: rotate(-1deg); }
.preset-acid .proof-item:nth-child(odd) { transform: rotate(-1.5deg); }
.preset-acid .proof-item:nth-child(even) { transform: rotate(1.5deg) translateY(18px); }

/* Motion levels */
body[data-motion="low"] .hero-media img, body[data-motion="low"] .hero-media video,
body[data-motion="low"] .hero-veil { animation: none; }
body[data-motion="high"] .hero-veil { animation-duration: 10s; }
body[data-motion="high"] .media-facade:hover img { transform: scale(1.07); }

@media (max-width: 980px) {
  :root { --page: calc(100vw - 32px); --narrow: calc(100vw - 32px); --header-h: 68px; }
  .header-inner { grid-template-columns: 1fr auto; }
  .header-nav {
    position: fixed;
    inset: calc(var(--header-h) + var(--demo-offset,0px)) 16px auto;
    display: none;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: color-mix(in srgb,var(--bg) 94%,transparent);
    backdrop-filter: blur(20px);
  }
  .header-nav.is-open { display: grid; gap: 18px; }
  .header-meta { display: none; }
  .menu-button { display: block; justify-self: end; }
  .hero-now { grid-template-columns: 1fr; margin-left: 15vw; }
  .countdown { width: max-content; }
  .tour-stage, .music-composition, .about-composition, .contact-grid, .event-page-hero { grid-template-columns: 1fr; }
  .next-date-orb { width: min(66vw, 430px); }
  .music-composition { gap: 74px; }
  .artwork-shell { width: min(78vw, 620px); }
  .portrait-shell { width: min(72vw,560px); }
  .contact-intro h2 { max-width: 10ch; }
  .epk-hero, .epk-two { grid-template-columns: 1fr; }
  .epk-assets { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 680px) {
  :root { --page: calc(100vw - 24px); --narrow: calc(100vw - 24px); --radius: 22px; }
  body { font-size: 15px; }
  .demo-banner { padding-inline: 8px; font-size: 8px; }
  .site-header { height: 60px; }
  .brand { font-size: 18px; }
  .hero { min-height: 790px; }
  .hero-inner { min-height: 790px; padding: 94px 0 88px; }
  .hero-identity { align-self: start; padding-top: 9vh; }
  .hero-title { font-size: clamp(68px, 24vw, 118px); line-height: .72; }
  .hero-tagline { margin-top: 20px; font-size: 21px; }
  .hero-veil { width: 118vw; right: -47vw; top: 18%; opacity: .72; }
  .hero-now { margin: 0; gap: 12px; }
  .now-card { grid-template-columns: 76px 1fr; gap: 13px; padding: 10px; border-radius: 24px; }
  .now-art { width: 76px; border-radius: 18px; }
  .now-copy h2 { font-size: 29px; }
  .now-copy p { display: none; }
  .now-copy .button { min-height: 40px; padding: 10px 13px; }
  .countdown { width: 100%; justify-content: stretch; }
  .countdown div { flex: 1; min-width: 0; padding: 10px 7px; }
  .countdown strong { font-size: 20px; }
  .action-dock { max-width: calc(100vw - 20px); overflow-x: auto; }
  .action-dock a { min-height: 40px; padding: 0 13px; font-size: 9px; }
  .section { padding: 92px 0; }
  .section-head { grid-template-columns: 1fr; gap: 18px; margin-bottom: 54px; }
  .section-title { font-size: clamp(44px, 16vw, 78px); }
  .section-copy { margin-top: 17px; }
  .tour-stage { gap: 42px; }
  .next-date-orb { width: 76vw; max-width: 330px; }
  .next-date-orb strong { font-size: 112px; }
  .next-show-copy h3 { font-size: 56px; }
  .event-row { grid-template-columns: 82px 1fr auto; gap: 12px; min-height: 88px; }
  .event-venue { display: none; }
  .status { display: none; }
  .event-date { font-size: 19px; }
  .event-place strong { font-size: 16px; }
  .event-cta { font-size: 9px; }
  .music-copy h3 { font-size: 57px; }
  .media-demo { grid-template-columns: 76px 1fr; gap: 15px; padding: 18px; min-height: 170px; }
  .media-demo-art { width: 76px; }
  .media-demo strong { font-size: 27px; }
  .media-demo p { display: none; }
  .media-player { border-radius: 24px; }
  .media-play { width: 66px; height: 66px; }
  .media-facade-copy { left: 18px; right: 18px; bottom: 16px; }
  .media-facade-copy strong { font-size: 28px; }
  .live-shell { width: calc(100vw - 12px); padding: 24px 12px 30px; border-radius: 42px; }
  .live-shell .section-head { padding-inline: 12px; }
  .about-copy-large { font-size: 36px; }
  .proof-cloud { display: grid; }
  .proof-item, .proof-item:nth-child(2), .proof-item:nth-child(3) { min-height: 128px; transform: none; border-radius: 32px 32px 32px 8px; }
  .quote-card blockquote { font-size: 39px; }
  .contact-portal { width: calc(100vw - 12px); padding: 54px 18px 30px; border-radius: 48px 48px 18px 18px; }
  .contact-intro h2 { font-size: 62px; }
  .fan-card { border-radius: 34px 34px 8px 34px; }
  .booking-shell { padding: 24px 16px; border-radius: 16px 42px 42px 42px; }
  .form-row { grid-template-columns: 1fr; }
  .booking-contact { grid-template-columns: 1fr; gap: 4px; }
  .footer-name { font-size: 23vw; }
  .footer-bottom { flex-direction: column; margin-top: 45px; }
  .epk-main { width: calc(100vw - 28px); }
  .epk-hero { padding-top: 30px; }
  .epk-hero h1 { font-size: 24vw; }
  .epk-assets { grid-template-columns: 1fr; }
  .event-page-date { width: 76vw; }
}

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

@media (forced-colors: active) {
  .button, .action-dock, .now-card, .media-player, .booking-shell { border: 1px solid CanvasText; }
}

/* v3.0 release hardening: decorative layers never widen the document and
   grid children are allowed to shrink around horizontally scrollable media tabs. */
html, body { overflow-x: clip; }
.music-composition > *, .about-composition > *, .contact-grid > *, .hero-inner > *, .live-shell > * { min-width: 0; }
.music-copy, .media-stage, .media-player, .media-tabs { min-width: 0; max-width: 100%; }
.media-tab { flex: 0 0 min(270px, 78vw); min-width: min(270px, 78vw); }
@media (max-width: 680px) {
  .music-copy > p, .music-copy .eyebrow { max-width: 100%; }
  .button-row { max-width: 100%; }
  .media-tabs { width: 100%; overscroll-behavior-inline: contain; }
}

/* ========================================================================== 
   DARIO NUNEZ · TOTALITY SIGNAL
   Artist-specific campaign layer. Festival energy without flyer grammar.
   ========================================================================== */

body.preset-festival {
  background:
    radial-gradient(circle at 84% 2%, rgba(219, 212, 144, .08), transparent 28rem),
    radial-gradient(circle at 8% 36%, rgba(154, 147, 78, .045), transparent 32rem),
    var(--bg);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.hero-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.preset-festival .hero {
  min-height: 100svh;
  background: #020202;
}

.preset-festival .hero-media::after {
  background:
    linear-gradient(90deg, rgba(5,5,5,.94) 0%, rgba(5,5,5,.66) 28%, rgba(5,5,5,.08) 58%, rgba(5,5,5,.04) 100%),
    linear-gradient(180deg, rgba(5,5,5,.10) 0%, transparent 43%, rgba(5,5,5,.22) 66%, #050505 100%);
}

.preset-festival .hero-media img,
.preset-festival .hero-media video {
  transform: none;
  animation: none;
  filter: saturate(.94) contrast(1.055);
}

/* One protagonist motion: a single eclipse shadow crosses the scene and exits. */
.preset-festival .hero-veil {
  z-index: 4;
  width: 78vmax;
  aspect-ratio: 1;
  left: -72vmax;
  right: auto;
  top: 50%;
  border: 1px solid rgba(240,234,183,.24);
  border-radius: 50%;
  clip-path: none;
  background: #010101;
  box-shadow: 0 0 74px rgba(219,212,144,.18), inset -2px 0 rgba(240,234,183,.25);
  filter: none;
  opacity: .98;
  animation: darioEclipseReveal 1.95s cubic-bezier(.64,.02,.18,1) .08s forwards;
  pointer-events: none;
}
.preset-festival .hero-veil::before,
.preset-festival .hero-veil::after { display: none; }

@keyframes darioEclipseReveal {
  0% { transform: translate3d(0,-50%,0); }
  100% { transform: translate3d(225vmax,-50%,0); }
}

.preset-festival .hero-inner {
  min-height: 100svh;
  display: block;
  padding: 0;
}

.preset-festival .hero-identity {
  position: absolute;
  z-index: 7;
  top: 27%;
  left: 0;
  width: min(46vw, 660px);
  padding: 0;
  animation: darioCopyReveal .9s var(--ease-out) .72s both;
}

@keyframes darioCopyReveal {
  from { opacity: 0; transform: translateY(22px); clip-path: inset(0 0 100% 0); }
  to { opacity: 1; transform: none; clip-path: inset(0); }
}

.preset-festival .hero-title {
  max-width: 5.1ch;
  font-size: clamp(82px, 9.5vw, 152px);
  line-height: .73;
  letter-spacing: -.085em;
  text-wrap: wrap;
}

.preset-festival .hero-tagline {
  max-width: 17ch;
  margin-top: 24px;
  font-size: clamp(22px, 2vw, 31px);
  line-height: .94;
  text-transform: uppercase;
}

.preset-festival .hero-now {
  position: absolute;
  z-index: 8;
  right: 0;
  bottom: 50px;
  width: min(610px, 44vw);
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 0;
  animation: darioCopyReveal .9s var(--ease-out) 1.02s both;
}

.preset-festival .now-card {
  display: block;
  padding: 2px 0 12px 22px;
  border: 0;
  border-left: 1px solid var(--accent);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.preset-festival .now-art { display: none; }
.preset-festival .now-copy h2 {
  max-width: 11ch;
  font-size: clamp(38px, 4.7vw, 68px);
  line-height: .82;
  letter-spacing: -.065em;
}
.preset-festival .now-copy p {
  max-width: 52ch;
  color: #c5c1b5;
}

.preset-festival .countdown {
  width: max-content;
  justify-self: end;
  border: 1px solid rgba(245,243,237,.19);
  border-radius: 999px;
  background: rgba(5,5,5,.68);
  transform: none;
  backdrop-filter: blur(18px);
}
.preset-festival .countdown div,
.preset-festival .countdown div:first-child {
  min-width: 78px;
  border-radius: 999px;
}

.preset-festival .hero-tail {
  height: clamp(36px, 5vw, 72px);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

/* Tour: the date behaves as an eclipse object, not a card. */
.preset-festival #tour { padding-top: clamp(120px, 13vw, 190px); }
.preset-festival .next-date-orb {
  border: 1px solid rgba(240,234,183,.62);
  border-radius: 50%;
  clip-path: none;
  color: var(--accent);
  background:
    radial-gradient(circle at 52% 46%, #050505 0 55%, #0a0a08 56% 67%, rgba(219,212,144,.16) 68% 69%, #050505 71%);
  transform: none;
  box-shadow: 0 0 72px rgba(219,212,144,.14);
}
.preset-festival .next-date-orb::after {
  inset: -14px;
  border-radius: 50%;
  border-color: rgba(219,212,144,.24);
}
.preset-festival .next-date-orb strong { color: var(--text); }
.preset-festival .next-date-orb span { color: var(--accent); }
.time-tba,
.event-time-tba,
.event-time-note {
  color: var(--accent);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.event-time-tba { display: block; margin-top: 4px; }
.event-time-note { margin: 0 0 12px !important; }

.preset-festival .event-row::before { border-radius: 0; }
.preset-festival .status { border-radius: 999px; }

/* Music: a black-sun object and editorial platform rail. */
.preset-festival .artwork-shell::before {
  inset: -5%;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(219,212,144,.32);
  filter: none;
}
.preset-festival .artwork-shell img {
  border-radius: 50%;
  clip-path: none;
  border: 1px solid rgba(240,234,183,.24);
}
.preset-festival .media-player {
  border-radius: 30px;
  background:
    radial-gradient(circle at 86% 12%, rgba(219,212,144,.12), transparent 42%),
    var(--surface);
}
.preset-festival .media-tab { border-radius: 999px; }
.preset-festival .platform-pill { border-radius: 999px; }

/* Live: one cinematic field, not a repeated rectangle. */
.preset-festival .live-shell {
  border: 1px solid rgba(245,243,237,.11);
  border-radius: 150px 150px 46px 46px;
  background:
    radial-gradient(circle at 78% 8%, rgba(219,212,144,.16), transparent 30rem),
    linear-gradient(145deg, #0a0a08, #13120e 65%, #090908);
}
.preset-festival .live-shell .media-player {
  border-radius: 110px 110px 28px 28px;
}

/* About: remove the component-card cadence. */
.preset-festival .portrait-shell::before {
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(219,212,144,.28);
  filter: none;
}
.preset-festival .portrait-shell img {
  border-radius: 48% 48% 16% 16% / 32% 32% 12% 12%;
  clip-path: none;
}
.preset-festival .proof-cloud {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.preset-festival .proof-item,
.preset-festival .proof-item:nth-child(2),
.preset-festival .proof-item:nth-child(3) {
  min-height: 0;
  padding: 20px 0 0;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  transform: none;
}

/* Fan + booking: dark conversion portal; yellow remains signal, never wallpaper. */
.preset-festival .contact-portal {
  color: var(--text);
  border: 1px solid rgba(245,243,237,.12);
  border-radius: 130px 130px 30px 30px;
  background:
    radial-gradient(circle at 8% 18%, rgba(219,212,144,.14), transparent 28rem),
    #0d0d0b;
}
.preset-festival .contact-portal::before {
  width: 48vw;
  right: -22vw;
  top: -28vw;
  background: rgba(219,212,144,.12);
  filter: blur(20px);
}
.preset-festival .contact-intro .eyebrow { color: var(--accent) !important; }
.preset-festival .fan-card {
  border: 0;
  border-top: 1px solid var(--accent);
  border-radius: 0;
  background: transparent;
  padding-inline: 0;
}
.preset-festival .booking-shell {
  border: 0;
  border-left: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.preset-festival .contact-portal .fan-card .form-grid input {
  color: var(--text);
  border-color: var(--line);
  background: var(--surface);
}
.preset-festival .contact-portal .fan-card .button {
  color: var(--accent-text);
  background: var(--accent);
  border-color: var(--accent);
}

.preset-festival .footer-name {
  color: transparent;
  -webkit-text-stroke: 1px rgba(245,243,237,.84);
  text-stroke: 1px rgba(245,243,237,.84);
}

.event-page-image {
  width: 100%;
  max-height: 70vh;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 80px 80px 24px 24px;
}

/* EPK remains practical but visually belongs to the campaign. */
.epk-page .epk-hero .eyebrow { color: #7d742e; }
.epk-page .epk-asset img { border-radius: 50px 50px 10px 50px; }

@media (max-width: 980px) {
  .preset-festival .hero-identity { width: 54vw; top: 24%; }
  .preset-festival .hero-now { width: min(610px, 52vw); }
  .preset-festival .proof-cloud { grid-template-columns: 1fr; }
  .preset-festival .booking-shell { border-left: 0; border-top: 1px solid var(--line); padding-top: 42px; }
}

@media (max-width: 680px) {
  .preset-festival .hero,
  .preset-festival .hero-inner { min-height: 844px; }

  .demo-banner {
    padding: 6px 8px;
    font-size: 7px;
    line-height: 1.3;
    text-wrap: balance;
  }

  .preset-festival .hero-media::after {
    background:
      linear-gradient(180deg, rgba(5,5,5,.12) 0%, transparent 34%, rgba(5,5,5,.08) 51%, #050505 72%, #050505 100%);
  }

  .preset-festival .hero-media img {
    object-position: 50% 50%;
    filter: saturate(.94) contrast(1.055);
  }

  .preset-festival .hero-veil {
    width: 115vmax;
    left: -105vmax;
  }

  .preset-festival .hero-identity {
    top: 38%;
    left: 0;
    width: 100%;
  }

  .preset-festival .hero-identity .eyebrow {
    margin-bottom: 10px;
    font-size: 8px;
  }

  .preset-festival .hero-title {
    max-width: 5.1ch;
    font-size: clamp(66px, 19.5vw, 82px);
    line-height: .86;
  }

  .preset-festival .hero-tagline {
    max-width: 18ch;
    margin-top: 14px;
    font-size: 18px;
    line-height: .95;
  }

  .preset-festival .hero-now {
    right: 0;
    left: 0;
    bottom: 70px;
    width: 100%;
    gap: 8px;
  }

  .preset-festival .now-card {
    padding: 0 0 8px 13px;
  }

  .preset-festival .now-copy .eyebrow { margin-bottom: 5px; font-size: 8px; }
  .preset-festival .now-copy h2 { max-width: 13ch; font-size: 28px; line-height: .96; }
  .preset-festival .now-copy p { display: none; }
  .preset-festival .now-copy .button { min-height: 38px; padding: 9px 12px; font-size: 8px; }

  .preset-festival .countdown {
    width: 100%;
    justify-self: stretch;
    border-radius: 0;
    background: rgba(5,5,5,.68);
  }
  .preset-festival .countdown div,
  .preset-festival .countdown div:first-child {
    min-width: 0;
    border-radius: 0;
  }

  .preset-festival .hero-tail { height: 26px; }

  .preset-festival .section-title {
    font-size: clamp(48px, 14vw, 62px);
    line-height: .9;
    letter-spacing: -.065em;
  }
  .preset-festival .music-copy h3,
  .preset-festival .contact-intro h2 {
    font-size: clamp(48px, 14vw, 62px);
    line-height: .9;
    letter-spacing: -.065em;
  }
  .preset-festival .footer-name {
    font-size: clamp(48px, 13.4vw, 64px);
    line-height: .95;
    letter-spacing: -.08em;
  }

  .preset-festival .next-date-orb { width: min(78vw, 320px); }
  .preset-festival .live-shell {
    border-radius: 54px 54px 18px 18px;
  }
  .preset-festival .live-shell .media-player { border-radius: 38px 38px 12px 12px; }
  .preset-festival .contact-portal {
    border-radius: 54px 54px 18px 18px;
  }
  .preset-festival .proof-cloud { grid-template-columns: 1fr; gap: 26px; }
  .event-page-image { border-radius: 42px 42px 12px 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .preset-festival .hero-veil { display: none !important; }
  .preset-festival .hero-identity,
  .preset-festival .hero-now { animation: none !important; opacity: 1 !important; clip-path: none !important; transform: none !important; }
}
@media (max-width: 680px) {
  .preset-festival .hero-now { bottom: 100px; }
}

/* Audio players use a local facade; the official iframe loads only on intent. */
.media-audio-facade {
  width: 100%;
  min-height: var(--media-height, 220px);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(20px, 4vw, 46px);
  align-items: center;
  padding: clamp(22px, 4vw, 42px);
  border: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 82% 18%, rgba(219,212,144,.13), transparent 38%),
    linear-gradient(145deg, #10100d, #080808);
  text-align: left;
  cursor: pointer;
}
.audio-orbit {
  width: clamp(76px, 10vw, 128px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(219,212,144,.58);
  border-radius: 50%;
  color: var(--accent);
  background: radial-gradient(circle, #050505 0 58%, rgba(219,212,144,.08) 59% 100%);
  box-shadow: 0 0 42px rgba(219,212,144,.09);
}
.audio-orbit strong { font-size: clamp(16px, 2vw, 26px); letter-spacing: -.04em; }
.audio-facade-copy { display: grid; gap: 7px; min-width: 0; }
.audio-facade-copy > span {
  color: var(--accent);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.audio-facade-copy > strong {
  max-width: 16ch;
  font-family: var(--display);
  font-size: clamp(27px, 4vw, 54px);
  line-height: .86;
  letter-spacing: -.055em;
  text-transform: uppercase;
}
.audio-facade-copy > em {
  margin-top: 8px;
  color: var(--muted);
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.media-audio-facade:hover .audio-orbit,
.media-audio-facade:focus-visible .audio-orbit { background: var(--accent); color: var(--accent-text); }

@media (max-width: 680px) {
  .media-audio-facade { grid-template-columns: 70px 1fr; gap: 16px; padding: 18px; }
  .audio-orbit { width: 70px; }
  .audio-facade-copy > strong { font-size: 26px; }
}

/* Short landscape phones need their own poster composition: identity stays on
   the left, the active campaign stays on the right and non-essential prose is
   removed from the first viewport. */
@media (orientation: landscape) and (max-width: 980px) and (max-height: 520px) {
  :root {
    --page: calc(100vw - 40px);
    --header-h: 48px;
  }
  .demo-banner {
    padding: 5px 16px;
    font-size: 7px;
    line-height: 1.3;
    white-space: nowrap;
  }
  .site-header { height: var(--header-h); }
  .brand { font-size: 17px; }
  .menu-button { padding: 8px; font-size: 9px; }
  .preset-festival .hero,
  .preset-festival .hero-inner { min-height: max(390px, 100svh); }
  .preset-festival .hero-media::after {
    background:
      linear-gradient(90deg, rgba(5,5,5,.88) 0%, rgba(5,5,5,.34) 43%, rgba(5,5,5,.08) 64%, rgba(5,5,5,.5) 100%),
      linear-gradient(180deg, rgba(5,5,5,.1), transparent 58%, #050505 100%);
  }
  .preset-festival .hero-media img { object-position: 50% 43%; }
  .preset-festival .hero-veil { display: none; }
  .preset-festival .hero-identity {
    top: 24%;
    left: 0;
    width: 42%;
  }
  .preset-festival .hero-identity .eyebrow {
    margin-bottom: 7px;
    font-size: 7px;
  }
  .preset-festival .hero-title {
    max-width: 5.1ch;
    font-size: clamp(64px, 10vw, 92px);
    line-height: .82;
  }
  .preset-festival .hero-tagline {
    max-width: 16ch;
    margin-top: 9px;
    font-size: 15px;
    line-height: .95;
  }
  .preset-festival .hero-now {
    right: 0;
    bottom: 84px;
    width: 47%;
    gap: 6px;
  }
  .preset-festival .now-card { padding: 0 0 7px 12px; }
  .preset-festival .now-copy .eyebrow { margin-bottom: 4px; font-size: 7px; }
  .preset-festival .now-copy h2 {
    max-width: 12ch;
    font-size: clamp(28px, 4.4vw, 38px);
    line-height: .9;
  }
  .preset-festival .now-copy p { display: none; }
  .preset-festival .now-copy .button {
    min-height: 34px;
    padding: 8px 11px;
    font-size: 8px;
  }
  .preset-festival .countdown { display: none; }
  .preset-festival .countdown div,
  .preset-festival .countdown div:first-child {
    min-width: 0;
    padding: 7px 8px;
  }
  .preset-festival .countdown strong { font-size: 18px; }
  .preset-festival .hero-tail { height: 18px; }
  .action-dock { bottom: 8px; }
  .action-dock a { min-height: 34px; padding-inline: 11px; font-size: 8px; }
  .preset-festival .section-title,
  .preset-festival .music-copy h3,
  .preset-festival .contact-intro h2,
  .preset-festival .footer-name { line-height: .9; }
}

/* Contain monumental footer lettering so full-page captures and browsers never
   widen the layout while preserving the cropped poster treatment. */
.site-footer,
.site-footer .footer-inner {
  max-width: 100%;
  overflow-x: clip;
  overflow-y: visible;
}
