/* Tokens semánticos del design system "Dorado y tabaco". Oscuro por defecto.
   Los componentes referencian estos tokens, nunca un color hardcodeado. */

:root,
[data-theme="dark"] {
    --bg: #171208;
    --surface: #211B10;
    --surface-2: #2A2214;
    --line: rgba(241, 232, 210, .10);
    --text: #F1E8D2;
    --text-2: #B3A582;
    --text-muted: #948868;
    --accent: #C9A24C;
    --positive: #9FB86A;
    --warning: #D8A24A;
    --danger: #C86A5A;
}

[data-theme="light"] {
    --bg: #ECE3CD;
    --surface: #F9F3E3;
    --surface-2: #FFFCF3;
    --line: rgba(44, 35, 23, .14);
    --text: #2C2317;
    --text-2: #6B5D45;
    --text-muted: #9A8B70;
    --accent: #B07C24;
    --positive: #5E7C50;
    --warning: #B07C24;
    --danger: #A24A38;
}

:root {
    --font-serif: "Fraunces", serif;
    --font-sans: "Inter", sans-serif;
    --radius-card: 12px;
    --radius-control: 8px;
}
