:root{
/* ---- Base palette ---- */
/* Pine — the deep river-forest green that anchors the brand */
--pine-950:#0C1714;--pine-900:#10201B;--pine-800:#183028;--pine-700:#224237;--pine-600:#2E574A;--pine-500:#3E6E5E;
/* Parchment — warm paper neutrals for light surfaces */
--parchment-50:#FAF7F0;--parchment-100:#F4EFE4;--parchment-200:#EAE2D1;--parchment-300:#DCD1B9;--parchment-400:#C4B695;
/* Stone — cool-warm gray text neutrals */
--stone-900:#1F2421;--stone-700:#41493F;--stone-500:#6B7265;--stone-400:#8B9184;--stone-300:#B4B8AC;
/* Copper — the taimen's fin-orange, the single hot accent */
--copper-600:#B05A26;--copper-500:#C26A31;--copper-400:#D48146;--copper-700:#95491D;
/* Larch — autumn-gold secondary accent, used sparingly */
--larch-500:#C9973B;--larch-300:#E2C384;
/* River — cold slate blue, data/info only */
--river-500:#46687A;--river-300:#8FA9B6;
/* Semantic status */
--success:#3E6E5E;--warning:#C9973B;--danger:#A5432C;--info:#46687A;

/* ---- Semantic aliases: light (parchment) context ---- */
--surface-page:var(--parchment-100);
--surface-card:var(--parchment-50);
--surface-sunken:var(--parchment-200);
--surface-inverse:var(--pine-900);
--text-display:var(--pine-900);
--text-body:var(--stone-700);
--text-muted:var(--stone-500);
--text-accent:var(--copper-600);
--border-hairline:rgba(16,32,27,.16);
--border-strong:rgba(16,32,27,.38);
--action-primary:var(--copper-600);
--action-primary-hover:var(--copper-700);
--action-secondary:var(--pine-900);
--focus-ring:rgba(194,106,49,.45);

/* ---- Semantic aliases: dark (pine) context — set via .theme-dark ---- */
}
.theme-dark{
--surface-page:var(--pine-900);
--surface-card:var(--pine-800);
--surface-sunken:var(--pine-950);
--surface-inverse:var(--parchment-100);
--text-display:var(--parchment-50);
--text-body:var(--parchment-300);
--text-muted:var(--stone-400);
--text-accent:var(--copper-400);
--border-hairline:rgba(244,239,228,.16);
--border-strong:rgba(244,239,228,.38);
--action-primary:var(--copper-500);
--action-primary-hover:var(--copper-400);
--action-secondary:var(--parchment-50);
--focus-ring:rgba(212,129,70,.5);
color:var(--text-body);
}
