:root { color-scheme: light; --paper: #f7f7f0; --ink: #20372e; --green: #286146; --muted: #59665d; --line: #d7ded1; --card: #fffef9; }
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font: 17px/1.65 system-ui, -apple-system, "Segoe UI", sans-serif; }
a { color: var(--green); text-underline-offset: .22em; overflow-wrap: anywhere; }
a:hover { text-decoration-thickness: 2px; }
a:focus-visible { outline: 3px solid #9a550d; outline-offset: 5px; }
.wrap { width: min(1100px, calc(100% - 64px)); margin-inline: auto; }
.draft { padding: 11px 24px; background: #f2e5bc; color: #634518; font-size: 13px; text-align: center; }
.skip { position: absolute; top: -100px; left: 15px; z-index: 10; padding: 10px 15px; background: white; }
.skip:focus { top: 8px; }
.site-header { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding-block: 30px; border-bottom: 1px solid var(--line); }
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 19px; font-weight: 750; text-decoration: none; color: var(--ink); white-space: nowrap; }
.brand-dot { width: 14px; height: 14px; background: var(--green); border-radius: 50%; display: inline-block; }
nav { display: flex; gap: 26px; flex-wrap: wrap; font-size: 14px; }
nav a { text-decoration: none; color: var(--muted); }
nav a[aria-current="page"] { color: var(--green); text-decoration: underline; font-weight: 650; }
.hero { max-width: 870px; padding-block: 72px 50px; }
.eyebrow { font-size: 12px; font-weight: 750; letter-spacing: .14em; color: var(--green); margin: 0 0 18px; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; line-height: 1.15; font-weight: 500; letter-spacing: -.035em; }
h1 { font-size: clamp(38px, 5.2vw, 62px); margin: 0 0 24px; }
h1 span { color: var(--green); }
h2 { font-size: 31px; margin: 0 0 17px; }
p { margin: 0 0 18px; }
.lead { font-size: 21px; line-height: 1.55; max-width: 740px; }
.hero > p:not(.eyebrow):not(.lead) { max-width: 725px; color: var(--muted); }
.button { display: inline-flex; gap: 20px; align-items: center; margin-top: 10px; padding: 13px 22px; border-radius: 6px; background: var(--green); color: white; text-decoration: none; font-size: 15px; font-weight: 600; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding-bottom: 56px; }
.card { padding: 27px; background: var(--card); border: 1px solid var(--line); border-radius: 12px; }
.number { display: block; color: var(--green); font-size: 12px; letter-spacing: .1em; font-weight: 750; margin-bottom: 24px; }
.card h2 { font-size: 29px; }
.card p { color: var(--muted); font-size: 16px; margin: 0; }
.section { border-top: 1px solid var(--line); padding-block: 44px; }
.split { display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px; }
.note { background: #edf1e7; border-left: 3px solid var(--green); padding: 19px 22px; border-radius: 0 8px 8px 0; font-size: 15px; }
.contact { display: grid; grid-template-columns: 1.6fr 1fr; gap: 60px; align-items: center; }
.contact h2 { font-size: 30px; }
.contact p { font-size: 16px; color: var(--muted); }
.contact-box { display: grid; gap: 8px; padding: 22px; background: var(--card); border: 1px solid var(--line); border-radius: 12px; }
small { font-size: 13px; color: var(--muted); }
.site-footer { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 15px; border-top: 1px solid var(--line); padding-block: 25px 35px; font-size: 13px; color: var(--muted); }
.policy { max-width: 820px; padding-bottom: 40px; }
.policy-title { padding-block: 60px 20px; }
.policy section { padding-top: 34px; margin-top: 28px; border-top: 1px solid var(--line); }
.policy section h2 { font-size: 28px; }
.policy ul { padding-left: 23px; }
.policy li { padding-left: 5px; margin-bottom: 12px; }
.policy .review { background: #f2e5bc; border: 0; border-radius: 12px; padding: 27px; }
.muted { color: var(--muted); font-size: 14px; }
@media (max-width: 700px) {
  .wrap { width: calc(100% - 36px); }
  .site-header { flex-direction: column; align-items: flex-start; gap: 17px; padding-block: 22px; }
  .hero, .policy-title { padding-top: 42px; }
  .lead { font-size: 19px; }
  .cards, .split, .contact { grid-template-columns: 1fr; gap: 20px; }
  .cards { padding-bottom: 32px; }
  .card { padding: 22px; }
  .number { margin-bottom: 14px; }
  .section { padding-block: 32px; }
  .site-footer { flex-direction: column; }
  .draft { padding-inline: 15px; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
@media print { body { background: white; font-size: 11pt; } .wrap { width: 100%; } nav, .skip, .button { display: none; } h1 { font-size: 30pt; } .hero, .policy-title { padding-top: 20px; } .card, .note { break-inside: avoid; } }
