/* ============================================================
   NTM Recovery — Design Tokens
   ============================================================ */
:root {
  /* Colors */
  --bg-dark:        #1A1410;
  --bg-card:        #251810;
  --bg-alt:         #3D1F0D;
  --accent:         #C46A2E;
  --accent-gold:    #C9963A;
  --text-primary:   #F1E5D1;
  --text-muted:     #D2A679;
  --sage:           #6B8F6B;
  --border:         rgba(201, 150, 58, 0.25);
  --border-strong:  rgba(196, 106, 46, 0.5);

  /* Typography */
  --font-display:   'Alfa Slab One', Georgia, serif;
  --font-label:     'Oswald', system-ui, sans-serif;
  --font-body:      'Roboto', system-ui, sans-serif;

  /* Spacing scale */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  6rem;

  /* Radii — hard-edged = rugged */
  --radius-sm: 2px;
  --radius-md: 4px;

  /* Shadows */
  --shadow-glow-rust: 0 4px 20px rgba(196, 106, 46, 0.3);
  --shadow-glow-gold: 0 4px 20px rgba(201, 150, 58, 0.25);

  /* Transitions */
  --transition-fast: 0.2s ease;
}
