@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

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

html {
  background: #fff;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  min-height: 100vh;
  background: #fff;
}

.viewport {
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow-x: hidden;
  background: #fff;
}

.page-scale-wrap {
  position: relative;
  overflow: visible;
  flex-shrink: 0;
}

.page {
  position: relative;
  width: 1728px;
  height: 2452px;
  background: #fff;
  overflow: visible;
  transform-origin: top left;
  will-change: transform;
}

.abs {
  position: absolute;
}

/* Header
   Logo SVGs (viewBoxes):
     logo-bars.svg:    186.74 × 77.08  (ratio ≈ 2.422)
     logo-text.svg:    176.09 × 73.86  (ratio ≈ 2.385)
     logo-tagline.svg: 175.56 × 10.47  (ratio ≈ 16.77)
   Each part uses an explicit height with width:auto so the natural ratio is preserved.
*/
.logo {
  left: 40px;
  top: -28px;
  width: auto;
  height: auto;
  z-index: 10;
  display: block;
  text-decoration: none;
}

.logo-img {
  height: 320px;
  width: auto;
  display: block;
  /* White bg on the PDF — invert in dark mode handled below */
}

/* Search border pill — Figma node 80:42, black rounded frame behind the search */
.search-border-pill {
  left: 557px;
  top: 68px;
  width: 653px;
  height: 82px;
  background: #000;
  border-radius: 54px;
  z-index: 14;
  pointer-events: none;
  box-shadow: inset 0px 6px 4px 1px rgba(255, 255, 255, 0.18);
}

.search-wrap {
  left: 561px;
  top: 66px;
  width: 644px;
  z-index: 15;
}

.search-field {
  position: relative;
  display: flex;
  align-items: center;
  height: 80px;
  border-radius: 54px;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 6px 4px rgba(255, 255, 255, 0.06),
    0 4px 18px rgba(0, 0, 0, 0.18);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.search-field.is-focused {
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow:
    inset 0 6px 4px rgba(255, 255, 255, 0.06),
    0 8px 28px rgba(0, 0, 0, 0.28);
  transform: translateY(-1px);
}

.search-field.has-value {
  border-color: rgba(255, 255, 255, 0.12);
}

.search-icon {
  position: absolute;
  left: 28px;
  width: 26px;
  height: 26px;
  fill: none;
  stroke: rgba(255, 255, 255, 0.5);
  stroke-width: 2;
  stroke-linecap: round;
  pointer-events: none;
  transition: stroke 0.25s ease, transform 0.25s ease;
}

.search-field.is-focused .search-icon {
  stroke: rgba(255, 255, 255, 0.9);
  transform: scale(1.05);
}

.search-input {
  flex: 1;
  width: 100%;
  height: 100%;
  padding: 0 56px 0 68px;
  border: none;
  border-radius: 54px;
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 400;
  color: #fff;
  text-align: left;
  outline: none;
}

.search-input::placeholder {
  color: rgba(255, 255, 255, 0.38);
  transition: color 0.2s ease;
}

.search-field.is-focused .search-input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.search-input::-webkit-search-cancel-button,
.search-input::-webkit-search-decoration {
  display: none;
}

.search-clear {
  position: absolute;
  right: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.search-clear svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
}

/* Track of the Day badge */
.track-of-day-badge {
  left: 1442px;
  top: 62px;
  padding: 4px 16px;
  background: #000;
  border-radius: 15px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  white-space: nowrap;
  z-index: 21;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.track-of-day-badge[hidden] {
  display: block !important;
  /* keep it in layout so position doesn't jump */
  opacity: 0;
  pointer-events: none;
}

.search-clear:hover {
  background: rgba(0, 0, 0, 0.12);
  transform: scale(1.05);
}

.search-clear:active {
  transform: scale(0.95);
}

.search-results {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 10px);
  max-height: 320px;
  overflow-y: auto;
  padding: 8px;
  border-radius: 24px;
  background: rgba(12, 12, 12, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(-6px) scale(0.98);
  pointer-events: none;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}

.search-results.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.search-result {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 10px 12px;
  border: none;
  border-radius: 16px;
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}

.search-result:hover,
.search-result.is-active {
  background: rgba(255, 255, 255, 0.08);
}

.search-result:active {
  transform: scale(0.99);
}

.search-result-art {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.search-result-body {
  flex: 1;
  min-width: 0;
}

.search-result-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-result-artist {
  font-size: 12px;
  font-weight: 500;
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}

.search-result-section {
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.search-empty {
  padding: 18px 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
}

.search-hint {
  padding: 10px 14px 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

.player-widget-wrap {
  --player-width: 420px;
  --player-height: 168px;
  --disc-size: 168px;
  --panel-overlap: 62px;

  left: 1280px;
  top: 22px;
  width: var(--player-width);
  height: var(--player-height);
  z-index: 20;
}

.player-widget {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}

.player-disc {
  position: relative;
  flex-shrink: 0;
  width: var(--disc-size);
  height: var(--disc-size);
  border-radius: 50%;
  overflow: hidden;
  z-index: 2;
  background: #111;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.18);
  pointer-events: none;
}

.player-disc::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 18px;
  margin: -9px 0 0 -9px;
  background: #fff;
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.player-disc img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.player-widget.is-playing .player-disc {
  animation: player-disc-spin 4s linear infinite;
}

@keyframes player-disc-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.player-panel {
  position: relative;
  flex: 1;
  align-self: stretch;
  min-width: 0;
  margin-left: calc(var(--panel-overlap) * -1);
  background: #fff;
  border-radius: calc(var(--player-height) / 2);
  border: 1.5px solid rgba(0, 0, 0, 0.10);
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.10);
  padding:
    20px 24px 16px calc(var(--disc-size) - var(--panel-overlap) + 18px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1;
}

.player-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.player-title {
  font-size: 16px;
  font-weight: 800;
  color: #000;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 160px;
}

.player-artist {
  font-size: 11px;
  font-weight: 500;
  color: #000;
  letter-spacing: 0.04em;
  margin-top: 3px;
}

.player-mute {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #bbb;
  opacity: 0.85;
}

.player-mute:hover {
  color: #666;
}

.player-mute .player-icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.player-mute .player-icon-muted {
  display: none;
}

.player-mute.is-muted .player-icon-volume {
  display: none;
}

.player-mute.is-muted .player-icon-muted {
  display: block;
}

.player-progress {
  position: relative;
  width: 100%;
  height: 4px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: #e5e5e5;
  cursor: pointer;
  overflow: hidden;
}

.player-progress-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: #1a1a1a;
  border-radius: inherit;
  pointer-events: none;
  transition: width 0.1s linear;
}

.player-controls {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 2px;
  padding-left: 8px;
}

.player-control {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #111;
  touch-action: manipulation;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.player-control::before {
  content: '';
  position: absolute;
  inset: -6px;
}

.player-control svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.player-control:hover {
  opacity: 0.55;
}

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

.player-control:focus-visible {
  outline: 2px solid #000;
  outline-offset: 2px;
  border-radius: 50%;
}

.player-play svg {
  width: 24px;
  height: 24px;
}

.player-icon-pause {
  display: none;
}

.player-widget.is-playing .player-icon-play {
  display: none;
}

.player-widget.is-playing .player-icon-pause {
  display: block;
}

/* Section titles */
.section-title {
  font-size: 16px;
  font-weight: 900;
  font-style: italic;
  color: #000;
  line-height: normal;
  white-space: nowrap;
}

.section-title-popular {
  left: 864px;
  top: 228px;
  transform: translateX(-50%);
  text-align: center;
  max-width: 1060px;
  font-size: 34px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: default;
  transition:
    letter-spacing 0.35s cubic-bezier(0.34, 1.2, 0.64, 1),
    transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1),
    color 0.25s ease,
    text-shadow 0.35s ease;
}

.section-title-popular::after {
  content: '';
  display: block;
  width: 56px;
  height: 4px;
  margin: 12px auto 0;
  background: #000;
  border-radius: 2px;
  transition: width 0.35s cubic-bezier(0.34, 1.2, 0.64, 1), opacity 0.25s ease;
}

.section-title-popular:hover,
.section-title-popular:focus-visible {
  letter-spacing: 0.2em;
  transform: translateX(-50%) scale(1.03);
  outline: none;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.section-title-popular:hover::after,
.section-title-popular:focus-visible::after {
  width: 148px;
}

@media (prefers-reduced-motion: reduce) {
  .section-title-popular,
  .section-title-popular::after {
    transition: none;
  }

  .section-title-popular:hover,
  .section-title-popular:focus-visible {
    transform: translateX(-50%);
    letter-spacing: 0.14em;
  }
}


.section-underline {
  width: 129px;
  height: 1px;
}

.soundwave-popular {
  display: none;
}


/* Carousels */
.carousel-viewport {
  overflow-x: hidden;
  overflow-y: visible;
}

/* ─── Theme toggle button — always fixed, outside scaled page ─── */
.theme-toggle {
  position: fixed;
  bottom: 24px;
  right: 24px;
  min-width: 56px;
  height: 56px;
  padding: 0 18px 0 14px;
  border-radius: 999px;
  border: 3px solid #000;
  background: #fff;
  color: #000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 99999;
  box-shadow: 5px 5px 0 #000;
  font-family: 'Inter', sans-serif;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.theme-toggle-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.theme-toggle-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
}

.theme-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 7px 7px 0 #000;
}

.theme-toggle:active {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 #000;
}

.theme-toggle:focus-visible {
  outline: 3px solid rgba(0, 0, 0, 0.25);
  outline-offset: 3px;
}

@keyframes theme-toggle-pulse {
  0%, 100% {
    box-shadow: 5px 5px 0 #000;
  }

  50% {
    box-shadow: 5px 5px 0 #000, 0 0 0 6px rgba(0, 0, 0, 0.14);
  }
}

.theme-toggle-hint {
  animation: theme-toggle-pulse 1.8s ease-in-out 4;
}

@media (prefers-reduced-motion: reduce) {
  .theme-toggle-hint {
    animation: none;
  }
}

/* ─── Social FAB stack — under logo, top-left (B&W) ─── */
.social-fab-stack {
  left: 40px;
  top: 344px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 10;
}

.social-fab {
  position: relative;
  left: auto;
  top: auto;
  height: 56px;
  width: 56px;
  padding: 0 14px;
  border-radius: 28px;
  background: #000;
  border: 2px solid #000;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  transition: width 0.32s cubic-bezier(0.34, 1.45, 0.64, 1),
    transform 0.2s ease, box-shadow 0.2s ease, background 0.25s ease, color 0.25s ease;
}

.social-fab:hover,
.social-fab:focus-visible {
  transform: translateY(-2px);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.3);
  outline: none;
}

.sc-fab:hover,
.sc-fab:focus-visible,
.sc-fab.is-open {
  width: 188px;
}

.ig-fab:hover,
.ig-fab:focus-visible,
.ig-fab.is-open {
  width: 172px;
}

.social-fab-icon {
  flex: 0 0 auto;
}

.sc-fab-logo {
  width: 36px;
  height: 20px;
}

.ig-fab-icon {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ig-fab-icon circle:last-child {
  fill: #fff;
  stroke: none;
}

.sc-fab-bars rect,
.sc-fab-cloud {
  fill: #fff;
}

/* Equalizer animation — always gently bouncing, faster on hover */
.sc-fab-bars rect {
  transform-box: fill-box;
  transform-origin: bottom;
  animation: sc-eq 1.1s ease-in-out infinite alternate;
}

.sc-fab-bars rect:nth-child(1) { animation-delay: 0s;    }
.sc-fab-bars rect:nth-child(2) { animation-delay: 0.15s; }
.sc-fab-bars rect:nth-child(3) { animation-delay: 0.30s; }
.sc-fab-bars rect:nth-child(4) { animation-delay: 0.10s; }
.sc-fab-bars rect:nth-child(5) { animation-delay: 0.25s; }
.sc-fab-bars rect:nth-child(6) { animation-delay: 0.05s; }

.social-fab:hover .sc-fab-bars rect,
.social-fab:focus-visible .sc-fab-bars rect {
  animation-duration: 0.5s;
}

@keyframes sc-eq {
  0%   { transform: scaleY(0.45); }
  100% { transform: scaleY(1); }
}

.social-fab-label {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-width 0.32s ease, opacity 0.25s ease, margin-left 0.32s ease;
}

.social-fab:hover .social-fab-label,
.social-fab:focus-visible .social-fab-label,
.social-fab.is-open .social-fab-label {
  max-width: 120px;
  opacity: 1;
  margin-left: 10px;
}

.social-fab.is-open {
  transform: translateY(-2px);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.3);
}

.social-fab.is-open .sc-fab-bars rect {
  animation-duration: 0.5s;
}

@media (prefers-reduced-motion: reduce) {
  .sc-fab-bars rect {
    animation: none;
  }
}

.theme-icon {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  transition: opacity 0.2s ease;
}

/* Light mode: show moon, hide sun */
.theme-icon-sun {
  display: none;
}

.theme-icon-moon {
  display: block;
}

/* Dark mode: show sun, hide moon */
html.dark-mode .theme-icon-sun {
  display: block;
}

html.dark-mode .theme-icon-moon {
  display: none;
}

/* ─── Sticky header ─── */
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 76px;
  padding:
    calc(10px + env(safe-area-inset-top, 0px))
    24px
    10px
    28px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transform: translateY(-100%);
  transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
    background 0.3s ease,
    border-color 0.3s ease;
  pointer-events: none;
  overflow: visible;
}

.sticky-header.is-visible {
  transform: translateY(0);
  pointer-events: auto;
}

.sticky-logo {
  display: flex;
  align-items: center;
  flex: 0 1 auto;
  min-width: 0;
  text-decoration: none;
}

.sticky-logo-text {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: #000;
  line-height: 1;
  white-space: nowrap;
  text-transform: uppercase;
}

.sticky-header-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: auto;
}

.sticky-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(0, 0, 0, 0.18);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.03);
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.sticky-social-link:hover,
.sticky-social-link:focus-visible {
  transform: translateY(-1px) scale(1.04);
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.35);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  outline: none;
}

.sticky-social-icon {
  display: block;
  flex: 0 0 auto;
}

.sticky-social-icon-sc {
  width: 24px;
  height: 14px;
}

.sticky-sc-bars rect,
.sticky-sc-cloud {
  fill: #000;
}

.sticky-social-icon-ig {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #000;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sticky-social-icon-ig circle:last-child {
  fill: #000;
  stroke: none;
}

/* Arrow row — invisible on desktop (arrows are abs positioned); flex row on mobile */
.carousel-arrow-row {
  display: contents; /* no box — children participate in parent layout */
}

/* 4 cards × 220px + 3 gaps × 60px = 1060px, centered on 1728px page */
.popular-viewport {
  left: 334px;
  top: 297px;
  width: 1060px;
  height: 360px;
  z-index: 3;
}


.carousel-track {
  display: flex;
  gap: 60px;
  transition: transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform;
}

/* Hidden SoundCloud Widget iframe — controls audio off-screen */
#sc-widget {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  border: 0;
  pointer-events: none;
}

.carousel-slide {
  flex: 0 0 220px;
  width: 220px;
  overflow: visible;
  position: relative;
}

.carousel-slide.search-hidden {
  display: none;
}

.carousel-slide.search-highlight {
  animation: search-highlight 1.2s ease;
}

@keyframes search-highlight {

  0%,
  100% {
    transform: scale(1);
  }

  35% {
    transform: scale(1.04);
  }
}

.carousel-card-link {
  display: block;
  width: 220px;
  height: 220px;
  overflow: visible;
  text-decoration: none;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
  transition: transform 0.3s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.carousel-card-link:hover {
  transform: translateY(-6px) rotate(-1deg);
}

/* Play overlay (▶) — fades in on card hover */
.vinyl-play-overlay {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  width: 54px;
  height: 54px;
  margin: -27px 0 0 -27px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.88);
  border: 2.5px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.22s ease, transform 0.28s cubic-bezier(0.34, 1.5, 0.64, 1);
  pointer-events: none;
}

.vinyl-play-overlay svg {
  width: 22px;
  height: 22px;
  margin-left: 3px;
  fill: #fff;
}

.carousel-card-link:hover .vinyl-play-overlay,
.carousel-card-link:focus-visible .vinyl-play-overlay,
.vinyl-card.is-popped .vinyl-play-overlay {
  opacity: 1;
  transform: scale(1);
}

/* Small "Open on SoundCloud" link beneath the card */
.card-sc-link {
  position: absolute;
  bottom: 42px;
  right: 4px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  background: #fff;
  border: 1.5px solid #000;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  z-index: 4;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.18s ease, color 0.18s ease;
}

.card-sc-link svg {
  width: 10px;
  height: 10px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.carousel-slide:hover .card-sc-link,
.carousel-slide:focus-within .card-sc-link {
  opacity: 1;
  transform: translateY(0);
}

.card-sc-link:hover {
  background: #000;
  color: #fff;
}

.vinyl-card {
  position: relative;
  width: 220px;
  height: 220px;
  overflow: visible;
  cursor: pointer;
}

/* Playing badge — shows above active card */
.vinyl-card.is-popped::after {
  content: '▶ PLAYING';
  position: absolute;
  top: -22px;
  left: 0;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.22em;
  color: #000;
  white-space: nowrap;
  z-index: 10;
}

.vinyl-sleeve {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 220px;
  height: 220px;
  object-fit: cover;
  display: block;
  border: 2px solid #000;
  box-shadow: 5px 5px 0 #000;
  transition: transform 0.4s cubic-bezier(0.34, 1.2, 0.64, 1),
    box-shadow 0.25s ease;
  pointer-events: none;
}

.carousel-card-link:hover .vinyl-sleeve,
.carousel-card-link:focus-visible .vinyl-sleeve,
.vinyl-card.is-popped .vinyl-sleeve {
  box-shadow: 7px 7px 0 #000;
}

/* .vinyl-record removed — blank disc image no longer used */

/* Cover slides LEFT to reveal record */
.carousel-card-link:hover .vinyl-sleeve,
.carousel-card-link:focus-visible .vinyl-sleeve,
.vinyl-card.is-popped .vinyl-sleeve {
  transform: translateX(-10px);
}

.carousel-label {
  margin-top: 14px;
  font-size: 15px;
  color: #000;
  line-height: 1.25;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.track-label-bold {
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.track-label-italic {
  font-weight: 400;
  font-style: italic;
  font-size: 12px;
  opacity: 0.6;
}

/* Carousel arrows
   Viewport: left=100px, right=1628px (width=1528)
   Each arrow is 52px. 24px gap from viewport edge and 24px gap from page edge.
   Left arrow:  page-edge(0) + 24px = left:24px  → right-edge:76px → gap to viewport:100-76=24 ✓
   Right arrow: viewport-right(1628) + 24px = left:1652px → right-edge:1704 → page-edge gap:24 ✓
*/
.arrow {
  width: 52px;
  height: 52px;
  z-index: 15;
}

.arrow-btn {
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow-btn img {
  width: 52px;
  height: 52px;
  display: block;
  pointer-events: none;
}

.arrow-btn:hover:not(:disabled) {
  opacity: 0.75;
}

.arrow-btn:disabled {
  opacity: 0;
  pointer-events: none;
}

/* Centered on the 290px vinyl card vertically */
/* viewport left=334, right=1394; arrows 52px wide, 24px gap each side
   left arrow:  334 - 24 - 52 = 258px
   right arrow: 1394 + 24     = 1418px */
.arrow-left-top {
  left: 258px;
  top: 416px;
  transform: rotate(-90deg);
}


.arrow-right-top {
  left: 1418px;
  top: 416px;
  transform: rotate(90deg);
}


.arrow-btn:hover:not(:disabled).arrow-left-top {
  transform: rotate(-90deg) scale(1.1);
}

.arrow-btn:hover:not(:disabled).arrow-right-top {
  transform: rotate(90deg) scale(1.1);
}

/* Dividers */

.divider-bar {
  left: -5px;
  top: 680px;
  width: 1739px;
  height: 41px;
  background: conic-gradient(from 90deg,
      #000 0%,
      #060606 3.8462%,
      #0d0d0d 7.6923%,
      #1a1a1a 15.385%,
      #333 30.769%,
      #4d4d4d 46.154%,
      #666 61.538%,
      #4d4d4d 71.154%,
      #333 80.769%,
      #1a1a1a 90.385%,
      #0d0d0d 95.192%,
      #060606 97.596%,
      #000 100%);
}

.lights-off-top {
  left: 818px;
  top: 693px;
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  color: #fff;
  white-space: nowrap;
}


/* LAST CALL watermark repeating text */
.lc-watermark {
  font-size: 96px;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: rgba(0, 0, 0, 0.38);
  white-space: nowrap;
  pointer-events: none;
  z-index: 2;
  line-height: 1;
}

.lc-wm-1 {
  left: -474px;
  top: 760px;
}

.lc-wm-2 {
  left: -487px;
  top: 877px;
}

.lc-wm-3 {
  left: -491px;
  top: 994px;
}

.lc-wm-4 {
  left: 706px;
  top: 760px;
}

.lc-wm-5 {
  left: 706px;
  top: 877px;
}

.lc-wm-6 {
  left: 720px;
  top: 994px;
}

.lc-wm-7 {
  left: 1886px;
  top: 760px;
}

.lc-wm-8 {
  left: 1886px;
  top: 877px;
}

.lc-wm-9 {
  left: 1910px;
  top: 994px;
  color: rgba(0, 0, 0, 0.10);
}


/* About section background (full-bleed dark image with monster) */
.about-section-bg {
  left: -20px;
  top: 500px;
  width: 1768px;
  height: 1210px;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.about-section-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Face illustration — over the about section, matching Figma node 93:21 */
/* ── Monster soundwave visualiser ── */
/* ── Monster soundwave canvas ── */
.monster-soundwave {
  left: 0;
  top: 600px;
  width: 1728px;
  height: 480px;
  z-index: 4;
  pointer-events: none;
  display: block;
}

@media (max-width: 767px) {
  .monster-soundwave { display: none; }
}

.face-illustration {
  left: 610px;
  top: 740px;
  width: 480px;
  height: 566px;
  z-index: 6;
  pointer-events: none;
}

.face-illustration img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* About */
.about-bg {
  left: 0;
  top: 1251px;
  width: 0;
  height: 0;
  z-index: 3;
}

/* Josh sketch – left side of about section */
/* About stack — Josh sketch + bio panel */
.about-stack {
  position: absolute;
  left: 0;
  top: 1251px;
  width: 1728px;
  min-height: 689px;
  height: auto;
  z-index: 5;
}

.josh-sketch {
  left: 48px;
  top: 0;
  width: 828px;
  height: 689px;
  min-height: 689px;
  z-index: 5;
  pointer-events: none;
  border: 3px solid #000;
  background: #fff;
  overflow: hidden;
  transform: scaleY(-1) rotate(180deg);
  transform-origin: center center;
}

.josh-sketch img {
  width: 100%;
  height: 226.66%;
  max-width: none;
  object-fit: cover;
  object-position: left top;
  position: relative;
  top: -39.16%;
  display: block;
}

/* About panel – right side. Enhanced bio layout. */
.about-panel {
  position: absolute;
  left: 918px;
  top: 0;
  width: 810px;
  min-height: 689px;
  height: auto;
  background: #fff;
  border: 3px solid #000;
  z-index: 5;
  padding: 28px 48px 28px 56px;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-sizing: border-box;
  overflow: visible;
  /* subtle paper texture using layered gradients */
  background-image:
    radial-gradient(circle at 18% 12%, rgba(0, 0, 0, 0.025) 0%, transparent 35%),
    radial-gradient(circle at 88% 90%, rgba(0, 0, 0, 0.025) 0%, transparent 40%);
}

/* Header row: heading + live status pill */
.about-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.about-headline {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.about-brand-heading {
  font-size: 76px;
  font-weight: 900;
  color: #000;
  line-height: 0.78;
  letter-spacing: 0.048em;
  margin: 0;
}

.about-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #000;
  text-transform: uppercase;
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-eyebrow-dot {
  display: inline-block;
  color: #000;
  opacity: 0.6;
}

/* "ON THE DECKS" live status pill */
.about-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  border: 1.5px solid #000;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  background: #fff;
  margin-top: 6px;
}

.about-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #000;
  animation: status-pulse 1.6s ease-in-out infinite;
}

@keyframes status-pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.8);
  }
}

.soundwave-panel {
  display: block;
  width: 100%;
  max-width: 320px;
  height: auto;
  margin: 14px 0 16px;
  opacity: 0.85;
}

.about-text {
  font-size: 16px;
  font-weight: 300;
  color: #1a1a1a;
  line-height: 1.5;
  margin: 0 0 18px;
}

.about-text em {
  font-style: italic;
  font-weight: 500;
}

.about-text strong {
  font-weight: 700;
  font-style: italic;
  color: #000;
}

/* Stats row */
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  margin: 0 0 16px;
  padding: 14px 0;
  border-top: 1.5px solid #000;
  border-bottom: 1.5px solid #000;
  gap: 8px;
}

.about-stats li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2px;
}

.about-stat-num {
  font-size: 30px;
  font-weight: 900;
  color: #000;
  line-height: 1;
  font-style: italic;
  letter-spacing: 0.02em;
}

.about-stat-num sup {
  font-size: 16px;
  vertical-align: super;
  font-weight: 800;
}

.about-stat-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #000;
  opacity: 0.75;
}

/* Genre tag chips */
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
}

.about-tags li {
  padding: 5px 12px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #000;
  background: transparent;
  border: 1.5px solid #000;
  border-radius: 999px;
  text-transform: uppercase;
  transition: background 0.18s ease, color 0.18s ease;
}

.about-tags li:hover {
  background: #000;
  color: #fff;
}

/* Action buttons row (Latest Mix + Book Now) */
.about-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 999px;
  font-style: italic;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s ease, transform 0.15s ease, background 0.2s ease, color 0.2s ease;
}

.about-btn-ghost {
  background: transparent;
  color: #000;
  border: 2px solid #000;
}

.about-btn-ghost:hover {
  background: #000;
  color: #fff;
  transform: scale(1.02);
}

.about-btn-solid,
.book-now-btn {
  background: #000;
  color: #fff;
  border: 2px solid #000;
  font-size: 22px;
  padding: 11px 30px;
  margin-left: auto;
}

.about-btn-solid:hover,
.book-now-btn:hover {
  opacity: 0.85;
  transform: scale(1.02);
}

.about-btn-icon svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  display: block;
}

.about-socials {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: auto;
  padding-top: 6px;
  border-top: 1.5px solid rgba(0, 0, 0, 0.18);
}

.about-kicker {
  display: none;
}

.about-social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #000;
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.about-social-link span {
  display: none;
}

.about-social-link:hover,
.about-social-link:focus-visible {
  opacity: 0.75;
  transform: scale(1.06);
  outline: none;
}

.about-social-icon {
  display: block;
  flex: 0 0 auto;
}

.about-social-icon-sc {
  width: 32px;
  height: 16px;
}

.about-sc-bars rect,
.about-sc-cloud {
  fill: #000;
}

.about-social-icon-ig {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #000;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-social-icon-ig circle:last-child {
  fill: #000;
  stroke: none;
}

.social-link {
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.social-link:hover {
  opacity: 0.75;
  transform: scale(1.06);
}

/* Footer */
.site-footer {
  left: 0;
  top: 2012px;
  width: 1728px;
  background: #000;
  color: #fff;
  padding: 40px 78px 28px;
  z-index: 8;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(240px, 1.15fr) 1fr 0.95fr 1.25fr;
  gap: 40px 56px;
  align-items: start;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}

.footer-col-brand {
  gap: 18px;
}

.footer-logo-link {
  display: block;
  line-height: 0;
  overflow: visible;
  align-self: flex-start;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.footer-logo-link:hover,
.footer-logo-link:focus-visible {
  transform: translateY(-2px);
  opacity: 0.92;
  outline: none;
}

.footer-logo-img {
  height: 152px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left top;
  display: block;
  filter: invert(1);
}

.footer-brand-tagline {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin: 0 0 4px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link,
.footer-link-block,
.footer-brand-link {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.footer-link {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.35;
  position: relative;
  width: fit-content;
}

.footer-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.footer-link:hover,
.footer-link:focus-visible {
  opacity: 1;
  outline: none;
}

.footer-link:hover::after,
.footer-link:focus-visible::after {
  transform: scaleX(1);
}

.footer-brand-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  width: fit-content;
}

.footer-brand-link:hover,
.footer-brand-link:focus-visible {
  color: #fff;
  outline: none;
}

.footer-listen-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none;
  color: #fff;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.footer-listen-card:hover,
.footer-listen-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  outline: none;
}

.footer-listen-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer-listen-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.footer-listen-arrow {
  font-size: 18px;
  line-height: 1;
  opacity: 0.65;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.footer-listen-card:hover .footer-listen-arrow,
.footer-listen-card:focus-visible .footer-listen-arrow {
  transform: translateX(4px);
  opacity: 1;
}

.footer-listen-card-title {
  font-size: 17px;
  font-weight: 900;
  font-style: italic;
  line-height: 1.2;
}

.footer-listen-card-sub {
  font-size: 13px;
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.35;
}

.footer-mix-drop {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-top: 4px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.footer-mix-drop:hover,
.footer-mix-drop:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.45);
  outline: none;
}

.footer-mix-drop-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  color: #000;
}

.footer-mix-drop-icon svg {
  width: 11px;
  height: 11px;
  fill: currentColor;
  display: block;
}

.footer-social-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
}

.footer-social-soundcloud,
.footer-social-instagram {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.footer-social-soundcloud:hover,
.footer-social-soundcloud:focus-visible,
.footer-social-instagram:hover,
.footer-social-instagram:focus-visible {
  transform: translateY(-2px) scale(1.04);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
  outline: none;
}

.footer-social-icon-sc {
  width: 28px;
  height: 18px;
}

.footer-social-icon-ig {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-social-icon-ig circle:last-child {
  fill: #fff;
  stroke: none;
}

.footer-sc-bars rect,
.footer-sc-cloud {
  fill: #fff;
}

.footer-social-icon {
  display: block;
  flex: 0 0 auto;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-copyright {
  margin: 0;
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.4;
}

.footer-tagline {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  font-style: italic;
  color: #fff;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

/* ==========================================================================
   RESPONSIVE — TABLET (768px – 1199px)
   The JS scaling handles this range; just ensure the viewport wrapper
   is centred and doesn't overflow.
   ========================================================================== */
@media (max-width: 1199px) {
  .viewport {
    justify-content: flex-start;
    overflow-x: hidden;
  }
}

/* ==========================================================================
   RESPONSIVE — TABLET (768px – 1024px)
   JS still scales the 1728px canvas, but fixed/out-of-flow elements need
   their own adjustments since they sit outside the scale wrapper.
   ========================================================================== */
@media (max-width: 1024px) {
  .sticky-header {
    min-height: 68px;
    padding:
      calc(8px + env(safe-area-inset-top, 0px))
      20px
      8px
      20px;
  }

  .sticky-logo-text {
    font-size: 18px;
    letter-spacing: 0.12em;
  }

  .sticky-social-link {
    width: 38px;
    height: 38px;
  }

  /* Theme toggle: nudge slightly closer to edge */
  .theme-toggle {
    bottom: 20px;
    right: 18px;
    height: 52px;
    padding: 0 16px 0 12px;
  }
}

/* ==========================================================================
   RESPONSIVE — MOBILE (< 768px)
   JS adds .is-mobile to <body>, removing its scale transform.
   CSS takes over with a natural flow layout.
   ========================================================================== */
@media (max-width: 767px) {

  html,
  body {
    overflow-x: hidden;
  }

  .viewport {
    display: block;
    overflow-x: hidden;
  }

  /* JS leaves width/height blank for mobile; ensure wrap fills screen */
  .page-scale-wrap {
    width: 100% !important;
    height: auto !important;
  }

  /* Switch page from fixed-px to natural flow */
  .page {
    width: 100% !important;
    height: auto !important;
    transform: none !important;
    display: flex;
    flex-direction: column;
    overflow-x: clip;
    overflow-y: visible;
  }

  /* Reset ALL absolute positioning back to flow */
  .abs {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: auto !important;
    height: auto !important;
  }

  /* ---- STICKY HEADER (fixed, lives outside scaled wrapper) ---- */
  .sticky-header {
    min-height: 64px !important;
    padding:
      calc(8px + env(safe-area-inset-top, 0px))
      16px
      8px
      16px !important;
  }

  .sticky-logo-text {
    font-size: 17px !important;
    letter-spacing: 0.1em !important;
  }

  .sticky-header-socials {
    gap: 8px !important;
  }

  .sticky-social-link {
    width: 36px !important;
    height: 36px !important;
  }

  .sticky-social-icon-sc {
    width: 22px !important;
    height: 13px !important;
  }

  .sticky-social-icon-ig {
    width: 18px !important;
    height: 18px !important;
  }

  /* ---- LOGO ---- */
  .logo {
    height: auto !important;
    margin: 20px auto 0 !important;
    display: flex !important;
    justify-content: center !important;
  }

  .logo .logo-img {
    height: 230px !important;
  }

  /* Social links — centered under logo on mobile */
  .social-fab-stack {
    margin: 10px auto 0 !important;
    align-items: center !important;
  }

  .social-fab {
    width: 52px !important;
    height: 52px !important;
    display: flex !important;
  }

  .sc-fab:hover,
  .sc-fab:focus-visible,
  .sc-fab.is-open {
    width: 172px !important;
  }

  .ig-fab:hover,
  .ig-fab:focus-visible,
  .ig-fab.is-open {
    width: 160px !important;
  }

  /* ---- SEARCH ---- */
  .search-border-pill {
    display: none !important;
  }

  .search-wrap {
    width: calc(100% - 32px) !important;
    margin: 14px 16px 0;
  }

  /* ---- PLAYER ---- */
  .track-of-day-badge {
    display: none !important;
  }

  .theme-toggle {
    bottom: calc(16px + env(safe-area-inset-bottom, 0px)) !important;
    right: calc(14px + env(safe-area-inset-right, 0px)) !important;
    height: 50px !important;
    padding: 0 14px 0 12px !important;
    gap: 8px !important;
    border-width: 2px !important;
    box-shadow: 4px 4px 0 #000 !important;
  }

  .theme-toggle-label {
    font-size: 10px !important;
    letter-spacing: 0.1em !important;
  }

  .theme-icon {
    width: 18px !important;
    height: 18px !important;
  }

  .player-widget-wrap {
    --player-width: 100%;
    --player-height: 130px;
    --disc-size: 130px;
    --panel-overlap: 52px;
    width: calc(100% - 32px) !important;
    height: var(--player-height) !important;
    margin: 16px 16px 0;
  }

  /* Allow title to wrap rather than truncate on narrow screens */
  .player-title {
    max-width: 100% !important;
    white-space: normal !important;
    font-size: 14px !important;
    line-height: 1.3 !important;
  }

  /* ---- SEARCH (inside player area, not hidden) ---- */
  .search-field {
    height: 52px !important;
  }

  .search-input {
    font-size: 18px !important;
    padding: 0 46px 0 54px !important;
  }

  .search-icon {
    left: 18px !important;
    width: 20px !important;
    height: 20px !important;
  }

  /* ---- SECTION TITLES ---- */
  .section-title-popular {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: none !important;
    text-align: center !important;
    padding: 28px 16px 10px !important;
    font-size: 26px !important;
    letter-spacing: 0.12em !important;
  }

  .section-title-popular:hover,
  .section-title-popular:focus-visible {
    transform: scale(1.02) !important;
    letter-spacing: 0.16em !important;
  }

  .section-title-popular::after {
    height: 3px !important;
    margin-top: 10px !important;
  }

  .section-title-popular:hover::after,
  .section-title-popular:focus-visible::after {
    width: 120px !important;
  }

  .soundwave-section {
    display: none !important;
  }

  /* ---- CAROUSELS ---- */
  .carousel-viewport,
  .popular-viewport {
    width: 100% !important;
    height: auto !important;
    overflow-x: auto !important;
    overflow-y: visible !important;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    touch-action: pan-x;
    padding: 0 16px 8px;
    /* hide scrollbar but keep functionality */
    scrollbar-width: none;
  }

  .popular-viewport::-webkit-scrollbar,
  .carousel-viewport::-webkit-scrollbar {
    display: none;
  }

  /* On mobile the carousels use native CSS scroll, not JS translate */
  .carousel-track {
    transform: none !important;
    transition: none !important;
    width: max-content;
    gap: 20px !important;
    padding-right: 16px;
  }

  .carousel-slide {
    flex: 0 0 165px !important;
    width: 165px !important;
    scroll-snap-align: start;
    touch-action: pan-x;
  }

  .carousel-card-link {
    width: 165px !important;
    height: 165px !important;
    transform: none !important;
    touch-action: pan-x;
  }

  .carousel-card-link:hover {
    transform: none !important;
  }

  .vinyl-card {
    width: 165px !important;
    height: 165px !important;
  }

  .vinyl-sleeve {
    width: 165px !important;
    height: 165px !important;
  }

  /* .vinyl-record mobile override removed */

  .carousel-label {
    font-size: 12px !important;
    margin-top: 8px !important;
  }

  .track-label-bold {
    font-size: 12px !important;
  }

  .track-label-italic {
    font-size: 11px !important;
  }

  /* ---- CAROUSEL ARROWS (mobile — shown as centred row under carousel) ---- */
  .carousel-arrow-row {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 24px !important;
    padding: 4px 0 0 !important;
    width: 100% !important;
  }

  .arrow {
    display: flex !important;
    position: static !important;
    top: auto !important;
    left: auto !important;
    width: 44px !important;
    height: 44px !important;
  }

  .arrow-btn img {
    width: 44px !important;
    height: 44px !important;
  }

  .arrow-left-top  { transform: rotate(-90deg) !important; }
  .arrow-right-top { transform: rotate(90deg)  !important; }

  .arrow-btn:hover:not(:disabled).arrow-left-top,
  .arrow-btn:hover:not(:disabled).arrow-right-top {
    transform: rotate(-90deg) scale(1.1) !important;
  }
  .arrow-btn:hover:not(:disabled).arrow-right-top {
    transform: rotate(90deg) scale(1.1) !important;
  }

  /* ---- DIVIDERS / DECORATIVE ---- */
  .divider-bar,
  .lights-off-top,
  .lc-watermark,
  .about-bg {
    display: none !important;
  }

  /* ---- ABOUT SECTION ---- */
  .about-section-bg {
    width: 140% !important;
    height: 440px !important;
    top: auto !important;
    left: -20% !important;
    overflow: hidden;
    margin-top: -16px !important;
    margin-bottom: -200px !important;
    z-index: 1 !important;
  }

  .about-section-bg img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: 55% 100% !important;
  }

  /* Face illustration — overlaps monster + Josh sketch */
  .face-illustration {
    display: flex !important;
    justify-content: center !important;
    width: 200px !important;
    height: 240px !important;
    margin: -160px auto -24px !important;
    position: relative !important;
    z-index: 6 !important;
    pointer-events: none !important;
    overflow: visible !important;
  }

  .face-illustration img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center bottom !important;
  }

  /* About stack — Josh image + bio panel as one full-width block */
  #about {
    scroll-margin-top: calc(84px + env(safe-area-inset-top, 0px));
  }

  .about-stack {
    width: calc(100% - 32px) !important;
    height: auto !important;
    top: auto !important;
    left: auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    padding: 0 !important;
    margin: 0 16px 28px !important;
    z-index: 4 !important;
    border: 2px solid #000;
    box-shadow: 6px 6px 0 #000;
    overflow: hidden;
    background: #fff;
  }

  .josh-sketch {
    order: 1;
    width: 100% !important;
    aspect-ratio: 768 / 1369 !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    margin: 0 !important;
    overflow: hidden;
    transform: none !important;
    border: none !important;
    border-bottom: 2px solid #000 !important;
    box-shadow: none !important;
    background: #fff !important;
    position: relative !important;
    z-index: 3 !important;
    display: block !important;
    padding: 0 !important;
  }

  .josh-sketch img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover !important;
    object-position: center center !important;
    position: static !important;
    top: auto !important;
    display: block !important;
  }

  .about-panel {
    order: 2;
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    height: auto !important;
    z-index: 4 !important;
    border: none !important;
    box-shadow: none !important;
    background: #fff !important;
    padding: 28px 22px 32px !important;
    margin: 0 !important;
  }

  .about-kicker {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.48);
    margin: 0 0 14px;
  }

  .about-panel-header {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px 12px !important;
    padding-bottom: 16px !important;
    margin-bottom: 4px !important;
    border-bottom: 1.5px solid #000 !important;
  }

  .about-headline {
    flex: 1 1 auto !important;
    min-width: 0 !important;
  }

  .about-brand-heading {
    font-size: clamp(44px, 13vw, 52px) !important;
    line-height: 0.82 !important;
    padding: 0 !important;
    letter-spacing: 0.04em !important;
    text-align: left;
  }

  .about-eyebrow {
    font-size: 9px !important;
    letter-spacing: 0.16em !important;
    line-height: 1.4 !important;
  }

  .about-status {
    align-self: auto !important;
    flex-shrink: 0 !important;
    margin-top: 0 !important;
    font-size: 9px !important;
    padding: 6px 10px !important;
  }

  .soundwave-panel {
    display: none !important;
  }

  .about-text {
    font-size: 15px !important;
    line-height: 1.65 !important;
    margin-bottom: 20px !important;
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr) !important;
    background: rgba(0, 0, 0, 0.03) !important;
    border: 1.5px solid #000 !important;
    border-radius: 10px !important;
    padding: 16px 8px !important;
    margin: 0 0 18px !important;
    gap: 0 !important;
  }

  .about-stats li {
    border-right: 1px solid rgba(0, 0, 0, 0.12) !important;
    padding: 0 4px !important;
  }

  .about-stats li:last-child {
    border-right: none !important;
  }

  .about-stat-num {
    font-size: 26px !important;
  }

  .about-stat-label {
    font-size: 7px !important;
    letter-spacing: 0.14em !important;
    line-height: 1.35 !important;
  }

  .about-tags {
    justify-content: flex-start !important;
    gap: 8px !important;
    margin-bottom: 22px !important;
  }

  .about-tags li {
    font-size: 9px !important;
    padding: 6px 12px !important;
  }

  .about-actions {
    flex-direction: column !important;
    gap: 12px !important;
    align-items: stretch !important;
    margin-bottom: 0 !important;
  }

  .book-now-btn {
    order: -1 !important;
  }

  .about-btn,
  .about-btn-solid,
  .book-now-btn {
    font-size: 18px !important;
    margin-left: 0 !important;
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
    padding: 14px 20px !important;
  }

  .about-socials {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    margin-top: 24px !important;
    justify-content: stretch !important;
    border-top: 1.5px solid #000 !important;
    padding-top: 20px !important;
  }

  .about-social-link {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    width: 100% !important;
    padding: 12px 16px !important;
    border: 1.5px solid #000 !important;
    border-radius: 999px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 0.14em !important;
    text-transform: uppercase !important;
    transform: none !important;
    opacity: 1 !important;
  }

  .about-social-link span {
    display: inline !important;
  }

  .about-social-link:hover,
  .about-social-link:focus-visible {
    background: #000 !important;
    color: #fff !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .about-social-link:hover .about-sc-bars rect,
  .about-social-link:hover .about-sc-cloud,
  .about-social-link:focus-visible .about-sc-bars rect,
  .about-social-link:focus-visible .about-sc-cloud {
    fill: #fff;
  }

  .about-social-link:hover .about-social-icon-ig,
  .about-social-link:focus-visible .about-social-icon-ig {
    stroke: #fff;
  }

  .about-social-link:hover .about-social-icon-ig circle:last-child,
  .about-social-link:focus-visible .about-social-icon-ig circle:last-child {
    fill: #fff;
  }

  /* ---- FOOTER ---- */
  .site-footer {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    padding: 32px 20px calc(24px + env(safe-area-inset-bottom, 0px)) !important;
    background: #000 !important;
  }

  .footer-inner {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 24px 20px !important;
  }

  .footer-col-brand,
  .footer-col-listen {
    grid-column: 1 / -1;
  }

  .footer-col-brand {
    align-items: center !important;
    text-align: center;
    gap: 14px !important;
  }

  .footer-logo-link {
    align-self: center !important;
  }

  .footer-logo-img {
    height: 188px !important;
    width: auto !important;
    max-width: min(100%, 320px) !important;
    object-fit: contain !important;
  }

  .footer-brand-tagline {
    text-align: center;
  }

  .footer-social-row {
    justify-content: center !important;
    margin-top: 6px !important;
  }

  .footer-col-title {
    padding: 0 !important;
    margin-bottom: 2px !important;
  }

  .footer-nav {
    gap: 8px !important;
  }

  .footer-link {
    font-size: 16px !important;
    padding: 2px 0 !important;
  }

  .footer-listen-card {
    width: 100%;
  }

  .footer-mix-drop {
    width: 100%;
    justify-content: center;
  }

  .footer-brand-link {
    align-self: center;
  }

  .footer-bottom {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center;
    gap: 10px !important;
    margin-top: 28px !important;
    padding-top: 20px !important;
  }

  .footer-tagline {
    white-space: normal !important;
    font-size: 15px !important;
  }

  .footer-copyright {
    font-size: 11px !important;
  }

}

/* ═══════════════════════════════════════════
   BOOKING MODAL
   ═══════════════════════════════════════════ */

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.booking-modal[hidden] {
  display: none;
}

/* semi-transparent backdrop */
.booking-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: bf-fade-in 0.25s ease;
}

/* card */
.booking-card {
  position: relative;
  width: 100%;
  max-width: 640px;
  max-height: 90vh;
  overflow-y: auto;
  background: #fff;
  border: 3px solid #000;
  box-shadow: 8px 8px 0 #000;
  border-radius: 4px;
  padding: 48px 44px 40px;
  animation: bf-slide-up 0.3s cubic-bezier(0.34, 1.35, 0.64, 1);
  scroll-behavior: smooth;
}

@keyframes bf-fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes bf-slide-up {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* close button */
.booking-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #000;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
  color: #000;
}

.booking-close:hover {
  background: #000;
  color: #fff;
}

.booking-close svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
}

/* header */
.booking-eyebrow {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.26em;
  color: rgba(0, 0, 0, 0.45);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.booking-title {
  font-size: 42px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0.02em;
  line-height: 1;
  color: #000;
  margin-bottom: 8px;
}

.booking-subtitle {
  font-size: 14px;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.55);
  margin-bottom: 28px;
  line-height: 1.5;
}

/* form layout */
.bf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.bf-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.bf-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #000;
}

.bf-input {
  width: 100%;
  padding: 12px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #000;
  background: transparent;
  border: none;
  border-bottom: 2px solid #000;
  outline: none;
  transition: border-color 0.2s ease;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
}

.bf-input::placeholder {
  color: rgba(0, 0, 0, 0.3);
}

.bf-input:focus {
  border-bottom-color: #000;
  border-bottom-width: 3px;
}

.bf-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23000' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 28px;
}

.bf-textarea {
  resize: vertical;
  min-height: 96px;
  border: 2px solid #000;
  border-radius: 2px;
  padding: 12px 14px;
}

.bf-submit {
  display: block;
  width: 100%;
  padding: 16px 24px;
  margin-top: 8px;
  background: #000;
  color: #fff;
  border: 2px solid #000;
  border-radius: 2px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.15s ease;
}

.bf-submit:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.bf-submit:active {
  transform: translateY(0);
}

/* success state */
.booking-success {
  text-align: center;
  padding: 40px 20px;
}

.booking-success-icon {
  font-size: 52px;
  line-height: 1;
  margin-bottom: 20px;
}

.booking-success-title {
  font-size: 36px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0.04em;
  color: #000;
  margin-bottom: 14px;
}

.booking-success-msg {
  font-size: 15px;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.6;
  margin-bottom: 32px;
}

/* mobile */
@media (max-width: 600px) {
  .booking-card {
    padding: 36px 20px calc(28px + env(safe-area-inset-bottom, 0px));
    box-shadow: 4px 4px 0 #000;
  }

  .bf-row {
    grid-template-columns: 1fr;
  }

  .booking-title {
    font-size: 30px;
  }
}

/* ═══════════════════════════════════════════
   DARK MODE
   Applied via <html class="dark-mode">
   ═══════════════════════════════════════════ */

/* Smooth transitions when switching themes */
html,
body,
.viewport,
.page,
.player-panel,
.about-panel,
.josh-sketch,
.search-results,
.section-title,
.carousel-label,
.track-label-bold,
.track-label-italic,
.vinyl-sleeve,
.card-sc-link,
.about-eyebrow,
.about-status,
.about-status-dot,
.about-stat-value,
.about-stat-label,
.about-tags li,
.about-actions a,
.about-actions button,
.player-title,
.player-artist,
.lc-watermark,
.logo-img,
.search-result-item,
.theme-toggle {
  transition:
    background-color 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease,
    filter 0.3s ease !important;
}

/* ── Base backgrounds ── */
html.dark-mode {
  color-scheme: dark;
  background: #000 !important;
}

html.dark-mode body,
html.dark-mode .viewport,
html.dark-mode .page-scale-wrap,
html.dark-mode .page {
  background: #000 !important;
}

/* ── Logo: invert black SVGs to white ── */
html.dark-mode .logo-img {
  filter: invert(1);
}

/* ── Section titles ── */
html.dark-mode .section-title {
  color: #f0f0f0;
}

/* ── Carousel: labels, cards, vinyl border/shadow ── */

/* Section heading above cards */
html.dark-mode .section-title,
html.dark-mode .section-title-popular {
  color: #fff !important;
}

/* Vinyl card — dark bg so artwork pops off the dark monster texture */
html.dark-mode .vinyl-card {
  background: #1c1c1c !important;
}

/* Track labels */
html.dark-mode .carousel-label {
  color: #000 !important;
}

html.dark-mode .track-label-bold {
  color: #000 !important;
}

html.dark-mode .track-label-italic {
  color: rgba(0, 0, 0, 0.6) !important;
  opacity: 1 !important;
}

/* Vinyl sleeve border and shadow */
html.dark-mode .vinyl-sleeve {
  border-color: rgba(255, 255, 255, 0.7);
  box-shadow: 5px 5px 0 rgba(255, 255, 255, 0.25);
}

html.dark-mode .carousel-card-link:hover .vinyl-sleeve,
html.dark-mode .carousel-card-link:focus-visible .vinyl-sleeve,
html.dark-mode .vinyl-card.is-popped .vinyl-sleeve {
  box-shadow: 7px 7px 0 rgba(255, 255, 255, 0.35);
}

html.dark-mode .vinyl-card.is-popped::after {
  color: #fff !important;
}

/* Carousel hover lift stays visible */
html.dark-mode .carousel-card-link:hover {
  filter: brightness(1.08);
}

html.dark-mode .card-sc-link {
  background: #1e1e1e;
  border-color: rgba(255, 255, 255, 0.4);
  color: #f0f0f0;
}

html.dark-mode .card-sc-link:hover {
  background: #f0f0f0;
  color: #000;
}

/* ── LAST CALL watermarks ── */
html.dark-mode .lc-watermark {
  color: rgba(255, 255, 255, 0.1) !important;
}

/* ── Player widget ── */
html.dark-mode .player-panel {
  background: #1a1a1a;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.5);
}

html.dark-mode .player-title {
  color: #f0f0f0;
}

html.dark-mode .player-artist {
  color: rgba(255, 255, 255, 0.6);
}

html.dark-mode .player-mute {
  color: rgba(255, 255, 255, 0.5);
}

html.dark-mode .player-mute:hover {
  color: #f0f0f0;
}

html.dark-mode .player-progress {
  background: rgba(255, 255, 255, 0.12);
}

html.dark-mode .player-progress-fill {
  background: #f0f0f0;
}

html.dark-mode .player-btn {
  color: rgba(255, 255, 255, 0.7);
}

html.dark-mode .player-btn:hover {
  color: #fff;
}

/* ── Search ── */
html.dark-mode .search-results {
  background: #1a1a1a;
  border-color: rgba(255, 255, 255, 0.15);
}

html.dark-mode .search-result-item {
  color: #f0f0f0;
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

html.dark-mode .search-result-item:hover,
html.dark-mode .search-result-item[aria-selected="true"] {
  background: rgba(255, 255, 255, 0.08);
}

html.dark-mode .search-result-empty {
  color: rgba(255, 255, 255, 0.5);
}

/* ── Josh sketch (image frame) ── */
html.dark-mode .josh-sketch {
  background: #1c1c1c !important;
  border-color: rgba(255, 255, 255, 0.6) !important;
}

html.dark-mode .about-stack {
  background: #1c1c1c !important;
  border-color: rgba(255, 255, 255, 0.6) !important;
  box-shadow: 4px 4px 0 rgba(255, 255, 255, 0.12);
}

html.dark-mode .about-stack .josh-sketch {
  border-bottom-color: rgba(255, 255, 255, 0.6) !important;
}

/* ── About panel ── */
html.dark-mode .about-panel {
  background: #1c1c1c !important;
  border-color: rgba(255, 255, 255, 0.6) !important;
}

html.dark-mode .about-brand-heading,
html.dark-mode .about-headline {
  color: #f0f0f0;
}

html.dark-mode .about-eyebrow {
  color: rgba(255, 255, 255, 0.5);
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

html.dark-mode .about-eyebrow-dot {
  background: rgba(255, 255, 255, 0.25);
}

html.dark-mode .about-status {
  color: rgba(255, 255, 255, 0.7);
}

html.dark-mode .about-text,
html.dark-mode .about-text p {
  color: rgba(255, 255, 255, 0.75);
}

html.dark-mode .about-stats {
  border-color: rgba(255, 255, 255, 0.12);
}

html.dark-mode .about-stats li {
  border-color: rgba(255, 255, 255, 0.12);
}

/* stat number — correct class is about-stat-num */
html.dark-mode .about-stat-num {
  color: #f0f0f0;
}

html.dark-mode .about-stat-label {
  color: rgba(255, 255, 255, 0.5);
}

html.dark-mode .about-text strong {
  color: #f0f0f0;
}

html.dark-mode .about-status {
  background: #2a2a2a;
  border-color: rgba(255, 255, 255, 0.3);
}

html.dark-mode .about-status-dot {
  background: #4ade80;
}

html.dark-mode .about-eyebrow-dot {
  color: rgba(255, 255, 255, 0.35);
}

html.dark-mode .about-tags li {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
}

html.dark-mode .about-tags li:hover {
  background: rgba(255, 255, 255, 0.14);
}

/* ghost button */
html.dark-mode .about-btn-ghost {
  color: #f0f0f0;
  border-color: rgba(255, 255, 255, 0.55);
}

html.dark-mode .about-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: #fff;
}

/* solid / book-now button — invert to stay legible */
html.dark-mode .about-btn-solid,
html.dark-mode .book-now-btn {
  background: #f0f0f0;
  color: #000;
  border-color: #f0f0f0;
}

html.dark-mode .about-btn-solid:hover,
html.dark-mode .book-now-btn:hover {
  background: #fff;
  border-color: #fff;
}

html.dark-mode .about-socials {
  border-top-color: rgba(255, 255, 255, 0.18);
}

html.dark-mode .about-social-link {
  color: #f0f0f0;
  border-color: rgba(255, 255, 255, 0.45);
}

html.dark-mode .about-sc-bars rect,
html.dark-mode .about-sc-cloud {
  fill: #f0f0f0;
}

html.dark-mode .about-social-icon-ig {
  stroke: #f0f0f0;
}

html.dark-mode .about-social-icon-ig circle:last-child {
  fill: #f0f0f0;
}

html.dark-mode .about-kicker {
  color: rgba(255, 255, 255, 0.45);
}

html.dark-mode .soundwave-panel {
  filter: invert(1);
}

/* ── Sticky header in dark mode ── */
html.dark-mode .sticky-header {
  background: rgba(0, 0, 0, 0.92);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

html.dark-mode .sticky-logo-text {
  color: #f0f0f0;
}

html.dark-mode .sticky-social-link {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
}

html.dark-mode .sticky-social-link:hover,
html.dark-mode .sticky-social-link:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

html.dark-mode .sticky-sc-bars rect,
html.dark-mode .sticky-sc-cloud {
  fill: #fff;
}

html.dark-mode .sticky-social-icon-ig {
  stroke: #fff;
}

html.dark-mode .sticky-social-icon-ig circle:last-child {
  fill: #fff;
}

/* ── Toggle button in dark mode ── */
html.dark-mode .theme-toggle {
  background: #111;
  border-color: #fff;
  color: #fff;
  box-shadow: 5px 5px 0 rgba(255, 255, 255, 0.85);
}

html.dark-mode .theme-toggle:hover {
  box-shadow: 7px 7px 0 rgba(255, 255, 255, 0.85);
}

html.dark-mode .theme-toggle:active {
  box-shadow: 3px 3px 0 rgba(255, 255, 255, 0.85);
}

html.dark-mode .theme-toggle:focus-visible {
  outline-color: rgba(255, 255, 255, 0.35);
}

html.dark-mode .social-fab {
  background: #fff;
  border-color: #fff;
  box-shadow: 4px 4px 0 rgba(255, 255, 255, 0.12);
}

html.dark-mode .social-fab-label {
  color: #000;
}

html.dark-mode .sc-fab-bars rect,
html.dark-mode .sc-fab-cloud {
  fill: #000;
}

html.dark-mode .ig-fab-icon {
  stroke: #000;
}

html.dark-mode .ig-fab-icon circle:last-child {
  fill: #000;
}

html.dark-mode .social-fab:hover,
html.dark-mode .social-fab:focus-visible,
html.dark-mode .social-fab.is-open {
  box-shadow: 6px 6px 0 rgba(255, 255, 255, 0.18);
}

/* ── Track of the day badge ── */
html.dark-mode .track-of-day-badge {
  background: #1e1e1e;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #f0f0f0;
}

/* ── Carousel arrows — invert black SVG to white ── */
html.dark-mode .arrow-btn img {
  filter: invert(1);
}

/* ── Player controls ── */
html.dark-mode .player-control {
  color: #f0f0f0;
}

html.dark-mode .player-control:focus-visible {
  outline-color: rgba(255, 255, 255, 0.6);
}

html.dark-mode .player-progress {
  background: rgba(255, 255, 255, 0.15);
}

html.dark-mode .player-progress-fill {
  background: #f0f0f0;
}

/* disc center hole */
html.dark-mode .player-disc::after {
  background: #111;
}

/* ── Divider bar — add slight glow so it reads on dark bg ── */
html.dark-mode .divider-bar {
  opacity: 0.55;
}

/* ── Section-title on dark page bg ── */
html.dark-mode .section-title-popular {
  color: #f0f0f0;
}

html.dark-mode .section-title-popular::after {
  background: #fff;
}

html.dark-mode .section-title-popular:hover,
html.dark-mode .section-title-popular:focus-visible {
  text-shadow: 0 6px 28px rgba(255, 255, 255, 0.12);
}

/* ── About social links in dark mode (mobile pill buttons) ── */
html.dark-mode .about-social-link:hover,
html.dark-mode .about-social-link:focus-visible {
  background: #f0f0f0;
  color: #000;
  border-color: #f0f0f0;
}

html.dark-mode .about-social-link:hover .about-sc-bars rect,
html.dark-mode .about-social-link:hover .about-sc-cloud,
html.dark-mode .about-social-link:focus-visible .about-sc-bars rect,
html.dark-mode .about-social-link:focus-visible .about-sc-cloud {
  fill: #000;
}

html.dark-mode .about-social-link:hover .about-social-icon-ig,
html.dark-mode .about-social-link:focus-visible .about-social-icon-ig {
  stroke: #000;
}

html.dark-mode .about-social-link:hover .about-social-icon-ig circle:last-child,
html.dark-mode .about-social-link:focus-visible .about-social-icon-ig circle:last-child {
  fill: #000;
}

html.dark-mode .about-stats {
  background: rgba(255, 255, 255, 0.04) !important;
}

html.dark-mode .about-panel-header {
  border-bottom-color: rgba(255, 255, 255, 0.35) !important;
}

/* ── Booking modal ── */
html.dark-mode .booking-card {
  background: #1a1a1a;
  border-color: rgba(255, 255, 255, 0.7);
  box-shadow: 8px 8px 0 rgba(255, 255, 255, 0.2);
  color: #f0f0f0;
}

html.dark-mode .booking-close {
  border-color: rgba(255, 255, 255, 0.6);
  color: #f0f0f0;
}

html.dark-mode .booking-close:hover {
  background: #f0f0f0;
  color: #000;
}

html.dark-mode .booking-eyebrow {
  color: rgba(255, 255, 255, 0.4);
}

html.dark-mode .booking-title,
html.dark-mode .booking-success-title {
  color: #f0f0f0;
}

html.dark-mode .booking-subtitle,
html.dark-mode .booking-success-msg {
  color: rgba(255, 255, 255, 0.5);
}

html.dark-mode .bf-label {
  color: rgba(255, 255, 255, 0.7);
}

html.dark-mode .bf-input {
  color: #f0f0f0;
  border-bottom-color: rgba(255, 255, 255, 0.4);
}

html.dark-mode .bf-input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

html.dark-mode .bf-input:focus {
  border-bottom-color: #f0f0f0;
}

html.dark-mode .bf-textarea {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.04);
}

html.dark-mode .bf-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23f0f0f0' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-color: transparent;
}

html.dark-mode .bf-select option {
  background: #1a1a1a;
  color: #f0f0f0;
}

html.dark-mode .bf-submit {
  background: #f0f0f0;
  color: #000;
  border-color: #f0f0f0;
}

html.dark-mode .bf-submit:hover {
  background: #fff;
  border-color: #fff;
}

/* canvas visualiser has no CSS colour overrides — colours drawn in JS */