/* ═══════════════════════════════════════════════════════════
   Design Tokens — Chronicles of Sui-Denas
   Dark Cinematic Grimdark Fantasy
   ═══════════════════════════════════════════════════════════ */

:root {
    /* ─── Backgrounds ─── */
    --bg-base: #141414;
    --bg-card: #1e1e1e;
    --bg-elevated: #2a2a2a;
    --bg-surface: #1a1a1a;
    --bg-overlay: rgba(0, 0, 0, 0.7);

    /* ─── Text ─── */
    --text-primary: #d4d0c8;
    --text-heading: #e8e2d6;
    --text-muted: #8a847a;
    --text-faint: #5a5650;
    --text-inverse: #141414;

    /* ─── Accents ─── */
    --color-blood: #8b2d2d;
    --color-blood-light: #a53a3a;
    --color-blood-dark: #6b2020;
    --color-gold: #b8963e;
    --color-gold-light: #d4ae50;
    --color-gold-dark: #8a7030;
    --color-steel: #6b7b8a;
    --color-steel-light: #8a9baa;
    --color-steel-dark: #4a5a6a;

    /* ─── Status badges ─── */
    --badge-active: #3a6b3a;
    --badge-fallen: #8b2d2d;
    --badge-missing: #7a6a2a;
    --badge-unknown: #4a4a4a;

    /* ─── Borders ─── */
    --border-subtle: rgba(184, 150, 62, 0.15);
    --border-medium: rgba(184, 150, 62, 0.3);
    --border-strong: rgba(184, 150, 62, 0.5);

    /* ─── Typography ─── */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
    --font-lore: 'Cormorant Garamond', serif;

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

    --leading-tight: 1.2;
    --leading-normal: 1.6;
    --leading-relaxed: 1.8;

    --weight-light: 300;
    --weight-normal: 400;
    --weight-medium: 500;
    --weight-semibold: 600;
    --weight-bold: 700;

    /* ─── Spacing ─── */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

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

    /* ─── Borders & Radius ─── */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;

    /* ─── Shadows ─── */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-glow-gold: 0 0 20px rgba(184, 150, 62, 0.2);

    /* ─── Transitions ─── */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;

    /* ─── Z-index scale ─── */
    --z-header: 100;
    --z-nav-overlay: 90;
    --z-modal: 200;
}
