:root {
  /* Colors */
  --color-bg:        #faf8f5;
  --color-bg-dark:   #f0ece5;
  --color-text:      #2c2c2c;
  --color-muted:     #6b6b6b;
  --color-accent:    #8b6914;
  --color-accent-lt: #b8900e;
  --color-border:    #ddd8cf;
  --color-overlay:   rgba(20, 15, 5, 0.55);
  --color-white:     #ffffff;

  /* Typography */
  --font-serif:  'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
  --font-sans:   system-ui, -apple-system, 'Segoe UI', sans-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:  2rem;
  --text-4xl:  2.75rem;
  --text-5xl:  3.75rem;

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-24: 6rem;

  /* Layout */
  --max-w-content: 1200px;
  --max-w-text:    720px;
  --nav-height:    4.5rem;

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