/* Design tokens — change these to rebrand the whole site */
:root {
    /* Color palette */
    --color-bg: #f8f6f1;
    --color-bg-alt: #ffffff;
    --color-surface: #ffffff;
    --color-surface-alt: #f1ede4;
    --color-text: #1a1a1a;
    --color-text-muted: #5a5a5a;
    --color-text-inverse: #ffffff;
    --color-border: #e5e0d3;

    --color-primary: #8b1e1e;
    --color-primary-hover: #6f1717;
    --color-accent: #c9a86a;
    --color-accent-soft: #f4e9d0;

    --color-success: #2f6f3a;
    --color-error: #a83232;

    /* Typography */
    --font-sans: "Helvetica Neue", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    --font-display: "Georgia", "Times New Roman", serif;

    --fs-100: 0.85rem;
    --fs-200: 0.95rem;
    --fs-300: 1rem;
    --fs-400: 1.125rem;
    --fs-500: 1.35rem;
    --fs-600: 1.65rem;
    --fs-700: 2.1rem;
    --fs-800: 2.75rem;
    --fs-900: 3.5rem;

    --lh-tight: 1.15;
    --lh-snug: 1.35;
    --lh-normal: 1.6;

    /* Spacing scale */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.5rem;
    --space-6: 2rem;
    --space-7: 3rem;
    --space-8: 4rem;
    --space-9: 6rem;

    /* Layout */
    --container-max: 1120px;
    --container-pad: 1.25rem;

    /* Radii / shadow */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 14px;
    --shadow-sm: 0 1px 2px rgba(20, 20, 20, 0.05);
    --shadow-md: 0 4px 14px rgba(20, 20, 20, 0.08);
    --shadow-lg: 0 12px 32px rgba(20, 20, 20, 0.10);

    /* Motion */
    --motion-fast: 120ms ease;
    --motion-base: 200ms ease;
}

@media (prefers-color-scheme: dark) {
    :root {
        --color-bg: #14110d;
        --color-bg-alt: #1c1814;
        --color-surface: #1f1a14;
        --color-surface-alt: #26201a;
        --color-text: #f3eee2;
        --color-text-muted: #a8a193;
        --color-text-inverse: #14110d;
        --color-border: #2e2820;

        --color-primary: #c43e3e;
        --color-primary-hover: #d96060;
        --color-accent: #d7b87a;
        --color-accent-soft: #3a2f1f;
    }
}
