:root {
  --blue: #00527f;
  --blue-dark: #003b5e;
  --blue-light: #e8f3f8;
  --green: #64be2e;
  --green-dark: #499b22;
  --green-light: #edf8e7;
  --ink: #123047;
  --muted: #61717a;
  --paper: #f7f9f4;
  --white: #fff;
  --line: #dfe7e3;
  --warning: #fff5d8;
  --radius: 24px;
  --shadow: 0 24px 70px rgba(5, 61, 91, 0.12);
  --max: 1180px;
}

[data-content-key] {
  white-space: pre-line;
}

.newsletter-modal[hidden] { display: none; }
.newsletter-modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 22px;
}
.newsletter-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  border: 0;
  background: rgba(0, 42, 67, .68);
  backdrop-filter: blur(8px);
  cursor: pointer;
}
.newsletter-dialog {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  max-height: calc(100dvh - 44px);
  padding: 38px;
  overflow-y: auto;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px 28px 82px 28px;
  box-shadow: 0 30px 90px rgba(0, 41, 65, .28);
}
.newsletter-close {
  position: absolute;
  top: 17px;
  right: 18px;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  color: var(--blue);
  background: var(--blue-light);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
}
.newsletter-logo { width: 66px; height: 66px; margin-bottom: 16px; object-fit: contain; }
.newsletter-dialog h2 { max-width: 440px; margin: 8px 0 13px; font-size: clamp(2rem, 6vw, 3.2rem); }
.newsletter-intro { margin: 0 0 22px; color: var(--muted); line-height: 1.65; }
.newsletter-dialog form > label:not(.newsletter-consent) { display: block; margin-bottom: 7px; font-size: .8rem; font-weight: 850; }
.newsletter-dialog input[type=email] {
  width: 100%;
  padding: 14px 15px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid #cbd8d2;
  border-radius: 11px;
  outline: none;
  font: inherit;
}
.newsletter-dialog input[type=email]:focus { border-color: var(--green); box-shadow: 0 0 0 4px rgba(100,190,46,.14); }
.newsletter-consent { display: grid; grid-template-columns: 20px 1fr; gap: 10px; margin: 16px 0 20px; color: var(--muted); font-size: .75rem; line-height: 1.5; }
.newsletter-consent input { width: 18px; height: 18px; margin: 1px 0 0; accent-color: var(--green); }
.newsletter-consent a { color: var(--blue); }
.newsletter-dialog .button { width: 100%; }
.newsletter-message { min-height: 20px; margin: 12px 0 0; color: var(--green-dark); font-size: .82rem; font-weight: 750; }
.newsletter-message.error { color: #a22f2f; }
.newsletter-honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
body.newsletter-open { overflow: hidden; }

.petition-modal[hidden] { display: none; }
.petition-modal {
  position: fixed;
  z-index: 110;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 22px;
}
.petition-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  border: 0;
  background: rgba(0, 42, 67, .72);
  backdrop-filter: blur(8px);
  cursor: pointer;
}
.petition-dialog {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  max-height: calc(100dvh - 44px);
  padding: 38px;
  overflow-y: auto;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px 28px 82px 28px;
  box-shadow: 0 30px 90px rgba(0, 41, 65, .3);
}
.petition-close {
  position: absolute;
  top: 17px;
  right: 18px;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  color: var(--blue);
  background: var(--blue-light);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
}
.petition-dialog-logo { width: 62px; height: 62px; margin-bottom: 14px; object-fit: contain; }
.petition-dialog h2 { max-width: 500px; margin: 8px 0 13px; font-size: clamp(2rem, 6vw, 3.1rem); }
.petition-dialog-intro { margin: 0 0 22px; color: var(--muted); line-height: 1.62; }
.petition-dialog form > label:not(.petition-consent) { display: block; margin: 14px 0 7px; font-size: .8rem; font-weight: 850; }
.petition-dialog input:not([type=checkbox]) {
  width: 100%;
  padding: 14px 15px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid #cbd8d2;
  border-radius: 11px;
  outline: none;
  font: inherit;
}
.petition-dialog input:not([type=checkbox]):focus { border-color: var(--green); box-shadow: 0 0 0 4px rgba(100,190,46,.14); }
.petition-consent { display: grid; grid-template-columns: 20px 1fr; gap: 10px; margin: 18px 0 20px; color: var(--muted); font-size: .75rem; line-height: 1.5; }
.petition-consent input { width: 18px; height: 18px; margin: 1px 0 0; accent-color: var(--green); }
.petition-dialog .button { width: 100%; }
.petition-form-message { min-height: 20px; margin: 12px 0 0; color: var(--green-dark); font-size: .82rem; font-weight: 750; }
.petition-form-message.error { color: #a22f2f; }
.petition-honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
body.petition-open { overflow: hidden; }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Avenir Next", "Segoe UI", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
p, h1, h2, h3 { text-wrap: pretty; }
h1, h2, h3, p, a { overflow-wrap: break-word; }
.section-head > *,
.campaign-hero .container > *,
.intro-split > *,
.story-grid > *,
.contact-grid > *,
.program-card > * { min-width: 0; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 15px;
  color: #fff;
  background: var(--blue);
  border-radius: 8px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: none; }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: flex;
  min-height: 82px;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  align-items: center;
  justify-content: space-between;
  background: rgba(247, 249, 244, 0.92);
  border-bottom: 1px solid rgba(18, 48, 71, 0.08);
  backdrop-filter: blur(18px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--blue);
  text-decoration: none;
}
.brand img { width: 48px; height: 48px; object-fit: contain; }
.brand strong { font-size: 1.05rem; letter-spacing: -0.02em; }
.site-nav { display: flex; align-items: center; gap: clamp(14px, 1.65vw, 28px); }
.site-nav a {
  position: relative;
  padding: 29px 0 26px;
  color: #365263;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}
.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 19px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--green);
  transform: scaleX(0);
  transition: transform 180ms ease;
}
.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.active::after { transform: scaleX(1); }
.site-nav .nav-contact {
  padding: 11px 17px;
  color: #fff;
  background: var(--blue);
  border-radius: 999px;
}
.site-nav .nav-contact::after { display: none; }
.site-nav .nav-facebook {
  display: inline-flex;
  width: 40px;
  height: 40px;
  padding: 0;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #1877f2;
  border-radius: 50%;
}
.site-nav .nav-facebook::after { display: none; }
.facebook-mark {
  display: inline-grid;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  place-items: center;
  color: #fff;
  background: #1877f2;
  border-radius: 50%;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1;
}
.site-nav .nav-facebook .facebook-mark {
  width: auto;
  height: auto;
  flex-basis: auto;
  background: transparent;
}
.facebook-label {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.footer-col .footer-facebook,
.footer-bottom .footer-facebook {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  text-decoration: none;
}
.footer-facebook:hover,
.footer-facebook:focus-visible { color: #b4e88f; }
.footer-facebook .facebook-mark {
  width: 25px;
  height: 25px;
  flex-basis: 25px;
  font-size: 1.05rem;
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  color: var(--blue);
  background: #fff;
  border: 1px solid rgba(0,82,127,.14);
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0,82,127,.08);
}
.menu-toggle span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  flex: 0 0 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}
.menu-toggle:focus-visible { outline: 3px solid rgba(100,190,46,.38); outline-offset: 3px; }

.container { width: min(var(--max), calc(100% - 48px)); margin-inline: auto; }
.section { padding: 105px 0; }
.section-white { background: var(--white); }
.section-blue { color: #fff; background: var(--blue-dark); }
.section-green { background: var(--green-light); }
.eyebrow {
  margin: 0 0 16px;
  color: var(--green-dark);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.eyebrow-light { color: #a9e581; }
h1 {
  margin: 0;
  color: var(--blue-dark);
  font-size: clamp(3.2rem, 7vw, 6.8rem);
  font-weight: 790;
  line-height: 0.94;
  letter-spacing: -0.065em;
}
h2 {
  margin: 0;
  color: var(--blue-dark);
  font-size: clamp(2.2rem, 4.4vw, 4.5rem);
  line-height: 1.01;
  letter-spacing: -0.052em;
}
h3 { margin: 0; color: var(--blue-dark); letter-spacing: -0.03em; }
.section-blue h2, .section-blue h3 { color: #fff; }
.lead { color: var(--ink); font-size: 1.25rem; line-height: 1.6; }
.muted { color: var(--muted); line-height: 1.7; }
.section-head {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 430px);
  gap: 55px;
  align-items: end;
  margin-bottom: 50px;
}
.section-head > p { margin: 0; color: var(--muted); line-height: 1.7; }
.section-blue .section-head > p { color: rgba(255,255,255,.72); }

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 0 23px;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--blue); box-shadow: 0 12px 26px rgba(0,82,127,.2); }
.button-primary:hover { background: var(--blue-dark); }
.button-green { color: #17381e; background: var(--green); }
.button-outline { color: var(--blue); border-color: rgba(0,82,127,.25); }
.button-white { color: var(--blue-dark); background: #fff; }
.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}
.text-link span { transition: transform 180ms ease; }
.text-link:hover span { transform: translateX(4px); }

.campaign-hero {
  padding: 56px 0 72px;
  overflow: hidden;
}
.campaign-hero .container {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(38px, 5vw, 72px);
  align-items: center;
}
.campaign-hero h1 {
  max-width: 720px;
  font-size: clamp(2.15rem, 3.25vw, 3.55rem);
  line-height: 1.05;
}
@supports ((background-clip: text) or (-webkit-background-clip: text)) {
  .campaign-hero h1 {
    background: linear-gradient(110deg, #004368 0%, #006681 72%, #4b9f2d 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
.election-meta {
  display: flex;
  margin-bottom: 23px;
  flex-wrap: wrap;
  gap: 10px;
  align-items: stretch;
}
.election-pill {
  display: inline-flex;
  padding: 9px 13px;
  gap: 8px;
  align-items: center;
  color: var(--blue);
  background: var(--blue-light);
  border-radius: 999px;
  font-size: 0.77rem;
  font-weight: 850;
  letter-spacing: .04em;
}
.election-pill::before {
  width: 8px;
  height: 8px;
  content: "";
  background: var(--green);
  border-radius: 50%;
}
.countdown-pill {
  display: inline-flex;
  min-width: 118px;
  padding: 7px 14px;
  align-items: baseline;
  justify-content: center;
  gap: 7px;
  color: #fff;
  background: var(--green-dark);
  border-radius: 999px;
}
.countdown-pill strong {
  font-size: 1.18rem;
  letter-spacing: -.03em;
}
.countdown-pill span {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .03em;
}
.hero-lead {
  max-width: 650px;
  margin: 29px 0 0;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.7;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-info-card {
  padding: 34px;
  color: #fff;
  background: linear-gradient(145deg, #0a6a98, var(--blue-dark));
  border-radius: 30px 30px 86px 30px;
  box-shadow: var(--shadow);
}
.hero-info-head {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,.17);
}
.hero-info-head span {
  display: block;
  margin-bottom: 8px;
  color: #b4e88f;
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero-info-head strong {
  display: block;
  max-width: 360px;
  font-size: 1.45rem;
  line-height: 1.2;
  letter-spacing: -.03em;
}
.hero-goals {
  margin: 0;
  padding: 9px 0;
  list-style: none;
}
.hero-goals li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 10px;
  padding: 14px 0;
  align-items: start;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.hero-goals li:last-child { border-bottom: 0; }
.hero-goals span {
  color: #a9e581;
  font-size: .7rem;
  font-weight: 850;
}
.hero-goals strong {
  font-size: .95rem;
  line-height: 1.4;
}
.hero-info-card > a {
  display: inline-flex;
  margin-top: 12px;
  gap: 8px;
  color: #fff;
  font-size: .84rem;
  font-weight: 800;
  text-decoration: none;
}
.hero-info-card > a span { color: #a9e581; }

.intro-split { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(50px, 10vw, 145px); }
.intro-split h2 { font-size: clamp(2.2rem, 3.8vw, 3.9rem); }
.intro-split p { margin-top: 0; }
.intro-motto { color: var(--blue); font-size: 1.55rem; font-weight: 800; letter-spacing: -.025em; }

.priority-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.priority-card {
  min-height: 255px;
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.priority-card:hover { transform: translateY(-5px); box-shadow: 0 16px 45px rgba(0,82,127,.1); }
.priority-number { display: block; margin-bottom: 24px; color: var(--green-dark); font-size: .74rem; font-weight: 850; }
.priority-card h3 { margin-bottom: 11px; font-size: 1.2rem; }
.priority-card p { margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.55; }
.priority-card-program {
  display: flex;
  flex-direction: column;
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 14px 34px rgba(0,82,127,.16);
  text-decoration: none;
}
.priority-card-program .priority-number { color: #a9e581; }
.priority-card-program h3 { color: #fff; }
.priority-card-program p { color: rgba(255,255,255,.72); }
.priority-card-program:hover,
.priority-card-program:focus-visible {
  background: var(--blue-dark);
  box-shadow: 0 18px 44px rgba(0,82,127,.25);
  transform: translateY(-5px);
}
.priority-card-arrow {
  margin-top: auto;
  padding-top: 18px;
  color: #a9e581;
  font-size: 1.45rem;
  font-weight: 850;
}

.event-list {
  display: grid;
  gap: 18px;
}
.event-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 35px;
  align-items: center;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 45px rgba(0,82,127,.07);
}
.event-date {
  padding: 24px;
  color: #fff;
  background: var(--blue);
  border-radius: 18px;
  text-align: center;
}
.event-date strong { display: block; font-size: 1.7rem; }
.event-date span { font-size: .75rem; opacity: .75; text-transform: uppercase; letter-spacing: .08em; }
.event-card h3 { margin-bottom: 8px; font-size: 1.45rem; }
.event-card p { margin: 0; color: var(--muted); }
.event-card .event-card-link { display: inline-flex; margin-top: 16px; }

.news-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 16px; }
.news-card {
  min-height: 310px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
}
.news-card:first-child { color: #fff; background: var(--blue); border-color: var(--blue); }
.news-tag { margin-bottom: auto; color: var(--green-dark); font-size: .72rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.news-card:first-child .news-tag { color: #b4e88f; }
.news-card h3 { margin: 40px 0 12px; font-size: 1.35rem; }
.news-card:first-child h3 { color: #fff; }
.news-card p { margin: 0; color: var(--muted); line-height: 1.55; }
.news-card:first-child p { color: rgba(255,255,255,.72); }

.news-page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 87% 20%, rgba(100,190,46,.16), transparent 25%),
    linear-gradient(180deg, #f7f9f4 0%, #edf5f2 100%);
}
.news-page-hero::after {
  position: absolute;
  right: max(24px, calc((100vw - var(--max)) / 2));
  bottom: -72px;
  width: 230px;
  height: 230px;
  content: "";
  border: 38px solid rgba(0,82,127,.06);
  border-radius: 50%;
}
.news-list {
  display: grid;
  width: min(1600px, calc(100% - 80px));
  gap: 22px;
  max-width: none;
}
.news-list-item {
  display: block;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 16px 48px rgba(0,82,127,.07);
}
.news-list-image {
  float: right;
  display: grid;
  width: 320px;
  height: 360px;
  margin: 0 0 28px 36px;
  place-items: center;
  background: var(--blue-light);
  border-radius: 17px;
  overflow: hidden;
}
.news-list-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.news-list-copy {
  padding: clamp(27px, 4vw, 48px);
}
.news-list-copy::after {
  display: block;
  clear: both;
  content: "";
}
.news-list-copy time {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 11px;
  color: var(--green-dark);
  background: #edf8e8;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 850;
  letter-spacing: .03em;
}
.news-list-copy h2 {
  margin: 0 0 16px;
  color: var(--blue-dark);
  font-size: clamp(1.55rem, 2.5vw, 2.25rem);
  line-height: 1.12;
  letter-spacing: -.035em;
}
.news-list-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}
.news-list-link {
  display: inline-flex;
  margin-top: 24px;
  padding: 11px 17px;
  align-items: center;
  gap: 8px;
  color: #fff;
  background: var(--blue);
  border-radius: 999px;
  font-size: .86rem;
  font-weight: 800;
  text-decoration: none;
  transition: background 160ms ease, transform 160ms ease;
}
.news-list-link:hover,
.news-list-link:focus-visible {
  background: var(--blue-dark);
  transform: translateY(-2px);
}
.news-downloads {
  margin-top: 26px;
}
.news-downloads-title {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: .74rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.news-download-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.news-download-link {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--blue);
  font-size: .92rem;
  font-weight: 800;
  line-height: 1.35;
  text-decoration: none;
  transition: color 160ms ease;
}
.news-download-link:hover,
.news-download-link:focus-visible {
  color: var(--blue-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.news-download-icon {
  flex: 0 0 auto;
  font-size: 1.05rem;
  line-height: 1.15;
}
.news-empty {
  padding: clamp(30px, 6vw, 70px);
  color: var(--muted);
  background: var(--paper);
  border: 1px dashed #b9c9c2;
  border-radius: 24px;
  text-align: center;
}
.news-empty h2 { margin: 0 0 10px; color: var(--blue-dark); }
.news-empty p { margin: 0; }

.cta-band { position: relative; overflow: hidden; }
.cta-grid { display: grid; grid-template-columns: 1fr auto; gap: 45px; align-items: center; }
.cta-grid p { max-width: 650px; color: rgba(255,255,255,.75); font-size: 1.08rem; line-height: 1.7; }
.election-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 35px;
  align-items: center;
  margin-top: 70px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,.18);
}
.election-box strong { display: block; font-size: clamp(2rem, 5vw, 4rem); letter-spacing: -.05em; }
.election-box span { color: rgba(255,255,255,.68); }
.election-box a { color: #b4e88f; font-weight: 800; }

.page-hero { padding: 90px 0 80px; }
.page-hero .container { max-width: 920px; margin-left: max(24px, calc((100vw - var(--max)) / 2)); }
.page-hero h1,
.policy h1 {
  font-size: clamp(2.05rem, 4vw, 3.8rem);
  line-height: 1;
}
.title-line { display: block; }
@supports ((background-clip: text) or (-webkit-background-clip: text)) {
  .page-hero:not(.page-hero-blue) h1 {
    background: linear-gradient(110deg, #004368 0%, #006681 72%, #4b9f2d 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
.page-hero p:last-child { max-width: 720px; margin: 28px 0 0; color: var(--muted); font-size: 1.18rem; line-height: 1.7; }
.page-hero p a { color: var(--blue); font-weight: 750; text-underline-offset: 3px; }
.page-hero-blue { background: var(--blue-dark); }
.page-hero-blue h1 { color: #fff; }
.page-hero-blue p:last-child { color: rgba(255,255,255,.72); }
.contact-page-hero { padding-block: 72px; }
.contact-page-hero .contact-hero-layout {
  width: min(var(--max), calc(100% - 48px));
  max-width: var(--max);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(350px, .65fr);
  align-items: center;
  gap: clamp(38px, 5vw, 76px);
}
.contact-hero-copy { min-width: 0; }
.contact-page-hero .contact-hero-title {
  font-size: clamp(2.7rem, 3.65vw, 3.65rem);
  line-height: .98;
}
.contact-hero-title span { display: block; }
.contact-hero-title span:first-child { white-space: nowrap; }
.contact-page-hero .contact-hero-copy > p:last-child {
  max-width: 740px;
}
.contact-newsletter-hero { margin-top: 0; }

@media (max-width: 1080px) {
  .contact-page-hero .contact-hero-layout { grid-template-columns: 1fr; gap: 36px; }
  .contact-newsletter-hero { width: 100%; max-width: 720px; }
}
.team-page-hero .container { max-width: var(--max); margin-inline: auto; }
.team-page-hero h1 { max-width: 900px; }
.team-page-hero .team-subtitle {
  max-width: 760px;
  margin: 25px 0 0;
  color: rgba(255,255,255,.7);
  font-size: 1.08rem;
  line-height: 1.65;
}
.team-population {
  max-width: 920px;
  margin: 27px 0 0;
  color: #fff;
  font-size: 1.12rem;
  line-height: 1.68;
}
.local-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 34px;
}
.local-stat {
  min-height: 125px;
  padding: 22px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 17px;
}
.local-stat strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 1.8rem;
  letter-spacing: -.04em;
}
.local-stat span {
  color: rgba(255,255,255,.68);
  font-size: .78rem;
  line-height: 1.4;
}
.local-stat-combined strong {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.local-stat-combined strong b { font: inherit; }
.local-stat-combined strong em {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.45);
  font-style: normal;
}
.local-stat-labels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.local-stat-estimate { background: rgba(100,190,46,.16); border-color: rgba(169,229,129,.3); }
.local-stat-growth { background: rgba(100,190,46,.28); border-color: rgba(169,229,129,.5); }
.stats-source {
  margin: 18px 0 0 !important;
  color: rgba(255,255,255,.54) !important;
  font-size: .7rem !important;
  line-height: 1.5 !important;
}
.stats-source a { color: #b4e88f; }

.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.value-card { display: grid; grid-template-columns: 48px minmax(0, 1fr); column-gap: 16px; align-content: start; min-height: 190px; padding: 28px; background: #fff; border: 1px solid var(--line); border-radius: 20px; }
.value-icon { display: grid; width: 48px; height: 48px; place-items: center; color: #fff; background: var(--green); border-radius: 14px; font-weight: 850; }
.value-card h3 { align-self: center; margin: 0; font-size: 1.25rem; }
.value-card p { grid-column: 1 / -1; margin: 18px 0 0; color: var(--muted); line-height: 1.6; }

.story-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px, 10vw, 150px); }
.story-copy p { color: var(--muted); line-height: 1.75; }
.story-copy .lead { color: var(--ink); }
.quote-card { padding: 36px; color: #fff; background: var(--blue); border-radius: var(--radius); }
.quote-card p {
  margin: 0;
  color: #fff !important;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.5;
  -webkit-text-fill-color: #fff;
}

.candidate-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.candidate-grid:not(.candidate-grid--loaded) .candidate-card { display: none; }
.join-banner {
  display: grid;
  gap: 7px;
  padding: 23px 25px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-left: 7px solid var(--green);
  border-radius: 18px;
  box-shadow: 0 16px 38px rgba(0,82,127,.16);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.join-banner > span { color: rgba(255,255,255,.78); font-size: .86rem; }
.join-banner strong { font-size: 1.15rem; }
.join-banner strong span { color: #a9e581; }
.join-banner:hover,
.join-banner:focus-visible {
  box-shadow: 0 20px 46px rgba(0,82,127,.23);
  transform: translateY(-3px);
}
.candidate-card { overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 22px; }
.candidate-photo {
  position: relative;
  display: grid;
  aspect-ratio: 4 / 3.25;
  place-items: center;
  color: var(--blue);
  background: linear-gradient(145deg, var(--blue-light), #f8fbfc);
}
.candidate-photo.has-photo {
  background-position: center;
  background-size: cover;
}
.candidate-grid--without-photos .candidate-photo { display: none; }
.candidate-body { padding: 20px; }
.candidate-body h3 { margin: 7px 0 10px; font-size: 1.18rem; }
.candidate-body p { margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.55; }
.candidate-summary { margin-bottom: 14px !important; }
.candidate-why strong { color: var(--blue); }
.candidate-why {
  margin: 17px 0 0;
  padding: 15px 0 0;
  color: var(--muted);
  border-top: 4px solid var(--green);
}
.candidate-why p { margin-top: 6px !important; }
.candidate-contact {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.candidate-contact a {
  color: var(--blue);
  font-size: .88rem;
  font-weight: 750;
  overflow-wrap: anywhere;
  text-decoration: none;
}
.candidate-contact a:hover { text-decoration: underline; }

.program-nav { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 30px; }
.program-nav a { padding: 9px 13px; color: var(--blue); background: var(--blue-light); border-radius: 999px; font-size: .78rem; font-weight: 800; text-decoration: none; }
.program-intro { max-width: 900px; margin-bottom: 70px; padding-left: 24px; border-left: 5px solid var(--green); }
.program-intro p { margin: 0; }
.commitment-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.commitment-card { min-height: 360px; padding: 34px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); }
.commitment-card-wide { grid-column: 1 / -1; }
.commitment-card > span { display: block; margin-bottom: 30px; color: var(--green-dark); font-size: .76rem; font-weight: 850; letter-spacing: .1em; }
.commitment-card h3 { margin-bottom: 15px; font-size: 1.55rem; }
.commitment-card p { margin: 0; color: var(--muted); line-height: 1.68; }
.candidate-inline-link {
  color: var(--blue);
  font-weight: 750;
  text-decoration-line: underline;
  text-decoration-color: var(--green);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.candidate-inline-link:hover { color: var(--green-dark); }
.candidate-inline-link:focus-visible {
  outline: 3px solid rgba(100, 190, 46, .35);
  outline-offset: 3px;
  border-radius: 2px;
}
.commitment-card .commitment-note {
  margin-top: 20px;
  color: var(--blue);
  font-weight: 750;
}
.commitment-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}
.commitment-gallery a {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  background: var(--blue-light);
}
.commitment-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease;
}
.commitment-gallery a:hover img { transform: scale(1.035); }
.commitment-gallery a:focus-visible {
  outline: 3px solid rgba(100, 190, 46, .45);
  outline-offset: 3px;
}
.gallery-lightbox-open { overflow: hidden; }
.gallery-lightbox[hidden] { display: none; }
.gallery-lightbox {
  position: fixed;
  z-index: 120;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(3, 25, 40, .92);
  backdrop-filter: blur(7px);
}
.gallery-lightbox-dialog {
  position: relative;
  display: grid;
  width: min(1180px, 100%);
  max-height: calc(100dvh - 48px);
  grid-template-columns: 64px minmax(0, 1fr) 64px;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
}
.gallery-lightbox-figure {
  display: grid;
  min-width: 0;
  max-height: calc(100dvh - 190px);
  margin: 0;
  grid-column: 2;
  grid-row: 1;
}
.gallery-lightbox-image {
  display: block;
  width: 100%;
  max-height: calc(100dvh - 245px);
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 24px 65px rgba(0,0,0,.34);
  touch-action: pan-y;
}
.gallery-lightbox-caption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 4px 0;
  color: rgba(255,255,255,.82);
  font-size: .86rem;
}
.gallery-lightbox-counter {
  flex: 0 0 auto;
  color: #fff;
  font-weight: 800;
}
.gallery-lightbox-arrow,
.gallery-lightbox-close,
.gallery-lightbox-thumbnail {
  border: 0;
  cursor: pointer;
}
.gallery-lightbox-arrow {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: #fff;
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  font: inherit;
  font-size: 2.7rem;
  line-height: 1;
  transition: background .2s ease, transform .2s ease;
}
.gallery-lightbox-arrow:hover { background: rgba(100,190,46,.88); transform: scale(1.05); }
.gallery-lightbox-prev { grid-column: 1; grid-row: 1; }
.gallery-lightbox-next { grid-column: 3; grid-row: 1; }
.gallery-lightbox-close {
  position: fixed;
  z-index: 2;
  top: 20px;
  right: 20px;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: #fff;
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  font: inherit;
  font-size: 2rem;
  line-height: 1;
}
.gallery-lightbox-close:hover { color: #082f48; background: #fff; }
.gallery-lightbox-thumbnails {
  display: flex;
  max-width: 100%;
  grid-column: 2;
  grid-row: 2;
  justify-content: center;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: thin;
}
.gallery-lightbox-thumbnail {
  flex: 0 0 100px;
  height: 64px;
  padding: 0;
  overflow: hidden;
  background: #fff;
  border: 3px solid transparent;
  border-radius: 9px;
  opacity: .58;
  transition: opacity .2s ease, border-color .2s ease, transform .2s ease;
}
.gallery-lightbox-thumbnail:hover { opacity: .86; }
.gallery-lightbox-thumbnail.active {
  border-color: var(--green);
  opacity: 1;
  transform: translateY(-2px);
}
.gallery-lightbox-thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-lightbox button:focus-visible {
  outline: 3px solid #b4e88f;
  outline-offset: 3px;
}
.commitment-price { white-space: nowrap; }
.school-project-link { margin-top: 20px; }
.program-list { display: grid; gap: 20px; }
.program-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 45px;
  padding: 40px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.program-card h2 { font-size: clamp(1.9rem, 3vw, 2.8rem); }
.program-cols { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 2fr); gap: 32px; }
.program-cols h3 { margin-bottom: 11px; color: var(--green-dark); font-size: .77rem; letter-spacing: .08em; text-transform: uppercase; }
.program-cols ul { margin: 0; padding-left: 18px; color: var(--muted); line-height: 1.65; }
.program-cols li + li { margin-top: 6px; }
.program-action-lists { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 25px; }
.draft-chip { display: none; }

.filter-row { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 35px; }
.filter-row button { padding: 9px 14px; color: var(--blue); background: #fff; border: 1px solid var(--line); border-radius: 999px; cursor: pointer; font-size: .8rem; font-weight: 800; }
.filter-row button.active { color: #fff; background: var(--blue); border-color: var(--blue); }
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; }
.article-card { min-height: 330px; padding: 28px; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: 22px; }
.article-card .article-date { margin-bottom: auto; color: var(--green-dark); font-size: .72rem; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.article-card h2 { margin: 55px 0 13px; font-size: 1.45rem; }
.article-card p { margin: 0; color: var(--muted); line-height: 1.6; }
.article-card.hidden { display: none; }

.faq-list { max-width: 900px; }
.faq-list details { background: #fff; border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { padding: 25px 5px; color: var(--blue-dark); font-size: 1.05rem; font-weight: 800; cursor: pointer; list-style: none; }
.faq-list summary::after { float: right; content: "+"; color: var(--green-dark); font-size: 1.4rem; }
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p { max-width: 750px; margin: 0; padding: 0 5px 25px; color: var(--muted); line-height: 1.7; }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px, 9vw, 120px); }
.contact-details { min-width: 0; }
.contact-list { display: grid; gap: 12px; margin-top: 32px; }
.contact-item { padding: 20px; background: #fff; border: 1px solid var(--line); border-radius: 16px; }
.contact-item span { display: block; margin-bottom: 5px; color: var(--green-dark); font-size: .7rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.contact-item strong { color: var(--blue-dark); }
.contact-newsletter {
  margin-top: 20px;
  padding: 28px;
  color: #fff;
  background: linear-gradient(145deg, var(--blue) 0%, var(--blue-dark) 100%);
  border-radius: 20px 20px 54px 20px;
  box-shadow: 0 18px 50px rgba(0, 59, 94, .14);
}
.contact-newsletter-label {
  margin: 0 0 8px;
  color: #b8ef75;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.contact-newsletter h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  line-height: 1.08;
}
.contact-newsletter > p:not(.contact-newsletter-label) {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, .78);
  font-size: .86rem;
  line-height: 1.55;
}
.contact-newsletter-row { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 9px; }
.contact-newsletter-row input[type=email] {
  min-width: 0;
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  border: 2px solid transparent;
  border-radius: 12px;
  outline: none;
  font: inherit;
}
.contact-newsletter-row input[type=email]:focus {
  border-color: #b8ef75;
  box-shadow: 0 0 0 4px rgba(184, 239, 117, .2);
}
.contact-newsletter-row .button {
  padding-inline: 18px;
  color: var(--blue-dark);
  background: var(--green);
  border-color: var(--green);
  white-space: nowrap;
}
.contact-newsletter-row .button:hover { background: #78d43e; border-color: #78d43e; }
.contact-newsletter-consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 9px;
  margin-top: 14px;
  color: rgba(255, 255, 255, .76);
  font-size: .68rem;
  line-height: 1.45;
}
.contact-newsletter-consent input {
  width: 17px;
  height: 17px;
  margin: 1px 0 0;
  accent-color: var(--green);
}
.contact-newsletter .newsletter-message { color: #d8ffad; }
.contact-newsletter .newsletter-message.error { color: #ffd2d2; }
.contact-form { padding: 34px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 18px 55px rgba(0,82,127,.08); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.field { margin-bottom: 17px; }
.field label { display: block; margin-bottom: 7px; color: var(--ink); font-size: .82rem; font-weight: 800; }
.field input, .field textarea {
  width: 100%;
  padding: 14px 15px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 11px;
  outline: none;
}
.field input:focus, .field textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(100,190,46,.15); }
.field textarea { min-height: 150px; resize: vertical; }
.check { display: flex; gap: 10px; align-items: flex-start; margin: 8px 0 20px; color: var(--muted); font-size: .78rem; line-height: 1.5; }
.form-message { min-height: 22px; color: var(--green-dark); font-size: .82rem; font-weight: 700; }

.support-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.support-card { padding: 27px; background: #fff; border: 1px solid var(--line); border-radius: 20px; }
.support-card strong { display: block; margin-bottom: 9px; color: var(--blue-dark); }
.support-card p { margin: 0; color: var(--muted); line-height: 1.55; }
.support-card-link {
  color: inherit;
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.support-card-link:hover,
.support-card-link:focus-visible {
  border-color: var(--green);
  box-shadow: 0 14px 35px rgba(0,82,127,.1);
  transform: translateY(-3px);
}

.support-hero {
  padding: 52px 0 48px;
}
.support-hero .container {
  max-width: 1080px;
}
.support-hero h1 {
  max-width: 930px;
  font-size: clamp(2.4rem, 4.2vw, 4.2rem);
  line-height: .98;
}
.support-hero p:last-child {
  max-width: 850px;
  margin-top: 20px;
  font-size: 1.04rem;
  line-height: 1.55;
}
.support-hero + .section {
  padding: 56px 0 68px;
}
.support-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.support-option {
  position: relative;
  display: flex;
  min-height: 390px;
  padding: clamp(26px, 3vw, 36px);
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.support-option::after {
  position: absolute;
  right: -55px;
  bottom: -70px;
  width: 180px;
  height: 180px;
  content: "";
  background: var(--blue-light);
  border-radius: 50%;
  opacity: .7;
  pointer-events: none;
}
.support-option-number {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  place-items: center;
  color: #fff;
  background: var(--blue);
  border-radius: 15px;
  font-size: .9rem;
  font-weight: 850;
}
.support-option h2 {
  max-width: 580px;
  margin-bottom: 16px;
  font-size: clamp(1.75rem, 2.7vw, 2.8rem);
  line-height: 1.02;
}
.support-option > p:not(.eyebrow):not(.support-share-status),
.support-petition-copy > p:not(.eyebrow) {
  max-width: 680px;
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.58;
}
.support-option .button { position: relative; z-index: 1; }
.support-option-actions {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: auto;
}
.support-share-button { border: 0; cursor: pointer; }
.support-share-status { display: block; min-height: 24px; margin: 12px 0 0; color: var(--green-dark); font-size: .85rem; font-weight: 750; }
.support-option-share:only-child {
  min-height: 340px;
  grid-column: 1 / -1;
}
.support-option-petition {
  min-height: 0;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(30px, 5vw, 68px);
  background: #fff;
}
.support-option-petition::after { background: var(--green-light); }
.petition-interest-button { margin-top: 15px; border: 0; cursor: pointer; }
.petition-panel {
  position: relative;
  z-index: 1;
  padding: clamp(24px, 3vw, 34px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
}
.petition-counts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 30px;
}
.petition-counts div {
  padding: 20px;
  background: #fff;
  border-top: 5px solid var(--green);
  border-radius: 14px;
}
.petition-counts strong { display: block; color: var(--blue-dark); font-size: 2.5rem; line-height: 1; }
.petition-counts span { display: block; margin-top: 8px; color: var(--muted); font-size: .78rem; line-height: 1.35; }
.petition-panel h3 { margin-bottom: 12px; font-size: 1.15rem; }
.petition-requirements { margin: 0 0 25px; padding-left: 22px; color: var(--muted); line-height: 1.75; }
.petition-panel .button { width: 100%; }
.petition-original { margin: 18px 0 0; color: var(--ink); font-size: .84rem; font-weight: 700; line-height: 1.55; }
.petition-source { margin: 14px 0 0; color: var(--muted); font-size: .72rem; line-height: 1.5; }
.petition-source a { color: var(--blue); font-weight: 750; }

.policy { max-width: 830px; }
.policy h2 { margin: 50px 0 16px; font-size: 2rem; }
.policy p, .policy li { color: var(--muted); line-height: 1.75; }
.policy-note { padding: 18px; color: #5f531f; background: var(--warning); border-radius: 12px; }

.legal-draft { display: none !important; }

.site-footer { padding: 55px 0 30px; color: rgba(255,255,255,.72); background: #082f48; }
.footer-main { display: grid; grid-template-columns: 1.1fr .7fr .7fr; gap: 60px; padding-bottom: 42px; }
.footer-brand { display: flex; gap: 13px; align-items: center; margin-bottom: 18px; color: #fff; font-weight: 850; }
.footer-brand img {
  width: 52px;
  height: 52px;
  padding: 6px;
  object-fit: contain;
  background: #fff;
  border-radius: 13px;
}
.footer-about { max-width: 390px; line-height: 1.6; }
.footer-col strong { display: block; margin-bottom: 15px; color: #fff; }
.footer-col a { display: block; margin: 9px 0; text-decoration: none; }
.footer-col a:hover { color: #b4e88f; }
.footer-bottom { display: flex; padding-top: 24px; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.12); font-size: .78rem; }

@media (max-width: 1000px) {
  .priority-grid { grid-template-columns: repeat(3, 1fr); }
  .commitment-grid { grid-template-columns: 1fr; }
  .program-card { grid-template-columns: 1fr; }
  .program-cols { grid-template-columns: 1fr; }
  .candidate-grid { grid-template-columns: repeat(2, 1fr); }
  .local-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .site-header { min-height: 70px; padding: 0 20px; }
  .brand img { width: 42px; height: 42px; }
  .menu-toggle { display: flex; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .site-nav {
    position: fixed;
    z-index: 49;
    inset: 70px 0 0;
    display: none;
    height: calc(100dvh - 70px);
    padding: 30px 24px 48px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-top: 1px solid var(--line);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 16px 4px; border-bottom: 1px solid var(--line); font-size: 1.08rem; }
  .site-nav a::after { display: none; }
  .site-nav .nav-contact { margin-top: 22px; border-bottom: 0; text-align: center; }
  .site-nav .nav-facebook {
    width: auto;
    height: auto;
    margin-top: 12px;
    padding: 12px 4px;
    justify-content: flex-start;
    gap: 10px;
    color: var(--blue);
    background: transparent;
    border-radius: 0;
  }
  .site-nav .nav-facebook .facebook-mark {
    display: inline-grid;
    width: 30px;
    height: 30px;
    flex-basis: 30px;
    color: #fff;
    background: #1877f2;
  }
  .site-nav .nav-facebook .facebook-label {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
  }
  .campaign-hero .container, .intro-split, .story-grid, .contact-grid { grid-template-columns: 1fr; }
  .campaign-hero { min-height: auto; }
  .hero-info-card { max-width: 620px; }
  .section-head { grid-template-columns: 1fr; align-items: start; gap: 28px; }
  .event-card { grid-template-columns: 140px 1fr; }
  .news-grid, .article-grid { grid-template-columns: 1fr 1fr; }
  .news-card:first-child { grid-column: 1 / -1; }
  .news-list-image {
    float: none;
    width: 100%;
    height: auto !important;
    max-height: 320px;
    margin: 0 0 26px;
    aspect-ratio: 16 / 9;
  }
  .cta-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-main > div:first-child { grid-column: 1 / -1; }
  .support-option-petition { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .container { width: min(var(--max), calc(100% - 34px)); }
  .section { padding: 68px 0; }
  .page-hero { padding: 62px 0 58px; }
  .page-hero .container { width: auto; margin-inline: 17px; }
  .news-page-hero::after { display: none; }
  .news-list-copy { padding: 25px 22px 28px; }
  .contact-page-hero .contact-hero-layout { margin-inline: 17px; }
  .contact-page-hero .contact-hero-title { font-size: clamp(1.9rem, 8vw, 2.8rem); }
  h1 { font-size: clamp(3rem, 15vw, 4.5rem); }
  .campaign-hero { padding-top: 46px; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .hero-info-card { padding: 27px; border-radius: 24px 24px 65px 24px; }
  .intro-split, .story-grid, .contact-grid { gap: 38px; }
  .section-head { margin-bottom: 36px; }
  .priority-grid, .value-grid, .candidate-grid, .support-grid { grid-template-columns: 1fr; }
  .local-stats { grid-template-columns: 1fr 1fr; }
  .commitment-card { min-height: auto; }
  .commitment-card > span { margin-bottom: 24px; }
  .priority-card { min-height: 210px; }
  .priority-number { margin-bottom: 20px; }
  .event-card { grid-template-columns: 1fr; gap: 22px; padding: 22px; }
  .event-date { width: 100%; max-width: none; min-height: 132px; }
  .news-grid, .article-grid { grid-template-columns: 1fr; }
  .news-card:first-child { grid-column: auto; }
  .election-box { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form, .program-card { padding: 24px; }
  .program-action-lists { grid-template-columns: 1fr; gap: 6px; }
  .candidate-body { padding: 18px; }
  .join-banner { padding: 20px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-main > div:first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .support-hero { padding: 44px 0 40px; }
  .support-hero + .section { padding: 38px 0 52px; }
  .support-options { grid-template-columns: 1fr; }
  .support-option { min-height: 0; padding: 26px 24px; }
  .support-option-petition { grid-column: auto; min-height: 0; }
  .support-option-number { margin-bottom: 22px; }
  .petition-counts { grid-template-columns: 1fr; }
  .newsletter-modal { padding: 12px; }
  .newsletter-dialog { max-height: calc(100dvh - 24px); padding: 27px 22px; border-radius: 22px 22px 54px 22px; }
  .newsletter-logo { width: 54px; height: 54px; }
  .contact-newsletter { padding: 24px 20px; border-radius: 18px 18px 42px 18px; }
  .contact-newsletter-row { grid-template-columns: 1fr; }
  .contact-newsletter-row .button { width: 100%; }
  .petition-modal { padding: 12px; }
  .petition-dialog { max-height: calc(100dvh - 24px); padding: 27px 22px; border-radius: 22px 22px 54px 22px; }
  .petition-dialog-logo { width: 52px; height: 52px; }
  .gallery-lightbox { padding: 58px 10px 14px; }
  .gallery-lightbox-dialog {
    max-height: calc(100dvh - 72px);
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 1fr) auto;
    gap: 12px;
  }
  .gallery-lightbox-figure {
    max-height: calc(100dvh - 180px);
    grid-column: 1;
  }
  .gallery-lightbox-image { max-height: calc(100dvh - 245px); border-radius: 10px; }
  .gallery-lightbox-caption { padding-inline: 3px; }
  .gallery-lightbox-description { display: none; }
  .gallery-lightbox-thumbnails {
    grid-column: 1;
    justify-content: flex-start;
    padding: 2px 5px 5px;
  }
  .gallery-lightbox-thumbnail { flex-basis: 82px; height: 54px; }
  .gallery-lightbox-arrow {
    position: fixed;
    z-index: 2;
    top: 50%;
    width: 44px;
    height: 44px;
    font-size: 2.15rem;
    transform: translateY(-50%);
  }
  .gallery-lightbox-arrow:hover { transform: translateY(-50%); }
  .gallery-lightbox-prev { left: 8px; }
  .gallery-lightbox-next { right: 8px; }
  .gallery-lightbox-close { top: 10px; right: 10px; width: 44px; height: 44px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
