/* =========================================================================
   Leavenworth Mosquito Control District
   Design system — "Trailhead Survey" direction.
   Grounded in the district's own visual world: USFS/NPS trailhead signage,
   topographic survey maps, and the Icicle & Wenatchee valley landscape.
   ========================================================================= */

:root {
  /* ---- Color: named + hex, derived from brand assets ---- */
  --ink:          #211d16; /* body text — warm near-black */
  --pine-dark:    #142a21; /* deepest green — header/footer bg */
  --pine:         #1e3d30; /* primary brand green — headings, primary surfaces */
  --canopy:       #4a7860; /* mid green — decorative, secondary accents */
  --amber:        #c07f22; /* warm gold accent — CTA/badge fills, borders, icons (non-text or large surfaces) */
  --amber-deep:   #8a5a17; /* accessible amber — text/links on light bg (5.2:1 on parchment) */
  --amber-text:   #e0a94f; /* accessible amber — text on dark green bg only (7.2:1 on pine-dark, 5.6:1 on pine) */
  --slate:        #4c5b66; /* muted text, borders, map neutral chrome */
  --rust:         #a1502c; /* zone color D — terracotta */
  --plum:         #64475c; /* zone color E — muted plum */
  --alert:        #a3311f; /* hotspot marker red-orange */
  --parchment:    #f6f0e3; /* page background */
  --paper:        #fffbf3; /* card / elevated surface */
  --line:         #ddd2ba; /* hairline borders on parchment */
  --cream:        #f8f4ea; /* text on dark surfaces */

  /* ---- Type ---- */
  --font-display: "Bitter", Georgia, serif;
  --font-body: "Public Sans", -apple-system, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "Courier New", monospace;

  /* ---- Spacing scale ---- */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;
  --space-6: 6rem;

  --radius: 4px;
  --container: 1200px;

  --shadow-1: 0 1px 2px rgba(20, 42, 33, 0.12), 0 2px 8px rgba(20, 42, 33, 0.08);
  --shadow-2: 0 4px 10px rgba(20, 42, 33, 0.14), 0 12px 32px rgba(20, 42, 33, 0.12);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { font-size: 112.5%; scroll-behavior: smooth; } /* 18px base */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--parchment);
  line-height: 1.7;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
main { display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--pine);
  line-height: 1.15;
  margin: 0 0 var(--space-2);
  font-weight: 700;
}
h1 { font-size: clamp(2.25rem, 4vw + 1rem, 3.4rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.7rem, 2vw + 1rem, 2.25rem); letter-spacing: -0.01em; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.1rem; }

p { margin: 0 0 var(--space-2); max-width: 65ch; }
p.lede { font-size: 1.2rem; color: var(--slate); max-width: 55ch; }

a { color: var(--pine); text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
a:hover { color: var(--amber-deep); }

ul, ol { padding-left: 1.3em; }
li { margin-bottom: 0.4em; }

/* ---- Focus & accessibility ---- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
  border-radius: 2px;
}
.skip-link {
  position: absolute;
  left: 0.5rem;
  top: -4rem;
  background: var(--cream);
  color: var(--pine-dark);
  padding: 0.75rem 1.25rem;
  font-weight: 700;
  border-radius: 0 0 6px 6px;
  z-index: 1000;
  transition: top 0.15s ease;
  border: 2px solid var(--pine-dark);
}
.skip-link:focus { top: 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--space-3); }

.eyebrow {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--amber-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  margin-bottom: var(--space-1);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--amber-deep);
  display: inline-block;
}

/* =========================================================================
   Buttons
   ========================================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85em 1.6em;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  line-height: 1.2;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--amber);
  color: var(--pine-dark);
  border-color: var(--amber);
}
.btn-primary:hover { background: #d69332; color: var(--pine-dark); box-shadow: var(--shadow-1); }

.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(248, 244, 234, 0.55);
}
.btn-outline:hover { background: rgba(248, 244, 234, 0.12); color: var(--cream); border-color: var(--cream); }

.btn-outline-dark {
  background: transparent;
  color: var(--pine);
  border-color: var(--pine);
}
.btn-outline-dark:hover { background: var(--pine); color: var(--cream); }

.btn-block { width: 100%; }
.btn-sm { padding: 0.55em 1.1em; font-size: 0.9rem; }

/* =========================================================================
   Header & Navigation
   ========================================================================= */
.site-header {
  background: var(--pine-dark);
  color: var(--cream);
  position: sticky;
  top: 0;
  z-index: 500;
  border-bottom: 3px solid var(--amber);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.6rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--cream);
  flex-shrink: 0;
}
.brand img { width: 58px; height: 58px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--cream);
}
.brand-text span {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber-text);
}

.primary-nav { flex: 1; }
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.1rem;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.nav-list > li { position: relative; margin: 0; }

.nav-link, .nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  color: var(--cream);
  text-decoration: none;
  background: transparent;
  border: none;
  padding: 0.6rem 0.55rem;
  cursor: pointer;
  border-radius: var(--radius);
}
.nav-link:hover, .nav-toggle:hover { background: rgba(248, 244, 234, 0.1); color: var(--cream); }
.nav-link[aria-current="page"] {
  color: var(--amber-text);
  box-shadow: inset 0 -3px 0 var(--amber);
}
.nav-toggle .chev { font-size: 0.65em; transition: transform 0.15s ease; }
.nav-toggle[aria-expanded="true"] .chev { transform: rotate(180deg); }

.dropdown-menu {
  list-style: none;
  margin: 0;
  padding: 0.5rem;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 240px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 3px solid var(--amber);
  border-radius: var(--radius);
  box-shadow: var(--shadow-2);
  display: none;
  z-index: 50;
}
.nav-list > li.open .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 0.6rem 0.75rem;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.94rem;
  text-decoration: none;
  border-radius: 3px;
}
.dropdown-menu a:hover, .dropdown-menu a:focus-visible { background: var(--parchment); color: var(--pine); }
.dropdown-menu small { display: block; font-weight: 400; color: var(--slate); font-size: 0.8rem; margin-top: 0.1rem; }

.header-cta { flex-shrink: 0; }
.header-cta .btn { padding: 0.55em 0.9em; font-size: 0.85rem; white-space: nowrap; }
.nav-toggle-mobile {
  display: none;
  background: transparent;
  border: 2px solid rgba(248,244,234,0.5);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 0.5rem 0.7rem;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 1240px) {
  .header-inner { flex-wrap: wrap; }
  .nav-toggle-mobile { display: inline-flex; order: 2; }
  .header-cta { order: 3; }
  .primary-nav {
    order: 4;
    flex-basis: 100%;
    display: none;
  }
  .primary-nav.mobile-open { display: block; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; padding-top: 0.5rem; border-top: 1px solid rgba(248,244,234,0.15); }
  .nav-list > li { width: 100%; }
  .nav-link, .nav-toggle { width: 100%; justify-content: space-between; }
  .dropdown-menu { position: static; box-shadow: none; border: none; border-left: 3px solid var(--amber); border-radius: 0; margin-left: 0.5rem; }
  .header-cta .btn { display: none; }
}

/* =========================================================================
   Hero — "trailhead kiosk" signature
   ========================================================================= */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(180deg, rgba(20,42,33,0.15) 0%, rgba(20,42,33,0.55) 55%, rgba(15,28,22,0.92) 100%),
              url("../img/banner.jpg") center 60% / cover no-repeat;
  color: var(--cream);
  padding-top: var(--space-6);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding-block: var(--space-5);
  width: 100%;
}
.signpost {
  background: var(--paper);
  color: var(--ink);
  max-width: 640px;
  padding: var(--space-4);
  box-shadow: var(--shadow-2);
  border: 1px solid var(--line);
  position: relative;
  clip-path: polygon(0 18px, 18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%);
}
.signpost::before {
  content: "";
  position: absolute;
  left: 40px;
  bottom: -34px;
  width: 14px;
  height: 34px;
  background: linear-gradient(180deg, #6b5a3e, #4a3d2a);
  box-shadow: var(--shadow-1);
}
.signpost .eyebrow { color: var(--amber-deep); }
.signpost h1 { margin-bottom: var(--space-2); }
.signpost .lede { margin-bottom: var(--space-3); }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* =========================================================================
   Meeting strip (time-sensitive banner)
   ========================================================================= */
.meeting-strip {
  background: var(--pine);
  color: var(--cream);
  border-bottom: 1px solid rgba(248,244,234,0.15);
}
.meeting-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  flex-wrap: wrap;
  padding-block: 0.75rem;
  font-size: 0.95rem;
  text-align: center;
}
.meeting-strip strong { color: var(--amber-text); font-family: var(--font-mono); letter-spacing: 0.03em; }
.meeting-strip a { color: var(--cream); font-weight: 700; }

/* =========================================================================
   Sections & contour divider
   ========================================================================= */
.section { padding-block: var(--space-6); }
.section-alt { background: var(--paper); border-block: 1px solid var(--line); }
.section-head { max-width: 720px; margin-bottom: var(--space-4); }

.contour-divider {
  width: 100%;
  height: 40px;
  display: block;
  color: var(--line);
}

/* =========================================================================
   Card grid ("trail marker" cards)
   ========================================================================= */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-3);
}
.trail-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 4px solid var(--canopy);
  padding: var(--space-3);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  box-shadow: var(--shadow-1);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.trail-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
.trail-card .card-icon { width: 40px; height: 40px; color: var(--pine); }
.trail-card h3 { margin-bottom: 0.2rem; }
.trail-card p { font-size: 0.96rem; color: var(--slate); }
.trail-card .card-link { margin-top: auto; font-weight: 700; }
.trail-card--amber { border-top-color: var(--amber); }
.trail-card--rust { border-top-color: var(--rust); }
.trail-card--slate { border-top-color: var(--slate); }

/* =========================================================================
   Notices list
   ========================================================================= */
.notice-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; }
.notice-item {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: var(--space-3);
  padding-block: var(--space-3);
  border-bottom: 1px solid var(--line);
}
.notice-item:first-child { padding-top: 0; }
.notice-date {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--amber-deep);
  font-weight: 600;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.notice-item h3 { font-size: 1.15rem; margin-bottom: 0.3rem; }
.notice-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--pine);
  color: var(--cream);
  padding: 0.2em 0.6em;
  border-radius: 2px;
  margin-bottom: 0.4rem;
}
.notice-tag--board { background: var(--slate); }
.notice-tag--treatment { background: var(--canopy); }
.notice-tag--governance { background: var(--rust); }

@media (max-width: 640px) {
  .notice-item { grid-template-columns: 1fr; gap: 0.3rem; }
}

/* =========================================================================
   Resource strip / footer
   ========================================================================= */
.resource-strip { background: var(--pine-dark); color: var(--cream); padding-block: var(--space-4); }
.resource-strip h2 { color: var(--cream); font-size: 1.1rem; }
.resource-strip .eyebrow { color: var(--amber-text); }
.resource-strip .eyebrow::before { background: var(--amber-text); }
.resource-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--space-3); }
.resource-cols h4 {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  color: var(--amber-text);
  margin-bottom: 0.6rem;
}
.resource-cols ul { list-style: none; padding: 0; margin: 0; }
.resource-cols a { color: var(--cream); opacity: 0.9; }
.resource-cols a:hover { color: var(--amber); opacity: 1; }

.site-footer { background: var(--pine-dark); color: var(--cream); border-top: 3px solid var(--amber); }
.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: var(--space-4);
  padding-block: var(--space-5);
}
.footer-brand { display: flex; gap: 0.9rem; align-items: flex-start; }
.footer-brand img { width: 52px; height: 52px; }
.footer-brand p { color: rgba(248,244,234,0.75); font-size: 0.92rem; }
.footer-col h4 {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  color: var(--amber-text);
  margin-bottom: 0.8rem;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { color: var(--cream); opacity: 0.9; text-decoration: none; }
.footer-col a:hover { text-decoration: underline; opacity: 1; }
.footer-bottom {
  border-top: 1px solid rgba(248,244,234,0.15);
  padding-block: var(--space-2);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(248,244,234,0.7);
}
.footer-bottom a { color: rgba(248,244,234,0.85); }

@media (max-width: 800px) {
  .footer-top { grid-template-columns: 1fr; gap: var(--space-3); }
}

/* =========================================================================
   Page header band (interior pages)
   ========================================================================= */
.page-header {
  background: var(--pine-dark);
  color: var(--cream);
  padding-block: var(--space-5);
  position: relative;
  overflow: hidden;
}
.page-header .container { position: relative; z-index: 2; }
.page-header h1 { color: var(--cream); }
.page-header .lede { color: rgba(248,244,234,0.85); }
.page-header .eyebrow { color: var(--amber-text); }
.page-header .eyebrow::before { background: var(--amber-text); }
.page-header-topo {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  z-index: 1;
}

/* =========================================================================
   Map module (Mosquito Control page)
   ========================================================================= */
.map-module {
  display: grid;
  grid-template-columns: 300px 1fr;
  align-items: stretch;
  gap: 0;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow-2);
}
.map-legend {
  padding: var(--space-3);
  border-right: 1px solid var(--line);
  background: var(--paper);
}
.map-legend h3 {
  font-size: 1.05rem;
  margin-bottom: 0.9rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--pine);
}
.legend-group { margin-bottom: var(--space-3); }
.legend-group h4 {
  font-family: var(--font-mono);
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--slate);
  margin-bottom: 0.5rem;
}
.legend-row {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.4rem 0;
  font-size: 0.9rem;
}
.legend-row input[type="checkbox"] { margin-top: 0.25rem; width: 17px; height: 17px; accent-color: var(--pine); flex-shrink: 0; }
.legend-swatch {
  width: 20px; height: 14px; flex-shrink: 0; margin-top: 0.3rem;
  border: 1px solid rgba(0,0,0,0.25);
}
.legend-swatch.dot { width: 14px; height: 14px; border-radius: 50%; }
.legend-row label { cursor: pointer; }
.legend-row .zone-code { font-family: var(--font-mono); font-weight: 700; color: var(--ink); display: block; }
.legend-row .zone-desc { color: var(--slate); font-size: 0.82rem; }

#map-canvas {
  height: 100%;
  min-height: 680px;
  width: 100%;
  background: #dfe6e2;
}
.map-caption {
  grid-column: 1 / -1;
  font-size: 0.85rem;
  color: var(--slate);
  padding: 0.8rem var(--space-3);
  border-top: 1px solid var(--line);
  font-style: italic;
}
.leaflet-popup-content-wrapper { border-radius: 3px; font-family: var(--font-body); }
.leaflet-popup-content { font-size: 0.92rem; }
.popup-zone-code { font-family: var(--font-mono); font-weight: 700; color: var(--pine); display: block; margin-bottom: 0.2rem; }

.hotspot-marker span {
  display: block;
  width: 16px;
  height: 16px;
  background: var(--alert);
  border: 2.5px solid var(--cream);
  box-shadow: 0 0 0 1.5px var(--alert), 0 1px 4px rgba(0,0,0,0.4);
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%); /* triangle — distinct shape from round zone dots, not color-reliant */
}

@media (max-width: 900px) {
  .map-module { grid-template-columns: 1fr; }
  .map-legend { border-right: none; border-bottom: 1px solid var(--line); }
  #map-canvas { height: 420px; }
}

/* Accessible data table (screen-reader / no-JS alternative to the map) */
.data-table-wrap { overflow-x: auto; margin-top: var(--space-3); }
table.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  background: var(--paper);
}
table.data-table caption {
  text-align: left;
  font-weight: 700;
  color: var(--pine);
  padding-bottom: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
}
table.data-table th, table.data-table td {
  text-align: left;
  padding: 0.65rem 0.9rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
table.data-table th { font-family: var(--font-mono); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--slate); background: var(--parchment); }
table.data-table td.zone-code-cell { font-family: var(--font-mono); font-weight: 700; color: var(--pine); white-space: nowrap; }

details.map-alt-toggle { margin-top: var(--space-2); }
details.map-alt-toggle > summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--pine);
  padding: 0.6rem 0;
}

/* =========================================================================
   Content blocks: two-column, callouts, forms
   ========================================================================= */
.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-5);
  align-items: start;
}
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; gap: var(--space-4); } }

.callout {
  background: var(--paper);
  border-left: 4px solid var(--amber);
  padding: var(--space-3);
  box-shadow: var(--shadow-1);
}
.callout h3 { margin-bottom: 0.4rem; font-size: 1.15rem; }
.callout--history { border-left-color: var(--slate); }

.product-table { width: 100%; border-collapse: collapse; margin-block: var(--space-2); }
.product-table th, .product-table td { text-align: left; padding: 0.6rem 0.8rem; border-bottom: 1px solid var(--line); }
.product-table th { font-family: var(--font-mono); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--slate); }

.checklist { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(auto-fit,minmax(180px,1fr)); gap: 0.5rem 1rem; }
.checklist li { display: flex; align-items: center; gap: 0.5em; background: var(--parchment); border: 1px solid var(--line); padding: 0.5em 0.8em; font-size: 0.92rem; }
.checklist li::before { content: "\2713"; color: var(--canopy); font-weight: 700; }

/* Forms */
.form-card { background: var(--paper); border: 1px solid var(--line); padding: var(--space-4); box-shadow: var(--shadow-1); }
.field { margin-bottom: var(--space-2); }
.field label { display: block; font-weight: 700; margin-bottom: 0.35rem; font-size: 0.95rem; }
.field .hint { display: block; font-weight: 400; color: var(--slate); font-size: 0.85rem; margin-top: 0.25rem; }
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field textarea,
.field select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.7em 0.85em;
  border: 2px solid var(--line);
  background: var(--parchment);
  color: var(--ink);
  border-radius: var(--radius);
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--pine); background: var(--paper); }
.field textarea { min-height: 120px; resize: vertical; }
fieldset { border: 2px solid var(--line); padding: var(--space-2); margin: 0 0 var(--space-2); border-radius: var(--radius); }
legend { font-weight: 700; padding: 0 0.5em; font-family: var(--font-display); color: var(--pine); }
.check-row { display: flex; align-items: flex-start; gap: 0.6em; margin-bottom: 0.5em; }
.check-row input { margin-top: 0.3em; width: 18px; height: 18px; accent-color: var(--pine); flex-shrink: 0; }
.required-mark { color: var(--alert); }
.form-note { font-size: 0.85rem; color: var(--slate); margin-top: var(--space-2); }

/* Board / staff */
.people-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: var(--space-3); }
.person-card { background: var(--paper); border: 1px solid var(--line); padding: var(--space-3); text-align: left; }
.person-card .role { font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--amber-deep); }
.person-card .name { font-family: var(--font-display); font-size: 1.15rem; color: var(--pine); margin-top: 0.2rem; }

/* Real surveyed site list (per-zone accordion, mosquito-control.html) */
.site-list {
  list-style: none;
  padding: 0;
  margin: var(--space-2) 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 0.5rem;
}
.site-list li {
  margin: 0;
  background: var(--parchment);
  border: 1px solid var(--line);
  padding: 0.5em 0.75em;
  font-size: 0.85rem;
}
.site-list .site-name { font-weight: 700; color: var(--pine); display: block; }
.site-list .site-coords { font-family: var(--font-mono); font-size: 0.72rem; color: var(--slate); }

/* Document / minutes lists */
.doc-year-group { margin-bottom: var(--space-4); }
.doc-year-group summary {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--pine);
  cursor: pointer;
  padding: 0.8rem 0;
  border-bottom: 2px solid var(--pine);
}
.doc-list { list-style: none; padding: 0; margin: var(--space-2) 0 0; display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 0.6rem; }
.doc-list a {
  display: flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.7em 0.9em;
  background: var(--parchment);
  border: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 600;
}
.doc-list a:hover { border-color: var(--pine); color: var(--pine); }
.doc-list .doc-icon { flex-shrink: 0; color: var(--slate); }

/* Breadcrumb-ish back link */
.back-link { display: inline-flex; align-items: center; gap: 0.4em; font-weight: 700; margin-bottom: var(--space-2); }

/* Skip nav focus targets in map for keyboard alt */
.visually-hidden-focusable:not(:focus) { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
