:root {
    color-scheme: light;
    --page: #f7f4f2;
    --surface: #ffffff;
    --text: #3d3836;
    --muted: #726a66;
    --accent: #c85d4b;
    --accent-soft: #f7e8e4;
    --link: #286f91;
    --border: #ded7d3;
    --shadow: 0 12px 32px rgba(89, 65, 57, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--page);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.72;
    letter-spacing: 0;
}
a { color: var(--link); text-underline-offset: 3px; }
a:hover { text-decoration-thickness: 2px; }
.site-header { border-bottom: 1px solid var(--border); background: rgba(255, 255, 255, 0.94); }
.site-header__inner, .page, .site-footer__inner { width: min(100% - 32px, 820px); margin: 0 auto; }
.site-header__inner { min-height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { color: var(--accent); font-size: 20px; font-weight: 750; text-decoration: none; }
.legal-nav { display: flex; align-items: center; gap: 18px; font-size: 14px; font-weight: 650; }
.legal-nav a[aria-current="page"] { color: var(--accent); text-decoration: none; }
.page { padding: 52px 0 64px; }
.document {
    padding: 48px clamp(22px, 6vw, 64px);
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: var(--shadow);
}
.eyebrow { margin: 0 0 8px; color: var(--accent); font-size: 13px; font-weight: 750; text-transform: uppercase; }
h1, h2, h3 { letter-spacing: 0; }
h1 { margin: 0; font-size: clamp(34px, 7vw, 52px); line-height: 1.1; }
.updated { margin: 14px 0 0; color: var(--muted); font-size: 14px; }
.summary { margin: 30px 0 36px; padding: 18px 20px; border-left: 4px solid var(--accent); border-radius: 0 6px 6px 0; background: var(--accent-soft); }
.summary p { margin: 0; }
section { scroll-margin-top: 24px; }
h2 { margin: 38px 0 12px; padding-top: 8px; border-top: 1px solid var(--border); font-size: 23px; line-height: 1.3; }
h3 { margin: 24px 0 8px; font-size: 17px; line-height: 1.4; }
p, ul { margin: 0 0 14px; }
ul { padding-left: 24px; }
li + li { margin-top: 8px; }
.contact { padding: 18px 20px; border: 1px solid var(--border); border-radius: 6px; background: #fbfafa; }
.contact p:last-child { margin-bottom: 0; }
.site-footer { border-top: 1px solid var(--border); background: var(--surface); }
.site-footer__inner { display: flex; justify-content: space-between; gap: 20px; padding: 24px 0 32px; color: var(--muted); font-size: 13px; }
.site-footer p { margin: 0; }

@media (max-width: 600px) {
    .site-header__inner { min-height: 72px; align-items: flex-start; flex-direction: column; justify-content: center; gap: 3px; padding: 10px 0; }
    .legal-nav { width: 100%; justify-content: space-between; }
    .page { width: 100%; padding: 0; }
    .document { padding: 36px 20px 48px; border: 0; border-radius: 0; box-shadow: none; }
    h1 { font-size: 36px; }
    .site-footer__inner { width: min(100% - 40px, 820px); flex-direction: column; gap: 6px; }
}

@media print {
    .site-header, .site-footer { display: none; }
    body, .document { background: #ffffff; }
    .page, .document { width: 100%; padding: 0; border: 0; box-shadow: none; }
}
