:root {
  /* ── Colors ─────────────────────────────────────────── */
  --color-primary:        #c84b11;
  --color-primary-light:  #d4622d;
  --color-primary-dark:   #a03a0c;
  --color-primary-faint:  #fdf0ea;

  --color-dark:           #12161e;
  --color-dark-light:     #1e2535;

  --color-secondary:      #4A5568;

  --color-bg:             #f5f0eb;
  --color-surface:        #ede5db;
  --color-surface-dark:   #ddd0c4;

  --color-text:           #1A1A1A;
  --color-text-muted:     #6B7280;
  --color-text-light:     #9CA3AF;

  --color-white:          #FFFFFF;
  --color-border:         #d4c9bc;
  --color-border-light:   #e8e0d8;

  --color-success:        #2e7d32;

  /* ── Typography ──────────────────────────────────────── */
  --font-heading: 'Big Shoulders Display', 'Impact', sans-serif;
  --font-body:    'Bitter', Georgia, 'Times New Roman', serif;

  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;
  --text-6xl:  3.75rem;

  --leading-tight:   1.2;
  --leading-snug:    1.375;
  --leading-normal:  1.5;
  --leading-relaxed: 1.625;
  --leading-loose:   1.75;

  /* ── 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;
  --space-32: 8rem;

  /* ── Layout ───────────────────────────────────────────── */
  --max-width:       1200px;
  --max-width-prose: 680px;
  --nav-height:      72px;

  /* ── Borders & Radius ─────────────────────────────────── */
  --radius-sm:   0.25rem;
  --radius-md:   0.5rem;
  --radius-lg:   0.75rem;
  --radius-xl:   1rem;
  --radius-2xl:  1.5rem;
  --radius-full: 9999px;

  /* ── Shadows ──────────────────────────────────────────── */
  --shadow-sm:  0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md:  0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow-lg:  0 10px 15px rgba(0, 0, 0, 0.08), 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-xl:  0 20px 25px rgba(0, 0, 0, 0.10), 0 10px 10px rgba(0, 0, 0, 0.04);

  /* ── Transitions ──────────────────────────────────────── */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
}
