:root {
  /* Warm neutrals — "Cloud Dancer" family */
  --color-bg: #F0EDE5;
  --color-bg-alt: #E8E4DA;
  --color-surface: #FDFCFA;
  --color-text-primary: #2C2825;
  --color-text-secondary: #6B6560;
  --color-text-inverse: #FDFCFA;
  --color-accent: #8B4513;
  --color-accent-hover: #A0522D;
  --color-border: #D4CFC7;
  --color-border-strong: #A39E96;
  --color-focus: #2563EB;

  /* High-contrast overrides */
  --hc-bg: #FFFFFF;
  --hc-text: #000000;
  --hc-accent: #6B2A00;
  --hc-border: #000000;

  /* Typography */
  --font-heading: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Source Serif 4', 'Georgia', serif;
  --font-ui: 'Instrument Sans', 'Helvetica Neue', sans-serif;

  /* Fluid type scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
  --text-lg: clamp(1.25rem, 1rem + 1vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.5vw, 2rem);
  --text-2xl: clamp(2rem, 1.5rem + 2.5vw, 3rem);
  --text-3xl: clamp(2.5rem, 1.8rem + 3.5vw, 4rem);

  /* Line heights */
  --leading-tight: 1.2;
  --leading-normal: 1.6;
  --leading-loose: 1.8;

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

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