:root {
  --bg: #020202;
  --bg2: #080808;
  --bg3: #101010;
  --ink: #f4f4f4;
  --white: #f4f4f4;
  --soft: #d8d8d8;
  --muted: #9b9b9b;
  --muted2: #6d6d6d;
  --black: #000;
  --line: rgba(255,255,255,.14);
  --line-strong: rgba(255,255,255,.36);
  --panel: rgba(255,255,255,.045);
  --panel2: rgba(255,255,255,.08);
  --glass: rgba(3,3,3,.76);
  --max: 1240px;
  --pad: clamp(1rem, 4vw, 3.25rem);
  --section: clamp(4.25rem, 8.5vw, 9rem);
  --radius: 0px;
  --shadow: 0 28px 90px rgba(0,0,0,.86);
  --mx: 0px;
  --my: 0px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  background: #000;
  min-width: 320px;
}
body {
  margin: 0;
  min-width: 320px;
  min-height: 100svh;
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
  background:
    radial-gradient(circle at calc(16% + var(--mx)) calc(3% + var(--my)), rgba(255,255,255,.13), transparent min(34vw, 31rem)),
    radial-gradient(circle at calc(92% - var(--mx)) calc(18% - var(--my)), rgba(255,255,255,.075), transparent min(28vw, 24rem)),
    radial-gradient(circle at 50% 105%, rgba(255,255,255,.06), transparent 42rem),
    linear-gradient(135deg, #030303 0%, #0b0b0b 37%, #000 72%, #080808 100%);
  background-attachment: fixed;
}
body::before,
body::after {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
}
body::before {
  opacity: .26;
  background:
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,.038) 1px, transparent 1px);
  background-size: clamp(38px, 7vw, 92px) clamp(38px, 7vw, 92px);
  mask-image: radial-gradient(circle at 50% 20%, #000 0 38%, transparent 78%);
  animation: gridDrift 18s linear infinite;
}
body::after {
  opacity: .2;
  background:
    linear-gradient(115deg, transparent 0 42%, rgba(255,255,255,.08) 43%, transparent 44% 100%),
    linear-gradient(295deg, transparent 0 54%, rgba(255,255,255,.045) 55%, transparent 56% 100%);
  transform: translate3d(calc(var(--mx) * .28), calc(var(--my) * .28), 0);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
::selection { background: #fff; color: #000; }

.noise,
.scan {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 60;
}
.noise {
  opacity: .105;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='5' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.95'/%3E%3C/svg%3E");
  mix-blend-mode: screen;
  animation: noiseJump .85s steps(2) infinite;
}
.scan {
  opacity: .2;
  background:
    repeating-linear-gradient(to bottom, transparent 0 4px, rgba(255,255,255,.033) 4px 5px),
    linear-gradient(to bottom, transparent 0%, rgba(255,255,255,.08) 48%, transparent 52% 100%);
  background-size: auto, 100% 34rem;
  animation: scanMove 5.5s linear infinite;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(.7rem, 2vw, 1.2rem);
  width: 100%;
  padding: clamp(.78rem, 1.8vw, 1.15rem) var(--pad);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(to bottom, rgba(0,0,0,.9), rgba(0,0,0,.66));
  backdrop-filter: blur(20px) saturate(1.2);
}
.site-header::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.75), transparent);
  transform: translateX(-100%);
  animation: headerSweep 6s ease-in-out infinite;
}
.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  font-family: "Arial Black", Impact, sans-serif;
  letter-spacing: .21em;
  font-size: clamp(1.24rem, 2.4vw, 2.05rem);
  line-height: .88;
  text-transform: uppercase;
  filter: drop-shadow(8px 0 0 rgba(255,255,255,.055));
}
.brand::after {
  content: "";
  position: absolute;
  left: 0;
  right: .2em;
  bottom: .16em;
  height: .08em;
  background: currentColor;
  transform: scaleX(.18);
  transform-origin: left;
  opacity: .45;
  transition: transform .35s ease, opacity .35s ease;
}
.brand:hover::after { transform: scaleX(1); opacity: .9; }
.slashed-o {
  position: relative;
  display: inline-block;
}
.slashed-o::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -10%;
  width: .1em;
  height: 124%;
  background: currentColor;
  transform: translateX(-50%) rotate(22deg);
  transform-origin: center;
}
.slashed-o.big::after { width: .068em; }

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: clamp(.4rem, 1vw, .65rem);
}
.nav a,
.nav-toggle,
.btn,
.listen-row a,
.link-cloud a,
.gig-item a {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.036);
  color: var(--ink);
  padding: .74rem .9rem;
  text-transform: uppercase;
  font: 800 clamp(.66rem, .8vw, .74rem)/1 "Space Mono", monospace;
  letter-spacing: .13em;
  transition: transform .24s ease, border-color .24s ease, background .24s ease, color .24s ease, box-shadow .24s ease;
}
.nav a::before,
.nav-toggle::before,
.btn::before,
.listen-row a::before,
.link-cloud a::before,
.gig-item a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #fff;
  transform: translateX(-105%) skewX(-18deg);
  transition: transform .32s ease;
}
.nav a:hover,
.btn:hover,
.listen-row a:hover,
.link-cloud a:hover,
.gig-item a:hover,
.nav-toggle:hover {
  border-color: var(--ink);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 12px 34px rgba(255,255,255,.08);
}
.nav a:hover::before,
.nav-toggle:hover::before,
.btn:hover::before,
.listen-row a:hover::before,
.link-cloud a:hover::before,
.gig-item a:hover::before { transform: translateX(0) skewX(0); }
.admin-link { opacity: .58; }
.nav-toggle {
  display: none;
  cursor: pointer;
}

main {
  position: relative;
  z-index: 1;
}
.section,
.hero {
  width: min(var(--max), calc(100% - (var(--pad) * 2)));
  margin-inline: auto;
}
.section {
  padding-block: var(--section);
}
.section-grid {
  min-height: calc(100svh - clamp(64px, 8vw, 86px));
  min-height: calc(100dvh - clamp(64px, 8vw, 86px));
  display: grid;
  grid-template-columns: minmax(0, 1.07fr) minmax(clamp(250px, 30vw, 410px), .74fr);
  gap: clamp(1.4rem, 6vw, 6rem);
  align-items: center;
  padding-block: clamp(2.75rem, 6.2vw, 6.5rem);
}
.hero-copy,
.portrait-frame,
.track-card,
.gig-item,
.bio-section,
.contact {
  will-change: transform;
}
.kicker,
.eyebrow,
.track-meta,
.location {
  color: var(--muted);
  font: 800 clamp(.68rem, .9vw, .78rem)/1.5 "Space Mono", monospace;
  letter-spacing: clamp(.14em, .8vw, .23em);
  text-transform: uppercase;
}
.glitch-line {
  display: inline-block;
  animation: pulseLine 2.8s infinite steps(2);
}
h1,
h2,
h3,
p { margin: 0; }
h1 {
  position: relative;
  margin-top: clamp(.85rem, 2vw, 1.2rem);
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(4.45rem, 18vw, 15.25rem);
  line-height: .76;
  letter-spacing: -.085em;
  text-transform: uppercase;
  filter: drop-shadow(clamp(7px, 1.5vw, 17px) 0 0 rgba(255,255,255,.065));
  transform: translate3d(calc(var(--mx) * .13), calc(var(--my) * .08), 0);
}
.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  opacity: .6;
  pointer-events: none;
}
.glitch::before {
  transform: translate(3px, -2px);
  clip-path: inset(0 0 47% 0);
  animation: glitchA 2.65s infinite;
}
.glitch::after {
  transform: translate(-3px, 2px);
  clip-path: inset(54% 0 0 0);
  animation: glitchB 3.15s infinite;
}
.tagline {
  margin-top: clamp(1.15rem, 2.6vw, 1.8rem);
  max-width: 780px;
  font-size: clamp(1.28rem, 3.65vw, 3.65rem);
  font-weight: 950;
  line-height: .95;
  letter-spacing: -.055em;
  text-transform: uppercase;
  text-wrap: balance;
}
.location { margin-top: clamp(.75rem, 1.4vw, 1.1rem); }
.hero-actions {
  display: flex;
  gap: .72rem;
  margin-top: clamp(1.55rem, 3vw, 2.25rem);
  flex-wrap: wrap;
}
.btn.primary {
  background: var(--ink);
  color: #000;
  border-color: var(--ink);
}
.btn.primary::before { background: #000; }
.btn.primary:hover { color: var(--ink); }

.portrait-frame {
  position: relative;
  width: min(100%, 490px);
  justify-self: end;
  padding: clamp(.55rem, 1vw, .82rem);
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(145deg, rgba(255,255,255,.14), rgba(255,255,255,.018)),
    repeating-linear-gradient(90deg, transparent 0 10px, rgba(255,255,255,.026) 10px 11px);
  box-shadow: var(--shadow);
  transform: rotate(1.2deg) translate3d(calc(var(--mx) * -.12), calc(var(--my) * -.08), 0);
  animation: frameFloat 7s ease-in-out infinite;
}
.portrait-frame::before,
.portrait-frame::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.portrait-frame::before {
  inset: clamp(-18px, -1.3vw, -10px);
  border: 1px solid rgba(255,255,255,.08);
  z-index: -1;
}
.portrait-frame::after {
  inset: .75rem;
  background:
    linear-gradient(to bottom, transparent 0 58%, rgba(255,255,255,.11) 59%, transparent 61%),
    repeating-linear-gradient(to bottom, transparent 0 12px, rgba(255,255,255,.05) 12px 13px);
  mix-blend-mode: overlay;
  opacity: .25;
  animation: portraitGlitch 4.8s steps(2) infinite;
}
.portrait-frame img {
  width: 100%;
  height: auto;
  min-height: clamp(330px, 50svh, 620px);
  max-height: min(72svh, 760px);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: grayscale(1) contrast(1.3) brightness(.86);
}
.frame-label {
  position: absolute;
  left: clamp(.55rem, 1vw, .82rem);
  right: clamp(.55rem, 1vw, .82rem);
  bottom: clamp(.55rem, 1vw, .82rem);
  padding: .82rem;
  background: rgba(0,0,0,.78);
  border-top: 1px solid rgba(255,255,255,.2);
  font: 800 .68rem/1.25 "Space Mono", monospace;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.ticker {
  position: relative;
  z-index: 2;
  width: 105vw;
  margin-left: -2.5vw;
  border-block: 1px solid var(--line);
  overflow: hidden;
  white-space: nowrap;
  background: #e8e8e8;
  color: #050505;
  transform: rotate(-1deg);
  box-shadow: 0 20px 70px rgba(0,0,0,.45);
}
.ticker::before,
.ticker::after {
  content: "";
  position: absolute;
  inset-block: 0;
  width: clamp(2rem, 8vw, 8rem);
  z-index: 2;
  pointer-events: none;
}
.ticker::before { left: 0; background: linear-gradient(90deg, #e8e8e8, transparent); }
.ticker::after { right: 0; background: linear-gradient(270deg, #e8e8e8, transparent); }
.ticker div {
  display: inline-flex;
  gap: clamp(1.1rem, 3vw, 2.2rem);
  padding: clamp(.72rem, 1.2vw, .95rem) 0;
  animation: ticker 16s linear infinite;
}
.ticker span {
  font: 950 clamp(.76rem, 1vw, .95rem)/1 "Space Mono", monospace;
  letter-spacing: .18em;
}

.section-head {
  display: grid;
  gap: .75rem;
  margin-bottom: clamp(1.5rem, 3.5vw, 2.6rem);
  max-width: min(760px, 100%);
}
.section-head h2,
.bio-section h2,
.contact h2 {
  font-size: clamp(2.55rem, 8.2vw, 7.65rem);
  line-height: .86;
  letter-spacing: -.075em;
  text-transform: uppercase;
  font-weight: 950;
  text-wrap: balance;
}
.section-head p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(.98rem, 1.35vw, 1.12rem);
  line-height: 1.7;
  max-width: 66ch;
}

.track-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 520px), 1fr));
  gap: clamp(.82rem, 1.5vw, 1.25rem);
}
.track-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(180px, clamp(190px, 28vw, 255px)) minmax(0, 1fr);
  gap: clamp(.72rem, 1.5vw, 1.1rem);
  min-height: clamp(260px, 32vw, 330px);
  padding: clamp(.62rem, 1vw, .85rem);
  background:
    linear-gradient(145deg, rgba(255,255,255,.078), rgba(255,255,255,.03)),
    var(--panel);
  border: 1px solid var(--line);
  transition: transform .28s ease, background .28s ease, border-color .28s ease, box-shadow .28s ease;
}
.track-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 0 34%, rgba(255,255,255,.18) 45%, transparent 56% 100%);
  opacity: 0;
  transform: translateX(-20%);
  transition: opacity .28s ease, transform .5s ease;
}
.track-card:hover {
  transform: translateY(-6px) skewX(-.35deg);
  background: var(--panel2);
  border-color: var(--line-strong);
  box-shadow: 0 24px 70px rgba(0,0,0,.52);
}
.track-card:hover::before { opacity: 1; transform: translateX(20%); }
.cover-wrap {
  position: relative;
  overflow: hidden;
  min-height: 0;
  background: #000;
  border: 1px solid rgba(255,255,255,.08);
}
.cover-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, transparent 0 68%, rgba(0,0,0,.52)),
    repeating-linear-gradient(90deg, transparent 0 7px, rgba(255,255,255,.04) 7px 8px);
  opacity: .58;
  pointer-events: none;
  mix-blend-mode: overlay;
}
.cover-wrap img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: grayscale(1) contrast(1.18) brightness(.9);
  transition: transform .5s ease, filter .5s ease;
}
.track-card:hover .cover-wrap img {
  transform: scale(1.06) rotate(.5deg);
  filter: grayscale(1) contrast(1.38) brightness(.82);
}
.status {
  position: absolute;
  left: .72rem;
  top: .72rem;
  z-index: 2;
  max-width: calc(100% - 1.44rem);
  background: #fff;
  color: #000;
  padding: .47rem .58rem;
  font: 950 .63rem/1 "Space Mono", monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(0,0,0,.42);
}
.track-body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: clamp(.35rem, .8vw, .55rem) clamp(.14rem, .5vw, .3rem);
}
.track-body h3 {
  margin-top: .25rem;
  font-size: clamp(1.45rem, 3.05vw, 2.72rem);
  letter-spacing: -.052em;
  text-transform: uppercase;
  line-height: .92;
  text-wrap: balance;
}
.track-body p:not(.track-meta) {
  color: var(--muted);
  line-height: 1.58;
  margin-top: clamp(.75rem, 1.4vw, 1rem);
  overflow-wrap: anywhere;
}
.listen-row {
  display: flex;
  flex-wrap: wrap;
  gap: .48rem;
  margin-top: auto;
  padding-top: clamp(1rem, 2vw, 1.6rem);
}
.listen-row a { padding: .64rem .72rem; }

.split {
  display: grid;
  grid-template-columns: minmax(240px, .72fr) minmax(0, 1.28fr);
  gap: clamp(1.8rem, 6vw, 5.5rem);
}
.sticky-title {
  position: sticky;
  top: clamp(5.5rem, 9vw, 7.5rem);
  align-self: start;
}
.gig-list {
  display: grid;
  gap: clamp(.62rem, 1.1vw, .86rem);
}
.gig-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(118px, 150px) minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(.8rem, 1.6vw, 1.2rem);
  min-height: 96px;
  padding: clamp(.82rem, 1.4vw, 1.1rem);
  border: 1px solid var(--line);
  background:
    linear-gradient(110deg, rgba(255,255,255,.06), rgba(255,255,255,.025)),
    var(--panel);
  transition: transform .26s ease, border-color .26s ease, background .26s ease;
}
.gig-item::before {
  content: "";
  position: absolute;
  inset-block: 0;
  left: 0;
  width: 3px;
  background: #fff;
  transform: scaleY(.18);
  opacity: .5;
  transition: transform .26s ease, opacity .26s ease;
}
.gig-item:hover {
  transform: translateX(5px);
  border-color: var(--ink);
  background: var(--panel2);
}
.gig-item:hover::before { transform: scaleY(1); opacity: 1; }
.gig-item.empty-state {
  border-style: dashed;
  opacity: .84;
}
.gig-item.empty-state h3 { color: var(--white); }
.gig-date {
  align-self: stretch;
  display: grid;
  place-items: center;
  min-height: 64px;
  font: 950 clamp(.68rem, .9vw, .79rem)/1.35 "Space Mono", monospace;
  letter-spacing: .13em;
  color: #000;
  background: #fff;
  padding: .7rem;
  text-align: center;
  text-transform: uppercase;
}
.gig-item h3 {
  text-transform: uppercase;
  font-size: clamp(1.12rem, 1.8vw, 1.42rem);
  line-height: 1.05;
  letter-spacing: -.025em;
}
.gig-item p {
  color: var(--muted);
  margin-top: .28rem;
  overflow-wrap: anywhere;
}

.bio-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(180px, .52fr) minmax(0, 1fr) minmax(180px, .54fr);
  gap: clamp(1.25rem, 3.5vw, 2.4rem);
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.bio-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.045), transparent);
  opacity: .45;
}
.bio-text {
  position: relative;
  font-size: clamp(1.08rem, 2vw, 1.7rem);
  line-height: 1.55;
  color: #d7d7d7;
  text-wrap: pretty;
}
.meters {
  position: relative;
  display: grid;
  gap: 1rem;
}
.meters span {
  display: grid;
  gap: .45rem;
  color: var(--muted);
  font: 800 .7rem/1 "Space Mono", monospace;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.meters span::after {
  content: "";
  height: 7px;
  width: var(--w);
  background:
    repeating-linear-gradient(90deg, #fff 0 10px, rgba(255,255,255,.36) 10px 13px);
  box-shadow: 0 0 18px rgba(255,255,255,.25);
  animation: meter 2.4s cubic-bezier(.2,.8,.2,1) both, meterPulse 2.1s ease-in-out infinite alternate;
}
.contact {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: clamp(1.4rem, 4vw, 2.8rem);
  align-items: center;
}
.mail {
  display: inline-block;
  margin-top: 1rem;
  color: #fff;
  font-size: clamp(1.12rem, 3vw, 2.05rem);
  font-weight: 950;
  line-height: 1.1;
  letter-spacing: -.045em;
  border-bottom: 2px solid #fff;
  overflow-wrap: anywhere;
}
.link-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: flex-end;
}
.link-cloud a {
  font-size: clamp(.72rem, 1vw, .86rem);
  padding: .95rem 1.12rem;
}
footer {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem var(--pad);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font: 800 .7rem/1.35 "Space Mono", monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(28px) scale(.985);
  transition: opacity .78s ease, transform .78s cubic-bezier(.2,.8,.2,1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.delay-1 { transition-delay: .15s; }

@keyframes ticker { to { transform: translateX(-50%); } }
@keyframes pulseLine {
  0%, 100% { opacity: 1; transform: translateX(0); }
  45% { opacity: .34; transform: translateX(2px); }
  48% { opacity: .9; transform: translateX(-1px); }
  52% { opacity: .2; transform: translateX(5px); }
}
@keyframes glitchA {
  0%, 88%, 100% { transform: translate(3px,-2px); filter: blur(0); }
  89% { transform: translate(17px,-5px); filter: blur(.3px); }
  91% { transform: translate(-10px,3px); }
  94% { transform: translate(5px,-1px); }
}
@keyframes glitchB {
  0%, 86%, 100% { transform: translate(-3px,2px); filter: blur(0); }
  87% { transform: translate(-16px,3px); filter: blur(.2px); }
  90% { transform: translate(9px,-4px); }
  93% { transform: translate(-4px,1px); }
}
@keyframes meter { from { width: 0; } }
@keyframes meterPulse { to { opacity: .62; filter: brightness(.82); } }
@keyframes gridDrift { to { background-position: 92px 92px; } }
@keyframes scanMove { to { background-position: 0 0, 0 34rem; } }
@keyframes noiseJump {
  0% { transform: translate3d(0,0,0); }
  25% { transform: translate3d(-1%,1%,0); }
  50% { transform: translate3d(1%,-1%,0); }
  75% { transform: translate3d(-.5%,-.8%,0); }
}
@keyframes headerSweep {
  0%, 72% { transform: translateX(-100%); opacity: 0; }
  82% { opacity: .9; }
  100% { transform: translateX(100%); opacity: 0; }
}
@keyframes frameFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}
@keyframes portraitGlitch {
  0%, 86%, 100% { transform: translateY(0); opacity: .23; }
  88% { transform: translateY(-8px); opacity: .48; }
  91% { transform: translateY(5px); opacity: .18; }
}

@media (min-width: 1500px) {
  :root { --max: 1380px; }
  .track-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1900px) {
  :root { --max: 1540px; --section: clamp(5rem, 7vw, 10rem); }
  .section-grid { grid-template-columns: minmax(0, 1.1fr) minmax(380px, .66fr); }
  .track-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .track-card { grid-template-columns: 1fr; }
  .cover-wrap img { height: auto; }
}

@media (max-width: 1120px) {
  .section-grid,
  .split,
  .bio-section,
  .contact {
    grid-template-columns: 1fr;
  }
  .section-grid {
    min-height: auto;
    align-items: start;
  }
  .portrait-frame {
    justify-self: start;
    max-width: min(520px, 100%);
  }
  .portrait-frame img {
    min-height: 0;
    max-height: none;
  }
  .sticky-title { position: static; }
  .link-cloud { justify-content: flex-start; }
  .meters { max-width: 520px; }
}

@media (max-width: 820px) {
  :root { --pad: clamp(.9rem, 4.6vw, 1.4rem); }
  .site-header { align-items: center; }
  .nav-toggle { display: inline-flex; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    grid-template-columns: 1fr;
    padding: 1rem var(--pad) 1.15rem;
    background: rgba(0,0,0,.97);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 28px 70px rgba(0,0,0,.72);
  }
  .nav.open { display: grid; }
  .nav a { width: 100%; text-align: center; padding: .95rem; }
  .hero-actions .btn { flex: 1 1 180px; text-align: center; }
  .track-card {
    grid-template-columns: minmax(0, .82fr) minmax(0, 1fr);
    min-height: auto;
  }
  .gig-item {
    grid-template-columns: minmax(104px, 128px) minmax(0, 1fr);
  }
  .gig-item a {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 620px) {
  .section,
  .hero { width: min(100% - 1.5rem, var(--max)); }
  .section { padding-block: clamp(3.5rem, 13vw, 5.2rem); }
  .section-grid { padding-block: clamp(2.25rem, 10vw, 4rem); }
  h1 { font-size: clamp(4.3rem, 28vw, 8.2rem); }
  .tagline { font-size: clamp(1.22rem, 7vw, 2.15rem); }
  .portrait-frame { transform: rotate(.6deg); animation-duration: 8s; }
  .track-grid { grid-template-columns: 1fr; }
  .track-card {
    grid-template-columns: 1fr;
    gap: .85rem;
  }
  .cover-wrap img {
    height: auto;
    min-height: 0;
  }
  .track-body { min-height: 0; }
  .listen-row a,
  .link-cloud a {
    flex: 1 1 auto;
    text-align: center;
  }
  .gig-item {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .gig-item a { grid-column: auto; }
  .gig-date {
    width: fit-content;
    min-height: 0;
    min-width: 112px;
  }
  .bio-section { gap: 1.25rem; }
  .contact { align-items: start; }
  .link-cloud { display: grid; grid-template-columns: 1fr; }
  footer { flex-direction: column; }
}

@media (max-width: 380px) {
  .brand { letter-spacing: .15em; font-size: 1.08rem; }
  .nav-toggle { padding: .66rem .7rem; }
  h1 { font-size: clamp(3.55rem, 27vw, 5.2rem); }
  .section-head h2,
  .bio-section h2,
  .contact h2 { font-size: clamp(2.15rem, 14vw, 3.4rem); }
}

@media (orientation: landscape) and (max-height: 560px) {
  .section-grid {
    min-height: auto;
    padding-block: 2rem;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 330px);
  }
  h1 { font-size: clamp(4rem, 16vh, 7rem); }
  .tagline { font-size: clamp(1.15rem, 5vh, 2rem); }
  .portrait-frame img {
    min-height: 0;
    max-height: 68vh;
  }
  .hero-actions { margin-top: 1.2rem; }
  .ticker div { animation-duration: 12s; }
}

@media (min-aspect-ratio: 18/9) and (min-width: 1000px) {
  .section-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, .55fr);
    min-height: min(860px, calc(100svh - 76px));
  }
  h1 { font-size: clamp(6rem, 13vw, 15rem); }
  .portrait-frame { width: min(32vw, 470px); }
  .portrait-frame img { max-height: 74svh; }
}

@media (max-aspect-ratio: 4/5) {
  body {
    background:
      radial-gradient(circle at 15% 6%, rgba(255,255,255,.13), transparent 20rem),
      radial-gradient(circle at 80% 28%, rgba(255,255,255,.08), transparent 18rem),
      linear-gradient(155deg, #030303, #0a0a0a 45%, #000);
  }
  .section-grid {
    min-height: auto;
    gap: 2rem;
  }
  .portrait-frame { width: min(100%, 560px); }
}

@supports (container-type: inline-size) {
  .track-grid { container-type: inline-size; }
  @container (max-width: 620px) {
    .track-card { grid-template-columns: 1fr; }
  }
}

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