:root {
  /* Typography */
  --font-text: 'EB Garamond', serif;
  --font-display: 'Fira Sans', sans-serif;

  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1.125rem;
  --font-size-lg: 1.25rem;
  --font-size-xl: 1.5rem;
  --font-size-2xl: 2rem;
  --font-size-3xl: 3rem;
  --font-size-4xl: 4rem;

  --line-height-tight: 1.1;
  --line-height-base: 1.6;
  --line-height-loose: 1.8;

  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;

  /* Colors - Scientific/Nature Palette */
  --color-ink: #111827; /* Near black */
  --color-paper: #f9fafb; /* Off white */
  --color-surface: #ffffff; /* White */
  --color-surface-alt: #f3f4f6; /* Light gray */
  --color-border: #e5e7eb; /* Border gray */
  --color-border-hover: #d1d5db;

  /* Accents */
  --color-chlorophyll: #15803d; /* Biological green */
  --color-chlorophyll-dark: #166534;
  --color-marine: #0369a1; /* Deep blue */
  --color-terracotta: #b45309; /* Earthy brown/orange */
  --color-text-muted: #4b5563; /* Gray text */

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

  /* Layout */
  --max-width: 1200px;
  --content-width: 800px;

  /* Borders & Shadows */
  --radius-sm: 2px;
  --border-thin: 1px solid var(--color-border);
  --border-thick: 4px solid var(--color-ink);
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}
