:root {
  --red: #a30f17;
  --red-dark: #770b11;
  --navy: #071827;
  --cream: #f5efe4;
  --paper: #fffdf9;
  --ink: #171717;
  --muted: #66615b;
  --border: #ded4c7;
  --white: #ffffff;
  --radius: 16px;
  --shadow: 0 18px 42px rgba(20, 13, 8, 0.12);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Libre Franklin", Arial, sans-serif;
  line-height: 1.6;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; }

.container {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  border-radius: 8px;
}

.skip-link:focus { left: 12px; }

:focus-visible {
  outline: 3px solid #f3b51b;
  outline-offset: 4px;
}

.utility-bar {
  background: var(--red);
  color: var(--white);
  font-size: 0.78rem;
}

.utility-inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.utility-left { display: flex; gap: 20px; }

.utility-inner p {
  margin: 0;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-header { background: var(--paper); }

.masthead {
  min-height: 190px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(360px, 0.8fr);
  align-items: center;
  gap: 40px;
}

.brand {
  width: fit-content;
  display: grid;
  text-decoration: none;
  line-height: 0.86;
}

.brand-small,
.sponsor-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand-main,
.brand-accent {
  font-family: "Roboto Slab", Georgia, serif;
  font-weight: 800;
}

.brand-main { font-size: clamp(2rem, 5vw, 4.2rem); }

.brand-accent {
  color: var(--red);
  font-size: clamp(2.35rem, 6vw, 5rem);
  letter-spacing: 0.02em;
}

.brand-tagline {
  margin-top: 14px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scoop-profile {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 20px;
  align-items: center;
  padding-left: 28px;
  border-left: 1px solid var(--border);
}

.scoop-profile img {
    width: 120px;
    height: 150px;
    object-fit: cover;
    object-position: center top;
    border-radius: 14px;
}

.scoop-profile h2 {
  margin: 2px 0 4px;
  color: var(--red);
  font-family: "Roboto Slab", Georgia, serif;
  line-height: 1.05;
}

.scoop-profile p { margin: 0 0 8px; color: var(--muted); }
.scoop-profile a { color: var(--navy); font-weight: 800; }

.main-nav {
  background: var(--navy);
  color: var(--white);
}

.nav-row {
  min-height: 58px;
  display: flex;
  align-items: center;
}

.primary-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-menu a {
  display: block;
  padding: 18px 16px;
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

.primary-menu a:hover { background: var(--red); }

.menu-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  border: 0;
  background: transparent;
  color: var(--white);
  font-weight: 800;
  cursor: pointer;
}

.breaking-bar {
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.breaking-inner {
  min-height: 50px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.breaking-inner strong {
  padding: 7px 11px;
  border-radius: 6px;
  background: var(--red);
  color: var(--white);
  text-transform: uppercase;
  font-size: 0.76rem;
}

.breaking-inner p { margin: 0; font-weight: 700; }

.hero {
  padding-block: 26px 46px;
  display: grid;
  grid-template-columns: minmax(0, 1.9fr) minmax(280px, 0.7fr);
  gap: 24px;
}

.lead-story {
    position: relative;
    height: 420px;
    overflow: hidden;
    background: var(--navy);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.lead-story img,
.lead-story video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.lead-story::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.88), rgba(0,0,0,.55) 48%, transparent 78%);
}

.video-toggle {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 18px;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255,255,255,.85);
  border-radius: 50%;
  background: rgba(7, 24, 39, .55);
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
}

.video-toggle:hover { background: rgba(7, 24, 39, .8); }

.lead-overlay {
  position: absolute;
  z-index: 2;
  left: 34px;
  bottom: 36px;
  max-width: 610px;
  color: var(--white);
}

.lead-overlay h1 {
  margin: 12px 0;
  font-family: "Roboto Slab", Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 1.02;
}

.lead-overlay p {
  max-width: 60ch;
  color: rgba(255,255,255,.86);
}

.category-badge {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 5px;
  background: var(--red);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.button-primary { background: var(--red); color: var(--white); }
.button-primary:hover { background: var(--red-dark); }
.button-dark { background: var(--navy); color: var(--white); }
.button-light { background: var(--white); color: var(--navy); }

.hero-sidebar {
  display: grid;
  align-content: start;
  gap: 20px;
}

.quick-links,
.complaint-card {
  padding: 24px;
  border-radius: var(--radius);
}

.weather-card {
  margin-block: 20px 0;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--border);
  border-top: 5px solid var(--red);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.weather-card h2 {
  margin: 4px 0 0;
  font-family: "Roboto Slab", Georgia, serif;
}

#weather-content { flex: 1 1 260px; }

.weather-current {
  display: flex;
  align-items: center;
  gap: 18px;
}

.weather-temperature {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: var(--red);
}

.weather-details p {
  margin: 4px 0;
  color: var(--muted);
}

.weather-details strong { color: var(--ink); }

.weather-card a { color: var(--navy); font-weight: 800; }

.quick-links {
  background: var(--cream);
  border: 1px solid var(--border);
}

.quick-links ul {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.quick-links li + li { border-top: 1px solid var(--border); }

.quick-links a {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  text-decoration: none;
  font-weight: 700;
}

.quick-links a::after { content: "→"; color: var(--red); }

.content-section { padding-bottom: 54px; }

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0 16px;
  border-top: 4px solid var(--ink);
}

.section-heading.compact { padding-top: 0; }
.section-heading h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
.section-heading > a { color: var(--red); font-weight: 800; }

.eyebrow {
  margin: 0 0 5px;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow.light { color: #ffd06d; }

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

.news-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.news-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.card-body { padding: 20px; }

.card-body h3 {
  margin: 10px 0 7px;
  font-family: "Roboto Slab", Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.2;
}

.card-body p { margin: 0; color: var(--muted); }

.split-section {
  padding-bottom: 62px;
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.7fr);
  gap: 28px;
}

.headline-list {
  display: grid;
  gap: 14px;
}

.headline-list article {
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 5px solid var(--red);
  border-radius: 10px;
}

.headline-list span {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.headline-list h3 {
  margin: 7px 0 5px;
  font-family: "Roboto Slab", Georgia, serif;
}

.headline-list p { margin: 0; color: var(--muted); }

.complaint-card {
  align-self: start;
  background: #fff7f4;
  border: 2px solid #edc9c4;
}

.complaint-icon { font-size: 2.6rem; }
.complaint-card h2 { color: var(--red); font-size: 2rem; }

.complaint-card blockquote {
  margin: 18px 0;
  font-family: "Roboto Slab", Georgia, serif;
  font-size: 1.2rem;
  line-height: 1.5;
}

.complaint-credit {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.complaint-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.complaint-card small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
}

.scoop-blog {
  padding-block: 64px;
  background: var(--navy);
  color: var(--white);
}

.scoop-blog-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.5fr);
  gap: 44px;
}

.scoop-intro {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 24px;
  align-items: start;
}

.scoop-intro img {
  width: 190px;
  height: 245px;
  object-fit: cover;
  border-radius: var(--radius);
}

.scoop-intro h2 { color: var(--white); font-size: 2.4rem; }
.scoop-intro p:not(.eyebrow) { color: rgba(255,255,255,.78); }

.scoop-posts {
  display: grid;
  gap: 14px;
}

.scoop-posts article {
  padding: 22px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 12px;
}

.scoop-posts span {
  color: #ffd06d;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.scoop-posts h3 {
  margin: 7px 0 6px;
  font-family: "Roboto Slab", Georgia, serif;
}

.scoop-posts p { margin: 0; color: rgba(255,255,255,.72); }

.scoop-posts a {
  display: inline-block;
  margin-top: 10px;
  color: #ffd06d;
  font-weight: 800;
}

.community-section {
  padding-block: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.community-section p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
}

.site-footer {
  padding-top: 44px;
  background: #080f15;
  color: rgba(255,255,255,.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 35px;
}

.footer-grid strong {
  color: var(--white);
  font-family: "Roboto Slab", Georgia, serif;
  font-size: 1.35rem;
}

.footer-grid h2 { color: var(--white); font-size: 0.9rem; }

.footer-grid a {
  display: block;
  width: fit-content;
  margin: 6px 0;
  color: rgba(255,255,255,.82);
}

.footer-bottom {
  min-height: 70px;
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 0.76rem;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}

@media (max-width: 980px) {
  .masthead,
  .hero,
  .split-section,
  .scoop-blog-grid {
    grid-template-columns: 1fr;
  }

  .scoop-profile {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 760px) {
  .utility-inner p,
  .utility-left span:last-child {
    display: none;
  }

  .masthead {
    min-height: auto;
    padding-block: 28px;
  }

  .scoop-profile {
    grid-template-columns: 88px 1fr;
  }

  .scoop-profile img {
    width: 88px;
    height: 88px;
  }

  .menu-toggle {
    display: inline-flex;
    width: 100%;
  }

  .nav-row {
    display: block;
    padding-block: 7px;
  }

  .primary-menu {
    display: none;
    align-items: stretch;
    flex-direction: column;
    padding-bottom: 10px;
  }

  .primary-menu.open { display: flex; }

  .primary-menu a {
    padding: 11px 8px;
  }

  .breaking-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding-block: 12px;
  }

  .lead-story {
    height: 280px;
  }

  .lead-story::after {
    background: linear-gradient(0deg, rgba(0,0,0,.94), rgba(0,0,0,.55) 70%, transparent);
  }

  .lead-overlay {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .lead-overlay h1 {
    margin: 8px 0;
    font-size: clamp(1.3rem, 6vw, 1.9rem);
    line-height: 1.15;
  }

  .lead-overlay p { display: none; }

  .video-toggle {
    right: 12px;
    bottom: 12px;
    width: 44px;
    height: 44px;
  }

  .weather-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-sidebar,
  .card-grid,
  .scoop-intro,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .scoop-intro img {
    width: 100%;
    height: 330px;
  }

  .section-heading,
  .community-section,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
