/*
 * NBHFIX design tokens
 * Keep this file limited to variables.
 */

:root {
    /* Brand and interface colors */
    --color-navy: #1a2a44;
    --color-navy-2: #243653;
    --color-gold: #d4af37;
    --color-gold-2: #b89125;
    --color-cream: #f8f1e9;
    --color-paper: #fffdf9;
    --color-white: #ffffff;
    --color-ink: #172033;
    --color-muted: #526071;
    --color-soft: #efe3d4;
    --color-line: #d8c494;
    --color-line-soft: #eadfca;
    --color-error: #8f2d2d;

    /* Semantic roles */
    --color-bg: var(--color-cream);
    --color-panel: var(--color-paper);
    --color-panel-strong: var(--color-white);
    --color-text: var(--color-ink);
    --color-text-muted: var(--color-muted);
    --color-border: var(--color-line);
    --color-border-soft: var(--color-line-soft);
    --color-action: var(--color-gold);
    --color-action-hover: var(--color-gold-2);
    --color-action-text: var(--color-navy);

    /* Fonts */
    --font-copy: Georgia, "Times New Roman", serif;
    --font-ui: Arial, Helvetica, sans-serif;

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

    /* Type */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.35rem;
    --text-2xl: 1.75rem;
    --text-3xl: 2.25rem;

    --leading-tight: 1.2;
    --leading-normal: 1.5;
    --leading-relaxed: 1.65;

    /* Layout */
    --header-height: 58px;
    --shell-max: 1440px;
    --rail-min: 360px;
    --rail-max: 520px;
    --radius-sm: 3px;
    --radius-md: 5px;
    --border-width: 1px;
}
