/* Shared tokens + reset, same design DNA as the wealth-infinity page. */
@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;
    --red: #d64533;
    --green: #2e9464;
    --green-ink: #1e7a4e;
    --line: rgba(21, 19, 15, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

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;
}

.site-wide {
    width: min(1380px, 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;
}

::selection {
    background: rgba(228, 194, 106, 0.55);
}
