/**
 * FORMA — Design Tokens
 * Single source of truth. Edit here to rebrand any template.
 * ─────────────────────────────────────────────────────────────
 */

:root {
  /* ── Brand Colors ── */
  --color-primary:     #c84b31;
  --color-primary-dk:  #b03d25;
  --color-primary-lt:  rgba(200, 75, 49, .12);
  --color-secondary:   #1a1a2e;
  --color-accent:      #c9a84c;
  --color-accent-lt:   #fffbeb;
  --color-blue:        #2563eb;
  --color-blue-lt:     #dbeafe;
  --color-blue-bg:     #eff6ff;

  /* ── Neutrals ── */
  --color-ink:         #0d0d0d;
  --color-paper:       #faf9f6;
  --color-cream:       #f4f1ea;
  --color-white:       #ffffff;
  --color-muted:       #6b6560;
  --color-dim:         #aaa59f;
  --color-border:      #e2ddd6;

  /* ── Typography ── */
  --font-display:  'Playfair Display', Georgia, serif;
  --font-body:     'DM Sans', system-ui, sans-serif;
  --font-mono:     'DM Mono', 'Courier New', monospace;

  /* ── Type Scale ── */
  --text-xs:   0.68rem;
  --text-sm:   0.82rem;
  --text-base: 0.92rem;
  --text-md:   1.05rem;
  --text-lg:   1.25rem;
  --text-xl:   1.6rem;
  --text-2xl:  2.2rem;
  --text-3xl:  3rem;

  /* ── Spacing ── */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* ── Radius ── */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* ── Shadows ── */
  --shadow-sm:  0 2px 8px rgba(0,0,0,.06);
  --shadow-md:  0 8px 24px rgba(0,0,0,.10);
  --shadow-lg:  0 20px 48px rgba(0,0,0,.14);
  --shadow-xl:  0 32px 80px rgba(0,0,0,.20);

  /* ── Transitions ── */
  --ease-base:  all .2s ease;
  --ease-spring: all .35s cubic-bezier(.34,1.56,.64,1);

  /* ── Layout ── */
  --resume-width:    960px;
  --sidebar-width:   300px;
  --page-padding:    var(--space-16);
  --section-gap:     var(--space-24);

  /* ── Print ── */
  --print-margin: 0;
}