/* Neighbor to Neighbor Foundation — site styles
   Pine green and clay on warm oat. One narrow column, no cards, no grid.
   Warm rather than corporate: the organisation is an IRS P20 human-services
   nonprofit run out of Mission, Kansas, and the page should read like a
   neighbour talking, not like an institution. */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&family=Inter:wght@400;500;600&display=swap');

:root {
  --pine-900: #1f3d34;
  --pine-700: #2f5c4e;
  --clay-600: #b4552d;
  --clay-400: #d98b64;
  --ink: #24282a;
  --muted: #5f6a66;
  --rule: #e0dbd2;
  --oat: #faf7f2;
  --white: #fff;
  --max: 720px;
  --heading: "Fraunces", Georgia, serif;
  --body: "Inter", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.75;
  font-size: 18px;
}
h1, h2 { font-family: var(--heading); color: var(--pine-900); line-height: 1.2; margin: 0 0 .55em; }
h1 { font-size: clamp(2rem, 5vw, 2.7rem); font-weight: 700; }
h2 { font-size: clamp(1.3rem, 3vw, 1.6rem); font-weight: 600; }
p { margin: 0 0 1.15em; }
a { color: var(--clay-600); }
a:hover { color: var(--pine-700); }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 26px; }
.section { padding: 58px 0; }
.bg-oat { background: var(--oat); }
.lead { font-size: 1.1rem; color: var(--muted); }
.small { font-size: .92rem; color: var(--muted); }

.site-header { padding: 22px 0; border-bottom: 1px solid var(--rule); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.brand { font-family: var(--heading); color: var(--pine-900); text-decoration: none; font-weight: 700; font-size: 1.1rem; }
.nav__links { list-style: none; display: flex; gap: 20px; margin: 0; padding: 0; }
.nav__links a { color: var(--muted); font-size: .95rem; text-decoration: none; }
.nav__links a:hover { color: var(--clay-600); }

.hero { padding: 74px 0 60px; }
.hero__rule { width: 48px; height: 3px; background: var(--clay-400); margin: 0 0 26px; }

ul.services { list-style: none; margin: 26px 0 0; padding: 0; }
ul.services li { padding: 18px 0 18px 26px; border-top: 1px solid var(--rule); position: relative; }
ul.services li:last-child { border-bottom: 1px solid var(--rule); }
ul.services li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 30px;
  width: 10px;
  height: 2px;
  background: var(--clay-400);
}
ul.services strong { display: block; font-family: var(--heading); font-weight: 600; color: var(--pine-900); }
ul.services span { color: var(--muted); font-size: .96rem; }

dl.facts { margin: 26px 0 0; }
dl.facts div { padding: 15px 0; border-top: 1px solid var(--rule); }
dl.facts div:last-child { border-bottom: 1px solid var(--rule); }
dl.facts dt {
  font-family: var(--body);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--pine-700);
  margin: 0 0 .2em;
}
dl.facts dd { margin: 0; }

.site-footer { border-top: 1px solid var(--rule); padding: 34px 0 40px; }
.site-footer p { margin: 0 0 .5em; }
.footer__legal { font-size: .88rem; color: var(--muted); }

@media (max-width: 640px) {
  body { font-size: 17px; }
  .site-header .container { flex-direction: column; align-items: flex-start; }
}
