:root {
    /* Colors - Brutalist / Editorial / Data-Driven Palette */
    --color-bg: #F4F4F0;
    --color-fg: #111111;
    --color-accent: #E63946; /* A sharp red for action/highlight */
    --color-muted: #555555;
    --color-surface: #FFFFFF;
    --color-border: #DCDCCB;
    --color-surface-dark: #222222;
    --color-fg-light: #E0E0E0;

    /* Typography - Display: Space Grotesk, Text: Libre Franklin */
    --font-display: 'Space Grotesk', system-ui, -apple-system, sans-serif;
    --font-text: 'Libre Franklin', system-ui, -apple-system, sans-serif;

    /* Font Sizes - Scale (Modular) */
    --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: 3rem;
    --text-5xl: 4.5rem;
    --text-6xl: 6rem;

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

    /* Layout */
    --container-width: 1200px;
    --container-narrow: 800px;

    /* Borders & UI */
    --border-width: 1px;
    --border-width-thick: 3px;
    --radius-none: 0;
}
