@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500&family=Inter:wght@400;600;800&display=swap');

:root {
    --ink: #102120;
    --muted: #65716d;
    --paper: #f7f3ea;
    --rule: rgba(31, 48, 47, .18);
    --gold: #b28a52;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a { color: #1f6f83; }

.legal {
    width: min(860px, calc(100% - 36px));
    margin: 0 auto;
    padding: clamp(56px, 8vw, 110px) 0;
}

.back {
    display: inline-flex;
    margin-bottom: 42px;
    color: var(--ink);
    font-family: "Cormorant Garamond", serif;
    font-size: 28px;
    text-decoration: none;
}

.kicker {
    margin: 0 0 12px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1 {
    margin: 0 0 44px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(54px, 9vw, 98px);
    font-weight: 400;
    line-height: .9;
}

section {
    padding: 28px 0;
    border-top: 1px solid var(--rule);
}

h2 {
    margin: 0 0 12px;
    font-family: Inter, system-ui, sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

p {
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
}
