/* ===== DESIGN TOKENS ===== */
:root {
  /* Colors — Light sage/teal theme (matching rylandmoranz.com) */
  --color-bg:         #e8f0ed;
  --color-bg-alt:     #dfe9e5;
  --color-bg-card:    #f2f7f5;
  --color-bg-hover:   #d5e2dc;
  --color-surface:    #edf3f0;
  --color-border:     #c5d4cd;
  --color-border-light: #b0c4bb;

  --color-text:       rgba(0, 0, 0, 0.85);
  --color-text-muted: rgba(0, 0, 0, 0.6);
  --color-text-dim:   rgba(0, 0, 0, 0.4);

  --color-white:      #ffffff;
  --color-black:      #000000;

  --color-accent:     #3cafc6;
  --color-accent-hover: #2d9ab0;

  /* Typography */
  --font-heading:     'Crimson Text', 'Playfair Display', 'Georgia', serif;
  --font-body:        'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-mono:        'JetBrains Mono', 'Fira Code', monospace;

  --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;
  --text-7xl:   4.5rem;

  /* Spacing */
  --space-xs:   0.25rem;
  --space-sm:   0.5rem;
  --space-md:   1rem;
  --space-lg:   1.5rem;
  --space-xl:   2rem;
  --space-2xl:  3rem;
  --space-3xl:  4rem;
  --space-4xl:  6rem;
  --space-5xl:  8rem;

  /* Layout */
  --max-width:       1200px;
  --max-width-narrow: 800px;
  --max-width-wide:  1400px;

  /* Transitions */
  --transition-fast:  150ms ease;
  --transition-base:  300ms ease;
  --transition-slow:  600ms ease;

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

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.4);
  --shadow-md:  0 4px 12px rgba(0,0,0,0.5);
  --shadow-lg:  0 8px 30px rgba(0,0,0,0.6);
}
