  @font-face { font-family: 'Averta'; src: url('https://file.squarespace-cdn.com/content/v2/namespaces/fonts/libraries/69f53b8adca34170253d0038/assets/4b59ba8a-726b-4df6-bfdf-bee9b3f10064/font.woff2') format('woff2'); font-weight: 900; }
  @font-face { font-family: 'Averta'; src: url('https://file.squarespace-cdn.com/content/v2/namespaces/fonts/libraries/69f53b8adca34170253d0038/assets/ee3192e8-2354-4686-b56d-528712cee0c6/font.woff2') format('woff2'); font-weight: 800; }
  @font-face { font-family: 'Averta'; src: url('https://file.squarespace-cdn.com/content/v2/namespaces/fonts/libraries/69f53b8adca34170253d0038/assets/eb6c22bf-2470-4100-a25d-b852b7afa9bc/font.woff2') format('woff2'); font-weight: 700; }
  @font-face { font-family: 'Averta'; src: url('https://file.squarespace-cdn.com/content/v2/namespaces/fonts/libraries/69f53b8adca34170253d0038/assets/62ed7ed0-226f-4a3f-bd97-74a967527163/font.woff2') format('woff2'); font-weight: 600; }
  @font-face { font-family: 'Averta'; src: url('https://file.squarespace-cdn.com/content/v2/namespaces/fonts/libraries/69f53b8adca34170253d0038/assets/d006a524-eb1e-4cb3-bd18-29ae052d6dc5/font.woff2') format('woff2'); font-weight: 400; }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  #about, #priorities, #get-involved, #how-to-vote { scroll-margin-top: 120px; }

  :root {
    --teal:     #366C70;
    --sky:      #A2B8FC;
    --palm:     #C0D1C7;
    --lime:     #E9F76B;
    --meringue: #F6F6EC;
    --black:    #111111;
    --white:    #FFFFFF;
    --mid:      #555555;
  }

  body { font-family: 'Averta', system-ui, sans-serif; background: var(--white); }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 56px;
    background: var(--white);
    border-bottom: 1px solid #e8e8e0;
    transition: padding 0.35s ease, box-shadow 0.35s ease;
  }
  nav.nav-scrolled {
    padding-top: 14px;
    padding-bottom: 14px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  }
  .nav-logo {
    position: relative;
    width: 200px;
    height: 120px;
    transition: height 0.35s ease;
  }
  nav.nav-scrolled .nav-logo {
    height: 64px;
  }
  .nav-logo img {
    position: absolute;
    top: 0; left: 0;
    width: auto;
    transition: opacity 0.35s ease, visibility 0.35s ease;
  }
  .logo-wordmark {
    height: 120px;
    opacity: 1; visibility: visible;
  }
  .logo-mark {
    height: 64px;
    opacity: 0; visibility: hidden;
  }
  nav.nav-scrolled .logo-wordmark { opacity: 0; visibility: hidden; }
  nav.nav-scrolled .logo-mark { opacity: 1; visibility: visible; }
  .nav-links { display: flex; gap: 36px; }
  .nav-links a {
    font-size: 13px; font-weight: 400; color: var(--mid);
    text-decoration: none;
  }
  .nav-links a:hover { color: var(--teal); }
  .nav-name { display: none; }
  .logo-name { display: none; }
  .nav-results-link {
    font-size: 12px; font-weight: 700; letter-spacing: 0.07em;
    text-transform: uppercase; color: var(--teal);
    text-decoration: none; white-space: nowrap;
    padding: 0 8px;
    border-left: 1px solid #e8e8e0;
    border-right: 1px solid #e8e8e0;
  }
  .nav-results-link:hover { color: var(--black); }
  .nav-cta {
    background: var(--teal); color: var(--white);
    font-size: 12px; font-weight: 700; letter-spacing: 0.07em;
    text-transform: uppercase; padding: 10px 22px;
    border: none; cursor: pointer; text-decoration: none;
  }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    background: var(--meringue);
    display: grid;
    grid-template-columns: 52% 48%;
    padding-top: 164px;
  }
  .hero-left {
    display: flex; flex-direction: column; justify-content: center;
    padding: 80px 56px 80px 80px;
  }
  .hero-eyebrow {
    display: flex; align-items: center; gap: 12px;
    font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--teal);
    margin-bottom: 28px;
  }
  .eyebrow-top {
    display: flex; align-items: center; gap: 10px;
  }
  .eyebrow-link {
    color: var(--teal); font-weight: 600;
    text-decoration: underline; text-underline-offset: 3px;
    white-space: nowrap;
  }
  @media (max-width: 768px) {
    .eyebrow-link {
      display: inline-block;
      text-decoration: none;
      background: var(--teal);
      color: var(--white);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      padding: 10px 18px;
      white-space: nowrap;
    }
  }
  .eyebrow-pill {
    background: var(--lime); color: var(--teal);
    font-size: 13px; font-weight: 900; letter-spacing: 0.06em;
    text-transform: uppercase; padding: 8px 16px;
  }
  .hero-headline {
    font-size: clamp(48px, 5.5vw, 76px);
    font-weight: 900; line-height: 1.02;
    letter-spacing: -0.03em; color: var(--black);
    margin-bottom: 24px;
  }
  .hero-headline em {
    font-style: normal; color: var(--teal);
  }
  .underline-lime {
    display: inline; position: relative;
    background: linear-gradient(var(--lime), var(--lime)) no-repeat;
    background-size: 100% 10px;
    background-position: 0 90%;
  }
  .hero-sub {
    font-size: 17px; font-weight: 300; line-height: 1.7;
    color: var(--mid); margin-bottom: 48px; max-width: 460px;
  }
  .hero-actions { display: flex; gap: 14px; align-items: center; }
  .btn-primary {
    background: var(--teal); color: var(--white);
    font-size: 13px; font-weight: 700; letter-spacing: 0.07em;
    text-transform: uppercase; padding: 15px 30px;
    border: none; cursor: pointer;
  }
  .btn-secondary {
    background: transparent; color: var(--teal);
    font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
    padding: 14px 30px; border: 1.5px solid var(--teal); cursor: pointer;
  }
  .hero-foot {
    margin-top: 60px; padding-top: 28px;
    border-top: 1px solid var(--palm);
    display: flex; gap: 40px;
  }
  .hero-stat .num {
    font-size: 28px; font-weight: 900; color: var(--teal);
    letter-spacing: -0.03em; line-height: 1;
  }
  .hero-stat .lbl {
    font-size: 11px; font-weight: 400; color: var(--mid);
    letter-spacing: 0.04em; margin-top: 3px;
  }

  .hero-right {
    position: relative; overflow: hidden;
    background: #e8e7e4;
    display: flex; flex-direction: column;
    align-items: center; justify-content: flex-end;
  }
  .hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
  }
  /* Lime accent bar at bottom of photo */
  .hero-right::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 6px; background: var(--lime);
    z-index: 2;
  }

  /* ── HERO EARLY VOTING ── */
  .hero-early-voting {
    margin-top: 40px;
    padding: 32px 36px;
    border-left: 5px solid var(--lime);
    background: rgba(255,255,255,0.5);
    max-width: 480px;
  }
  .hev-label {
    font-size: 12px; font-weight: 700; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--teal);
    margin-bottom: 6px;
  }
  .hev-address {
    font-size: 14px; font-weight: 300; color: var(--mid);
    line-height: 1.5; margin-bottom: 20px;
  }
  .hev-rows { display: flex; flex-direction: column; gap: 0; }
  .hev-row {
    display: flex; justify-content: space-between; align-items: center;
    gap: 24px; padding: 14px 0;
    border-bottom: 1px solid var(--palm);
  }
  .hev-row:last-child { border-bottom: none; }
  .hev-row span:first-child {
    font-size: 18px; font-weight: 400; color: var(--black);
  }
  .hev-row span:last-child {
    font-size: 18px; font-weight: 700; color: var(--teal);
    white-space: nowrap;
  }

  /* ── PRIORITIES ── */
  .priorities {
    background: var(--white);
    padding: 112px 80px;
  }
  .section-eyebrow {
    font-size: 11px; font-weight: 700; letter-spacing: 0.16em;
    text-transform: uppercase; color: var(--teal); margin-bottom: 14px;
  }
  .section-heading {
    font-size: clamp(32px, 3.5vw, 48px); font-weight: 900;
    letter-spacing: -0.03em; color: var(--black); line-height: 1.08;
    margin-bottom: 64px;
  }
  .priorities-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  }
  .priority-card {
    background: var(--meringue);
    padding: 44px 40px;
    border-bottom: 4px solid transparent;
    transition: border-color 0.2s, background 0.2s;
  }
  .priority-card:hover {
    border-color: var(--lime);
    background: #f0f0e6;
  }
  .p-num {
    font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
    color: var(--teal); text-transform: uppercase; margin-bottom: 16px;
  }
  .priority-card h3 {
    font-size: 22px; font-weight: 800; color: var(--black);
    letter-spacing: -0.015em; margin-bottom: 12px;
  }
  .priority-card p {
    font-size: 15px; font-weight: 300; color: var(--mid); line-height: 1.7;
  }

  /* ── ABOUT ── */
  .about {
    background: var(--teal);
    display: grid; grid-template-columns: 45% 55%;
  }
  .about-photo {
    background: #2a5255;
    position: relative; overflow: hidden;
  }
  .about-photo img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    object-position: center top;
    display: block;
  }
  /* Lime accent on photo */
  .about-photo::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 100%; height: 5px; background: var(--lime);
  }
  .about-content {
    padding: 88px 72px; display: flex;
    flex-direction: column; justify-content: center;
  }
  .about-content .section-eyebrow { color: var(--lime); }
  .about-content h2 {
    font-size: clamp(28px, 3vw, 42px); font-weight: 900;
    letter-spacing: -0.025em; color: var(--white); line-height: 1.12;
    margin-bottom: 24px;
  }
  .about-content p {
    font-size: 16px; font-weight: 300; line-height: 1.75;
    color: var(--palm); margin-bottom: 14px;
  }
  .about-quals {
    margin-top: 36px; display: flex; flex-direction: column; gap: 12px;
  }
  .qual {
    display: flex; align-items: center; gap: 14px;
    font-size: 14px; font-weight: 400; color: var(--palm);
  }
  .qual::before {
    content: '';
    width: 20px; height: 2px; background: var(--lime); flex-shrink: 0;
  }

  /* ── GET INVOLVED ── */
  .get-involved {
    background: var(--white);
    padding: 112px 80px;
  }
  .involved-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 2px; margin-top: 56px;
    border-top: 3px solid var(--palm);
  }
  .involved-card {
    padding: 44px 36px;
    transition: border-color 0.2s;
  }
  .involved-card:hover { border-top: 3px solid var(--teal); margin-top: -3px; }
  .involved-card h3 {
    font-size: 20px; font-weight: 800; color: var(--black);
    letter-spacing: -0.01em; margin-bottom: 12px;
  }
  .involved-card p {
    font-size: 14px; font-weight: 300; color: var(--mid);
    line-height: 1.75; margin-bottom: 28px;
  }
  .card-link {
    font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--teal);
    text-decoration: none; border-bottom: 1.5px solid var(--lime);
    padding-bottom: 2px;
  }

  /* ── VOTE BAND ── */
  .vote-band {
    background: var(--lime);
    padding: 72px 80px;
    display: flex; justify-content: space-between; align-items: center;
    gap: 48px;
  }
  .vote-left h2 {
    font-size: clamp(32px, 4vw, 52px); font-weight: 900;
    letter-spacing: -0.03em; color: var(--teal); line-height: 1.05;
  }
  .vote-left p {
    font-size: 15px; font-weight: 400; color: var(--teal);
    margin-top: 12px; opacity: 0.75;
  }
  .vote-actions { display: flex; flex-direction: column; gap: 10px; flex-shrink: 0; }
  .btn-teal-solid {
    background: var(--teal); color: var(--white);
    font-size: 13px; font-weight: 700; letter-spacing: 0.07em;
    text-transform: uppercase; padding: 16px 36px;
    border: none; cursor: pointer; white-space: nowrap;
  }
  .btn-teal-outline {
    background: transparent; color: var(--teal);
    font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
    padding: 14px 36px; border: 1.5px solid var(--teal); cursor: pointer; white-space: nowrap;
  }

  /* ── VOTE BAND EARLY VOTING ── */
  .vote-band-early-voting {
    padding: 0 48px;
    border-left: 5px solid var(--teal);
    max-width: 480px;
  }
  .vote-band-early-voting .hev-label { color: var(--teal); }
  .vote-band-early-voting .hev-address { color: var(--teal); opacity: 0.75; }
  .vote-band-early-voting .vb-hev-row { border-bottom-color: rgba(54,108,112,0.25); }
  .vote-band-early-voting .vb-hev-row span:first-child { color: var(--teal); }
  .vote-band-early-voting .vb-hev-row span:last-child { color: var(--teal); }

  /* ── MOBILE ── */
  @media (max-width: 768px) {

    /* Nav */
    nav,
    nav.nav-scrolled {
      padding: 12px 24px;
    }
    .nav-links { display: none; }
      .nav-logo,
    nav.nav-scrolled .nav-logo {
      position: static;
      width: auto; height: auto;
      display: flex; align-items: center; gap: 12px;
      transition: none;
    }
    .nav-logo img { position: static; top: auto; left: auto; }
    .logo-wordmark { display: none; }
    .logo-mark,
    nav.nav-scrolled .logo-mark { height: 64px; opacity: 1; visibility: visible; }
    nav.nav-scrolled .logo-wordmark { display: none; }
    .logo-name { display: block; height: 88px; width: auto; }

    /* Hero eyebrow */
    .hero-eyebrow {
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
    }

    /* Hero */
    .hero {
      grid-template-columns: 1fr;
      grid-template-rows: auto auto;
      min-height: unset;
      padding-top: 88px;
    }
    .hero-left {
      padding: 48px 24px 40px;
      order: 2;
    }
    .hero-right {
      order: 1;
      min-height: 340px;
    }
    .hero-right img {
      object-position: center 10%;
    }
    .hero-headline {
      font-size: clamp(40px, 10vw, 56px);
    }
    .hero-sub { font-size: 16px; }
    .hero-actions {
      flex-direction: column;
      align-items: stretch;
    }
    .btn-primary, .btn-secondary {
      text-align: center;
      padding: 16px;
    }
    .hero-foot {
      gap: 28px;
      flex-wrap: wrap;
    }

    /* Priorities */
    .priorities { padding: 72px 24px; }
    .priorities-grid { grid-template-columns: 1fr; }

    /* About */
    .about { grid-template-columns: 1fr; }
    .about-photo { min-height: 280px; }
    .about-content { padding: 56px 24px; }

    /* Get Involved */
    .get-involved { padding: 72px 24px; }
    .involved-grid { grid-template-columns: 1fr; }

    /* Vote band */
    .vote-band {
      flex-direction: column;
      align-items: flex-start;
      padding: 56px 24px;
      gap: 32px;
    }
    .vote-band-early-voting { padding: 0; border-left-width: 4px; max-width: 100%; }
    .vote-actions { width: 100%; }
    .btn-teal-solid, .btn-teal-outline { width: 100%; text-align: center; }
  }

  /* ── TABLET ── */
  @media (min-width: 769px) and (max-width: 1024px) {
    nav { padding: 12px 36px; }
    .hero-left { padding: 60px 36px 60px 48px; }
    .priorities { padding: 80px 48px; }
    .about-content { padding: 64px 48px; }
    .get-involved { padding: 80px 48px; }
    .vote-band { padding: 56px 48px; }
    .involved-grid { grid-template-columns: 1fr 1fr; }
  }

  /* ── NEWS ── */
  .news {
    background: var(--meringue);
    padding: 112px 80px;
    display: none;
  }
  .news.has-articles { display: block; }
  .news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 56px;
  }
  .news-card {
    background: var(--white);
    padding: 36px 32px;
    text-decoration: none;
    display: block;
    border-bottom: 3px solid transparent;
    transition: border-color 0.2s;
  }
  .news-card:hover { border-color: var(--sky); }
  .news-type-badge {
    display: inline-block;
    font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--teal);
    border: 1px solid var(--teal); border-radius: 2px;
    padding: 2px 7px; margin-bottom: 10px;
  }
  .news-type-endorsement { color: var(--sky); border-color: var(--sky); }
  .news-card-endorsement { cursor: default; }
  .news-quote {
    font-size: 17px; font-style: italic; font-weight: 400;
    color: var(--black); line-height: 1.5; margin-bottom: 10px;
  }
  .news-publication {
    font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--teal); margin-bottom: 10px;
  }
  .news-card h3 {
    font-size: 18px; font-weight: 700; color: var(--black);
    letter-spacing: -0.01em; line-height: 1.3; margin-bottom: 10px;
  }
  .news-meta {
    display: flex; gap: 8px; align-items: center;
    font-size: 12px; font-weight: 300; color: var(--mid);
  }
  .news-author-dot { margin: 0 4px; }
  .news-date {}
  @media (max-width: 768px) {
    .news { padding: 72px 24px; }
    .news-grid { grid-template-columns: 1fr; }
  }
  @media (min-width: 769px) and (max-width: 1024px) {
    .news { padding: 80px 48px; }
    .news-grid { grid-template-columns: 1fr 1fr; }
  }

  /* ── DONATE MODAL ── */
  .modal-overlay {
    display: none;
    position: fixed; inset: 0; z-index: 1000;
    background: rgba(0,0,0,0);
    align-items: center; justify-content: center;
    transition: background 0.3s ease;
  }
  .modal-overlay.open {
    display: flex;
    background: rgba(0,0,0,0.75);
  }
  .modal-box {
    background: var(--white);
    max-width: 520px; width: 90%;
    max-height: 90vh; overflow-y: auto;
    position: relative;
    padding: 52px 40px 40px;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    border-top: 6px solid var(--sky);
  }
  .modal-overlay.open .modal-box {
    opacity: 1;
    transform: translateY(0);
  }
  .modal-close {
    position: absolute; top: 16px; right: 20px;
    background: none; border: none;
    font-size: 22px; cursor: pointer;
    color: var(--mid); line-height: 1;
  }
  .modal-close:hover { color: var(--black); }
  .modal-box h2 {
    font-size: 26px; font-weight: 900;
    color: var(--teal); letter-spacing: -0.02em;
    margin-bottom: 8px;
  }
  .modal-box p {
    font-size: 15px; font-weight: 300;
    color: var(--mid); margin-bottom: 28px;
    line-height: 1.6;
    border-bottom: 1px solid var(--palm);
    padding-bottom: 24px;
  }

  /* ── THANK YOU MODAL ── */
  .thankyou-modal {
    max-width: 600px;
    border-top-color: var(--lime);
  }
  .thankyou-body p {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 16px;
    font-size: 15px;
    font-weight: 300;
    color: var(--mid);
    line-height: 1.7;
  }
  .thankyou-signature {
    font-weight: 500 !important;
    color: var(--teal) !important;
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }
  .thankyou-dismiss {
    width: 100%;
    text-align: center;
  }

  /* ── DIRECTION LABEL ── */
  .direction-badge {
    position: fixed; bottom: 24px; right: 24px;
    background: var(--teal); color: var(--lime);
    font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
    text-transform: uppercase; padding: 10px 18px; z-index: 200;
  }


/* ── FOOTER ── */
footer {
  background: var(--sky);
  padding: 24px 80px;
  text-align: center;
}
footer p {
  font-size: 12px;
  font-weight: 400;
  color: var(--teal);
  letter-spacing: 0.06em;
}

/* ── NAV COUNTDOWN ── */
.nav-countdown {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
  white-space: nowrap;
  padding: 0 8px;
  border-left: 1px solid #e8e8e0;
  border-right: 1px solid #e8e8e0;
}
.countdown-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
}
#nav-countdown {
  font-size: 15px;
  font-weight: 800;
  color: var(--teal);
  letter-spacing: -0.02em;
}
@media (max-width: 768px) {
  .nav-countdown { display: none; }
  .direction-badge { display: none; }
}
