/* Hayes Place — site styles
   Muted plum on warm grey, one narrow column, no cards and no grid.
   Quiet on purpose: the organisation is classified by the IRS under family
   violence shelters, and a loud, location-heavy site would be wrong for it. */

@import url('https://fonts.googleapis.com/css2?family=Newsreader:opsz,wght@6..72,400;6..72,600;6..72,700&display=swap');

:root {
  --plum-900: #3b2439;
  --plum-600: #7a4a72;
  --plum-400: #a97ba1;
  --ink: #292328;
  --muted: #695f68;
  --rule: #e2dbe0;
  --linen: #f7f4f6;
  --white: #fff;
  --max: 720px;
  --body: "Newsreader", Georgia, 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.8; font-size: 19px; }
h1, h2 { color: var(--plum-900); line-height: 1.25; font-weight: 700; margin: 0 0 .55em; }
h1 { font-size: clamp(2rem, 5vw, 2.7rem); }
h2 { font-size: clamp(1.3rem, 3vw, 1.6rem); font-weight: 600; }
p { margin: 0 0 1.15em; }
a { color: var(--plum-600); }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 26px; }
.section { padding: 58px 0; }
.bg-linen { background: var(--linen); }
.lead { font-size: 1.12rem; 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 { color: var(--plum-900); text-decoration: none; font-weight: 700; font-size: 1.15rem; }
.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(--plum-600); }

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

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-size: .82rem; text-transform: uppercase; letter-spacing: .1em; color: var(--plum-600); 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: 18px; }
  .site-header .container { flex-direction: column; align-items: flex-start; }
}
