:root {
  color-scheme: light;
  --ink: #18352c;
  --muted: #475c52;
  --green: #1a654d;
  --line: #d0ded5;
  --paper: #fffdf7;
  --wash: #eff4ed;
}
* {
  box-sizing: border-box;
}
html {
  scroll-padding-top: 1rem;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font:
    17px/1.65 system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}
a {
  color: var(--green);
  text-underline-offset: 0.18em;
}
a:hover {
  color: #0a3929;
}
a:focus-visible,
input:focus-visible {
  outline: 3px solid #bc6118;
  outline-offset: 4px;
}
img {
  max-width: 100%;
  height: auto;
}
.skip {
  position: absolute;
  top: -100px;
  left: 1rem;
  padding: 1rem;
  background: white;
  z-index: 5;
}
.skip:focus {
  top: 0;
}
.preview {
  text-align: center;
  background: #172b40;
  color: #fff;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}
.site-header {
  max-width: 1160px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 1.5rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--ink);
}
nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.site-header nav a {
  font-size: 0.95rem;
  font-weight: 650;
}
.pause-notice {
  border-block: 1px solid #e9c992;
  background: #fff1d7;
  padding: 1rem max(1.5rem, calc((100vw - 1112px) / 2));
  color: #513814;
  font-size: 0.98rem;
}
.pause-notice strong {
  display: block;
}
main {
  max-width: 1160px;
  margin: auto;
  padding: 3rem 1.5rem 4rem;
}
.page-heading {
  max-width: 900px;
  margin-bottom: 2rem;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.77rem;
  font-weight: 800;
  color: var(--green);
  margin: 0 0 0.7rem;
}
h1 {
  font-size: clamp(2rem, 5.1vw, 3.65rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
  margin: 0 0 1.15rem;
}
h2 {
  font-size: clamp(1.25rem, 2.3vw, 1.8rem);
  line-height: 1.3;
  margin: 0 0 0.85rem;
}
p {
  margin: 0.65rem 0 1rem;
}
.lead {
  font-size: 1.18rem;
  color: var(--muted);
  max-width: 830px;
}
section {
  margin: 2.5rem 0;
}
section > p,
.article {
  max-width: 800px;
}
.home-intro {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-map {
  max-height: 240px;
  object-fit: contain;
}
.home-intro label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.65rem;
}
input[type="search"] {
  width: 100%;
  border: 2px solid #809d8e;
  border-radius: 0.65rem;
  padding: 1rem;
  background: white;
  font: inherit;
  color: var(--ink);
}
#search-hint,
#search-message {
  font-size: 0.9rem;
  color: var(--muted);
}
#search-message:empty {
  display: none;
}
.state-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.state-card {
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.4rem;
  background: white;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.state-card:hover {
  border-color: var(--green);
  background: var(--wash);
}
.state-card strong {
  font-size: 1.28rem;
  color: var(--ink);
}
.state-card span {
  font-size: 0.9rem;
  color: var(--muted);
}
.source-card {
  background: var(--wash);
  border: 1px solid var(--line);
  border-top: 4px solid var(--green);
  border-radius: 1rem;
  padding: 1.6rem;
  max-width: 900px;
}
.source-card p {
  max-width: 750px;
}
.button {
  display: inline-block;
  background: var(--green);
  color: #fff;
  border-radius: 0.6rem;
  padding: 0.8rem 1.2rem;
  font-weight: 700;
  text-decoration: none;
}
.button:hover {
  background: #123e30;
  color: #fff;
}
.link-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.5rem;
  margin: 0.8rem 0;
}
.link-list li {
  margin: 0;
}
.link-list a {
  display: inline-block;
  padding: 0.25rem 0;
}
#counties .link-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.contents {
  display: block;
  background: var(--wash);
  border-left: 4px solid var(--green);
  padding: 1.2rem 1.5rem;
  max-width: 800px;
}
.article section {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
footer {
  background: #e5eee5;
  padding: 2rem max(1.5rem, calc((100vw - 1112px) / 2));
  font-size: 0.9rem;
}
footer p {
  max-width: 950px;
}
footer nav {
  gap: 0.6rem 1.5rem;
}
footer nav a {
  display: inline-block;
  padding: 0.3rem 0;
}
@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }
  .site-header nav {
    gap: 1.2rem;
  }
  .home-intro {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .hero-map {
    display: none;
  }
  .state-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  #counties .link-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  main {
    padding-top: 2rem;
  }
}
@media (max-width: 440px) {
  .state-grid,
  #counties .link-list {
    grid-template-columns: 1fr;
  }
  .site-header nav {
    font-size: 0.9rem;
  }
  .source-card {
    padding: 1.2rem;
  }
  main {
    padding-inline: 1.1rem;
  }
  h1 {
    font-size: 2.1rem;
  }
}
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}
