:root {
  color-scheme: light;
  --ink: #111416;
  --muted: #596168;
  --paper: #f7f8f4;
  --panel: #ffffff;
  --coal: #091113;
  --teal: #00b7a8;
  --mint: #8de04f;
  --coral: #ff5a3d;
  --amber: #f7b538;
  --line: rgba(17, 20, 22, 0.12);
  --shadow: 0 24px 70px rgba(5, 12, 14, 0.22);
  --max: 1180px;
  --header: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", Arial, sans-serif;
  line-height: 1.55;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.sprite {
  display: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  height: var(--header);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 0 clamp(18px, 4vw, 52px);
  color: #fff;
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(8, 17, 18, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 42px;
  padding: 7px 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
}

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

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 18px;
  letter-spacing: 0;
}

.brand small {
  margin-top: -3px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: var(--mint);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-button {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.icon-button svg,
.button svg,
.stage-copy a svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex: 0 0 auto;
}

.icon-button[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  padding: 4px 8px;
  border-radius: 6px;
  color: var(--ink);
  background: #fff;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.icon-button[data-tooltip]:hover::after,
.icon-button[data-tooltip]:focus-visible::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.menu-toggle {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1;
}

.button.compact {
  min-height: 42px;
  color: #101416;
  background: #fff;
}

.button.primary {
  color: #071011;
  background: var(--mint);
  box-shadow: 0 18px 36px rgba(141, 224, 79, 0.24);
}

.button.primary.dark {
  background: var(--coal);
  color: #fff;
  box-shadow: none;
}

.button.ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.09);
}

.hero {
  position: relative;
  min-height: 82vh;
  max-height: 820px;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  z-index: -2;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(4, 9, 10, 0.9) 0%, rgba(4, 9, 10, 0.62) 39%, rgba(4, 9, 10, 0.08) 73%),
    linear-gradient(0deg, rgba(4, 9, 10, 0.74) 0%, rgba(4, 9, 10, 0.08) 46%);
}

.hero-content {
  width: min(var(--max), calc(100% - 40px));
  min-height: 82vh;
  max-height: 820px;
  margin: 0 auto;
  padding-top: calc(var(--header) + 54px);
  padding-bottom: 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--mint);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: #057f75;
}

.hero h1 {
  margin: 0;
}

.hero-logo {
  width: min(520px, 78vw);
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.34));
}

.hero-logo img {
  width: 100%;
  height: auto;
  padding: clamp(12px, 1.8vw, 16px) clamp(16px, 2.2vw, 22px);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
}

.hero-name {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(26px, 4vw, 54px);
  font-weight: 900;
  line-height: 1.05;
}

.hero-copy {
  width: min(590px, 100%);
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(17px, 1.9vw, 22px);
  word-break: keep-all;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-rundown {
  position: absolute;
  right: clamp(18px, 4vw, 58px);
  bottom: 36px;
  width: min(350px, calc(100% - 36px));
  padding: 20px;
  border-left: 4px solid var(--coral);
  color: #fff;
  background: rgba(4, 9, 10, 0.48);
  backdrop-filter: blur(12px);
}

.hero-rundown strong {
  display: block;
  margin-top: 10px;
  font-size: 22px;
}

.hero-rundown p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.72);
  word-break: keep-all;
}

.live-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
}

.live-dot::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 8px rgba(255, 90, 61, 0.15);
}

.signal-bars {
  display: flex;
  align-items: end;
  gap: 4px;
  height: 38px;
  margin-top: 14px;
}

.signal-bars span {
  display: block;
  width: 8px;
  border-radius: 3px 3px 0 0;
  background: var(--mint);
  animation: pulseBar 900ms ease-in-out infinite alternate;
}

.signal-bars span:nth-child(1) { height: 11px; animation-delay: 0ms; }
.signal-bars span:nth-child(2) { height: 18px; animation-delay: 110ms; }
.signal-bars span:nth-child(3) { height: 28px; animation-delay: 220ms; }
.signal-bars span:nth-child(4) { height: 20px; animation-delay: 330ms; }
.signal-bars span:nth-child(5) { height: 34px; animation-delay: 440ms; }

.ticker {
  overflow: hidden;
  background: var(--coal);
  color: #fff;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.ticker span {
  display: inline-flex;
  align-items: center;
  min-height: 56px;
  padding: 0 28px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
  white-space: nowrap;
}

.ticker span::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 12px;
  border-radius: 50%;
  background: var(--amber);
}

.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(76px, 10vw, 118px) 0;
}

.section-heading {
  width: min(690px, 100%);
  margin-bottom: 34px;
}

.featured-heading {
  width: min(980px, 100%);
}

.section-heading.wide {
  width: min(920px, 100%);
}

.program-heading h2 {
  white-space: nowrap;
  font-size: clamp(30px, 4vw, 56px);
}

.partner-heading h2 {
  white-space: nowrap;
  font-size: clamp(29px, 3.8vw, 54px);
}

.section-heading h2,
.season-copy h2,
.contact-strip h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 62px);
  line-height: 1.08;
  letter-spacing: 0;
  word-break: keep-all;
}

.featured-title {
  white-space: nowrap;
  font-size: clamp(30px, 4vw, 56px);
}

.section-heading p:not(.eyebrow),
.season-copy p:not(.eyebrow),
.contact-strip p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
  word-break: keep-all;
}

.watch-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(280px, 0.75fr);
  gap: 22px;
  align-items: stretch;
}

.channel-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--coal);
  color: #fff;
  box-shadow: var(--shadow);
}

.stage-media {
  position: relative;
  min-height: 380px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.16)),
    url("assets/hero-lure-fishing.png") center / cover;
}

.play-disc {
  position: absolute;
  left: 28px;
  bottom: 28px;
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  color: #071011;
  background: var(--mint);
  box-shadow: 0 18px 40px rgba(141, 224, 79, 0.28);
}

.play-disc svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.stage-label {
  position: absolute;
  left: 108px;
  bottom: 43px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.stage-copy {
  display: flex;
  flex-direction: column;
  justify-content: end;
  min-height: 380px;
  padding: 28px;
  background:
    radial-gradient(circle at 15% 10%, rgba(0, 183, 168, 0.18), transparent 32%),
    linear-gradient(180deg, #11191b 0%, #071011 100%);
}

.tag {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 6px;
  color: #061111;
  background: var(--mint);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.tag.orange {
  background: var(--coral);
  color: #fff;
}

.tag.green {
  background: var(--teal);
  color: #fff;
}

.stage-copy h3 {
  margin: 16px 0 0;
  font-size: 30px;
}

.stage-copy p {
  margin: 10px 0 22px;
  color: rgba(255, 255, 255, 0.68);
  word-break: keep-all;
}

.stage-copy a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  color: var(--mint);
  font-weight: 900;
}

.spotlight-list {
  position: relative;
  min-height: 478px;
  overflow: hidden;
  border-radius: 8px;
}

.spotlight-list::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    #f5f6f2;
  border: 1px solid var(--line);
}

.spotlight {
  position: absolute;
  inset: 0 0 48px;
  min-height: 150px;
  padding: 0;
  border-radius: 8px;
  background: #071011;
  border: 1px solid transparent;
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity 320ms ease, transform 320ms ease;
}

.spotlight.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.spotlight-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spotlight-copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 24px;
  background: linear-gradient(0deg, rgba(4, 10, 11, 0.9), rgba(4, 10, 11, 0.14) 58%, rgba(4, 10, 11, 0.02));
}

.spotlight span {
  color: #057f75;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.spotlight strong {
  display: block;
  margin-top: 10px;
  font-size: 22px;
  color: #fff;
}

.spotlight p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.76);
  word-break: keep-all;
}

.spotlight.accent {
  background: #111416;
}

.spotlight.accent span {
  color: var(--coral);
}

.spotlight.green {
  background: #0e1714;
}

.spotlight.green span {
  color: var(--mint);
}

.spotlight-pager {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
}

.spotlight-dot {
  width: 34px;
  height: 6px;
  border: 0;
  border-radius: 999px;
  background: rgba(17, 20, 22, 0.18);
  cursor: pointer;
}

.spotlight-dot.is-active {
  background: var(--teal);
}

.programs {
  padding-top: 20px;
}

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

.program-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
}

.program-card.large {
  grid-column: span 2;
}

.program-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.program-card > div:not(.text-only) {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px;
  color: #fff;
  background: linear-gradient(0deg, rgba(3, 8, 9, 0.92), rgba(3, 8, 9, 0.02));
}

.program-card h3 {
  margin: 14px 0 0;
  font-size: 28px;
  line-height: 1.1;
}

.program-card p {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.76);
  word-break: keep-all;
}

.dark-card {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(0, 183, 168, 0.2), transparent 36%),
    #101416;
}

.amber-card {
  grid-column: span 2;
  color: #14110b;
  background:
    linear-gradient(145deg, rgba(247, 181, 56, 0.78), rgba(255, 90, 61, 0.88)),
    #f7b538;
}

.text-only {
  position: relative;
  display: flex;
  min-height: 360px;
  padding: 24px;
  flex-direction: column;
  justify-content: end;
}

.dark-card p {
  color: rgba(255, 255, 255, 0.7);
}

.amber-card p {
  color: rgba(20, 17, 11, 0.72);
}

.season-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(260px, 360px);
  align-items: center;
  gap: clamp(24px, 5vw, 48px);
  padding: clamp(72px, 9vw, 104px) clamp(20px, 6vw, 72px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(5, 12, 13, 0.82), rgba(5, 12, 13, 0.58)),
    url("assets/underwater-strike.png") center / cover;
}

.season-copy {
  width: min(650px, 100%);
}

.season-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}

.season-tabs {
  display: grid;
  gap: 8px;
}

.season-tab {
  min-width: 118px;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.07);
  cursor: pointer;
  font-weight: 900;
}

.season-tab.is-active {
  color: #061111;
  background: var(--mint);
}

.season-panel {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 430px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
}

.season-media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #dbe2e2;
}

.season-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.season-media-tag {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: #061111;
  background: rgba(255, 255, 255, 0.92);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.season-panel-body {
  padding: 22px 26px 26px;
}

.season-panel-body strong {
  display: block;
  font-size: 25px;
  line-height: 1.2;
  word-break: keep-all;
}

.season-panel-body p {
  margin: 12px 0 22px;
  color: var(--muted);
  word-break: keep-all;
}

.season-species {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
}

.season-species span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  color: #0a1718;
  background: #d8f4cf;
  font-size: 13px;
  font-weight: 900;
}

.season-detail {
  margin-top: 0;
  margin-bottom: 20px;
  color: #394347;
  font-size: 15px;
  line-height: 1.6;
}

.season-panel-body a {
  color: #057f75;
  font-weight: 900;
}

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

.partner-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-radius: 8px;
  background: #091113;
  box-shadow: var(--shadow);
}

.partner-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partner-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 24px;
  background: linear-gradient(0deg, rgba(4, 10, 11, 0.9), rgba(4, 10, 11, 0.16) 58%, rgba(4, 10, 11, 0.04));
}

.partner-grid span {
  color: var(--coral);
  font-size: 13px;
  font-weight: 900;
}

.partner-grid h3 {
  margin: 12px 0 0;
  font-size: 25px;
  color: #fff;
}

.partner-grid p {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.78);
  word-break: keep-all;
}

.contact-strip {
  display: grid;
  grid-template-columns: minmax(220px, 340px) minmax(0, 1fr);
  grid-template-areas:
    "media copy"
    "media action";
  align-items: start;
  gap: clamp(20px, 4vw, 42px);
  padding: clamp(34px, 5vw, 58px) clamp(20px, 6vw, 72px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(255, 90, 61, 0.96), rgba(255, 90, 61, 0.88)),
    var(--coral);
}

.contact-strip .eyebrow,
.contact-strip p {
  color: rgba(255, 255, 255, 0.82);
}

.contact-strip h2 {
  color: #fff;
}

.contact-media {
  grid-area: media;
  overflow: hidden;
  height: 160px;
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(5, 12, 14, 0.2);
}

.contact-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-copy {
  grid-area: copy;
  min-width: 0;
}

.contact-title {
  display: flex;
  align-items: center;
  gap: 18px;
  width: min(100%, 760px);
}

.contact-title img {
  width: clamp(118px, 15vw, 180px);
  height: auto;
  padding: 9px 11px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  flex: 0 0 auto;
}

.contact-title span {
  min-width: 0;
  font-size: clamp(28px, 4.2vw, 60px);
  line-height: 1.04;
}

.contact-copy > p:last-child {
  max-width: 34ch;
}

.contact-action {
  grid-area: action;
  justify-self: start;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 6vw, 72px);
  color: rgba(255, 255, 255, 0.7);
  background: var(--coal);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.site-footer p:last-child {
  flex: 1;
  text-align: right;
  white-space: nowrap;
}

.footer-meta {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: nowrap;
  gap: 10px;
}

.footer-meta span {
  display: inline;
}

.footer-meta span + span::before {
  content: "|";
  margin-right: 10px;
  color: rgba(255, 255, 255, 0.42);
}

.site-footer strong {
  color: #fff;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  white-space: nowrap;
}

.footer-brand img {
  width: 86px;
  height: auto;
  padding: 6px 7px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.94);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes pulseBar {
  from {
    opacity: 0.55;
    transform: scaleY(0.74);
  }
  to {
    opacity: 1;
    transform: scaleY(1);
  }
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .menu-toggle {
    display: inline-grid;
    justify-self: end;
  }

  .site-nav {
    position: fixed;
    top: var(--header);
    left: 16px;
    right: 16px;
    display: none;
    padding: 18px;
    border-radius: 8px;
    background: rgba(8, 17, 18, 0.96);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .site-nav {
    display: grid;
    justify-items: start;
  }

  .header-actions {
    justify-self: end;
  }

  .watch-grid,
  .channel-stage,
  .season-band {
    grid-template-columns: 1fr;
  }

  .spotlight-list {
    min-height: 190px;
  }

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

@media (max-width: 720px) {
  :root {
    --header: 68px;
  }

  .site-header {
    gap: 10px;
    padding: 0 14px;
  }

  .brand-logo {
    width: 76px;
    height: 38px;
    padding: 6px 7px;
  }

  .brand small,
  .header-actions .button {
    display: none;
  }

  .hero {
    min-height: 78vh;
  }

  .hero-image {
    object-position: 63% center;
  }

  .hero-content {
    width: min(100% - 32px, var(--max));
    min-height: 78vh;
    padding-top: calc(var(--header) + 38px);
    padding-bottom: 100px;
  }

  .hero-logo {
    width: min(250px, 72vw);
  }

  .hero-logo img {
    padding: 9px 12px;
    border-radius: 12px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-actions {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .hero-rundown {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
    padding: 16px;
  }

  .hero-rundown strong {
    font-size: 18px;
  }

  .hero-rundown p,
  .signal-bars {
    display: none;
  }

  .section {
    width: min(100% - 32px, var(--max));
    padding: 64px 0;
  }

  .section-heading h2,
  .season-copy h2,
  .contact-strip h2 {
    font-size: 34px;
  }

  .featured-title {
    white-space: normal;
  }

  .program-heading h2 {
    white-space: normal;
  }

  .partner-heading h2 {
    white-space: normal;
  }

  .stage-media,
  .stage-copy {
    min-height: 260px;
  }

  .spotlight-list,
  .program-grid,
  .partner-grid {
    grid-template-columns: 1fr;
  }

  .program-card.large {
    grid-column: auto;
  }

  .amber-card {
    grid-column: auto;
  }

  .program-card,
  .text-only {
    min-height: 310px;
  }

  .season-band {
    padding: 64px 16px;
  }

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

  .season-tab {
    min-width: 0;
  }

  .contact-strip,
  .site-footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-media {
    width: 100%;
    height: 180px;
  }

  .contact-title {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .contact-title img {
    width: 88px;
    padding: 7px 9px;
  }

  .contact-title span {
    font-size: 0.96em;
    line-height: 1.06;
  }

  .contact-copy > p:last-child {
    max-width: none;
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.65;
  }

  .contact-strip .button {
    width: 100%;
    min-height: 48px;
  }

  .site-footer p:last-child {
    text-align: left;
    white-space: normal;
    word-break: keep-all;
  }

  .site-footer {
    gap: 12px;
    padding: 18px 16px 20px;
  }

  .footer-brand {
    gap: 10px;
  }

  .footer-brand img {
    width: 60px;
    padding: 5px 6px;
  }

  .footer-brand strong {
    font-size: 13px;
    line-height: 1.2;
  }

  .footer-meta {
    display: grid;
    gap: 4px;
    font-size: 12px;
    line-height: 1.6;
  }

  .footer-meta span + span::before {
    content: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
