@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Roboto+Condensed:wght@400;500;700&family=Roboto+Mono:wght@500;600;700&display=swap");

:root {
  --ink: #181816;
  --muted: #6e6c64;
  --line: #e8e4dc;
  --paper: #fffdf9;
  --white: #ffffff;
  --logo-red: #ed1b24;
  --accent: var(--logo-red);
  --accent-dark: #b5121b;
  --rail: #131619;
  --rail-soft: #403931;
  --radius: 8px;
  --font-display: "Archivo", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --font-menu: "Roboto Mono", ui-monospace, "SFMono-Regular", Consolas, monospace;
  --font-hero: "Bebas Neue", "Roboto Condensed", var(--font-display);
  color-scheme: light;
}

:root[data-theme="dark"] {
  --ink: #f4f1eb;
  --muted: #b8b4ac;
  --line: #34393d;
  --paper: #0d1012;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
}

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

img,
iframe {
  max-width: 100%;
}

.site-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(320px, 360px) minmax(0, 1fr);
  overflow-x: clip;
}

.radio-rail {
  position: sticky;
  top: 0;
  height: 100vh;
  min-width: 0;
  padding: 0 28px 28px;
  background: var(--rail);
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow-y: auto;
  scrollbar-width: none;
  z-index: 20;
}

.radio-rail::-webkit-scrollbar {
  display: none;
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 104px;
  height: 104px;
  width: calc(100% + 56px);
  margin: 0 -28px;
  padding: 0 28px;
  background: #fff;
  position: relative;
}

.brand::after {
  content: "";
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(24, 24, 22, 0.08);
  pointer-events: none;
}

.brand img,
.mobile-brand img {
  display: block;
  width: 280px;
  max-width: 100%;
  height: auto;
}

.player-frame {
  --play-size: clamp(118px, 42%, 150px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  width: 100%;
  min-width: 0;
  padding: 22px 16px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  overflow: hidden;
}

.player-frame iframe {
  display: none;
}

.player-frame audio {
  display: none;
}

.play-toggle {
  position: relative;
  flex: 0 0 auto;
  overflow: hidden;
  width: var(--play-size);
  height: auto;
  aspect-ratio: 1 / 1;
  min-width: 0;
  border: 3px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(19, 22, 25, 0.12) 0 12%, transparent 13%),
    var(--accent);
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.play-toggle::before,
.play-toggle::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
}

.play-toggle::before {
  inset: 0;
  background:
    repeating-radial-gradient(circle at 50% 50%,
      transparent 0 10px,
      rgba(255, 255, 255, 0.12) 10px 11px,
      transparent 11px 22px),
    conic-gradient(from 20deg,
      rgba(255, 255, 255, 0.13),
      transparent 24deg 94deg,
      rgba(255, 255, 255, 0.08) 124deg,
      transparent 160deg 360deg);
  transition: opacity 0.22s ease;
}

.play-toggle::after {
  inset: 42%;
  background: rgba(19, 22, 25, 0.22);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.14);
  transition: opacity 0.22s ease;
}

.player-frame.is-playing .play-toggle::before,
.player-frame.is-playing .play-toggle::after {
  opacity: 1;
}

.play-toggle:hover,
.play-toggle:focus-visible {
  transform: translateY(-2px);
  background: var(--accent-dark);
  border-color: rgba(255, 255, 255, 0.34);
}

.player-frame.is-autoplay-blocked .play-toggle {
  animation: play-attention 1.15s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(237, 27, 36, 0.42);
}

.play-toggle span {
  position: relative;
  z-index: 1;
  display: block;
  width: calc(var(--play-size) * 0.34);
  height: calc(var(--play-size) * 0.42);
  margin-left: calc(var(--play-size) * 0.067);
  background: currentColor;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.player-frame.is-playing .play-toggle span {
  width: calc(var(--play-size) * 0.34);
  height: calc(var(--play-size) * 0.36);
  margin-left: 0;
  border: 0;
  background: linear-gradient(90deg, currentColor 0 32%, transparent 32% 68%, currentColor 68% 100%);
  clip-path: none;
  animation: player-pause-spin 16s linear infinite;
}

@keyframes player-pause-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .player-frame.is-playing .play-toggle span {
    animation: none;
  }
}

.player-start-hint {
  display: none;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-menu);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.player-frame.is-autoplay-blocked .player-start-hint {
  display: block;
}

.player-volume {
  width: min(230px, 100%);
  margin-top: 18px;
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-menu);
  font-size: 11px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.player-volume input {
  width: 100%;
  accent-color: var(--accent);
  cursor: pointer;
}

@media (hover: none), (pointer: coarse), (max-width: 760px) {
  .player-volume {
    display: none;
  }
}

@keyframes play-attention {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 0 0 0 rgba(237, 27, 36, 0.36);
  }

  55% {
    transform: translateY(-2px);
    box-shadow: 0 0 0 12px rgba(237, 27, 36, 0);
  }
}

.player-track-title {
  display: block;
  margin: 14px 0 12px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  font-family: "Roboto Condensed", var(--font-body);
  font-size: clamp(24px, 2.7vw, 34px);
  font-weight: 400;
  line-height: 1;
  text-align: center;
}

.player-show-title {
  display: grid;
  place-items: center;
  margin: 18px 0 0;
  color: var(--accent);
  font-family: "Roboto Condensed", var(--font-body);
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 400;
  line-height: 1.08;
  text-align: center;
  text-transform: none;
  transition: color 0.18s ease;
}

.player-show-name,
.player-producer-name {
  grid-area: 1 / 1;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.player-producer-name {
  opacity: 0;
  transform: translateY(4px);
}

.player-show-title.has-producer-name[href]:hover .player-show-name,
.player-show-title.has-producer-name[href]:focus-visible .player-show-name {
  opacity: 0;
  transform: translateY(-4px);
}

.player-show-title.has-producer-name[href]:hover .player-producer-name,
.player-show-title.has-producer-name[href]:focus-visible .player-producer-name {
  opacity: 1;
  transform: translateY(0);
}

.player-show-title[href]:hover,
.player-show-title[href]:focus-visible {
  color: var(--white);
}

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

.player-show-title:not([hidden]) + .player-track-title {
  margin-top: 8px;
}

.player-waveform {
  width: min(250px, 72%);
  height: 42px;
  margin: 2px auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.player-waveform span {
  display: block;
  width: 5px;
  height: var(--wave-height);
  min-height: 10px;
  border-radius: 999px;
  background: rgba(237, 27, 36, 0.82);
  animation: player-wave-pulse 0.58s ease-in-out infinite alternate;
  animation-delay: var(--wave-delay);
  animation-play-state: paused;
  opacity: 0.85;
}

.player-waveform span:nth-child(3n) {
  background: rgba(255, 255, 255, 0.82);
}

.player-waveform.is-playing span {
  animation-play-state: running;
}

.player-waveform.is-live span {
  animation: none;
  transform-origin: center;
  transition: transform 70ms linear, opacity 70ms linear;
  will-change: transform, opacity;
}

.player-waveform:not(.is-playing) span {
  animation: none;
  transform: scaleY(0.08);
  opacity: 0.24;
}

@keyframes player-wave-pulse {
  from {
    transform: scaleY(0.42);
    opacity: 0.48;
  }

  to {
    transform: scaleY(1);
    opacity: 0.95;
  }
}

@media (prefers-reduced-motion: reduce) {
  .player-waveform span {
    animation: none;
  }
}

.player-links {
  margin: 8px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  gap: 8px;
}

.player-links a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--white);
  font-family: var(--font-hero);
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.player-links a:hover,
.player-links a:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.now-card {
  display: none;
  padding: 18px;
  background: var(--rail);
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
}

.now-card span,
.eyebrow,
.meta,
.panel-kicker {
  display: block;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.now-card strong {
  display: block;
  margin-top: 8px;
  font-size: 18px;
  line-height: 1.3;
}

.now-card small {
  display: block;
  margin-top: 8px;
  color: #c9c1b8;
}

.rail-socials,
.footer-links,
.contact-links,
.programme-social-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.programme-social-links {
  margin: 14px 0 28px;
}

.rail-socials {
  justify-content: center;
  margin-top: 42px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(237, 27, 36, 0.45);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.76);
  color: var(--accent);
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.social-icon svg {
  display: block;
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.contact-email-text {
  display: inline-block;
  margin-top: 14px;
  color: var(--accent);
  font-family: var(--font-menu);
  font-size: 18px;
  font-weight: 700;
}

.contact-email-text:hover,
.contact-email-text:focus-visible {
  color: var(--accent-dark);
}

.social-icon:hover,
.social-icon:focus-visible {
  transform: translateY(-2px);
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.programme-social-links .social-icon:hover,
.programme-social-links .social-icon:focus-visible {
  background: var(--white);
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 8px 18px rgba(237, 27, 36, 0.16);
}

.rail-socials .social-icon {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--white);
}

.rail-socials .social-icon:hover,
.rail-socials .social-icon:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.world-ticker {
  min-width: 0;
  margin-top: 2px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.world-ticker h2 {
  margin: 0 0 12px;
  color: var(--white);
  font-family: var(--font-hero);
  font-size: 25px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
}

.world-ticker-viewport {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.world-ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  min-width: 100%;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-menu);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.world-ticker-track.is-moving {
  animation: world-countries-scroll var(--world-duration, 24s) linear infinite;
}

.world-ticker-track span {
  display: inline-flex;
  align-items: center;
  flex: none;
}

.world-ticker-track span::after {
  content: "";
  width: 4px;
  height: 4px;
  margin: 0 13px;
  border-radius: 50%;
  background: var(--accent);
}

.rail-theme-control {
  display: flex;
  justify-content: center;
  padding-top: 2px;
}

.theme-toggle {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-menu);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--white);
  transform: translateY(-1px);
}

.theme-toggle-icon {
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.theme-toggle-icon::after {
  content: "";
  position: absolute;
  inset: -3px -1px 3px 5px;
  border-radius: 50%;
  background: var(--rail);
  transition: inset 0.18s ease, background-color 0.18s ease;
}

.theme-toggle:hover .theme-toggle-icon::after,
.theme-toggle:focus-visible .theme-toggle-icon::after {
  background: var(--accent);
}

:root[data-theme="dark"] .theme-toggle-icon::after {
  inset: 3px;
  background: var(--accent);
}

.footer-theme-toggle {
  display: none;
}

@keyframes world-countries-scroll {
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .world-ticker-track.is-moving {
    animation: none;
  }
}

.site-main {
  min-width: 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 15;
  height: 104px;
  padding: 0 54px;
  background: #fff;
  backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  border-bottom: 1px solid rgba(24, 24, 22, 0.08);
}

.mobile-brand {
  display: none;
  width: 190px;
  max-width: calc(100vw - 96px);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 48px);
  font-family: var(--font-menu);
  font-size: 23px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav-item {
  position: relative;
}

.has-menu::after {
  content: "";
  position: absolute;
  top: 54px;
  left: -28px;
  right: -28px;
  height: 34px;
  z-index: 1;
}

.nav-item > a,
a.nav-item {
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 0 2px;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: color 0.16s ease, border-color 0.16s ease, padding 0.16s ease;
}

.nav-item:hover > a,
a.nav-item:hover {
  color: var(--ink);
  border-color: var(--ink);
  padding-left: 32px;
  padding-right: 32px;
}

.nav-item.is-active > a,
a.nav-item.is-active {
  border-color: var(--ink);
  padding-left: 32px;
  padding-right: 32px;
}

.submenu {
  position: absolute;
  top: 72px;
  left: 50%;
  z-index: 5;
  min-width: 240px;
  padding: 18px 22px;
  background: var(--white);
  border: 1px solid rgba(24, 24, 22, 0.16);
  border-radius: 18px;
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  pointer-events: none;
  transition: 0.18s ease;
  box-shadow: 0 24px 60px rgba(24, 24, 22, 0.1);
}

.has-menu:hover .submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.submenu a {
  display: block;
  padding: 9px 0;
  color: #7a7872;
  font-size: 16px;
  font-family: var(--font-menu);
  font-weight: 500;
  letter-spacing: 0;
}

.submenu a:hover {
  color: var(--accent);
}

.submenu-all {
  display: none !important;
}

.menu-toggle {
  display: none;
}

.submenu-toggle {
  display: none;
}

[data-page] {
  min-height: calc(100vh - 180px);
}

.home-hero {
  position: relative;
  container-type: inline-size;
  overflow: hidden;
  min-height: 522px;
  padding: 31px 7vw 42px;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 48px;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(255, 253, 249, 0.96) 0%, rgba(255, 253, 249, 0.82) 50%, rgba(255, 253, 249, 0.52) 100%),
    url("../images/strummer-hero-retro.webp") center / cover;
}

.hero-copy,
.live-panel {
  position: relative;
  z-index: 1;
}

.home-hero .hero-copy {
  padding-bottom: 10px;
}

.home-hero .hero-copy .eyebrow {
  margin: 0 0 5px;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  max-width: 900px;
  font-size: clamp(64px, 10vw, 150px);
  text-transform: uppercase;
}

.home-hero h1 {
  color: var(--rail);
  font-family: var(--font-hero);
  font-size: clamp(64px, 10cqi, 150px);
  font-weight: 400;
  line-height: 0.88;
}

.home-hero h1 span {
  color: var(--logo-red);
}

h2 {
  font-size: 44px;
}

h3 {
  font-size: 24px;
  line-height: 1.08;
}

.lead {
  max-width: 620px;
  color: var(--muted);
  font-size: 22px;
  font-weight: 700;
}

.hero-actions,
.section-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  font-weight: 900;
  text-transform: uppercase;
}

.button.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.live-panel {
  padding: 22px 26px;
  background: var(--rail);
  color: var(--white);
  border-radius: 0;
}

.live-panel .panel-kicker {
  font-family: var(--font-hero);
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 400;
  line-height: 1;
}

.live-panel strong {
  display: block;
  margin-top: 7px;
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1.05;
}

.live-panel small {
  display: block;
  margin-top: 14px;
  color: #c9c1b8;
}

.track-history {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.track-history[hidden] {
  display: none;
}

.track-history span {
  display: block;
  color: var(--accent);
  font-family: var(--font-hero);
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
}

.track-history ol {
  margin: 7px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 5px;
}

.track-history li {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
}

.home-band,
.contact-grid,
.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.home-band {
  position: relative;
}

.home-band::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background:
    linear-gradient(90deg, var(--accent), var(--accent)) top / 100% 1px no-repeat,
    repeating-linear-gradient(90deg, rgba(237, 27, 36, 0.48) 0 7px, transparent 7px 14px) 0 3px / 100% 1px no-repeat;
  pointer-events: none;
  z-index: 2;
}

.home-band::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  background:
    linear-gradient(90deg, var(--accent), var(--accent)) bottom / 100% 1px no-repeat,
    repeating-linear-gradient(90deg, rgba(237, 27, 36, 0.48) 0 7px, transparent 7px 14px) 0 1px / 100% 1px no-repeat;
  pointer-events: none;
  z-index: 2;
}

.home-band > div,
.contact-grid > div,
.choice-grid > a {
  padding: 28px 7vw;
  background: var(--white);
}

.contact-grid {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  background: var(--rail);
  color: var(--white);
}

.contact-grid::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 340px;
  background: var(--paper);
  pointer-events: none;
  z-index: 0;
}

.contact-grid::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 340px;
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.42) 0%, rgba(255, 253, 249, 0.64) 50%, rgba(255, 253, 249, 0.9) 100%),
    url("../images/strummer-hero-retro.webp") center bottom / cover;
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
}

.contact-grid > div {
  position: relative;
  z-index: 1;
  background: transparent;
}

.contact-grid h2 {
  color: var(--white);
}

.contact-grid .contact-email-text {
  color: var(--white);
}

.contact-grid .contact-email-text:hover,
.contact-grid .contact-email-text:focus-visible {
  color: var(--accent);
}

.contact-grid .social-icon {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--white);
}

.contact-grid .social-icon:hover,
.contact-grid .social-icon:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.home-band a,
.section-head a {
  color: var(--accent);
  font-weight: 900;
}

.home-band-title {
  display: flex;
  align-items: baseline;
  gap: 18px;
  width: fit-content;
  text-decoration: none;
}

.home-band-title span,
.home-band-title strong {
  font-family: var(--font-hero);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.home-band-title span {
  flex: 0 0 auto;
  color: var(--accent);
  font-size: clamp(14px, 1.12vw, 18px);
}

.home-band-title strong {
  color: var(--rail);
  font-size: 44px;
}

.home-band-title:hover strong,
.home-band-title:focus-visible strong {
  color: var(--accent);
}

.chat-panel {
  display: grid;
  align-content: start;
  background: #fff3f1 !important;
}

.chat-open-link {
  width: fit-content;
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 18px;
}

.chat-open-link span,
.chat-open-link strong {
  font-family: var(--font-hero);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.chat-open-link span {
  color: var(--accent);
  font-size: clamp(14px, 1.12vw, 18px);
}

.chat-open-link strong {
  color: var(--rail);
  font-size: 44px;
}

.chat-open-link:hover,
.chat-open-link:focus-visible {
  color: inherit;
}

.chat-open-link:hover strong,
.chat-open-link:focus-visible strong {
  color: var(--accent);
}

.chat-frame {
  width: 100%;
  height: clamp(420px, 38vw, 620px);
  margin-top: 12px;
  border: 1px solid #ead8d4;
  background: #fffaf8;
  overflow: hidden;
}

.persistent-chat-frame {
  margin: 0;
  z-index: 4;
}

.chat-frame-slot {
  visibility: hidden;
  pointer-events: none;
}

.chat-launch {
  container-type: inline-size;
  min-height: clamp(420px, 38vw, 620px);
  margin-top: 12px;
  padding: clamp(28px, 5vw, 64px);
  border: 1px solid rgba(237, 27, 36, 0.18);
  background:
    linear-gradient(135deg, rgba(19, 22, 25, 0.92), rgba(19, 22, 25, 0.82)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px 14px);
  color: var(--white);
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 18px;
  position: relative;
  overflow: hidden;
}

.chat-launch[hidden] {
  display: none;
}

.chat-launch::after {
  content: "";
  position: absolute;
  right: -12%;
  bottom: -25%;
  width: 55%;
  aspect-ratio: 1;
  border: 1px solid rgba(237, 27, 36, 0.38);
  border-radius: 999px;
  opacity: 0.45;
  pointer-events: none;
}

.chat-launch span,
.chat-launch h3,
.chat-launch-actions button,
.chat-launch-actions a {
  font-family: var(--font-hero);
  letter-spacing: 0;
  text-transform: uppercase;
}

.chat-launch span {
  color: var(--accent);
  font-size: 22px;
}

.chat-launch h3 {
  max-width: none;
  margin: 0;
  font-size: clamp(38px, 13.5cqw, 98px);
  font-weight: 400;
  line-height: 0.9;
  white-space: nowrap;
}

.chat-launch p {
  max-width: 34em;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.chat-launch-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.chat-launch-actions button,
.chat-launch-actions a {
  min-height: 44px;
  padding: 10px 22px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.chat-launch-actions a {
  background: transparent;
}

.chat-launch-actions button:hover,
.chat-launch-actions button:focus-visible,
.chat-launch-actions a:hover,
.chat-launch-actions a:focus-visible {
  transform: translateY(-2px);
  border-color: var(--accent);
  background: var(--white);
  color: var(--rail);
}

.chat-launch small {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 800;
}

.home-panels {
  padding: 34px 7vw 8px;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 24px;
  background: var(--paper);
}

.home-carousel-panel {
  position: relative;
  min-width: 0;
  min-height: clamp(204px, 19.2vw, 288px);
  overflow: hidden;
  background: #d8d8d4;
  border: 1px solid rgba(24, 24, 22, 0.08);
}

.home-carousel-slide {
  position: absolute;
  inset: 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: clamp(22px, 3vw, 34px);
  color: var(--white);
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.45s ease, transform 0.45s ease;
  text-decoration: none;
  pointer-events: none;
}

.home-carousel-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, rgba(19, 22, 25, 0.14), rgba(19, 22, 25, 0.42));
}

.home-carousel-slide > * {
  position: relative;
  z-index: 1;
}

.home-carousel-slide span {
  color: var(--white);
  font-family: var(--font-menu);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.home-carousel-slide .home-carousel-author {
  max-width: 100%;
  font-family: var(--font-body);
  font-size: clamp(13px, 1vw, 17px);
  font-weight: 800;
  line-height: 1.15;
  text-transform: none;
  overflow-wrap: anywhere;
}

.home-carousel-slide strong {
  max-width: 100%;
  font-family: var(--font-hero);
  font-size: clamp(40px, 4vw, 72px);
  font-weight: 400;
  line-height: 0.86;
  overflow-wrap: anywhere;
}

.home-carousel-slide--one {
  background: var(--rail);
}

.home-carousel-slide--two {
  background: var(--rail);
}

.home-carousel-slide--three {
  background: var(--rail);
}

.home-carousel-slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.home-carousel-dots {
  position: absolute;
  right: 22px;
  bottom: 18px;
  z-index: 2;
  display: flex;
  gap: 16px;
}

.home-carousel-slide {
  padding-bottom: clamp(56px, 5vw, 72px);
}

.home-carousel-dots button {
  width: 18px;
  height: 18px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.home-carousel-dots button.is-active,
.home-carousel-dots button:hover {
  background: var(--white);
  transform: scale(1.35);
}

.home-feature-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 42%) minmax(0, 1fr);
  min-height: clamp(204px, 19.2vw, 288px);
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(24, 24, 22, 0.08);
  color: var(--ink);
}

.home-feature-panel img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: contain;
  object-position: center;
  background: var(--white);
  filter: saturate(0.94) contrast(1.02);
}

.home-feature-panel::after {
  content: none;
}

.home-feature-panel--monthly::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  box-shadow: inset 0 0 0 1px var(--accent);
  transition: opacity 0.18s ease;
}

.home-feature-panel--monthly:hover::before,
.home-feature-panel--monthly:focus-visible::before {
  opacity: 1;
}

.home-feature-panel > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(22px, 4vw, 48px) clamp(16px, 2vw, 24px);
  background: var(--white);
}

.home-feature-panel p {
  margin: 0 0 8px;
  color: var(--accent);
  font-family: var(--font-menu);
  font-size: clamp(11px, 1vw, 14px);
  font-weight: 800;
  text-transform: uppercase;
}

.home-feature-panel .panel-text {
  margin: 14px 0 0;
  max-width: 34em;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: clamp(15px, 1.12vw, 18px);
  font-weight: 700;
  line-height: 1.35;
  text-transform: none;
}

.home-feature-panel h2 {
  max-width: 9em;
  color: var(--rail);
  font-family: var(--font-hero);
  font-size: clamp(30px, 3.9vw, 48px);
  font-weight: 400;
  line-height: 0.95;
}

.home-feature-panel h2 .title-greek {
  font-family: "Roboto Condensed", var(--font-display);
  font-size: clamp(22px, 1.98vw, 30px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
}

@media (min-resolution: 1.2dppx) and (max-resolution: 1.49dppx) and (hover: hover) and (pointer: fine) {
  .home-feature-panel h2 {
    font-size: clamp(24px, 3vw, 38px);
  }

  body.home .article-card.home-card p:not(.meta) {
    font-size: 15px;
  }
}

.chat-frame[hidden],
.cookie-embed-placeholder[hidden] {
  display: none;
}

.cookie-embed-placeholder {
  min-height: clamp(220px, 24vw, 360px);
  margin-top: 12px;
  padding: 28px;
  border: 1px solid #ead8d4;
  background: rgba(255, 255, 255, 0.76);
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 12px;
}

.cookie-embed-placeholder p {
  max-width: 520px;
  margin: 0;
}

.cookie-embed-placeholder button,
.cookie-embed-placeholder a,
.inline-cookie-button {
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: transparent;
  color: var(--accent);
  font: inherit;
  font-weight: 800;
  line-height: 1;
  padding: 10px 14px;
  cursor: pointer;
}

.cookie-embed-placeholder button:hover,
.cookie-embed-placeholder button:focus-visible,
.cookie-embed-placeholder a:hover,
.cookie-embed-placeholder a:focus-visible,
.inline-cookie-button:hover,
.inline-cookie-button:focus-visible {
  background: var(--accent);
  color: var(--white);
}

.mixcloud-auto-embed {
  margin: 28px 0 22px;
}

.mixcloud-auto-embed iframe {
  display: block;
  width: 100%;
  min-height: 180px;
  border: 0;
  border-radius: var(--radius);
  background: #f5f1ee;
}

.mixcloud-placeholder {
  min-height: 180px;
  margin: 0;
}

.mixcloud-placeholder strong {
  color: var(--rail);
  font-family: var(--font-hero);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
}

.mixcloud-placeholder div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.youtube-auto-embed {
  margin: 28px 0 22px;
}

.youtube-auto-embed iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 240px;
  border: 0;
  border-radius: var(--radius);
  background: var(--rail);
}

.youtube-placeholder {
  min-height: clamp(240px, 36vw, 520px);
  margin: 0;
}

.youtube-placeholder strong {
  color: var(--rail);
  font-family: var(--font-hero);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
}

.youtube-placeholder div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.programme-now {
  margin: 6px -7vw 2px 0;
  display: grid;
  gap: 0;
  max-height: clamp(420px, 38vw, 620px);
  overflow-y: auto;
  overscroll-behavior: auto;
  scrollbar-gutter: stable;
}

.programme-now::-webkit-scrollbar {
  width: 8px;
}

.programme-now::-webkit-scrollbar-track {
  background: rgba(24, 24, 22, 0.06);
}

.programme-now::-webkit-scrollbar-thumb {
  background: rgba(237, 27, 36, 0.58);
  border-radius: 999px;
}

.programme-now article {
  padding: 18px 7vw 18px 20px;
  border-left: 3px solid var(--line);
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.programme-now article:hover,
.programme-now article:focus-within {
  transform: none;
  border-left-color: var(--accent);
  background: rgba(237, 27, 36, 0.045);
  box-shadow: inset 0 0 0 1px rgba(237, 27, 36, 0.08);
}

.programme-now article[data-has-image] {
  display: grid;
  grid-template-columns: clamp(104px, 11vw, 156px) minmax(0, 1fr);
  column-gap: 22px;
  align-items: center;
}

.programme-now article[data-has-image] > .programme-show-copy {
  grid-column: 2;
}

.programme-show-copy {
  min-width: 0;
  display: grid;
  align-content: center;
  justify-items: start;
  row-gap: 8px;
}

.programme-show-copy > * {
  margin-top: 0 !important;
}

.programme-show-image {
  grid-column: 1;
  display: block;
  width: 100%;
  aspect-ratio: 1;
  margin-top: 2px;
  overflow: hidden;
  background: var(--paper);
  text-decoration: none;
}

.programme-show-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(12%);
  transition: transform 180ms ease, filter 180ms ease;
}

.programme-show-image:hover img,
.programme-show-image:focus-visible img {
  filter: grayscale(0);
  transform: scale(1.04);
}

.programme-playlist-icon {
  position: relative;
  padding: 16%;
  background: var(--white);
  border: 1px solid var(--line);
}

.programme-playlist-icon span {
  display: block;
  position: absolute;
  left: 14%;
  height: 8%;
  border-radius: 999px;
  background: var(--ink);
}

.programme-playlist-icon span:nth-child(1) {
  top: 24%;
  right: 14%;
}

.programme-playlist-icon span:nth-child(2) {
  top: 44%;
  right: 14%;
}

.programme-playlist-icon span:nth-child(3) {
  top: 64%;
  right: 46%;
}

.programme-selection-icon {
  position: relative;
  background: #fff3f1;
  border: 1px solid #ead8d4;
}

.programme-selection-icon span {
  position: absolute;
  display: block;
  border-radius: 999px;
}

.programme-selection-icon .wave {
  bottom: 50%;
  width: 7%;
  background: var(--ink);
  transform: translateY(50%);
}

.programme-selection-icon .wave:nth-child(1) {
  left: 13%;
  height: 34%;
}

.programme-selection-icon .wave:nth-child(2) {
  left: 22%;
  height: 50%;
}

.programme-selection-icon .wave:nth-child(3) {
  left: 31%;
  height: 68%;
}

.programme-selection-icon .wave:nth-child(4) {
  left: 40%;
  height: 84%;
  background: var(--accent);
}

.programme-selection-icon .wave:nth-child(5) {
  left: 49%;
  height: 56%;
}

.programme-selection-icon .wave:nth-child(6) {
  left: 58%;
  height: 72%;
}

.programme-selection-icon .wave:nth-child(7) {
  left: 67%;
  height: 44%;
}

.programme-selection-icon .wave:nth-child(8) {
  left: 76%;
  height: 60%;
}

.programme-selection-icon .wave:nth-child(9) {
  left: 85%;
  height: 36%;
}

.programme-now article + article {
  border-top: 1px solid var(--line);
}

.programme-now article.is-current {
  border-left-color: var(--accent);
  background: rgba(237, 27, 36, 0.06);
  box-shadow: -10px 0 0 rgba(237, 27, 36, 0.06), inset 0 0 0 1px rgba(237, 27, 36, 0.08);
}

.programme-now article.is-current span {
  color: var(--accent);
}

body.home .home-band h2,
body.home .section-head h2,
body.home .programme-now strong,
body.home .programme-now small,
body.home .article-card h3,
body.home .article-card h3 a,
body.home .lead,
body.home .home-band .eyebrow,
body.home .section-head .eyebrow,
body.home .programme-now span,
body.home .home-band a,
body.home .section-head a {
  font-family: var(--font-hero) !important;
  font-weight: 400;
}

body.home .home-band h2,
body.home .section-head h2,
body.home .programme-now strong,
body.home .article-card h3,
body.home .article-card h3 a,
body.home .section-head .eyebrow {
  color: var(--rail);
}

body.home .lead {
  font-size: clamp(40px, 4.8vw, 68px);
  line-height: 1;
  margin: 8px 0 0;
}

body.home .home-band .eyebrow,
body.home .section-head .eyebrow,
body.home .programme-now span,
body.home .home-band a,
body.home .section-head a {
  font-size: clamp(14px, 1.12vw, 18px);
  line-height: 1;
}

.programme-now span {
  display: block;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.programme-now strong {
  display: block;
  margin-top: 6px;
  font-size: clamp(15px, 1.9vw, 24px);
  font-weight: 400;
  line-height: 1;
}

.programme-now article.is-current strong {
  font-size: clamp(17px, 2vw, 24px);
  line-height: 1;
}

.programme-now small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-family: var(--font-menu);
  font-size: clamp(13px, 1.55vw, 20px);
  font-weight: 700;
  line-height: 1.05;
}

.programme-now article.is-current small {
  font-size: clamp(13px, 1.55vw, 20px);
}

.programme-now em {
  display: none;
  margin-top: 12px;
  color: var(--accent);
  font-family: var(--font-hero);
  font-size: clamp(15px, 1.75vw, 24px);
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}

.programme-now em[data-has-producer] {
  display: block;
}

.programme-now em a {
  color: inherit;
  text-decoration: none;
}

.programme-now em a:hover,
.programme-now em a:focus-visible {
  color: var(--accent-dark);
}

:root[data-theme="dark"] body.home .programme-now strong {
  color: var(--ink);
}

:root[data-theme="dark"] body.home .programme-playlist-icon,
:root[data-theme="dark"] body.home .programme-selection-icon {
  background: #1a1e21;
  border-color: rgba(244, 241, 235, 0.14);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025);
}

:root[data-theme="dark"] body.home .programme-playlist-icon span,
:root[data-theme="dark"] body.home .programme-selection-icon .wave {
  background: rgba(244, 241, 235, 0.72);
}

:root[data-theme="dark"] body.home .programme-selection-icon .wave:nth-child(4) {
  background: var(--accent);
}

.section-head {
  justify-content: space-between;
  padding: 52px 7vw 18px;
}

.section-title-link,
.section-more-link {
  width: fit-content;
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 18px;
}

.section-title-link span,
.section-title-link strong,
.section-more-link span,
.section-more-link strong {
  font-family: var(--font-hero);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.section-title-link span,
.section-more-link span {
  color: var(--accent);
  font-size: clamp(14px, 1.12vw, 18px);
}

.section-title-link strong,
.section-more-link strong {
  color: var(--rail);
  font-size: 44px;
}

.section-title-link:hover strong,
.section-title-link:focus-visible strong,
.section-more-link:hover strong,
.section-more-link:focus-visible strong {
  color: var(--accent);
}

.news-strip,
.archive-strip,
.listing-grid {
  padding: 0 7vw 56px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.article-card {
  position: relative;
  display: grid;
  gap: 18px;
  min-width: 0;
  max-width: 100%;
}

.article-card > *,
.article-card > div,
.article-card h3,
.article-card h3 a,
.article-card p {
  min-width: 0;
  max-width: 100%;
}

.article-card h3,
.article-card h3 a,
.article-card p {
  overflow-wrap: anywhere;
}

.article-card.compact {
  grid-template-columns: 140px minmax(0, 1fr);
}

.card-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--line);
  border-radius: var(--radius);
}

.article-card.compact .card-image {
  aspect-ratio: 1;
}

.card-image.is-placeholder {
  background: repeating-linear-gradient(135deg, var(--accent), var(--accent) 8px, #b5121b 8px, #b5121b 16px);
}

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

body.home .article-card.home-card h3,
body.home .article-card.home-card h3 a {
  color: var(--rail);
  font-family: "Roboto Condensed", var(--font-body) !important;
  font-size: clamp(18px, 1.72vw, 26px);
  font-weight: 700;
  line-height: 1.05;
}

body.home .article-card.home-card p:not(.meta) {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 3;
}

body.home .article-card.home-card .card-image {
  filter: grayscale(1);
  transition: filter 0.22s ease;
}

body.home .article-card.home-card:hover .card-image,
body.home .article-card.home-card:focus-within .card-image {
  filter: grayscale(0);
}

body.home .article-card.home-card::before {
  content: "";
  position: absolute;
  inset: -8px;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  box-shadow: inset 0 0 0 1px var(--accent);
  transition: opacity 0.18s ease;
}

body.home .article-card.home-card:hover::before,
body.home .article-card.home-card:focus-within::before {
  opacity: 1;
}

.article-card h3 a:hover,
.content-body a:hover {
  color: var(--accent);
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 7vw 86px;
}

.page-number,
.page-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 0 14px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  font-weight: 900;
}

.page-step,
.page-number:hover {
  background: var(--ink);
  color: var(--white);
}

.page-number.is-current {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.page-hero {
  padding: 90px 7vw 56px;
  border-bottom: 1px solid var(--line);
}

.listing-page .page-hero {
  padding-top: 72px;
  padding-bottom: 42px;
}

.page-hero h1 {
  font-family: var(--font-hero);
  font-weight: 400;
}

.page-hero.small h1 {
  font-size: clamp(52px, 7vw, 104px);
}

.programme-page .page-hero h1 {
  font-size: clamp(52px, 7vw, 104px);
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 20px;
  font-weight: 700;
}

.news-search-panel {
  padding: 24px 7vw 26px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.52);
}

.news-search-panel label {
  display: block;
  margin-bottom: 14px;
  color: var(--accent);
  font-family: var(--font-hero);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
  text-transform: uppercase;
}

.news-search-box input {
  width: 100%;
  min-height: 56px;
  padding: 0 24px;
  border: 1px solid rgba(19, 22, 25, 0.28);
  border-radius: 999px;
  outline: none;
  background: var(--white);
  color: var(--rail);
  font: 700 18px/1 var(--font-body);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.news-search-box input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(244, 24, 37, 0.14);
}

.news-search-results {
  display: grid;
  gap: 14px;
  margin-top: 12px;
}

.news-search-results:empty {
  display: none;
}

.news-search-results > p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.news-search-results article {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.news-search-results article p {
  margin: 0 0 4px;
  color: var(--accent);
  font-family: var(--font-hero);
  font-size: 20px;
  text-transform: uppercase;
}

.news-search-results h3 {
  margin: 0;
  font-family: "Roboto Condensed", var(--font-body);
  font-size: clamp(21px, 2vw, 30px);
  line-height: 1.05;
}

.news-search-results h3 a {
  color: var(--rail);
  text-decoration: none;
}

.news-search-results h3 a:hover {
  color: var(--accent);
}

.news-search-results span {
  display: block;
  max-width: 900px;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.45;
}

body.producer-listing [data-page] {
  background:
    repeating-linear-gradient(135deg, rgba(19, 22, 25, 0.045) 0 2px, transparent 2px 22px),
    var(--paper);
}

.content-body,
.article-page {
  max-width: 980px;
  margin: 0 auto;
  padding: 64px 32px 96px;
}

.article-header {
  margin-bottom: 38px;
}

.article-header h1 {
  font-size: clamp(28px, 3.2vw, 48px);
  line-height: 1.08;
}

.article-page:not(.producer-detail) .article-header h1 {
  text-transform: none;
}

.article-sequence {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 58px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.article-sequence-link {
  display: block;
  min-width: 0;
  color: var(--rail);
  text-decoration: none;
}

.article-sequence-link.is-next {
  grid-column: 2;
  text-align: right;
}

.article-sequence-link span {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-family: var(--font-hero);
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
}

.article-sequence-link strong {
  display: block;
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.2;
  overflow-wrap: anywhere;
  transition: color 0.18s ease;
}

.article-sequence-link:hover strong,
.article-sequence-link:focus-visible strong {
  color: var(--accent);
}

.article-main-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 620px;
  object-fit: contain;
  margin: 0 0 38px;
  border-radius: var(--radius);
  background: var(--paper);
}

.content-body img,
.content-body iframe {
  border-radius: var(--radius);
}

.content-body iframe {
  width: 100%;
}

.producer-detail .content-body img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto !important;
}

.content-body a {
  color: var(--accent-dark);
  font-weight: 800;
}

.content-body p.programme-current-line {
  width: fit-content;
  max-width: 100%;
  margin-left: -12px;
  padding: 10px 34px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(24, 24, 22, 0.08);
}

.programme-current-pill {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin-left: 18px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-menu);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  vertical-align: middle;
}

.choice-grid a {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.choice-grid span {
  color: var(--accent);
  font-weight: 900;
}

.choice-grid strong {
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 1;
}

.producer-grid {
  padding: 0 7vw 96px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.producer-card {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1;
  border-radius: var(--radius);
  padding: 16px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(24, 24, 22, 0.08);
}

.producer-card::before {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: 1;
  border-radius: calc(var(--radius) - 2px);
  background: linear-gradient(180deg, rgba(19, 22, 25, 0.08), rgba(19, 22, 25, 0.2));
  mix-blend-mode: multiply;
  opacity: 0.58;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.producer-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid rgba(24, 24, 22, 0.12);
  border-radius: calc(var(--radius) - 2px);
  filter: grayscale(1) saturate(0.25) contrast(1.12);
  opacity: 0.9;
  transition: transform 0.28s ease, filter 0.28s ease, opacity 0.28s ease;
}

.producer-image.is-placeholder {
  background: repeating-linear-gradient(135deg, var(--accent), var(--accent) 8px, #b5121b 8px, #b5121b 16px);
}

.producer-overlay {
  position: absolute;
  inset: 16px;
  z-index: 2;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: calc(var(--radius) - 2px);
  background: linear-gradient(180deg, transparent 52%, rgba(19, 22, 25, 0.76));
  color: var(--white);
  opacity: 1;
  transition: background-color 0.2s ease;
}

.producer-card:hover .producer-overlay,
.producer-card:focus-visible .producer-overlay {
  background: linear-gradient(180deg, rgba(24, 24, 22, 0.08), rgba(24, 24, 22, 0.88));
}

.producer-card:hover::before,
.producer-card:focus-visible::before {
  opacity: 0;
}

.producer-card:hover .producer-image,
.producer-card:focus-visible .producer-image {
  transform: scale(1.045);
  filter: grayscale(0) saturate(1) contrast(1);
  opacity: 1;
}

@media (hover: none), (pointer: coarse) {
  body.home .article-card.home-card .card-image {
    filter: grayscale(0);
  }

  .producer-card .producer-image {
    filter: grayscale(0) saturate(1) contrast(1);
    opacity: 1;
  }
}

.producer-overlay strong {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  opacity: 0.68;
  transition: opacity 0.2s ease;
}

.producer-card:hover .producer-overlay strong,
.producer-card:focus-visible .producer-overlay strong {
  opacity: 1;
}

.search-panel {
  max-width: 980px;
  margin: 0 auto;
  padding: 54px 32px 96px;
}

.search-panel input {
  width: 100%;
  height: 64px;
  padding: 0 18px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  font: 800 22px var(--font-body);
}

.search-results {
  margin-top: 28px;
  display: grid;
  gap: 18px;
}

.search-results article {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.search-results p,
.search-results span {
  color: var(--muted);
}

.footer {
  padding: 30px 7vw;
  background: var(--rail);
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer strong {
  display: block;
  color: var(--white);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.footer-legal a,
.footer-legal button {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.footer-legal a:hover,
.footer-legal a:focus-visible,
.footer-legal button:hover,
.footer-legal button:focus-visible {
  color: var(--accent);
}

.footer .social-icon {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--white);
}

.footer .social-icon:hover,
.footer .social-icon:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.footer-top-button {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  font-family: var(--font-menu);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.footer-top-button::before {
  content: "^";
  margin-right: 8px;
  color: var(--accent);
}

.footer-top-button:hover,
.footer-top-button:focus-visible {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--white);
}

.footer-top-button:hover::before,
.footer-top-button:focus-visible::before {
  color: var(--white);
}

.cookie-banner {
  position: fixed;
  right: 22px;
  bottom: 22px;
  left: max(382px, calc(360px + 22px));
  z-index: 80;
  padding: 18px;
  background: var(--rail);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.cookie-banner[hidden],
.cookie-modal[hidden] {
  display: none;
}

.cookie-banner strong,
.cookie-modal h2 {
  font-family: var(--font-hero);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.programme-page-schedule {
  max-width: 1180px;
  margin: 0 auto;
  padding: 42px 32px 84px;
}

.programme-public-board {
  display: grid;
  gap: 22px;
  position: relative;
}

.programme-public-day {
  border-left: 4px solid rgba(19, 22, 25, 0.14);
  background: rgba(255, 255, 255, 0.56);
}

.programme-public-day h2 {
  margin: 0;
  padding: 22px 32px 18px;
  color: var(--rail);
  font-family: var(--font-body);
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1;
  text-transform: uppercase;
}

.programme-public-slots {
  display: grid;
}

.programme-public-slot {
  position: relative;
  display: grid;
  grid-template-columns: minmax(230px, 260px) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 12px 32px;
  border-top: 1px solid var(--line);
  transition: background-color 0.18s ease, border-color 0.18s ease;
}

.programme-public-slot.is-current {
  border-left: 4px solid var(--accent);
  background: rgba(244, 24, 37, 0.055);
}

.programme-public-board.is-tuning .programme-public-slot.is-current {
  border-left-color: transparent;
  background: transparent;
}

.programme-public-board.is-tuning .programme-public-slot.is-current .programme-current-pill {
  opacity: 0;
}

.programme-public-slot.is-lens-active > time,
.programme-public-slot.is-lens-active > div {
  position: relative;
  z-index: 5;
  transform: scale(1.1);
  transform-origin: left center;
  transition: transform 0.16s ease, color 0.16s ease;
}

.programme-public-slot.is-lens-active > time {
  color: rgba(19, 22, 25, 0.72);
}

.programme-public-slot.is-lens-active strong {
  color: var(--rail);
}

.programme-public-slot time {
  color: var(--muted);
  font-family: var(--font-menu);
  font-size: clamp(16px, 1.3vw, 21px);
  line-height: 1;
  white-space: nowrap;
}

.programme-public-slot div {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 16px;
}

.programme-public-slot strong {
  color: var(--rail);
  font-size: clamp(15px, 1.18vw, 18px);
  line-height: 1.08;
}

.programme-public-slot a,
.programme-public-slot span:not(.programme-current-pill) {
  color: var(--accent-dark);
  font-size: clamp(13px, 0.95vw, 15px);
  font-weight: 900;
  text-decoration: none;
}

.programme-public-slot a:hover {
  color: var(--accent);
}

.programme-public-slot .programme-weeks {
  color: var(--muted);
  display: inline-block;
  font-family: var(--font-menu);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.programme-tuning-needle {
  position: absolute;
  z-index: 4;
  border-left: 4px solid var(--accent);
  border-top: 1px solid rgba(19, 22, 25, 0.2);
  border-right: 1px solid rgba(19, 22, 25, 0.08);
  border-bottom: 1px solid rgba(19, 22, 25, 0.18);
  background:
    radial-gradient(ellipse at center, rgba(255, 255, 255, 0.22) 0%, rgba(19, 22, 25, 0.08) 48%, transparent 76%),
    linear-gradient(180deg, rgba(19, 22, 25, 0.09), rgba(19, 22, 25, 0.035)),
    linear-gradient(90deg, rgba(244, 24, 37, 0.16), transparent 38%),
    rgba(19, 22, 25, 0.07);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(19, 22, 25, 0.1),
    0 8px 20px rgba(19, 22, 25, 0.08);
  opacity: 0;
  pointer-events: none;
  transition: top 2.7s cubic-bezier(0.18, 0.78, 0.16, 1), opacity 0.18s ease;
}

.programme-tuning-needle::before {
  content: "";
  position: absolute;
  inset: 5px 18px;
  border-radius: 999px;
  border-top: 1px solid rgba(255, 255, 255, 0.68);
  border-bottom: 1px solid rgba(19, 22, 25, 0.06);
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2) 48%, transparent),
    rgba(19, 22, 25, 0.035);
  opacity: 0.72;
  pointer-events: none;
}

@supports ((backdrop-filter: blur(8px)) or (-webkit-backdrop-filter: blur(8px))) {
  .programme-tuning-needle {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}

.programme-tuning-needle.is-moving {
  opacity: 1;
}

.programme-tuning-needle.is-locked {
  opacity: 1;
  transition: none;
}

.programme-tuning-needle span {
  position: absolute;
  right: 32px;
  top: 50%;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-menu);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  transform: translateY(-50%);
}

.programme-tuning-needle.is-compact-label span {
  right: 18px;
  top: auto;
  bottom: 7px;
  min-height: 20px;
  padding: 0 12px;
  font-size: 10px;
  transform: none;
}

@media (max-width: 760px) {
  .programme-page-schedule {
    padding-inline: 20px;
  }

  .programme-public-slot {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px 22px;
  }

  .article-sequence {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 40px;
  }

  .article-sequence-link.is-next {
    grid-column: 1;
    text-align: left;
  }

}

.cookie-banner p,
.cookie-modal p,
.cookie-option small {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.cookie-actions button {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.cookie-actions button:hover,
.cookie-actions button:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
}

.cookie-actions button.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  padding: 22px;
  background: rgba(19, 22, 25, 0.74);
  display: grid;
  place-items: center;
}

.cookie-modal__panel {
  width: min(620px, 100%);
  padding: 28px;
  background: var(--rail);
  color: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.cookie-option {
  margin: 18px 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.cookie-option input {
  margin-top: 4px;
  accent-color: var(--accent);
}

.legal-page h2 {
  margin-top: 34px;
  font-family: var(--font-hero);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 400;
}

@media (max-width: 1500px) {
  .home-panels {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 1660px) {
  .site-shell {
    grid-template-columns: minmax(300px, 320px) minmax(0, 1fr);
  }

  .radio-rail {
    padding-right: 22px;
    padding-left: 22px;
  }

  .brand {
    width: calc(100% + 44px);
    margin-right: -22px;
    margin-left: -22px;
    padding-right: 22px;
    padding-left: 22px;
  }

  .topbar {
    padding-right: 32px;
    padding-left: 32px;
  }

  .main-nav {
    gap: clamp(16px, 2vw, 30px);
    font-size: 21px;
  }

  .home-hero {
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    gap: 32px;
    padding-right: clamp(42px, 5cqi, 72px);
    padding-left: clamp(42px, 5cqi, 72px);
  }
}

@media (max-width: 1380px) {
  .site-shell {
    grid-template-columns: 290px minmax(0, 1fr);
  }

  .radio-rail {
    padding-right: 20px;
    padding-left: 20px;
  }

  .brand {
    width: calc(100% + 40px);
    margin-right: -20px;
    margin-left: -20px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .topbar {
    padding-right: 24px;
    padding-left: 24px;
  }

  .main-nav {
    gap: 16px;
    font-size: 19px;
  }

  .nav-item:hover > a,
  a.nav-item:hover,
  .nav-item.is-active > a,
  a.nav-item.is-active {
    padding-right: 22px;
    padding-left: 22px;
  }

  .home-hero {
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    gap: 24px;
  }

  .home-hero h1 {
    font-size: clamp(72px, 8.5cqi, 112px);
  }

  .live-panel {
    padding: 20px 22px;
  }

  .live-panel strong {
    font-size: 28px;
  }
}

@media (max-width: 1200px) {
  .site-shell {
    display: block;
  }

  .radio-rail {
    position: relative;
    height: auto;
    padding: 16px 24px;
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr) 180px;
    grid-template-areas:
      "player show links"
      "player track links"
      "player wave links";
    grid-template-rows: auto auto auto;
    column-gap: 26px;
    row-gap: 4px;
    align-items: center;
  }

  .brand,
  .rail-socials,
  .world-ticker {
    display: none;
  }

  .player-frame {
    --play-size: 108px;
    grid-area: player;
    min-height: 170px;
    padding: 10px;
  }

  .play-toggle {
    width: var(--play-size);
    height: auto;
  }

  .play-toggle span {
    margin-left: 7px;
    border-top-width: 18px;
    border-bottom-width: 18px;
    border-left-width: 28px;
  }

  .player-frame.is-playing .play-toggle span {
    width: 28px;
    height: 34px;
    border-left-width: 9px;
    border-right-width: 9px;
  }

  .player-track-title {
    grid-area: track;
    align-self: center;
    margin: 0;
    padding: 8px 0;
    font-size: clamp(22px, 2.8vw, 30px);
  }

  .player-show-title {
    grid-area: show;
    align-self: end;
    margin: 0;
    font-size: clamp(18px, 2.2vw, 23px);
  }

  .player-waveform {
    grid-area: wave;
    align-self: start;
    height: 34px;
    margin: 0 auto;
  }

  .player-links {
    grid-area: links;
    width: auto;
    margin: 0;
    flex-direction: column;
    align-items: stretch;
  }

  .player-links a {
    justify-content: center;
    min-height: 26px;
    padding: 0 8px;
    font-size: 15px;
  }

  .topbar {
    top: 0;
  }

  .producer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .radio-rail {
    grid-template-columns: 140px minmax(0, 1fr);
    grid-template-areas:
      "player show"
      "player track"
      "player wave"
      "links links";
    padding: 14px 20px;
    column-gap: 20px;
    row-gap: 4px;
  }

  .player-frame {
    --play-size: 92px;
    min-height: 142px;
  }

  .player-track-title {
    padding: 7px 0;
    font-size: clamp(19px, 3.4vw, 25px);
  }

  .player-show-title {
    font-size: clamp(17px, 2.8vw, 21px);
  }

  .player-waveform {
    width: min(220px, 86%);
    height: 30px;
  }

  .player-links {
    width: 100%;
    flex-direction: row;
    align-items: center;
  }

  .player-links a {
    min-height: 30px;
  }

  .topbar {
    height: 72px;
    padding: 0 20px;
    justify-content: space-between;
    backdrop-filter: none;
    z-index: 30;
  }

  .mobile-brand {
    display: block;
  }

  .menu-toggle {
    display: grid;
    gap: 6px;
    border: 0;
    background: transparent;
    padding: 8px;
  }

  .menu-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--ink);
  }

  .main-nav {
    position: fixed;
    inset: 72px 0 0 0;
    display: none;
    padding: 22px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    font-size: 20px;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .menu-open .main-nav {
    display: flex;
  }

  .nav-item > a,
  a.nav-item {
    min-height: 44px;
    padding: 0 2px;
  }

  .nav-item.is-active > a,
  a.nav-item.is-active {
    padding-left: 22px;
    padding-right: 22px;
  }

  .has-menu::after {
    display: none;
  }

  .has-menu {
    display: block;
    width: 100%;
  }

  .has-menu > a {
    width: 100%;
    height: 44px;
    justify-content: space-between;
    padding: 0 14px;
    cursor: pointer;
  }

  .has-menu > a::after {
    content: "";
    flex: 0 0 auto;
    width: 10px;
    height: 10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    margin: 0 5px 0 18px;
    transform: translateY(-2px) rotate(45deg);
    transition: transform 0.18s ease;
  }

  .has-menu.is-submenu-open > a::after {
    transform: translateY(3px) rotate(225deg);
  }

  .has-menu.is-submenu-open > a {
    border-color: var(--ink);
    padding: 0 18px;
  }

  .submenu {
    display: none;
    position: static;
    width: 100%;
    min-width: 0;
    opacity: 1 !important;
    visibility: visible;
    pointer-events: auto !important;
    transform: none !important;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    padding: 8px 0 10px 20px;
  }

  .has-menu.is-submenu-open .submenu {
    display: block;
  }

  .submenu .submenu-all {
    display: block !important;
    color: var(--accent);
  }

  .home-hero,
  .home-band,
  .home-panels,
  .contact-grid,
  .choice-grid,
  .news-strip,
  .archive-strip,
  .listing-grid,
  .producer-grid {
    grid-template-columns: 1fr;
  }

  .home-hero {
    min-height: auto;
    padding: 42px 22px;
  }

  .home-feature-panel {
    grid-template-columns: 1fr;
  }

  .home-feature-panel img {
    height: auto;
    min-height: 0;
    max-height: none;
  }

  h1 {
    font-size: 56px;
  }

  .home-band-title {
    display: flex;
    gap: 12px;
  }

  .home-band > div,
  .home-panels,
  .contact-grid > div,
  .choice-grid > a,
  .section-head,
  .news-search-panel,
  .news-strip,
  .archive-strip,
  .listing-grid,
  .producer-grid,
  .pagination {
    padding-left: 22px;
    padding-right: 22px;
  }

  .news-search-panel {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .news-search-box input {
    min-height: 50px;
  }

  .article-card.compact {
    grid-template-columns: 92px minmax(0, 1fr);
  }

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

  .footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 22px;
  }

  .footer-legal {
    justify-content: flex-start;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .radio-rail {
    grid-template-columns: 108px minmax(0, 1fr);
    padding: 12px 14px;
    column-gap: 14px;
  }

  .player-frame {
    --play-size: 80px;
    min-height: 124px;
    padding: 8px;
  }

  .player-start-hint {
    margin-top: 8px;
    font-size: 9px;
  }

  .player-show-title {
    font-size: 17px;
  }

  .player-track-title {
    font-size: 19px;
  }

  .player-waveform {
    width: min(180px, 90%);
    height: 26px;
  }

  .player-links {
    gap: 6px;
  }

  .player-links a {
    flex: 1 1 auto;
    min-height: 28px;
    padding: 0 6px;
    font-size: 13px;
  }

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

@media (hover: none) {
  .producer-overlay {
    opacity: 1;
  }
}

/* Public-site dark theme. The radio rail, player and footer already use the
   station's dark palette, so only the light content surfaces need overrides. */
:root[data-theme="dark"] body,
:root[data-theme="dark"] .site-main {
  background: var(--paper);
  color: var(--ink);
}

:root[data-theme="dark"] .topbar,
:root[data-theme="dark"] .submenu {
  background: #15191c;
  border-color: var(--line);
  box-shadow: none;
}

:root[data-theme="dark"] .submenu a {
  color: var(--muted);
}

:root[data-theme="dark"] .home-hero {
  background:
    linear-gradient(90deg, rgba(13, 16, 18, 0.96) 0%, rgba(13, 16, 18, 0.84) 50%, rgba(13, 16, 18, 0.62) 100%),
    url("../images/strummer-hero-retro.webp") center / cover;
}

:root[data-theme="dark"] .home-hero h1,
:root[data-theme="dark"] .home-band-title strong,
:root[data-theme="dark"] .chat-open-link strong,
:root[data-theme="dark"] .section-title-link strong,
:root[data-theme="dark"] .section-more-link strong,
:root[data-theme="dark"] body.home .article-card.home-card h3,
:root[data-theme="dark"] body.home .article-card.home-card h3 a,
:root[data-theme="dark"] .news-search-results h3 a,
:root[data-theme="dark"] .article-sequence-link,
:root[data-theme="dark"] .home-feature-panel h2 {
  color: var(--ink);
}

:root[data-theme="dark"] .home-band > div,
:root[data-theme="dark"] .choice-grid > a,
:root[data-theme="dark"] .home-feature-panel,
:root[data-theme="dark"] .home-feature-panel > div,
:root[data-theme="dark"] .producer-card,
:root[data-theme="dark"] .programme-public-day,
:root[data-theme="dark"] .news-search-results article,
:root[data-theme="dark"] .search-results article,
:root[data-theme="dark"] .content-body p.programme-current-line {
  background: #15191c;
  border-color: var(--line);
  color: var(--ink);
}

:root[data-theme="dark"] .home-feature-panel img,
:root[data-theme="dark"] .article-main-image {
  background: #15191c;
}

:root[data-theme="dark"] .programme-public-day h2,
:root[data-theme="dark"] .programme-public-slot strong,
:root[data-theme="dark"] .programme-public-slot.is-lens-active strong {
  color: var(--ink);
}

:root[data-theme="dark"] .programme-public-slot time,
:root[data-theme="dark"] .programme-public-slot.is-lens-active > time,
:root[data-theme="dark"] .programme-public-slot .programme-weeks {
  color: var(--muted);
}

:root[data-theme="dark"] .programme-public-slot a,
:root[data-theme="dark"] .programme-public-slot span:not(.programme-current-pill) {
  color: var(--accent);
}

:root[data-theme="dark"] .programme-public-slot.is-current {
  background: rgba(237, 27, 36, 0.1);
}

:root[data-theme="dark"] .programme-tuning-needle {
  border-color: rgba(244, 241, 235, 0.22);
  border-left-color: var(--accent);
  background:
    radial-gradient(ellipse at center, rgba(244, 241, 235, 0.12) 0%, rgba(244, 241, 235, 0.035) 48%, transparent 76%),
    linear-gradient(90deg, rgba(237, 27, 36, 0.16), transparent 38%),
    rgba(244, 241, 235, 0.025);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -1px 0 rgba(0, 0, 0, 0.24),
    0 8px 20px rgba(0, 0, 0, 0.24);
}

:root[data-theme="dark"] .chat-panel {
  background: #181416 !important;
}

:root[data-theme="dark"] .chat-frame {
  border-color: var(--line);
  background: #15191c;
}

:root[data-theme="dark"] .home-carousel-panel,
:root[data-theme="dark"] .home-feature-panel,
:root[data-theme="dark"] .producer-card {
  border-color: var(--line);
}

:root[data-theme="dark"] .news-search-panel {
  background: rgba(21, 25, 28, 0.72);
}

:root[data-theme="dark"] .news-search-box input,
:root[data-theme="dark"] .search-panel input,
:root[data-theme="dark"] .site-main select,
:root[data-theme="dark"] .site-main textarea {
  background: #15191c;
  border-color: var(--line);
  color: var(--ink);
}

:root[data-theme="dark"] .news-search-box input::placeholder,
:root[data-theme="dark"] .search-panel input::placeholder {
  color: var(--muted);
}

:root[data-theme="dark"] .page-step,
:root[data-theme="dark"] .page-number:hover {
  background: #252a2e;
  color: var(--ink);
}

:root[data-theme="dark"] .page-number.is-current {
  background: var(--accent);
  color: var(--white);
}

:root[data-theme="dark"] .contact-grid::after {
  background:
    linear-gradient(180deg, rgba(13, 16, 18, 0.34) 0%, rgba(13, 16, 18, 0.58) 50%, rgba(13, 16, 18, 0.9) 100%),
    url("../images/strummer-hero-retro.webp") center bottom / cover;
}

body,
.site-main,
.topbar,
.submenu,
.home-band > div,
.chat-panel,
.home-feature-panel,
.home-feature-panel > div,
.news-search-panel,
.producer-card,
.programme-public-day {
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

@media (max-width: 1200px) {
  .rail-theme-control {
    display: none;
  }

  .footer-theme-toggle {
    display: inline-flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  body,
  .site-main,
  .topbar,
  .submenu,
  .home-band > div,
  .chat-panel,
  .home-feature-panel,
  .home-feature-panel > div,
  .news-search-panel,
  .producer-card,
  .programme-public-day,
  .theme-toggle {
    transition: none;
  }
}
