/* CSS Tokens for Express Mirror */
:root {
    /* Color Palette - Mood: Serious, Editorial, Urgent */
    --color-paper: #f4f3ef; /* Off-white, slightly warm newsprint */
    --color-ink: #111111;   /* Not pure black, deep charcoal/ink */
    --color-ink-light: #333333;
    --color-ink-muted: #555555;
    --color-urgent: #d32f2f; /* Deep, authoritative red */
    --color-urgent-dark: #b71c1c;
    --color-highlight: #ffeb3b;
    --color-border: #d0cpc7;
    --color-bg-dark: #222222;
    --color-text-on-dark: #f4f3ef;

    /* Typography */
    /* Headlines: Merriweather (serif) - authorative, traditional */
    --font-display: "Merriweather", Georgia, serif;
    /* Body/UI: Public Sans (sans-serif) - clean, legible, modern */
    --font-text: "Public Sans", "Helvetica Neue", sans-serif;

    /* Font Sizes (Modular 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;

    /* Line Heights */
    --leading-tight: 1.1;
    --leading-snug: 1.3;
    --leading-normal: 1.5;
    --leading-relaxed: 1.7;

    /* 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;

    /* Borders */
    --border-thin: 1px solid var(--color-ink);
    --border-thick: 4px solid var(--color-ink);
    --border-urgent: 4px solid var(--color-urgent);

    /* Container Max Width */
    --container-width: 1200px;
    --col-width-narrow: 650px;
}
