/* ==========================================================================
   Legacy Communications Inc. — Global Stylesheet
   ========================================================================== */

:root {
  --navy: #0A1628;
  --navy-light: #101f38;
  --navy-lighter: #16273f;
  --ember: #C0392B;
  --ember-light: #E05346;
  --gold: #F0A500;
  --gold-light: #FFC233;
  --white: #FFFFFF;
  --off-white: #F5F6F8;
  --gray-100: #E7E9ED;
  --gray-300: #B7BDC8;
  --gray-500: #7B8494;
  --gray-700: #444C5A;
  --text-dark: #101418;

  --font-head: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1240px;
  --radius: 8px;
  --shadow-sm: 0 2px 10px rgba(10, 22, 40, 0.08);
  --shadow-md: 0 10px 30px rgba(10, 22, 40, 0.15);
  --shadow-lg: 0 20px 50px rgba(10, 22, 40, 0.25);
  --transition: 0.25s ease;
}

/* ---------- Reset ---------- */
* , *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--off-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.15;
  color: var(--navy);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { position: relative; }

.section-pad { padding: 90px 0; }

@media (max-width: 768px) {
  .section-pad { padding: 60px 0; }
}

/* ---------- Eyebrow / Kicker ---------- */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 14px;
}
.kicker::before {
  content: "";
  width: 30px;
  height: 3px;
  background: var(--gold);
  display: inline-block;
}

.section-head { max-width: 700px; margin-bottom: 50px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 16px; }
.section-head p { color: var(--gray-700); font-size: 17px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 34px;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--ember);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(192, 57, 43, 0.35);
}
.btn-primary:hover { background: var(--ember-light); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(192, 57, 43, 0.45); }

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 6px 20px rgba(240, 165, 0, 0.35);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }

.btn-sm { padding: 11px 22px; font-size: 12px; }

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow var(--transition), padding var(--transition);
}
.site-header.scrolled { box-shadow: 0 6px 24px rgba(0,0,0,0.35); }

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--container);
  margin: 0 auto;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 40px; width: auto; }
.brand .kmtv-badge {
  height: 34px;
  width: auto;
  padding-left: 12px;
  border-left: 1px solid rgba(255,255,255,0.2);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  color: var(--gray-100);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 10px 16px;
  border-radius: 4px;
  transition: color var(--transition), background var(--transition);
  position: relative;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--gold);
}

.nav-cta { margin-left: 8px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  padding: 6px;
  z-index: 1100;
}
.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 960px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: min(320px, 80%);
    background: var(--navy-light);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 100px 30px 30px;
    gap: 4px;
    transition: right 0.35s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,0.4);
    z-index: 1001;
  }
  .nav-links.open { right: 0; }
  .nav-links a { padding: 16px 8px; font-size: 16px; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .nav-cta { margin-left: 0; margin-top: 16px; }
  .hamburger { display: flex; }
  .nav-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
  }
  .nav-overlay.open { display: block; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  background:
    linear-gradient(120deg, rgba(10,22,40,0.94) 20%, rgba(10,22,40,0.75) 100%),
    radial-gradient(circle at 80% 20%, rgba(240,165,0,0.12), transparent 45%),
    var(--navy);
  color: var(--white);
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 80px);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; max-width: 780px; }
.hero .kicker { color: var(--gold); }
.hero h1 {
  color: var(--white);
  font-size: clamp(38px, 6vw, 68px);
  margin-bottom: 22px;
}
.hero h1 span { color: var(--gold); }
.hero p.lead {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--gray-300);
  max-width: 620px;
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; }

.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 50px;
  margin-top: 70px;
  flex-wrap: wrap;
}
.hero-stats div { border-left: 3px solid var(--gold); padding-left: 16px; }
.hero-stats strong { display: block; font-family: var(--font-head); font-size: 34px; color: var(--white); }
.hero-stats span { color: var(--gray-300); font-size: 13px; letter-spacing: 1px; text-transform: uppercase; }

/* Page header (for interior pages) */
.page-hero {
  background: linear-gradient(120deg, var(--navy) 40%, var(--navy-lighter) 100%);
  color: var(--white);
  padding: 150px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  right: -80px; top: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(192,57,43,0.35), transparent 70%);
}
.page-hero .kicker { color: var(--gold); }
.page-hero h1 { color: var(--white); font-size: clamp(32px, 5vw, 52px); }
.page-hero p { color: var(--gray-300); max-width: 640px; margin-top: 16px; font-size: 17px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; color: var(--gray-500); font-size: 13px; margin-bottom: 20px; letter-spacing: 0.5px; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--gray-700); }

/* ==========================================================================
   Cards - Services
   ========================================================================== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 960px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .card-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 30px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--gold);
}
.service-card .icon {
  font-size: 40px;
  margin-bottom: 20px;
  display: inline-block;
}
.service-card h3 {
  font-size: 19px;
  margin-bottom: 12px;
}
.service-card p { color: var(--gray-700); font-size: 15px; }
.service-card .num {
  position: absolute;
  top: 24px; right: 26px;
  font-family: var(--font-head);
  font-size: 13px;
  color: var(--gray-300);
}

/* Dark variant */
.what-we-do { background: var(--navy); }
.what-we-do .section-head h2, .what-we-do .kicker { color: var(--white); }
.what-we-do .section-head p { color: var(--gray-300); }
.what-we-do .service-card {
  background: var(--navy-light);
  border-top-color: rgba(255,255,255,0.06);
}
.what-we-do .service-card h3 { color: var(--white); }
.what-we-do .service-card p { color: var(--gray-300); }
.what-we-do .service-card:hover { border-top-color: var(--gold); background: var(--navy-lighter); }

/* ==========================================================================
   KMTV Spotlight
   ========================================================================== */
.kmtv-spotlight { background: var(--off-white); }
.kmtv-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) { .kmtv-grid { grid-template-columns: 1fr; } }

.video-frame {
  position: relative;
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16/9;
  border: 4px solid var(--navy);
}
.video-frame video { width: 100%; height: 100%; object-fit: cover; background: #000; }
.live-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--ember);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 12px;
  letter-spacing: 1.5px;
  padding: 6px 12px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 5;
}
.live-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--white); animation: pulse-dot 1.6s infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1;} 50%{opacity:0.3;} }

.app-buttons { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.app-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: var(--white);
  padding: 12px 22px;
  border-radius: 6px;
  transition: background var(--transition), transform var(--transition);
}
.app-btn:hover { background: var(--navy-lighter); transform: translateY(-2px); }
.app-btn .glyph { font-size: 22px; }
.app-btn small { display: block; font-size: 10px; color: var(--gray-300); text-transform: uppercase; letter-spacing: 1px; }
.app-btn strong { display: block; font-family: var(--font-head); font-size: 15px; }

.kmtv-tag {
  display: inline-block;
  font-family: var(--font-head);
  color: var(--ember);
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* ==========================================================================
   News Section
   ========================================================================== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 960px) { .news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .news-grid { grid-template-columns: 1fr; } }

.news-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.news-card .thumb {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--navy-light) url('../images/news-placeholder.svg') center/cover;
}
.news-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.news-card:hover .thumb img { transform: scale(1.06); }
.news-card .body { padding: 22px 22px 26px; display: flex; flex-direction: column; flex: 1; }
.news-card .cat {
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 10px;
}
.news-card h3 {
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  flex: 1;
}
.news-card .meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--gray-500);
  border-top: 1px solid var(--gray-100);
  padding-top: 14px;
  margin-top: auto;
}
.news-skeleton {
  background: linear-gradient(90deg, var(--gray-100) 25%, #f0f1f3 37%, var(--gray-100) 63%);
  background-size: 400% 100%;
  animation: shimmer 1.4s ease infinite;
}
@keyframes shimmer { 0%{background-position: 100% 0;} 100%{background-position: -100% 0;} }
.news-error { text-align: center; padding: 40px 20px; color: var(--gray-500); grid-column: 1/-1; }

/* ==========================================================================
   Counties Coverage
   ========================================================================== */
.counties {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-lighter) 100%);
  color: var(--white);
  text-align: center;
}
.counties h2 { color: var(--white); font-size: clamp(28px, 4vw, 44px); }
.counties p { max-width: 640px; margin: 18px auto 40px; color: var(--gray-300); font-size: 17px; }
.county-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}
.county-list span {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 9px 18px;
  border-radius: 30px;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: var(--gray-100);
  transition: all var(--transition);
}
.county-list span:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); font-weight: 600; }
.counties-num {
  font-family: var(--font-head);
  font-size: clamp(80px, 12vw, 160px);
  color: rgba(255,255,255,0.05);
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  z-index: 0;
  white-space: nowrap;
}

/* ==========================================================================
   CTA
   ========================================================================== */
.cta-band {
  background: linear-gradient(120deg, var(--ember) 0%, #9c2d21 100%);
  color: var(--white);
  padding: 70px 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); font-size: clamp(26px, 4vw, 38px); margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,0.85); max-width: 560px; margin: 0 auto 30px; font-size: 17px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--navy); color: var(--gray-300); padding-top: 70px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr; gap: 36px; } }
.footer-grid img { height: 34px; margin-bottom: 18px; }
.footer-grid h4 {
  color: var(--white);
  font-size: 15px;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}
.footer-grid p { font-size: 14px; line-height: 1.8; max-width: 340px; }
.footer-grid ul li { margin-bottom: 12px; }
.footer-grid ul a { font-size: 14px; transition: color var(--transition); }
.footer-grid ul a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 12px; margin-top: 6px; }
.footer-social a {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  font-size: 16px;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--navy); transform: translateY(-3px); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 0;
  font-size: 13px;
  color: var(--gray-500);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom .legal-links { display: flex; gap: 20px; }
.footer-bottom .legal-links a:hover { color: var(--gold); }

/* ==========================================================================
   Generic content pages (About / Privacy / Terms)
   ========================================================================== */
.content-block { max-width: 820px; }
.content-block h2 { font-size: 28px; margin: 40px 0 16px; }
.content-block h2:first-child { margin-top: 0; }
.content-block h3 { font-size: 19px; margin: 26px 0 10px; text-transform: none; letter-spacing: 0; }
.content-block p { color: var(--gray-700); margin-bottom: 16px; font-size: 16px; }
.content-block ul { margin: 0 0 16px 0; }
.content-block ul li { color: var(--gray-700); padding-left: 22px; position: relative; margin-bottom: 10px; }
.content-block ul li::before {
  content: "";
  position: absolute; left: 0; top: 9px;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
}
.content-block a { color: var(--ember); text-decoration: underline; }
.content-block .updated { color: var(--gray-500); font-size: 13px; margin-bottom: 30px; display: block; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; gap: 30px; } }

.stat-box {
  background: var(--white);
  border-left: 4px solid var(--gold);
  padding: 26px 28px;
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
}
.stat-box strong { display: block; font-family: var(--font-head); font-size: 30px; color: var(--navy); }
.stat-box span { font-size: 13px; color: var(--gray-500); text-transform: uppercase; letter-spacing: 1px; }

.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 20px; }
@media (max-width: 800px) { .mv-grid { grid-template-columns: 1fr; } }
.mv-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--ember);
}
.mv-card:nth-child(2) { border-top-color: var(--gold); }
.mv-card .icon { font-size: 34px; margin-bottom: 16px; }
.mv-card h3 { font-size: 20px; margin-bottom: 14px; }
.mv-card p { color: var(--gray-700); }

.uniques {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 20px;
}
@media (max-width: 700px) { .uniques { grid-template-columns: 1fr; } }
.unique-item { display: flex; gap: 18px; }
.unique-item .num {
  font-family: var(--font-head);
  font-size: 28px;
  color: var(--gold);
  flex-shrink: 0;
  width: 50px;
}
.unique-item h4 { font-size: 16px; margin-bottom: 6px; }
.unique-item p { color: var(--gray-700); font-size: 14px; }

/* ==========================================================================
   Team section (About page)
   ========================================================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media (max-width: 960px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .team-grid { grid-template-columns: 1fr; } }

.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-photo {
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, var(--navy), var(--navy-lighter));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-photo .initials {
  font-family: var(--font-head);
  font-size: 36px;
  color: var(--gold);
  letter-spacing: 1px;
}
.team-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 3px solid transparent;
  transition: border-color var(--transition);
}
.team-card:hover .team-photo::after { border-color: var(--gold); }
.team-card .info { padding: 20px 16px 26px; }
.team-card .info h4 {
  font-family: var(--font-head);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--navy);
  margin-bottom: 6px;
}
.team-card .info span {
  display: block;
  font-size: 13px;
  color: var(--ember);
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* ==========================================================================
   Services page detail sections
   ========================================================================== */
.service-detail {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 30px;
  padding: 40px 0;
  border-bottom: 1px solid var(--gray-100);
  align-items: start;
}
.service-detail:last-child { border-bottom: none; }
.service-detail .icon-box {
  width: 76px; height: 76px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 34px;
}
.service-detail h3 { font-size: 24px; margin-bottom: 10px; }
.service-detail p { color: var(--gray-700); font-size: 16px; max-width: 700px; }
.service-detail .tags { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }
.service-detail .tags span {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  color: var(--gray-700);
  letter-spacing: 0.5px;
}
@media (max-width: 640px) {
  .service-detail { grid-template-columns: 1fr; }
}

/* ==========================================================================
   KMTV page specifics
   ========================================================================== */
.kmtv-hero {
  background: linear-gradient(120deg, var(--navy) 0%, #1a0e0c 130%), url('../images/kmtv-logo.png') no-repeat right -60px center;
  background-size: auto, 340px;
  background-blend-mode: normal;
  color: var(--white);
  padding: 150px 0 90px;
  position: relative;
  overflow: hidden;
}
.kmtv-hero .tagline {
  font-family: var(--font-head);
  color: var(--gold);
  font-size: 20px;
  letter-spacing: 2px;
  margin-top: 8px;
}
.now-on-kmtv {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .now-on-kmtv { grid-template-columns: 1fr; } }
.program-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.program-card .ph {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--navy), var(--navy-lighter));
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.3);
  font-family: var(--font-head);
  font-size: 14px;
  letter-spacing: 2px;
}
.program-card .body { padding: 20px; }
.program-card h4 { font-size: 16px; margin-bottom: 6px; text-transform: none; letter-spacing: 0; }
.program-card span { font-size: 12px; color: var(--ember); font-family: var(--font-head); letter-spacing: 1px; }

.coverage-map {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 50px;
  color: var(--white);
}
.coverage-map .county-list span { }

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-family: var(--font-head);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--gray-100);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 15px;
  background: var(--white);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-status { margin-top: 16px; font-size: 14px; display: none; }
.form-status.show { display: block; }
.form-status.ok { color: #1a7a3c; }
.form-status.err { color: var(--ember); }

.info-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 40px;
}
.info-card h3 { color: var(--white); font-size: 20px; margin-bottom: 24px; }
.info-row { display: flex; gap: 16px; margin-bottom: 20px; align-items: flex-start; }
.info-row .glyph { font-size: 20px; width: 30px; flex-shrink: 0; }
.info-row strong { display: block; font-size: 14px; color: var(--gray-300); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 3px; }
.info-row span, .info-row a { font-size: 15px; color: var(--white); }
.info-card .footer-social { margin-top: 30px; }

/* ==========================================================================
   News page
   ========================================================================== */
.news-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 960px) { .news-page-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .news-page-grid { grid-template-columns: 1fr; } }
.load-more-wrap { text-align: center; margin-top: 50px; }

/* ==========================================================================
   Utilities
   ========================================================================== */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

.bg-white { background: var(--white); }
.bg-off { background: var(--off-white); }
