:root {
  --green: #2f5c38;
  --green-deep: #1a3a24;
  --cream: #f4f1e8;
  --ink: #1c271f;
  --muted: #667066;
}
* { box-sizing: border-box; }
body {
  font-family: system-ui, -apple-system, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  margin: 0;
  padding: 0 1.25rem 3rem;
  max-width: 720px;
  margin-inline: auto;
}
.loc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
}
.loc-header a:first-child {
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--green-deep);
  text-decoration: none;
}
.loc-header a:first-child span { color: var(--green); }
.cta {
  background: var(--green);
  color: white;
  padding: .6rem 1rem;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
  text-decoration: none;
}
h1 { font-size: clamp(1.8rem, 4vw, 2.4rem); line-height: 1.15; color: var(--green-deep); }
.lead { color: var(--muted); font-size: 1.05rem; }
.facts {
  background: white;
  border: 1px solid rgba(47, 92, 56, .12);
  padding: 1rem 1.25rem;
  list-style: none;
}
.facts li { margin: .45rem 0; }
footer { margin-top: 2rem; font-size: .85rem; color: var(--muted); }
footer a { color: var(--green); }
