:root {
    /* Palette: Asphalt, Safety Orange, Paper, Ink */
    --color-ink: #111111;
    --color-ink-light: #333333;
    --color-paper: #F9F9F7;
    --color-paper-dark: #EBEBE6;
    --color-brand: #FF4D00; /* Safety Orange */
    --color-brand-dark: #CC3D00;
    --color-asphalt: #2A2A2A;
    --color-asphalt-light: #4A4A4A;
    --color-border: #D1D1C7;

    /* Typography */
    --font-display: 'Chivo', system-ui, sans-serif;
    --font-body: 'IBM Plex Sans', system-ui, sans-serif;

    /* Scale */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 2rem;
    --text-4xl: 2.5rem;
    --text-5xl: 3.5rem;
    --text-6xl: 4.5rem;

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-24: 6rem;
    --space-32: 8rem;

    /* Structure */
    --radius-none: 0;
    --radius-sm: 2px;
    --radius-md: 4px;
    --container-max: 1200px;
    --shadow-solid: 4px 4px 0px var(--color-ink);
}
