:root {
    --ink: #3c3937;
    --paper: #fefcf8;
    --stone: #edebe8;
    --muted: #746f6b;
    --line: rgba(60, 57, 55, .14);
    --font-display: "Lora", Georgia, serif;
    --font-body: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    padding-top: 96px;
    color: var(--ink);
    background: var(--stone);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-underline-offset: 3px; }
.legal-shell {
    width: min(calc(100% - 40px), 900px);
    margin: 54px auto 90px;
    padding: clamp(30px, 6vw, 72px);
    border-radius: 28px;
    background: var(--paper);
    box-shadow: 0 18px 58px rgba(60, 57, 55, .06);
}
.legal-kicker { margin: 0 0 10px; color: var(--muted); font-size: .76rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
h1, h2 { font-family: var(--font-display); font-weight: 500; line-height: 1.15; }
h1 { margin: 0; font-size: clamp(2.25rem, 7vw, 3.6rem); letter-spacing: -.035em; }
.updated { margin: 14px 0 42px; color: var(--muted); font-size: .88rem; }
h2 { margin: 42px 0 12px; font-size: 1.45rem; }
p, li { color: #4f4a47; }
ul { padding-left: 22px; }
.notice { margin: 34px 0; padding: 20px 22px; border: 1px solid var(--line); border-radius: 16px; background: #f6f3ee; }
.notice strong { color: var(--ink); }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.contact-button {
    min-height: 46px;
    padding: 11px 18px;
    border: 0;
    border-radius: 999px;
    background: var(--ink);
    box-shadow: 0 10px 24px rgba(60, 57, 55, .1);
    color: white;
    cursor: pointer;
    font: inherit;
    font-size: .88rem;
    font-weight: 800;
    transition: transform 270ms cubic-bezier(.22, .61, .36, 1);
}
.contact-button:hover { transform: translateY(-3px); }
.contact-button:active { transform: none; }
.contact-button:focus-visible { outline: 3px solid rgba(60, 57, 55, .24); outline-offset: 4px; }
.legal-footer { padding: 32px 20px 48px; text-align: center; color: var(--muted); font-size: .78rem; }
@media (prefers-reduced-motion: reduce) {
    .contact-button { transition-duration: .01ms; }
    .contact-button:hover { transform: none; }
}
@media (max-width: 560px) {
    body { padding-top: 82px; }
    .legal-shell { width: min(calc(100% - 24px), 900px); margin-top: 24px; border-radius: 20px; }
}
