:root {
    --cream:     #F5F0E8;
    --cream-mid: #EDE7DA;
    --cream-dark:#DDD4C2;
    --red:       #C8102E;
    --red-dark:  #9B0D22;
    --red-light: #F2CDCD;
    --ink:       #1A1208;
    --ink-mid:   #3D2B1A;
    --ink-light: #7A6550;
    --white:     #FDFAF5;

    --serif:     'Playfair Display', Georgia, serif;
    --body-serif:'Source Serif 4', Georgia, serif;
    --sans:      'Source Sans 3', system-ui, sans-serif;
  }

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

  body {
    background: var(--cream);
    color: var(--ink);
    font-family: var(--sans);
    min-height: 100vh;
  }

  /* ── ANNOUNCE BAR ── */
  .announce {
    background: var(--red);
    color: #fff;
    text-align: center;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 10px 20px;
  }
  .announce a { color: #fff; text-decoration: underline; }

  /* ── NAV ── */
  nav {
    background: var(--red);
    border-bottom: 2px solid var(--red-dark);
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    position: sticky;
    top: 0;
    z-index: 200;
  }

  .nav-logo {
    font-family: var(--serif);
    font-size: 14px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.01em;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.2;
  }


  .nav-links {
    display: none;
  }

  .nav-links a {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    padding: 8px 14px;
    transition: color 0.1s;
  }

  .nav-links a:hover { color: #fff; }

  .nav-dropdown-wrap {
    position: relative;
  }

  .nav-dropdown-trigger {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff !important;
    text-decoration: none;
    padding: 8px 18px;
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    margin-left: 8px;
    display: inline-block;
    cursor: pointer;
    transition: background 0.1s;
  }

  .nav-dropdown-trigger:hover { background: rgba(0,0,0,0.35) !important; }

  .nav-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--white);
    border: 2px solid var(--ink);
    border-top: 3px solid var(--red);
    min-width: 160px;
    box-shadow: 4px 4px 0 var(--ink);
    z-index: 250;
  }

  .nav-dropdown-menu.open { display: block; }

  .nav-dropdown-menu a {
    display: block !important;
    font-family: var(--sans) !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 0.06em !important;
    text-transform: uppercase !important;
    color: var(--ink) !important;
    text-decoration: none !important;
    padding: 12px 16px !important;
    border-bottom: 1px solid var(--cream-mid) !important;
    background: transparent !important;
    margin-left: 0 !important;
    border-left: none !important;
    border-right: none !important;
    border-top: none !important;
    transition: background 0.1s, color 0.1s;
  }

  .nav-dropdown-menu a:last-child { border-bottom: none !important; }
  .nav-dropdown-menu a:hover { background: var(--cream) !important; color: var(--red) !important; }

  /* ── HERO ── */
  .hero {
    background: var(--white);
    border-bottom: 3px solid var(--ink);
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
      -45deg, transparent, transparent 18px,
      rgba(200,16,46,0.04) 18px, rgba(200,16,46,0.04) 19px
    );
    pointer-events: none;
  }

  .hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 32px 40px 72px;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
  }

  .hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 20px;
  }

  .hero-label::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--red);
  }

  .hero-h1 {
    font-family: var(--serif);
    font-size: clamp(38px, 5.5vw, 70px);
    font-weight: 900;
    line-height: 1.05;
    color: var(--ink);
    letter-spacing: -0.01em;
    margin-bottom: 22px;
  }

  .hero-h1 em {
    font-style: italic;
    color: var(--red);
  }

  .hero-deck {
    font-family: var(--body-serif);
    font-size: 18px;
    line-height: 1.7;
    color: var(--ink-mid);
    max-width: 540px;
    margin-bottom: 32px;
  }

  .hero-cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    color: #fff;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 13px 24px;
    text-decoration: none;
    border: 2px solid var(--red);
    cursor: pointer;
    transition: background 0.15s;
    box-shadow: 3px 3px 0 var(--ink);
  }
  .btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); }

  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--ink);
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 13px 24px;
    text-decoration: none;
    border: 2px solid var(--ink);
    cursor: pointer;
    transition: background 0.15s;
    box-shadow: 3px 3px 0 var(--ink);
  }
  .btn-secondary:hover { background: var(--cream-mid); }

  /* Hero Right — Bill number card */
  .bill-card {
    background: var(--red);
    color: #fff;
    padding: 40px 40px 32px;
    text-align: center;
    min-width: 240px;
    box-shadow: 6px 6px 0 var(--ink);
    flex-shrink: 0;
  }

  .bill-card-eyebrow {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 10px;
  }

  .bill-card-num {
    font-family: var(--serif);
    font-size: clamp(38px, 4vw, 52px);
    font-weight: 900;
    line-height: 1;
    color: #fff;
    margin-bottom: 6px;
  }

  .bill-card-sub {
    font-family: var(--sans);
    font-size: 11px;
    color: rgba(255,255,255,0.65);
    margin-bottom: 20px;
  }

  .bill-card-divider {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.2);
    margin: 16px 0;
  }

  .bill-card-stat {
    display: flex;
    flex-direction: column;
    gap: 3px;
  }

  .bill-stat-num {
    font-family: var(--serif);
    font-size: 36px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
  }

  .bill-stat-label {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
  }

  .bill-meta-row {
    display: flex;
    border: 2px solid var(--ink);
    border-top: none;
  }

  .bill-meta-item {
    flex: 1;
    padding: 14px 12px;
    text-align: center;
    background: var(--cream);
  }

  .bill-meta-item + .bill-meta-item { border-left: 2px solid var(--ink); }

  .bill-meta-num {
    display: block;
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 700;
    color: var(--red);
    line-height: 1;
  }

  .bill-meta-label {
    display: block;
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-light);
    margin-top: 4px;
  }

  /* ── SECTION SHARED ── */
  .section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 72px 40px;
  }

  .section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 16px;
  }

  .section-label::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--red);
  }

  .section-h2 {
    font-family: var(--serif);
    font-size: clamp(28px, 3.5vw, 46px);
    font-weight: 900;
    line-height: 1.1;
    color: var(--ink);
    letter-spacing: -0.01em;
    margin-bottom: 12px;
  }

  .section-h2 em { font-style: italic; color: var(--red); }

  .section-lead {
    font-family: var(--body-serif);
    font-size: 17px;
    line-height: 1.7;
    color: var(--ink-mid);
    max-width: 640px;
    margin-bottom: 48px;
  }

  /* ── WHAT IS IT ── */
  .what-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 2px solid var(--ink);
  }

  .what-cell {
    padding: 36px 36px 32px;
    background: var(--white);
    border-right: 2px solid var(--ink);
    position: relative;
  }

  .what-cell:nth-child(even) { border-right: none; background: var(--cream); }
  .what-cell:nth-child(3),
  .what-cell:nth-child(4) { border-top: 2px solid var(--ink); }

  .what-cell-icon {
    font-size: 36px;
    margin-bottom: 16px;
    display: block;
    line-height: 1;
  }

  .what-cell-title {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 900;
    color: var(--ink);
    margin-bottom: 10px;
  }

  .what-cell-body {
    font-family: var(--body-serif);
    font-size: 15px;
    line-height: 1.65;
    color: var(--ink-mid);
  }

  /* ── TIMELINE / PROGRESS ── */
  .timeline-section {
    background: #3B3838;
    border-top: 3px solid #3B3838;
    border-bottom: 3px solid #3B3838;
  }

  .timeline-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 72px 40px;
  }

  .timeline-section .section-label { color: var(--cream-dark); }
  .timeline-section .section-label::before { background: var(--red); }

  .timeline-section .section-h2 { color: var(--white); }
  .timeline-section .section-h2 em { color: var(--red); font-style: italic; }
  .timeline-section .section-lead { color: var(--cream-dark); }

  .progress-bar-wrap {
    background: rgba(255,255,255,0.1);
    height: 12px;
    border: 1px solid rgba(255,255,255,0.2);
    margin-bottom: 8px;
    position: relative;
  }

  .progress-bar-fill {
    background: #C8102E;
    height: 100%;
    width: 72%;
    position: relative;
  }

  .progress-bar-fill::after {
    content: '72%';
    position: absolute;
    right: -2px;
    top: -28px;
    font-family: var(--serif);
    font-size: 14px;
    font-weight: 700;
    color: #C8102E;
  }

  .progress-label {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
  }

  .timeline-events {
    margin-top: 52px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 2px solid rgba(255,255,255,0.12);
    border-right: none;
  }

  .timeline-event {
    border-right: 2px solid rgba(255,255,255,0.12);
    padding: 28px 24px 24px;
    position: relative;
  }

  .timeline-year {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 8px;
  }

  .timeline-event-title {
    font-family: var(--serif);
    font-size: 17px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
    line-height: 1.25;
  }

  .timeline-event-body {
    font-family: var(--body-serif);
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255,255,255,0.8);
  }

  .timeline-event.highlight {
    background: rgba(240,76,83,0.15);
  }

  .timeline-event.highlight .timeline-event-title { color: #ff8a8e; }

  /* ── SENATE VOTE ── */
  .vote-section {
    background: var(--white);
    border-bottom: 2px solid var(--ink);
  }

  .vote-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 72px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
  }

  .vote-chart-wrap {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 2px solid var(--ink);
  }

  .vote-chart-header {
    background: var(--ink);
    padding: 12px 20px;
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--cream);
  }

  .senate-chamber {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
    padding: 24px 20px;
    background: var(--cream);
    border-bottom: 2px solid var(--ink);
  }

  .senate-seat {
    aspect-ratio: 1;
    border-radius: 2px;
    font-family: var(--serif);
    font-size: 10px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    letter-spacing: 0;
    transition: transform 0.1s;
  }

  .senate-seat:hover { transform: scale(1.15); }
  .senate-seat.yes { background: var(--red); }
  .senate-seat.no { background: var(--ink-light); }
  .senate-seat.needed { background: var(--cream-dark); border: 2px dashed var(--red); }

  .vote-legend {
    display: flex;
    gap: 20px;
    padding: 14px 20px;
    background: var(--white);
  }

  .legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    color: var(--ink-mid);
    letter-spacing: 0.04em;
  }

  .legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 2px;
    flex-shrink: 0;
  }

  /* ── WHO BENEFITS ── */
  .benefits-section {
    border-top: 2px solid var(--ink);
  }

  .benefits-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 2px solid var(--ink);
    border-top: none;
  }

  .benefit-card {
    padding: 44px 36px 40px;
    background: var(--white);
    border-right: 2px solid var(--ink);
    position: relative;
    overflow: hidden;
  }

  .benefit-card:last-child { border-right: none; }

  .benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--red);
  }

  .benefit-card.alt { background: var(--cream); }
  .benefit-card.dark { background: #3B3838; }
  .benefit-card.dark .benefit-card::before { background: var(--red); }
  .benefit-card.dark .benefit-eyebrow { color: rgba(255,255,255,0.5); }
  .benefit-card.dark .benefit-title { color: var(--white); }
  .benefit-card.dark .benefit-body { color: rgba(255,255,255,0.7); }
  .benefit-card.dark .benefit-icon { color: rgba(255,255,255,0.4); }
  .benefit-card.dark .benefit-points li { color: rgba(255,255,255,0.75); }
  .benefit-card.dark .benefit-points li::before { background: var(--red); }

  .benefit-icon {
    font-size: 44px;
    margin-bottom: 20px;
    display: block;
    line-height: 1;
  }

  .benefit-eyebrow {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 10px;
  }

  .benefit-title {
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 900;
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 14px;
  }

  .benefit-body {
    font-family: var(--body-serif);
    font-size: 15px;
    line-height: 1.65;
    color: var(--ink-mid);
    margin-bottom: 20px;
  }

  .benefit-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .benefit-points li {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    padding-left: 16px;
    position: relative;
  }

  .benefit-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 6px;
    height: 2px;
    background: var(--red);
  }

  /* ── WHAT NEEDS TO HAPPEN ── */
  .action-section {
    background: var(--cream-mid);
    border-top: 3px solid var(--ink);
    border-bottom: 3px solid var(--ink);
  }

  .action-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 72px 40px;
  }

  .action-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
  }

  .action-step {
    background: var(--white);
    border: 2px solid var(--ink);
    padding: 32px 28px 28px;
    position: relative;
    box-shadow: 4px 4px 0 var(--ink);
  }

  .step-num {
    font-family: var(--serif);
    font-size: 64px;
    font-weight: 900;
    font-style: italic;
    color: var(--red-light);
    line-height: 0.85;
    margin-bottom: 16px;
  }

  .step-title {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 900;
    color: var(--ink);
    margin-bottom: 10px;
  }

  .step-body {
    font-family: var(--body-serif);
    font-size: 14px;
    line-height: 1.6;
    color: var(--ink-mid);
  }

  /* ── STATS BAND ── */
  .stats-band {
    background: var(--red);
    border-top: 2px solid var(--ink);
    border-bottom: 2px solid var(--ink);
  }

  .stats-band-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }

  .stat-cell {
    padding: 40px 24px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.2);
  }

  .stat-cell:last-child { border-right: none; }

  .stat-big {
    font-family: var(--serif);
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
  }

  .stat-label {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    line-height: 1.3;
  }

  /* ── QUOTE ── */
  .quote-section {
    background: var(--white);
    border-bottom: 2px solid var(--ink);
  }

  .quote-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 40px;
    text-align: center;
  }

  .quote-mark {
    font-family: var(--serif);
    font-size: 120px;
    color: var(--red-light);
    line-height: 0.5;
    margin-bottom: 20px;
    font-style: italic;
  }

  .quote-text {
    font-family: var(--serif);
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 700;
    font-style: italic;
    line-height: 1.4;
    color: var(--ink);
    margin-bottom: 24px;
  }

  .quote-text em { color: var(--red); font-style: normal; }

  .quote-attr {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-light);
  }

  /* ── CTA FOOTER ── */
  .cta-footer {
    background: var(--ink);
    border-top: 3px solid var(--red);
  }

  .cta-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 40px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
  }

  .cta-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 16px;
  }

  .cta-label::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--red);
  }

  .cta-h2 {
    font-family: var(--serif);
    font-size: clamp(28px, 3.5vw, 46px);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 14px;
    line-height: 1.1;
  }

  .cta-h2 em { color: var(--red); font-style: italic; }

  .cta-sub {
    font-family: var(--body-serif);
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    line-height: 1.65;
    max-width: 480px;
  }

  .cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 240px;
  }

  .cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 28px;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.15s;
  }

  .cta-btn.primary {
    background: var(--red);
    color: #fff;
    border-color: var(--red);
    box-shadow: 3px 3px 0 rgba(255,255,255,0.15);
  }

  .cta-btn.primary:hover { background: var(--red-dark); border-color: var(--red-dark); }

  .cta-btn.outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.3);
  }

  .cta-btn.outline:hover { border-color: #fff; background: rgba(255,255,255,0.06); }

  /* ── FOOTER ── */
  footer {
    background: var(--ink);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 28px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .footer-brand {
    font-family: var(--serif);
    font-size: 13px;
    font-weight: 900;
    color: var(--cream-dark);
  }

  .footer-links {
    display: flex;
    gap: 24px;
  }

  .footer-links a {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
  }

  .footer-links a:hover { color: var(--cream); }

  .footer-tag {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--red);
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 860px) {
    /* Nav */
    nav { padding: 0 16px; position: relative; flex-wrap: wrap; height: auto; min-height: 60px; align-items: center; }
    .nav-logo { font-size: 12px; padding: 10px 0; }
    .nav-quote { display: none; }

    /* Hero */
    .hero-inner { grid-template-columns: 1fr; gap: 28px; padding: 36px 20px 44px; }
    .bill-card { min-width: unset; }

    /* What is it */
    .what-grid { grid-template-columns: 1fr; }
    .what-cell:nth-child(even) { border-right: none; }
    .what-cell:nth-child(n+2) { border-top: 2px solid var(--ink); }

    /* Stats */
    .stats-band-inner { grid-template-columns: 1fr 1fr; }
    .stat-cell:nth-child(2) { border-right: none; }
    .stat-cell:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.2); }

    /* Timeline */
    .timeline-events { grid-template-columns: 1fr; }
    .timeline-event { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.15); }
    .timeline-event:last-child { border-bottom: none; }
    .timeline-inner { padding: 44px 20px; }

    /* Vote tables */
    .vote-inner { grid-template-columns: 1fr; gap: 36px; }
    .vote-inner { padding: 44px 20px; }

    /* Benefits */
    .benefits-cards { grid-template-columns: 1fr; }
    .benefit-card { border-right: none; border-bottom: 2px solid var(--ink); }
    .benefit-card:last-child { border-bottom: none; }

    /* Action steps */
    .action-steps { grid-template-columns: 1fr; }
    .action-inner { padding: 44px 20px; }
    .section { padding: 44px 20px; }

    /* CTA */
    .cta-inner { grid-template-columns: 1fr; gap: 32px; }
    .cta-actions { flex-direction: column; }
    .cta-btn { width: 100%; justify-content: center; }

    /* Footer */
    footer { flex-direction: column; gap: 16px; text-align: center; padding: 28px 20px; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
  }

  /* Narrow phones — extra refinements */
  @media (max-width: 480px) {
    .stats-band-inner { grid-template-columns: 1fr; }
    .stat-cell { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.2); }
    .stat-cell:last-child { border-bottom: none; }

    .section-h2 { font-size: clamp(22px, 7vw, 36px); }
    .hero-h1 { font-size: clamp(32px, 9vw, 52px); }

    .cta-h2 { font-size: clamp(26px, 8vw, 42px); }
  }


  /* Bill process explainer — stack on mobile */
  @media (max-width: 640px) {
    .bill-process-grid {
      grid-template-columns: 1fr !important;
      gap: 16px !important;
    }
    .bill-process-line { display: none; }
    .bill-process-grid > div {
      display: flex !important;
      align-items: flex-start !important;
      gap: 16px !important;
      text-align: left !important;
      padding: 0 !important;
    }
    .bill-process-grid > div > div:first-child {
      flex-shrink: 0;
    }
  }

  /* Vote tables (Senate/Assembly green/yellow/red) — stack on mobile */
  @media (max-width: 640px) {
    .vote-table-grid {
      grid-template-columns: 1fr !important;
    }
    .vote-table-grid > div {
      border-right: none !important;
      border-bottom: 2px solid var(--ink);
    }
    .vote-table-grid > div:last-child {
      border-bottom: none;
    }
  }

  /* Sections with inline padding — override on mobile */
  @media (max-width: 860px) {
    .vote-section > div,
    .benefits-section > div,
    .benefits-section > div > div {
      padding-left: 20px !important;
      padding-right: 20px !important;
    }
  }


  /* ── VOTE TABLE ACCORDION ── */
  .vote-accordion {
    margin-top: 20px;
    border: 2px solid var(--ink);
  }
  .vote-accordion summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 24px;
    background: var(--white);
    border-bottom: 2px solid transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink);
    user-select: none;
    transition: background 0.15s;
  }
  .vote-accordion summary::-webkit-details-marker { display: none; }
  .vote-accordion summary::marker { display: none; }
  .vote-accordion summary:hover { background: var(--cream); }
  .vote-accordion[open] summary {
    background: var(--ink);
    color: #fff;
    border-bottom: 2px solid var(--ink);
  }
  .vote-accordion-chevron {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.25s;
  }
  .vote-accordion[open] .vote-accordion-chevron {
    transform: rotate(180deg);
  }
  .vote-accordion-body {
    border-top: 2px solid var(--ink);
  }


  @media (max-width: 640px) {
    .photo-grid-2col { grid-template-columns: 1fr !important; }
  }

  /* Entrance animations */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .fade-up {
    opacity: 0;
    animation: fadeUp 0.6s ease forwards;
  }

  .fade-up-1 { animation-delay: 0.05s; }
  .fade-up-2 { animation-delay: 0.15s; }
  .fade-up-3 { animation-delay: 0.25s; }
  .fade-up-4 { animation-delay: 0.35s; }

  /* ── HAMBURGER BUTTON (always visible) ── */
  .nav-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: none;
    border: 2px solid rgba(255,255,255,0.5);
    cursor: pointer;
    padding: 8px;
    flex-shrink: 0;
  }
  .nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    transition: transform 0.25s, opacity 0.25s;
  }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Mobile nav drawer */
  .mobile-nav-drawer {
    display: none;
    flex-direction: column;
    background: var(--red-dark);
    border-top: 2px solid rgba(255,255,255,0.15);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 199;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  }
  .mobile-nav-drawer.open { display: flex; }
  .mobile-nav-drawer a {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: block;
  }
  .mobile-nav-drawer a:last-child { border-bottom: none; }
  .mobile-nav-drawer a:active { background: rgba(0,0,0,0.2); }
  .drawer-section-label {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    padding: 12px 24px 6px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }