/* =========================================================================
   tcwlab.com — per-domain accent override on top of `assets/css/base.css`.
   Layout, typography, components, and the desktop widening all live in
   the shared base. This file only carries the orange accent palette.

   Sibling sites follow the same minimal-override pattern:
     k8box.io          → blue → mint
     atrium.k8box.io   → violet
     spectrum.k8box.io → indigo-purple
     tally.k8box.io    → amber
     tcwlab.com        → orange  (this file)
   ========================================================================= */

:root {
  --accent: #c2410c;
  --accent-soft: #fb923c;
  --accent-glow: rgba(194, 65, 12, 0.16);
  --accent-tint: rgba(194, 65, 12, 0.06);
  --accent-paper: #fdf6f1;
}

@media (prefers-color-scheme: dark) {
  :root {
    --accent: #fb923c;
    --accent-soft: #fdba74;
    --accent-glow: rgba(251, 146, 60, 0.18);
    --accent-tint: rgba(251, 146, 60, 0.05);
    --accent-paper: #1c1812;
  }
}
