:root {
  --blue: #3d8bff;
  --blue-2: #6eafff;
  --blue-3: #1d5fe8;
  --ink: #101826;
  --muted: #5b6578;
  --paper: #fff;
  --sand: #eef3fb;
  --line: rgba(16, 24, 38, 0.08);
  --shadow: 0 18px 50px rgba(16, 40, 90, 0.12);
  --radius: 22px;
  --nav-h: 78px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 28px);
}

body {
  margin: 0;
  font-family: Manrope, system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

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

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

h1,
h2,
h3 {
  font-family: Oswald, Impact, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: #000;
  color: #fff;
  padding: 8px 12px;
  z-index: 100;
}

.skip-link:focus {
  left: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 700;
  font-size: 0.92rem;
  border: 0;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-solid {
  background: var(--ink);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.nav.is-scrolled .btn-ghost {
  color: var(--ink);
  border-color: var(--line);
}

.btn-white {
  background: #fff;
  color: var(--blue-3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.btn-line {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}

.kicker {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--blue);
}

.muted {
  color: var(--muted);
}

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--nav-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 0 36px 0 88px;
  color: #fff;
  transition: background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px rgba(16, 40, 90, 0.08);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  display: block;
  background: #9fd0ff;
  border: 2px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 4px 14px rgba(8, 30, 80, 0.22);
}

.nav.is-scrolled .nav-mark {
  border-color: rgba(29, 95, 232, 0.35);
}

.nav-word {
  font-family: Oswald, sans-serif;
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-weight: 600;
  font-size: 0.92rem;
}

.nav-links a {
  opacity: 0.82;
  position: relative;
}

.nav-links a:hover,
.nav-links a.is-active {
  opacity: 1;
}

.nav-links a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.nav-actions {
  display: flex;
  gap: 10px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  padding: 10px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: currentColor;
  margin: 6px 0;
  border-radius: 2px;
}

.hero-band {
  position: relative;
  min-height: 0;
  padding: calc(var(--nav-h) + 28px) 36px 290px 88px;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.22), transparent 28%),
    linear-gradient(152deg, #7eb8ff 0%, #3d8bff 42%, #1d5fe8 74%, #0b3aa8 100%);
  color: #fff;
  overflow: hidden;
}

.hero-band::before,
.hero-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-band::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  opacity: 0.22;
  mix-blend-mode: overlay;
}

.hero-band::after {
  background:
    linear-gradient(90deg, rgba(8, 24, 72, 0.62) 0%, rgba(8, 24, 72, 0.28) 48%, rgba(8, 24, 72, 0.18) 100%),
    linear-gradient(180deg, rgba(11, 58, 168, 0.28) 0%, rgba(8, 24, 72, 0.42) 100%);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.social-rail {
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 3;
}

.social-rail a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: #fff;
  transition: background 0.2s ease, transform 0.2s ease;
}

.social-rail a:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

.social-rail svg {
  width: 16px;
  height: 16px;
}

.hero {
  position: relative;
  z-index: 3;
  display: grid;
  max-width: 720px;
  min-height: 0;
  align-content: start;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 0 0 14px;
}

.yt-badge {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  color: #ff2a2a;
  display: grid;
  place-items: center;
}

.yt-badge svg {
  width: 18px;
}

.hero-copy h1 {
  font-size: clamp(4.6rem, 9vw, 8.4rem);
  line-height: 0.82;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}

.hero-copy h1 span {
  display: block;
}

.hero-copy h1 em {
  display: block;
  font-style: normal;
  font-size: 0.34em;
  letter-spacing: 0.06em;
  margin-top: 12px;
  opacity: 0.92;
}

.lead {
  max-width: 460px;
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 22px 0 18px;
  opacity: 0.94;
}

.hero-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-bottom: 26px;
}

.hero-socials a {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  padding-bottom: 2px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 8px;
}

.hero-cut {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 280px;
  background: #fff;
  clip-path: polygon(0 38%, 100% 0, 100% 100%, 0 100%);
  z-index: 2;
}

.videos {
  position: relative;
  z-index: 4;
  margin-top: -132px;
  padding: 0 36px 28px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 22px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.section-head h2,
.drop-copy h2,
.about h2,
.contact h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  text-transform: uppercase;
}

.video-nav {
  display: flex;
  gap: 8px;
}

.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.icon-btn svg {
  width: 18px;
}

.icon-btn:hover {
  background: var(--sand);
}

.video-row {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 4px 18px;
  max-width: 1280px;
  margin: 0 auto;
  scrollbar-width: none;
}

.video-row::-webkit-scrollbar {
  display: none;
}

.video-card {
  flex: 0 0 260px;
  scroll-snap-align: start;
  cursor: pointer;
  background: transparent;
  transition: transform 0.25s ease;
}

.video-card:hover {
  transform: translateY(-8px);
}

.video-card.skeleton {
  height: 250px;
  border-radius: 18px;
  background: linear-gradient(90deg, #eee, #f7f7f7, #eee);
  background-size: 200% 100%;
  animation: shine 1.2s infinite;
}

@keyframes shine {
  to {
    background-position: -200% 0;
  }
}

.thumb {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #111;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.video-card:hover .thumb img {
  transform: scale(1.05);
}

.play {
  position: absolute;
  inset: auto 12px 12px auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  color: var(--blue-3);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
}

.play svg {
  width: 14px;
  margin-left: 1px;
}

.videos .video-card h3,
.videos .meta {
  color: var(--ink);
}

.video-card h3 {
  font-family: Manrope, sans-serif;
  font-size: 0.92rem;
  line-height: 1.35;
  margin: 12px 2px 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.meta {
  margin: 0 2px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.drop {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 40px 36px 100px;
  max-width: 1280px;
  margin: 0 auto;
}

.drop-visual {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 420px;
  background: linear-gradient(135deg, #4ea0ff, #1d4ed8);
}

@media (min-width: 981px) {
  .drop-visual {
    min-height: 460px;
    background: url("../images/camera.jpg") center / cover no-repeat;
  }
}

.drop-visual span {
  position: absolute;
  left: 22px;
  bottom: 22px;
  color: #fff;
  font-family: Oswald, sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.drop-copy h2 em {
  font-style: normal;
  color: var(--blue);
}

.timer {
  display: flex;
  gap: 12px;
  margin: 24px 0 18px;
}

.timer-cell {
  min-width: 86px;
  background: var(--sand);
  border-radius: 18px;
  padding: 16px 10px 12px;
  text-align: center;
}

.timer-cell strong {
  display: block;
  font-family: Oswald, sans-serif;
  font-size: 2.2rem;
  line-height: 1;
}

.timer-cell span {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

.drop-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 700;
}

.bell {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #dcecff;
  color: var(--blue-3);
  display: grid;
  place-items: center;
  flex: none;
}

.bell svg {
  width: 16px;
  height: 16px;
}

.about {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  padding: 20px 36px 100px;
  max-width: 1280px;
  margin: 0 auto;
  align-items: center;
}

.about p {
  color: #2c3648;
  line-height: 1.7;
  font-size: 1.05rem;
}

.about a {
  color: var(--blue-3);
  font-weight: 700;
}

.about-copy .btn {
  margin-top: 6px;
  color: #fff;
}

.stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.stats li {
  background: var(--sand);
  border-radius: 22px;
  padding: 22px 24px;
}

.stats strong {
  display: block;
  font-family: Oswald, sans-serif;
  font-size: clamp(1.7rem, 4.2vw, 2.6rem);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.stats span {
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
}

.live-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin: 0 0 1px 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: live-pulse 1.8s ease-out infinite;
  vertical-align: middle;
}

@keyframes live-pulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.archive {
  padding: 4px 36px 80px;
  max-width: 1280px;
  margin: 0 auto;
}

.archive .section-head {
  margin-bottom: 10px;
}

.archive-lead {
  max-width: 640px;
  color: var(--muted);
  margin: -12px 0 16px;
  line-height: 1.5;
  font-size: 0.95rem;
}

.archive-tools {
  display: grid;
  gap: 12px;
  margin-bottom: 12px;
}

.archive-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px 18px;
  flex-wrap: wrap;
}

.filter-tabs {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: var(--sand);
}

.filter-tab {
  border: 0;
  background: transparent;
  color: var(--muted);
  border-radius: 999px;
  padding: 8px 16px;
  font: inherit;
  font-weight: 800;
  font-size: 0.82rem;
  cursor: pointer;
  white-space: nowrap;
}

.filter-tab.is-on {
  background: var(--ink);
  color: #fff;
}

.archive-search {
  width: min(280px, 100%);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  font: inherit;
  font-weight: 600;
  background: #fff;
}

.chips-wrap {
  position: relative;
  min-width: 0;
}

.chips-wrap::before,
.chips-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 2px;
  width: 36px;
  pointer-events: none;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.2s ease;
}

.chips-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--paper), transparent);
}

.chips-wrap::after {
  right: 0;
  background: linear-gradient(90deg, transparent, var(--paper));
}

.chips-wrap.is-overflow:not(.is-start)::before,
.chips-wrap.is-overflow:not(.is-end)::after {
  opacity: 1;
}

.chips {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  overflow-x: auto;
  min-width: 0;
  padding: 4px 2px 8px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}

.chips::-webkit-scrollbar {
  display: none;
}

.chip {
  flex: none;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  border-radius: 999px;
  padding: 8px 13px;
  font-weight: 700;
  font-size: 0.84rem;
  cursor: pointer;
}

.chip-short {
  display: none;
}

.chip.is-on {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

@media (hover: hover) {
  .chip:hover {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
  }

  .chip:hover .chip-n {
    opacity: 0.7;
  }
}

.archive-count {
  margin: 0 0 16px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.88rem;
}

.archive-now {
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
}

.archive-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.pager-btn {
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font: inherit;
  font-weight: 800;
  padding: 12px 22px;
  cursor: pointer;
}

.pager-btn:disabled {
  opacity: 0.35;
  cursor: default;
}

.pager-label {
  min-width: 64px;
  text-align: center;
  font-weight: 800;
}

.icon-btn:disabled {
  opacity: 0.35;
  cursor: default;
}

.chip-n {
  margin-left: 6px;
  opacity: 0.5;
  font-weight: 800;
}

.chip.is-on .chip-n {
  opacity: 0.7;
}

@media (min-width: 760px) {
  .chips {
    flex-wrap: wrap;
    overflow: visible;
    padding: 0;
  }

  .chips-wrap::before,
  .chips-wrap::after {
    display: none;
  }
}

@media (max-width: 759px) {
  .chip-full {
    display: none;
  }

  .chip-short {
    display: inline;
  }

  .chip-n {
    display: none;
  }
}

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

.archive-grid .video-card h3 {
  font-size: 0.84rem;
  margin-top: 8px;
}

@media (max-width: 1100px) {
  .archive-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.radio {
  padding: 10px 36px 72px;
}

.radio-shell {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 32px;
  padding: 32px 32px 18px;
  color: #fff;
  background: #111318;
  box-shadow: 0 30px 80px rgba(10, 20, 50, 0.18);
}

.radio-blur {
  position: absolute;
  inset: -40px;
  background:
    url("../images/quincy.jpg") center / cover no-repeat,
    linear-gradient(180deg, #1c2333, #0b0d12);
  filter: blur(48px) saturate(1.2);
  opacity: 0.55;
  transform: scale(1.12);
}

.radio-now,
.radio-list {
  position: relative;
  z-index: 1;
}

.radio-now {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: start;
  margin-bottom: 22px;
}

.radio-art {
  width: 280px;
  height: 280px;
  border-radius: 18px;
  object-fit: cover;
  object-position: center 12%;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
}

.radio-meta h2 {
  font-size: clamp(2.1rem, 3.4vw, 3rem);
  text-transform: uppercase;
  letter-spacing: -0.04em;
  margin-bottom: 4px;
}

.radio-track {
  margin: 14px 0 2px;
  font-size: 1.2rem;
  font-weight: 800;
}

.radio-artist {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.7);
}

.radio-status {
  min-height: 1.2em;
  margin: 0 0 12px;
  color: #9ec4ff;
  font-size: 0.82rem;
  font-weight: 700;
}

.radio-progress input {
  width: 100%;
  accent-color: #fff;
  cursor: pointer;
}

.radio-times {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}

.radio-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 18px 0 14px;
}

.radio-icon,
.radio-play,
.mini-play,
.mini-skip {
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.radio-icon {
  width: 42px;
  height: 42px;
}

.radio-icon svg,
.mini-play svg,
.mini-skip svg {
  width: 22px;
}

.radio-play {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  color: #111;
}

.radio-play svg {
  width: 26px;
}

.radio-credit {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
  font-weight: 700;
}

.radio-list {
  list-style: none;
  margin: 0;
  padding: 6px 0 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  max-height: 228px;
  overflow-y: auto;
}

.radio-row {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 8px;
  border-radius: 12px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.86);
}

.radio-row:hover,
.radio-row.is-current {
  background: rgba(255, 255, 255, 0.08);
}

.radio-row.is-current {
  color: #fff;
  font-weight: 700;
}

.radio-num {
  opacity: 0.55;
  font-size: 0.85rem;
  display: grid;
  place-items: center;
  width: 18px;
}

.radio-num.is-playing {
  opacity: 1;
  color: #fff;
}

.radio-num svg {
  width: 12px;
  height: 12px;
}

.radio-len {
  font-size: 0.78rem;
  opacity: 0.55;
}

#ytRadioA,
#ytRadioB {
  position: fixed;
  left: -999px;
  top: 0;
  width: 160px;
  height: 90px;
  opacity: 0;
  pointer-events: none;
  border: 0;
}

#ytRadioA.is-live,
#ytRadioB.is-live {
  left: auto;
  right: 8px;
  top: auto;
  bottom: calc(78px + env(safe-area-inset-bottom));
  opacity: 0.02;
  z-index: 1;
}

body.has-mini {
  padding-bottom: 88px;
}

.mini-player {
  position: fixed;
  left: 50%;
  bottom: calc(14px + env(safe-area-inset-bottom));
  transform: translateX(-50%);
  z-index: 70;
  width: min(520px, calc(100% - 20px));
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 18px;
  background: rgba(20, 22, 28, 0.88);
  color: #fff;
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  cursor: pointer;
}

.mini-player[hidden] {
  display: none;
}

.mini-player img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
}

.mini-copy {
  flex: 1;
  min-width: 0;
}

.mini-copy strong,
.mini-copy span {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mini-copy span {
  font-size: 0.75rem;
  opacity: 0.65;
}

.mini-controls {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}

.mini-skip {
  width: 36px;
  height: 36px;
  color: rgba(255, 255, 255, 0.86);
}

.mini-skip:hover,
.mini-play:hover {
  color: #fff;
}

.mini-play {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  color: #111;
}

.mini-play:hover {
  color: #111;
}

.mini-play svg {
  width: 18px;
}

.mini-skip svg {
  width: 18px;
}

.contact {
  padding: 0 36px 90px;
}

.contact-card {
  max-width: 1280px;
  margin: 0 auto;
  background: linear-gradient(135deg, #3d8bff, #1546c8);
  color: #fff;
  border-radius: 32px;
  padding: 64px 48px;
}

.contact-card .kicker {
  color: #fff;
}

.contact-card p {
  max-width: 560px;
  line-height: 1.7;
}

.footer {
  padding: 28px 36px 48px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 0.88rem;
  border-top: 1px solid var(--line);
}

.footer strong {
  display: block;
  color: var(--ink);
  font-family: Oswald, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 16px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 8, 14, 0.72);
}

.modal-panel {
  position: relative;
  width: min(960px, calc(100% - 32px));
  margin: 0;
  background: #000;
  border-radius: 18px;
  overflow: hidden;
}

.modal-frame {
  aspect-ratio: 16 / 9;
}

.modal-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.modal-close {
  position: absolute;
  right: 10px;
  top: 8px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  font-size: 1.4rem;
  cursor: pointer;
}

@media (max-width: 980px) {
  .nav {
    padding-left: 20px;
    padding-right: 20px;
    grid-template-columns: 1fr auto auto;
  }

  .nav-links,
  .nav-actions .btn-ghost {
    display: none;
  }

  .nav.is-open .nav-links {
    display: flex;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: #fff;
    color: var(--ink);
    flex-direction: column;
    padding: 18px 22px 24px;
    gap: 16px;
    box-shadow: var(--shadow);
  }

  .nav-toggle {
    display: block;
  }

  .hero-band {
    min-height: 0;
    padding: calc(var(--nav-h) + 22px) 20px 268px;
  }

  .social-rail {
    display: none;
  }

  .drop-visual {
    display: none;
  }

  .hero {
    min-height: 0;
    max-width: none;
    align-content: start;
  }

  .hero-cut {
    height: 240px;
    clip-path: polygon(0 38%, 100% 0, 100% 100%, 0 100%);
  }

  .videos {
    margin-top: -120px;
    padding-bottom: 16px;
  }

  .archive {
    padding: 0 16px 64px;
  }

  .archive-lead,
  .archive-now {
    display: none;
  }

  .archive-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .filter-tabs {
    display: flex;
    width: 100%;
  }

  .filter-tab {
    flex: 1;
    text-align: center;
    padding: 11px 8px;
    font-size: 0.8rem;
  }

  .archive-search {
    width: 100%;
    min-height: 46px;
    font-size: 1rem;
  }

  .chip {
    padding: 8px 12px;
    font-size: 0.8rem;
    scroll-snap-align: start;
  }

  .chips {
    margin: 0;
    padding: 4px 2px 10px;
    scroll-snap-type: x proximity;
  }

  .hero-copy h1 {
    font-size: clamp(3.1rem, 16.5vw, 4.2rem);
    line-height: 0.9;
    letter-spacing: -0.01em;
  }

  .hero-copy h1 em {
    font-size: 0.3em;
    letter-spacing: 0.05em;
    margin-top: 8px;
  }

  .lead {
    margin: 16px 0 14px;
    font-size: 0.95rem;
  }

  .hero-socials {
    margin-bottom: 20px;
  }

  .drop,
  .about {
    grid-template-columns: 1fr;
  }

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

  .archive-pager {
    gap: 10px;
  }

  .pager-btn {
    padding: 11px 14px;
    font-size: 0.88rem;
  }

  .archive-grid .video-card h3 {
    font-size: 0.82rem;
  }

  .radio {
    padding-top: 4px;
    padding-bottom: 36px;
  }

  .radio-shell {
    border-radius: 26px;
    padding: 16px 16px 10px;
  }

  .radio-now {
    grid-template-columns: 118px minmax(0, 1fr);
    grid-template-areas:
      "art kicker"
      "art title"
      "art track"
      "bar bar"
      "controls controls";
    justify-items: stretch;
    text-align: left;
    align-items: center;
    column-gap: 14px;
    row-gap: 0;
    margin-bottom: 4px;
  }

  .radio-meta {
    display: contents;
  }

  .radio-art {
    grid-area: art;
    width: 118px;
    height: 118px;
    border-radius: 16px;
    object-position: center 12%;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  }

  .radio .kicker {
    grid-area: kicker;
    align-self: end;
    margin: 0 0 4px;
  }

  .radio-meta h2 {
    grid-area: title;
    align-self: center;
    font-size: clamp(1.55rem, 7vw, 1.9rem);
    line-height: 0.92;
    margin: 0;
  }

  .radio-track {
    grid-area: track;
    align-self: start;
    margin: 6px 0 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.82);
  }

  .radio-artist,
  .radio-credit {
    display: none;
  }

  .radio-status {
    grid-column: 1 / -1;
    min-height: 0;
    margin: 8px 0 0;
  }

  .radio-status:empty {
    display: none;
  }

  .radio-progress {
    grid-area: bar;
    width: 100%;
    margin: 16px 0 0;
  }

  .radio-progress input {
    height: 28px;
  }

  .radio-controls {
    grid-area: controls;
    justify-content: center;
    gap: 18px;
    margin: 2px 0 8px;
  }

  .radio-play {
    width: 58px;
    height: 58px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  }

  .radio-play svg {
    width: 22px;
  }

  .radio-icon {
    width: 44px;
    height: 44px;
  }

  .radio-list {
    max-height: 196px;
    margin-top: 4px;
  }

  .radio-row {
    padding: 11px 8px;
    font-size: 0.9rem;
  }

  .mini-play {
    width: 46px;
    height: 46px;
  }

  .videos,
  .archive,
  .radio,
  .drop,
  .about,
  .contact,
  .footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .contact-card {
    padding: 40px 24px;
  }

  .footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-media {
    display: none;
  }

  .video-card.skeleton,
  .btn,
  .thumb img {
    animation: none;
    transition: none;
  }
}
