/* ── CSS Custom Properties (Theming) ─────────────── */
/* These are defaults — overridden at runtime by config.js */

:root {
  /* Core colors */
  --bg: #0f0d0b;
  --surface: #1a1714;
  --surface2: #24201a;
  --border: #2e2822;
  --accent: #c8a06a;
  --accent-dim: #9e7850;
  --text: #f0e8df;
  --text-muted: #9a8a78;

  /* Status colors */
  --danger: #e07070;
  --danger-bg: #3a1f1f;
  --warning: #e0b060;
  --warning-bg: #3a2e1a;
  --success: #7ec89a;
  --success-bg: #1a3028;
  --needs-made: #d4956a;
  --needs-made-bg: #3a2218;

  /* Typography */
  --font-ui: 'Outfit', sans-serif;
  --font-brand: 'Georgia', serif;

  /* Transitions */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows */
  --shadow-card: 0 2px 16px -4px rgba(0,0,0,0.35);
  --shadow-lift: 0 12px 40px -10px rgba(0,0,0,0.55), 0 0 0 1px var(--accent-dim);
}
