:root {
    --ink: #0a0a09;
    --paper: #faf9f6;
    --paper2: #f2f1ed;
    --text: #111111;
    --muted: #55534f;
    --accent: #cf9b6e;
    --accent-gradient: linear-gradient(
        45deg,
        #cf9b6e 0%,
        #e7d2b8 20%,
        #f5f2ec 55%,
        #ffffff 100%
    );
    --line: rgba(21, 21, 18, 0.16);
    --lineL: rgba(243, 240, 232, 0.14);
    --max: 1440px;
    --pad: clamp(20px, 4.2vw, 72px);
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}
body {
    background: var(--paper);
    color: var(--text);
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        'Segoe UI',
        sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}
::selection {
    background: var(--ink);
    color: var(--paper);
}

.grand-aim-text {
    color: var(--accent);
}
