/* =============================================================================
   Willett for Congress — ADVANCED TIER shared stylesheet
   Imports brand.css tokens via <link rel="stylesheet" href="../assets/brand.css">
   This file: layout, components, header, footer, page-specific wrappers.
   ============================================================================= */

/* ---- Skip-to-content link (accessibility) ---- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  z-index: 10000;
  background: var(--orange);
  color: var(--blue-ink);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.7em 1.6em;
  border-radius: 0 0 var(--r-md) 0;
  text-decoration: none;
  transition: top 0.15s;
}
.skip-link:focus {
  top: 0;
}

/* ---- Scroll progress bar ---- */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 3px;
  background: var(--orange);
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ---- Sticky donate button ---- */
#sticky-donate {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  pointer-events: none;
}
#sticky-donate.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
#sticky-donate a {
  display: flex;
  align-items: center;
  gap: 0.5em;
  background: var(--orange);
  color: var(--blue-ink);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.7em 1.4em;
  border-radius: var(--r-pill);
  box-shadow: var(--sh-lg);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s;
}
#sticky-donate a:hover {
  background: var(--orange-deep);
  color: #fff;
  transform: translateY(-2px);
}

/* ---- Tier badge ---- */
#tier-badge {
  position: fixed;
  bottom: 0;
  left: 0;
  background: var(--blue-ink);
  color: rgba(255,255,255,0.8);
  font-family: var(--font-body);
  font-size: 0.72rem;
  padding: 5px 12px;
  border-top-right-radius: var(--r-md);
  z-index: 800;
  letter-spacing: 0.03em;
  user-select: none;
}
#tier-badge strong { color: var(--orange-soft); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 700;
  background: var(--blue);
  box-shadow: 0 2px 12px rgba(12,58,84,0.28);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
  height: 68px;
}
.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.header-logo img {
  height: 44px;
  width: auto;
  display: block;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  flex-wrap: nowrap;
}
.site-nav a {
  color: rgba(255,255,255,0.88);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.45em 0.7em;
  border-radius: var(--r-sm);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
  text-decoration: none;
}
.site-nav a:hover {
  color: #fff;
  background: rgba(255,255,255,0.12);
}
.site-nav a.active {
  color: var(--orange);
  background: rgba(254,162,15,0.12);
}
.header-cta {
  flex-shrink: 0;
  margin-left: 0.5rem;
}
.header-cta a {
  background: var(--orange);
  color: var(--blue-ink);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.6em 1.4em;
  border-radius: var(--r-pill);
  text-decoration: none;
  transition: background 0.22s, color 0.22s, transform 0.2s;
  display: inline-block;
  white-space: nowrap;
}
.header-cta a:hover {
  background: var(--orange-deep);
  color: #fff;
  transform: translateY(-1px);
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  align-items: flex-end;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.25s;
}
.nav-toggle span:nth-child(1) { width: 24px; }
.nav-toggle span:nth-child(2) { width: 18px; }
.nav-toggle span:nth-child(3) { width: 24px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 24px; }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 24px; }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .site-nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--blue-deep);
    padding: 1rem 0;
    box-shadow: 0 8px 24px rgba(12,58,84,0.3);
  }
  .site-nav.open { display: flex; }
  .site-nav a {
    width: 100%;
    padding: 0.7em var(--gutter);
    border-radius: 0;
    font-size: 1rem;
  }
  .header-inner { position: relative; }
}
@media (max-width: 480px) {
  .header-logo img { height: 36px; }
  .header-inner { height: 60px; }
  .site-nav { top: 60px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--blue-ink);
  color: rgba(255,255,255,0.85);
  padding: 3.5rem var(--gutter) 1.5rem;
}
.footer-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem 3rem;
  align-items: start;
}
.footer-brand img {
  height: 48px;
  width: auto;
  margin-bottom: 0.8rem;
}
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  max-width: 280px;
  line-height: 1.5;
  margin: 0;
}
.footer-links h4 {
  font-family: var(--font-head);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange-soft);
  margin-bottom: 0.7rem;
}
.footer-links ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.footer-links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  transition: color 0.2s;
  text-decoration: none;
}
.footer-links a:hover { color: var(--orange-soft); }

.footer-social-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}
.social-links {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  text-decoration: none;
}
.social-links a:hover {
  background: var(--orange);
  color: var(--blue-ink);
  transform: translateY(-2px);
}
.social-links svg { width: 20px; height: 20px; fill: currentColor; }

.footer-bottom {
  max-width: var(--max-w);
  margin-inline: auto;
  margin-top: 2.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}
.footer-bottom .fec-disclaimer { color: rgba(255,255,255,0.6); font-size: 0.78rem; }
.footer-bottom .copy { color: rgba(255,255,255,0.4); font-size: 0.75rem; }

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-social-block { align-items: flex-start; }
}

/* ============================================================
   SECTIONS — shared patterns
   ============================================================ */
.section {
  padding: clamp(3.5rem, 8vw, 6rem) var(--gutter);
}
.section--blue {
  background: var(--blue);
  color: #fff;
}
.section--blue-deep {
  background: var(--blue-ink);
  color: #fff;
}
.section--cream { background: var(--cream); }
.section--cream-2 { background: var(--cream-2); }
.section--white { background: var(--white); }

.section-head {
  text-align: center;
  max-width: 780px;
  margin-inline: auto;
  margin-bottom: 3.5rem;
}
.section-head .eyebrow {
  margin-bottom: 0.75rem;
  display: block;
}
.section-head h2 { margin-bottom: 0.6rem; }
.section-head p {
  color: var(--ink-soft);
  font-size: 1.1rem;
  margin: 0;
  line-height: 1.65;
}
.section--blue .section-head p,
.section--blue-deep .section-head p {
  color: rgba(255,255,255,0.8);
}
.section--blue .eyebrow,
.section--blue-deep .eyebrow {
  color: var(--orange-soft);
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  background: var(--blue-ink);
  color: #fff;
  padding: clamp(3rem, 7vw, 5.5rem) var(--gutter);
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.22;
}
.page-hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin-inline: auto;
}
.page-hero .eyebrow { color: var(--orange-soft); margin-bottom: 0.7rem; display: block; }
.page-hero h1 { margin-bottom: 0.5rem; }
.page-hero p.lead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  max-width: 680px;
  margin: 0;
  line-height: 1.6;
}

/* ============================================================
   CARDS
   ============================================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.card {
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-md);
  padding: 2rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  border: 1px solid var(--line);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-lg);
}
.card--blue {
  background: var(--blue);
  color: #fff;
  border-color: transparent;
}
.card--blue h3 { color: #fff; }
.card--blue p { color: rgba(255,255,255,0.85); }

/* ============================================================
   ISSUE ITEMS
   ============================================================ */
.issue-icon {
  width: 52px; height: 52px;
  background: rgba(254,162,15,0.12);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  font-size: 1.5rem;
}
.issue-callout {
  background: rgba(254,162,15,0.1);
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 1.1rem 1.4rem;
  margin-top: 1.2rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--blue-ink);
}

/* ============================================================
   FORMS
   ============================================================ */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}
.form-group label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--blue-ink);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
  border: 2px solid var(--line);
  border-radius: var(--r-md);
  padding: 0.75em 1em;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(25,102,146,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.sms-consent {
  font-size: 0.78rem;
  color: var(--ink-mute);
  line-height: 1.5;
  margin-top: 0.3rem;
}
.form-success {
  display: none;
  background: #e8f5e9;
  border: 2px solid #4caf50;
  border-radius: var(--r-md);
  padding: 1.4rem 1.8rem;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 600;
  color: #2e7d32;
  font-size: 1.05rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }

/* ============================================================
   DONATE MODULE
   ============================================================ */
.donate-module {
  background: var(--blue-ink);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  text-align: center;
  color: #fff;
}
.donate-module h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}
.donate-module p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.6rem;
}
.donate-amounts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.4rem;
}
.donate-amounts a {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.65em 1.4em;
  border-radius: var(--r-pill);
  text-decoration: none;
  transition: background 0.22s, border-color 0.22s, transform 0.2s;
}
.donate-amounts a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--blue-ink);
  transform: translateY(-2px);
}
.donate-other {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
}
.donate-other a {
  color: var(--orange-soft);
  font-weight: 600;
  text-decoration: none;
}
.donate-other a:hover { color: var(--orange); text-decoration: underline; }

/* ============================================================
   ENDORSEMENT CARDS
   ============================================================ */
.endorse-card {
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-md);
  padding: 2rem;
  border-top: 4px solid var(--orange);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.endorse-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
}
.endorse-card blockquote {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--ink);
  border: none;
  margin: 0 0 1.2rem;
  padding: 0;
  line-height: 1.6;
}
.endorse-card blockquote::before {
  content: '\201C';
  font-size: 2.5rem;
  line-height: 0;
  vertical-align: -0.5rem;
  color: var(--orange);
  font-family: Georgia, serif;
  margin-right: 0.15em;
}
.endorser-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--blue-ink);
}
.endorser-title {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: 0.15rem;
}

/* ============================================================
   STAT COUNTERS
   ============================================================ */
.stats-band {
  background: var(--blue);
  color: #fff;
  padding: 3.5rem var(--gutter);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: var(--max-w);
  margin-inline: auto;
  text-align: center;
}
.stat-item {}
.stat-number {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  margin-top: 0.4rem;
  line-height: 1.4;
  display: block;
}
@media (max-width: 700px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 400px) {
  .stats-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SCROLL REVEAL (JS-enhanced, JS-off safe)
   Hidden state scoped to html:not(.no-js) so content visible when JS absent/blocked.
   The no-js class is set on <html> by default; the inline <script> removes it
   immediately if JS runs, enabling the animation.
   ============================================================ */
html:not(.no-js) .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
html:not(.no-js) .reveal.revealed {
  opacity: 1;
  transform: none;
}
/* Always visible when motion is reduced */
@media (prefers-reduced-motion: reduce) {
  .reveal, html:not(.no-js) .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ============================================================
   NEWS / EVENT ITEMS
   ============================================================ */
.news-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.news-item:last-child { border-bottom: none; }
.news-date {
  background: var(--blue);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  text-align: center;
  border-radius: var(--r-md);
  padding: 0.5em 0.9em;
  min-width: 64px;
  font-size: 0.85rem;
  line-height: 1.3;
}
.news-date span { display: block; font-size: 1.2rem; }
.news-content h3 { font-size: 1.15rem; margin-bottom: 0.25rem; }
.news-content p { color: var(--ink-soft); font-size: 0.95rem; margin: 0; }
.news-tag {
  display: inline-block;
  background: rgba(25,102,146,0.1);
  color: var(--blue);
  font-size: 0.75rem;
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 0.2em 0.6em;
  border-radius: var(--r-pill);
  margin-bottom: 0.35rem;
}

/* Event cards */
.event-card {
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-md);
  overflow: hidden;
  display: grid;
  grid-template-columns: 90px 1fr;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  border: 1px solid var(--line);
}
.event-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.event-date-block {
  background: var(--blue);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.2rem 0.8rem;
}
.event-month {
  font-family: var(--font-head);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange-soft);
}
.event-day {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}
.event-body { padding: 1.2rem 1.4rem; }
.event-body h3 { font-size: 1.05rem; margin-bottom: 0.2rem; }
.event-body p { font-size: 0.9rem; color: var(--ink-soft); margin: 0; line-height: 1.5; }
.event-type {
  font-size: 0.75rem;
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--orange-deep);
  margin-bottom: 0.3rem;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 860px) {
  .contact-split { grid-template-columns: 1fr; }
}
.contact-info h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--blue-ink);
}
.contact-info p { color: var(--ink-soft); margin: 0 0 1.5rem; line-height: 1.6; }
.contact-info a { color: var(--blue); }
.contact-info a:hover { color: var(--blue-deep); text-decoration: underline; }

/* ============================================================
   VOLUNTEER
   ============================================================ */
.vol-options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}
.vol-option {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.4rem 1.6rem;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}
.vol-option:hover { border-color: var(--blue); box-shadow: var(--sh-sm); }
.vol-option input[type="checkbox"] { accent-color: var(--blue); width: 18px; height: 18px; flex-shrink: 0; margin-top: 0.15rem; }
.vol-option-text strong { display: block; font-family: var(--font-head); font-weight: 700; font-size: 0.95rem; color: var(--blue-ink); margin-bottom: 0.15rem; }
.vol-option-text span { font-size: 0.85rem; color: var(--ink-soft); line-height: 1.4; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.bio-split {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 3.5rem;
  align-items: start;
}
@media (max-width: 820px) {
  .bio-split { grid-template-columns: 1fr; }
  /* On mobile: show biography prose first, quick-facts sidebar second */
  .bio-split .bio-portrait { order: 2; position: static; }
  .bio-split .bio-text { order: 1; }
}
.bio-portrait {
  position: sticky;
  top: 84px;
}
.bio-portrait img {
  width: 100%;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
}
.bio-facts {
  background: var(--blue);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 1.8rem;
  margin-top: 1.5rem;
}
.bio-facts h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange-soft);
  margin-bottom: 1rem;
}
.bio-facts ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.bio-facts li {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.88);
}
.bio-facts li::before { content: '✦'; color: var(--orange); font-size: 0.7rem; flex-shrink: 0; }
.bio-text { font-size: 1.05rem; line-height: 1.75; color: var(--ink); }
.bio-text p { margin: 0 0 1.4rem; }
.bio-text p:last-child { margin-bottom: 0; }

/* Pull quote */
.pull-quote {
  background: var(--blue-ink);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 2rem 2.2rem;
  margin: 2rem 0;
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.45;
  position: relative;
}
.pull-quote::before {
  content: '\201C';
  font-size: 5rem;
  color: var(--orange);
  line-height: 0;
  position: absolute;
  top: 2.5rem;
  left: 1rem;
  font-family: Georgia, serif;
  opacity: 0.6;
}
.pull-quote p { padding-left: 2.5rem; margin: 0; }

/* ============================================================
   ISSUES PAGE — expanded
   ============================================================ */
.issues-nav {
  background: var(--cream-2);
  border-bottom: 2px solid var(--line);
  position: sticky;
  top: 68px;
  z-index: 200;
}
@media (max-width: 480px) {
  .issues-nav { top: 60px; }
}
.issues-nav-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.issues-nav-inner::-webkit-scrollbar { display: none; }
.issues-nav-inner a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  padding: 0.85em 0.95em;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  text-decoration: none;
}
.issues-nav-inner a:hover {
  color: var(--blue);
  border-bottom-color: var(--blue);
}

.issue-section {
  padding: clamp(3rem, 6vw, 5rem) var(--gutter);
  border-bottom: 1px solid var(--line);
}
.issue-section:nth-child(odd) { background: var(--cream); }
.issue-section:nth-child(even) { background: var(--white); }
.issue-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 600px) {
  .issue-inner { grid-template-columns: 1fr; gap: 1rem; }
}
.issue-icon-lg {
  width: 64px; height: 64px;
  background: var(--blue);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  flex-shrink: 0;
}
.issue-body h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  margin-bottom: 0.8rem;
  color: var(--blue-ink);
}
.issue-body .quote-line {
  font-style: italic;
  font-size: 1.1rem;
  color: var(--blue);
  font-family: var(--font-head);
  font-weight: 600;
  border-left: 4px solid var(--orange);
  padding-left: 1rem;
  margin: 0 0 1rem;
  line-height: 1.45;
}
.issue-body p {
  color: var(--ink-soft);
  line-height: 1.72;
  font-size: 1.02rem;
  margin: 0 0 1rem;
}

/* ============================================================
   ABOUT / THROUGHLINE BAND
   ============================================================ */
.throughline-band {
  background: var(--flag-red);
  color: #fff;
  text-align: center;
  padding: 1.5rem var(--gutter);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  letter-spacing: 0.02em;
}

/* ============================================================
   YOUTUBE EMBED
   ============================================================ */
.yt-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-md);
}
.yt-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.text-white { color: #fff; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.max-text { max-width: var(--max-w-text); margin-inline: auto; }

/* flag accent rule */
.flag-rule {
  display: flex;
  align-items: center;
  gap: 0;
  height: 5px;
  width: 100%;
}
.flag-rule span:nth-child(1) { background: var(--blue); flex: 1; height: 100%; }
.flag-rule span:nth-child(2) { background: #fff; width: 8px; height: 100%; }
.flag-rule span:nth-child(3) { background: var(--flag-red); flex: 1; height: 100%; }

/* Hero vote badge */
.vote-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: var(--r-pill);
  padding: 0.45em 1.2em;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #fff;
  margin-bottom: 1.4rem;
  backdrop-filter: blur(4px);
}
.vote-badge::before {
  content: '★';
  color: var(--orange);
}
