:root {
  color-scheme: light;
  --blue: #0453a3;
  --blue-deep: #032f61;
  --blue-ink: #021e3d;
  --gold: #d6a83a;
  --gold-soft: #f4d57b;
  --white: #ffffff;
  --paper: #f6f9fd;
  --text: #14243b;
  --muted: #60738c;
  --line: rgba(4, 83, 163, 0.14);
  --shadow: 0 24px 70px rgba(3, 47, 97, 0.16);
  --radius: 8px;
  --max: 1180px;
  --header: 82px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 20px);
  background: #ffffff;
  forced-color-adjust: none;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  color: var(--text);
  background: #ffffff;
  color-scheme: light;
  forced-color-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

@media (prefers-color-scheme: dark) {
  :root,
  html {
    color-scheme: only light;
  }

  html,
  body {
    color: var(--text);
    background: #ffffff !important;
  }

  .site-header,
  .main-nav,
  .live-player,
  .program-image-wrap,
  .news-widget,
  .contact-panel,
  .contact-row,
  .about-network-card + .about-photo {
    background-color: #ffffff !important;
  }

  .live-section {
    background:
      linear-gradient(180deg, #ffffff 0%, #f6f9fd 100%) !important;
  }

  .about-section,
  .news-section {
    background: #ffffff !important;
  }

  .program-section {
    background:
      radial-gradient(circle at 14% 8%, rgba(214, 168, 58, 0.12), transparent 26%),
      linear-gradient(180deg, #f6f9fd 0%, #ffffff 100%) !important;
  }

  .section-heading h2 {
    color: var(--blue-ink) !important;
  }

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

  .about-copy p {
    color: #34465e !important;
  }

  .coverage-section .section-heading h2,
  .coverage-section .section-heading p {
    color: #ffffff !important;
  }

  .coverage-section .section-heading p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.84) !important;
  }
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(18px, 4vw, 52px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(4, 83, 163, 0.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 14px 36px rgba(3, 47, 97, 0.12);
  background: rgba(255, 255, 255, 0.98);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: clamp(98px, 12vw, 150px);
  aspect-ratio: 2.05 / 1;
  display: grid;
  place-items: center;
  border-radius: 8px;
  overflow: hidden;
  background: var(--blue);
  box-shadow: 0 12px 26px rgba(4, 83, 163, 0.22);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-text strong {
  font-size: clamp(0.9rem, 1.4vw, 1.02rem);
  color: var(--blue-deep);
  white-space: nowrap;
}

.brand-text small {
  margin-top: 4px;
  font-size: 0.72rem;
  color: var(--muted);
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(10px, 1.5vw, 22px);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--blue-ink);
}

.main-nav a {
  position: relative;
  padding: 10px 0;
  white-space: nowrap;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.28s var(--ease);
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.language-toggle {
  flex: 0 0 auto;
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  min-width: 78px;
  padding: 4px;
  border: 1px solid rgba(4, 83, 163, 0.16);
  border-radius: 999px;
  color: var(--blue);
  background: rgba(4, 83, 163, 0.06);
  cursor: pointer;
}

.language-toggle span {
  display: grid;
  place-items: center;
  min-height: 30px;
  padding: 0 9px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1;
  transition:
    color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.language-toggle span.is-active {
  color: var(--blue-ink);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: 0 8px 18px rgba(214, 168, 58, 0.24);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  background: var(--blue);
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.section-shell {
  position: relative;
  padding: clamp(76px, 9vw, 126px) clamp(18px, 5vw, 72px);
}

.live-section,
.about-section,
.program-section,
.news-section,
.contact-section {
  isolation: isolate;
}

.live-section > *,
.about-section > *,
.program-section > *,
.news-section > *,
.contact-section > * {
  position: relative;
  z-index: 1;
}

.live-section::before,
.about-section::before,
.program-section::before,
.news-section::before,
.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: #ffffff;
}

.live-section::before,
.program-section::before,
.contact-section::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(246, 249, 253, 0.99) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Crect width='24' height='24' fill='%23ffffff'/%3E%3C/svg%3E");
}

.about-section::before,
.news-section::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(255, 255, 255, 0.99)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Crect width='24' height='24' fill='%23ffffff'/%3E%3C/svg%3E");
}

.live-section .section-heading h2,
.about-section .section-heading h2,
.program-section .section-heading h2,
.news-section .section-heading h2,
.contact-section .section-heading h2 {
  color: var(--blue-ink) !important;
  -webkit-text-fill-color: var(--blue-ink);
}

.live-section .section-heading p:not(.eyebrow),
.program-section .section-heading p:not(.eyebrow),
.news-section .section-heading p:not(.eyebrow),
.contact-section .section-heading p:not(.eyebrow) {
  color: var(--muted) !important;
  -webkit-text-fill-color: var(--muted);
}

.about-copy p {
  color: #34465e !important;
  -webkit-text-fill-color: #34465e;
}

.hero {
  min-height: 88svh;
  padding-top: calc(var(--header) + clamp(44px, 7vw, 82px));
  display: grid;
  align-items: center;
  color: var(--white);
  background: var(--blue);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 24%, rgba(244, 213, 123, 0.28), transparent 30%),
    radial-gradient(circle at 12% 82%, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(135deg, #0453a3 0%, #032f61 58%, #021e3d 100%);
}

.hero-bg::before,
.hero-bg::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.hero-bg::before {
  width: 58vw;
  height: 58vw;
  min-width: 520px;
  min-height: 520px;
  right: -18vw;
  top: -22vw;
}

.hero-bg::after {
  width: 42vw;
  height: 42vw;
  min-width: 360px;
  min-height: 360px;
  left: -18vw;
  bottom: -22vw;
}

.hero-grid {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.72fr);
  align-items: center;
  gap: clamp(34px, 6vw, 82px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.hero h1,
.section-heading h2 {
  margin: 0;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 13ch;
  font-size: clamp(2.9rem, 6.8vw, 5.75rem);
  line-height: 1.02;
  text-wrap: balance;
  overflow-wrap: break-word;
}

.hero-subtitle {
  margin: 24px 0 0;
  font-size: clamp(1.28rem, 2.4vw, 2rem);
  font-weight: 700;
  color: var(--gold-soft);
}

.hero-text {
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.7vw, 1.16rem);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}

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

.btn-primary {
  color: var(--blue-ink);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: 0 18px 40px rgba(214, 168, 58, 0.28);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.gold-logo {
  width: auto;
  height: auto;
  max-width: 100%;
  aspect-ratio: 620 / 401;
  object-fit: contain;
}

.hero-visual {
  position: relative;
  isolation: isolate;
  width: 100%;
  margin: 0 auto;
}

.hero-portrait {
  position: relative;
  min-height: clamp(440px, 43vw, 570px);
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(244, 213, 123, 0.38);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.74) 33%, rgba(255, 255, 255, 0.12) 62%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
}

.hero-portrait::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: -1;
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(4, 83, 163, 0.08), rgba(2, 30, 61, 0.34)),
    radial-gradient(circle at 70% 12%, rgba(244, 213, 123, 0.36), transparent 28%);
}

.hero-orbit {
  position: absolute;
  width: 82%;
  aspect-ratio: 1;
  left: 50%;
  bottom: 72px;
  border: 1px solid rgba(244, 213, 123, 0.52);
  border-radius: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-person {
  position: absolute;
  left: 50%;
  bottom: 58px;
  width: min(94%, 470px);
  height: auto;
  transform: translateX(-50%);
  filter: drop-shadow(0 28px 34px rgba(0, 0, 0, 0.28));
}

.hero-visual-badge {
  position: absolute;
  left: clamp(16px, 4vw, 28px);
  right: clamp(16px, 4vw, 28px);
  bottom: clamp(16px, 3vw, 24px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 18px;
  border: 1px solid rgba(244, 213, 123, 0.32);
  border-radius: var(--radius);
  background: rgba(2, 30, 61, 0.82);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.hero-visual-badge span {
  color: var(--white);
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  font-weight: 800;
  line-height: 1;
}

.section-heading {
  width: min(100%, 780px);
  margin-bottom: clamp(28px, 5vw, 46px);
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading.center .eyebrow {
  justify-content: center;
}

.section-heading h2 {
  color: var(--blue-ink);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.05;
  text-wrap: balance;
}

.section-heading p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.8;
}

.live-section {
  background:
    linear-gradient(180deg, var(--white) 0%, var(--paper) 100%);
}

.live-layout {
  width: min(100%, 1120px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
}

.live-player {
  padding: clamp(8px, 1.8vw, 14px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.live-player iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 480px;
  border: 0;
  border-radius: 6px;
  background: #000;
}

.live-context,
.about-photo,
.news-photo,
.coverage-photo {
  margin: 0;
  border: 1px solid rgba(4, 83, 163, 0.13);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.live-context img,
.about-photo img,
.news-photo img,
.coverage-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-section {
  background:
    radial-gradient(circle at 50% 4%, rgba(4, 83, 163, 0.06), transparent 25%),
    var(--white);
}

.about-layout {
  width: min(100%, 1060px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(26px, 5vw, 54px);
  align-items: center;
}

.about-layout.centered {
  justify-content: center;
}

.about-media {
  display: grid;
  gap: 14px;
}

.about-network-card {
  margin: 0;
  padding: clamp(24px, 4vw, 34px);
  border-radius: var(--radius);
  border: 1px solid rgba(214, 168, 58, 0.28);
  background:
    radial-gradient(circle at 50% 20%, rgba(244, 213, 123, 0.26), transparent 48%),
    linear-gradient(145deg, #06498e, #032f61);
  box-shadow: var(--shadow);
}

.about-network-card img {
  width: min(100%, 360px);
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 28px rgba(0, 0, 0, 0.2));
}

.about-network-card figcaption {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(244, 213, 123, 0.36);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
  text-align: center;
}

.about-copy {
  display: grid;
  gap: 20px;
  max-width: 690px;
}

.about-copy p {
  margin: 0;
  color: #34465e;
  font-size: clamp(1rem, 1.35vw, 1.08rem);
  line-height: 1.92;
}

.program-section {
  background:
    radial-gradient(circle at 14% 8%, rgba(214, 168, 58, 0.12), transparent 26%),
    linear-gradient(180deg, var(--paper) 0%, var(--white) 100%);
}

.program-layout {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.58fr) minmax(300px, 0.62fr);
  gap: clamp(18px, 3vw, 30px);
  align-items: stretch;
}

.program-image-wrap {
  width: 100%;
  margin: 0;
  padding: clamp(8px, 1.6vw, 14px);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.program-image-wrap img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  object-fit: contain;
}

.program-carousel {
  position: relative;
  min-height: 100%;
  padding: 12px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 12px 10px;
  align-items: center;
  border-radius: var(--radius);
  border: 1px solid rgba(4, 83, 163, 0.13);
  background:
    radial-gradient(circle at 72% 8%, rgba(244, 213, 123, 0.22), transparent 32%),
    linear-gradient(145deg, #06498e, #032f61);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.carousel-viewport {
  position: relative;
  grid-column: 1 / -1;
  min-height: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.carousel-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateX(18px) scale(1.02);
  transition:
    opacity 480ms ease,
    transform 480ms ease;
  pointer-events: none;
}

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

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.carousel-slide.is-logo {
  padding: clamp(28px, 5vw, 52px);
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 233, 166, 0.25), transparent 46%),
    linear-gradient(145deg, #0757a7, #032c59);
}

.carousel-slide.is-logo img {
  width: min(82%, 300px);
  height: auto;
  max-height: 62%;
  object-fit: contain;
  filter: drop-shadow(0 20px 24px rgba(0, 0, 0, 0.18));
}

.carousel-control {
  position: relative;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: var(--white);
  background: rgba(3, 39, 78, 0.62);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.carousel-control:hover,
.carousel-control:focus-visible {
  border-color: rgba(244, 213, 123, 0.92);
  background: rgba(4, 83, 163, 0.92);
  transform: scale(1.05);
}

.carousel-control span {
  margin-top: -2px;
  font-size: 2rem;
  line-height: 1;
}

.carousel-prev {
  grid-column: 1;
  grid-row: 2;
  justify-self: start;
}

.carousel-next {
  grid-column: 3;
  grid-row: 2;
  justify-self: end;
}

.carousel-dots {
  z-index: 2;
  grid-column: 2;
  grid-row: 2;
  justify-self: center;
  display: flex;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(3, 39, 78, 0.62);
}

.carousel-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.44);
  cursor: pointer;
  transition:
    width 180ms ease,
    background 180ms ease;
}

.carousel-dots button.is-active {
  width: 24px;
  border-radius: 999px;
  background: var(--gold);
}

.news-section {
  background: var(--white);
}

.news-intro {
  width: min(100%, var(--max));
  margin: 0 auto clamp(24px, 4vw, 38px);
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(280px, 0.64fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
}

.news-intro .section-heading {
  margin: 0;
}

.news-photo {
  aspect-ratio: 16 / 9;
}

.news-widget {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(12px, 2vw, 18px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, rgba(4, 83, 163, 0.28), rgba(214, 168, 58, 0.38)) border-box;
  box-shadow: var(--shadow);
}

.news-widget iframe {
  width: 100%;
  border-radius: 6px;
}

.coverage-section {
  color: var(--white);
  background:
    radial-gradient(circle at 78% 16%, rgba(244, 213, 123, 0.2), transparent 26%),
    linear-gradient(145deg, var(--blue) 0%, var(--blue-deep) 52%, var(--blue-ink) 100%);
}

.coverage-section .section-heading h2,
.coverage-section .section-heading p {
  color: var(--white);
}

.coverage-section .section-heading p {
  color: rgba(255, 255, 255, 0.84);
}

.coverage-photo {
  width: min(100%, 880px);
  aspect-ratio: 16 / 7.5;
  margin: 0 auto clamp(26px, 5vw, 42px);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.18);
}

.coverage-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.coverage-card {
  min-height: 248px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 12px 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease);
  overflow: hidden;
}

.coverage-card:hover {
  transform: translateY(-5px);
  border-color: rgba(244, 213, 123, 0.54);
  background: rgba(255, 255, 255, 0.16);
}

.coverage-card span {
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 800;
}

.coverage-card h3 {
  margin: 0;
  font-size: clamp(1rem, 1.6vw, 1.24rem);
  line-height: 1.2;
}

.coverage-card > img {
  width: 100%;
  height: clamp(140px, 12vw, 170px);
  border-radius: 6px;
  object-fit: contain;
  margin-bottom: 16px;
  background: #043f7f;
}

.contact-section {
  background:
    radial-gradient(circle at 16% 8%, rgba(4, 83, 163, 0.1), transparent 28%),
    var(--paper);
}

.contact-panel {
  width: min(100%, 1040px);
  margin: 0 auto;
  padding: clamp(26px, 5vw, 58px);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 92% 12%, rgba(244, 213, 123, 0.2), transparent 26%),
    linear-gradient(145deg, var(--white), #f8fbff);
  box-shadow: var(--shadow);
}

.contact-board {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 18px;
  align-items: stretch;
}

.whatsapp-card {
  position: relative;
  min-height: 300px;
  display: grid;
  align-content: end;
  gap: 12px;
  padding: clamp(24px, 4vw, 34px);
  color: var(--white);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 86% 10%, rgba(244, 213, 123, 0.3), transparent 36%),
    linear-gradient(145deg, var(--blue), var(--blue-deep));
  box-shadow: 0 24px 60px rgba(4, 83, 163, 0.22);
  overflow: hidden;
}

.whatsapp-card::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -58px;
  top: -58px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.whatsapp-card span,
.contact-row span {
  margin: 0;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.whatsapp-card span,
.whatsapp-card strong,
.whatsapp-card small {
  color: var(--white);
}

.whatsapp-card strong {
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  line-height: 1.08;
}

.whatsapp-card small {
  width: fit-content;
  margin-top: 10px;
  padding: 12px 14px;
  border-radius: 8px;
  background: #1da851;
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

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

.contact-row {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 118px;
  padding: 18px;
  border: 1px solid rgba(4, 83, 163, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.contact-row p,
.contact-row a {
  margin: 5px 0 0;
  color: var(--blue-ink);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  font-weight: 800;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.contact-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--blue);
  background: rgba(4, 83, 163, 0.08);
}

.contact-icon.large {
  width: 58px;
  height: 58px;
  color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.12);
}

.contact-icon svg {
  width: 25px;
  height: 25px;
}

.contact-icon.large svg {
  width: 30px;
  height: 30px;
}

.contact-icon path,
.contact-icon circle,
.contact-icon rect {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(160px, 260px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(22px, 5vw, 58px);
  padding: clamp(38px, 6vw, 72px) clamp(20px, 5vw, 72px);
  color: var(--white);
  background: var(--blue-ink);
}

.site-footer img {
  width: min(100%, 230px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 34px rgba(0, 0, 0, 0.28));
}

.site-footer h2 {
  margin: 0 0 8px;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
}

.site-footer p {
  margin: 6px 0;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer small {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.62);
}

.site-footer .developer-credit {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.76rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: none;
}

.reveal[data-split] {
  opacity: 1;
  transform: none;
}

@media (max-width: 1120px) {
  .brand-text {
    display: none;
  }

  .main-nav {
    margin-left: 0;
    gap: 14px;
    font-size: 0.8rem;
  }

  .language-toggle {
    margin-left: 0;
  }

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

@media (max-width: 900px) {
  :root {
    --header: 74px;
  }

  .site-header {
    padding-inline: 18px;
    gap: 12px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: calc(var(--header) + 12px);
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 24px 64px rgba(3, 47, 97, 0.18);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.24s ease, transform 0.24s ease;
  }

  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    padding: 14px 12px;
    border-radius: 6px;
  }

  .main-nav a:hover,
  .main-nav a.is-active {
    color: var(--blue);
    background: rgba(4, 83, 163, 0.06);
  }

  .main-nav a::after {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .live-layout,
  .program-layout,
  .about-layout,
  .news-intro,
  .contact-board {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 100%;
  }

  .hero-visual {
    max-width: 520px;
  }

  .about-network-card {
    max-width: 520px;
  }

  .about-media {
    max-width: 620px;
    margin-inline: auto;
  }

  .contact-list {
    grid-template-columns: 1fr 1fr;
  }

  .live-player iframe {
    min-height: 340px;
  }

  .program-carousel {
    max-width: 620px;
    width: 100%;
    margin-inline: auto;
  }

  .carousel-viewport {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 680px) {
  .section-shell {
    padding-inline: 16px;
  }

  .site-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .brand {
    order: 1;
    flex: 0 0 auto;
    margin-right: auto;
  }

  .main-nav {
    order: 4;
    flex: none;
  }

  .brand-mark {
    width: 112px;
  }

  .language-toggle {
    order: 2;
    flex: 0 0 auto;
    min-width: 70px;
    margin-left: 0;
    justify-self: end;
  }

  .language-toggle span {
    min-height: 28px;
    padding-inline: 7px;
    font-size: 0.72rem;
  }

  .menu-toggle {
    order: 3;
    flex: 0 0 44px;
    justify-self: end;
  }

  .hero-grid,
  .hero-copy,
  .hero-text,
  .hero-subtitle {
    min-width: 0;
    max-width: 100%;
  }

  .hero-subtitle,
  .hero-text {
    overflow-wrap: break-word;
  }

  .hero {
    padding-top: calc(var(--header) + 36px);
  }

  .hero h1 {
    font-size: clamp(2.25rem, 10vw, 3rem);
  }

  html[lang="en"] .hero h1 {
    font-size: clamp(2.05rem, 9.4vw, 2.85rem);
    max-width: 11ch;
  }

  html[lang="en"] .hero-subtitle {
    font-size: clamp(1.08rem, 5.6vw, 1.42rem);
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .live-section,
  .about-section,
  .program-section,
  .news-section,
  .contact-section {
    color: var(--text) !important;
    background-color: #ffffff !important;
    background-image:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 253, 0.98)),
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3E%3Crect width='8' height='8' fill='%23ffffff'/%3E%3C/svg%3E") !important;
  }

  .about-section,
  .news-section,
  .contact-section {
    background-image:
      linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(255, 255, 255, 0.99)),
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3E%3Crect width='8' height='8' fill='%23ffffff'/%3E%3C/svg%3E") !important;
  }

  .live-section .section-heading h2,
  .about-section .section-heading h2,
  .program-section .section-heading h2,
  .news-section .section-heading h2,
  .contact-section .section-heading h2 {
    color: var(--blue-ink) !important;
  }

  .live-section .section-heading p:not(.eyebrow),
  .about-copy p,
  .program-section .section-heading p:not(.eyebrow),
  .news-section .section-heading p:not(.eyebrow),
  .contact-section .section-heading p:not(.eyebrow) {
    color: var(--muted) !important;
  }

  .about-network-card {
    background:
      radial-gradient(circle at 50% 20%, rgba(244, 213, 123, 0.26), transparent 48%),
      linear-gradient(145deg, #06498e, #032f61) !important;
  }

  .hero-portrait {
    min-height: 390px;
  }

  .hero-person {
    width: min(92%, 335px);
    bottom: 70px;
  }

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

  .coverage-card {
    min-height: 204px;
  }

  .coverage-card > img {
    height: 220px;
  }

  .contact-list {
    grid-template-columns: 1fr;
  }

  .whatsapp-card {
    min-height: 240px;
  }

  .contact-row {
    min-height: 96px;
  }

  .live-player {
    padding: 6px;
  }

  .live-player iframe {
    min-height: 260px;
  }

  .news-widget iframe {
    min-height: 420px;
  }

  .program-image-wrap {
    padding: 6px;
  }

  .program-image-wrap img {
    width: 100%;
  }

  .program-carousel {
    padding: 8px;
    grid-template-columns: 40px minmax(0, 1fr) 40px;
  }

  .carousel-viewport {
    aspect-ratio: 4 / 5;
  }

  .carousel-control {
    width: 38px;
    height: 38px;
  }

  .carousel-prev {
    left: auto;
  }

  .carousel-next {
    right: auto;
  }

  .site-footer {
    text-align: center;
  }

  .site-footer img {
    margin-inline: auto;
  }
}

@media (max-width: 420px) {
  .hero-text,
  .section-heading p:not(.eyebrow),
  .about-copy p {
    line-height: 1.72;
  }

  .live-player iframe {
    min-height: 220px;
  }

  .contact-panel {
    padding: 22px 16px;
  }
}
