/* ============================================================
   Nicole Trombetta — Ward 10 | Campaign Site Styles
   Palette: Navy #022b67 · Green #3c772a · White · Sky wash
   ============================================================ */

:root {
  --navy:        #022b67;
  --navy-deep:   #021d46;
  --navy-ink:    #0d2a52;
  --green:       #3c772a;
  --green-hi:    #4c9636;
  --green-soft:  #e7f1e2;
  --sky:         #cfe0f4;
  --sky-soft:    #eef4fb;
  --paper:       #f8fafd;
  --white:       #ffffff;
  --ink:         #16233a;
  --muted:       #5b6b83;
  --line:        #dfe7f2;
  --shadow-sm:   0 2px 10px rgba(2, 43, 103, .07);
  --shadow-md:   0 10px 34px rgba(2, 43, 103, .12);
  --shadow-lg:   0 24px 64px rgba(2, 43, 103, .18);
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --font-body:    'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-display: 'Oswald', 'Inter', sans-serif;
  --font-script:  'Caveat', cursive;
  --nav-h: 74px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
html:focus-within { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; }
button { font: inherit; cursor: pointer; }
::selection { background: var(--navy); color: #fff; }

:target { scroll-margin-top: calc(var(--nav-h) + 12px); }

/* ---------- Layout helpers ---------- */
.container { width: min(1180px, 92%); margin-inline: auto; }
.section { padding: clamp(72px, 9vw, 128px) 0; }
.section--navy { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%); color: #eaf1fb; }
.section--tint { background: var(--sky-soft); }

/* ---------- Type ---------- */
.h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4.3vw, 3.1rem);
  line-height: 1.12;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 20px;
}
.h2 em { font-style: normal; color: var(--green); }
.h2--light { color: #fff; }
.h2--light em { color: #8fd172; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 26px; height: 3px; border-radius: 2px; background: var(--green); }
.eyebrow--light { color: #9fd68a; }
.eyebrow--light::before { background: #9fd68a; }

.section-head { max-width: 720px; margin: 0 auto 26px; text-align: center; }
.section-head .eyebrow { justify-content: center; }
.section-head__sub { color: var(--muted); font-size: 1.06rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 13px 26px;
  font-size: .98rem;
  line-height: 1.2;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  will-change: transform;
}
.btn svg { width: 19px; height: 19px; flex: none; }
.btn:active { transform: translateY(1px) scale(.99); }

.btn--green {
  background: linear-gradient(135deg, var(--green-hi), var(--green));
  color: #fff;
  box-shadow: 0 8px 22px rgba(60, 119, 42, .35);
}
.btn--green:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(60, 119, 42, .42); }

.btn--navy {
  background: linear-gradient(135deg, #0a3d8f, var(--navy));
  color: #fff;
  box-shadow: 0 8px 22px rgba(2, 43, 103, .32);
}
.btn--navy:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(2, 43, 103, .4); }

.btn--ghost {
  background: rgba(255,255,255,.7);
  color: var(--navy);
  border-color: rgba(2,43,103,.25);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover { border-color: var(--navy); background: #fff; transform: translateY(-2px); box-shadow: var(--shadow-sm); }

.btn--lg { padding: 16px 30px; font-size: 1.02rem; }
.btn--block { width: 100%; }
.btn--nav { padding: 10px 20px; font-size: .9rem; box-shadow: 0 4px 14px rgba(60,119,42,.3); }
.btn[disabled] { opacity: .6; pointer-events: none; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .25s ease, box-shadow .25s ease;
}
.nav--solid { background: rgba(255,255,255,.92); backdrop-filter: blur(12px); box-shadow: 0 2px 20px rgba(2,43,103,.1); }
.nav__inner {
  width: min(1240px, 94%);
  margin-inline: auto;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav__brand { display: inline-flex; align-items: center; gap: 10px; }
.nav__leaf { width: 22px; height: 22px; fill: var(--green); }
.nav__name {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--navy);
  white-space: nowrap;
}
.nav__name strong { font-weight: 700; }
.nav__ward {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  color: #fff;
  background: var(--navy);
  border-radius: 6px;
  padding: 4px 8px;
  text-transform: uppercase;
}
.nav__links { display: flex; align-items: center; gap: 26px; }
.nav__links > a:not(.btn) {
  font-weight: 600;
  font-size: .95rem;
  color: var(--navy-ink);
  position: relative;
  padding: 6px 0;
}
.nav__links > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2.5px;
  border-radius: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}
.nav__links > a:not(.btn):hover::after { transform: scaleX(1); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 10px;
}
.nav__burger span {
  width: 24px; height: 2.6px;
  border-radius: 2px;
  background: var(--navy);
  transition: transform .25s ease, opacity .2s ease;
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.6px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.6px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: calc(var(--nav-h) + clamp(40px, 7vw, 90px)) 0 0;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 88% 8%, rgba(207,224,244,.55), transparent 60%),
    radial-gradient(700px 480px at 8% 90%, rgba(60,119,42,.1), transparent 60%),
    linear-gradient(180deg, #fdfeff 0%, var(--paper) 100%);
  z-index: -1;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  padding-bottom: clamp(90px, 10vw, 150px);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  border: 1.5px solid var(--line);
  box-shadow: var(--shadow-sm);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 22px;
}
.kicker__leaf { width: 16px; height: 16px; fill: var(--green); }

.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.9rem, 7vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: .005em;
  text-transform: uppercase;
  color: var(--navy);
}
.hero__title em {
  font-style: normal;
  color: var(--green);
  position: relative;
  display: inline-block;
}
.hero__title em::after {
  content: "";
  position: absolute;
  left: 2%; right: 2%; bottom: .06em;
  height: .12em;
  background: linear-gradient(90deg, var(--green-hi), var(--green));
  border-radius: 999px;
  opacity: .35;
}
.hero__script {
  font-family: var(--font-script);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  color: var(--green);
  margin: 10px 0 14px;
  transform: rotate(-1.2deg);
}
.hero__sub {
  font-size: clamp(1rem, 1.35vw, 1.13rem);
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 30px;
}
.hero__sub strong { color: var(--navy-ink); }

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }

.hero__count {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 22px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  padding: 14px 20px;
}
.hero__count-label {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .84rem;
  font-weight: 700;
  color: var(--navy-ink);
}
.pulse-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--green-hi);
  box-shadow: 0 0 0 0 rgba(76,150,54,.5);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(76,150,54,.45); }
  70%  { box-shadow: 0 0 0 9px rgba(76,150,54,0); }
  100% { box-shadow: 0 0 0 0 rgba(76,150,54,0); }
}
.countdown { display: flex; gap: 8px; }
.countdown__cell {
  min-width: 54px;
  text-align: center;
  background: var(--sky-soft);
  border-radius: var(--r-sm);
  padding: 7px 8px 5px;
}
.countdown__cell b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.countdown__cell span {
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Hero photo */
.hero__photo { position: relative; justify-self: center; }
.hero__arch {
  width: clamp(280px, 30vw, 420px);
  aspect-ratio: 4 / 5;
  border-radius: 999px 999px var(--r-lg) var(--r-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
  outline: 10px solid #fff;
}
.hero__arch::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 62%, rgba(2,29,70,.38) 100%);
  pointer-events: none;
}
.hero__arch img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.hero__photo::before {
  content: "";
  position: absolute;
  inset: -16px -16px auto auto;
  width: 58%;
  aspect-ratio: 1;
  border-radius: 999px 999px 0 999px;
  background: radial-gradient(circle at 30% 30%, var(--sky), transparent 70%);
  z-index: -1;
}
.hero__photo::after {
  content: "";
  position: absolute;
  left: -22px; bottom: 8px;
  width: 46%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 3px dashed rgba(60,119,42,.4);
  z-index: -1;
  animation: slow-spin 40s linear infinite;
}
@keyframes slow-spin { to { transform: rotate(360deg); } }

.hero__badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--line);
  padding: 10px 16px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--navy-ink);
  white-space: nowrap;
}
.hero__badge svg { width: 17px; height: 17px; color: var(--green); flex: none; }
.hero__badge--top { top: 9%; left: -14%; animation: floaty 5.5s ease-in-out infinite; }
.hero__badge--bottom { bottom: 12%; right: -10%; animation: floaty 6.5s ease-in-out .8s infinite; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Waves */
.wave { position: absolute; left: 0; right: 0; bottom: -1px; line-height: 0; }
.wave svg { width: 100%; height: clamp(52px, 8vw, 110px); display: block; }
.wave-sky { fill: var(--sky); }
.wave-green { fill: var(--green); opacity: .9; }
.wave-navy { fill: var(--navy); }
.wave--hero { z-index: 2; }

/* ============================================================
   ACTION BAR
   ============================================================ */
.actionbar {
  background: var(--navy);
  padding: clamp(56px, 7vw, 92px) 0 clamp(64px, 8vw, 104px);
  position: relative;
}
.actionbar__title {
  text-align: center;
  color: #bcd0ec;
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 34px;
}
.actionbar__title em { font-style: normal; color: #8fd172; font-weight: 700; }
.actionbar__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.action-card {
  position: relative;
  background: #fff;
  border-radius: var(--r-lg);
  padding: 30px 26px 26px;
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
  transition: transform .22s ease, box-shadow .22s ease;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.action-card:hover { transform: translateY(-6px); box-shadow: 0 22px 48px rgba(0,0,0,.26); }
.action-card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 8px;
}
.action-card__icon svg { width: 26px; height: 26px; }
.action-card__icon--navy { background: var(--sky-soft); color: var(--navy); }
.action-card__icon--green { background: var(--green-soft); color: var(--green); }
.action-card h3 {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--navy);
}
.action-card p { color: var(--muted); font-size: .93rem; flex: 1; }
.action-card__go {
  font-weight: 800;
  font-size: .9rem;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.action-card__go i { font-style: normal; transition: transform .2s ease; }
.action-card:hover .action-card__go i { transform: translateX(5px); }
.action-card--featured { outline: 3px solid var(--green-hi); outline-offset: -3px; }
.action-card__flag {
  position: absolute;
  top: -13px; right: 20px;
  background: linear-gradient(135deg, var(--green-hi), var(--green));
  color: #fff;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 6px 14px;
  box-shadow: 0 6px 16px rgba(60,119,42,.4);
}

/* ============================================================
   MEET NICOLE
   ============================================================ */
.meet__grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(34px, 5vw, 74px);
  align-items: center;
}
.meet__signcard {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(-2deg);
  transition: transform .3s ease;
}
.meet__signcard:hover { transform: rotate(0deg) scale(1.015); }
.meet__boots {
  display: flex;
  gap: 18px;
  align-items: center;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  padding: 18px 20px;
  margin-top: 26px;
}
.meet__boots img { width: 86px; flex: none; }
.meet__boots strong {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .03em;
  color: var(--navy);
  font-size: 1.02rem;
}
.meet__boots p { font-size: .86rem; color: var(--muted); margin: 4px 0 6px; }
.meet__boots a { font-weight: 700; font-size: .86rem; color: var(--green); }
.meet__boots a:hover { text-decoration: underline; }

.meet__copy p { margin-bottom: 16px; color: #33425c; }
.meet__punch {
  border-left: 4px solid var(--green);
  background: var(--green-soft);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: 14px 18px;
  color: var(--navy-ink) !important;
}
.meet__facts {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 24px;
}
.meet__facts li {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  padding: 12px 10px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.meet__facts b {
  display: block;
  font-family: var(--font-display);
  text-transform: uppercase;
  color: var(--navy);
  font-size: .95rem;
  letter-spacing: .03em;
}
.meet__facts span { font-size: .74rem; color: var(--muted); font-weight: 600; }

/* ============================================================
   PRIORITIES + PLEDGE
   ============================================================ */
.pledge {
  position: relative;
  max-width: 860px;
  margin: 30px auto 54px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, var(--navy), var(--green)) border-box;
  border: 3px solid transparent;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  padding: clamp(28px, 4vw, 44px) clamp(24px, 5vw, 56px) clamp(22px, 3vw, 34px);
  text-align: center;
}
.pledge__stamp {
  position: absolute;
  top: -24px; left: 50%;
  transform: translateX(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--green);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px rgba(60,119,42,.4);
}
.pledge__stamp svg { width: 26px; height: 26px; fill: #fff; }
.pledge__label {
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green);
  margin: 8px 0 14px;
}
.pledge blockquote {
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  line-height: 1.6;
  color: var(--navy-ink);
  font-weight: 500;
}
.pledge blockquote strong { color: var(--navy); font-weight: 800; }
.pledge__sig {
  font-family: var(--font-script);
  font-size: 2.1rem;
  color: var(--navy);
  margin-top: 16px;
  transform: rotate(-2deg);
}

.priorities__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.p-card {
  position: relative;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.p-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(60,119,42,.5);
}
.p-card__num {
  position: absolute;
  top: 10px; right: 18px;
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 700;
  color: var(--sky-soft);
  line-height: 1;
  z-index: 0;
}
.p-card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--sky-soft), #fff);
  border: 1.5px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--green);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.p-card__icon svg { width: 26px; height: 26px; }
.p-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--navy);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
.p-card p { color: var(--muted); font-size: .95rem; position: relative; z-index: 1; }
.p-card p em { color: var(--navy-ink); font-weight: 600; }
.p-card--wide { grid-column: 1 / -1; background: linear-gradient(135deg, #fff 55%, var(--green-soft)); }

/* ============================================================
   CONCERN (navy section)
   ============================================================ */
.concern__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(36px, 5vw, 70px);
  align-items: start;
}
.concern__lead { font-size: 1.1rem; color: #c9d8ee; margin-bottom: 26px; }
.concern__lead strong { color: #fff; }
.steps { list-style: none; display: grid; gap: 18px; margin-bottom: 26px; }
.steps li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-md);
  padding: 16px 18px;
  backdrop-filter: blur(2px);
}
.steps__num {
  flex: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-hi), var(--green));
  color: #fff;
  font-weight: 800;
  display: grid;
  place-items: center;
  font-size: .95rem;
  box-shadow: 0 6px 14px rgba(0,0,0,.25);
}
.steps li div { color: #c9d8ee; font-size: .95rem; }
.steps li strong { color: #fff; display: block; margin-bottom: 2px; }
.concern__note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .84rem;
  color: #a8bcd9;
  max-width: 520px;
}
.concern__note svg { width: 18px; height: 18px; flex: none; margin-top: 2px; color: #8fd172; }

/* ============================================================
   FORM CARDS
   ============================================================ */
.form-card {
  position: relative;
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: clamp(26px, 3vw, 36px);
  color: var(--ink);
}
.form-card__head { margin-bottom: 20px; }
.form-card__head h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--navy);
}
.form-card__head p { color: var(--muted); font-size: .92rem; margin-top: 4px; }

.ajax-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 14px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full, .field--submit { grid-column: 1 / -1; }
.field label {
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--navy-ink);
}
.field label b { color: #c92a2a; }
.field label .opt { color: var(--muted); font-weight: 600; text-transform: none; letter-spacing: 0; }
.field input, .field textarea {
  font: inherit;
  font-size: .96rem;
  color: var(--ink);
  background: var(--paper);
  border: 1.8px solid var(--line);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 104px; }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--green);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(60,119,42,.14);
}
.field.is-invalid input, .field.is-invalid textarea {
  border-color: #c92a2a;
  box-shadow: 0 0 0 4px rgba(201,42,42,.1);
}
.field__err {
  display: none;
  font-size: .78rem;
  font-weight: 600;
  color: #c92a2a;
}
.field.is-invalid .field__err { display: block; }

.charcount {
  font-size: .76rem;
  font-weight: 700;
  color: var(--muted);
  text-align: right;
}
.charcount.is-low { color: #b76e00; }
.charcount.is-zero { color: #c92a2a; }

.form-error {
  display: none;
  grid-column: 1 / -1;
  background: #fdecec;
  color: #9d1f1f;
  border: 1.5px solid #f3c2c2;
  border-radius: var(--r-sm);
  padding: 10px 14px;
  font-size: .86rem;
  font-weight: 600;
}
.form-error.is-visible { display: block; }

/* honeypot — visually removed, still in DOM for bots */
.hp {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

/* success state */
.form-success { text-align: center; padding: 34px 10px 24px; }
.form-success h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  color: var(--navy);
  font-size: 1.5rem;
  margin: 16px 0 8px;
}
.form-success p { color: var(--muted); max-width: 380px; margin: 0 auto; }
.form-success__check { width: 76px; margin: 0 auto; }
.form-success__check svg { width: 76px; height: 76px; }
.form-success__check circle {
  stroke: var(--green-hi);
  stroke-width: 3;
  stroke-dasharray: 151;
  stroke-dashoffset: 151;
  animation: draw .7s ease forwards;
}
.form-success__check path {
  stroke: var(--green);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: draw .45s ease .55s forwards;
}
@keyframes draw { to { stroke-dashoffset: 0; } }

/* ============================================================
   SOCIAL SECTION
   ============================================================ */
.social__grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(36px, 5vw, 70px);
  align-items: center;
}
.form-card--raised { border: 1.5px solid var(--line); }
.social__copy p { color: #33425c; }
.social__perks {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 22px 0 26px;
}
.social__perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: .93rem;
  color: var(--navy-ink);
}
.social__perks svg {
  width: 22px; height: 22px;
  flex: none;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
  padding: 4px;
}
.social__quote {
  background: var(--sky-soft);
  border-left: 4px solid var(--navy);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 18px 22px;
}
.social__quote p { font-size: 1.02rem; font-style: italic; color: var(--navy-ink); margin-bottom: 6px; }
.social__quote span { font-family: var(--font-script); font-size: 1.3rem; color: var(--green); }

/* ============================================================
   LAWN SIGN
   ============================================================ */
.lawnsign__grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: clamp(36px, 5vw, 70px);
  align-items: center;
}
.lawnsign__copy > p { color: #33425c; margin-bottom: 22px; }
.lawnsign__img {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  max-width: 460px;
  transform: rotate(1.5deg);
  transition: transform .3s ease;
}
.lawnsign__img:hover { transform: rotate(0); }

/* ============================================================
   WARD STRIP
   ============================================================ */
.ward__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(36px, 5vw, 70px);
  align-items: center;
}
.ward__map {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 8px solid #fff;
}
.ward__copy > p { color: #33425c; margin-bottom: 24px; }
.ward__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}
.ward__stats div {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  padding: 14px 20px;
  min-width: 138px;
}
.ward__stats b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.ward__stats span { font-size: .78rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  position: relative;
  background: var(--navy-deep);
  color: #bcd0ec;
  padding: clamp(80px, 9vw, 120px) 0 30px;
  margin-top: 60px;
}
.wave--footer { top: -1px; bottom: auto; transform: none; }
.wave--footer svg { height: clamp(40px, 6vw, 90px); transform: translateY(-99%); }
.wave--footer path { fill: var(--navy-deep); }

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 34px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #fff;
  font-weight: 500;
}
.footer__name strong { font-weight: 700; }
.footer__tag { font-weight: 700; margin-top: 8px; color: #d7e3f5; }
.footer__tag em { font-style: normal; color: #8fd172; }
.footer__script {
  font-family: var(--font-script);
  font-size: 1.4rem;
  color: #8fd172;
  margin-top: 4px;
}
.footer__col h4 {
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 14px;
}
.footer__col a {
  display: block;
  color: #bcd0ec;
  font-size: .92rem;
  margin-bottom: 10px;
  transition: color .18s ease;
}
.footer__col a:hover { color: #8fd172; }
.footer__vote { font-size: .92rem; line-height: 1.7; }
.footer__vote span { color: #8fd172; font-weight: 600; }
.footer__socials { display: flex; gap: 10px; margin-top: 6px; }
.footer__socials a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  display: grid;
  place-items: center;
  margin-bottom: 0;
  transition: background .18s ease, transform .18s ease;
}
.footer__socials a:hover { background: var(--green); transform: translateY(-2px); }
.footer__socials svg { width: 18px; height: 18px; fill: #fff; }
.footer__legal {
  padding-top: 22px;
  font-size: .8rem;
  color: #7d92b5;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; text-align: left; }
  .hero__photo { order: -1; margin-bottom: 8px; }
  .hero__badge--top { left: -4%; }
  .hero__badge--bottom { right: -2%; }
  .actionbar__grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .meet__grid, .concern__grid, .social__grid, .lawnsign__grid, .ward__grid { grid-template-columns: 1fr; }
  .social__grid .form-card { order: 2; }
  .meet__facts { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  :root { --nav-h: 64px; }
  .nav__ward { display: none; }
  .nav__links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 6% 22px;
    box-shadow: 0 18px 30px rgba(2,43,103,.15);
    transform: translateY(-130%);
    visibility: hidden;
    transition: transform .28s ease, visibility 0s linear .28s;
    z-index: 99;
  }
  .nav--open .nav__links { transform: translateY(0); visibility: visible; transition: transform .28s ease; }
  .nav--open { background: #fff; }
  .nav__links > a:not(.btn) { padding: 14px 4px; border-bottom: 1px solid var(--line); font-size: 1.02rem; }
  .nav__links .btn--nav { margin-top: 14px; justify-content: center; padding: 14px; }
  .nav__burger { display: flex; }

  .hero__actions .btn { width: 100%; }
  .hero__count { width: 100%; justify-content: center; }
  .hero__badge { font-size: .74rem; padding: 8px 12px; }
  .hero__badge--top { left: max(-14%, calc(50% - 50vw + 8px)); }
  .hero__badge--bottom { right: max(-10%, calc(50% - 50vw + 8px)); }
  .ajax-form { grid-template-columns: 1fr; }
  .social__perks { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 26px; }
  .footer__legal { justify-content: center; text-align: center; }
  .p-card--wide { grid-column: auto; }
  .priorities__grid { grid-template-columns: 1fr; }
}

@media (max-width: 380px) {
  .countdown__cell { min-width: 46px; }
}

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