:root {
  --ink: #f8f4ea;
  --paper: #fff8eb;
  --muted: #c6bca8;
  --navy: #10182c;
  --navy-2: #17253d;
  --charcoal: #151313;
  --amber: #f2aa3b;
  --amber-2: #f6d47c;
  --burgundy: #8a2f45;
  --green: #55e07d;
  --line: rgba(255, 255, 255, 0.14);
  --dark-line: rgba(20, 18, 24, 0.16);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--charcoal);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.82), transparent 78%);
}

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

a {
  color: inherit;
}

h1,
h2,
.brand__text strong {
  font-family: "Barlow Condensed", Inter, sans-serif;
  letter-spacing: 0;
  line-height: 0.92;
  text-transform: uppercase;
}

h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(4rem, 9vw, 8.6rem);
  text-wrap: balance;
}

h2 {
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 5rem);
}

h3 {
  margin: 0 0 8px;
  font-size: 1.12rem;
  line-height: 1.2;
}

p {
  margin-top: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 48px);
  background: rgba(16, 24, 44, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand__logo {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  aspect-ratio: 1;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(242, 170, 59, 0.18);
}

.brand__text {
  display: grid;
  min-width: 0;
}

.brand__text strong {
  font-size: 1.25rem;
}

.brand__text span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav,
.button-row,
.status-line,
.player-controls,
.player-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.site-nav {
  gap: 8px;
}

.site-nav a {
  padding: 10px 13px;
  color: rgba(255, 248, 235, 0.78);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.site-nav .nav-cta {
  color: #1b1620;
  background: var(--amber);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255,255,255,0.08);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.home-hero {
  position: relative;
  min-height: min(760px, calc(100svh - 83px));
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 500px);
  gap: clamp(24px, 5vw, 56px);
  padding: clamp(42px, 6vw, 82px) clamp(18px, 5vw, 72px) clamp(34px, 5vw, 54px);
  overflow: hidden;
}

.home-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--navy);
}

.home-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(16, 24, 44, 0.96) 0%, rgba(16, 24, 44, 0.8) 42%, rgba(16, 24, 44, 0.28) 74%),
    linear-gradient(0deg, rgba(21, 19, 19, 0.98) 0%, rgba(21, 19, 19, 0.36) 48%, rgba(21, 19, 19, 0.42) 100%);
}

.home-hero__slide {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 1500ms ease;
  will-change: opacity, transform;
}

.home-hero__slide.is-visible {
  opacity: 1;
}

.home-hero__slide.is-zooming {
  animation: heroZoom 10.5s linear forwards;
}

@keyframes heroZoom {
  from {
    transform: scale(1.035);
  }
  to {
    transform: scale(1.095);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero__slide,
  .home-hero__slide.is-visible,
  .home-hero__slide.is-zooming {
    animation: none;
    transition: none;
    transform: scale(1);
  }
}

.home-hero__content,
.home-hero__player {
  position: relative;
  z-index: 3;
}

.lead {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 248, 235, 0.82);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--amber-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.button-row {
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 900;
  text-decoration: none;
}

.btn--primary {
  color: #17131c;
  background: var(--amber);
  box-shadow: 0 14px 34px rgba(242, 170, 59, 0.24);
}

.btn--ghost {
  color: var(--ink);
  border-color: rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.07);
}

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

.btn--line-dark {
  color: #17131c;
  border-color: rgba(20, 18, 24, 0.28);
}

.radio-player,
.panel,
.schedule-shell,
.pricing article,
.sponsor-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(16, 24, 44, 0.84);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.radio-player {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
}

.radio-player--large {
  grid-template-columns: minmax(170px, 260px) minmax(0, 1fr);
  gap: 28px;
  padding: clamp(18px, 4vw, 34px);
  background:
    linear-gradient(135deg, rgba(138,47,69,0.38), rgba(16,24,44,0.92)),
    var(--navy);
}

.player-art {
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  background: #0d1324;
}

.player-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.status-line {
  margin-bottom: 10px;
  color: var(--amber-2);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(85, 224, 125, 0.7);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 12px rgba(85, 224, 125, 0);
  }
}

.player-main h2 {
  margin-bottom: 8px;
  font-size: clamp(2.1rem, 5vw, 4.4rem);
  word-break: break-word;
}

.radio-player--compact .player-main h2 {
  font-size: clamp(1.55rem, 3.2vw, 2.6rem);
}

.player-main p {
  color: var(--muted);
}

.player-controls {
  margin-top: 20px;
}

.play-button {
  min-width: 82px;
  min-height: 44px;
  color: #17131c;
  border: 0;
  border-radius: 6px;
  background: var(--amber);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.play-button--large {
  min-width: 110px;
  min-height: 52px;
}

.player-controls label {
  display: grid;
  gap: 4px;
  min-width: 180px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

input[type="range"] {
  accent-color: var(--amber);
}

.player-links {
  margin-top: 22px;
}

.player-links a {
  color: var(--amber-2);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.signal-strip div {
  padding: 24px clamp(18px, 4vw, 44px);
  background: #121a2e;
}

.signal-strip strong {
  display: block;
  color: var(--amber);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.4rem;
  line-height: 1;
}

.signal-strip span {
  color: var(--muted);
  font-weight: 800;
}

.section {
  padding: clamp(58px, 9vw, 110px) clamp(18px, 5vw, 72px);
}

.section--paper {
  color: #1e1821;
  background: var(--paper);
}

.section--blue {
  background: #18283d;
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(300px, 1fr);
  gap: clamp(26px, 5vw, 72px);
}

.split--center {
  align-items: center;
}

.section--paper .eyebrow {
  color: var(--burgundy);
}

.section--paper p {
  color: #4d4650;
}

.copy-stack {
  max-width: 720px;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 28px;
}

.section-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.section-heading p:not(.eyebrow),
.muted {
  color: var(--muted);
}

.feature-grid,
.pricing,
.sponsor-grid,
.two-card-grid,
.listen-grid,
.program-grid {
  display: grid;
  gap: 16px;
}

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

.feature-grid article {
  padding: 22px;
  border-left: 4px solid var(--amber);
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
}

.section--paper .feature-grid article {
  background: #fff;
}

.feature-grid span {
  color: var(--amber);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  font-weight: 800;
}

.program-grid {
  grid-template-columns: repeat(4, 1fr);
}

.program-feature-card {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 280px;
  padding: 22px;
  color: var(--ink);
  background: linear-gradient(180deg, var(--navy-2), var(--navy));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(20, 18, 24, 0.14);
}

.program-card-photo-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 6px;
}

.program-card-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.program-card-photo--shannon {
  object-position: 48% 30%;
}

.program-card-photo--tyler {
  object-position: center 22%;
}

.program-card-photo--logo {
  object-position: center;
}

.program-feature-card span {
  color: var(--amber-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.program-feature-card p {
  color: rgba(255, 248, 235, 0.82);
}

.program-feature-card a,
.syndicated-card a {
  color: var(--amber-2);
  font-weight: 900;
  text-decoration: none;
}

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

.syndicated-card {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035)),
    rgba(255,255,255,0.055);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
}

.syndicated-card strong,
.syndicated-card span {
  display: block;
}

.syndicated-card strong {
  margin-bottom: 12px;
  font-size: 1.05rem;
  line-height: 1.15;
}

.syndicated-card span {
  position: relative;
  padding-top: 12px;
  color: var(--muted);
  line-height: 1.35;
}

.syndicated-card span::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 42px;
  height: 3px;
  content: "";
  background: var(--amber);
  border-radius: 999px;
}

.syndicated-card a {
  align-self: end;
  justify-self: start;
  margin-top: auto;
}

.program-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: clamp(24px, 5vw, 54px);
  align-items: start;
}

.program-detail p {
  max-width: 760px;
}

.program-meta-card {
  display: grid;
  gap: 10px;
  padding: 22px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(20, 18, 24, 0.12);
  position: sticky;
  top: 24px;
}

.host-photo-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 8px;
}

.host-photo-wrap--wide {
  aspect-ratio: 16 / 9;
}

.host-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.host-photo--shannon {
  object-position: 48% 28%;
}

.host-photo--tyler {
  object-position: center 22%;
}

.program-meta-card h3 {
  color: #1e1821;
}

.program-meta-card p {
  margin-bottom: 0;
  color: #4d4650;
}

.program-meta-card .btn {
  margin-top: 6px;
}

.page-hero {
  position: relative;
  min-height: clamp(330px, 44svh, 470px);
  display: grid;
  align-content: center;
  padding: clamp(52px, 7vw, 86px) clamp(18px, 5vw, 72px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(16, 24, 44, 0.96) 0%, rgba(16, 24, 44, 0.86) 48%, rgba(16, 24, 44, 0.58) 100%),
    linear-gradient(0deg, rgba(21, 19, 19, 0.72), rgba(21, 19, 19, 0.12)),
    url("../assets/images/southern-gospel-studio.png");
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--line);
}

.page-hero > * {
  max-width: 860px;
}

.page-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.12), transparent 70%);
}

.page-hero--programs::after {
  background: linear-gradient(90deg, var(--amber), transparent 70%);
}

.page-hero--lpfm::after {
  background: linear-gradient(90deg, #4a9eda, transparent 70%);
}

.page-hero--giving::after {
  background: linear-gradient(90deg, var(--burgundy), transparent 70%);
}

.page-hero--legal::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.22), transparent 70%);
}

.listen-page {
  display: grid;
  gap: 28px;
}

.listen-grid {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
}

.panel {
  padding: 22px;
}

.panel--warm {
  color: #1e1821;
  background: var(--paper);
  border-color: var(--dark-line);
}

.plain-list {
  padding-left: 1.2rem;
  color: inherit;
}

.plain-list li + li {
  margin-top: 8px;
}

.history-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.history-item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  background: rgba(255,255,255,0.055);
}

.history-item img {
  width: 58px;
  aspect-ratio: 1;
  border-radius: 4px;
  object-fit: cover;
}

.history-item strong,
.history-item span {
  display: block;
}

.history-item span {
  color: var(--muted);
  font-size: 0.92rem;
}

.schedule-page {
  background: linear-gradient(180deg, #151313 0%, #10182c 100%);
}

.schedule-shell {
  overflow: hidden;
}

.day-tabs {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background: var(--line);
}

.day-tabs button {
  min-height: 54px;
  color: var(--ink);
  border: 0;
  background: rgba(255,255,255,0.055);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.day-tabs button.is-active {
  color: #17131c;
  background: var(--amber);
}

.schedule-list {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.program {
  display: grid;
  grid-template-columns: minmax(145px, 190px) minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  background: rgba(255,255,255,0.055);
}

.program.is-live {
  border-color: rgba(85, 224, 125, 0.58);
  background: rgba(85, 224, 125, 0.1);
}

.program__time {
  color: var(--amber-2);
  font-weight: 900;
}

.program__title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  font-weight: 900;
}

.program p {
  margin-bottom: 0;
  color: var(--muted);
}

.program a {
  display: inline-block;
  margin-top: 10px;
  color: var(--amber-2);
  font-weight: 900;
  text-decoration: none;
}

.live-badge {
  padding: 3px 8px;
  color: #08230f;
  background: var(--green);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 900;
}

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

.pricing article {
  padding: 22px;
  color: var(--ink);
  background: linear-gradient(180deg, var(--navy-2), var(--navy));
}

.pricing span {
  color: var(--muted);
  font-weight: 900;
}

.pricing p {
  color: rgba(255, 248, 235, 0.88);
}

.pricing strong,
.price {
  display: block;
  margin: 14px 0 10px;
  color: var(--amber);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.5rem;
  line-height: 1;
}

.pricing--wide article {
  min-height: 240px;
}

.two-card-grid {
  grid-template-columns: repeat(2, 1fr);
}

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

.status-grid .panel {
  display: grid;
  align-content: start;
  gap: 8px;
}

.status-grid span {
  color: var(--amber-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.status-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.timeline {
  position: relative;
  display: grid;
  gap: 14px;
  max-width: 980px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 22px;
  width: 2px;
  background: rgba(242, 170, 59, 0.36);
}

.timeline article {
  position: relative;
  display: grid;
  gap: 6px;
  padding: 20px 20px 20px 66px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.055);
}

.timeline article::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 14px;
  width: 18px;
  aspect-ratio: 1;
  border: 4px solid var(--charcoal);
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 1px rgba(242, 170, 59, 0.6);
}

.timeline span {
  color: var(--amber-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.timeline p,
.goal-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.donate-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: 18px;
  align-items: stretch;
}

.donate-card {
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 24px 70px rgba(20, 18, 24, 0.12);
}

.donate-card h2 {
  max-width: 620px;
}

.donate-card p {
  max-width: 680px;
}

#donate-button-container {
  min-height: 64px;
  margin-top: 24px;
}

.donate-card--dark {
  color: var(--ink);
  background: linear-gradient(180deg, var(--navy-2), var(--navy));
  border-color: var(--line);
}

.donate-card--dark .eyebrow {
  color: var(--amber-2);
}

.donate-card--dark p,
.donate-card--dark .muted {
  color: rgba(255, 248, 235, 0.78);
}

.donate-card address {
  margin: 24px 0;
  color: var(--amber-2);
  font-style: normal;
  font-weight: 900;
  line-height: 1.7;
}

.sponsors {
  background: #151313;
}

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

.sponsor-grid article {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 220px;
  padding: 20px;
  text-align: center;
  background: var(--paper);
  border-color: var(--dark-line);
  backdrop-filter: none;
}

.sponsor-grid img {
  max-height: 94px;
  object-fit: contain;
  margin-bottom: 16px;
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.12));
}

.sponsor-grid img[src*="Impulse_Gift_Design"] {
  filter: invert(1);
}

.sponsor-grid strong {
  color: #1e1821;
}

.sponsor-grid span,
.sponsor-grid a {
  color: #6b6070;
  font-size: 0.92rem;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.8fr) minmax(0, 1fr);
  column-gap: clamp(32px, 5vw, 64px);
  padding: clamp(52px, 7vw, 80px) clamp(18px, 5vw, 72px) 0;
  color: var(--muted);
  background: #0a1020;
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: grid;
  gap: 16px;
  align-content: start;
}

.footer-brand__top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand__logo {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  object-fit: cover;
}

.footer-brand strong {
  display: block;
  color: var(--ink);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.footer-brand span {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-brand p {
  max-width: 300px;
  font-size: 0.92rem;
  line-height: 1.55;
  margin-bottom: 0;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 2px;
}

.footer-links > strong {
  display: block;
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.footer-links a {
  display: block;
  padding: 5px 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-links a:last-child {
  border-bottom: none;
}

.footer-links a:hover {
  color: var(--ink);
}

.footer-cta {
  display: grid;
  gap: 14px;
  align-content: start;
}

.footer-cta > strong {
  display: block;
  color: var(--ink);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.8rem;
  text-transform: uppercase;
  line-height: 1;
}

.footer-cta p {
  font-size: 0.92rem;
  line-height: 1.55;
  margin-bottom: 0;
}

.footer-cta .btn {
  justify-self: start;
}

.footer-doc {
  color: var(--amber-2);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(32px, 5vw, 52px);
  padding: 20px 0;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
}

.footer-bottom a {
  color: var(--amber-2);
  font-weight: 800;
  text-decoration: none;
}

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

.about-quote {
  margin: clamp(40px, 6vw, 72px) 0 0;
  padding: 28px 32px;
  border-left: 4px solid var(--burgundy);
  background: #fff;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.about-quote p {
  margin: 0 0 10px;
  color: #1e1821;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.about-quote cite {
  color: var(--burgundy);
  font-size: 0.78rem;
  font-weight: 900;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (prefers-reduced-motion: no-preference) {
  .feature-grid article,
  .program-feature-card,
  .syndicated-card,
  .pricing article,
  .panel {
    transition: transform 180ms ease, box-shadow 180ms ease;
  }

  .feature-grid article:hover,
  .program-feature-card:hover,
  .syndicated-card:hover,
  .pricing article:hover {
    transform: translateY(-4px);
    box-shadow: 0 36px 80px rgba(0, 0, 0, 0.44);
  }
}

@media (max-width: 1080px) {
  .home-hero,
  .split,
  .donate-grid,
  .listen-grid {
    grid-template-columns: 1fr;
  }

  .home-hero {
    min-height: auto;
  }

  .home-hero__player {
    max-width: 650px;
  }

  .feature-grid,
  .pricing,
  .sponsor-grid,
  .program-grid,
  .syndicated-grid,
  .status-grid,
  .goal-grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 760px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    background: rgba(16, 24, 44, 0.98);
    border: 1px solid var(--line);
    border-radius: var(--radius);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    border-radius: 6px;
  }

  .home-hero__media {
    background: var(--navy);
  }

  .home-hero__media::after {
    background: linear-gradient(180deg, rgba(16, 24, 44, 0.58) 0%, rgba(16, 24, 44, 0.9) 38%, rgba(21, 19, 19, 0.98) 100%);
  }

  .home-hero__slide {
    background-position: 58% center;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.35rem, 11.5vw, 4rem);
    text-wrap: auto;
    overflow-wrap: break-word;
  }

  h2 {
    max-width: 100%;
    font-size: clamp(2.2rem, 10.5vw, 3.2rem);
    text-wrap: auto;
    overflow-wrap: break-word;
  }

  .home-hero h1 {
    max-width: 12ch;
  }

  .page-hero h1 {
    max-width: 12ch;
  }

  .lead,
  .section-heading {
    max-width: 100%;
  }

  .radio-player,
  .radio-player--large {
    grid-template-columns: 1fr;
  }

  .player-art {
    max-width: 220px;
  }

  .signal-strip,
  .feature-grid,
  .pricing,
  .sponsor-grid,
  .program-grid,
  .syndicated-grid,
  .two-card-grid,
  .status-grid,
  .goal-grid {
    grid-template-columns: 1fr;
  }

  .day-tabs {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

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

  .day-tabs button {
    min-height: 46px;
    font-size: 0.86rem;
  }

  .schedule-list {
    padding: 14px;
  }

  .program {
    gap: 8px;
    padding: 14px;
  }


  .program-feature-card,
  .syndicated-card {
    min-width: 0;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 520px) {
  .site-footer {
    grid-template-columns: 1fr;
  }

  .brand__text span {
    display: none;
  }

  h2 {
    font-size: clamp(2rem, 10vw, 2.65rem);
  }

  .player-controls label {
    min-width: 100%;
  }
}
