/* Design tokens. Everything else in the app reads colors from these
   custom properties, so retheming (or adding a new theme) only ever
   touches this one file. */
:root{
  --bg:#F6F4EE;
  --bg-raised:#FFFFFF;
  --ink:#221F1C;
  --ink-soft:#5B564E;
  --ink-faint:#9B968C;
  --line:#E4DFD3;
  --accent:#C07A22;
  --accent-soft:#F1E0C7;
  --spine:#7C6A4F;
  --radius:10px;
  --shadow:0 1px 2px rgba(30,25,15,0.06), 0 8px 24px rgba(30,25,15,0.06);
}

[data-theme="dark"]{
  --bg:#15140F;
  --bg-raised:#1E1C16;
  --ink:#EDE8DC;
  --ink-soft:#B4AC9C;
  --ink-faint:#726C5E;
  --line:#332F26;
  --accent:#E0A24B;
  --accent-soft:#3A2E19;
  --spine:#8C7A5A;
  --shadow:0 1px 2px rgba(0,0,0,0.3), 0 8px 24px rgba(0,0,0,0.3);
}
