/* CoorieControl — design tokens */
:root {
  /* Color — deep navy, warm surfaces, sage accent */
  --color-bg: #f6f4f0;
  --color-bg-subtle: #ebe8e1;
  --color-surface: #fffcf7;
  --color-text: #1a2332;
  --color-text-muted: #5c6570;
  --color-accent: #2d6a5c;
  --color-accent-hover: #245548;
  --color-accent-muted: rgba(45, 106, 92, 0.12);
  --color-border: rgba(26, 35, 50, 0.12);
  --color-hero-depth: #121a24;

  /* Focus (WCAG-friendly on light bg) */
  --focus-ring: 0 0 0 3px var(--color-surface), 0 0 0 5px var(--color-accent);

  /* Typography */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Plus Jakarta Sans", system-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: clamp(1.75rem, 4vw, 2.25rem);
  --text-4xl: clamp(2.25rem, 5.5vw, 3.25rem);
  --leading-tight: 1.2;
  --leading-normal: 1.55;
  --leading-relaxed: 1.65;

  /* Spacing scale */
  --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;

  /* Layout */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(26, 35, 50, 0.06);
  --shadow-md: 0 8px 24px rgba(26, 35, 50, 0.08);
  --header-h: 4rem;
  --content-max: 72rem;
}
