/* ==========================================================================
   Bill Steele for Mayor — Port Colborne 2026
   Proven Progress for Port Colborne

   Palette rule: #A8480A is the only orange used for fills and label text on
   the pale paper ground (4.5:1+). The brighter #DE6510 is reserved for offset
   shadows, rules and accents; #F0A05E for label text on navy.
   ========================================================================== */

:root {
  /* Ground */
  --paper:        #ECF0ED;
  --paper-2:      #F6F8F5;
  --paper-3:      #E2E9E3;

  /* Ink */
  --ink:          #131A18;
  --ink-body:     #3B4642;
  --ink-strong:   #2B3532;
  --ink-soft:     #4A5450;
  --ink-muted:    #5C6763;
  --ink-faint:    #636E69;  /* darkened from the prototype's #6B7671 / #8A9490 to clear 4.5:1 */

  /* Navy */
  --navy:         #0A1836;
  --navy-2:       #16295C;
  --navy-rule:    #20315C;
  --navy-rule-2:  #3C4C78;
  --navy-rule-3:  #46598F;
  --on-navy:      #DCE3F1;
  --on-navy-soft: #B7C3DE;
  --on-navy-mute: #8695BC;
  --on-navy-link: #D3DBEC;

  /* Orange */
  --orange:       #A8480A;  /* fills + label text on paper */
  --orange-br:    #DE6510;  /* shadows, rules, accents */
  --orange-lt:    #F0A05E;  /* label text on navy */

  /* Rules */
  --rule:         #C0CBC2;
  --rule-lt:      #DDE3DC;
  --rule-lter:    #C7D1C9;

  /* Type */
  --serif: Spectral, Georgia, "Times New Roman", serif;
  --sans:  "Space Grotesk", system-ui, -apple-system, Segoe UI, sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Measure */
  --wrap:  1280px;
  --gutter: clamp(16px, 4vw, 44px);
  --stem:  clamp(22px, 3vw, 42px);
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--navy-2); text-underline-offset: 3px; }
a:hover { color: var(--orange); }
p  { text-wrap: pretty; }
h1, h2, h3 { text-wrap: balance; }
img { max-width: 100%; }
input, textarea, select, button { font: inherit; }

:where(input, textarea, select, button, a):focus-visible {
  outline: 2px solid var(--orange-br);
  outline-offset: 3px;
}
::selection { background: #F6C79A; }

/* Motion ------------------------------------------------------------------ */
@keyframes riseIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@keyframes drawIn { from { transform: scaleY(0); }                    to { transform: scaleY(1); } }

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

/* Shell ------------------------------------------------------------------- */
.page  { min-height: 100vh; display: flex; flex-direction: column; overflow-x: hidden; }
.wrap  { max-width: var(--wrap); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.wrap--flush { padding-top: 0; padding-bottom: 0; }
main   { flex: 1; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--navy); color: #fff; padding: 14px 20px;
  font-family: var(--mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
}
.skip:focus { left: 0; color: #fff; }

/* The repeating hairline "survey rule" that runs down the left of a column. */
.stem { position: relative; padding-left: var(--stem); }
.stem::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 7px;
  border-left: 1px solid var(--rule);
  background: repeating-linear-gradient(to bottom, var(--rule) 0 1px, transparent 1px 48px);
  transform-origin: top;
}
.stem--navy::before {
  border-left-color: var(--navy-rule-2);
  background: repeating-linear-gradient(to bottom, var(--navy-rule-2) 0 1px, transparent 1px 48px);
}
.stem--draw::before { animation: drawIn .8s ease-out both; }

/* Type primitives --------------------------------------------------------- */
.eyebrow {
  margin: 0 0 8px;
  font-family: var(--mono); font-size: 11px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--orange);
}
.eyebrow--navy { color: var(--orange-lt); }

.display {
  margin: 0;
  font-family: var(--serif); font-weight: 500;
  line-height: 1.02; letter-spacing: -.026em; color: var(--navy);
  font-size: clamp(36px, 6.2vw, 78px);
}
.display em, .h2 em, .display i { font-style: italic; font-weight: 400; }

.h2 {
  margin: 0;
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(29px, 4vw, 52px); line-height: 1.08;
  letter-spacing: -.018em; color: var(--navy);
}

.lede  { font-size: clamp(16.5px, 1.5vw, 18.5px); line-height: 1.68; color: var(--ink-body); }
.body  { font-size: 16.5px; line-height: 1.72; color: var(--ink-body); }

.setup-note {
  margin: 0;
  font-family: var(--mono); font-size: 10.5px; line-height: 1.7; color: var(--ink-faint);
}
.setup-note b { color: var(--orange); font-weight: 400; }

/* Buttons ----------------------------------------------------------------- */
.btn {
  display: inline-block; text-decoration: none; text-align: center;
  font-family: var(--mono); font-size: 12.5px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 16px 24px; cursor: pointer;
  transition: background .15s ease, color .15s ease, box-shadow .15s ease;
}
.btn--solid  { background: var(--orange); color: #fff; border: 1px solid var(--orange); box-shadow: 4px 4px 0 var(--navy); }
.btn--solid:hover  { background: var(--navy); border-color: var(--navy); color: #fff; box-shadow: 4px 4px 0 var(--orange-br); }
.btn--ghost  { color: var(--navy); border: 1px solid var(--navy); background: none; }
.btn--ghost:hover  { background: var(--navy); color: var(--paper); }

/* On the navy ground the offset shadow flips to warm. */
.on-navy .btn--solid { box-shadow: 4px 4px 0 var(--orange-lt); }
.on-navy .btn--solid:hover { background: #fff; color: var(--navy); border-color: #fff; box-shadow: 4px 4px 0 var(--orange-br); }
.on-navy .btn--ghost { color: #fff; border-color: var(--navy-rule-3); }
.on-navy .btn--ghost:hover { background: none; color: var(--orange-lt); border-color: var(--orange-lt); }

.arrow-link {
  font-family: var(--mono); font-size: 12px; letter-spacing: .12em;
  text-transform: uppercase; font-weight: 500; color: var(--navy);
  text-decoration: none; border-bottom: 2px solid var(--orange-br);
  padding-bottom: 5px; white-space: nowrap;
}
.arrow-link:hover { color: var(--orange); }

/* Election bar ------------------------------------------------------------ */
.election-bar {
  background: var(--navy); color: #93A3C6;
  font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
}
.election-bar .wrap {
  padding-top: 8px; padding-bottom: 8px;
  display: flex; flex-wrap: wrap; gap: 4px 26px;
  align-items: center; justify-content: space-between;
}
.election-bar b { color: var(--orange-lt); font-weight: 400; white-space: nowrap; }
.election-bar span { white-space: nowrap; }

/* Header ------------------------------------------------------------------ */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: var(--paper); border-bottom: 1px solid var(--navy);
}
.site-header .wrap {
  padding-top: 16px; padding-bottom: 16px;
  display: flex; align-items: center; gap: 24px; justify-content: space-between;
}

.lockup {
  text-decoration: none; color: inherit; display: flex; align-items: center;
  flex: 0 1 auto; min-width: 0; height: clamp(46px, 5.4vw, 58px);
  max-width: min(60vw, 360px); overflow: hidden;
}
.lockup > span { display: flex; align-items: center; gap: 12px; min-width: 0; }
.lockup-bar   { width: 3px; height: clamp(32px, 4vw, 40px); background: var(--orange-br); display: block; flex: 0 0 auto; }
.lockup-text  { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.lockup-name  { font-weight: 700; font-size: clamp(16px, 2.2vw, 22px); letter-spacing: .1em; color: var(--navy); line-height: 1; white-space: nowrap; }
.lockup-role  { font-family: var(--mono); font-size: clamp(8.5px, 1vw, 10.5px); letter-spacing: .14em; text-transform: uppercase; color: var(--ink-muted); white-space: nowrap; }

.nav-desktop { display: none; align-items: center; gap: clamp(18px, 2.4vw, 34px); }
.nav-desktop a {
  text-decoration: none; font-family: var(--mono); font-size: 12px;
  letter-spacing: .13em; text-transform: uppercase;
  padding: 5px 0; white-space: nowrap;
  color: var(--ink-strong); border-bottom: 2px solid transparent;
}
.nav-desktop a:hover { border-bottom-color: var(--orange-br); color: var(--navy); }
.nav-desktop a.is-current { color: var(--navy); border-bottom-color: var(--orange-br); }
/* Donate keeps a standing rule so the secondary ask stays visible. */
.nav-desktop a.nav-donate { color: var(--navy); border-bottom-color: #C9D2CA; }
.nav-desktop a.nav-donate:hover,
.nav-desktop a.nav-donate.is-current { border-bottom-color: var(--orange-br); }

.nav-desktop .nav-cta {
  background: var(--orange); color: #fff; font-size: 12px; font-weight: 500;
  letter-spacing: .12em; padding: 12px 18px; border-bottom: 0;
  box-shadow: 3px 3px 0 var(--navy);
  transition: background .15s ease, box-shadow .15s ease;
}
.nav-desktop .nav-cta:hover { background: var(--navy); color: #fff; box-shadow: 3px 3px 0 var(--orange-br); }

.nav-toggle {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: 1px solid var(--navy); padding: 12px; cursor: pointer;
  min-width: 48px; min-height: 48px; align-items: center; justify-content: center;
}
.nav-toggle span { width: 20px; height: 2px; background: var(--navy); display: block; }
.nav-toggle span:last-child { width: 14px; background: var(--orange-br); align-self: flex-start; }

.nav-mobile {
  border-top: 1px solid var(--navy); background: var(--paper-2);
  padding: 6px var(--gutter) 24px;
  display: flex; flex-direction: column;
  animation: riseIn .2s ease-out both;
}
.nav-mobile[hidden] { display: none; }
.nav-mobile a {
  text-decoration: none; color: var(--ink); font-family: var(--serif);
  font-size: 21px; padding: 17px 2px; border-bottom: 1px solid var(--rule-lt);
}
.nav-mobile a.is-current { color: var(--navy); }
.nav-mobile .nav-cta {
  background: var(--orange); color: #fff; font-family: var(--mono);
  font-size: 13px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  padding: 18px; text-align: center; margin-top: 20px;
  box-shadow: 4px 4px 0 var(--navy); border-bottom: 0;
}

@media (min-width: 900px) {
  .nav-desktop { display: flex; }
  .nav-toggle  { display: none; }
  .nav-mobile  { display: none !important; }
}

/* Photo plates ------------------------------------------------------------ */
.plate { margin: 0; border: 1px solid var(--navy); background: var(--paper-3); padding: 9px; }
.plate img { display: block; width: 100%; object-fit: cover; }
.plate--soft { border-color: var(--rule); padding: 8px; }
.plate--tight { border-color: var(--rule); padding: 7px; }

/* Fixed-height plates. Without an explicit height these portrait photographs
   render at their full natural height instead of the cropped band the design
   calls for, which stretches the page badly. */
.plate--sign img    { height: clamp(230px, 26vw, 320px); }

/* Contact page: fixed band, framed so both faces clear the top edge. */
.plate--contact     { margin: 32px 0 0; max-width: 46ch; }
.plate--contact img { height: clamp(240px, 28vw, 340px); object-position: center 35%; }

/* A placeholder plate: hatched ground plus a written description of the
   photograph the campaign still needs to source. */
.plate-empty {
  margin: 0; position: relative; border: 1px solid var(--navy); background: var(--paper-3);
  display: flex; flex-direction: column; justify-content: flex-end;
}
.plate-empty::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(135deg, #DCE4DD 0 12px, #E6ECE6 12px 24px);
}
.plate-empty::after {
  content: ""; position: absolute; inset: 8px; border: 1px solid #BCC7BE; pointer-events: none;
}
.plate-empty figcaption {
  position: relative; border-top: 1px solid var(--navy); background: var(--paper);
  padding: 12px 14px; display: flex; flex-wrap: wrap; gap: 4px 12px; align-items: baseline;
}
.plate-empty .plate-tag {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--orange); white-space: nowrap;
}
.plate-empty .plate-desc {
  font-family: var(--mono); font-size: 10.5px; line-height: 1.55;
  color: var(--ink-soft); max-width: 38ch;
}

/* Hero -------------------------------------------------------------------- */
.hero { position: relative; border-bottom: 1px solid var(--navy); }
.hero-grid {
  max-width: var(--wrap); margin: 0 auto;
  padding: 0 0 0 var(--gutter);
  display: grid; gap: 0; align-items: stretch;
}
.hero-copy {
  position: relative;
  padding: clamp(40px, 6.5vw, 92px) clamp(20px, 3vw, 48px) clamp(40px, 6.5vw, 88px) var(--stem);
  animation: riseIn .55s ease-out both;
}
.hero-copy .eyebrow { margin-bottom: 26px; }
.hero-copy h1 {
  margin: 0; font-family: var(--serif); font-weight: 500;
  font-size: clamp(36px, 4.9vw, 84px); line-height: 1.03;
  letter-spacing: -.022em; color: var(--navy);
}
.hero-copy .lede { margin: 30px 0 0; max-width: 44ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.hero-actions--flush { margin-top: 0; }

.hero-figure {
  margin: 0; position: relative; border-left: 1px solid var(--navy);
  background: var(--paper-3); min-height: clamp(340px, 52vw, 660px);
  display: flex; flex-direction: column; justify-content: flex-end;
  animation: riseIn .7s ease-out .1s both;
}
.hero-figure .hatch { position: absolute; inset: 0; background: repeating-linear-gradient(135deg, #DCE4DD 0 12px, #E6ECE6 12px 24px); }
.hero-figure picture { display: block; flex: 1 1 auto; min-height: 0; overflow: hidden; }
.hero-figure picture img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: 62% 30%; }
.hero-figure .inset { position: absolute; inset: 10px; border: 1px solid #BCC7BE; pointer-events: none; }
.hero-figure .corner { position: absolute; top: 20px; right: 20px; width: 14px; height: 14px; border-top: 1px solid var(--navy); border-right: 1px solid var(--navy); }
.hero-figure figcaption {
  position: relative; border-top: 1px solid var(--navy); background: var(--paper);
  padding: 13px clamp(14px, 1.6vw, 20px);
  display: flex; flex-wrap: wrap; gap: 4px 14px; align-items: baseline;
}
.hero-figure .plate-tag { font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--orange); white-space: nowrap; }
.hero-figure .plate-desc { font-family: var(--mono); font-size: 11px; line-height: 1.55; color: var(--ink-soft); max-width: 42ch; }

@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.06fr .94fr; }
}

/* Record band ------------------------------------------------------------- */
.record-band { background: var(--navy); color: var(--on-navy); }
.record-band .wrap { padding-top: clamp(30px, 4vw, 48px); padding-bottom: clamp(30px, 4vw, 48px); }
.record-band .eyebrow { margin-bottom: 26px; }
.record-band dl {
  margin: 0; display: grid; gap: 1px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  background: var(--navy-rule);
}
.record-band dl > div { background: var(--navy); padding: 4px 18px 4px 20px; border-left: 1px solid var(--navy-rule-2); }
.record-band dt { font-family: var(--mono); font-size: 10.5px; letter-spacing: .13em; text-transform: uppercase; color: var(--on-navy-mute); }
.record-band dd { margin: 6px 0 0; font-family: var(--serif); font-size: clamp(23px, 2.4vw, 31px); line-height: 1.14; color: #fff; }

/* Home: about preview ----------------------------------------------------- */
.about-preview { border-bottom: 1px solid var(--rule); }
.about-preview .wrap {
  padding-top: clamp(48px, 7vw, 104px); padding-bottom: clamp(48px, 7vw, 104px);
  display: grid; gap: clamp(30px, 5vw, 72px); align-items: start;
}
.about-preview h2 { margin: 0 0 26px; max-width: 22ch; }
.about-preview .lede-strong { font-size: clamp(16.5px, 1.5vw, 18px); line-height: 1.7; color: var(--ink-strong); margin: 0 0 18px; }
.about-preview .plate img { height: clamp(280px, 34vw, 440px); object-position: center 22%; }
.about-preview .body { margin: 0 0 32px; }

@media (min-width: 900px) {
  .about-preview .wrap { grid-template-columns: 1.18fr .82fr; }
}

/* Sign CTA band ----------------------------------------------------------- */
.sign-band { background: var(--navy); color: var(--on-navy); position: relative; overflow: hidden; }
.sign-band .wrap {
  padding-top: clamp(48px, 7vw, 96px); padding-bottom: clamp(48px, 7vw, 96px);
  display: grid; gap: clamp(34px, 5vw, 72px); align-items: center;
}
.sign-band h2 {
  margin: 0 0 22px; font-family: var(--serif); font-weight: 500;
  font-size: clamp(31px, 4.6vw, 58px); line-height: 1.04;
  letter-spacing: -.02em; color: #fff; max-width: 16ch;
}
.sign-band .band-lede { margin: 0 0 34px; max-width: 42ch; font-size: clamp(16.5px, 1.5vw, 18px); line-height: 1.68; color: var(--on-navy-soft); }
.sign-band figure { margin: 0; position: relative; transform: rotate(-1.4deg); }
.sign-band figure > div { border: 1px solid var(--orange-lt); background: var(--navy-2); padding: 9px; box-shadow: 8px 8px 0 rgba(0, 0, 0, .22); }
.sign-band figure img { display: block; width: 100%; height: clamp(250px, 30vw, 380px); object-fit: cover; }

@media (min-width: 900px) {
  .sign-band .wrap { grid-template-columns: .95fr 1.05fr; }
}

/* Page mastheads ---------------------------------------------------------- */
.masthead { border-bottom: 1px solid var(--rule); }
.masthead--rule { border-bottom-color: var(--navy); }
.masthead .wrap {
  padding-top: clamp(38px, 5.5vw, 80px);
  padding-bottom: clamp(30px, 4vw, 56px);
}
.masthead h1 { max-width: 17ch; }
.masthead--rule .wrap { padding-bottom: clamp(34px, 4.5vw, 60px); }
.masthead h1.h1--policies { margin-bottom: 26px; max-width: 19ch; }
.lede--wide { max-width: 54ch; }
.masthead .eyebrow { margin-bottom: 10px; }

/* Two-column page bodies (About, and the form pages) ----------------------- */
.split {
  max-width: var(--wrap); margin: 0 auto;
  padding: clamp(38px, 5.5vw, 80px) var(--gutter) clamp(52px, 7vw, 100px);
  display: grid; gap: clamp(32px, 5vw, 72px); align-items: start;
}
.split--about { padding-top: clamp(38px, 5vw, 72px); }

@media (min-width: 900px) {
  .split        { grid-template-columns: .92fr 1.08fr; }
  .split--about { grid-template-columns: 1.18fr .82fr; }
}

.split h1 { margin: 0 0 24px; font-size: clamp(34px, 5.2vw, 64px); line-height: 1.03; letter-spacing: -.024em; max-width: 15ch; }
.split .intro { margin: 0 0 36px; max-width: 46ch; font-size: clamp(16.5px, 1.5vw, 18px); line-height: 1.7; color: var(--ink-body); }
.split .intro.intro--tight { margin-bottom: 34px; }
.split h1.h1--short { max-width: 13ch; }

/* About page -------------------------------------------------------------- */
.about-open { margin: 0 0 22px; font-family: var(--serif); font-size: clamp(19px, 2.1vw, 24px); line-height: 1.55; color: var(--navy); }
.about-body .body { margin: 0 0 18px; }
.about-body .body--last { margin-bottom: 40px; }

.why {
  border-top: 1px solid var(--rule);
  padding-top: 34px; margin-bottom: 40px;
}
.why h2 { margin: 0 0 18px; font-family: var(--serif); font-weight: 500; font-size: clamp(26px, 3.4vw, 40px); line-height: 1.1; letter-spacing: -.018em; color: var(--navy); }
.about-body .why .body { margin: 0; }

.about-aside { display: flex; flex-direction: column; gap: 26px; }
.about-aside > .plate img       { height: clamp(300px, 36vw, 440px); object-position: center top; }
.about-aside > .plate--soft img { height: clamp(240px, 28vw, 330px); object-position: center 42%; }
.about-aside .pair { display: grid; gap: 12px; grid-template-columns: 1fr 1fr; }
.about-aside .pair img { height: clamp(150px, 17vw, 200px); }
.about-aside .pair .plate--top img { object-position: center top; }

.record-card { border: 1px solid var(--navy); background: var(--paper-2); }
.record-card > p {
  margin: 0; padding: 14px 20px; border-bottom: 1px solid var(--navy);
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--navy);
}
.record-card dl { margin: 0; display: grid; }
.record-card dl > div { display: grid; gap: 4px; padding: 18px 20px; border-bottom: 1px solid var(--rule-lt); }
.record-card dl > div:last-child { border-bottom: 0; }
.record-card dt { font-family: var(--mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-faint); }
.record-card dd { margin: 0; font-family: var(--serif); font-size: 23px; color: var(--navy); }

/* Ruled lists — the dividers carry the rhythm, no counters. ---------------- */
.ruled { margin: 0; padding: 0; list-style: none; display: grid; border-top: 1px solid var(--rule); }
.ruled li { padding: 16px 0; border-bottom: 1px solid var(--rule-lt); font-size: 16px; line-height: 1.62; color: var(--ink-body); }
.ruled--steps { max-width: 46ch; margin-bottom: 38px; }

.roles { display: grid; border-top: 1px solid var(--navy); }
.roles > div { padding: 22px 0; border-bottom: 1px solid var(--rule-lt); }
.roles h3 { margin: 0 0 7px; font-family: var(--serif); font-weight: 500; font-size: 21px; color: var(--navy); }
.roles p  { margin: 0; font-size: 15.5px; line-height: 1.62; color: var(--ink-soft); }

/* Panels (forms, rules boxes) --------------------------------------------- */
.panel { border: 1px solid var(--navy); background: var(--paper-2); }
.panel > .panel-head {
  margin: 0; padding: 15px 22px; border-bottom: 1px solid var(--navy);
  background: var(--navy); font-family: var(--mono); font-size: 10.5px;
  letter-spacing: .16em; text-transform: uppercase; color: var(--orange-lt);
}
.panel > .panel-head--plain {
  background: none; color: var(--navy); padding: 14px 20px;
}
.panel-body { padding: clamp(22px, 3vw, 34px); display: grid; gap: 20px; }
.panel-body--wide { gap: 24px; }
.panel-lede { margin: 0; font-size: clamp(16px, 1.5vw, 17.5px); line-height: 1.7; color: var(--ink-strong); }

.stack { display: grid; }
.stack > p {
  margin: 0; padding: 18px 20px; border-bottom: 1px solid var(--rule-lt);
  font-size: 15.5px; line-height: 1.66; color: var(--ink-body);
}
.stack > p:last-child { border-bottom: 0; }
.stack--flush > p { padding-left: 0; padding-right: 0; }
.stack--flush { border-top: 1px solid var(--rule-lt); }
.stack--flush > p:last-child { border-bottom: 1px solid var(--rule-lt); }

/* Forms ------------------------------------------------------------------- */
.field { display: grid; gap: 8px; }
.field > label, .fieldset > legend {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .13em;
  text-transform: uppercase; color: var(--ink-muted);
}
.field input, .field textarea, .field select {
  padding: 14px; border: 1px solid var(--rule); background: #fff;
  font-size: 16px; color: var(--ink); min-height: 50px; border-radius: 0;
}
.field textarea { resize: vertical; min-height: 0; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--navy); }

.fieldset { border: none; margin: 0; padding: 0; display: block; }
.fieldset > legend { padding: 0; margin-bottom: 13px; }
.fieldset .choices { display: grid; gap: 13px; }
.fieldset .choices label { display: flex; gap: 12px; align-items: center; font-size: 15.5px; color: var(--ink-body); cursor: pointer; }
.fieldset input[type="checkbox"] { width: 19px; height: 19px; accent-color: var(--orange-br); }

.consent {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 15px; line-height: 1.58; color: var(--ink-body); cursor: pointer;
  border-top: 1px solid var(--rule-lt); padding-top: 20px;
}
.consent input { margin-top: 3px; width: 19px; height: 19px; accent-color: var(--orange-br); flex: 0 0 auto; }

.divider-top { border-top: 1px solid var(--rule-lt); padding-top: 20px; }

.btn--submit {
  background: var(--orange); color: #fff; border: 1px solid var(--navy);
  font-family: var(--mono); font-size: 12.5px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 17px; cursor: pointer; box-shadow: 4px 4px 0 var(--navy); min-height: 54px;
  transition: background .15s ease, box-shadow .15s ease;
}
.btn--submit:hover { background: var(--navy); box-shadow: 4px 4px 0 var(--orange-br); }

/* Donate ------------------------------------------------------------------ */
.etransfer { border: 1px solid var(--rule); background: #fff; padding: 22px; display: grid; gap: 10px; }
.etransfer span { font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-muted); }
.etransfer a {
  font-family: var(--serif); font-size: clamp(21px, 2.4vw, 27px); color: var(--navy);
  text-decoration: none; border-bottom: 2px solid var(--orange-br);
  padding-bottom: 4px; justify-self: start;
}
.etransfer a:hover { color: var(--orange); }

/* Contact ----------------------------------------------------------------- */
.contact-details { margin: 0; display: grid; max-width: 46ch; border-top: 1px solid var(--navy); }
.contact-details > div { display: grid; gap: 6px; padding: 20px 0; border-bottom: 1px solid var(--rule-lt); }
.contact-details dt { font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-faint); }
.contact-details dd { margin: 0; font-size: 18px; }
.contact-details dd a { color: var(--navy); text-decoration: none; border-bottom: 2px solid var(--orange-br); padding-bottom: 3px; }
.contact-details dd a:hover { color: var(--orange); }
.contact-details .tbd { font-family: var(--mono); font-size: 14px; color: var(--ink-faint); }

/* Policies (parked — not linked from the site) ----------------------------- */
.policy-row {
  border-bottom: 1px solid var(--rule);
  padding: clamp(36px, 5vw, 64px) 0;
  display: grid; gap: clamp(24px, 4vw, 56px); align-items: start;
}
.policy-row .plate-empty { min-height: clamp(200px, 22vw, 290px); }
.policy-text { display: grid; grid-template-columns: auto 1fr; column-gap: clamp(16px, 2.4vw, 32px); }
.policy-num {
  font-family: var(--mono); font-weight: 700;
  font-size: clamp(44px, 6vw, 86px); line-height: .85;
  color: #DFE6E0; -webkit-text-stroke: 1.5px #B6C2B8;
}
.policy-text h2 { margin: 0 0 18px; font-family: var(--serif); font-weight: 500; font-size: clamp(25px, 3.4vw, 42px); line-height: 1.08; letter-spacing: -.02em; color: var(--navy); }
.policy-text p  { margin: 0; font-size: 16.5px; line-height: 1.72; color: var(--ink-body); max-width: 56ch; }

@media (min-width: 900px) { .policy-row { grid-template-columns: .78fr 1.22fr; } }

.closer { background: var(--navy); }
.closer .wrap {
  padding-top: clamp(44px, 6vw, 80px); padding-bottom: clamp(44px, 6vw, 80px);
  display: flex; flex-wrap: wrap; gap: 26px 40px; align-items: center; justify-content: space-between;
}
.closer h2 { margin: 0; font-family: var(--serif); font-weight: 500; font-size: clamp(26px, 3.6vw, 42px); line-height: 1.1; letter-spacing: -.018em; color: #fff; max-width: 24ch; }
.closer .actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* 404 --------------------------------------------------------------------- */
.notfound { max-width: var(--wrap); margin: 0 auto; padding: clamp(60px, 10vw, 140px) var(--gutter); }
.notfound h1 { max-width: 18ch; }
.notfound .intro { margin: 24px 0 36px; max-width: 46ch; font-size: clamp(16.5px, 1.5vw, 18px); line-height: 1.7; color: var(--ink-body); }

/* Footer ------------------------------------------------------------------ */
.site-footer { background: var(--navy); color: #AEBBD8; margin-top: auto; overflow: hidden; }
.site-footer .wrap { padding-top: clamp(44px, 6vw, 76px); padding-bottom: 0; }
.footer-grid {
  display: grid; gap: clamp(30px, 4vw, 60px);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
  padding-bottom: clamp(38px, 5vw, 60px);
}
.footer-lockup { display: flex; align-items: center; gap: 12px; margin: 0 0 14px; }
.footer-lockup .bar { width: 3px; height: 38px; background: var(--orange-br); display: block; flex: 0 0 auto; }
.footer-lockup .txt { display: flex; flex-direction: column; gap: 4px; }
.footer-lockup .name { font-weight: 700; font-size: 21px; letter-spacing: .11em; color: #fff; line-height: 1; }
.footer-lockup .role { font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: #8E9BBC; line-height: 1; }
.footer-slogan { margin: 0 0 20px; font-family: var(--serif); font-style: italic; font-size: 18px; line-height: 1.4; color: var(--orange-lt); }
.footer-when   { margin: 0; font-family: var(--mono); font-size: 11px; line-height: 1.8; letter-spacing: .06em; text-transform: uppercase; color: #7F8DB2; }

.footer-col h2 {
  margin: 0 0 18px; font-family: var(--mono); font-size: 10.5px; font-weight: 400;
  letter-spacing: .16em; text-transform: uppercase; color: var(--orange-lt);
}
.footer-col .links { display: flex; flex-direction: column; gap: 12px; font-size: 15px; }
.footer-col a { color: var(--on-navy-link); text-decoration: none; font-size: 15px; }
.footer-col a:hover { color: var(--orange-lt); }
.footer-col .tbd { color: #8E9BBC; font-family: var(--mono); font-size: 11.5px; letter-spacing: .05em; }

.footer-legal {
  border-top: 1px solid var(--navy-rule); padding: 22px 0 26px;
  display: flex; flex-wrap: wrap; gap: 14px 28px; justify-content: space-between; align-items: center;
}
.footer-legal .authorized {
  border: 1px solid var(--navy-rule-2); padding: 10px 14px;
  font-family: var(--mono); font-size: 10px; line-height: 1.7;
  letter-spacing: .06em; text-transform: uppercase; color: #AEBBD8;
}
.footer-legal .copyright { font-family: var(--mono); font-size: 10.5px; letter-spacing: .13em; text-transform: uppercase; color: #8E9BBC; }

.footer-wordmark { padding: 0 var(--gutter); overflow: hidden; }
.footer-wordmark p {
  margin: 0; font-weight: 700; font-size: clamp(34px, 10.4vw, 152px);
  line-height: .8; letter-spacing: .02em; color: transparent;
  -webkit-text-stroke: 1px #1B2A50; white-space: nowrap; transform: translateY(22%);
}

/* Print ------------------------------------------------------------------- */
@media print {
  .election-bar, .site-header, .nav-mobile, .footer-wordmark, .sign-band figure { display: none !important; }
  body { background: #fff; }
  .site-footer { background: #fff; color: #000; }
  a[href^="http"]::after, a[href^="mailto"]::after { content: " (" attr(href) ")"; font-size: 11px; }
}
