:root {
  color-scheme: dark;
  --ink: #f9f7ef;
  --muted: #bfb8aa;
  --line: rgba(249, 247, 239, 0.18);
  --panel: rgba(4, 5, 6, 0.82);
  --accent: #f2ff3d;
  --accent-2: #ffffff;
  --bg: #030405;
  --max: 1280px;
  font-family: "Arial Black", Impact, Inter, ui-sans-serif, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: auto;
  scroll-snap-type: none;
}
section {
  scroll-margin-top: 72px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  text-transform: none;
  overflow-x: hidden;
}

main {
  perspective: none;
  transform-style: flat;
}

.motion-ready .hero-content {
  animation: heroRise 900ms cubic-bezier(.2, .8, .2, 1) both;
}

.motion-ready .social-rail a {
  transition: transform 220ms ease, background 220ms ease, color 220ms ease;
}

.motion-ready .social-rail a:hover {
  transform: translateY(-4px);
}

.motion-ready .button,
.motion-ready .pill-link {
  transition: transform 220ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.motion-ready .button:hover,
.motion-ready .pill-link:hover {
  transform: translateY(-3px);
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 760ms cubic-bezier(.2, .8, .2, 1) var(--reveal-delay, 0ms),
    transform 760ms cubic-bezier(.2, .8, .2, 1) var(--reveal-delay, 0ms);
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.motion-ready .hero,
.motion-ready .section {
  transition: none;
}

.motion-ready .hero:not(.is-current-section),
.motion-ready .section:not(.is-current-section) {
  filter: none;
}

.motion-ready .section.is-current-section {
  transform: scale(1);
}

.rolodex-ready .hero,
.rolodex-ready .section {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 100svh;
  margin-top: 0;
  margin-bottom: 0;
  transform: none !important;
  opacity: 1 !important;
  filter: none !important;
  transform-style: flat;
  contain: paint;
  box-shadow: 0 -28px 80px rgba(0,0,0,.42);
}

.rolodex-ready .hero::after,
.rolodex-ready .section::after {
  pointer-events: none;
}

.rolodex-ready .hero,
.rolodex-ready .section {
  background: #050607;
  outline: 1px solid rgba(255,255,255,.04);
}

.rolodex-ready .section:not(.releases-section):not(.radio-band) {
  width: 100%;
  max-width: none;
  padding-left: max(20px, calc((100vw - var(--max)) / 2));
  padding-right: max(20px, calc((100vw - var(--max)) / 2));
}

.rolodex-ready #about {
  background: #07090b;
}

.rolodex-ready #events {
  background: #090b0f;
}

.rolodex-ready #contact {
  background: #050607;
}

.rolodex-ready .releases-section {
  background: #1e1e20;
}

.rolodex-ready .radio-band {
  background: #111315;
}

.motion-ready .release-card img,
.motion-ready .feature-image {
  transition: transform 700ms cubic-bezier(.2, .8, .2, 1), filter 700ms ease;
}

.motion-ready .release-card:hover img,
.motion-ready .feature-image:hover {
  transform: scale(1.025);
  filter: saturate(1.08) contrast(1.06);
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@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;
  }
}

a { color: inherit; }
.site-header {
  position: fixed;
  z-index: 10;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px clamp(18px, 4vw, 52px);
  background: rgba(0,0,0,.25);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: background-color 420ms ease, backdrop-filter 420ms ease, border-color 420ms ease;
}
.site-header.is-scrolled {
  background-color: rgba(0, 0, 0, .62);
  backdrop-filter: blur(14px);
  border-bottom-color: rgba(255,255,255,.1);
}
.brand {
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0;
  display: flex;
  align-items: center;
}
.brand-logo {
  height: 38px;
  width: auto;
  display: block;
  object-fit: contain;
}
nav {
  display: flex;
  gap: clamp(12px, 2vw, 26px);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
nav a { text-decoration: none; }
nav a:hover { color: var(--ink); }

.nav-book-btn {
  display: inline-flex;
  align-items: center;
  padding: 5px 13px;
  border: 1.5px solid var(--accent);
  color: var(--accent) !important;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none !important;
  white-space: nowrap;
  transition: background 160ms, color 160ms;
  line-height: 1;
}
.nav-book-btn:hover {
  background: var(--accent);
  color: #000 !important;
}

/* ── Mobile-only Bookings button (hidden on desktop) ── */
.nav-book-mobile {
  display: none;
}

/* ── Hamburger toggle (hidden on desktop) ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 20;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 240ms ease, opacity 200ms ease;
  transform-origin: center;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 120px clamp(20px, 6vw, 80px) 80px;
  overflow: hidden;
  isolation: isolate;
  transform-origin: top center;
  backface-visibility: hidden;
  will-change: transform, opacity, filter;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--hero-image) center/cover no-repeat;
  filter: saturate(1.05) contrast(1.08);
}
.hero--video::before {
  background: none;
  filter: none;
}
.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  pointer-events: none;
  filter: saturate(1.05) contrast(1.05);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0,0,0,.92), rgba(0,0,0,.14) 58%, rgba(0,0,0,.6)),
    linear-gradient(0deg, var(--bg), rgba(0,0,0,0) 36%);
}
.hero-content {
  max-width: 880px;
}
.kicker {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin: 0 0 12px;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 16px;
  font-size: clamp(62px, 14vw, 180px);
  line-height: .78;
  text-transform: uppercase;
  letter-spacing: 0;
  max-width: 1060px;
}
h2 {
  font-size: clamp(42px, 8vw, 112px);
  line-height: .82;
  letter-spacing: 0;
  margin-bottom: 22px;
  text-transform: uppercase;
}
h3 {
  font-size: clamp(24px, 3vw, 42px);
  line-height: .92;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.hero p:not(.kicker), .lede, .release-card p, .radio-band p, .event-row p, .footer {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}
.hero p:not(.kicker), .lede {
  max-width: 760px;
  color: var(--ink);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.5;
  font-weight: 650;
}
.hero-actions, .link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.button, .pill-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 0;
  border: 2px solid var(--accent);
  background: var(--accent);
  color: #080a0c;
  text-decoration: none;
  font-weight: 850;
}
.button.secondary, .pill-link {
  background: rgba(0,0,0,.3);
  color: var(--ink);
  border-color: var(--ink);
}
/* .social-rail removed — socials now live in the footer */

/* ── Hero Slider ── */
.hero-slider {
  position: relative;
  height: 100svh;
  overflow: hidden;
  background: #000;
}
.hslide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 900ms ease;
  z-index: 0;
  pointer-events: none;
}
.hslide.is-active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}
.hslide-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hslide-img,
.hslide-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.06);
  transition: transform 1400ms cubic-bezier(.22, 1, .36, 1);
  will-change: transform;
}
.hslide.is-active .hslide-img,
.hslide.is-active .hslide-video {
  transform: scale(1);
}
.hslide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.08) 55%, rgba(0,0,0,.45) 100%),
    linear-gradient(0deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,0) 38%);
  z-index: 1;
}
.hslide-content {
  position: absolute;
  z-index: 2;
  left: clamp(20px, 6vw, 80px);
  bottom: clamp(120px, 22%, 260px);
  max-width: 800px;
}
.hslide-content > * {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  filter: blur(6px);
  transition:
    opacity 620ms cubic-bezier(.22, 1, .36, 1),
    transform 720ms cubic-bezier(.22, 1, .36, 1),
    filter 520ms cubic-bezier(.22, 1, .36, 1);
}
.hslide.is-active .hslide-content > * {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}
.hslide.is-active .hslide-content > *:nth-child(1) { transition-delay: 140ms; }
.hslide.is-active .hslide-content > *:nth-child(2) { transition-delay: 240ms; }
.hslide.is-active .hslide-content > *:nth-child(3) { transition-delay: 340ms; }
.hslide.is-active .hslide-content > *:nth-child(4) { transition-delay: 440ms; }
.hslide-content h1 {
  margin-bottom: 10px;
  font-size: clamp(38px, 7vw, 100px);
  line-height: .86;
  text-transform: uppercase;
}
.hero-subline {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(14px, 1.6vw, 20px);
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 4px;
  line-height: 1.4;
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 4px;
  display: inline-block;
}
.hslide-content .hero-actions { margin-top: 24px; }
.hslide-eyebrow {
  font-size: clamp(10px, 1.2vw, 13px);
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 10px;
  opacity: .9;
}
/* .hslide-social removed — socials now live in the footer */
.hslide-vctrls {
  position: absolute;
  z-index: 4;
  left: clamp(20px, 6vw, 80px);
  bottom: clamp(68px, 9.5%, 108px);
  display: flex;
  gap: 6px;
}
.hslide-vctr {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: rgba(0,0,0,.42);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  cursor: pointer;
  transition: background 150ms, border-color 150ms;
  flex-shrink: 0;
}
.hslide-vctr:hover { background: rgba(0,0,0,.72); border-color: rgba(255,255,255,.7); }
@media (max-width: 640px) { .hslide-vctrls { display: none; } }

/* Arrows */
.hslide-arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  font-size: 22px;
  cursor: pointer;
  transition: background 160ms, border-color 160ms;
  line-height: 1;
}
.hslide-arrow:hover { background: rgba(0,0,0,.55); border-color: rgba(255,255,255,.6); }
.hslide-prev { left: clamp(12px, 2vw, 28px); }
.hslide-next { right: clamp(12px, 2vw, 28px); }

/* Bottom tab bar */
.hslide-tabbar {
  position: absolute;
  z-index: 5;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  background: rgba(0,0,0,.25);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,.06);
}
.hslide-tab {
  /* Collapsed state — fixed 10% of screen width, dim "square" background */
  flex: 0 0 10%;
  min-width: 0;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 16px;
  height: 52px;
  background: rgba(0,0,0,.25);
  border: none;
  border-right: 1px solid rgba(255,255,255,.07);
  color: rgba(255,255,255,.5);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  /* Animate the width + background change */
  transition: flex-basis 520ms cubic-bezier(0.4, 0, 0.2, 1), background-color 320ms ease, color 200ms ease;
}
/* Dim track line at top of every tab */
.hslide-tab::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}
.hslide-tab:last-child { border-right: none; }

/* Active tab — expands to fill all remaining space */
.hslide-tab.is-active {
  flex: 1 1 auto;
  background: rgba(0,0,0,.45);
  color: #fff;
}
.hslide-tab:hover:not(.is-active) { color: rgba(255,255,255,.75); }

/* Label — dim in collapsed tabs (still readable), fully opaque when active */
.hslide-tab-label {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: .65;
  transition: opacity 220ms ease;
  flex-shrink: 1;
  min-width: 0;
}
.hslide-tab.is-active .hslide-tab-label {
  opacity: 1;
  transition: opacity 260ms 200ms ease;
}

/* Yellow progress fill — animates along the top track */
.hslide-progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  z-index: 2;
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}
/* Progress fill is driven by JS via Web Animations API (see site.js, scaleX 0→1) */

@media (max-width: 640px) {
  .hslide-content { bottom: clamp(90px, 18%, 180px); }
  .hslide-content h1 { font-size: clamp(32px, 10vw, 56px); }
  .hslide-arrow { width: 38px; height: 38px; font-size: 16px; }
  .hslide-tab { padding: 10px 12px 9px; font-size: 9px; letter-spacing: .08em; }
  .hslide-social { display: none; }
}

.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(82px, 12vw, 170px) 0;
  min-height: 100svh;
  display: grid;
  align-content: center;
}
.narrow { max-width: 880px; }
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
}
.feature-image, .release-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 0;
}
.releases-section {
  width: 100%;
  max-width: none;
  margin: 0;
  background: #1e1e20;
  padding-left: max(20px, calc((100vw - var(--max)) / 2));
  padding-right: 0;
  overflow: hidden;
}
.release-head {
  width: min(var(--max), calc(100vw - 40px));
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
}
.release-head h2,
.radio-band h2,
.events-section h2,
.section.narrow h2,
.about-grid h2 {
  font-size: clamp(28px, 4vw, 54px);
}
.carousel-actions {
  display: flex;
  gap: 10px;
  padding-bottom: 30px;
}
.carousel-button {
  width: 48px;
  height: 48px;
  border: 2px solid var(--ink);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}
.carousel-button:hover {
  background: var(--ink);
  color: var(--bg);
}
.release-viewport {
  overflow: hidden;
  width: 100%;
}
.release-grid {
  display: flex;
  gap: clamp(16px, 2vw, 28px);
  align-items: start;
  padding: 0 max(20px, calc((100vw - var(--max)) / 2)) 0 0;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}
.release-card {
  position: relative;
  display: grid;
  flex: 0 0 clamp(180px, 15vw, 240px);
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: #000;
  color: var(--ink);
  text-decoration: none;
  overflow: visible;
}
.release-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
  transition: transform 520ms cubic-bezier(.2, .8, .2, 1), filter 520ms ease;
}
.release-card-body {
  min-height: 64px;
  padding: 10px 8px 0;
  color: var(--ink);
}
.release-card-sub {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 10px;
  color: rgba(242,255,61,0.7);
  margin: 2px 0 0;
  font-style: italic;
}
.event-row time {
  color: var(--ink);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  margin: 0 0 14px;
}
.release-card h3 {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.1;
  margin: 0 0 3px;
  text-transform: none;
  color: var(--ink);
}
.release-card time {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 11px;
  line-height: 1.15;
  font-weight: 750;
  margin: 0;
  color: rgba(249,247,239,.58);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.release-card p, .radio-band p, .event-row p, .footer {
  color: var(--muted);
  line-height: 1.55;
}
.radio-band {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(300px, 1.2fr);
  gap: 28px;
  align-items: center;
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #111315;
}
iframe {
  width: 100%;
  min-height: 352px;
  border: 0;
  border-radius: 0;
}
.radio-band .radio-player.soundcloud-player {
  height: 360px;
  min-height: 360px;
  border-radius: 8px;
  display: block;
}
.radio-band .radio-player {
  width: 100%;
}
.radio-band .radio-players {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.event-list {
  display: grid;
  gap: 12px;
}
.event-row {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 24px 0;
  border-top: 2px solid var(--ink);
}
.footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
  padding: 36px clamp(20px, 6vw, 80px);
  border-top: 1px solid rgba(255,255,255,.07);
  background: #060810;
  color: rgba(255,255,255,.4);
  font-size: 12px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer-col--center {
  align-items: center;
  gap: 12px;
}
.footer-col--right {
  align-items: flex-end;
}
.footer-artist {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
}
.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,.25);
}
.footer-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.28);
}
.footer-socials {
  display: flex;
  align-items: center;
  gap: 4px;
}
.footer-social-link {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: rgba(255,255,255,.38);
  text-decoration: none;
  border-radius: 6px;
  transition: color 160ms, background 160ms;
}
.footer-social-link:hover {
  color: #fff;
  background: rgba(255,255,255,.06);
}
.footer-contact {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  text-decoration: none;
  transition: color 160ms;
}
.footer-contact:hover { color: #fff; }

.scroll-top {
  position: fixed;
  right: clamp(18px, 3vw, 38px);
  bottom: clamp(18px, 3vw, 38px);
  z-index: 30;
  width: 58px;
  height: 58px;
  border: 2px solid var(--ink);
  border-radius: 0;
  background: rgba(0, 0, 0, .68);
  color: var(--ink);
  font: 900 13px/1 Inter, ui-sans-serif, system-ui, sans-serif;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 220ms ease, transform 220ms ease, background 220ms ease, color 220ms ease;
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--ink);
  color: var(--bg);
}

@media (max-width: 760px) {
  /* ── Mobile nav: fullscreen overlay ── */
  .nav-toggle { display: flex; position: relative; z-index: 20; }
  .site-header { align-items: center; }

  nav.site-nav {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    height: 100dvh !important;
    z-index: 9998 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 40px !important;
    background-color: #050607 !important;
    background-image: none !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 260ms ease, visibility 0s linear 260ms;
    font-size: 28px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin: 0 !important;
    padding: 0 !important;
  }
  .nav-toggle { z-index: 9999 !important; position: fixed !important; top: 11px; right: 12px; }
  .nav-book-mobile {
    display: inline-flex;
    align-items: center;
    position: fixed;
    top: 11px;
    right: 60px;
    z-index: 9999;
    height: 44px;
    padding: 0 12px;
    border: 1.5px solid var(--accent);
    color: var(--accent) !important;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none !important;
    line-height: 1;
    white-space: nowrap;
    background: transparent;
    transition: background 160ms, color 160ms;
  }
  .nav-book-mobile:hover { background: var(--accent); color: #000 !important; }
  nav.site-nav .nav-book-btn { display: none !important; }
  .brand-logo { height: 26px; }
  .brand { font-size: clamp(12px, 3.5vw, 16px); }
  nav.site-nav.is-open {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transition: opacity 260ms ease, visibility 0s linear 0s;
  }
  nav.site-nav a {
    font-size: inherit;
    font-weight: inherit;
    position: relative;
  }
  nav.site-nav a::after {
    content: "";
    position: absolute;
    inset: -12px -20px;
  }

  /* ── Layout fixes ── */
  h1 { font-size: clamp(48px, 13vw, 180px); }
  .hero { padding-bottom: 120px; }
  .hero-content { max-width: 100%; }
  /* .social-rail removed */
  .about-grid { grid-template-columns: 1fr; }
  .radio-band { grid-template-columns: 1fr; }
  .event-row {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    align-items: start;
  }
  .event-row time { grid-column: 1 / -1; }
  .event-row h3 { font-size: clamp(20px, 5vw, 32px); }
  .release-head { align-items: start; flex-direction: column; gap: 10px; }
  .carousel-actions { padding-bottom: 10px; }
  .release-card { flex-basis: min(78vw, 320px); scroll-snap-align: center; }
  .release-viewport { overflow-x: auto; -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .release-viewport::-webkit-scrollbar { display: none; }
  .release-grid { padding: 0 20px; gap: 16px; }
  .releases-section,
  .rolodex-ready .releases-section,
  .radio-band,
  .rolodex-ready .radio-band {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .events-section,
  .rolodex-ready .events-section {
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .releases-section .section-head { padding-left: 20px; padding-right: 20px; }
  .radio-band { padding: 40px 20px !important; gap: 20px; }
  .radio-band .radio-players, .radio-band .radio-player, .radio-band .sc-embed { width: 100%; }
  .events-section .section-head { padding-left: 20px; padding-right: 20px; }
  .events-section .event-list { padding: 0 20px; }
  .footer { grid-template-columns: 1fr; gap: 20px; text-align: center; }
  .footer-col--right { align-items: center; }
  .section { width: calc(100% - 32px); padding-left: 0; padding-right: 0; }
}

@media (min-width: 761px) and (max-width: 1180px) {
  .release-card { flex-basis: min(48vw, 430px); }
}

/* ═══════════════════════════════════════════
   BLOCK PAGE LAYOUT
═══════════════════════════════════════════ */
.page-layout {
  max-width: 860px;
  margin: 0 auto;
  padding: 80px 24px 120px;
}

.page-featured-image {
  margin: 0 -24px 40px;
  border-radius: 4px;
  overflow: hidden;
}

.page-featured-image img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

.page-header { margin-bottom: 48px; }

.page-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}

.page-blocks { display: flex; flex-direction: column; gap: 2rem; }

/* ── Heading block ── */
.block-heading {
  color: var(--ink);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0;
}

/* ── Text block ── */
.block-text {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}
.block-text p { margin: 0 0 1em; }
.block-text p:last-child { margin-bottom: 0; }
.block-text a { color: var(--accent); text-decoration: underline; }
.block-text ul, .block-text ol { padding-left: 1.5em; margin: 0 0 1em; }
.block-text li { margin-bottom: 0.25em; }
.block-text strong { color: var(--ink); }

/* ── Image block ── */
.block-image { margin: 0; }
.block-image img { display: block; border-radius: 4px; max-width: 100%; height: auto; }
.block-image figcaption { color: var(--muted); font-size: 0.8rem; margin-top: 8px; text-align: center; opacity: 0.7; }

.img-small img  { max-width: 40%; }
.img-medium img { max-width: 60%; }
.img-large img  { max-width: 85%; }
.img-full img   { max-width: 100%; }

.img-center { display: flex; flex-direction: column; align-items: center; }
.img-center figcaption { text-align: center; }
.img-left   { display: flex; flex-direction: column; align-items: flex-start; }
.img-right  { display: flex; flex-direction: column; align-items: flex-end; }
.img-float-left img { float: left; margin: 0 24px 16px 0; max-width: 45%; }
.img-float-right img { float: right; margin: 0 0 16px 24px; max-width: 45%; }

/* ── Divider block ── */
.block-divider {
  border: none;
  border-top: 1px solid var(--line);
  margin: 0;
}
.divider-dashed { border-top-style: dashed; }

/* ── Spacer block ── */
.block-spacer.spacer-small  { height: 24px; }
.block-spacer.spacer-medium { height: 56px; }
.block-spacer.spacer-large  { height: 112px; }

/* ── Embed block ── */
.block-embed { margin: 0; }
.block-embed iframe {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--line);
  aspect-ratio: 16/9;
  display: block;
}
.block-embed figcaption { color: var(--muted); font-size: 0.8rem; margin-top: 8px; text-align: center; opacity: 0.7; }

@media (max-width: 760px) {
  .page-layout { padding: 64px 20px 80px; }
  .img-small img, .img-medium img { max-width: 100%; }
  .img-float-left img, .img-float-right img { float: none; max-width: 100%; margin: 0; }
}

/* ═══════════════════════════════════════════
   CAROUSEL: See All link + right group
═══════════════════════════════════════════ */
.release-head-right {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 30px;
}
.see-all-link {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 180ms ease;
}
.see-all-link:hover { opacity: .72; }

/* ═══════════════════════════════════════════
   TOUR PAGE  (/tour)
═══════════════════════════════════════════ */
.tour-page {
  max-width: var(--max);
  margin: 0 auto;
  padding: 110px clamp(20px, 4vw, 60px) 120px;
  min-height: 100svh;
}
.tour-page-head {
  margin-bottom: 48px;
}
.tour-page-title {
  font-size: clamp(38px, 7vw, 96px);
  line-height: .86;
  margin: 8px 0 0;
  text-transform: uppercase;
}
.tour-empty {
  color: var(--muted);
  font-size: 15px;
  margin: 0;
}
.event-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 0;
  flex-wrap: wrap;
  gap: 12px;
}
.event-head > div { margin: 0; }
.event-head .kicker { margin-bottom: 4px; }
.event-head h2 { margin: 0; }
.tour-past {
  margin-top: 64px;
}
.tour-section-label {
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
  margin: 0 0 24px;
}
.event-row--past {
  opacity: .45;
}
.event-row--past .pill-link { display: none; }

/* ═══════════════════════════════════════════
   RELEASES PAGE  (/releases)
═══════════════════════════════════════════ */
.rl-page {
  max-width: var(--max);
  margin: 0 auto;
  padding: 110px clamp(20px, 4vw, 60px) 120px;
  min-height: 100svh;
}

.rl-page-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 20px;
  flex-wrap: wrap;
}

.rl-page-title {
  font-size: clamp(38px, 7vw, 96px);
  line-height: .86;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.rl-count {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}


/* ── Compact music list ── */
.rl-page-title {
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1;
  margin: 0 0 32px;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.rl-compact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(28px, 5vw, 72px);
  row-gap: 0;
}

.rl-item {
  display: flex;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  align-items: flex-start;
}

.rl-item-thumb {
  flex-shrink: 0;
  width: 130px;
  height: 130px;
  overflow: hidden;
  background: #1a1a1e;
}

.rl-item-thumb img,
.rl-item-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #1a1a1e;
}

.rl-item-info {
  flex: 1;
  min-width: 0;
  padding-top: 4px;
}

.rl-item-title {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 7px;
  line-height: 1.35;
  text-transform: none;
}

.rl-item-date {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 12px;
}

.rl-item-listen {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.rl-listen-label {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 13px;
  color: var(--muted);
}

.rl-platform-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity 160ms, transform 160ms;
}
.rl-platform-link:hover { opacity: 0.75; transform: scale(1.1); }

.rl-platform-link.rl-spotify  { background: #1DB954; color: #fff; }
.rl-platform-link.rl-beatport { background: #FF6400; color: #fff; }
.rl-platform-link.rl-soundcloud { background: #FF5500; color: #fff; }
.rl-platform-link.rl-apple   { background: #FC3C44; color: #fff; }
.rl-platform-link.rl-youtube { background: #FF0000; color: #fff; }
.rl-platform-link.rl-generic { background: #333; color: #bbb; }

.rl-empty {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  color: var(--muted);
  font-size: 16px;
  padding: 80px 0;
  text-align: center;
}

@media (max-width: 800px) {
  .rl-compact-grid { grid-template-columns: 1fr; }
  .rl-item-thumb { width: 100px; height: 100px; }
}

@media (max-width: 480px) {
  .rl-item-thumb { width: 80px; height: 80px; }
  .rl-item-title { font-size: 14px; }
  .release-head-right { flex-direction: column; align-items: flex-end; gap: 10px; }
  .see-all-link { font-size: 12px; }
}

/* Radio & Mixes page */
.mixes-page { max-width: 880px; margin: 0 auto; padding: 80px 24px 96px; box-sizing: border-box; width: 100%; }
@media (max-width: 640px) {
  .mixes-page { padding: 48px 16px 64px; }
  .mix-row { padding: 16px !important; border-radius: 10px; }
  .mix-row-title { font-size: 17px !important; }
  .mixes-page-head { margin-bottom: 32px !important; }
  .mixes-list { gap: 20px !important; }
}
.mixes-page-head { text-align: center; margin-bottom: 48px; }
.mixes-page-head .kicker { color: var(--accent, #f2ff3d); font-size: 12px; letter-spacing: .25em; text-transform: uppercase; margin-bottom: 8px; }
.mixes-page-head h1 { font-size: clamp(36px, 6vw, 64px); line-height: 1.05; margin: 0 0 12px; }
.mixes-page-head .lede { color: #9ca3af; font-size: 15px; max-width: 540px; margin: 0 auto; }
.mixes-list { display: flex; flex-direction: column; gap: 36px; }
.mix-row { background: #111315; border: 1px solid var(--line, rgba(255,255,255,.06)); border-radius: 12px; padding: 24px; }
.mix-row-head { margin-bottom: 16px; }
.mix-row-title { font-size: 20px; margin: 0 0 4px; }
.mix-row-desc { color: #9ca3af; font-size: 13px; margin: 0; }
.mix-row .mix-player { width: 100%; height: 360px; border: 0; border-radius: 8px; display: block; }
.mix-row-link { margin: 12px 0 0; font-size: 12px; }
.mix-row-link a { color: #9ca3af; text-decoration: none; }
.mix-row-link a:hover { color: var(--accent, #f2ff3d); }
.mixes-empty { text-align: center; color: #6b7280; padding: 64px 0; }

/* SoundCloud embed (standard widget, 166px) */
.sc-embed { width: 100%; }
.sc-embed iframe { display: block; width: 100%; height: 166px; min-height: 0; border: 0; border-radius: 4px; }
.sc-embed-credit {
  font-size: 10px;
  color: #cccccc;
  line-break: anywhere;
  word-break: normal;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-family: Interstate, "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Garuda, Verdana, Tahoma, sans-serif;
  font-weight: 100;
  margin-top: 2px;
}
.sc-embed-credit a { color: #cccccc; text-decoration: none; }

/* Minimal SoundCloud player (legacy, currently unused) */
.scp {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  background: #15171b;
  border: 1px solid var(--line, rgba(255,255,255,.08));
  border-radius: 999px;
  padding: 8px 16px 8px 8px;
  position: relative;
}
.scp-iframe {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  border: 0;
  visibility: hidden;
}
.scp-play {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 0;
  background: var(--accent, #f2ff3d);
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 120ms ease, background 120ms ease;
}
.scp-play:hover { transform: scale(1.04); }
.scp-play:active { transform: scale(0.97); }
.scp-play .scp-icon-pause { display: none; margin-left: 0; }
.scp-play .scp-icon-play { margin-left: 2px; }
.scp-play[data-state="playing"] .scp-icon-play { display: none; }
.scp-play[data-state="playing"] .scp-icon-pause { display: inline; }
.scp-body {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.scp-title {
  font-size: 13px;
  font-weight: 600;
  color: #f3f4f6;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0.01em;
}
.scp-track {
  position: relative;
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 99px;
  cursor: pointer;
  overflow: hidden;
}
.scp-track:focus-visible { outline: 2px solid var(--accent, #f2ff3d); outline-offset: 2px; }
.scp-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  background: var(--accent, #f2ff3d);
  border-radius: 99px;
  transition: width 120ms linear;
}
.scp-time {
  flex: 0 0 auto;
  font-size: 11px;
  font-variant-numeric: tabular-nums;
  color: #9ca3af;
  display: flex;
  gap: 4px;
}
.scp-sep { opacity: 0.4; }

/* Override mix-row sizing now that player is a slim pill */
.mix-row .mix-player { display: none; }

@media (max-width: 520px) {
  .scp { padding: 6px 12px 6px 6px; gap: 10px; }
  .scp-play { width: 32px; height: 32px; }
  .scp-time { display: none; }
}
