:root {
  --paper: #f6f3ec;
  --white: #fffdf8;
  --ink: #171a18;
  --muted: #66675f;
  --green: #214a3a;
  --green-dark: #17362b;
  --line: #d8d2c7;
  --soft: #ece7de;
  --max: 1180px;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button { color: inherit; }

.shell {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
  border-radius: 8px;
}
.skip-link:focus { transform: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 243, 236, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  text-decoration: none;
  min-width: 0;
}
.wordmark span {
  font: 700 20px/1 var(--serif);
  letter-spacing: -.02em;
  white-space: nowrap;
}
.wordmark small {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 650;
  color: #353934;
}
.site-nav a:hover, .site-nav a:focus-visible { color: var(--green); }
.menu-button { display: none; }

.hero {
  padding: 72px 0 78px;
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .72fr);
  align-items: center;
  gap: clamp(48px, 8vw, 112px);
}
.hero-copy, .portrait { min-width: 0; }
.kicker {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0;
  max-width: 760px;
  font: 700 clamp(58px, 7vw, 104px)/.9 var(--serif);
  letter-spacing: -.065em;
  overflow-wrap: normal;
  word-break: normal;
}
.hero h1 span { display: block; }
.role {
  margin: 22px 0 0;
  color: var(--green);
  font-size: clamp(21px, 2.2vw, 30px);
  font-weight: 750;
  letter-spacing: -.02em;
}
.hero-text {
  max-width: 590px;
  margin: 20px 0 0;
  color: #4f524d;
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.65;
}
.hero-actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-top: 32px; }
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 750;
  font-size: 14px;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.button:hover { transform: translateY(-1px); }
.primary { background: var(--green); color: #fff; }
.primary:hover { background: var(--green-dark); }
.outline { background: transparent; color: var(--ink); border-color: #aaa397; }
.outline:hover { border-color: var(--green); color: var(--green); }
.text-button { min-height: auto; padding: 0; border: 0; border-bottom: 1px solid currentColor; border-radius: 0; color: var(--ink); }
.portrait {
  margin: 0;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid #c9c2b7;
  box-shadow: 0 18px 42px rgba(44, 40, 32, .11);
}
.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
}

.section { padding: 88px 0; border-bottom: 1px solid var(--line); }
.two-column, .voting-layout, .contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
}
.section-title { min-width: 0; }
.section-title h2, .contact-copy h2 {
  margin: 0;
  max-width: 560px;
  font: 700 clamp(38px, 4.6vw, 62px)/1.02 var(--serif);
  letter-spacing: -.045em;
}
.section-title.compact { max-width: 760px; margin-bottom: 42px; }
.section-intro { margin: 16px 0 0; color: var(--muted); font-size: 17px; }
.copy-block { max-width: 720px; }
.copy-block p { margin: 0 0 18px; color: #4f524d; font-size: 18px; line-height: 1.75; }
.copy-block p:last-child { margin-bottom: 0; }

.priorities { background: var(--white); }
.priority-list { border-top: 1px solid var(--line); }
.priority-item {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 26px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}
.priority-number { color: var(--green); font: 700 16px/1.3 var(--serif); padding-top: 5px; }
.priority-item h3 { margin: 0 0 7px; font: 700 clamp(24px, 2.4vw, 34px)/1.12 var(--serif); letter-spacing: -.025em; }
.priority-item p { max-width: 760px; margin: 0; color: var(--muted); font-size: 16px; line-height: 1.65; }

.meeting-list { border-top: 1px solid var(--line); }
.meeting-row {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}
.meeting-date { display: flex; flex-direction: column; align-items: flex-start; }
.meeting-date span { color: var(--green); font-size: 12px; font-weight: 800; letter-spacing: .12em; }
.meeting-date strong { font: 700 42px/.95 var(--serif); letter-spacing: -.04em; }
.meeting-details { min-width: 0; }
.meeting-details h3 { margin: 0 0 5px; font: 700 25px/1.15 var(--serif); letter-spacing: -.02em; }
.meeting-details p { margin: 0; color: var(--muted); font-size: 15px; }
.meeting-details .meeting-time { margin-top: 3px; color: var(--ink); font-weight: 700; }
.map-link { color: var(--green); font-weight: 800; font-size: 14px; text-decoration: none; border-bottom: 1px solid currentColor; white-space: nowrap; }

.voting { background: var(--green); color: #fff; border-color: rgba(255,255,255,.12); }
.voting .kicker { color: #d5e5dc; }
.voting .section-title h2 { color: #fff; }
.voting-copy { max-width: 730px; }
.voting-copy > p { margin: 0 0 16px; color: rgba(255,255,255,.82); font-size: 17px; line-height: 1.7; }
.voting-copy strong { color: #fff; }
.voting-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.voting .primary { background: #fff; color: var(--green-dark); }
.voting .primary:hover { background: #f4f1e9; }
.voting .outline { border-color: rgba(255,255,255,.42); color: #fff; }
.voting .outline:hover { border-color: #fff; color: #fff; }
.municipality-contact { margin-top: 22px !important; font-size: 13px !important; color: rgba(255,255,255,.64) !important; }

.contact { background: var(--white); }
.contact-copy p:not(.kicker) { max-width: 500px; margin: 18px 0 20px; color: var(--muted); font-size: 17px; }
.gmail-link {
  display: inline;
  color: var(--green);
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  overflow-wrap: anywhere;
}
.contact-form { display: grid; gap: 18px; max-width: 650px; }
.contact-form label { display: grid; gap: 7px; }
.contact-form label > span { font-size: 13px; font-weight: 800; }
.contact-form input, .contact-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #bbb4a8;
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.contact-form input { height: 48px; }
.contact-form textarea { resize: vertical; min-height: 132px; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(33,74,58,.12); }
.submit-button { justify-self: start; min-width: 150px; }
.submit-button[disabled] { opacity: .62; cursor: wait; transform: none; }
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-status { min-height: 22px; margin: -4px 0 0; color: #8a2f24; font-size: 13px; }

.site-footer { padding: 34px 0; background: #141816; color: #fff; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.footer-inner > div:first-child { display: flex; flex-direction: column; gap: 4px; }
.footer-inner strong { font: 700 18px/1.2 var(--serif); }
.footer-inner span { color: rgba(255,255,255,.58); font-size: 12px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 20px; }
.footer-links a { color: rgba(255,255,255,.8); font-size: 13px; text-decoration: none; }
.footer-links a:hover { color: #fff; }

.success-modal[hidden] { display: none; }
.success-modal { position: fixed; inset: 0; z-index: 300; display: grid; place-items: center; padding: 20px; }
.success-backdrop { position: absolute; inset: 0; background: rgba(9,12,10,.62); }
.success-dialog {
  position: relative;
  width: min(100%, 490px);
  padding: 38px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
  text-align: center;
}
.success-mark { width: 48px; height: 48px; margin: 0 auto 18px; display: grid; place-items: center; border-radius: 50%; background: var(--green); color: #fff; font-weight: 900; }
.success-dialog h2 { margin: 0; font: 700 34px/1.05 var(--serif); letter-spacing: -.035em; }
.success-dialog p { margin: 14px auto 24px; color: var(--muted); max-width: 390px; }
.modal-close { position: absolute; top: 10px; right: 12px; width: 36px; height: 36px; border: 0; background: transparent; font-size: 28px; line-height: 1; cursor: pointer; color: #77766f; }

@media (max-width: 900px) {
  .shell { width: min(calc(100% - 36px), var(--max)); }
  .header-inner { min-height: 68px; }
  .wordmark small { display: none; }
  .menu-button {
    width: 44px;
    height: 42px;
    display: grid;
    place-content: center;
    gap: 6px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }
  .menu-button > span:not(.sr-only) { width: 23px; height: 2px; background: var(--ink); transition: transform .18s ease; }
  .menu-button[aria-expanded="true"] > span:nth-child(2) { transform: translateY(4px) rotate(45deg); }
  .menu-button[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-4px) rotate(-45deg); }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 8px 18px 18px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 14px 4px; border-bottom: 1px solid var(--line); font-size: 15px; }
  .site-nav a:last-child { border-bottom: 0; }
  .hero { padding: 48px 0 58px; }
  .hero-grid { grid-template-columns: 1fr; gap: 38px; }
  .hero h1 { font-size: clamp(55px, 12vw, 84px); max-width: 100%; }
  .hero h1 span { display: block; }
  .portrait {
    width: min(46vw, 320px);
    aspect-ratio: 4 / 5;
    justify-self: start;
  }
  .section { padding: 68px 0; }
  .two-column, .voting-layout, .contact-layout { grid-template-columns: 1fr; gap: 30px; }
  .section-title h2, .contact-copy h2 { max-width: 760px; }
}

@media (max-width: 620px) {
  .shell { width: min(calc(100% - 32px), var(--max)); }
  .header-inner { min-height: 64px; }
  .wordmark span { font-size: 18px; }
  .hero { padding: 38px 0 48px; }
  .hero-grid { gap: 30px; }
  .kicker { margin-bottom: 13px; font-size: 10px; letter-spacing: .12em; }
  .hero h1 { font-size: clamp(48px, 15vw, 66px); line-height: .92; letter-spacing: -.055em; }
  .role { margin-top: 16px; font-size: 20px; }
  .hero-text { margin-top: 14px; font-size: 16px; line-height: 1.6; }
  .hero-actions { margin-top: 24px; gap: 16px; }
  .button { min-height: 46px; padding-inline: 16px; }
  .text-button { min-height: auto; padding-inline: 0; }
  .portrait {
    width: min(58vw, 220px);
    aspect-ratio: 1 / 1;
    justify-self: start;
    border-radius: 7px;
    box-shadow: 0 8px 20px rgba(44, 40, 32, .09);
  }
  .portrait img { object-position: 50% 16%; }
  .section { padding: 54px 0; }
  .section-title h2, .contact-copy h2 { font-size: clamp(34px, 10vw, 46px); line-height: 1.03; }
  .copy-block p { font-size: 16px; line-height: 1.68; }
  .section-title.compact { margin-bottom: 28px; }
  .priority-item { grid-template-columns: 42px minmax(0, 1fr); gap: 12px; padding: 24px 0; }
  .priority-item h3 { font-size: 24px; }
  .priority-item p { font-size: 15px; }
  .meeting-row { grid-template-columns: 62px minmax(0, 1fr); gap: 16px; padding: 24px 0; }
  .meeting-date strong { font-size: 34px; }
  .meeting-details h3 { font-size: 23px; }
  .map-link { grid-column: 2; justify-self: start; margin-top: 2px; }
  .voting-links { flex-direction: column; align-items: stretch; }
  .voting-links .button { width: 100%; }
  .municipality-contact { overflow-wrap: anywhere; }
  .contact-copy p:not(.kicker) { font-size: 16px; }
  .contact-form { gap: 16px; }
  .submit-button { width: 100%; }
  .footer-inner { align-items: flex-start; flex-direction: column; gap: 20px; }
  .footer-links { justify-content: flex-start; gap: 16px; }
  .success-dialog { padding: 34px 22px 28px; }
}

@media (max-width: 370px) {
  .shell { width: min(calc(100% - 24px), var(--max)); }
  .hero h1 { font-size: 46px; }
  .portrait { width: 190px; }
  .meeting-row { grid-template-columns: 54px minmax(0, 1fr); gap: 12px; }
}

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

.honeypot-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
