﻿:root {
  --bg: #ffffff;
  --paper: #ffffff;
  --panel: #ffffff;
  --ink: #171410;
  --muted: #5e564b;
  --line: rgba(23, 20, 16, 0.14);
  --accent: #d26a20;
  --accent-dark: #ef9d60;
  --shadow: 0 10px 24px rgba(12, 10, 8, 0.08);
  --header-bg: #101010;
  --header-ink: #f5f5f5;
  --header-muted: #b3b3b3;
}

body[data-theme="lights-out"] {
  --bg: #121212;
  --paper: #1a1a1a;
  --panel: #1f1f1f;
  --ink: #f3f3f3;
  --muted: #c2c2c2;
  --line: rgba(255, 255, 255, 0.14);
  --accent: #ef9d60;
  --accent-dark: #f6bb8d;
  --shadow: 0 14px 26px rgba(0, 0, 0, 0.3);
  --header-bg: #050505;
  --header-ink: #f8f8f8;
  --header-muted: #bcbcbc;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Instrument Sans", system-ui, sans-serif;
}

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

.site-header,
.page-shell {
  width: min(1200px, calc(100vw - 2rem));
  margin: 0 auto;
}

.site-header {
  background: var(--header-bg);
  color: var(--header-ink);
  padding: 0.45rem 0 0.7rem;
  border-radius: 0 0 0.6rem 0.6rem;
}

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.25rem 1rem 0.45rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--header-muted);
}

.topbar__tag,
.topbar__meta {
  margin: 0;
}

.brandbar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  padding: 0.65rem 1rem 0;
}

.brandbar__eyebrow {
  margin: 0 0 0.15rem;
  color: var(--accent-dark);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brandbar__title {
  margin: 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(1.8rem, 5vw, 3.1rem);
  line-height: 0.92;
  letter-spacing: 0.03em;
}

.brandbar__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 0.55rem 0.95rem;
  font-size: 0.86rem;
  font-weight: 600;
}

.brandbar__nav a {
  padding-bottom: 0.2rem;
  border-bottom: 2px solid transparent;
  color: var(--header-ink);
}

.local-only {
  display: none;
}

body[data-local="true"] .local-only {
  display: inline-block;
}

.brandbar__nav a:hover,
.brandbar__nav a:focus-visible {
  border-bottom-color: var(--accent);
}

.theme-toggle {
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: var(--header-ink);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.38rem 0.7rem;
  cursor: pointer;
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
}

.page-shell {
  padding: 1.1rem 0 3rem;
}

.hero-grid,
.latest-grid,
.live-list,
.content-grid,
.dispatch-strip {
  display: grid;
  gap: 1.25rem;
}

.hero-grid {
  grid-template-columns: 1fr;
}

.latest-grid {
  margin-top: 1.25rem;
  grid-template-columns: 1.7fr 1fr;
}

.live-list {
  margin-top: 1.25rem;
  grid-template-columns: 1fr;
}

.content-grid {
  margin-top: 1.25rem;
  grid-template-columns: 2fr 1fr;
}

.dispatch-strip {
  margin-top: 1.25rem;
  grid-template-columns: repeat(3, 1fr);
}

.hero-card,
.latest-main,
.latest-list article,
.live-list__panel,
.story-block,
.sidebar-panel,
.dispatch-strip article {
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 1.35rem 1.4rem 1.5rem;
}

.hero-card--lead {
  min-height: 25rem;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background:
    linear-gradient(180deg, rgba(18, 16, 14, 0.05) 0%, rgba(18, 16, 14, 0.12) 100%),
    linear-gradient(145deg, #ffffff 0%, #f5f5f5 45%, #f0f0f0 100%);
}

body[data-theme="lights-out"] .hero-card--lead {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.08) 100%),
    linear-gradient(145deg, #1c1c1c 0%, #181818 45%, #141414 100%);
}

.hero-card--lead-wayne {
  background:
    linear-gradient(180deg, rgba(12, 10, 8, 0.28) 0%, rgba(12, 10, 8, 0.66) 100%),
    url("/images/Wayne_Brown.png");
  background-size: cover;
  background-position: center top;
}

body[data-theme="lights-out"] .hero-card--lead-wayne {
  background:
    linear-gradient(180deg, rgba(6, 6, 6, 0.42) 0%, rgba(6, 6, 6, 0.78) 100%),
    url("/images/Wayne_Brown.png");
  background-size: cover;
  background-position: center top;
}

.hero-card--lead-wayne h2,
.hero-card--lead-wayne .hero-card__summary {
  color: #ffffff;
}

.hero-card--lead h2 {
  margin: 0 0 0.85rem;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.94;
}

.hero-card--secondary h3,
.latest-main h3,
.story-block h3,
.sidebar-panel h3,
.dispatch-strip h3 {
  margin: 0 0 0.65rem;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  line-height: 1;
}

.latest-list {
  display: grid;
  gap: 1.1rem;
}

.live-list__items {
  margin: 0.6rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.live-list__items li {
  border-top: 1px solid var(--line);
  padding-top: 0.7rem;
  display: grid;
  gap: 0.2rem;
}

.live-list__items li:first-child {
  border-top: 0;
  padding-top: 0;
}

.live-list__items a {
  font-weight: 700;
}

.live-list__items span {
  color: var(--muted);
  font-size: 0.86rem;
}

.latest-list h4 {
  margin: 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.45rem;
  line-height: 1.05;
}

.hero-card__summary,
.hero-card p,
.latest-main p,
.story-block p,
.sidebar-panel p,
.dispatch-strip p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.kicker {
  margin: 0 0 0.7rem;
  color: var(--accent-dark);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cta-link {
  margin-top: 1.25rem;
  width: fit-content;
  padding: 0.8rem 1rem;
  background: var(--ink);
  color: var(--paper);
  font-weight: 700;
}

.signal-list,
.market-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.signal-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  border-top: 1px solid var(--line);
}

.signal-list li:first-child {
  border-top: 0;
  padding-top: 0.2rem;
}

.signal-list span,
.market-list li {
  color: var(--muted);
}

.signal-list strong {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.03em;
}

.stack {
  display: grid;
  gap: 1.25rem;
}

.market-list li {
  padding: 0.8rem 0;
  border-top: 1px solid var(--line);
}

.market-list li:first-child {
  padding-top: 0.2rem;
  border-top: 0;
}

@media (max-width: 960px) {
  .hero-grid,
  .latest-grid,
  .live-list,
  .content-grid,
  .dispatch-strip {
    grid-template-columns: 1fr;
  }

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

  .brandbar__nav {
    justify-content: start;
  }

  .theme-toggle {
    margin-top: 0.25rem;
  }

  .hero-card--lead {
    min-height: 19rem;
  }
}

@media (max-width: 640px) {
  .site-header,
  .page-shell {
    width: min(100vw - 1rem, 1200px);
  }

  .topbar {
    flex-direction: column;
    gap: 0.2rem;
  }

  .hero-card,
  .latest-main,
  .latest-list article,
  .story-block,
  .sidebar-panel,
  .dispatch-strip article {
    padding: 1.1rem;
  }
}
