:root {
  --room-bg: #070605;
  --room-surface: #120d09;
  --wood-dark: #1b120c;
  --wood-border: #2c1d13;
  --cork-base: #563b25;
  --cork-dark: #382415;
  --paper-cream: #f4eee1;
  --paper-aged: #e6d7bc;
  --paper-legal: #e9e2be;
  --paper-manila: #cfa86b;
  --paper-note: #fef8b2;
  --paper-ledger: #f7f3e8;
  --newsprint: #ede5d2;
  --ink-black: #161311;
  --ink-faded: #4d443b;
  --typewriter: #231f1c;

  --gold-brass: #cfa85b;
  --gold-bright: #e7c880;
  --gold-glow: rgba(207, 168, 91, 0.25);

  --thread-red: #a82424;
  --thread-gold: #c9933b;
  --thread-blue: #325a7e;

  --status-primary: #1e3a5f;
  --status-official: #2a4836;
  --status-disputed: #8c2b2b;
  --status-review: #7d5e23;
  --status-stayed: #553569;
  --status-superseded: #4a4642;

  --font-display: 'Cinzel', serif;
  --font-news: 'Playfair Display', Georgia, serif;
  --font-editorial: 'Libre Baskerville', Georgia, serif;
  --font-typewriter: 'Courier Prime', monospace;
  --font-handwriting: 'Instrument Serif', Georgia, serif;
  --font-mono: 'DM Mono', monospace;
  --font-ui: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; -webkit-font-smoothing: antialiased; }
html { scroll-behavior: smooth; background: var(--room-bg); }
body {
  background: var(--room-bg);
  color: var(--paper-cream);
  font-family: var(--font-ui);
  line-height: 1.5;
  overflow-x: hidden;
  width: 100%;
}
body.drawer-open { overflow: hidden; }