/* ============================================================
   SWINDLED.NET — STYLESHEET v2.0.0
   Land & rust palette. Linen paper background, rust accent,
   forest green reserved for ally/positive elements only.
   ============================================================
   Structure:
   1. Fonts + base
   2. Utilities
   3. Layout
   4. Topbar
   5. Header + nav
   6. Footer
   7. Home components
   8. Press cards + filters
   9. Officials + scripts
   10. FAQ
   11. Resources (bills)
   12. Action Needed
   13. Get Involved
   14. What's New
   15. Countdown
   16. Responsive
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Anton&family=IBM+Plex+Sans:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap");

/* ---------- 1. BASE ---------- */
:root {
  /* Paper + ink */
  --paper: #f2ebde;
  --paper-warm: #ebe3d2;
  --paper-darker: #e0d6bf;
  --ink: #2d2a25;
  --ink-soft: #4a4238;
  --ink-mute: #8a7f6d;
  --stone: #c9bea8;
  --stone-soft: #d9cfb9;

  /* Rust accent */
  --alert: #9c3d28;
  --alert-hot: #b54e37;
  --alert-deep: #7a2a18;
  --alert-wash: rgba(156, 61, 40, 0.08);

  /* Forest green - allies only */
  --ally: #3d5a3d;
  --ally-soft: rgba(61, 90, 61, 0.12);
  --ally-border: #5a7a5a;

  /* Status */
  --yellow: #8a6b0e;
  --yellow-soft: rgba(138, 107, 14, 0.1);

  /* Legacy aliases */
  --bone: var(--paper);
  --bone-dim: rgba(45, 42, 37, 0.72);
  --charcoal: var(--paper-warm);
  --smoke: var(--stone);
  --steel: var(--ink-mute);
  --steel-line: var(--stone);
  --green: var(--ally);
  --green-soft: var(--ally-soft);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body {
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  color: var(--ink);
}

main { flex: 1; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
input, button, textarea { font: inherit; }
button { background: none; border: none; color: inherit; cursor: pointer; }

h1, h2, h3, h4 { line-height: 1.05; letter-spacing: -0.01em; }

.hp { display: none; }

/* ---------- 2. UTILITIES ---------- */
.stamp {
  font-family: "Anton", Impact, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: normal;
}

.display {
  font-family: "Anton", Impact, sans-serif;
  letter-spacing: 0.01em;
  font-weight: normal;
}

.alert { color: var(--alert); }
.muted { color: var(--ink-mute); }
.small { font-size: 0.8rem; }

.link-alert {
  color: var(--alert);
  border-bottom: 2px solid var(--alert);
  padding-bottom: 2px;
  transition: color 0.2s;
  display: inline-block;
}
.link-alert:hover { color: var(--alert-deep); }

.pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.pulse-dot--alert { background: var(--alert); }
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.btn {
  display: inline-block;
  padding: 14px 24px;
  font-family: "Anton", Impact, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.875rem;
  border: 2px solid transparent;
  transition: all 0.2s;
  cursor: pointer;
  text-align: center;
  line-height: 1;
}
.btn--alert {
  background: var(--alert);
  color: var(--paper);
  border-color: var(--alert);
}
.btn--alert:hover {
  background: var(--alert-deep);
  border-color: var(--alert-deep);
}
.btn--dark {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.btn--dark:hover {
  background: var(--ink-soft);
  border-color: var(--ink-soft);
}
.btn--outline {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}
.btn--outline:hover {
  background: var(--ink);
  color: var(--paper);
}
.btn--outline-light {
  border-color: var(--paper);
  color: var(--paper);
  background: transparent;
}
.btn--outline-light:hover {
  background: var(--paper);
  color: var(--ink);
}
.btn--sm { padding: 8px 16px; font-size: 0.75rem; }
.btn--block { display: block; width: 100%; }

.input {
  padding: 14px 16px;
  background: var(--paper);
  border: 1px solid var(--stone);
  color: var(--ink);
  font-size: 0.9rem;
  width: 100%;
}
.input:focus {
  outline: none;
  border-color: var(--alert);
}

/* ---------- 3. LAYOUT ---------- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 768px) {
  .container { padding: 0 32px; }
}

.section { padding: 60px 0; }
.section--lg { padding: 80px 0; }
@media (min-width: 768px) {
  .section { padding: 80px 0; }
  .section--lg { padding: 112px 0; }
}

.section__eyebrow {
  font-size: 0.75rem;
  color: var(--alert);
  margin-bottom: 12px;
}

.section--ink { background: var(--paper); color: var(--ink); }
.section--charcoal { background: var(--paper-warm); color: var(--ink); }
.section--bone { background: var(--paper); color: var(--ink); }
.section--alert { background: var(--alert); color: var(--paper); }

.section-divider { border-top: 1px solid var(--stone); }

/* Hero (inner pages) — keep image vivid */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  border-bottom: 1px solid var(--stone);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(242, 235, 222, 0.35) 0%,
    rgba(242, 235, 222, 0.45) 40%,
    rgba(242, 235, 222, 0.88) 85%,
    var(--paper) 100%
  );
}
.hero__inner {
  position: relative;
  z-index: 1;
  padding: 80px 0 96px;
}
@media (min-width: 768px) {
  .hero__inner { padding: 112px 0 128px; }
}
.hero__eyebrow {
  font-size: 0.75rem;
  color: var(--alert);
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 0 1px 3px rgba(242, 235, 222, 0.8);
}
.hero__title {
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.95;
  color: var(--ink);
  text-shadow: 0 1px 2px rgba(242, 235, 222, 0.6);
}
.hero__lede {
  margin-top: 24px;
  max-width: 640px;
  font-size: 1.125rem;
  color: var(--ink);
  line-height: 1.6;
  background: rgba(242, 235, 222, 0.80);
  padding: 12px 16px;
  border-left: 3px solid var(--alert);
}

/* Grain overlay — softer on paper */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.04;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- 4. TOPBAR ---------- */
.topbar {
  display: block;
  border-bottom: 1px solid var(--ink);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.topbar--urgent {
  background: var(--alert);
  color: var(--paper);
}
.topbar--info {
  background: var(--paper-warm);
  color: var(--ink);
  border-bottom: 1px solid var(--stone);
}
.topbar__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.8rem;
}
@media (min-width: 768px) {
  .topbar__inner {
    padding: 10px 32px;
    justify-content: space-between;
    font-size: 0.875rem;
  }
}
.topbar__left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.topbar__eyebrow { font-size: 0.7rem; }
.topbar__sep { opacity: 0.5; display: none; }
@media (min-width: 768px) { .topbar__sep { display: inline; } }
.topbar__headline {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 500;
}
.topbar__cta {
  display: none;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 0.75rem;
}
@media (min-width: 768px) { .topbar__cta { display: inline; } }

/* ---------- 5. HEADER / NAV ---------- */
.header {
  background: var(--paper);
  border-bottom: 1px solid var(--stone);
  position: relative;
  z-index: 40;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand__mark {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--alert);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Anton", Impact, sans-serif;
  font-size: 1.25rem;
  line-height: 1;
}
.brand__eyebrow {
  font-size: 0.625rem;
  color: var(--ink-mute);
  line-height: 1;
}
.brand__name {
  font-family: "Anton", Impact, sans-serif;
  font-size: 1.25rem;
  line-height: 1;
  margin-top: 4px;
  color: var(--ink);
}
@media (min-width: 768px) { .brand__name { font-size: 1.5rem; } }

.nav--desktop {
  display: none;
  align-items: center;
  gap: 4px;
}
@media (min-width: 1024px) { .nav--desktop { display: flex; } }

.nav__link {
  padding: 8px 12px;
  font-size: 0.875rem;
  font-family: "Anton", Impact, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color 0.2s;
}
.nav__link:hover { color: var(--alert); }
.nav__link.is-active { color: var(--alert); }

.nav--desktop .btn { margin-left: 12px; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 40px;
  height: 40px;
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile menu — hidden by default, shown only when .is-open is present.
   Class-based to avoid HTML hidden-attribute vs CSS display conflicts. */
.nav--mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 0 20px;
  border-top: 1px solid var(--stone);
  background: var(--paper);
}
.nav--mobile.is-open {
  display: flex;
}
@media (min-width: 1024px) {
  .nav--mobile,
  .nav--mobile.is-open { display: none; }
}
.nav--mobile .nav__link {
  padding: 12px 16px;
  border-left: 4px solid transparent;
}
.nav--mobile .nav__link.is-active {
  border-color: var(--alert);
}
.nav__link--muted { color: var(--ink-mute); }
.nav--mobile .btn { margin: 12px 16px 0; }

/* ---------- 6. FOOTER ---------- */
.footer {
  background: var(--paper-warm);
  color: var(--ink);
  border-top: 4px solid var(--alert);
  padding: 56px 0 40px;
  margin-top: auto;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
  }
}
.footer__name {
  font-family: "Anton", Impact, sans-serif;
  font-size: 2rem;
  line-height: 1.1;
  color: var(--ink);
}
.footer__blurb {
  margin-top: 12px;
  max-width: 420px;
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.6;
}
.footer__email {
  display: inline-block;
  margin-top: 20px;
  color: var(--ink);
  transition: color 0.2s;
}
.footer__email:hover { color: var(--alert); }
.footer__label {
  font-size: 0.75rem;
  color: var(--ink-mute);
  margin-bottom: 16px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.875rem;
}
.footer__links a {
  color: var(--ink);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--alert); }
.footer__small {
  font-size: 0.875rem;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.5;
}
.footer__form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__form .input {
  background: var(--paper);
  border-color: var(--stone);
  color: var(--ink);
}
.footer__archive {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.75rem;
  color: var(--ink-mute);
  transition: color 0.2s;
}
.footer__archive:hover { color: var(--alert); }
.footer__bar {
  height: 4px;
  background: var(--alert);
  margin: 56px 0 24px;
}
.footer__meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--ink-mute);
}
@media (min-width: 768px) {
  .footer__meta {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* ---------- 7. HOME ---------- */
.home-hero {
  position: relative;
  overflow: hidden;
  background: var(--paper);
}
.home-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.home-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}
.home-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(242, 235, 222, 0.30) 0%,
    rgba(242, 235, 222, 0.40) 40%,
    rgba(242, 235, 222, 0.85) 85%,
    var(--paper) 100%
  );
}
.home-hero__inner {
  position: relative;
  z-index: 1;
  padding: 64px 0 80px;
}
@media (min-width: 768px) {
  .home-hero__inner { padding: 96px 0 128px; }
}
.home-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 1024px) {
  .home-hero__grid {
    grid-template-columns: 7fr 5fr;
    gap: 48px;
    align-items: start;
  }
}
.home-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--alert);
  color: var(--paper);
  padding: 6px 12px;
  font-size: 0.75rem;
  margin-bottom: 24px;
}
.home-hero__title {
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(3.5rem, 10vw, 7.5rem);
  line-height: 0.85;
  margin-bottom: 32px;
  color: var(--ink);
  text-shadow: 0 1px 2px rgba(242, 235, 222, 0.7);
}
.home-hero__sub {
  font-size: 1.125rem;
  color: var(--ink);
  line-height: 1.6;
  max-width: 600px;
  margin-bottom: 32px;
  background: rgba(242, 235, 222, 0.82);
  padding: 16px 20px;
  border-left: 4px solid var(--alert);
}
@media (min-width: 768px) {
  .home-hero__sub { font-size: 1.25rem; }
}
.home-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Featured action card */
.fa-card {
  background: var(--paper);
  color: var(--ink);
  padding: 24px;
  border: 1px solid var(--stone);
  border-top: 6px solid var(--alert);
  box-shadow: 0 10px 30px -10px rgba(45, 42, 37, 0.25);
}
@media (min-width: 768px) { .fa-card { padding: 32px; } }
.fa-card__eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--alert);
  margin-bottom: 12px;
}
.fa-card__title {
  font-family: "Anton", Impact, sans-serif;
  font-size: 1.5rem;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--ink);
}
@media (min-width: 768px) { .fa-card__title { font-size: 1.875rem; } }
.fa-card__sub {
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 20px;
}
.fa-card__meta {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid var(--stone);
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.875rem;
  margin-bottom: 24px;
}
.fa-row {
  display: flex;
  gap: 8px;
}
.fa-row__lbl {
  font-size: 0.65rem;
  color: var(--alert);
  width: 56px;
  flex-shrink: 0;
  padding-top: 3px;
}

/* Ticker */
.ticker {
  background: var(--alert);
  color: var(--paper);
  overflow: hidden;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 16px 0;
  position: relative;
  display: none;
}
@media (min-width: 768px) {
  .ticker { display: block; }
}
.ticker__track {
  display: flex;
  white-space: nowrap;
  animation: ticker-scroll 60s linear infinite;
}
.ticker__item {
  padding: 0 32px;
  font-family: "Anton", Impact, sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
@media (min-width: 768px) { .ticker__item { font-size: 1rem; } }
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Facts strip */
.facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (min-width: 768px) {
  .facts { grid-template-columns: repeat(3, 1fr); gap: 40px; }
}
.fact {
  border-left: 4px solid var(--alert);
  padding-left: 16px;
}
.fact__val {
  font-family: "Anton", Impact, sans-serif;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--ink);
}
@media (min-width: 768px) { .fact__val { font-size: 3.75rem; } }
.fact__lbl {
  font-size: 0.625rem;
  color: var(--ink-mute);
  margin-top: 8px;
}
@media (min-width: 768px) { .fact__lbl { font-size: 0.75rem; } }

/* What's at stake grid */
.stake-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}
@media (min-width: 768px) { .stake-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; } }
.stake-card {
  position: relative;
  padding: 24px;
  background: var(--paper-warm);
  border: 1px solid var(--stone);
  transition: border-color 0.2s, transform 0.2s;
}
@media (min-width: 768px) { .stake-card { padding: 32px; } }
.stake-card:hover {
  border-color: var(--alert);
  transform: translateY(-2px);
}
.stake-card__n {
  font-family: "Anton", Impact, sans-serif;
  font-size: 3rem;
  color: rgba(156, 61, 40, 0.35);
  margin-bottom: 16px;
  transition: color 0.2s;
}
.stake-card:hover .stake-card__n { color: rgba(156, 61, 40, 0.7); }
@media (min-width: 768px) { .stake-card__n { font-size: 3.75rem; } }
.stake-card__h {
  font-family: "Anton", Impact, sans-serif;
  font-size: 1.25rem;
  line-height: 1.15;
  margin-bottom: 12px;
  color: var(--ink);
}
@media (min-width: 768px) { .stake-card__h { font-size: 1.5rem; } }
.stake-card__b {
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* Home: 5 ways grid */
.ways-grid {
  display: grid;
  grid-template-columns: 1fr;
  border: 2px solid var(--ink);
  background: var(--paper);
}
@media (min-width: 768px) { .ways-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .ways-grid { grid-template-columns: repeat(5, 1fr); } }
.way-card {
  padding: 24px;
  border-bottom: 2px solid var(--ink);
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
  color: var(--ink);
}
@media (min-width: 768px) {
  .way-card { border-right: 2px solid var(--ink); }
  .way-card:nth-child(2n) { border-right: none; }
  .way-card:nth-last-child(-n+2) { border-bottom: none; }
}
@media (min-width: 1024px) {
  .way-card { border-right: 2px solid var(--ink); border-bottom: none; }
  .way-card:nth-child(2n) { border-right: 2px solid var(--ink); }
  .way-card:last-child { border-right: none; }
}
.way-card:hover { background: var(--ink); color: var(--paper); }
.way-card__n {
  font-family: "Anton", Impact, sans-serif;
  font-size: 1.875rem;
  color: var(--alert);
  margin-bottom: 8px;
}
.way-card:hover .way-card__n { color: var(--paper); }
.way-card__h {
  font-family: "Anton", Impact, sans-serif;
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.way-card__b {
  font-size: 0.875rem;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.way-card:hover .way-card__b { color: rgba(242, 235, 222, 0.85); }
.way-card__arrow {
  font-size: 0.75rem;
  color: var(--alert);
}
.way-card:hover .way-card__arrow { color: var(--paper); }

/* Final CTA */
.final-cta {
  background: var(--ink);
  color: var(--paper);
  border-top: 4px solid var(--alert);
  padding: 80px 0 112px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 16px;
}
.final-cta__title {
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 0.9;
  margin-bottom: 24px;
  color: var(--paper);
}
.final-cta__sub {
  font-size: 1.125rem;
  color: rgba(242, 235, 222, 0.8);
  max-width: 640px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

/* Section header row */
.row-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}
.row-head__title {
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 0.95;
  color: var(--ink);
}
.row-head__link {
  font-size: 0.875rem;
  border-bottom: 2px solid var(--alert);
  padding-bottom: 4px;
  color: var(--ink);
  transition: color 0.2s;
}
.row-head__link:hover { color: var(--alert); }

/* ---------- 8. PRESS CARDS ---------- */
.press-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) { .press-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; } }

.press-card {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--paper-warm);
  border: 1px solid var(--stone);
  transition: border-color 0.2s, transform 0.2s;
  text-decoration: none;
  color: var(--ink);
  flex-direction: column;
}
@media (min-width: 640px) { .press-card { flex-direction: row; } }
.press-card:hover {
  border-color: var(--alert);
  transform: translateY(-2px);
}
.press-card__img {
  flex-shrink: 0;
  width: 100%;
  height: 160px;
  background: var(--paper-darker);
  overflow: hidden;
}
@media (min-width: 640px) { .press-card__img { width: 128px; height: 128px; } }
.press-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.95;
  transition: opacity 0.2s;
}
.press-card:hover .press-card__img img { opacity: 1; }
.press-card__body { flex: 1; min-width: 0; }
.press-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.press-card__outlet { font-size: 0.65rem; color: var(--alert); }
.press-card__sep { color: var(--ink-mute); }
.press-card__date { font-size: 0.75rem; color: var(--ink-mute); }
.press-card__tag {
  font-size: 0.6rem;
  padding: 2px 8px;
  border: 1px solid var(--stone);
  color: var(--ink-mute);
  margin-left: auto;
}
.press-card__title {
  font-family: "Anton", Impact, sans-serif;
  font-size: 1.125rem;
  line-height: 1.15;
  margin-bottom: 8px;
  transition: color 0.2s;
  color: var(--ink);
}
@media (min-width: 768px) { .press-card__title { font-size: 1.25rem; } }
.press-card:hover .press-card__title { color: var(--alert); }
.press-card__quote {
  font-size: 0.875rem;
  color: var(--ink-soft);
  font-style: italic;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.press-card__byline {
  margin-top: 8px;
  font-size: 0.75rem;
  color: var(--ink-mute);
}

.press-filters {
  background: var(--paper-warm);
  border-bottom: 1px solid var(--stone);
  position: sticky;
  top: 0;
  z-index: 30;
}
.press-filters__inner {
  display: flex;
  gap: 8px;
  padding: 16px;
  overflow-x: auto;
  max-width: 1280px;
  margin: 0 auto;
}
.filter-btn {
  flex-shrink: 0;
  padding: 8px 16px;
  font-family: "Anton", Impact, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
  border: 2px solid var(--stone);
  color: var(--ink);
  background: transparent;
  transition: all 0.2s;
}
.filter-btn:hover { border-color: var(--alert); color: var(--alert); }
.filter-btn.is-active {
  background: var(--alert);
  border-color: var(--alert);
  color: var(--paper);
}
.filter-btn__count {
  margin-left: 8px;
  font-size: 0.6rem;
  opacity: 0.7;
}
.empty {
  text-align: center;
  padding: 64px 16px;
  color: var(--ink-mute);
}

/* ---------- 9. OFFICIALS + SCRIPTS ---------- */
.script {
  background: var(--paper);
  border: 1px solid var(--stone);
  margin-bottom: 12px;
  overflow: hidden;
}
.script__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  text-align: left;
  transition: background 0.2s;
  color: var(--ink);
}
.script__toggle:hover { background: var(--paper-warm); }
.script__head {
  display: flex;
  align-items: center;
  gap: 16px;
}
.script__kind {
  font-size: 0.65rem;
  color: var(--alert);
  padding: 4px 8px;
  background: var(--alert-wash);
  border: 1px solid rgba(156, 61, 40, 0.3);
}
.script__label {
  font-family: "Anton", Impact, sans-serif;
  font-size: 1.125rem;
  color: var(--ink);
}
@media (min-width: 768px) { .script__label { font-size: 1.25rem; } }
.script__plus {
  font-family: "Anton", Impact, sans-serif;
  font-size: 1.5rem;
  color: var(--alert);
  transition: transform 0.2s;
  display: inline-block;
}
.script__body {
  padding: 20px;
  border-top: 1px solid var(--stone);
  background: var(--paper);
}
.script__note {
  font-size: 0.75rem;
  color: var(--ink-mute);
  font-style: italic;
  margin-bottom: 16px;
}
.script__meta {
  margin-bottom: 12px;
  font-size: 0.875rem;
  color: var(--ink);
}
.script__meta .stamp {
  font-size: 0.65rem;
  color: var(--alert);
  margin-right: 8px;
}
.script__content {
  font-family: "IBM Plex Sans", sans-serif;
  white-space: pre-wrap;
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 16px;
  background: var(--paper-warm);
  padding: 16px;
  border-left: 3px solid var(--stone);
}

.official-group { margin-bottom: 48px; }
.official-group__heading {
  font-family: "Anton", Impact, sans-serif;
  font-size: 1.25rem;
  color: var(--alert);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--alert);
}
@media (min-width: 768px) { .official-group__heading { font-size: 1.5rem; } }

.official-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) { .official-grid { grid-template-columns: repeat(2, 1fr); } }

.official-card {
  position: relative;
  padding: 20px;
  background: var(--paper-warm);
  border: 1px solid var(--stone);
  transition: border-color 0.2s;
}
@media (min-width: 768px) { .official-card { padding: 24px; } }
.official-card:hover { border-color: var(--alert); }

.official-card__name {
  font-family: "Anton", Impact, sans-serif;
  font-size: 1.25rem;
  margin-bottom: 4px;
  color: var(--ink);
}
@media (min-width: 768px) { .official-card__name { font-size: 1.5rem; } }
.official-card__role {
  font-size: 0.65rem;
  color: var(--ink-mute);
  margin-bottom: 16px;
}
.official-card__contacts {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.875rem;
}
.official-line {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--ink);
  transition: color 0.2s;
  text-decoration: none;
}
a.official-line:hover { color: var(--alert); }
.official-line__lbl {
  font-size: 0.6rem;
  color: var(--alert);
  flex-shrink: 0;
  padding-top: 3px;
  min-width: 40px;
}
.official-line__val.small { font-size: 0.75rem; color: var(--ink-soft); }
.official-line__val { word-break: break-word; }
.official-card__note {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--stone);
  font-size: 0.75rem;
  color: var(--ink-soft);
  font-style: italic;
}

/* ---------- 10. FAQ ---------- */
.faq-list { border-top: 2px solid var(--alert); }
.faq { border-bottom: 2px solid var(--stone); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  text-align: left;
  font-family: "Anton", Impact, sans-serif;
  font-size: 1.25rem;
  line-height: 1.2;
  transition: color 0.2s;
  color: var(--ink);
}
@media (min-width: 768px) { .faq__q { font-size: 1.5rem; } }
.faq__q:hover { color: var(--alert); }
.faq__plus {
  flex-shrink: 0;
  font-size: 2rem;
  color: var(--alert);
  transition: transform 0.2s;
  margin-top: 4px;
  display: inline-block;
}
.faq__a { padding-bottom: 32px; }
.faq__a p {
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.7;
}
@media (min-width: 768px) { .faq__a p { font-size: 1.125rem; } }
.faq__links {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq__links a { font-size: 0.75rem; }

/* ---------- 11. RESOURCES (BILLS) ---------- */
.bills-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bill {
  background: var(--paper-warm);
  border: 1px solid var(--stone);
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  transition: border-color 0.2s;
}
@media (min-width: 768px) {
  .bill {
    grid-template-columns: 120px 1fr 140px;
    padding: 24px;
    gap: 20px;
    align-items: start;
  }
}
.bill:hover { border-color: var(--alert); }
.bill__num {
  font-family: "Anton", Impact, sans-serif;
  font-size: 1.25rem;
  color: var(--alert);
}
@media (min-width: 768px) { .bill__num { font-size: 1.5rem; } }
.bill__session {
  font-size: 0.6rem;
  color: var(--ink-mute);
  margin-top: 4px;
}
.bill__title {
  font-family: "Anton", Impact, sans-serif;
  font-size: 1.125rem;
  line-height: 1.2;
  margin-bottom: 8px;
  color: var(--ink);
}
@media (min-width: 768px) { .bill__title { font-size: 1.25rem; } }
.bill__purpose {
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 12px;
}
.bill__sponsor {
  font-size: 0.75rem;
  color: var(--ink-mute);
}
.bill__sponsor .stamp {
  font-size: 0.6rem;
  margin-right: 4px;
}
.bill__status {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
@media (min-width: 768px) {
  .bill__status { flex-direction: column; align-items: flex-end; }
}
.bill__badge {
  display: inline-block;
  font-size: 0.6rem;
  padding: 4px 8px;
  border: 1px solid;
}
.bill__badge--pending {
  color: var(--yellow);
  border-color: var(--yellow);
  background: var(--yellow-soft);
}
.bill__badge--passed {
  color: var(--ally);
  border-color: var(--ally-border);
  background: var(--ally-soft);
}
.bill__badge--failed {
  color: var(--alert-deep);
  border-color: var(--alert);
  background: var(--alert-wash);
}

.docs-list { border-top: 1px solid var(--stone); }
.doc-row {
  display: block;
  padding: 20px 0;
  border-bottom: 1px solid var(--stone);
  transition: background 0.2s;
  color: var(--ink);
  text-decoration: none;
}
.doc-row:hover { background: var(--paper-warm); }
.doc-row__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.doc-row__title {
  font-family: "Anton", Impact, sans-serif;
  font-size: 1.125rem;
  transition: color 0.2s;
  margin-bottom: 4px;
  color: var(--ink);
}
@media (min-width: 768px) { .doc-row__title { font-size: 1.25rem; } }
.doc-row:hover .doc-row__title { color: var(--alert); }
.doc-row__meta {
  font-size: 0.65rem;
  color: var(--alert);
  margin-bottom: 8px;
}
.doc-row__desc {
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.doc-row__arrow {
  font-size: 1.25rem;
  color: var(--alert);
  transition: transform 0.2s;
}
.doc-row:hover .doc-row__arrow { transform: translateX(4px); }

.research-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) { .research-grid { grid-template-columns: repeat(2, 1fr); } }
.research-card {
  padding: 20px;
  background: var(--paper-warm);
  border: 1px solid var(--stone);
  transition: border-color 0.2s;
}
.research-card:hover { border-color: var(--alert); }
.research-card__h {
  font-family: "Anton", Impact, sans-serif;
  font-size: 1.125rem;
  margin-bottom: 8px;
  color: var(--ink);
}
.research-card__b {
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ---------- 12. ACTION NEEDED ---------- */
.feat-event-wrap {
  background: var(--alert);
  color: var(--paper);
  padding: 56px 0;
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
  position: relative;
}
@media (min-width: 768px) { .feat-event-wrap { padding: 80px 0; } }
.feat-event {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) {
  .feat-event {
    grid-template-columns: 7fr 5fr;
    gap: 40px;
    align-items: start;
  }
}
.feat-event__date {
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 0.9;
  margin-bottom: 20px;
  color: var(--paper);
}
.feat-event__title {
  font-family: "Anton", Impact, sans-serif;
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--paper);
}
@media (min-width: 768px) { .feat-event__title { font-size: 1.875rem; } }
.feat-event__desc {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 576px;
  color: rgba(242, 235, 222, 0.95);
}
@media (min-width: 768px) { .feat-event__desc { font-size: 1.125rem; } }
.feat-event__meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}
.feat-event__cd {
  background: var(--ink);
  color: var(--paper);
  padding: 20px;
}

.tp-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.tp-card {
  padding: 20px;
  background: var(--paper-warm);
  border-left: 4px solid var(--alert);
}
@media (min-width: 768px) { .tp-card { padding: 24px; } }
.tp-card__title {
  font-family: "Anton", Impact, sans-serif;
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--ink);
}
@media (min-width: 768px) { .tp-card__title { font-size: 1.5rem; } }
.tp-card__body {
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.6;
}
@media (min-width: 768px) { .tp-card__body { font-size: 1rem; } }

.speak-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) { .speak-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
.speak-card {
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--stone);
  transition: border-color 0.2s, transform 0.2s;
}
.speak-card:hover {
  border-color: var(--alert);
  transform: translateY(-2px);
}
.speak-card__n {
  font-family: "Anton", Impact, sans-serif;
  font-size: 2rem;
  color: var(--alert);
  margin-bottom: 12px;
}
.speak-card__h {
  font-family: "Anton", Impact, sans-serif;
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--ink);
}
.speak-card__b {
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ---------- 13. GET INVOLVED ---------- */
.actions-grid {
  display: grid;
  grid-template-columns: 1fr;
  border: 2px solid var(--stone);
}
@media (min-width: 768px) {
  .actions-grid { grid-template-columns: repeat(2, 1fr); }
}
.action-card {
  background: var(--paper-warm);
  border-bottom: 2px solid var(--stone);
  border-right: 2px solid var(--stone);
}
@media (min-width: 768px) {
  .action-card:nth-child(2n) { border-right: none; }
  .action-card:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 767px) {
  .action-card { border-right: none; }
  .action-card:last-child { border-bottom: none; }
}
.action-card__img {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--paper-darker);
}
.action-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: opacity 0.2s, transform 0.4s;
}
.action-card:hover .action-card__img img {
  opacity: 1;
  transform: scale(1.03);
}
.action-card__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(235, 227, 210, 0.75), rgba(235, 227, 210, 0.15) 40%, transparent);
}
.action-card__n {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: "Anton", Impact, sans-serif;
  font-size: 2rem;
  color: var(--alert);
  z-index: 1;
  text-shadow: 0 1px 3px rgba(242, 235, 222, 0.9);
}
@media (min-width: 768px) { .action-card__n { font-size: 2.5rem; } }
.action-card__body { padding: 24px; }
@media (min-width: 768px) { .action-card__body { padding: 32px; } }
.action-card__title {
  font-family: "Anton", Impact, sans-serif;
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--ink);
}
@media (min-width: 768px) { .action-card__title { font-size: 1.875rem; } }
.action-card__text {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* About: this is / this isn't */
.twocol {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) { .twocol { grid-template-columns: 1fr 1fr; gap: 40px; } }
.callout {
  background: var(--paper-warm);
  padding: 24px;
  border-left: 4px solid var(--alert);
  color: var(--ink);
}
@media (min-width: 768px) { .callout { padding: 32px; } }
.callout--muted { border-color: var(--ink-mute); }
.callout__eyebrow {
  font-size: 0.75rem;
  color: var(--alert);
  margin-bottom: 12px;
}
.callout--muted .callout__eyebrow { color: var(--ink-mute); }
.callout__h {
  font-family: "Anton", Impact, sans-serif;
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--ink);
}
@media (min-width: 768px) { .callout__h { font-size: 1.875rem; } }
.callout ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.callout li {
  display: flex;
  gap: 12px;
  color: var(--ink-soft);
}
.callout li::before {
  content: "\2192";
  color: var(--alert);
  flex-shrink: 0;
  font-weight: bold;
}
.callout--muted li::before { content: "\2014"; color: var(--ink-mute); }

.prose p {
  margin-bottom: 20px;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink-soft);
}
@media (min-width: 768px) { .prose p { font-size: 1.125rem; } }
.prose strong { color: var(--ink); }

/* ---------- 14. WHAT'S NEW ---------- */
.timeline {
  position: relative;
  padding-left: 32px;
  border-left: 2px solid var(--alert);
}
@media (min-width: 768px) { .timeline { padding-left: 48px; } }
.update {
  position: relative;
  margin-bottom: 48px;
}
.update:last-child { margin-bottom: 0; }
.update__dot {
  position: absolute;
  left: -39px;
  top: 4px;
  width: 16px;
  height: 16px;
  background: var(--alert);
  border: 4px solid var(--paper);
}
@media (min-width: 768px) { .update__dot { left: -55px; } }
.update__date {
  font-size: 0.75rem;
  color: var(--alert);
  margin-bottom: 8px;
}
.update__title {
  font-family: "Anton", Impact, sans-serif;
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--ink);
}
@media (min-width: 768px) { .update__title { font-size: 1.875rem; } }
.update__body {
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ---------- 15. COUNTDOWN ---------- */
.countdown {
  display: grid;
  gap: 8px;
}
.countdown--compact { grid-template-columns: repeat(3, 1fr); }
.countdown--full { grid-template-columns: repeat(4, 1fr); }
.countdown__cell {
  background: var(--paper);
  border: 1px solid var(--stone);
  padding: 12px;
  text-align: center;
}
.countdown__num {
  font-family: "Anton", Impact, sans-serif;
  font-size: 2rem;
  color: var(--alert);
  line-height: 1;
}
@media (min-width: 768px) { .countdown__num { font-size: 3rem; } }
.countdown__lbl {
  font-size: 0.625rem;
  color: var(--ink-mute);
  margin-top: 4px;
}

/* Countdown inside ink feat-event__cd */
.feat-event__cd .countdown__cell {
  background: var(--paper);
  color: var(--ink);
}

/* ---------- 16. RESPONSIVE ---------- */
@media (max-width: 640px) {
  .row-head { flex-direction: column; align-items: flex-start; }
}

/* 404 */
.err-page {
  padding: 96px 0 128px;
  text-align: center;
}
.err-num {
  font-family: "Anton", Impact, sans-serif;
  font-size: 8rem;
  color: var(--alert);
  line-height: 1;
}
@media (min-width: 768px) { .err-num { font-size: 12rem; } }
.err-title {
  font-family: "Anton", Impact, sans-serif;
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--ink);
}
@media (min-width: 768px) { .err-title { font-size: 3rem; } }
.err-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
}

#press-count { color: var(--alert); }

/* ============================================================
   v03 — WATCH PAGE + HOME WATCH-THIS-FIRST
   ============================================================ */

/* Home: Watch this first section */
.watch-first {
  background: var(--paper);
  border: 1px solid var(--stone);
  border-top: 6px solid var(--alert);
  box-shadow: 0 10px 30px -10px rgba(45, 42, 37, 0.2);
  overflow: hidden;
}
.watch-first__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 768px) {
  .watch-first__grid {
    grid-template-columns: 5fr 7fr;
    gap: 0;
  }
}
.watch-first__thumb {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  background: var(--paper-darker);
  overflow: hidden;
  text-decoration: none;
}
.watch-first__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.watch-first__thumb:hover img {
  transform: scale(1.03);
}
.watch-first__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(45, 42, 37, 0.1), rgba(45, 42, 37, 0.25));
  pointer-events: none;
}
.watch-first__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  background: var(--alert);
  color: var(--paper);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, background 0.2s;
  z-index: 2;
  box-shadow: 0 6px 20px rgba(45, 42, 37, 0.4);
}
.watch-first__thumb:hover .watch-first__play {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--alert-deep);
}
.watch-first__duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  padding: 4px 10px;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.7rem;
  z-index: 2;
}
.watch-first__body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 768px) { .watch-first__body { padding: 40px; } }
.watch-first__eyebrow {
  font-size: 0.75rem;
  color: var(--alert);
  margin-bottom: 12px;
}
.watch-first__title {
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.1;
  margin-bottom: 12px;
  color: var(--ink);
}
.watch-first__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--ink-mute);
  margin-bottom: 20px;
}
.watch-first__sep { opacity: 0.5; }
.watch-first__excerpt {
  margin-bottom: 20px;
}
.watch-first__excerpt p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.watch-first__excerpt p:last-child { margin-bottom: 0; }

/* Watch page list */
.watch-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 768px) {
  .watch-list { gap: 48px; }
}

.video-card {
  background: var(--paper-warm);
  border: 1px solid var(--stone);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.video-card:hover {
  border-color: var(--alert);
}
.video-card--featured {
  border-color: var(--alert);
  border-top: 6px solid var(--alert);
}
.video-card--highlight {
  box-shadow: 0 0 0 4px rgba(156, 61, 40, 0.25);
  transition: box-shadow 0.4s;
}

.video-card__thumb {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  background: var(--paper-darker);
  overflow: hidden;
  text-decoration: none;
}
.video-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.video-card__thumb:hover img {
  transform: scale(1.03);
}
.video-card__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45, 42, 37, 0.35), transparent 50%);
  pointer-events: none;
}
.video-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: var(--alert);
  color: var(--paper);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, background 0.2s;
  z-index: 2;
  box-shadow: 0 4px 16px rgba(45, 42, 37, 0.4);
}
.video-card__thumb:hover .video-card__play {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--alert-deep);
}
.video-card__duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  padding: 4px 10px;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.7rem;
  z-index: 2;
}
.video-card__featured-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 12px;
  background: var(--alert);
  color: var(--paper);
  font-size: 0.7rem;
  z-index: 2;
}

.video-card__body {
  padding: 24px;
}
@media (min-width: 768px) { .video-card__body { padding: 32px; } }

.video-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
  font-size: 0.8rem;
  color: var(--ink-mute);
}
.video-card__tag {
  font-size: 0.65rem;
  color: var(--alert);
  padding: 3px 8px;
  background: var(--alert-wash);
  border: 1px solid rgba(156, 61, 40, 0.3);
}
.video-card__sep { opacity: 0.5; }

.video-card__title {
  font-family: "Anton", Impact, sans-serif;
  font-size: 1.5rem;
  line-height: 1.15;
  margin-bottom: 20px;
}
@media (min-width: 768px) { .video-card__title { font-size: 1.875rem; } }
.video-card__title a {
  color: var(--ink);
  transition: color 0.2s;
}
.video-card__title a:hover { color: var(--alert); }

.video-card__desc {
  margin-bottom: 20px;
}
.video-card__desc p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.video-card__desc p:last-child { margin-bottom: 0; }

.video-card__commentary {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--stone);
}
.video-card__commentary-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  color: var(--alert);
  font-size: 0.8rem;
  transition: color 0.2s;
  cursor: pointer;
}
.video-card__commentary-toggle:hover { color: var(--alert-deep); }
.video-card__commentary-plus {
  display: inline-block;
  font-size: 1.25rem;
  font-family: "Anton", Impact, sans-serif;
  transition: transform 0.2s;
  line-height: 1;
}
.video-card__commentary-body {
  margin-top: 16px;
  padding: 20px;
  background: var(--paper);
  border-left: 4px solid var(--alert);
}
.video-card__commentary-body p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.video-card__commentary-body p:last-child { margin-bottom: 0; }

.video-card__cta {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.8rem;
}

/* ============================================================
   v04 — NEWSLETTERS PAGE
   ============================================================ */

.nl-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .nl-list { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

.nl-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  background: var(--paper-warm);
  border: 1px solid var(--stone);
  border-left: 4px solid var(--alert);
  text-decoration: none;
  color: var(--ink);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.nl-card:hover {
  border-color: var(--alert);
  border-left-color: var(--alert-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -10px rgba(45, 42, 37, 0.2);
}

.nl-card__date {
  font-size: 0.7rem;
  color: var(--alert);
}

.nl-card__title {
  font-family: "Anton", Impact, sans-serif;
  font-size: 1.25rem;
  line-height: 1.2;
  color: var(--ink);
  transition: color 0.2s;
}
@media (min-width: 768px) { .nl-card__title { font-size: 1.5rem; } }
.nl-card:hover .nl-card__title { color: var(--alert); }

.nl-card__desc {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--ink-soft);
  flex-grow: 1;
}

.nl-card__cta {
  font-size: 0.75rem;
  color: var(--alert);
  margin-top: auto;
  padding-top: 8px;
}

/* Loading state */
.nl-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 16px;
  text-align: center;
}
.nl-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--stone);
  border-top-color: var(--alert);
  border-radius: 50%;
  animation: nl-spin 0.8s linear infinite;
}
@keyframes nl-spin {
  to { transform: rotate(360deg); }
}

/* Empty / error state */
.nl-empty {
  text-align: center;
  padding: 56px 24px;
  background: var(--paper-warm);
  border: 1px solid var(--stone);
  max-width: 600px;
  margin: 0 auto;
}
.nl-empty p {
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 460px;
  margin: 0 auto;
}

/* ============================================================
   v06 — BRAND IMAGES (header + footer)
   ============================================================ */

/* Header brand mark - replaces the old CS box */
.brand__mark-img {
  flex-shrink: 0;
  height: 40px;
  width: auto;
  max-width: 80px;
  object-fit: contain;
  display: block;
}
@media (min-width: 768px) {
  .brand__mark-img {
    height: 48px;
    max-width: 100px;
  }
}

/* Footer brand image */
.footer__brand-img {
  display: block;
  max-width: 220px;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}

/* ============================================================
   v06.5 — WHY SWINDLED EXPLAINER (home page)
   ============================================================ */

.swindled-explainer {
  background: var(--paper-warm);
  padding: 64px 0;
  border-top: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
}
@media (min-width: 768px) {
  .swindled-explainer { padding: 80px 0; }
}

.swindled-explainer__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

.swindled-explainer__eyebrow {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--alert);
  margin-bottom: 20px;
}

.swindled-explainer__title {
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(1.875rem, 5vw, 2.75rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 28px;
}
.swindled-explainer__title .alert {
  color: var(--alert);
}

.swindled-explainer p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
@media (min-width: 768px) {
  .swindled-explainer p { font-size: 1.0625rem; }
}
.swindled-explainer p strong {
  color: var(--ink);
  font-weight: 600;
}

.swindled-explainer__kicker {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 2px solid var(--alert);
  font-family: "Anton", Impact, sans-serif;
  font-size: 1.4rem;
  line-height: 1.3;
  color: var(--ink);
}
@media (min-width: 768px) {
  .swindled-explainer__kicker { font-size: 1.625rem; }
}
.swindled-explainer__kicker .alert {
  color: var(--alert);
}

/* ============================================================
   v07 — HEARING RECAP (home page)
   ============================================================ */

.recap {
  background: var(--ink);
  color: var(--paper);
  padding: 64px 0;
  border-top: 4px solid var(--alert);
  border-bottom: 4px solid var(--alert);
}
@media (min-width: 768px) {
  .recap { padding: 80px 0; }
}

.recap__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

.recap__eyebrow {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--alert);
  margin-bottom: 20px;
}

.recap__title {
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(2rem, 6vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--paper);
  margin-bottom: 28px;
}

.recap__body p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(242, 235, 222, 0.85);
  margin-bottom: 18px;
}
@media (min-width: 768px) {
  .recap__body p { font-size: 1.0625rem; }
}

.recap__closer {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 2px solid var(--alert);
  font-family: "Anton", Impact, sans-serif;
  font-size: 1.4rem;
  line-height: 1.3;
  color: var(--paper);
}
@media (min-width: 768px) {
  .recap__closer { font-size: 1.625rem; }
}

/* ============================================================
   v07 — LATEST NEWSLETTER (home page, auto-populated)
   ============================================================ */

.home-news {
  background: var(--paper-warm);
  padding: 56px 0;
}
@media (min-width: 768px) {
  .home-news { padding: 72px 0; }
}

.home-news__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

.home-news__eyebrow {
  font-size: 0.7rem;
  color: var(--alert);
  margin-bottom: 16px;
  display: block;
}

.home-news__card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--stone);
  border-left: 4px solid var(--alert);
  text-decoration: none;
  color: var(--ink);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.home-news__card:hover {
  border-color: var(--alert);
  border-left-color: var(--alert-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -10px rgba(45, 42, 37, 0.2);
}

.home-news__date {
  font-size: 0.7rem;
  color: var(--alert);
}

.home-news__title {
  font-family: "Anton", Impact, sans-serif;
  font-size: 1.4rem;
  line-height: 1.2;
  color: var(--ink);
  transition: color 0.2s;
}
@media (min-width: 768px) { .home-news__title { font-size: 1.65rem; } }
.home-news__card:hover .home-news__title { color: var(--alert); }

.home-news__desc {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

.home-news__cta {
  font-size: 0.75rem;
  color: var(--alert);
  margin-top: auto;
  padding-top: 4px;
}

.home-news__more {
  margin-top: 16px;
  text-align: right;
  font-size: 0.85rem;
}

/* ============================================================
   v07.1 — PUBLIC DOCUMENTS (Resources page, Drive-backed)
   ============================================================ */

.docs-loading {
  display: block;
  text-align: center;
  padding: 48px 16px;
  color: var(--ink-mute);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
}

.docs-empty {
  text-align: center;
  padding: 48px 16px;
}

.docs-category {
  margin-top: 40px;
}
.docs-category:first-child { margin-top: 0; }

.docs-category__title {
  font-family: "Anton", Impact, sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--alert);
}

.docs-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.doc-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px 24px;
  background: var(--paper);
  border: 1px solid var(--stone);
  border-left: 4px solid var(--alert);
  transition: border-color 0.2s, box-shadow 0.2s;
}
@media (min-width: 768px) {
  .doc-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.doc-card:hover {
  border-color: var(--alert);
}
.doc-card--focus {
  box-shadow: 0 0 0 3px var(--alert);
  animation: doc-focus 1.5s ease-out;
}
@keyframes doc-focus {
  0% { box-shadow: 0 0 0 6px var(--alert); }
  100% { box-shadow: 0 0 0 3px var(--alert); }
}

.doc-card__main {
  flex: 1;
  min-width: 0;
}

.doc-card__date {
  font-size: 0.7rem;
  color: var(--alert);
  margin-bottom: 6px;
  display: block;
}

.doc-card__title {
  font-family: "Anton", Impact, sans-serif;
  font-size: 1.15rem;
  line-height: 1.25;
  color: var(--ink);
  word-break: break-word;
}
@media (min-width: 768px) {
  .doc-card__title { font-size: 1.25rem; }
}

.doc-card__actions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}

.doc-card__view {
  font-size: 0.8rem;
  padding: 8px 14px;
  white-space: nowrap;
}

.doc-card__copy {
  font-size: 0.7rem;
  padding: 8px 12px;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink-soft);
  cursor: pointer;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  letter-spacing: 0.1em;
  font-weight: 600;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  white-space: nowrap;
}
.doc-card__copy:hover {
  color: var(--alert);
  border-color: var(--alert);
}
.doc-card__copy--copied {
  color: var(--alert) !important;
  border-color: var(--alert) !important;
  background: rgba(156, 61, 40, 0.05);
}

/* ============================================================
   v07.6 — VIRGINIA PAGE
   ============================================================ */

/* Prose subheadings (used on Virginia page) */
.prose h3 {
  font-family: "Anton", Impact, sans-serif;
  font-size: 1.4rem;
  line-height: 1.2;
  color: var(--ink);
  margin-top: 36px;
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}
@media (min-width: 768px) {
  .prose h3 { font-size: 1.6rem; }
}
.prose blockquote {
  margin: 24px 0;
  padding: 16px 20px;
  border-left: 4px solid var(--alert);
  background: rgba(156, 61, 40, 0.05);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.6;
}

/* Figures */
.va-figure {
  margin: 0 0 28px;
}
.va-figure:last-child { margin-bottom: 0; }
.va-figure img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--stone);
  background: var(--paper);
}
.va-figure figcaption {
  margin-top: 10px;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--ink-mute);
  font-style: italic;
}

/* Document links row */
.va-doclinks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

/* Full-detail toggle + actions */
.va-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 8px;
}
.va-detail {
  margin-top: 32px;
  padding-top: 8px;
}
.va-detail[hidden] { display: none; }

/* ============================================================
   v07.7 — MAILCHIMP SIGNUP FORM (newsletters page)
   ============================================================ */
.mc-signup__label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.mc-signup__req { color: var(--alert); }
