@import "tailwindcss";

@font-face {
  font-family: "Aktiv Grotesk Cd";
  src: url("/fonts/AktivGroteskCd-ThinItalic.ttf") format("truetype");
  font-style: italic;
  font-weight: 200;
  font-display: swap;
}

@font-face {
  font-family: "Aktiv Grotesk Cd";
  src: url("/fonts/AktivGroteskCd-Italic.ttf") format("truetype");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Aktiv Grotesk Cd";
  src: url("/fonts/AktivGroteskCd-XBoldItalic.ttf") format("truetype");
  font-style: italic;
  font-weight: 800;
  font-display: swap;
}

:root {
  --navy: #0074a6;
  --navy-2: #0074a6;
  --cyan: #ffb26e;
  --cyan-bright: #5bcbf5;
  --sky: rgba(255, 178, 110, .16);
  --paper: #f5f1e8;
  --white: #ffffff;
  --ink: #263238;
  --muted: #596568;
  --line: #a0abad;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: #0074a6;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }
main { width: 100%; margin: 0; background: var(--paper); box-shadow: none; }
main.hasContributionDock { padding-bottom: 80px; }

.srOnly {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.mobileBreak { display: none; }

.skipLink {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 1000;
  background: var(--cyan);
  color: var(--navy);
  padding: .85rem 1.25rem;
  font-weight: 800;
}
.skipLink:focus { top: 1rem; }

.siteHeader {
  min-height: 86px;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto auto;
  align-items: center;
  gap: 2.2rem;
  padding: 0 5vw;
  background: transparent;
  color: var(--white);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  border-bottom: 0;
  transition: background .22s ease, box-shadow .22s ease, min-height .22s ease, padding .22s ease;
}
.siteHeader:not(.isScrolled) { top: 3.25rem; right: auto; left: 50%; width: min(1600px, calc(100% - 3rem)); transform: translateX(-50%); }

.brandLockup { display: inline-flex; align-items: center; width: fit-content; }
.brandLogo { display: block; width: clamp(155px, 13vw, 190px); height: auto; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity .2s ease, transform .2s ease, visibility .2s; }
.brandLogoMobile { display: none; }
.siteHeader.isScrolled {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: auto;
  transform: none;
  min-height: 78px;
  background: rgba(255,255,255,.97);
  color: var(--ink);
  border-bottom: 1px solid rgba(0,116,166,.2);
  box-shadow: 0 10px 30px rgba(38,50,56,.12);
  backdrop-filter: blur(12px);
}
.siteHeader.isScrolled .brandLogo { opacity: 1; visibility: visible; transform: translateY(0); }
.siteHeader.isScrolled .headerCta { background: var(--navy); color: var(--white); }
@media (min-width: 761px) {
  .siteHeader.isScrolled .brandLockup { padding: .55rem .9rem; }
}
.wordmark { display: inline-flex; flex-direction: column; width: fit-content; }
.wordmarkName {
  color: var(--navy);
  font-family: "Aktiv Grotesk Cd", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(1.15rem, 1.55vw, 1.65rem);
  font-weight: 200;
  font-style: italic;
  letter-spacing: -.055em;
  line-height: .92;
}
.wordmarkName b { font-weight: 800; }
.wordmarkOffice {
  color: #a0abad;
  font-size: .56rem;
  font-weight: 800;
  letter-spacing: .23em;
  text-transform: uppercase;
  margin-top: .42rem;
}

.desktopNav { display: flex; align-items: center; gap: clamp(1rem, 1.8vw, 2rem); }
.desktopNav a {
  position: relative;
  padding: 1.7rem 0;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.desktopNav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 1.35rem;
  height: 3px;
  background: var(--cyan);
  transition: right .2s ease;
}
.desktopNav a:hover::after, .desktopNav a:focus-visible::after { right: 0; }

.headerCta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 1.55rem;
  background: var(--cyan);
  color: var(--ink);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
  transition: background .2s ease, transform .2s ease;
}
.headerCta:hover { background: var(--cyan-bright); color: var(--ink); transform: translateY(-2px); }

.languageToggle {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  padding: 0 .7rem;
  border: 1px solid rgba(255,255,255,.6);
  background: rgba(0,49,87,.2);
  color: currentColor;
  font-size: .64rem;
  font-weight: 900;
  letter-spacing: .08em;
}
.languageToggle span { opacity: .5; }
.languageToggle span.isActive { opacity: 1; color: var(--cyan-bright); }
.languageToggle i { opacity: .45; font-style: normal; }
.languageToggle:hover, .languageToggle:focus-visible { border-color: var(--cyan-bright); }
.siteHeader.isScrolled .languageToggle { border-color: rgba(0,116,166,.32); background: rgba(0,116,166,.06); }
.siteHeader.isScrolled .languageToggle span.isActive { color: var(--navy); }

.mobileNav { display: none; position: relative; }
.mobileNav summary { position: relative; z-index: 3; list-style: none; font-weight: 900; text-transform: uppercase; font-size: .75rem; cursor: pointer; }
.mobileNav summary::-webkit-details-marker { display: none; }
.mobileNav[open] summary { visibility: hidden; pointer-events: none; }
.mobileMenuBackdrop { display: none; }
.mobileNav[open] .mobileMenuBackdrop { position: fixed; inset: 0; z-index: 1; display: block; border: 0; background: rgba(0,0,0,.7); cursor: default; animation: mobileMenuFade .2s ease both; }
.mobileNav nav {
  position: fixed;
  top: 50%;
  left: 50%;
  right: auto;
  width: min(82vw, 360px);
  max-height: calc(100dvh - 2rem);
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  transform: translate(-50%, -50%);
  background: var(--paper);
  color: var(--ink);
  padding: 2rem 1.65rem 1.4rem;
  display: grid;
  gap: 1.3rem;
  box-shadow: 0 24px 70px rgba(0,20,31,.4);
  border-top: 6px solid var(--cyan-bright);
  z-index: 2;
  animation: mobileMenuRise .22s ease both;
}
.mobileMenuClose { position: absolute; top: .4rem; right: .55rem; width: 38px; height: 38px; border: 0; background: transparent; color: var(--navy); font-size: 2rem; line-height: 1; }
.mobileMenuLogo { width: min(205px, 72%); height: auto; margin: .25rem auto 0; }
.mobileMenuLinks { display: grid; border-top: 1px solid rgba(0,116,166,.2); }
.mobileNav .mobileMenuLinks a { padding: .88rem .15rem; border-bottom: 1px solid rgba(0,116,166,.2); color: var(--ink); font-size: .82rem; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }
.mobileNav .mobileMenuLinks a:hover, .mobileNav .mobileMenuLinks a:focus-visible { color: var(--navy); }
.mobileMenuDonate { min-height: 54px; display: flex; align-items: center; justify-content: space-between; padding: 0 1rem; background: var(--cyan); color: var(--ink); font-size: .74rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.mobileMenuDonate:hover, .mobileMenuDonate:focus-visible { background: var(--cyan-bright); }
.mobileMenuSocials { display: flex; justify-content: center; gap: .65rem; }
.mobileMenuSocials a { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(0,116,166,.38); border-radius: 50%; color: var(--navy); }
.mobileMenuSocials a:hover, .mobileMenuSocials a:focus-visible { background: var(--cyan-bright); border-color: var(--cyan-bright); color: var(--ink); }
@keyframes mobileMenuFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes mobileMenuRise { from { opacity: 0; } to { opacity: 1; } }

.introFrame {
  width: 100%;
  margin: 0;
  padding: 2rem 1.5rem 0;
  background: #0074a6;
}
.hero {
  position: relative;
  height: 90vh;
  height: 90svh;
  min-height: 0;
  width: min(1600px, 100%);
  margin: 0 auto;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 28px 90px rgba(0,49,72,.38);
}
.heroImage, .heroShade { position: absolute; inset: 0; }
.heroImage {
  background-image: url('/images/shaun-hero.jpg');
  background-size: cover;
  background-position: center;
}
.heroShade {
  background:
    linear-gradient(90deg, rgba(0,116,166,.9) 0%, rgba(0,116,166,.68) 41%, rgba(0,116,166,.05) 67%),
    linear-gradient(0deg, rgba(0,116,166,.58) 0%, transparent 35%);
}
.heroContent {
  position: relative;
  z-index: 3;
  width: min(700px, 52vw);
  padding: clamp(6.5rem, 14vh, 8.2rem) 0 1.5rem 7vw;
}
.heroLogo { display: block; width: clamp(210px, 20vw, 320px); height: auto; margin: 0 0 1rem; }

.eyebrow {
  margin: 0 0 1.4rem;
  color: #0074a6;
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  background: url('/brand/sailboat-icon.png') center / contain no-repeat;
}
.eyebrow.light { color: var(--cyan-bright); }

.hero h1, .sectionIntro h2, .prioritiesHeader h2, .volunteerPitch h2, .voteHeader h2 {
  font-family: "Aktiv Grotesk Cd", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-style: italic;
  font-weight: 800;
  letter-spacing: -.018em;
}
.hero h1 {
  margin: 0;
  max-width: 700px;
  font-size: clamp(3.2rem, 5.5vw, 5.8rem);
  letter-spacing: -.018em;
  line-height: .82;
}
.hero h1 em, .sectionIntro h2 em, .prioritiesHeader h2 em, .volunteerPitch h2 em {
  color: var(--cyan-bright);
  font-family: "Aktiv Grotesk Cd", "Arial Narrow", Arial, sans-serif;
  font-style: italic;
  font-weight: 400;
}
.heroIntro {
  max-width: 630px;
  margin: 1.1rem 0 1.3rem;
  color: rgba(255,255,255,.82);
  font-size: clamp(.9rem, 1.1vw, 1.08rem);
  line-height: 1.48;
}

.signupForm {
  display: grid;
  grid-template-columns: 1.25fr .8fr .72fr;
  gap: .35rem;
  align-items: stretch;
  width: min(830px, 82vw);
  background: transparent;
  color: var(--white);
  box-shadow: none;
}
.signupForm label { min-height: 58px; display: flex; align-items: center; background: rgba(0,116,166,.94); }
.signupForm label::after { content: ""; flex: 0 0 18px; width: 18px; height: 18px; margin-right: .8rem; background: url('/brand/sailboat-icon.png') center / contain no-repeat; opacity: .8; }
.signupForm input { width: 100%; min-width: 0; border: 0; background: transparent; padding: 0 .45rem 0 1rem; color: var(--white); outline: 0; font-size: .95rem; }
.signupForm input::placeholder { color: rgba(255,255,255,.68); opacity: 1; }
.signupForm label:focus-within { box-shadow: inset 0 -4px var(--cyan-bright), 0 0 0 1px var(--cyan-bright); }
.signupForm button {
  border: 0;
  background: var(--cyan-bright);
  color: var(--ink);
  padding: 0 .9rem;
  font-size: .72rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .12em;
  transition: background .18s ease;
}
.signupForm button:hover, .signupForm button:focus-visible { background: var(--cyan); }
.signupForm button:disabled, .submitButton:disabled { cursor: wait; opacity: .72; }
.mobileUpdatesLabel { display: none; }
.formNote { margin: .45rem 0 0; color: rgba(255,255,255,.62); font-size: .62rem; }
.heroSocials { display: flex; align-items: center; gap: .675rem; margin-top: .85rem; }
.heroSocials a { width: 51px; height: 51px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.5); color: var(--white); opacity: .58; transition: background .18s ease, border-color .18s ease, color .18s ease, opacity .18s ease, transform .18s ease; }
.heroSocials a:hover, .heroSocials a:focus-visible { background: var(--cyan); border-color: var(--cyan); color: var(--ink); opacity: 1; transform: translateY(-2px); }

.signupLightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background: rgba(0,31,47,.82);
  backdrop-filter: blur(8px);
  animation: lightboxFade .2s ease both;
}
.signupLightboxPanel {
  position: relative;
  width: min(520px, 100%);
  max-height: calc(100svh - 2.5rem);
  overflow-y: auto;
  padding: 2.2rem;
  border-top: 8px solid var(--cyan-bright);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 35px 100px rgba(0,20,31,.5);
  text-align: center;
  animation: lightboxRise .28s ease both;
}
.signupLightboxClose {
  position: absolute;
  top: .65rem;
  right: .75rem;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: var(--navy);
  font-size: 2rem;
  line-height: 1;
}
.signupLightboxClose:hover, .signupLightboxClose:focus-visible { color: var(--cyan); }
.signupLightboxLogo { width: min(235px, 68%); height: auto; margin: 0 auto 1.35rem; }
.signupLightboxKicker { margin: 0 0 .55rem; color: var(--navy); font-size: .67rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.signupLightboxPanel h2 { margin: 0; color: var(--navy); font-family: "Aktiv Grotesk Cd", "Arial Narrow", Arial, sans-serif; font-size: clamp(2.6rem, 7vw, 4rem); font-style: italic; font-weight: 800; letter-spacing: .025em; line-height: .9; }
.signupLightboxPanel > p:not(.signupLightboxKicker):not(.signupLightboxSocialLabel) { max-width: 420px; margin: 1rem auto 1.5rem; color: var(--muted); font-size: .96rem; line-height: 1.55; }
.signupLightboxAmounts { display: grid; grid-template-columns: repeat(4, 1fr); gap: .5rem; }
.signupLightboxAmounts a { min-height: 56px; display: grid; place-items: center; background: var(--navy); color: var(--white); font-size: .78rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; transition: background .18s ease, color .18s ease, transform .18s ease; }
.signupLightboxAmounts a:hover, .signupLightboxAmounts a:focus-visible { background: var(--cyan); color: var(--ink); transform: translateY(-2px); }
.signupLightboxSocialLabel { margin: 1.55rem 0 .7rem; color: var(--navy); font-size: .65rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.signupLightboxSocials { display: flex; justify-content: center; gap: .65rem; }
.signupLightboxSocials a { width: 50px; height: 50px; display: grid; place-items: center; border: 1px solid rgba(0,116,166,.35); border-radius: 50%; color: var(--navy); font-size: 1rem; transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease; }
.signupLightboxSocials a:hover, .signupLightboxSocials a:focus-visible { background: var(--cyan-bright); border-color: var(--cyan-bright); color: var(--ink); transform: translateY(-2px); }
.signupLightboxLater { margin-top: 1.25rem; border: 0; background: transparent; color: var(--muted); font-size: .72rem; font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
@keyframes lightboxFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes lightboxRise { from { opacity: 0; transform: translateY(18px) scale(.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
.heroSocials svg { width: 22.5px; height: 22.5px; }
.heroScroll {
  position: absolute;
  z-index: 3;
  right: 3.4vw;
  bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.heroScroll i { display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.52); border-radius: 50%; font-style: normal; }

.section { padding: clamp(5.5rem, 8vw, 9rem) 7vw; }
.sectionIntro { max-width: 900px; }
.sectionIntro h2, .prioritiesHeader h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(3rem, 5.5vw, 6rem);
  line-height: .88;
}
.sectionIntro.compact h2, .prioritiesHeader h2 { font-size: clamp(2.8rem, 4.6vw, 5rem); }

.meetSection { position: relative; isolation: isolate; overflow: hidden; background: var(--paper); view-timeline-name: --bio-scroll; view-timeline-axis: block; }
.meetSection::before { content: ""; position: absolute; z-index: 0; top: -4%; right: -4%; width: min(58vw, 920px); height: 58%; background: url('/images/rockledge-welcome-ghost.jpg') center 46% / cover no-repeat; opacity: .11; filter: grayscale(.2) saturate(.72) contrast(.9); mix-blend-mode: multiply; pointer-events: none; -webkit-mask-image: radial-gradient(ellipse at 76% 22%, #000 0%, #000 38%, transparent 76%); mask-image: radial-gradient(ellipse at 76% 22%, #000 0%, #000 38%, transparent 76%); animation: bioGhostParallax linear both; animation-timeline: --bio-scroll; animation-range: entry exit; }
.meetSection > * { position: relative; z-index: 1; }
@keyframes bioGhostParallax {
  from { transform: translateY(-5%); }
  to { transform: translateY(7%); }
}
.bioGrid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(3rem, 7vw, 8rem); align-items: center; margin-top: 5.5rem; }
.bioCollage { position: relative; min-height: 590px; }
.bioPhoto { position: absolute; background-size: cover; background-position: center; box-shadow: 0 22px 55px rgba(38,50,56,.15); }
.photoNeighbors { inset: 0 16% 8% 0; background-image: url('/images/community-neighbors.jpg'); }
.photoGraduate { width: 42%; height: 43%; right: 0; bottom: 0; background-image: url('/images/community-graduate.jpg'); border: 10px solid var(--paper); }
.photoTag { position: absolute; top: -1.4rem; left: -1.4rem; padding: 1rem 1.35rem; background: var(--cyan); color: var(--navy); font-size: .66rem; font-weight: 950; letter-spacing: .12em; text-transform: uppercase; transform: rotate(-3deg); }
.bioCopy { max-width: 690px; }
.bioCopy p { margin: 0 0 1.8rem; color: var(--muted); font-size: .98rem; line-height: 1.78; }
.bioCopy p:last-child { margin-bottom: 0; }
.bioCopy .lead { margin-top: 0; color: var(--navy); font-size: clamp(1.3rem, 2vw, 1.85rem); line-height: 1.4; font-weight: 750; letter-spacing: -.018em; }

.recordSection { position: relative; overflow: hidden; background: var(--navy); color: var(--white); }
.recordSection::after { content: "PROVEN"; position: absolute; top: 1rem; right: -1.5rem; color: rgba(255,255,255,.025); font-size: 18vw; font-weight: 950; line-height: 1; letter-spacing: -.08em; }
.lightIntro { position: relative; z-index: 1; }
.lightIntro h2 { color: var(--white); }
.recordGrid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 4.5rem; background: rgba(255,255,255,.2); }
.recordCard { min-height: 355px; padding: 2.4rem; background: var(--navy-2); transition: background .2s ease, transform .2s ease; }
.recordCard:hover { background: var(--navy); box-shadow: inset 0 -6px var(--cyan-bright); transform: translateY(-4px); }
.recordTop { display: flex; justify-content: space-between; color: var(--cyan-bright); font-size: .65rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.recordIcon { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(91,203,245,.45); color: var(--cyan-bright); }
.recordIcon svg { width: 22px; height: 22px; }
.recordCard h3 { margin: 4.8rem 0 1rem; max-width: 320px; font-family: "Aktiv Grotesk Cd", "Arial Narrow", Arial, sans-serif; font-style: italic; font-weight: 800; font-size: clamp(1.6rem, 2.2vw, 2.15rem); line-height: 1.05; letter-spacing: -.018em; }
.recordCard p { color: rgba(255,255,255,.68); line-height: 1.65; font-size: .9rem; }
.awardBand { position: relative; z-index: 1; display: grid; grid-template-columns: auto 1fr 1.15fr; gap: 2rem; align-items: center; margin-top: 1px; padding: 2.6rem 3rem; background: #74d3f6; color: var(--ink); }
.awardMark { font-size: 3rem; }
.awardBand div p { margin: 0 0 .35rem; font-size: .62rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.awardBand h3 { margin: 0; font-family: "Aktiv Grotesk Cd", "Arial Narrow", Arial, sans-serif; font-style: italic; font-weight: 800; font-size: 1.55rem; line-height: 1; letter-spacing: -.018em; }
.awardBand > p { margin: 0; font-size: .85rem; line-height: 1.6; }

.prioritiesSection {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--navy);
  view-timeline-name: --priorities-scroll;
  view-timeline-axis: block;
}
.priorityMedia { position: absolute; z-index: -1; inset: -10% 0; overflow: hidden; pointer-events: none; }
.priorityMedia::after { content: ""; position: absolute; inset: 0; background: linear-gradient(105deg, rgba(0,49,72,.9) 0%, rgba(0,74,106,.78) 55%, rgba(0,49,72,.86) 100%); }
.priorityVideo {
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.78) contrast(1.06);
  transform: translateY(-6%) scale(1.06);
  animation: priorityParallax linear both;
  animation-timeline: --priorities-scroll;
  animation-range: entry 0% exit 100%;
}
@keyframes priorityParallax {
  from { transform: translateY(-8%) scale(1.06); }
  to { transform: translateY(8%) scale(1.06); }
}
.prioritiesHeader { position: relative; z-index: 1; display: grid; grid-template-columns: 1.45fr .55fr; gap: 5rem; align-items: end; }
.prioritiesSection .eyebrow { color: var(--cyan-bright); }
.prioritiesSection .prioritiesHeader h2 { color: var(--white); }
.prioritiesHeader > p { margin: 0 0 .4rem; color: rgba(255,255,255,.78); font-size: 1.05rem; line-height: 1.7; }
.priorityGrid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, minmax(230px, 1fr)); gap: 1px; margin-top: 5rem; background: rgba(255,255,255,.22); border: 1px solid rgba(255,255,255,.26); overflow-x: auto; }
.priorityCard { position: relative; min-height: 350px; padding: 2rem; background: rgba(0,59,87,.42); backdrop-filter: blur(5px); overflow: hidden; transition: background .22s ease, color .22s ease; }
.priorityCard:hover { background: rgba(0,59,87,.56); }
.priorityIcon { width: 52px; height: 52px; display: grid; place-items: center; border: 1px solid rgba(91,203,245,.48); color: var(--cyan-bright); }
.priorityIcon svg { width: 27px; height: 27px; }
.priorityCard h3 { margin: 3.6rem 0 1rem; max-width: 440px; color: var(--white); font-family: "Aktiv Grotesk Cd", "Arial Narrow", Arial, sans-serif; font-style: italic; font-weight: 800; font-size: clamp(1.55rem, 1.7vw, 2rem); line-height: 1; letter-spacing: -.018em; }
.priorityCard p { max-width: 530px; color: rgba(255,255,255,.78); line-height: 1.7; }
.priorityArrow { position: absolute; top: 2rem; right: 2.2rem; color: rgba(255,255,255,.64); font-size: 1.5rem; transition: transform .2s ease; }
.priorityCard:hover .priorityArrow { transform: translate(3px,-3px); color: var(--cyan); }

@media (prefers-reduced-motion: reduce) {
  .priorityVideo { animation: none; transform: scale(1.06); }
}

[hidden] { display: none !important; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; pointer-events: none !important; }
.heroSocials a, .footerSocials a, .mobileMenuSocials a, .signupLightboxSocials a { font-family: Arial, sans-serif; font-weight: 900; line-height: 1; }

.communitySection { min-height: 540px; display: grid; grid-template-columns: .9fr 1.2fr .9fr; background: #74d3f6; }
.communityPhoto { background-size: cover; background-position: center; min-height: 460px; filter: saturate(.82); }
.photoForum { background-image: url('/images/community-forum.jpg'); }
.photoFamily { background-image: url('/images/community-family.jpg'); }
.communityStatement { padding: 5rem 4rem; display: flex; flex-direction: column; justify-content: center; color: var(--ink); }
.quoteMark { height: 3.2rem; font-family: Georgia, serif; font-size: 6rem; line-height: .8; }
.communityStatement blockquote { margin: 1.5rem 0 2rem; font-family: "Aktiv Grotesk Cd", "Arial Narrow", Arial, sans-serif; font-style: italic; font-size: clamp(1.6rem, 2.4vw, 2.7rem); font-weight: 800; line-height: 1.08; letter-spacing: -.018em; }
.communityStatement p { margin: 0; font-size: .72rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }

.volunteerSection { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(3rem, 7vw, 7.5rem); background: var(--navy); color: var(--white); }
.volunteerPitch h2 { margin: 0; color: var(--white); font-size: clamp(3rem, 5vw, 5.5rem); line-height: .88; }
.volunteerPitch > p:not(.eyebrow) { color: rgba(255,255,255,.7); line-height: 1.7; font-size: 1rem; }
.volunteerImage { min-height: 330px; margin-top: 2.5rem; background: url('/images/community-speaking.jpg') center 34% / cover; border-bottom: 8px solid var(--cyan); }
.volunteerForm { padding: clamp(2rem, 4vw, 4.2rem); background: var(--white); color: var(--ink); }
.formTitle { display: flex; align-items: center; gap: 1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line); }
.formTitle.second { margin-top: 3rem; }
.formTitle span { display: grid; place-items: center; width: 34px; height: 34px; background: var(--cyan); color: var(--ink); border-radius: 50%; font-size: .7rem; font-weight: 950; }
.formTitle h3 { margin: 0; color: var(--navy); font-family: "Aktiv Grotesk Cd", "Arial Narrow", Arial, sans-serif; font-style: italic; font-weight: 800; font-size: 1.35rem; letter-spacing: -.018em; }
.fieldRow { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.25rem; }
.fieldRow label { color: var(--muted); font-size: .65rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.fieldRow input { width: 100%; margin-top: .55rem; border: 1px solid var(--line); background: #f7f7f5; color: var(--ink); padding: .95rem; outline: 0; }
.fieldRow input:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(255,178,110,.16); }
.checkGrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .7rem; margin-top: 1.25rem; }
.checkOption { position: relative; }
.checkOption input { position: absolute; opacity: 0; }
.checkOption span { display: block; padding: .95rem 1rem; border: 1px solid var(--line); color: var(--muted); font-size: .8rem; font-weight: 750; transition: all .15s ease; }
.checkOption input:checked + span { background: var(--sky); border-color: var(--cyan); color: var(--ink); box-shadow: inset 4px 0 var(--cyan); }
.checkOption input:focus-visible + span { outline: 3px solid rgba(255,178,110,.35); outline-offset: 2px; }
.submitButton { width: 100%; margin-top: 1.7rem; border: 0; padding: 1.2rem; background: var(--cyan); color: var(--ink); display: flex; justify-content: space-between; font-size: .75rem; font-weight: 950; letter-spacing: .1em; text-transform: uppercase; transition: background .2s ease; }
.submitButton:hover { background: var(--cyan-bright); }
.formFinePrint { margin: .8rem 0 0; color: var(--muted); font-size: .66rem; line-height: 1.5; }

.voteSection { position: relative; display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: clamp(3rem, 7vw, 8rem); align-items: start; background: var(--paper); }
.voteHeader h2 { margin: 0; color: var(--navy); font-size: clamp(3.2rem, 5.4vw, 5.5rem); line-height: .86; }
.voteHeader > p:last-child { color: var(--muted); line-height: 1.65; max-width: 450px; }
.voteResources { min-width: 0; }
.voteLinks { border-top: 1px solid rgba(160,171,173,.72); }
.voteLinks a { min-height: 70px; display: grid; grid-template-columns: 36px 1fr auto; align-items: center; gap: 1rem; border-bottom: 1px solid rgba(160,171,173,.72); transition: padding .18s ease, color .18s ease; }
.voteLinks a:hover { color: #0074a6; padding-left: .5rem; }
.voteLinks span { color: var(--muted); font-size: .65rem; }
.voteLinks strong { font-size: .84rem; }
.voteLinks i { font-style: normal; font-size: 1.1rem; }
.officialNote { margin: 1rem 0 0; color: var(--muted); font-size: .65rem; line-height: 1.55; }

.contributionDock {
  position: fixed;
  z-index: 70;
  right: 0;
  bottom: 0;
  left: 0;
  width: auto;
  transform: none;
  min-height: 80px;
  padding: .8rem calc(5vw + 2.8rem) .8rem 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: #0074a6;
  color: var(--white);
  box-shadow: 0 -12px 35px rgba(0,49,72,.22);
  animation: contributionDockEnter .28s ease-out both;
}
.contributionDock::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: calc(100% - 1px);
  left: 0;
  height: 28px;
  background: url('/brand/contribution-wave.png') 0 0 / 180px 28px repeat-x;
  animation: contributionWaveDrift 6s linear infinite;
  pointer-events: none;
}
.contributionDockMessage { display: flex; align-items: center; gap: 1rem; }
.contributionDockIcon { flex: 0 0 auto; width: 62px; height: 62px; object-fit: contain; }
.contributionDockCopy { display: flex; flex-direction: column; gap: .2rem; }
.contributionDockCopy span { color: var(--cyan-bright); font-size: .62rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.contributionDockCopy strong { font-family: "Aktiv Grotesk Cd", "Arial Narrow", Arial, sans-serif; font-size: 1.25rem; font-style: italic; letter-spacing: -.018em; }
.contributionButtons { display: flex; gap: .55rem; }
.contributionButtons a { min-width: 74px; min-height: 44px; border: 1px solid rgba(255,255,255,.68); padding: 0 1rem; background: var(--white); color: #0074a6; display: inline-flex; align-items: center; justify-content: center; font-size: .72rem; font-weight: 950; letter-spacing: .06em; text-transform: uppercase; transition: background .18s ease, color .18s ease, transform .18s ease; }
.contributionButtons a:last-child { min-width: 96px; }
.contributionButtons a:hover, .contributionButtons a:focus-visible { background: var(--cyan-bright); color: var(--navy); transform: translateY(-2px); }
.contributionDismiss { position: absolute; top: 50%; right: 1rem; width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; background: transparent; color: var(--white); display: grid; place-items: center; font-size: 1.4rem; line-height: 1; transition: background .18s ease, color .18s ease; transform: translateY(-50%); }
.contributionDismiss:hover, .contributionDismiss:focus-visible { background: var(--white); color: #0074a6; }
@keyframes contributionDockEnter {
  from { opacity: 0; transform: translateY(100%); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes contributionWaveDrift {
  to { background-position-x: 180px; }
}

.precinctMapSection { position: relative; width: 100%; overflow: hidden; background: #eef2f7; }
.precinctMapFrame { display: block; width: 100%; height: 50vh; border: 0; background: #eef2f7; }

footer { background: #003b57; color: rgba(255,255,255,.78); padding: 4rem 1.5rem 2.25rem; }
.footerSimple { width: min(1180px, 100%); margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 1.85rem; text-align: center; }
.footerBrandLockup { display: block; width: fit-content; background: transparent; }
.footerBrandLogo { display: block; width: min(320px, 80vw); height: auto; }
.footerContactLines { display: flex; flex-direction: column; gap: .5rem; font-size: .92rem; }
.footerContactLines strong { color: var(--white); font-weight: 800; }
.footerContactLines a { color: rgba(255,255,255,.78); }
.footerContactLines a:hover { color: var(--cyan-bright); }
.footerSocials { display: flex; justify-content: center; gap: .75rem; }
.footerSocials a { width: 42px; height: 42px; display: grid; place-items: center; border: 1.5px solid rgba(255,255,255,.4); border-radius: 50%; color: var(--white); transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease; }
.footerSocials a:hover, .footerSocials a:focus-visible { background: var(--cyan); border-color: var(--cyan); color: var(--ink); transform: translateY(-2px); }
.footerSocials svg { width: 18px; height: 18px; }
.footerLegal { width: 100%; padding-top: 1.65rem; border-top: 1px solid rgba(255,255,255,.14); display: grid; justify-items: center; gap: 1.1rem; color: rgba(255,255,255,.62); font-size: .58rem; line-height: 1.55; text-transform: uppercase; }
.footerLinks { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; row-gap: .65rem; }
.footerLinks a { position: relative; padding: 0 .9rem; color: rgba(255,255,255,.78); font-size: .68rem; font-weight: 800; }
.footerLinks a + a::before { content: ""; position: absolute; left: 0; top: 50%; width: 1px; height: 12px; background: rgba(255,255,255,.3); transform: translateY(-50%); }
.footerLinks a:hover { color: var(--white); }
.footerLegal p { max-width: 800px; margin: 0; }
.footerLegal .campaignDisclaimer { width: min(860px, 100%); max-width: none; padding: 1rem 1.35rem; border: 1px solid rgba(255,255,255,.48); color: rgba(255,255,255,.86); font-size: .76rem; font-weight: 750; line-height: 1.55; letter-spacing: .035em; }
.mdwMark { display: inline-flex; align-items: center; color: rgba(255,255,255,.9); text-transform: none; }
.mdwMark span { max-width: 0; margin-right: 0; overflow: hidden; color: var(--white); opacity: 0; white-space: nowrap; font-size: .8rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; transition: max-width .45s cubic-bezier(.2,.8,.2,1), opacity .3s cubic-bezier(.2,.8,.2,1), margin .45s cubic-bezier(.2,.8,.2,1); }
.mdwMark sup { font-size: .62em; vertical-align: super; }
.mdwMark img { flex: none; width: auto; height: 26px; opacity: .7; filter: brightness(0) invert(1); transition: opacity .3s cubic-bezier(.2,.8,.2,1); }
.mdwMark:hover span, .mdwMark:focus-visible span { max-width: 420px; margin-right: 14px; opacity: 1; }
.mdwMark:hover img, .mdwMark:focus-visible img { opacity: 1; }

.legalHeader { min-height: 96px; padding: 1.15rem 7vw; background: #003b57; color: var(--white); display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.legalHeader > a img { width: clamp(165px, 17vw, 230px); height: auto; }
.legalHeader nav { display: flex; align-items: center; gap: 1.5rem; }
.legalHeader nav a { color: rgba(255,255,255,.8); font-size: .7rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.legalHeader nav a:hover { color: var(--cyan-bright); }
.legalPage { min-height: 70vh; padding: clamp(5rem, 8vw, 8rem) max(7vw, calc((100vw - 1180px) / 2)); background: var(--paper); }
.legalHero { max-width: 900px; padding-bottom: 3rem; border-bottom: 1px solid rgba(0,116,166,.22); }
.legalHero > p { margin: 0 0 1rem; color: var(--navy); font-size: .7rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.legalHero h1 { margin: 0; color: var(--navy); font-family: "Aktiv Grotesk Cd", "Arial Narrow", Arial, sans-serif; font-size: clamp(3.6rem, 8vw, 7rem); font-style: italic; font-weight: 800; letter-spacing: -.018em; line-height: .86; }
.legalHero span { display: block; margin-top: 1.5rem; color: var(--muted); font-size: .72rem; font-weight: 750; letter-spacing: .06em; text-transform: uppercase; }
.legalContent { max-width: 900px; padding-top: 2rem; }
.legalContent h2 { margin: 3rem 0 .85rem; color: var(--navy); font-family: "Aktiv Grotesk Cd", "Arial Narrow", Arial, sans-serif; font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-style: italic; font-weight: 800; letter-spacing: -.01em; }
.legalContent p, .legalContent li { color: var(--muted); font-size: .98rem; line-height: 1.78; }
.legalContent p { margin: 0 0 1.2rem; }
.legalContent ul { margin: 0 0 1.5rem; padding-left: 1.25rem; }
.legalContent li { margin-bottom: .6rem; }
.legalContent li::marker { color: var(--cyan); }
.legalContent a { color: var(--navy); font-weight: 800; text-decoration: underline; text-decoration-color: var(--cyan); text-underline-offset: 3px; }
.legalFooter { padding: 3rem 7vw 2rem; display: flex; flex-direction: column; align-items: center; gap: 1.35rem; text-align: center; }
.legalFooter > img { width: min(230px, 70vw); height: auto; }
.legalFooter nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 1.5rem; }
.legalFooter nav a { color: rgba(255,255,255,.76); font-size: .67rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.legalFooter nav a:hover { color: var(--white); }
.legalFooter p { margin: .25rem 0 0; padding: .8rem 1.1rem; border: 1px solid rgba(255,255,255,.4); color: rgba(255,255,255,.82); font-size: .68rem; font-weight: 750; letter-spacing: .04em; text-transform: uppercase; }

@media (max-width: 1120px) {
  .siteHeader { grid-template-columns: 1fr auto auto; }
  .desktopNav, .headerCta { display: none; }
  .mobileNav { display: block; }
  .heroContent { width: 62vw; }
  .bioGrid { grid-template-columns: 1fr; }
  .bioCollage { max-width: 680px; }
  .recordCard { padding: 2rem; }
  .prioritiesHeader { grid-template-columns: 1fr; gap: 2rem; }
  .communityStatement { padding: 4rem 2rem; }
  .volunteerSection { grid-template-columns: 1fr; }
  .volunteerPitch { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 3rem; align-items: end; }
  .volunteerPitch .eyebrow, .volunteerPitch h2 { grid-column: 1; }
  .volunteerPitch > p:not(.eyebrow) { grid-column: 1; }
  .volunteerImage { grid-column: 2; grid-row: 1 / 4; margin: 0; }
  .voteSection { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  main { width: 100%; box-shadow: none; }
  .introFrame { width: 100%; margin: 0; padding: 0; }
  .siteHeader { min-height: 88px; grid-template-columns: 1fr auto auto auto; gap: .55rem; padding: .8rem 1rem; background: #003b57; color: var(--white); }
  .siteHeader:not(.isScrolled) { top: 0; right: 0; left: 0; width: 100%; transform: none; }
  .brandLogo { display: none; }
  .brandLogoMobile { display: block; width: clamp(118px, 34vw, 148px); height: auto; }
  .headerCta { min-height: 44px; padding: 0 1.15rem; display: inline-flex; border-radius: 0; }
  .languageToggle { min-height: 44px; padding: 0 .5rem; border-color: rgba(255,255,255,.45); background: transparent; }
  .mobileNav summary { width: 48px; height: 48px; display: grid; place-items: center; color: var(--white); font-size: 0; }
  .mobileNav summary::before { content: "☰"; color: currentColor; font-size: 2rem; font-weight: 400; line-height: 1; }
  .siteHeader:not(.isScrolled) .mobileNav summary { color: var(--white); }
  .siteHeader.isScrolled {
    width: 100%;
    min-height: 58px;
    padding: .35rem .75rem;
    background: #003b57;
    color: var(--white);
    border-bottom-color: rgba(255,255,255,.12);
    /* Safari makes a blurred ancestor the containing block for fixed children.
       The mobile menu is a viewport lightbox, so it must not inherit the
       header's short positioning context. */
    backdrop-filter: none;
  }
  .siteHeader.isScrolled .brandLogoMobile { width: 104px; }
  .siteHeader.isScrolled .headerCta { min-height: 40px; padding: 0 .9rem; }
  .siteHeader.isScrolled .languageToggle { min-height: 40px; padding: 0 .45rem; border-color: rgba(255,255,255,.35); background: transparent; }
  .siteHeader.isScrolled .languageToggle span.isActive { color: var(--cyan-bright); }
  .siteHeader.isScrolled .mobileNav summary { width: 40px; height: 40px; }
  .siteHeader.isScrolled .mobileNav nav { top: 50%; }
  .siteHeader.isScrolled .headerCta { background: var(--cyan); color: var(--ink); }
  .mobileNav nav { top: 50%; }
  main.hasContributionDock { padding-bottom: 66px; }
  .contributionDock { width: 100%; min-height: 66px; grid-template-columns: 108px 1fr; display: grid; gap: .65rem; padding: .65rem 2.8rem .65rem .8rem; }
  .contributionDismiss { right: .45rem; width: 30px; height: 30px; }
  .contributionDockMessage { gap: .4rem; }
  .contributionDockIcon { width: 34px; height: 34px; }
  .contributionDockCopy span { font-size: .5rem; line-height: 1.35; }
  .contributionDockCopy strong { display: none; }
  .contributionButtons { display: grid; grid-template-columns: repeat(4, 1fr); gap: .3rem; }
  .contributionButtons a, .contributionButtons a:last-child { min-width: 0; min-height: 40px; padding: 0 .35rem; font-size: .62rem; }
  .hero { width: 100%; height: auto; min-height: 0; max-height: none; margin: 0; padding: 88px 0 0; background: #003b57; box-shadow: none; overflow: hidden; }
  .heroImage { position: relative; inset: auto; width: calc(100% - 2rem); height: min(76vw, 360px); margin: 0 1rem; background-image: url('/images/mobile-top-fold.jpg'); background-position: center top; background-size: cover; }
  .heroShade { display: none; }
  .heroContent { position: relative; width: 100%; height: auto; padding: 0 1rem 2rem; display: flex; flex-direction: column; align-items: center; }
  .heroLogo { display: none; }
  .hero h1 { order: 1; width: 100%; max-width: 390px; margin: -1.5rem auto 1.4rem; color: var(--white); text-align: center; font-size: clamp(2.65rem, 12.8vw, 3.8rem); line-height: .86; text-shadow: 0 5px 24px rgba(0,32,49,.42); }
  .heroIntro, .heroContent .eyebrow { display: none; }
  .signupForm { order: 2; width: 100%; max-width: 390px; grid-template-columns: 1fr; gap: .5rem; padding: 0; border: 0; border-radius: 0; background: transparent; backdrop-filter: none; }
  .signupForm label { min-height: 66px; border-radius: 0; background: rgba(0,116,166,.94); }
  .signupForm input { padding: 0 1.25rem; color: var(--white); font-size: 1rem; }
  .signupForm input::placeholder { color: rgba(255,255,255,.62); }
  .signupForm label:nth-of-type(1) { grid-column: auto; }
  .signupForm button { grid-column: auto; min-height: 66px; border-radius: 0; background: var(--cyan); color: var(--ink); font-size: .8rem; }
  .desktopJoinLabel, .signupArrow { display: none; }
  .mobileUpdatesLabel { display: inline; }
  .formNote { order: 3; display: block; width: 100%; max-width: 390px; margin: .65rem 0 0; color: rgba(255,255,255,.58); text-align: center; font-size: .54rem; line-height: 1.45; }
  .mobileBreak { display: none; }
  .heroSocials { display: none; }
  .heroScroll { display: none; }
  .signupLightbox { padding: .75rem; }
  .signupLightboxPanel { max-height: calc(100svh - 1.5rem); padding: 1.7rem 1.2rem 1.35rem; }
  .signupLightboxLogo { width: min(205px, 68%); margin-bottom: 1rem; }
  .signupLightboxPanel h2 { font-size: clamp(2.45rem, 12vw, 3.35rem); }
  .signupLightboxPanel > p:not(.signupLightboxKicker):not(.signupLightboxSocialLabel) { margin: .85rem auto 1.2rem; font-size: .88rem; }
  .signupLightboxAmounts { grid-template-columns: repeat(2, 1fr); }
  .signupLightboxAmounts a { min-height: 50px; }
  .signupLightboxSocialLabel { margin-top: 1.25rem; }
  .signupLightboxSocials a { width: 46px; height: 46px; }
  .section { padding: 5rem 1.25rem; }
  .meetSection::before { top: 0; right: -18%; width: 112%; height: 34%; opacity: .08; }
  .sectionIntro h2, .prioritiesHeader h2, .volunteerPitch h2, .voteHeader h2 { font-size: clamp(2.7rem, 13vw, 4.4rem); }
  .priorityGrid { grid-template-columns: repeat(4, minmax(250px, 82vw)); scroll-snap-type: x mandatory; }
  .priorityCard { min-height: 320px; scroll-snap-align: start; }
  .bioGrid { margin-top: 3.5rem; gap: 3rem; }
  .bioCollage { min-height: 440px; }
  .photoNeighbors { right: 10%; }
  .photoGraduate { width: 44%; height: 40%; }
  .recordGrid { grid-template-columns: 1fr; }
  .recordCard { min-height: auto; }
  .recordCard h3 { margin-top: 3rem; }
  .awardBand { grid-template-columns: auto 1fr; padding: 2rem 1.5rem; }
  .awardBand > p { grid-column: 1 / -1; }
  .priorityGrid { grid-template-columns: 1fr; margin-top: 3.5rem; }
  .priorityCard { min-height: 290px; padding: 2rem; }
  .priorityCard h3 { margin-top: 4rem; }
  .communitySection { grid-template-columns: 1fr; }
  .communityPhoto { min-height: 330px; }
  .photoFamily { display: none; }
  .communityStatement { padding: 4rem 1.5rem; }
  .volunteerPitch { display: block; }
  .volunteerImage { margin-top: 2rem; min-height: 280px; }
  .volunteerForm { padding: 2rem 1.2rem; }
  .fieldRow, .checkGrid { grid-template-columns: 1fr; }
  .voteSection { grid-template-columns: 1fr; }
  .precinctMapFrame { height: 50vh; }
  footer { padding: 3.5rem 1.25rem 1.75rem; }
  .footerLinks a { padding: 0 .6rem; }
  .legalHeader { padding: 1rem 1.25rem; }
  .legalHeader > a img { width: 150px; }
  .legalHeader nav a:first-child { display: none; }
  .legalPage { padding: 4rem 1.25rem; }
  .legalHero h1 { font-size: clamp(3.2rem, 17vw, 5rem); }
  .legalFooter { padding: 2.5rem 1.25rem 1.5rem; }
}

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