/* ═══════════════════════════════════════════════
   AHEAD OF THE PACK — Brand Tokens
   Single source of truth for colors & typography.
   All pages link this before their own <style>.
═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Serif+Display:ital@0;1&family=DM+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* ── Primary Orange ── */
  --blood:        #c94b22;
  --blood-bright: #e05a2b;

  /* ── Accent Orange ── */
  --gold:         #d4621f;
  --gold-light:   #e8812b;

  /* ── Backgrounds ── */
  --forest:       #f0ece3;
  --forest-mid:   #e9e5db;
  --forest-light: #e1dcd1;

  /* ── Text ── */
  --bone:         #1a1a1a;
  --bone-dim:     #4a4a4a;
  --charcoal:     #1c1c1c;

  /* ── Dashboard aliases ── */
  --ink:          #1a1a1a;
  --ink-dim:      #4a4a4a;
  --panel:        #ffffff;
  --page-bg:      #f4f1ec;
  --sidebar-bg:   #111111;

  /* ── Typography ── */
  --display: 'Bebas Neue', sans-serif;
  --serif:   'DM Serif Display', serif;
  --body:    'DM Sans', sans-serif;
}
