/* Shared tokens + reset — used by every page (home + legal). */
@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url("../fonts/inter-variable-latin.woff2") format("woff2");
}

:root {
    --ink: #15130f;
    --ink-2: #221c12;
    --gold: #b8912f;
    --gold-bright: #e4c26a;
    --bronze: #7a5c22;
    --cream: #faf6ec;
    --muted: #544d43;
    --white: #ffffff;
    --line: rgba(21, 19, 15, 0.12);
}

* {
    box-sizing: border-box;
}

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

a {
    color: inherit;
}

img {
    max-width: 100%;
}

figure {
    margin: 0;
}

.site {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
