:root {
  --black: #050505;
  --ink: #0b0b0b;
  --surface: #101010;
  --surface-2: #161616;
  --concrete: #7a7a72;
  --dirty: #e7e7dd;
  --muted: #a7a79b;
  --acid: #ff3344;
  --acid-soft: rgba(255, 51, 68, 0.16);
  --red: #6a1111;
  --red-hot: #d32929;
  --purple: #24142f;
  --beige: #bdb29b;
  --line: rgba(231, 231, 221, 0.12);
  --line-strong: rgba(231, 231, 221, 0.22);
  --header-h: 74px;
  --radius: 8px;
  --container: 1180px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  color: var(--dirty);
  background:
    radial-gradient(circle at 12% 10%, rgba(106, 17, 17, 0.28), transparent 30rem),
    radial-gradient(circle at 84% 0%, rgba(36, 20, 47, 0.55), transparent 34rem),
    linear-gradient(180deg, var(--black), #080808 55%, var(--black));
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.58;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.9), rgba(0,0,0,0.15));
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
a {
  touch-action: manipulation;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--acid);
  outline-offset: 4px;
}

::selection {
  background: var(--acid);
  color: var(--black);
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 500;
  padding: 10px 14px;
  background: var(--acid);
  color: var(--black);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.grain,
.scanlines {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.grain {
  z-index: 90;
  opacity: 0.08;
  animation: grain-shift 0.7s steps(2) infinite;
  will-change: transform;
}

.scanlines {
  z-index: 91;
  opacity: 0.1;
  background: repeating-linear-gradient(180deg, transparent 0 6px, rgba(0, 0, 0, 0.25) 8px);
}

@keyframes grain-shift {
  0% { transform: translate3d(0,0,0); }
  50% { transform: translate3d(-2%,1%,0); }
  100% { transform: translate3d(1%,-2%,0); }
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  background: var(--black);
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-panel {
  width: min(420px, calc(100vw - 40px));
  padding: 28px;
  border: 1px solid var(--line-strong);
  background: linear-gradient(145deg, rgba(16,16,16,0.94), rgba(5,5,5,0.96));
  box-shadow: 0 30px 90px rgba(0,0,0,0.65);
}

.loader-code,
.loader-sub,
.file-label,
.kicker,
.player-head,
.hero-meta,
.tour-row time,
.tour-row mark,
.photo-tile span,
.clip-card strong,
.social-grid span {
  font-family: "Roboto Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0;
  text-transform: uppercase;
}

.loader-panel strong {
  display: block;
  margin: 8px 0;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(38px, 12vw, 78px);
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 4px 4px 0 #5a0f1e, 8px 8px 0 #000;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 120;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 0 clamp(16px, 4vw, 52px);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.68);
  backdrop-filter: blur(18px);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  background: rgba(5,5,5,0.92);
  box-shadow: 0 16px 50px rgba(0,0,0,0.45);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  font-family: "Archivo Black", Impact, sans-serif;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--black);
  background:
    linear-gradient(135deg, var(--acid), #ff7b88);
  border: 2px solid var(--black);
  box-shadow: 4px 4px 0 #5a0f1e;
  transform: rotate(-4deg) skew(-7deg);
}

.brand-name {
  font-size: clamp(19px, 2.4vw, 28px);
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.5vw, 18px);
}

.nav-links a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  color: var(--muted);
  font-family: "Roboto Mono", ui-monospace, monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.nav-links a::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-right: 7px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid var(--line-strong);
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.active {
  color: var(--dirty);
  background: rgba(231,231,221,0.06);
}

.nav-links a.active::before {
  background: var(--acid);
  box-shadow: 0 0 12px var(--acid);
}

.external-link {
  border: 1px solid var(--line);
}

.external-link::after {
  content: "->";
  margin-left: 6px;
}

.hamburger {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(231,231,221,0.04);
  color: var(--dirty);
}

.hamburger span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--line);
}

section[id] {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

.hero#top {
  scroll-margin-top: 0;
}

.hero picture {
  position: absolute;
  inset: 0;
  z-index: -4;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 24%;
  filter: grayscale(0.12) saturate(1.05) contrast(1.18) brightness(0.53);
  transform: scale(1.05);
  will-change: transform;
}

.hero-smoke,
.hero-shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-smoke {
  z-index: -3;
  background:
    radial-gradient(ellipse at 16% 72%, rgba(255,51,68,0.13), transparent 30rem),
    radial-gradient(ellipse at 72% 28%, rgba(106,17,17,0.38), transparent 34rem),
    linear-gradient(115deg, transparent 0%, rgba(231,231,221,0.08) 45%, transparent 52%);
  mix-blend-mode: screen;
  animation: smoke-drift 8s ease-in-out infinite alternate;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(5,5,5,0.5), rgba(5,5,5,0.14) 34%, rgba(5,5,5,0.82) 82%, var(--black)),
    linear-gradient(90deg, rgba(5,5,5,0.88), rgba(5,5,5,0.18) 56%, rgba(5,5,5,0.5));
}

@keyframes smoke-drift {
  from { transform: translateX(-2%) scale(1); opacity: 0.65; }
  to { transform: translateX(2%) scale(1.08); opacity: 0.9; }
}

.hero-content {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  padding: calc(var(--header-h) + 74px) 0 clamp(112px, 15vw, 160px);
}

.kicker {
  margin: 0 0 14px;
  color: var(--acid);
  font-size: clamp(12px, 1.8vw, 14px);
}

.hero-title,
h2,
h3 {
  margin: 0;
  font-family: "Archivo Black", Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero-title {
  max-width: 920px;
  font-size: clamp(76px, 18vw, 228px);
  line-height: 0.84;
  color: var(--dirty);
  text-shadow: 5px 5px 0 #5a0f1e, 10px 10px 0 #000;
}

.hero-title::after {
  content: "";
  display: block;
  width: min(100%, 760px);
  height: clamp(6px, 0.8vw, 12px);
  margin-top: clamp(8px, 1.2vw, 16px);
  background: linear-gradient(90deg, var(--acid), transparent);
  opacity: 0.76;
  transform: skew(-18deg);
}

.hero-copy {
  max-width: 560px;
  margin: 28px 0 0;
  color: rgba(231,231,221,0.84);
  font-size: clamp(18px, 2.4vw, 25px);
  line-height: 1.35;
}

.hero-actions,
.release-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.release-actions {
  margin-top: 20px;
}

.release-actions .button {
  min-width: 132px;
  padding-inline: 16px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 150px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  font-family: "Roboto Mono", ui-monospace, monospace;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  cursor: pointer;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.6);
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px dashed rgba(5,5,5,0.32);
  opacity: 0.6;
}

.button-primary {
  color: var(--black);
  background: var(--acid);
  border-color: var(--acid);
}

.button-ghost {
  color: var(--dirty);
  background: rgba(231,231,221,0.05);
}

.button:hover,
.button:focus-visible {
  transform: translate(-2px, -2px) rotate(-1deg);
  border-color: var(--acid);
  box-shadow: 6px 6px 0 #5a0f1e;
}

.button:active {
  transform: translate(1px, 1px);
  box-shadow: 2px 2px 0 #000;
}

.button-icon {
  font-size: 10px;
}

.hero-meta {
  position: absolute;
  left: clamp(16px, 4vw, 52px);
  bottom: 28px;
  display: flex;
  gap: 14px;
  color: rgba(231,231,221,0.62);
  font-size: 11px;
}

.section {
  position: relative;
  padding: clamp(62px, 7vw, 108px) clamp(16px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(231,231,221,0.035), transparent 20%, transparent 80%, rgba(106,17,17,0.1));
}

.section-head,
.music-layout,
.dossier,
.tour-list,
.clips-grid,
.photo-grid,
.signal-layout {
  position: relative;
  z-index: 1;
  width: min(var(--container), 100%);
  margin-inline: auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 420px);
  gap: 24px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head h2 {
  grid-column: 1;
  font-size: clamp(44px, 8vw, 104px);
  line-height: 0.9;
}

.section-head .kicker {
  grid-column: 1 / -1;
  margin: 0;
}

.section-head p:last-child {
  grid-column: 2;
  margin: 0 0 8px;
  color: var(--muted);
  max-width: 440px;
}

.music-section {
  background: linear-gradient(180deg, var(--black), #090909);
}

.music-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 1.2fr);
  gap: 18px;
  align-items: stretch;
}

.music-layout > * {
  min-width: 0;
}

.release-card,
.soundcloud-shell,
.dossier,
.contact-card,
.track-board,
.booking-dossier {
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(145deg, rgba(22,22,22,0.92), rgba(8,8,8,0.96)),
    radial-gradient(circle at 10% 10%, rgba(255,51,68,0.08), transparent 18rem);
  box-shadow: 0 28px 70px rgba(0,0,0,0.42);
}

.release-card {
  display: grid;
  grid-template-columns: minmax(150px, 170px) minmax(0, 1fr);
  gap: 18px;
  padding: 16px;
  overflow: hidden;
}

.release-art {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink);
}

.release-art img,
.dossier-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.18) contrast(1.15) brightness(0.82);
}

.release-art span {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 6px 8px;
  color: var(--black);
  background: var(--acid);
  font-family: "Roboto Mono", ui-monospace, monospace;
  font-size: 11px;
  text-transform: uppercase;
}

.release-copy {
  min-width: 0;
  align-self: end;
  padding: 8px 4px;
}

.release-copy h3 {
  max-width: 100%;
  font-size: clamp(26px, 2.5vw, 38px);
  line-height: 0.98;
  overflow-wrap: anywhere;
  word-break: normal;
}

.release-copy p:not(.file-label) {
  max-width: 34ch;
}

.file-label {
  margin: 0 0 10px;
  color: var(--acid);
  font-size: 12px;
}

h3 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
}

.release-copy p:not(.file-label),
.dossier-copy p,
.contact-card p {
  color: var(--muted);
}

.soundcloud-shell {
  overflow: hidden;
}

.soundcloud-frame {
  min-height: 420px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 22% 18%, rgba(255,51,68,0.1), transparent 14rem),
    linear-gradient(145deg, rgba(0,0,0,0.55), rgba(5,5,5,0.96)),
    image-set(url("images/photo_16_2026-06-15_00-11-00-960.avif") type("image/avif"), url("images/photo_16_2026-06-15_00-11-00-960.webp") type("image/webp"), url("images/photo_16_2026-06-15_00-11-00.jpg") type("image/jpeg")) center 30% / cover;
}

.soundcloud-frame.loaded {
  display: block;
  min-height: 0;
  background: var(--surface);
}

.soundcloud-loader {
  width: min(360px, calc(100% - 36px));
  min-height: 164px;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 8px;
  padding: 22px;
  border: 1px solid rgba(255,51,68,0.48);
  color: var(--dirty);
  background: rgba(0,0,0,0.7);
  box-shadow: 6px 6px 0 rgba(106,17,17,0.64);
  cursor: pointer;
  text-align: left;
  transform: rotate(-1deg);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.soundcloud-loader:hover,
.soundcloud-loader:focus-visible {
  transform: translateY(-3px) rotate(-1deg);
  border-color: var(--acid);
  background: rgba(5,5,5,0.88);
}

.soundcloud-loader span,
.soundcloud-loader em,
.track-row span,
.track-row p,
.log-row time,
.log-row span,
.lightbox-count,
.keyboard-hint {
  font-family: "Roboto Mono", ui-monospace, monospace;
  letter-spacing: 0;
  text-transform: uppercase;
}

.soundcloud-loader span {
  color: var(--acid);
  font-size: 12px;
}

.soundcloud-loader strong {
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 0.9;
  text-transform: uppercase;
  text-shadow: 3px 3px 0 var(--red), 6px 6px 0 #000;
}

.soundcloud-loader em {
  color: rgba(231,231,221,0.72);
  font-size: 11px;
  font-style: normal;
}

.player-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  color: var(--muted);
  font-size: 12px;
  border-bottom: 1px solid var(--line);
  background: rgba(0,0,0,0.34);
}

.player-head span {
  color: var(--acid);
}

.player-head a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.soundcloud-shell iframe {
  display: block;
  width: 100%;
  background: var(--surface);
}

.player-fallback {
  margin: 0;
  padding: 12px 14px;
  color: var(--muted);
  font-size: 13px;
  border-top: 1px solid var(--line);
}

.track-board {
  position: relative;
  z-index: 1;
  width: min(var(--container), 100%);
  margin: 18px auto 0;
  overflow: hidden;
}

.track-row {
  display: grid;
  grid-template-columns: 110px minmax(220px, 1fr) minmax(180px, 0.75fr) 90px;
  gap: 12px;
  align-items: center;
  min-height: 72px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(0,0,0,0.18);
  transition: transform 0.18s ease, background 0.18s ease;
}

.track-row:last-child {
  border-bottom: 0;
}

.track-row:hover,
.track-row:focus-within {
  transform: translateX(5px);
  background: rgba(255,51,68,0.055);
  cursor: pointer;
}

.track-row-muted {
  cursor: default;
}

.track-row-muted:hover,
.track-row-muted:focus-within {
  transform: none;
}

.track-row span {
  color: var(--acid);
  font-size: 12px;
}

.track-row strong {
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1;
  text-transform: uppercase;
}

.track-row p {
  margin: 0;
  color: rgba(231,231,221,0.7);
  font-size: 12px;
}

.track-play-icon {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--acid);
  font-family: "Roboto Mono", ui-monospace, monospace;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 0.15s ease, color 0.15s ease;
}

.track-play-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--dirty);
  text-decoration: underline;
  text-decoration-color: var(--red-hot);
  text-underline-offset: 5px;
}

.track-row:hover .track-play-icon {
  transform: scale(1.3);
  color: var(--dirty);
  text-shadow: 0 0 12px var(--acid-soft);
}

.bio-section {
  background:
    radial-gradient(circle at 78% 26%, rgba(36,20,47,0.5), transparent 28rem),
    var(--surface);
}

.dossier {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(320px, 1.2fr);
  gap: 22px;
  padding: clamp(14px, 2vw, 24px);
}

.dossier-photo {
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  transform: rotate(-1deg);
}

.dossier-copy {
  display: grid;
  align-content: center;
  padding: clamp(10px, 3vw, 36px);
}

.stamp {
  width: max-content;
  max-width: 100%;
  margin-bottom: 24px;
  padding: 8px 12px;
  color: var(--red-hot);
  border: 2px solid var(--red-hot);
  font-family: "Roboto Mono", ui-monospace, monospace;
  font-weight: 700;
  text-transform: uppercase;
  transform: rotate(2deg);
}

.bio-lead {
  color: var(--dirty) !important;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.18;
}

.meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 26px 0 0;
}

.meta-grid div {
  padding: 14px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,0.24);
}

.meta-grid dt {
  color: var(--acid);
  font-family: "Roboto Mono", ui-monospace, monospace;
  font-size: 12px;
  text-transform: uppercase;
}

.meta-grid dd {
  margin: 4px 0 0;
  color: var(--dirty);
}

.dates-section {
  background: linear-gradient(180deg, #0a0a0a, var(--black));
}

.tour-list {
  display: grid;
  gap: 10px;
}

.tour-row {
  display: grid;
  grid-template-columns: 92px 120px minmax(180px, 1fr) minmax(180px, 1.1fr) 120px 120px;
  gap: 14px;
  align-items: center;
  min-height: 88px;
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(16,16,16,0.8);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.tour-row:hover,
.tour-row:focus-within {
  transform: translateX(6px);
  border-color: rgba(255,51,68,0.55);
  background: rgba(22,22,22,0.95);
}

.tour-row time {
  color: var(--acid);
  font-weight: 700;
}

.tour-city,
.tour-row p {
  color: var(--muted);
}

.tour-row p {
  margin: 0;
  font-size: 14px;
}

.tour-row strong {
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(20px, 3vw, 30px);
  line-height: 1;
  text-transform: uppercase;
}

.tour-row a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--dirty);
  text-decoration: underline;
  text-decoration-color: var(--red-hot);
  text-underline-offset: 5px;
}

.tour-row mark {
  justify-self: end;
  padding: 8px 10px;
  color: var(--black);
  background: var(--acid);
  font-size: 12px;
  font-weight: 700;
}

.tour-row mark.sold {
  color: var(--dirty);
  background: var(--red);
}

.tour-row mark.rumor {
  color: var(--dirty);
  background: var(--purple);
}

.tour-row mark.archived {
  color: var(--black);
  background: var(--beige);
}

.clips-section {
  background:
    radial-gradient(circle at 12% 70%, rgba(106,17,17,0.24), transparent 28rem),
    var(--surface);
}

.clips-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.clip-card {
  position: relative;
  min-height: clamp(220px, 18vw, 260px);
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--dirty);
  background:
    radial-gradient(circle at 22% 18%, rgba(255,51,68,0.12), transparent 14rem),
    linear-gradient(145deg, rgba(5,5,5,0.72), rgba(5,5,5,0.95));
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  transition: transform 0.2s ease, border-color 0.2s ease, filter 0.2s ease;
}

.clip-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent 0 12px, rgba(255,255,255,0.08) 13px);
  opacity: 0.35;
}

.clip-card:hover,
.clip-card:focus-visible {
  transform: translateY(-5px) rotate(-1deg);
  border-color: var(--acid);
  filter: contrast(1.12);
}

.clip-card-live {
  border-color: rgba(255,51,68,0.34);
}

.clip-card-live .play-mark {
  box-shadow: 0 0 22px rgba(255,51,68,0.24);
}

.play-mark {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 92px;
  border: 1px solid var(--acid);
  border-radius: 999px;
  background: rgba(0,0,0,0.5);
}

.play-mark::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid var(--acid);
  transform: translateX(2px);
}

.clip-card strong,
.clip-card p {
  position: relative;
  z-index: 1;
}

.clip-card strong {
  display: block;
  color: var(--acid);
}

.clip-card p {
  margin: 8px 0 0;
  color: var(--dirty);
}

.clip-output {
  position: relative;
  z-index: 1;
  width: min(var(--container), 100%);
  margin: 14px auto 0;
  color: var(--muted);
  font-family: "Roboto Mono", ui-monospace, monospace;
  font-size: 13px;
  text-transform: uppercase;
}

.visuals-section {
  background: var(--black);
}

.archive-toolbar {
  position: relative;
  z-index: 1;
  width: min(var(--container), 100%);
  margin: -12px auto 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.archive-toolbar span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: rgba(231,231,221,0.035);
  font-family: "Roboto Mono", ui-monospace, monospace;
  font-size: 12px;
  text-transform: uppercase;
}

.archive-filters {
  position: relative;
  z-index: 1;
  width: min(var(--container), 100%);
  margin: 0 auto 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.archive-filters button {
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  color: rgba(231,231,221,0.74);
  background: rgba(0,0,0,0.28);
  cursor: pointer;
  font-family: "Roboto Mono", ui-monospace, monospace;
  font-size: 12px;
  text-transform: uppercase;
  transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease, color 0.16s ease;
}

.archive-filters button:hover,
.archive-filters button:focus-visible,
.archive-filters button.active {
  color: var(--black);
  border-color: var(--acid);
  background: var(--acid);
  transform: translateY(-2px);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: clamp(132px, 10.5vw, 166px);
  grid-auto-flow: dense;
  gap: 14px;
}

.photo-tile {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #111;
  box-shadow: 0 18px 46px rgba(0,0,0,0.28);
  overflow: hidden;
  cursor: pointer;
  transform: translateY(0);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.photo-tile:not(.feature):not(.wide) {
  grid-row: span 2;
}

.photo-tile.feature {
  grid-column: span 2;
  grid-row: span 3;
}

.photo-tile.wide {
  grid-column: span 2;
  grid-row: span 2;
}

.photo-tile:hover,
.photo-tile:focus-visible {
  transform: translateY(-5px);
  border-color: var(--acid);
  box-shadow: 0 22px 60px rgba(0,0,0,0.48), 0 0 0 1px rgba(255,51,68,0.18);
}

.photo-tile picture {
  position: absolute;
  inset: 0;
}

.photo-tile img {
  width: 100%;
  height: 100%;
}

.photo-tile img {
  object-fit: cover;
  filter: grayscale(0.22) contrast(1.14) brightness(0.82);
  transition: filter 0.2s ease, transform 0.25s ease;
}

.photo-tile:hover img,
.photo-tile:focus-visible img {
  filter: grayscale(0) contrast(1.2) brightness(0.96);
  transform: scale(1.04);
}

.photo-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.18), transparent 30%, rgba(0,0,0,0.82)),
    repeating-linear-gradient(0deg, transparent 0 15px, rgba(255,255,255,0.045) 16px);
  pointer-events: none;
}

.photo-tile::after {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 2;
  border: 1px solid rgba(231,231,221,0.12);
  pointer-events: none;
}

.archive-code,
.archive-title,
.archive-meta {
  position: absolute;
  z-index: 3;
  left: 16px;
  max-width: calc(100% - 32px);
  text-align: left;
}

.archive-code {
  top: 14px;
  padding: 5px 7px;
  color: var(--black);
  background: var(--acid);
  font-family: "Roboto Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.archive-title {
  bottom: 38px;
  color: var(--dirty);
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(19px, 1.9vw, 28px);
  line-height: 0.95;
  text-transform: uppercase;
  text-shadow: 3px 3px 0 #000;
}

.archive-meta {
  bottom: 15px;
  color: var(--muted);
  font-family: "Roboto Mono", ui-monospace, monospace;
  font-size: 11px;
  text-transform: uppercase;
}

.manifesto {
  position: relative;
  min-height: clamp(460px, 58svh, 680px);
  display: grid;
  place-items: center;
  gap: 18px;
  padding: clamp(70px, 9vw, 118px) 20px;
  overflow: hidden;
  text-align: center;
  border-bottom: 1px solid var(--line);
  content-visibility: auto;
  contain-intrinsic-size: auto 560px;
  background:
    linear-gradient(rgba(5,5,5,0.62), rgba(5,5,5,0.82)),
    radial-gradient(circle at 50% 40%, rgba(255,51,68,0.15), transparent 28rem),
    var(--black);
}

.log-section {
  background:
    radial-gradient(circle at 18% 28%, rgba(255,51,68,0.09), transparent 24rem),
    linear-gradient(180deg, #070707, var(--black));
}

.archive-log {
  position: relative;
  z-index: 1;
  width: min(var(--container), 100%);
  margin-inline: auto;
  display: grid;
  gap: 10px;
}

.log-row {
  display: grid;
  grid-template-columns: 128px 100px minmax(200px, 0.8fr) minmax(260px, 1fr);
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(16,16,16,0.74);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.log-row:hover,
.log-row:focus-within {
  transform: translateX(5px);
  border-color: rgba(255,51,68,0.55);
  background: rgba(22,22,22,0.92);
}

.log-row time,
.log-row span {
  color: var(--acid);
  font-size: 12px;
}

.log-row strong {
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(18px, 2.3vw, 28px);
  line-height: 1;
  text-transform: uppercase;
}

.log-row p {
  margin: 0;
  color: rgba(231,231,221,0.72);
}

.manifesto-bg {
  position: absolute;
  inset: auto auto 4% -4%;
  color: rgba(231,231,221,0.055);
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(56px, 11vw, 150px);
  line-height: 0.9;
  white-space: nowrap;
}

.manifesto p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--dirty);
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(46px, 7.8vw, 104px);
  line-height: 0.9;
  text-transform: uppercase;
  text-shadow: 5px 5px 0 #000, 9px 9px 0 var(--red);
}

.manifesto span {
  position: relative;
  z-index: 1;
  padding: 8px 12px;
  color: var(--acid);
  border: 1px solid var(--acid);
  background: rgba(0,0,0,0.5);
  font-family: "Roboto Mono", ui-monospace, monospace;
  text-transform: uppercase;
}

.signal-section {
  background:
    radial-gradient(circle at 80% 30%, rgba(255,51,68,0.12), transparent 24rem),
    var(--surface);
}

.signal-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: 16px;
}

.contact-card {
  padding: clamp(20px, 4vw, 40px);
}

.mail-link {
  display: inline-block;
  max-width: 100%;
  color: var(--dirty);
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(26px, 4vw, 46px);
  line-height: 1;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.social-grid a {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,0.22);
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.social-grid a:hover,
.social-grid a:focus-visible {
  transform: translateY(-3px);
  border-color: var(--acid);
  background: rgba(255,51,68,0.08);
}

.social-grid span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}

.booking-dossier {
  grid-column: 1 / -1;
  padding: clamp(18px, 3vw, 28px);
}

.booking-dossier dl {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.booking-dossier div {
  min-height: 82px;
  padding: 14px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,0.24);
}

.booking-dossier dt {
  color: var(--acid);
  font-family: "Roboto Mono", ui-monospace, monospace;
  font-size: 11px;
  text-transform: uppercase;
}

.booking-dossier dd {
  margin: 5px 0 0;
  color: var(--dirty);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 26px clamp(16px, 4vw, 56px);
  padding-bottom: 90px;
  color: var(--muted);
  background: #030303;
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: var(--dirty);
  font-family: "Archivo Black", Impact, sans-serif;
}

.site-footer a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--acid);
}

.player-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
}

.player-bar.player-visible {
  transform: translateY(0);
  pointer-events: auto;
}

.player-bar-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  height: 64px;
  padding: 0 clamp(12px, 3vw, 28px);
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(22px) saturate(1.4);
  border-top: 1px solid var(--line-strong);
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.player-bar-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 10% 50%, rgba(255, 51, 68, 0.06), transparent 40%),
    radial-gradient(ellipse at 90% 50%, rgba(106, 17, 17, 0.12), transparent 40%);
}

/* Mini waveform visualizer */
.player-viz {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  display: flex;
  align-items: flex-end;
  gap: 2px;
  padding: 0 2px;
  opacity: 0.06;
  pointer-events: none;
}

.player-viz-bar {
  flex: 1;
  background: var(--acid);
  min-height: 2px;
  border-radius: 1px 1px 0 0;
  transition: height 0.12s ease;
}

/* Controls cluster */
.player-controls {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.player-btn {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(231, 231, 221, 0.04);
  color: var(--dirty);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.player-btn:hover,
.player-btn:focus-visible {
  background: rgba(255, 51, 68, 0.1);
  border-color: rgba(255, 51, 68, 0.35);
  color: var(--acid);
}

.player-btn:active {
  transform: scale(0.92);
}

.player-btn-play {
  width: 48px;
  height: 48px;
  border-color: var(--acid);
  background: rgba(255, 51, 68, 0.08);
  color: var(--acid);
}

.player-btn-play:hover,
.player-btn-play:focus-visible {
  background: var(--acid);
  color: var(--black);
  box-shadow: 0 0 18px rgba(255, 51, 68, 0.35);
}

.player-btn-play.is-playing {
  border-color: var(--red-hot);
  background: rgba(211, 41, 41, 0.12);
  color: var(--red-hot);
}

.player-btn-play.is-playing:hover,
.player-btn-play.is-playing:focus-visible {
  background: var(--red-hot);
  color: var(--black);
  box-shadow: 0 0 18px rgba(211, 41, 41, 0.4);
}

/* Track info */
.player-info {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  gap: 1px;
  flex-shrink: 1;
}

.player-code {
  font-family: "Roboto Mono", ui-monospace, monospace;
  font-size: 10px;
  color: var(--acid);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.1;
}

.player-title {
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(12px, 1.6vw, 15px);
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--dirty);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 220px;
}

.player-mood {
  font-family: "Roboto Mono", ui-monospace, monospace;
  font-size: 9px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1;
}

/* Progress bar */
.player-progress-wrap {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  padding: 6px 0;
}

.player-progress-bg {
  width: 100%;
  height: 4px;
  background: rgba(231, 231, 221, 0.1);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.player-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--acid), #ff7b88);
  border-radius: 2px;
  transition: width 0.15s linear;
  position: relative;
}

.player-progress-fill::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  width: 10px;
  height: 10px;
  background: var(--acid);
  border-radius: 50%;
  transform: translateY(-50%) scale(0);
  box-shadow: 0 0 8px rgba(255, 51, 68, 0.5);
  transition: transform 0.2s ease;
}

.player-progress-wrap:hover .player-progress-fill::after {
  transform: translateY(-50%) scale(1);
}

.player-progress-wrap:hover .player-progress-bg {
  height: 6px;
}

.player-time {
  font-family: "Roboto Mono", ui-monospace, monospace;
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.3px;
  white-space: nowrap;
}

/* Volume */
.player-volume {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.player-btn-vol {
  width: 44px;
  height: 44px;
}

.player-vol-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 96px;
  height: 44px;
  background: transparent;
  outline: none;
  cursor: pointer;
}

.player-vol-slider::-webkit-slider-runnable-track {
  height: 4px;
  border-radius: 2px;
  background: rgba(231, 231, 221, 0.12);
}

.player-vol-slider::-moz-range-track {
  height: 4px;
  border-radius: 2px;
  background: rgba(231, 231, 221, 0.12);
}

.player-vol-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--acid);
  border: 2px solid var(--black);
  box-shadow: 0 0 6px rgba(255, 51, 68, 0.4);
  cursor: pointer;
  transition: transform 0.15s ease;
}

.player-vol-slider::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--acid);
  border: 2px solid var(--black);
  box-shadow: 0 0 6px rgba(255, 51, 68, 0.4);
  cursor: pointer;
}

.player-vol-slider:hover::-webkit-slider-thumb {
  transform: scale(1.3);
}

/* Responsive: stack on small screens */
@media (max-width: 600px) {
  .player-bar-inner {
    flex-wrap: wrap;
    height: auto;
    padding: 8px clamp(8px, 3vw, 16px);
    gap: 6px;
  }

  .player-controls {
    order: 1;
  }

  .player-info {
    order: 2;
    flex: 1;
  }

  .player-volume {
    order: 3;
  }

  .player-progress-wrap {
    order: 4;
    width: 100%;
    flex-basis: 100%;
    padding: 2px 0 4px;
  }

  .player-title {
    max-width: 130px;
  }

  .player-vol-slider {
    width: 76px;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.reveal-delay-3 {
  transition-delay: 0.24s;
}

@media (max-width: 1050px) {
  .nav-links {
    gap: 4px;
  }

  .nav-links a {
    padding-inline: 7px;
  }

  .music-layout,
  .dossier,
  .signal-layout {
    grid-template-columns: 1fr;
  }

  .tour-row {
    grid-template-columns: 86px 1fr 1fr;
  }

  .tour-row p,
  .tour-row a,
  .tour-row mark {
    grid-column: 2 / -1;
    justify-self: start;
  }

  .clips-grid {
    grid-template-columns: 1fr;
  }

  .track-row {
    grid-template-columns: 96px minmax(180px, 1fr) 88px;
  }

  .track-row p {
    grid-column: 2 / -1;
  }

  .log-row {
    grid-template-columns: 110px minmax(90px, 0.35fr) minmax(220px, 1fr);
  }

  .log-row p {
    grid-column: 3;
  }

  .booking-dossier dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  :root {
    --header-h: 66px;
  }

  .site-header {
    padding-inline: 14px;
  }

  .hamburger {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    inset: var(--header-h) 0 0;
    z-index: 119;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 28px 18px;
    background: rgba(5,5,5,0.98);
    transform: translateX(100%);
    transition: transform 0.28s ease;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    min-height: 54px;
    border-bottom: 1px solid var(--line);
    font-size: 18px;
  }

  .brand-name {
    font-size: 20px;
  }

  .hero {
    min-height: 96svh;
  }

  .hero-image {
    object-position: 57% 18%;
  }

  .hero-content {
    width: calc(100% - 28px);
    padding-bottom: 164px;
  }

  .hero-title {
    font-size: clamp(70px, 23vw, 126px);
  }

  .hero-meta {
    display: none;
  }

  .section {
    padding-inline: 14px;
  }

  .section-head {
    display: block;
    margin-bottom: 26px;
  }

  .section-head h2 {
    margin: 8px 0 14px;
  }

  .release-card {
    grid-template-columns: 1fr;
  }

  .release-art {
    min-height: 320px;
  }

  .soundcloud-shell iframe {
    height: 320px;
  }

  .soundcloud-frame {
    min-height: 320px;
  }

  .track-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .track-row p,
  .track-row a {
    grid-column: auto;
  }

  .track-row a {
    width: max-content;
    min-width: 112px;
  }

  .dossier-photo {
    min-height: 360px;
  }

  .meta-grid,
  .social-grid {
    grid-template-columns: 1fr;
  }

  .tour-row {
    grid-template-columns: 76px 1fr;
    align-items: start;
  }

  .tour-row strong,
  .tour-row p,
  .tour-row a,
  .tour-row mark {
    grid-column: 2;
  }

  .photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(150px, 34vw);
    gap: 12px;
  }

  .archive-filters {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }

  .archive-filters button {
    flex: 0 0 auto;
  }

  .log-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .log-row p {
    grid-column: auto;
  }

  .photo-tile.feature,
  .photo-tile.wide {
    grid-column: span 2;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 76px;
  }

  .booking-dossier dl {
    grid-template-columns: 1fr;
  }

  .lightbox-thumbs {
    position: static;
    padding: 10px 12px 14px;
    border-top: 1px solid var(--line);
    background: rgba(0,0,0,0.72);
  }
}

@media (max-width: 430px) {
  .hero-actions,
  .release-actions,
  .contact-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .photo-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(340px, 92vw);
  }

  .photo-tile:not(.feature):not(.wide),
  .photo-tile.feature,
  .photo-tile.wide {
    grid-column: auto;
    grid-row: auto;
  }

  .player-head {
    display: grid;
  }

  .soundcloud-loader {
    min-height: 144px;
  }

  .soundcloud-loader strong {
    font-size: clamp(30px, 12vw, 46px);
  }

  .clip-modal-action {
    width: 100%;
  }
}

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

  .hero-image {
    transform: none !important;
  }
}

/* Interactive archive layer */
.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 220;
  height: 3px;
  background: rgba(231, 231, 221, 0.05);
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(90deg, transparent, var(--acid) 18%, var(--acid) 82%, transparent),
    linear-gradient(90deg, var(--red-hot), var(--acid));
  box-shadow: 0 0 18px rgba(255, 51, 68, 0.62);
  transform: scaleX(0);
  transform-origin: left;
}

.route-scan {
  position: fixed;
  left: 0;
  top: var(--header-h);
  z-index: 210;
  width: 100%;
  height: 2px;
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, var(--acid), transparent);
  box-shadow: 0 0 18px var(--acid);
  transform: translateX(-110%);
}

.route-scan.active {
  animation: route-scan 0.46s steps(5, end);
}

@keyframes route-scan {
  0% { opacity: 0; transform: translateX(-110%); }
  12% { opacity: 1; }
  100% { opacity: 0; transform: translateX(110%); }
}

.grain {
  opacity: 0.075;
}

.scanlines {
  opacity: 0.045;
  background: repeating-linear-gradient(180deg, transparent 0 8px, rgba(255,255,255,0.075) 9px);
  animation: scanline-drift 5s linear infinite;
}

@keyframes scanline-drift {
  to { transform: translateY(18px); }
}

.loader-panel {
  display: grid;
  gap: 18px;
  color: var(--acid);
  font-family: "Roboto Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: clamp(13px, 2vw, 15px);
  letter-spacing: 0;
  text-transform: uppercase;
  text-align: center;
}

.loader-panel strong {
  opacity: 0;
  transform: translateY(10px);
  animation: loader-title-in 0.24s steps(2, end) 0.1s forwards;
}

@keyframes loader-title-in {
  to { opacity: 1; transform: translateY(0); }
}

.loader-line {
  height: 4px;
  border: 1px solid rgba(255,51,68,0.22);
  background: rgba(231,231,221,0.1);
  overflow: hidden;
}

.loader-line span {
  display: block;
  width: 48%;
  height: 100%;
  background: linear-gradient(90deg, var(--red-hot), var(--acid), var(--dirty));
  box-shadow: 0 0 18px rgba(255,51,68,0.55);
  animation: holy-loader-line 0.76s steps(5, end) infinite;
}

@keyframes holy-loader-line {
  0% { transform: translateX(-110%); }
  100% { transform: translateX(230%); }
}

.render-slot {
  min-width: 0;
}

.section-head.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.section-head.reveal .kicker,
.section-head.reveal h2,
.section-head.reveal p:last-child {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.42s var(--ease), transform 0.42s var(--ease);
}

.section-head.reveal.visible .kicker {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0ms;
}

.section-head.reveal.visible h2 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 90ms;
}

.section-head.reveal.visible p:last-child {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 160ms;
}

.reveal {
  transition-delay: var(--delay, 0ms);
}

.button {
  overflow: hidden;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(255,51,68,0.32), transparent),
    repeating-linear-gradient(180deg, transparent 0 8px, rgba(0,0,0,0.24) 9px);
  transform: translateX(-100%);
}

.button:hover::after,
.button:focus-visible::after {
  opacity: 1;
  animation: button-scan 0.32s steps(3, end);
}

@keyframes button-scan {
  to { transform: translateX(100%); }
}

.tour-row:hover,
.tour-row:focus-within,
.social-grid a:hover,
.social-grid a:focus-visible,
.clip-card:hover,
.clip-card:focus-visible,
.photo-tile:hover,
.photo-tile:focus-visible {
  will-change: transform;
}

.tour-row {
  position: relative;
  overflow: hidden;
}

.tour-row::before,
.social-grid a::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  border: 1px solid rgba(255,51,68,0.28);
  background: linear-gradient(90deg, transparent, rgba(255,51,68,0.08), transparent);
}

.tour-row:hover::before,
.tour-row:focus-within::before,
.social-grid a:hover::before,
.social-grid a:focus-visible::before {
  opacity: 1;
  animation: flicker 0.42s steps(2, end);
}

.tour-row:hover strong,
.tour-row:focus-within strong,
.clip-card:hover strong,
.clip-card:focus-visible strong,
.social-grid a:hover,
.social-grid a:focus-visible {
  text-shadow: 2px 2px 0 var(--red), 0 0 13px rgba(255,51,68,0.2);
}

.clip-card {
  background-position: center;
  background-size: auto, cover;
}

.clip-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  border: 1px solid var(--acid);
  box-shadow: inset 0 0 24px rgba(255,51,68,0.12), 0 0 20px rgba(255,51,68,0.18);
}

.clip-card::after {
  z-index: 1;
}

.clip-card:hover::before,
.clip-card:focus-visible::before {
  opacity: 1;
  animation: flicker 0.5s steps(2, end);
}

.clip-card:hover::after,
.clip-card:focus-visible::after,
.photo-tile:hover::before,
.photo-tile:focus-visible::before {
  animation: archive-flicker 0.45s steps(3, end);
}

.play-mark,
.archive-code,
.archive-title,
.archive-meta {
  pointer-events: none;
}

.photo-tile:hover .archive-code,
.photo-tile:focus-visible .archive-code {
  color: var(--black);
  background: var(--dirty);
}

@keyframes flicker {
  0%, 100% { opacity: 0.24; }
  22% { opacity: 0.86; }
  36% { opacity: 0.12; }
  58% { opacity: 0.68; }
}

@keyframes archive-flicker {
  0%, 100% { opacity: 0.95; }
  35% { opacity: 0.45; }
  48% { opacity: 0.88; }
}

.mail-link {
  padding: 0;
  border: 0;
  color: var(--dirty);
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: color 0.18s ease, text-shadow 0.18s ease, transform 0.18s ease;
}

.mail-link:hover,
.mail-link:focus-visible,
.mail-link.copied {
  color: var(--acid);
  text-shadow: 3px 3px 0 var(--red), 0 0 18px rgba(255,51,68,0.24);
  transform: translateX(4px);
}

.copy-status {
  min-height: 24px;
  margin: 12px 0 0;
  color: rgba(231,231,221,0.74);
  font-family: "Roboto Mono", ui-monospace, monospace;
  font-size: 12px;
  text-transform: uppercase;
}

.section-preview {
  position: fixed;
  right: 14px;
  bottom: 78px;
  z-index: 109;
  width: min(230px, calc(100vw - 28px));
  padding: 12px 14px;
  border: 1px solid rgba(255,51,68,0.5);
  color: var(--dirty);
  background:
    linear-gradient(145deg, rgba(5,5,5,0.82), rgba(16,16,16,0.88)),
    repeating-linear-gradient(180deg, transparent 0 8px, rgba(255,255,255,0.03) 9px);
  box-shadow: 6px 6px 0 rgba(106,17,17,0.66), 0 20px 45px rgba(0,0,0,0.45);
  transform: rotate(-1.5deg);
  pointer-events: none;
}

.section-preview span,
.section-preview strong,
.section-preview em {
  display: block;
  font-family: "Roboto Mono", ui-monospace, monospace;
  font-style: normal;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-preview span,
.section-preview em {
  color: rgba(231,231,221,0.74);
  font-size: 10px;
}

.section-preview strong {
  margin: 4px 0;
  color: var(--acid);
  font-size: 16px;
  line-height: 1;
}

.lightbox {
  width: min(96vw, 1120px);
  max-width: none;
  margin: auto;
  padding: 0;
  border: 1px solid var(--line-strong);
  color: var(--dirty);
  background: var(--black);
  overflow: hidden;
}

.lightbox::backdrop {
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(8px);
}

.lightbox-inner {
  position: relative;
  max-height: 90svh;
  background:
    radial-gradient(circle at 80% 20%, rgba(106,17,17,0.24), transparent 18rem),
    var(--black);
}

.lightbox-figure {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 310px);
  margin: 0;
}

.lightbox-figure img {
  width: 100%;
  height: min(86svh, 780px);
  max-height: none;
  object-fit: contain;
  background: #020202;
  transition: opacity 0.16s ease;
}

.lightbox-caption {
  display: grid;
  align-content: end;
  gap: 18px;
  padding: clamp(18px, 3vw, 28px);
  border-left: 1px solid var(--line);
  background: rgba(10,10,10,0.9);
}

.lightbox-caption > span {
  width: max-content;
  max-width: 100%;
  padding: 5px 8px;
  color: var(--black);
  background: var(--acid);
  font-family: "Roboto Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.lightbox-count {
  margin: -8px 0 0;
  color: rgba(231,231,221,0.68);
  font-size: 11px;
}

.lightbox-caption h3 {
  font-size: clamp(30px, 4vw, 54px);
  text-shadow: 3px 3px 0 var(--red), 6px 6px 0 #000;
}

.lightbox-caption dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.lightbox-caption div {
  padding: 12px;
  border: 1px solid var(--line);
}

.lightbox-caption dt {
  color: var(--acid);
  font-family: "Roboto Mono", ui-monospace, monospace;
  font-size: 11px;
  text-transform: uppercase;
}

.lightbox-caption dd {
  margin: 4px 0 0;
  color: var(--dirty);
}

.lightbox-copy {
  width: 100%;
  min-width: 0;
  margin-top: 2px;
}

.keyboard-hint {
  margin: -4px 0 0;
  color: rgba(231,231,221,0.64);
  font-size: 10px;
}

.lightbox-thumbs {
  position: absolute;
  left: 18px;
  right: 330px;
  bottom: 18px;
  z-index: 3;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 4px 6px;
  scrollbar-width: thin;
}

.lightbox-thumbs button {
  flex: 0 0 48px;
  width: 48px;
  height: 62px;
  padding: 0;
  border: 1px solid rgba(231,231,221,0.24);
  background: #050505;
  cursor: pointer;
  opacity: 0.58;
  transition: opacity 0.16s ease, border-color 0.16s ease, transform 0.16s ease;
}

.lightbox-thumbs button:hover,
.lightbox-thumbs button:focus-visible,
.lightbox-thumbs button.active {
  opacity: 1;
  border-color: var(--acid);
  transform: translateY(-2px);
}

.lightbox-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lightbox-close,
.lightbox-arrow,
.clip-modal-close {
  position: absolute;
  z-index: 2;
  min-width: 54px;
  min-height: 44px;
  border: 1px solid var(--line-strong);
  color: var(--dirty);
  background: rgba(0,0,0,0.68);
  cursor: pointer;
  font-family: "Roboto Mono", ui-monospace, monospace;
  font-size: 12px;
  text-transform: uppercase;
  transition: background 0.16s ease, color 0.16s ease, border-color 0.16s ease, transform 0.16s ease;
}

.lightbox-close {
  top: 12px;
  right: 12px;
}

.lightbox-arrow {
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 12px;
}

.lightbox-next {
  right: 12px;
}

.lightbox-close:hover,
.lightbox-close:focus-visible,
.lightbox-arrow:hover,
.lightbox-arrow:focus-visible,
.clip-modal-close:hover,
.clip-modal-close:focus-visible {
  color: var(--black);
  border-color: var(--acid);
  background: var(--acid);
  transform: translateY(-1px);
}

.clip-modal {
  width: min(92vw, 660px);
  margin: auto;
  padding: 0;
  border: 1px solid var(--line-strong);
  color: var(--dirty);
  background: var(--black);
}

.clip-modal::backdrop {
  background: rgba(0,0,0,0.86);
  backdrop-filter: blur(8px);
}

.clip-modal-inner {
  position: relative;
  min-height: 280px;
  display: grid;
  align-content: center;
  gap: 14px;
  padding: clamp(26px, 6vw, 54px);
  background:
    radial-gradient(circle at 86% 20%, rgba(255,51,68,0.12), transparent 15rem),
    repeating-linear-gradient(180deg, transparent 0 10px, rgba(255,255,255,0.035) 11px),
    linear-gradient(145deg, rgba(22,22,22,0.96), rgba(5,5,5,0.96));
  box-shadow: inset 0 0 0 1px rgba(255,51,68,0.08);
}

.clip-modal-inner > span {
  width: max-content;
  max-width: 100%;
  color: var(--acid);
  font-family: "Roboto Mono", ui-monospace, monospace;
  font-size: 12px;
  text-transform: uppercase;
}

.clip-modal-inner h3 {
  color: var(--dirty);
  font-size: clamp(44px, 9vw, 84px);
  line-height: 0.9;
  text-shadow: 4px 4px 0 var(--red), 8px 8px 0 #000;
}

.clip-modal-inner p {
  max-width: 360px;
  margin: 0;
  color: rgba(231,231,221,0.78);
  font-family: "Roboto Mono", ui-monospace, monospace;
  text-transform: uppercase;
}

.clip-visualizer {
  height: 92px;
  display: flex;
  align-items: end;
  gap: 8px;
  width: min(360px, 100%);
  padding: 14px;
  border: 1px solid rgba(255,51,68,0.36);
  background:
    repeating-linear-gradient(90deg, transparent 0 18px, rgba(255,51,68,0.04) 19px),
    rgba(0,0,0,0.38);
}

.clip-visualizer[hidden] {
  display: none;
}

.clip-visualizer span {
  flex: 1;
  min-width: 16px;
  background: linear-gradient(180deg, var(--acid), var(--red-hot));
  box-shadow: 0 0 16px rgba(255,51,68,0.28);
  animation: signal-bars 0.72s steps(4, end) infinite alternate;
}

.clip-visualizer span:nth-child(1) { height: 42%; animation-delay: 0.02s; }
.clip-visualizer span:nth-child(2) { height: 78%; animation-delay: 0.1s; }
.clip-visualizer span:nth-child(3) { height: 56%; animation-delay: 0.18s; }
.clip-visualizer span:nth-child(4) { height: 88%; animation-delay: 0.26s; }
.clip-visualizer span:nth-child(5) { height: 48%; animation-delay: 0.34s; }

@keyframes signal-bars {
  to { transform: scaleY(0.42); opacity: 0.72; }
}

.clip-modal-action {
  width: max-content;
  margin-top: 4px;
}

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

.clip-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  min-width: 68px;
  min-height: 42px;
  border: 1px solid var(--line-strong);
  color: var(--dirty);
  background: rgba(0,0,0,0.62);
  cursor: pointer;
}

.section-head p:last-child,
.tour-row p,
.tour-city,
.player-fallback,
.archive-meta,
.social-grid span {
  color: rgba(231,231,221,0.72);
}

.manifesto.is-bg-loaded {
  background:
    linear-gradient(rgba(5,5,5,0.62), rgba(5,5,5,0.82)),
    image-set(url("images/archive_06_night_smoke.webp") type("image/webp"), url("images/archive_06_night_smoke.jpg") type("image/jpeg")) center 42% / cover;
}

@media (max-width: 1050px) {
  .section-preview {
    width: 190px;
  }

  .lightbox-figure {
    grid-template-columns: minmax(0, 1fr) minmax(210px, 270px);
  }
}

@media (max-width: 780px) {
  .scroll-progress {
    height: 2px;
  }

  .section-preview {
    left: 14px;
    right: auto;
    bottom: 14px;
    width: min(210px, calc(100vw - 144px));
    padding: 10px 11px;
    transform: none;
  }

  .section-preview strong {
    font-size: 13px;
  }

  .lightbox {
    width: calc(100vw - 20px);
  }

  .lightbox-inner {
    max-height: 92svh;
    overflow: auto;
  }

  .lightbox-figure {
    grid-template-columns: 1fr;
  }

  .lightbox-figure img {
    height: min(66svh, 620px);
  }

  .lightbox-caption {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .lightbox-arrow {
    top: 36%;
  }

  .clip-modal-inner {
    min-height: 260px;
  }
}

@media (max-width: 520px) {
  .section-preview {
    max-width: 168px;
  }

  .section-preview span,
  .section-preview em {
    font-size: 9px;
  }

  .section-preview strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mail-link {
    font-size: clamp(24px, 10vw, 36px);
  }

  .clip-modal-inner h3 {
    font-size: clamp(38px, 14vw, 62px);
  }

  .clip-visualizer {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .route-scan.active,
  .grain,
  .scanlines,
  .loader-panel strong,
  .loader-line span,
  .button:hover::after,
  .button:focus-visible::after,
  .tour-row:hover::before,
  .tour-row:focus-within::before,
  .social-grid a:hover::before,
  .social-grid a:focus-visible::before,
  .clip-card:hover::before,
  .clip-card:focus-visible::before,
  .clip-card:hover::after,
  .clip-card:focus-visible::after,
  .photo-tile:hover::before,
  .photo-tile:focus-visible::before,
  .clip-visualizer span {
    animation: none !important;
  }

  .section-head.reveal .kicker,
  .section-head.reveal h2,
  .section-head.reveal p:last-child,
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* MC ZORRO INTERACTIVE DESIGN SYSTEM EXPANSION */

/* 1. Pulsing indicators */
.live-pulse-ring {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: var(--red-hot);
  border-radius: 50%;
  margin-right: 12px;
  position: relative;
  vertical-align: middle;
  box-shadow: 0 0 10px var(--red-hot);
}
.live-pulse-ring::after {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 1px solid var(--red-hot);
  border-radius: 50%;
  animation: pulse-ring-expand 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
  opacity: 0;
}
@keyframes pulse-ring-expand {
  0% { transform: scale(0.5); opacity: 0; }
  50% { opacity: 0.7; }
  100% { transform: scale(1.6); opacity: 0; }
}

.pulse-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 8px var(--acid);
  animation: pulse-dot-fade 1.2s ease-in-out infinite alternate;
}
@keyframes pulse-dot-fade {
  from { opacity: 0.3; }
  to { opacity: 1; }
}

/* 2. Signal Monitor & Waveform */
.signal-monitor {
  position: relative;
  margin: 32px 0 24px;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(22, 22, 22, 0.85), rgba(8, 8, 8, 0.95));
  border: 1px solid var(--line-strong);
  box-shadow: 
    0 12px 36px rgba(0, 0, 0, 0.5), 
    inset 0 0 20px rgba(255, 51, 68, 0.03);
  max-width: 540px;
  border-radius: var(--radius);
  overflow: hidden;
}
.signal-monitor::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: repeating-linear-gradient(0deg, transparent 0 2px, rgba(0, 0, 0, 0.18) 3px);
}
.monitor-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: 
    linear-gradient(rgba(255, 51, 68, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 51, 68, 0.02) 1px, transparent 1px);
  background-size: 16px 16px;
  opacity: 0.85;
}
.waveform {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 64px;
  margin-bottom: 12px;
}
.monitor-meta {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Roboto Mono", ui-monospace, monospace;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.5px;
}
.monitor-text {
  flex: 1;
  text-transform: uppercase;
  color: var(--dirty);
  text-shadow: 0 0 4px rgba(231, 231, 221, 0.25);
  font-size: 10px;
  font-weight: 500;
}
.monitor-freq {
  color: var(--acid);
  font-weight: 700;
  text-shadow: 0 0 6px var(--acid-soft);
}



/* 4. Subtle Glow on Hover */
@media (prefers-reduced-motion: no-preference) {
  .hero-title:hover,
  .brand:hover,
  .section-head h2:hover,
  .manifesto p:hover {
    text-shadow: 0 0 30px rgba(255, 51, 68, 0.25), 0 0 60px rgba(255, 51, 68, 0.1);
    transition: text-shadow 0.3s ease;
  }
}
