:root {
  color-scheme: light;
  --ink: #101512;
  --paper: #f4f6f3;
  --green: #287466;
  --green-dark: #164f46;
  --line: rgba(16, 21, 18, .18);
  --soft-ink: #56605b;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); }
body { margin: 0; color: var(--ink); background: var(--paper); font: 400 1rem/1.7 var(--sans); }
a { color: var(--green-dark); text-underline-offset: .2em; }
.shell { width: min(100% - 2.5rem, 860px); margin: 0 auto; }
.legal-header { border-bottom: 1px solid rgba(40, 116, 102, .28); }
.legal-nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.1rem 0; }
.wordmark { color: var(--ink); font-weight: 800; letter-spacing: .15em; text-decoration: none; }
.heart { color: #000; }
main { padding: clamp(3.5rem, 8vw, 7rem) 0; }
.eyebrow { margin: 0 0 .65rem; color: var(--green); font-size: .76rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
h1, h2 { font-family: var(--serif); font-weight: 400; line-height: 1.08; }
h1 { max-width: 15ch; margin: 0 0 1.25rem; font-size: clamp(2.8rem, 8vw, 5rem); }
h2 { margin: 2.7rem 0 .75rem; font-size: clamp(1.55rem, 4vw, 2.15rem); }
p, li { max-width: 72ch; }
.intro { color: var(--soft-ink); font-family: var(--serif); font-size: 1.15rem; }
.notice { margin: 2rem 0; padding: 1rem 1.1rem; border-left: 3px solid var(--green); background: rgba(255,255,255,.5); }
.legal-footer { padding: 1.5rem 0 2.5rem; border-top: 1px solid var(--line); }
.footer-links { display: flex; flex-wrap: wrap; gap: .5rem 1.1rem; font-size: .82rem; }
@media (max-width: 560px) { .legal-nav { align-items: flex-start; flex-direction: column; } }
