/* ============================================================
   Design Tokens — RustyJay Portfolio
   Edit brand colors, fonts, and spacing here first.
   ============================================================ */

:root {
  /* ── Brand ──────────────────────────────────────────────── */
  --color-primary:     #C92500;

  /* ── Neutrals ───────────────────────────────────────────── */
  --color-text:        #1A1A1A;
  --color-text-sub:    #555555;
  --color-text-muted:  #888888;
  --color-border:      #E0E0E0;
  --color-border-dash: #D0D0D0;
  --color-bg:          #FFFFFF;
  --color-placeholder: #F0F0F0;

  /* ── Typography ─────────────────────────────────────────── */
  --font:      'IBM Plex Sans', sans-serif;
  --text-xs:    0.75rem;    /* 12px */
  --text-sm:    0.875rem;   /* 14px */
  --text-base:  1rem;       /* 16px */
  --text-lg:    1.125rem;   /* 18px */
  --text-xl:    1.25rem;    /* 20px */
  --text-stat:  1.875rem;   /* 30px */
  --leading:    1.65;

  /* ── Layout ─────────────────────────────────────────────── */
  --max-w:   900px;
  --nav-h:    72px;
  --gutter:   24px;

  /* ── Spacing scale ──────────────────────────────────────── */
  --sp-1:   8px;
  --sp-2:  16px;
  --sp-3:  24px;
  --sp-4:  32px;
  --sp-5:  48px;
  --sp-6:  64px;
  --sp-7:  80px;

  /* ── Motion ─────────────────────────────────────────────── */
  --t-fast: 150ms ease;
  --t-base: 250ms ease;
  --t-slow: 400ms ease;
}
