:root {
  --paper:#FBF6EE;
  --paper-deep:#F3ECDF;
  --card:#FFFDF8;
  --ink:#33302B;
  --ink-soft:#6B655B;
  --sage:#3F5E4E;
  --sage-deep:#31493D;
  --sage-tint:#E4EAE2;
  --terra:#A45C40;
  --terra-deep:#8C4B33;
  --terra-tint:#F3E2D8;
  --ochre:#C08A2D;
  --ochre-tint:#F4E7CB;
  --line:rgba(51,48,43,.14);
  --shadow:0 4px 14px rgba(66,55,38,.10);
  --radius:16px;
}
* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  *, *::before, *::after { animation:none !important; transition:none !important; }
}
body {
  font-family:system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size:17px; line-height:1.65;
  color:var(--ink); background:var(--paper);
  -webkit-font-smoothing:antialiased;
}
h1, h2, h3 { font-family:Georgia, "Times New Roman", serif; font-weight:600; line-height:1.2; }
h1 { font-size:clamp(1.9rem,4.6vw,2.9rem); }
h2 { font-size:clamp(1.45rem,3.2vw,1.9rem); }
h3 { font-size:1.12rem; }
a { color:var(--sage); }
a:hover { color:var(--sage-deep); }
:focus-visible { outline:3px solid var(--terra); outline-offset:2px; border-radius:8px; }
.skip-link {
  position: fixed;
  top: -5rem;
  left: 1rem;
  z-index: 1000;
  padding: .65rem 1rem;
  border-radius: 8px;
  background: var(--sage-deep);
  color: var(--card);
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus {
  top: 1rem;
  color: var(--card);
}
#main-content:focus {
  outline: none;
}
.wrap { max-width:1080px; margin:0 auto; padding:0 20px; }
.prose { max-width:46em; margin-left:auto; margin-right:auto; }
.prose p { margin-bottom:1rem; }
.prose h2 { margin:2rem 0 .7rem; }
.prose ul { margin:0 0 1rem 1.4rem; }
.prose li { margin-bottom:.35rem; }
section { padding:2.4rem 0; }
section[id] { scroll-margin-top:72px; }
.alt { background:var(--paper-deep); }

.site-header {
  position:sticky; top:0; z-index:50;
  background:rgba(251,246,238,.92);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  border-bottom:1px solid var(--line);
}
.header-inner { display:flex; align-items:center; justify-content:space-between; min-height:60px; gap:12px; flex-wrap:wrap; padding-top:8px; padding-bottom:8px; }
.brand { display:flex; align-items:center; gap:10px; text-decoration:none; color:var(--ink); }
.brand svg { flex-shrink:0; }
.wordmark { font-family:Georgia, "Times New Roman", serif; font-weight:600; font-size:1.1rem; }
.site-nav { display:flex; gap:4px; flex-wrap:wrap; }
.site-nav a {
  text-decoration:none; color:var(--ink-soft); font-weight:700; font-size:.95rem;
  padding:.4rem .9rem; border-radius:999px;
}
.site-nav a:hover { background:var(--sage-tint); color:var(--sage-deep); }
.site-nav a[aria-current="page"] { background:var(--terra-tint); color:var(--terra-deep); }

.page-head { text-align:center; padding:3.2rem 0 2.4rem; }
.kicker {
  display:inline-block; font-size:.78rem; font-weight:700;
  letter-spacing:.12em; text-transform:uppercase;
  color:var(--terra-deep); background:var(--terra-tint);
  padding:.3rem .9rem; border-radius:999px; margin-bottom:1rem;
}
.page-head p.intro { color:var(--ink-soft); max-width:40em; margin:1rem auto 0; }
.cta-row { display:flex; gap:.8rem; justify-content:center; flex-wrap:wrap; margin-top:1.6rem; }

.btn {
  display:inline-block; text-decoration:none; font-weight:600; font-size:.98rem;
  padding:.55rem 1.3rem; border-radius:999px;
  background:var(--sage); color:#FFFDF8;
  border:1.5px solid var(--sage);
}
.btn:hover { background:var(--sage-deep); border-color:var(--sage-deep); color:#FFFDF8; }
.btn.quiet { background:transparent; color:var(--sage); }
.btn.quiet:hover { background:var(--sage-tint); color:var(--sage-deep); }

.section-head { text-align:center; margin-bottom:1.8rem; }
.section-head p { color:var(--ink-soft); max-width:40em; margin:.5rem auto 0; }

.card {
  background:var(--card); border:1px solid var(--line);
  border-radius:var(--radius); box-shadow:var(--shadow);
  padding:1rem 1.15rem;
}
.card-grid-2 { display:grid; grid-template-columns:1fr 1fr; gap:1rem; max-width:880px; margin:0 auto; }
.card h3 { margin-bottom:.4rem; }
.card p { color:var(--ink-soft); font-size:.97rem; }

.callout {
  background:var(--ochre-tint);
  border-left:4px solid var(--ochre);
  border-radius:0 12px 12px 0;
  padding:.9rem 1.1rem; font-size:.95rem;
  max-width:46em; margin:1.6rem auto 0;
}
.prose .callout { margin-left:0; margin-right:0; margin-bottom:1rem; }

.info-card dl { display:grid; grid-template-columns:auto 1fr; gap:.35rem 1.2rem; }
.info-card dt { font-weight:700; }
.info-card dd { color:var(--ink-soft); overflow-wrap:anywhere; }

.effective { color:var(--ink-soft); font-size:.95rem; margin-bottom:1.4rem; }

.site-footer { border-top:1px solid var(--line); padding:2.2rem 0 2.6rem; }
.site-footer p, .site-footer a, .site-footer li { font-size:.9rem; color:var(--ink-soft); }
.footer-cols { display:flex; justify-content:space-between; gap:2rem; flex-wrap:wrap; margin-bottom:1.2rem; }
.footer-cols ul { list-style:none; }
.footer-cols li { margin-bottom:.25rem; }
.footer-cols a:hover { color:var(--sage-deep); }
.footer-disclaimer { max-width:46em; }

@media (max-width:820px) {
  .card-grid-2 { grid-template-columns:1fr; }
  .header-inner { justify-content:center; }
  .info-card dl { grid-template-columns:1fr; gap:0; }
  .info-card dt { margin-top:.5rem; }
}

@media print {
  body { background:#fff; color:#000; }
  .site-header, .site-nav, .site-footer, .btn, .cta-row { display:none !important; }
  section, .alt { background:#fff; padding:1rem 0; }
  .card, .callout { box-shadow:none; break-inside:avoid; }
  a { color:#000; text-decoration:underline; }
}
