:root {
  --navy: #062f3d;
  --navy-2: #0a3b49;
  --ink: #092f3a;
  --cream: #f1d8ad;
  --cream-light: #f8e8c9;
  --paper: #f4dfba;
  --orange: #d85f13;
  --orange-dark: #b94708;
  --teal: #6e9aa0;
  --gold: #efc98c;
  --olive: #7b805e;
  --line: rgba(9, 47, 58, 0.22);
  --shadow: 0 18px 55px rgba(1, 25, 32, 0.16);
  --max: 1480px;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: 'Arial Narrow', 'Roboto Condensed', Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.52;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: .075;
  background-image:
    radial-gradient(circle at 20% 15%, #0b2730 0 0.65px, transparent .8px),
    radial-gradient(circle at 74% 63%, #0b2730 0 0.55px, transparent .75px),
    radial-gradient(circle at 41% 82%, #fff 0 0.6px, transparent .8px);
  background-size: 8px 9px, 11px 13px, 7px 12px;
  mix-blend-mode: multiply;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.container { width: min(calc(100% - 64px), var(--max)); margin-inline: auto; }
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed;
  top: 10px; left: 10px;
  z-index: 2000;
  transform: translateY(-150%);
  background: var(--cream-light);
  color: var(--navy);
  padding: 10px 16px;
  border-radius: 4px;
  font-weight: 700;
}
.skip-link:focus { transform: translateY(0); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  color: var(--cream-light);
  background: linear-gradient(110deg, #052c38, #073947 58%, #052b37);
  box-shadow: 0 9px 25px rgba(0, 20, 27, .22);
}
.header-shell {
  width: min(calc(100% - 54px), 1520px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 175px minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px 0 13px;
  text-decoration: none;
  min-width: 0;
}
.brand img { width: 82px; height: 82px; flex: 0 0 auto; }
.brand-logo-only { justify-content: center; padding-block: 8px; }
.brand-logo-only img { width: 112px; height: 112px; border-radius: 50%; object-fit: cover; box-shadow: 0 8px 24px rgba(0, 18, 24, .2); }
.brand-copy { display: block; line-height: .85; }
.brand-copy strong {
  display: block;
  font-family: var(--serif);
  font-size: 33px;
  letter-spacing: -.04em;
  color: #f7dfb8;
}
.brand-copy small {
  display: block;
  margin-top: 8px;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 800;
  font-size: 8.5px;
  white-space: nowrap;
}
.header-main {
  min-width: 0;
  display: grid;
  grid-template-rows: auto auto;
}
.now-playing {
  margin-top: 17px;
  min-height: 58px;
  padding: 0 13px 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background:
    linear-gradient(110deg, rgba(226, 103, 25, .98), rgba(185, 66, 7, .97)),
    var(--orange);
  border-radius: 6px;
  box-shadow: inset 0 1px rgba(255,255,255,.28), 0 12px 30px rgba(2,22,28,.18);
}
.now-playing-copy {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 13px;
  white-space: nowrap;
}
.live-dot { width: 10px; height: 10px; border-radius: 50%; background: #ffe3bb; box-shadow: 0 0 0 4px rgba(255,255,255,.07); flex: 0 0 auto; }
.now-label {
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: .08em;
  font-weight: 800;
}
.live-badge {
  padding: 3px 7px 2px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 3px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
}
.track-line {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 16px;
}
.track-line strong { font-weight: 800; }
.track-line em { font-family: var(--serif); font-style: italic; }
.player-controls { display: flex; align-items: center; gap: 13px; flex: 0 0 auto; }
.open-player-label { text-transform: uppercase; letter-spacing: .07em; font-size: 11px; font-weight: 900; color: rgba(255,248,233,.9); }
.round-button {
  width: 49px; height: 49px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 50%;
  color: white;
  background: rgba(255,255,255,.06);
  cursor: pointer;
  transition: transform .18s ease, background .18s ease;
}
.round-button:hover { transform: scale(1.04); background: rgba(255,255,255,.13); }
.round-button svg { width: 24px; height: 24px; fill: currentColor; }
.icon-pause { display: none; }
.is-playing .icon-play { display: none; }
.is-playing .icon-pause { display: block; }
.volume-control { display: flex; align-items: center; gap: 8px; }
.volume-control svg { width: 22px; height: 22px; fill: white; }
.volume-control input { width: 82px; accent-color: #ffe0ad; cursor: pointer; }
.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(26px, 4vw, 72px);
  min-height: 58px;
  padding-inline: 14px;
}
.primary-nav a {
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: .09em;
  font-weight: 800;
  color: #f1d7aa;
}
.primary-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%; bottom: -10px;
  height: 3px;
  background: var(--orange);
  transition: right .2s ease;
}
.primary-nav a:hover::after, .primary-nav a.active::after { right: 0; }
.primary-nav a.active { color: var(--orange); }

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  min-height: 570px;
  overflow: hidden;
  background:
    linear-gradient(90deg, #f5ddba 0%, #f4dcb7 43%, rgba(244,220,183,.8) 55%, rgba(244,220,183,.03) 78%),
    linear-gradient(180deg, #f6e1bf, #e7c69c);
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(255,255,255,.1), rgba(0,0,0,.03));
}
.hero-image {
  position: absolute;
  z-index: -2;
  inset: 0 0 0 39%;
  background-image: url('../img/hero-sea.webp');
  background-size: cover;
  background-position: center 45%;
  filter: saturate(.9) contrast(.95);
}
.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #f4dcb7 0, rgba(244,220,183,.72) 12%, rgba(244,220,183,.08) 44%, transparent 72%);
}
.hero-content { padding-block: 58px 67px; }
.eyebrow {
  margin: 0 0 7px;
  text-transform: uppercase;
  letter-spacing: .105em;
  font-weight: 900;
  font-size: 14px;
}
.eyebrow.orange { color: var(--orange); }
.hero .eyebrow { color: rgba(9,47,58,.65); }
.hero h1 {
  margin: 0;
  max-width: 680px;
  font-family: var(--serif);
  color: var(--navy);
  font-size: clamp(56px, 6.4vw, 92px);
  line-height: .91;
  letter-spacing: -.045em;
  text-wrap: balance;
}
.small-rule { width: 68px; height: 4px; margin: 24px 0 17px; background: var(--orange); }
.hero-lead {
  margin: 0;
  color: #152f35;
  font-size: 20px;
  line-height: 1.33;
  font-weight: 600;
}
.hero-actions { display: flex; align-items: center; gap: 36px; margin-top: 28px; }
.listen-button,
.outline-button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border-radius: 999px;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: .06em;
  font-weight: 900;
  cursor: pointer;
}
.listen-button {
  padding: 0 29px;
  color: #fff7e9;
  border: 0;
  background: linear-gradient(120deg, #dc6619, #bd4608);
  box-shadow: 0 11px 30px rgba(168, 67, 11, .2);
  transition: transform .18s ease, box-shadow .18s ease;
}
.listen-button:hover { transform: translateY(-2px); box-shadow: 0 15px 34px rgba(168, 67, 11, .26); }
.listen-button svg { width: 25px; height: 25px; fill: currentColor; }
.text-link {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .055em;
  font-weight: 900;
  font-size: 14px;
  border-bottom: 1px solid transparent;
}
.text-link:hover { border-color: currentColor; }

/* Philosophy */
.section-dark {
  color: var(--cream-light);
  background: linear-gradient(105deg, #062f3d, #073744 58%, #052c38);
}
.philosophy { padding: 58px 0 64px; }
.philosophy-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) 3fr;
  gap: 48px;
}
.philosophy-intro {
  padding-right: 42px;
  border-right: 2px solid rgba(213, 92, 18, .6);
}
.philosophy h2 {
  margin: 0 0 20px;
  color: #f4d7aa;
  font-family: var(--serif);
  font-size: clamp(42px, 3.6vw, 52px);
  line-height: .96;
  letter-spacing: -.035em;
}
.philosophy-intro p { margin: 0 0 17px; max-width: 360px; }
.accent-copy { color: #f06c1d; font-weight: 700; }
.principles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 34px;
  align-items: start;
}
.principle-icon {
  width: 58px; height: 58px;
  margin-bottom: 14px;
  color: #f0c47f;
}
.principle-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.principle h3 {
  margin: 0 0 13px;
  font-family: var(--serif);
  color: #f4d7aa;
  font-size: 22px;
  line-height: 1.08;
}
.principle p { margin: 0; font-size: 15px; line-height: 1.62; color: rgba(255,242,216,.9); }

/* Data sections */
.music-overview {
  padding: 45px 0 50px;
  background:
    linear-gradient(rgba(248,230,199,.92), rgba(248,230,199,.92)),
    var(--cream-light);
}
.overview-grid {
  display: grid;
  grid-template-columns: .92fr 1.35fr;
  gap: 42px;
}
.recently-played { padding-right: 42px; border-right: 1px solid var(--line); }
.section-heading {
  min-height: 38px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--line);
}
.section-heading .eyebrow { margin: 0; }
.section-note {
  color: rgba(9,47,58,.68);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 11px;
  font-weight: 800;
}
.recent-list { list-style: none; padding: 0; margin: 0; }
.recent-list li {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 61px;
  padding: 9px 5px 9px 22px;
  border-bottom: 1px solid rgba(9,47,58,.14);
}
.recent-list li::before {
  content: '';
  position: absolute;
  left: 2px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--orange);
}
.recent-list .track { min-width: 0; display: flex; flex-wrap: wrap; column-gap: 6px; line-height: 1.3; }
.recent-list .track strong { font-size: 14px; }
.recent-list .track span { font-size: 13px; }
.recent-list .track span::before { content: '— '; }
.recent-list time { font-size: 13px; font-variant-numeric: tabular-nums; }
.discovery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
  margin-top: 18px;
}
.discovery-card {
  position: relative;
  min-height: 220px;
  padding: 22px 21px 20px;
  border: 1px solid rgba(9,47,58,.35);
  border-radius: 7px;
  background: rgba(255,246,226,.32);
  overflow: hidden;
}
.discovery-card::after {
  content: '';
  position: absolute;
  inset: auto -40px -56px auto;
  width: 145px; height: 145px;
  border: 1px solid rgba(9,47,58,.08);
  border-radius: 50%;
}
.rotation-tag {
  float: left;
  display: inline-grid;
  place-items: center;
  width: 34px; height: 34px;
  margin: 0 12px 14px 0;
  color: white;
  border-radius: 2px;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
}
.tag-a { background: #477e8c; }
.tag-b { background: var(--orange-dark); }
.tag-c { background: var(--olive); }
.card-kicker {
  margin: 5px 0 23px;
  color: rgba(9,47,58,.62);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: .085em;
  font-weight: 900;
}
.discovery-card h3 { clear: both; margin: 0; font-family: var(--serif); font-size: 20px; line-height: 1.1; }
.song-title { margin: 5px 0 0; font-size: 16px; line-height: 1.25; font-weight: 650; }
.year { margin: 15px 0 9px; color: var(--orange-dark); font-weight: 900; }
.description { margin: 0; font-size: 14px; line-height: 1.45; }


/* Support */
.support {
  padding: 29px 0;
  background: linear-gradient(90deg, #efd0a3, #f7e0bd 58%, #edd0a8);
  border-top: 1px solid rgba(9,47,58,.08);
}
.support-grid {
  display: grid;
  grid-template-columns: 100px 1fr minmax(330px, .9fr);
  align-items: center;
  gap: 28px;
}
.support-mark { width: 88px; color: var(--navy); }
.support-mark svg { fill: none; stroke: currentColor; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.support-copy h2 { margin: 0; font-family: var(--serif); font-size: 30px; line-height: 1; }
.support-copy p { margin: 8px 0 0; max-width: 760px; font-size: 14px; }
.support-actions { display: grid; gap: 7px; justify-items: start; }
.outline-button {
  min-height: 50px;
  padding: 0 22px;
  color: var(--orange-dark);
  border: 2px solid var(--orange);
  border-radius: 6px;
  font-size: 13px;
  background: transparent;
}
.outline-button:hover { background: rgba(216,95,19,.07); }
.support-actions span { font-size: 12px; color: rgba(9,47,58,.74); }

/* Footer */
.site-footer {
  color: #f5dfb8;
  background: linear-gradient(110deg, #062f3d, #073845 62%, #042934);
  padding: 24px 0 13px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr .9fr;
  gap: 60px;
  align-items: center;
  padding-bottom: 25px;
}
.footer-brand { display: flex; align-items: center; gap: 24px; }
.footer-brand img { width: 130px; height: 130px; border-radius: 50%; }
.footer-brand p { margin: 0; font-family: var(--serif); font-size: 17px; }
.site-footer h2 { margin: 0 0 10px; color: var(--gold); text-transform: uppercase; letter-spacing: .08em; font-size: 13px; }
.site-footer nav { display: grid; gap: 4px; }
.site-footer a { text-decoration: none; font-size: 13px; }
.site-footer a:hover { color: var(--orange); }
.social-link { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 10px; }
.instagram-icon { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.instagram-dot { fill: currentColor; stroke: none; }
.domain-link { display: block; color: var(--orange); font-size: 17px !important; font-weight: 800; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-top: 12px;
  border-top: 1px solid rgba(239,201,140,.32);
  font-size: 12px;
}
.footer-bottom nav { display: flex; gap: 30px; }

/* Utility pages */
.page-main { min-height: 62vh; padding: 70px 0 90px; background: var(--cream-light); }
.page-card { max-width: 900px; padding: 44px; background: rgba(255,248,233,.58); border: 1px solid var(--line); border-radius: 8px; box-shadow: var(--shadow); }
.page-card h1 { margin-top: 0; font-family: var(--serif); font-size: clamp(42px, 6vw, 68px); line-height: .95; }
.page-card h2 { margin-top: 34px; font-family: var(--serif); }
.page-card a { color: var(--orange-dark); }
.back-link { display: inline-block; margin-bottom: 25px; font-weight: 800; text-decoration: none; text-transform: uppercase; font-size: 13px; letter-spacing: .07em; }


.privacy-updated { margin-top: 40px; color: rgba(9,47,58,.62); font-size: 13px; }
.form-submit-row a { color: var(--orange-dark); }

/* Utility-page header */
.utility-header { position: relative; }
.utility-header-shell {
  min-height: 116px;
  grid-template-columns: 130px 1fr;
  align-items: center;
}
.utility-header-shell .brand { justify-content: flex-start; }
.utility-header-shell .brand-logo-only img { width: 92px; height: 92px; }
.utility-listen-link {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 20px;
  color: #fff6e7;
  background: var(--orange);
  border-radius: 999px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .07em;
  font-weight: 900;
  font-size: 13px;
}
.utility-listen-link:hover { background: var(--orange-dark); }

/* Contact form */
.contact-card { max-width: 960px; }
.contact-form { display: grid; gap: 22px; margin-top: 32px; }
.form-row.two-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-form label { display: grid; gap: 8px; font-weight: 800; }
.contact-form label > span { text-transform: uppercase; letter-spacing: .07em; font-size: 12px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(9,47,58,.34);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  background: rgba(255,250,240,.76);
  font: inherit;
  outline: none;
}
.contact-form textarea { resize: vertical; min-height: 180px; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(216,95,19,.12); }
.form-submit-row { display: flex; align-items: center; gap: 20px; }
.form-submit-row p { margin: 0; color: rgba(9,47,58,.68); font-size: 13px; }
.form-message { margin: 24px 0 4px; padding: 14px 16px; border-radius: 6px; }
.form-message.success { border: 1px solid rgba(35,100,73,.35); background: rgba(89,148,113,.12); }
.form-message.error { border: 1px solid rgba(164,55,29,.35); background: rgba(205,89,52,.1); }
.form-message ul { margin: 8px 0 0 20px; padding: 0; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

/* Separate player window */
.player-page {
  min-height: 100vh;
  color: #f7e4c2;
  background:
    radial-gradient(circle at 80% 15%, rgba(216,95,19,.14), transparent 30%),
    linear-gradient(145deg, #052c38, #073a49 58%, #042834);
}
.player-page::before { opacity: .055; mix-blend-mode: screen; }
.player-shell { width: min(calc(100% - 34px), 920px); margin: 0 auto; padding: 14px 0 18px; }
.player-window-header {
  display: grid;
  grid-template-columns: 88px minmax(0,1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 10px 16px;
  color: var(--ink);
  background: #fffaf0;
  border-radius: 15px;
  box-shadow: 0 14px 38px rgba(0,0,0,.18);
}
.player-window-header img { width: 76px; height: 76px; border-radius: 50%; }
.player-window-now { min-width: 0; display: grid; gap: 2px; }
.player-window-label { color: var(--orange-dark); text-transform: uppercase; letter-spacing: .09em; font-size: 12px; font-weight: 900; }
.player-window-now strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-family: var(--serif); font-size: 23px; line-height: 1.1; }
.player-window-now span:last-child { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: rgba(9,47,58,.72); font-size: 15px; }
.player-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 15px;
  color: #fff;
  background: var(--orange);
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .07em;
  font-weight: 900;
  font-size: 13px;
}
.player-live-badge span { width: 8px; height: 8px; border-radius: 50%; background: #fff4df; }
.player-card {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  align-items: center;
  gap: 24px;
  margin-top: 12px;
  padding: 20px 24px;
  border: 1px solid rgba(239,201,140,.24);
  border-radius: 16px;
  background: linear-gradient(115deg, rgba(17,68,83,.92), rgba(10,55,70,.94));
  box-shadow: inset 0 1px rgba(255,255,255,.06);
}
.player-card-copy h1 { margin: 0; font-family: var(--serif); color: #f6ddb4; font-size: 36px; line-height: 1; }
.player-card-copy p:last-child { margin: 8px 0 0; color: rgba(255,239,210,.82); }
.player-card-controls { display: flex; align-items: center; gap: 19px; }
.player-main-button {
  width: 64px; height: 64px;
  display: grid; place-items: center;
  border: 0; border-radius: 50%;
  color: white; background: linear-gradient(145deg, #df6819, #c34508);
  box-shadow: 0 11px 30px rgba(0,0,0,.22);
  cursor: pointer;
}
.player-main-button svg { width: 29px; height: 29px; fill: currentColor; }
.player-volume { display: flex; align-items: center; gap: 10px; }
.player-volume svg { width: 24px; height: 24px; fill: #f8dfb6; }
.player-volume input { width: 170px; accent-color: var(--orange); }

.player-donation-wrap {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 16px;
  border: 1px solid rgba(239,201,140,.32);
  border-radius: 12px;
  color: rgba(247,228,194,.88);
  background: rgba(255,255,255,.035);
}
.player-donation-wrap > div { min-width: 0; display: grid; gap: 3px; }
.player-donation-wrap strong { color: #f6ddb4; font-family: var(--serif); font-size: 18px; }
.player-donation-wrap span { font-size: 11px; line-height: 1.35; color: rgba(247,228,194,.72); }
.player-donation-button {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--orange);
  border-radius: 999px;
  color: #fff5e6;
  background: var(--orange);
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
}
.player-donation-button:hover { background: var(--orange-dark); }
.player-window-note { margin: 9px 0 2px; text-align: center; color: rgba(247,228,194,.68); font-size: 11px; }
.player-back-link { display: block; width: max-content; margin: 4px auto 0; color: #f1c480; text-decoration: none; font-size: 11px; }
.player-back-link:hover { color: var(--orange); }

/* Programs */

.programs {
  padding: 36px 0 40px;
  background: #f1d8ad;
  border-bottom: 1px solid var(--line);
}

.programs-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 18px;
}

.programs-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 30px;
  color: var(--navy);
}

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

.program-card {
  position: relative;
  padding: 22px 25px;
  border: 1px solid rgba(9,47,58,.28);
  border-radius: 7px;
  background: rgba(255,246,226,.38);
  transition: background .2s ease, border-color .2s ease;
}

/* Actief programma */
.program-card.is-live {
  background: #f3c99b;
  border-color: var(--orange);
  box-shadow: inset 5px 0 var(--orange);
}

.program-time {
  margin-bottom: 5px;
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}

.program-title-row {
  display: flex;
  align-items: center;
  gap: 13px;
}

.program-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 25px;
  color: var(--navy);
}

.program-card p {
  margin: 9px 0 0;
  max-width: 580px;
  font-size: 14px;
}

.program-live {
  display: none;
  padding: 4px 8px 3px;
  border-radius: 3px;
  color: white;
  background: var(--orange);
  text-transform: uppercase;
  letter-spacing: .07em;
  font-size: 9px;
  font-weight: 900;
}

@media (max-width: 640px) {
  .programs-heading {
    display: block;
  }

  .programs-heading .section-note {
    margin-top: 3px;
  }

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

/* Feedback */
.toast {
  position: fixed;
  left: 50%; bottom: 24px;
  z-index: 1200;
  max-width: min(90vw, 520px);
  transform: translate(-50%, 20px);
  padding: 12px 18px;
  color: #fff8e9;
  background: rgba(4,43,55,.96);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 5px;
  box-shadow: 0 14px 44px rgba(0,0,0,.24);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.toast.show { opacity: 1; transform: translate(-50%,0); }
.noscript { margin: 0; padding: 10px; color: #fff; background: #7a2600; text-align: center; }

:focus-visible { outline: 3px solid #f2b35b; outline-offset: 3px; }

@media (max-width: 1180px) {
  .header-shell { grid-template-columns: 165px 1fr; }
  .brand-copy strong { font-size: 27px; }
  .brand img { width: 70px; height: 70px; }
  .brand-logo-only img { width: 102px; height: 102px; }
  .track-line { font-size: 14px; }
  .primary-nav { gap: 30px; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .philosophy-intro { border-right: 0; border-bottom: 2px solid rgba(213,92,18,.5); padding: 0 0 25px; }
  .philosophy-intro p { max-width: 730px; }
  .support-grid { grid-template-columns: 85px 1fr; }
  .support-actions { grid-column: 2; }
}

@media (max-width: 900px) {
  .container { width: min(calc(100% - 34px), var(--max)); }
  .site-header { position: relative; }
  .header-shell { width: min(calc(100% - 26px), 1520px); grid-template-columns: 1fr; gap: 0; }
  .brand { justify-content: center; padding: 10px 0; }
  .brand img { width: 62px; height: 62px; }
  .brand-logo-only img { width: 86px; height: 86px; }
  .brand-copy strong { font-size: 25px; }
  .now-playing { margin-top: 0; padding: 9px 11px 9px 15px; min-height: 64px; }
  .now-playing-copy { gap: 8px; }
  .now-label { font-size: 12px; }
  .live-badge { display: none; }
  .track-line { display: grid; line-height: 1.18; white-space: normal; }
  .track-line > span { display: none; }
  .track-line strong, .track-line em { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; max-width: 52vw; }
  .volume-control, .open-player-label { display: none; }
  .round-button { width: 44px; height: 44px; }
  .primary-nav { overflow-x: auto; justify-content: flex-start; gap: 31px; padding-inline: 6px; min-height: 52px; scrollbar-width: none; }
  .primary-nav::-webkit-scrollbar { display: none; }
  .primary-nav a { flex: 0 0 auto; }
  .hero { min-height: 615px; }
  .hero-image { inset: 45% 0 0 0; background-position: center 58%; }
  .hero-image::after { background: linear-gradient(180deg, #f4dcb7 0, rgba(244,220,183,.18) 24%, transparent 55%); }
  .hero { background: linear-gradient(180deg, #f4dcb7 0%, #f4dcb7 55%, rgba(244,220,183,.22) 72%, transparent 100%); }
  .hero-content { padding-top: 46px; }
  .hero h1 { font-size: clamp(51px, 12vw, 76px); }
  .principles { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .overview-grid { grid-template-columns: 1fr; }
  .recently-played { padding-right: 0; border-right: 0; }
  .discoveries { padding-top: 4px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .brand-copy small { font-size: 7px; }
  .now-playing { border-radius: 4px; }
  .now-playing-copy { min-width: 0; }
  .live-dot { width: 8px; height: 8px; }
  .track-line strong, .track-line em { max-width: 48vw; }
  .hero { min-height: 645px; }
  .hero h1 { font-size: 50px; }
  .hero-lead { font-size: 17px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .listen-button { min-height: 54px; }
  .philosophy { padding: 43px 0 48px; }
  .principles { grid-template-columns: 1fr; gap: 29px; }
  .principle { display: grid; grid-template-columns: 55px 1fr; column-gap: 16px; }
  .principle-icon { grid-row: 1 / 3; }
  .principle p { grid-column: 2; }
  .music-overview { padding-top: 35px; }
  .overview-grid { gap: 34px; }
  .section-heading { display: block; }
  .section-note { display: block; margin-top: 2px; }
  .recent-list li { min-height: 68px; }
  .recent-list .track { display: grid; }
  .recent-list .track span::before { content: ''; }
  .discovery-grid { grid-template-columns: 1fr; }
  .discovery-card { min-height: auto; }
  .support-grid { grid-template-columns: 64px 1fr; gap: 17px; }
  .support-mark { width: 62px; }
  .support-copy h2 { font-size: 25px; }
  .support-actions { grid-column: 1 / -1; }
  .outline-button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .footer-brand { grid-column: auto; align-items: flex-start; }
  .footer-brand img { width: 105px; height: 105px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-bottom nav { flex-wrap: wrap; gap: 18px; }
  .page-card { padding: 27px 22px; }
}


@media (max-width: 720px) {
  .utility-header-shell { grid-template-columns: 98px 1fr; min-height: 98px; }
  .utility-header-shell .brand-logo-only img { width: 78px; height: 78px; }
  .utility-listen-link { min-height: 42px; padding-inline: 16px; }
  .form-row.two-columns { grid-template-columns: 1fr; }
  .form-submit-row { align-items: stretch; flex-direction: column; }
  .form-submit-row .listen-button { width: 100%; }
  .player-shell { width: min(calc(100% - 20px), 920px); padding-top: 10px; }
  .player-window-header { grid-template-columns: 72px minmax(0,1fr); gap: 13px; padding: 12px; border-radius: 11px; }
  .player-window-header img { width: 66px; height: 66px; }
  .player-live-badge { grid-column: 1 / -1; justify-self: stretch; justify-content: center; padding: 7px 10px; border-radius: 6px; }
  .player-window-now strong { font-size: 19px; }
  .player-card { grid-template-columns: 1fr; padding: 22px 18px; }
  .player-card-controls { justify-content: space-between; }
  .player-volume input { width: min(38vw, 150px); }
  .player-donation-wrap { align-items: stretch; flex-direction: column; }
  .player-donation-button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
