:root {
  --bg: #fff7f2;
  --surface: #ffffff;
  --surface-muted: #fff1e6;
  --text: #131313;
  --text-soft: #5b5b5b;
  --primary: #d7263d;
  --primary-dark: #af1730;
  --secondary: #148a42;
  --accent: #f28f1d;
  --border: rgba(19, 19, 19, 0.08);
  --shadow: 0 22px 60px rgba(18, 18, 18, 0.12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --max-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(242, 143, 29, 0.18), transparent 20%),
    radial-gradient(circle at left center, rgba(20, 138, 66, 0.12), transparent 25%),
    var(--bg);
  line-height: 1.6;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 2rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(215, 38, 61, 0.1);
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.eyebrow::before {
  content: "";
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 0 rgba(215, 38, 61, 0.5);
  animation: pulse 1.8s infinite;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(255, 247, 242, 0.88);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-weight: 800;
}

.brand img {
  width: 180px;
  max-width: 42vw;
}

.brand small {
  display: block;
  color: var(--text-soft);
  font-size: 0.82rem;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
}

.site-nav {
  position: fixed;
  inset: 82px 1rem auto 1rem;
  display: none;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
}

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

.site-nav a {
  padding: 0.85rem 1rem;
  border-radius: 14px;
  font-weight: 600;
}

.site-nav a:hover,
.site-nav a.is-active {
  background: rgba(215, 38, 61, 0.08);
  color: var(--primary);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 4rem;
}

.home-slider {
  position: relative;
  overflow: hidden;
  margin-top: 1rem;
  padding: 0 1rem;
}

.home-slider__track {
  position: relative;
  min-height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.home-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  padding: 2rem;
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.home-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.home-slide--listen {
  background:
    linear-gradient(135deg, rgba(215, 38, 61, 0.92), rgba(242, 143, 29, 0.78)),
    #2b1111;
}

.home-slide--advertise {
  background:
    linear-gradient(135deg, rgba(20, 138, 66, 0.92), rgba(215, 38, 61, 0.72)),
    #102919;
}

.home-slide--programs {
  background:
    linear-gradient(135deg, rgba(19, 19, 19, 0.9), rgba(215, 38, 61, 0.82)),
    #1a1a1a;
}

.home-slide__inner {
  width: min(var(--max-width), 100%);
  margin: 0 auto;
}

.home-slide__inner p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.86);
}

.home-slider__controls {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 2;
  display: flex;
  gap: 0.75rem;
}

.slider-control {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.page-banner {
  padding: 1rem 0 0;
}

.page-banner--full {
  padding-top: 0;
}

.page-banner--full .container {
  width: 100%;
}

.page-banner--full .banner-space {
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  padding-left: max(1rem, calc((100vw - var(--max-width)) / 2 + 1rem));
  padding-right: max(1rem, calc((100vw - var(--max-width)) / 2 + 1rem));
}

.banner-space,
.image-ad-space {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.banner-space {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(215, 38, 61, 0.08), rgba(242, 143, 29, 0.1)),
    #fff;
}

.banner-space__copy h2,
.image-ad-space__copy h2 {
  margin: 0.35rem 0;
}

.banner-space__meta {
  color: var(--text-soft);
}

.image-ad-space {
  overflow: hidden;
}

.image-ad-space__visual {
  min-height: 220px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-md);
  background:
    linear-gradient(145deg, rgba(20, 138, 66, 0.9), rgba(215, 38, 61, 0.9)),
    #222;
  color: #fff;
  text-align: center;
  padding: 1.5rem;
}

.image-ad-space__visual strong {
  display: block;
  font-size: clamp(1.5rem, 4vw, 2.3rem);
}

.image-ad-space__visual span {
  display: inline-flex;
  margin-top: 0.5rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.6;
}

.hero::before {
  width: 300px;
  height: 300px;
  background: rgba(215, 38, 61, 0.12);
  right: -60px;
  top: -40px;
}

.hero::after {
  width: 220px;
  height: 220px;
  background: rgba(20, 138, 66, 0.1);
  left: -40px;
  bottom: 20px;
}

.hero-grid,
.split-grid,
.contact-grid,
.advert-grid,
.story-grid {
  display: grid;
  gap: 1.5rem;
}

.hero-card,
.glass-card,
.news-card,
.host-card,
.ad-card,
.stats-card,
.contact-card,
.program-card,
.listen-panel,
.package-card,
.info-card,
.day-panel,
.form-card,
.schedule-wrap,
.about-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 243, 0.96)),
    #fffdfb;
  border: 1px solid rgba(255, 255, 255, 0.98);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.news-card,
.host-card,
.ad-card,
.stats-card,
.contact-card,
.program-card,
.listen-panel,
.package-card,
.info-card,
.day-panel,
.form-card,
.schedule-wrap,
.about-card {
  position: relative;
}

.news-card::before,
.host-card::before,
.ad-card::before,
.stats-card::before,
.contact-card::before,
.program-card::before,
.listen-panel::before,
.package-card::before,
.info-card::before,
.day-panel::before,
.form-card::before,
.schedule-wrap::before,
.about-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0));
  pointer-events: none;
}

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

.hero-copy h1,
.page-hero h1 {
  margin: 1rem 0;
  font-size: clamp(2.4rem, 4vw, 4.8rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero-copy p,
.page-hero p {
  max-width: 620px;
  color: var(--text-soft);
  font-size: 1.08rem;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.btn,
.btn-outline,
.btn-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn {
  background: linear-gradient(135deg, var(--primary), #ff5a46);
  color: #fff;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}

.btn-light {
  background: var(--surface);
  color: var(--primary);
}

.btn:hover,
.btn-outline:hover,
.btn-light:hover {
  transform: translateY(-2px);
}

.hero-stats,
.stats-grid,
.info-grid,
.news-grid,
.hosts-grid,
.ad-grid,
.package-grid {
  display: grid;
  gap: 1rem;
  align-items: stretch;
}

.stats-card,
.hero-card {
  padding: 1.4rem;
}

.hero-card {
  padding: 1.6rem;
  background:
    linear-gradient(160deg, rgba(215, 38, 61, 0.95), rgba(20, 138, 66, 0.88)),
    var(--surface);
  color: #fff;
  min-height: 100%;
  display: flex;
}

.hero-card .player-mini {
  display: grid;
  gap: 0.85rem;
  width: 100%;
}

.wave-bars {
  display: flex;
  align-items: flex-end;
  gap: 0.45rem;
  min-height: 60px;
}

.wave-bars span {
  width: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  animation: wave 1.2s ease-in-out infinite alternate;
}

.wave-bars span:nth-child(1) { height: 24px; animation-delay: 0.1s; }
.wave-bars span:nth-child(2) { height: 48px; animation-delay: 0.3s; }
.wave-bars span:nth-child(3) { height: 32px; animation-delay: 0.5s; }
.wave-bars span:nth-child(4) { height: 58px; animation-delay: 0.7s; }
.wave-bars span:nth-child(5) { height: 40px; animation-delay: 0.9s; }

.status-text,
.muted {
  color: var(--text-soft);
}

.hero-card .status-text,
.hero-card .muted {
  color: rgba(255, 255, 255, 0.84);
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(215, 38, 61, 0.12);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-card .live-pill {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.live-pill::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: currentColor;
}

.page-hero {
  padding: 4rem 0 2rem;
}

.page-hero__card {
  padding: 2rem;
  background:
    linear-gradient(135deg, rgba(215, 38, 61, 0.95), rgba(242, 143, 29, 0.94)),
    var(--surface);
  color: #fff;
}

.page-hero__card p {
  color: rgba(255, 255, 255, 0.84);
}

.schedule-wrap,
.form-card,
.listen-panel,
.day-panel,
.about-card,
.contact-card,
.package-card {
  padding: 1.5rem;
}

.section-heading > *:last-child,
.hero-copy > *:last-child,
.banner-space__copy > *:last-child,
.image-ad-space__copy > *:last-child,
.player-mini > *:last-child,
.footer-grid > div > *:last-child {
  margin-bottom: 0;
}

.table-wrap {
  overflow-x: auto;
}

.schedule-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.schedule-tab {
  padding: 0.75rem 1rem;
  border: 0;
  border-radius: 999px;
  background: rgba(20, 138, 66, 0.08);
  color: var(--secondary);
  cursor: pointer;
  font-weight: 700;
}

.schedule-tab.active {
  background: var(--secondary);
  color: #fff;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
}

.schedule-table th,
.schedule-table td {
  padding: 1rem 0.85rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

.schedule-table th {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.schedule-show {
  display: grid;
  gap: 0.35rem;
}

.schedule-tag {
  display: inline-flex;
  width: fit-content;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  background: rgba(242, 143, 29, 0.14);
  color: #a35600;
  font-size: 0.8rem;
  font-weight: 700;
}

.schedule-table tr.is-live,
.program-card.is-live {
  background: rgba(215, 38, 61, 0.05);
}

.program-grid {
  display: grid;
  gap: 1rem;
  align-items: stretch;
}

.day-panel .section-heading {
  margin-bottom: 1.25rem;
}

.day-panel .section-heading h2 {
  color: var(--secondary);
}

.program-card h3,
.news-card h3,
.host-card h3,
.package-card h3,
.listen-panel h2,
.contact-card h3 {
  margin-bottom: 0.5rem;
}

.program-card__meta,
.news-meta,
.card-topline {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.program-card {
  padding: 1.35rem;
  gap: 0.7rem;
  overflow: visible;
}

.program-card h3,
.program-card p,
.program-card__meta span {
  margin: 0;
  overflow-wrap: anywhere;
}

.program-card p {
  line-height: 1.5;
}

.program-card .muted {
  font-size: 0.95rem;
}

.news-card,
.host-card,
.ad-card,
.info-card {
  padding: 1.35rem;
}

.news-card,
.host-card,
.ad-card,
.stats-card,
.contact-card,
.program-card,
.listen-panel,
.package-card,
.info-card,
.day-panel,
.form-card,
.schedule-wrap,
.about-card {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  height: 100%;
}

.news-card > *,
.host-card > *,
.ad-card > *,
.stats-card > *,
.contact-card > *,
.program-card > *,
.listen-panel > *,
.package-card > *,
.info-card > *,
.day-panel > *,
.form-card > *,
.schedule-wrap > *,
.about-card > *,
.hero-card > * {
  position: relative;
  z-index: 1;
}

.news-card .category,
.ad-slot {
  display: inline-flex;
  width: fit-content;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(215, 38, 61, 0.08);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
}

.host-avatar {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  color: #fff;
  font-weight: 800;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.ad-card.highlight,
.package-card.highlight {
  border: 1px solid rgba(215, 38, 61, 0.22);
  background:
    linear-gradient(180deg, rgba(215, 38, 61, 0.05), rgba(255, 255, 255, 0.95)),
    #fff;
}

.rate-list,
.contact-list,
.feature-list {
  display: grid;
  gap: 0.8rem;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.rate-list li,
.contact-list li,
.feature-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--border);
}

.contact-list li {
  justify-content: flex-start;
  align-items: baseline;
  flex-wrap: wrap;
}

.contact-list li > :first-child {
  min-width: 88px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  font-weight: 700;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.form-grid .btn {
  width: 100%;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.site-footer {
  padding: 3rem 0 7.5rem;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  gap: 1rem;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-grid h3,
.footer-grid p {
  margin: 0;
}

.footer-note {
  color: var(--text-soft);
}

.contact-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  align-items: center;
}

.contact-inline a {
  white-space: nowrap;
}

.player-bar {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 50;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(19, 19, 19, 0.92);
  color: #fff;
  backdrop-filter: blur(20px);
}

.player-bar__inner {
  display: grid;
  gap: 1rem;
  padding: 1rem 0;
}

.player-bar__controls {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

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

.player-bar .status-text,
.player-bar .muted {
  color: rgba(255, 255, 255, 0.74);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(215, 38, 61, 0.45);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(215, 38, 61, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(215, 38, 61, 0);
  }
}

@keyframes wave {
  from {
    transform: scaleY(0.75);
  }
  to {
    transform: scaleY(1.1);
  }
}

@media (min-width: 700px) {
  .hero-grid,
  .split-grid,
  .contact-grid,
  .advert-grid,
  .story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  .news-grid,
  .hosts-grid,
  .ad-grid,
  .stats-grid,
  .info-grid,
  .package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .home-slide {
    padding: 3rem 2rem;
  }

  .banner-space,
  .image-ad-space {
    grid-template-columns: 1.2fr auto;
    align-items: center;
  }

  .image-ad-space__visual {
    min-width: 280px;
  }

  .player-bar__inner {
    grid-template-columns: 1.3fr auto;
    align-items: center;
  }
}

@media (min-width: 980px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    inset: auto;
    padding: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
  }

  .site-nav a {
    padding: 0.65rem 0.95rem;
  }

  .hero-grid {
    grid-template-columns: 1.25fr 0.9fr;
    align-items: center;
  }

  .news-grid,
  .hosts-grid,
  .ad-grid,
  .stats-grid,
  .package-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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