/* =============================================
   The Bloodvault — Design Tokens
   ============================================= */
:root {
  /* Backgrounds */
  --bg-deep:    #0d0b0e;
  --bg-surface: #13101a;
  --bg-raised:  #1a1624;
  --bg-border:  #2a2240;

  /* Blood / crimson accent palette */
  --accent:       #8b1a1a;
  --accent-light: #b22222;
  --accent-glow:  #c0392b;
  --accent-hover: #e74c3c;

  /* Text */
  --text-primary:   #e8dcc8;
  --text-secondary: #9e8f7a;
  --text-muted:     #5a5060;
  --text-link:      #c87070;
  --text-link-hover:#e88080;

  /* Status colours */
  --green:  #2d6a2d;
  --green-light: #4a9e4a;
  --gray:   #3a3a4a;
  --gray-light: #6a6a7a;
  --red:    #6e1515;
  --red-light: #c0392b;

  /* Typography */
  --font-body:   'Crimson Pro', Georgia, serif;
  --font-fraktur: 'UnifrakturMaguntia', cursive;
  --font-admin:  system-ui, -apple-system, sans-serif;
  --font-mono:   'Courier New', Courier, monospace;

  /* Sizing */
  --nav-width: 240px;
  --radius:    4px;
  --radius-lg: 8px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }
