:root {
  color-scheme: light;
  --ink: #17201b;
  --muted: #59645d;
  --paper: #f7f5ef;
  --surface: rgba(255, 255, 255, 0.74);
  --line: #d9ddd7;
  --accent: #265f49;
  --accent-dark: #174432;
  --shadow: 0 24px 70px rgba(28, 49, 39, 0.11);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 10%, rgba(122, 169, 144, 0.22), transparent 31rem),
    radial-gradient(circle at 88% 85%, rgba(218, 190, 139, 0.18), transparent 28rem),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.68;
}

a { color: var(--accent-dark); text-underline-offset: 0.18em; }
a:hover { color: var(--accent); }

.home-shell {
  min-height: calc(100vh - 76px);
  display: grid;
  place-items: center;
  padding: 48px 24px;
}

.hero {
  width: min(760px, 100%);
  padding: clamp(32px, 7vw, 76px);
  border: 1px solid rgba(90, 109, 98, 0.22);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1, h2, h3 { line-height: 1.18; letter-spacing: -0.025em; }
h1 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.75rem, 8vw, 5.7rem); font-weight: 500; }
.lead { max-width: 620px; margin: 28px 0 14px; font-size: clamp(1.2rem, 3vw, 1.6rem); line-height: 1.45; }
.supporting { max-width: 610px; margin: 0; color: var(--muted); font-size: 1.02rem; }

.actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 26px; margin-top: 36px; }
.primary-link { display: inline-block; padding: 12px 18px; border-radius: 999px; color: #fff; background: var(--accent-dark); font-weight: 700; text-decoration: none; }
.primary-link:hover { color: #fff; background: var(--accent); }
.text-link { font-weight: 650; }

.policy-header { width: min(900px, calc(100% - 40px)); margin: 28px auto 0; }
.back-link { font-weight: 700; text-decoration: none; }
.policy-shell { width: min(900px, calc(100% - 32px)); margin: 26px auto 50px; }
article { padding: clamp(28px, 7vw, 72px); border: 1px solid rgba(90, 109, 98, 0.22); border-radius: 24px; background: rgba(255, 255, 255, 0.82); box-shadow: var(--shadow); }
article h1 { max-width: 760px; font-size: clamp(2.25rem, 6vw, 4.2rem); }
.policy-meta { margin: 26px 0 0; padding: 18px 20px; border-left: 4px solid var(--accent); background: #eef2ed; }
article section { margin-top: 46px; }
article h2 { margin: 0 0 16px; font-size: clamp(1.45rem, 4vw, 2rem); }
article h3 { margin: 26px 0 8px; font-size: 1.08rem; }
article p { margin: 0 0 14px; }
article ul { padding-left: 1.3rem; }
article li + li { margin-top: 7px; }

footer { display: flex; justify-content: center; flex-wrap: wrap; gap: 9px; padding: 24px; color: var(--muted); font-size: 0.9rem; }
footer a { color: inherit; }

@media (max-width: 560px) {
  .home-shell { padding: 22px 14px; }
  .hero { border-radius: 20px; }
  .policy-shell { width: min(100% - 20px, 900px); }
  .policy-header { width: min(100% - 28px, 900px); }
  article { border-radius: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
