:root {
  /* Colors: dark cinematic editorial, monochrome + accent */
  --color-bg: #0a0a0b;
  --color-bg-raised: #131315;
  --color-surface: #1a1a1d;
  --color-text: #f5f5f4;
  --color-text-muted: #a1a1aa;
  --color-text-dim: #6b6b70;
  --color-border: #29292d;
  --color-accent: #ff4e2f;
  --color-accent-dim: #7a2a1c;
  --color-on-accent: #0a0a0b;

  /* Typography */
  --font-display: 'Space Grotesk', 'Archivo', system-ui, sans-serif;
  --font-body: 'Archivo', system-ui, sans-serif;

  --text-xs: clamp(0.75rem, 0.72rem + 0.15vw, 0.85rem);
  --text-base: clamp(1rem, 0.95rem + 0.2vw, 1.1rem);
  --text-lg: clamp(1.15rem, 1.05rem + 0.4vw, 1.4rem);
  --text-xl: clamp(1.5rem, 1.3rem + 0.8vw, 2rem);
  --text-2xl: clamp(2.2rem, 1.7rem + 2vw, 3.5rem);
  --text-hero: clamp(3.2rem, 1.2rem + 8vw, 9.5rem);
  --text-section: clamp(2.4rem, 1.4rem + 4vw, 5.5rem);

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: clamp(3rem, 2rem + 4vw, 6rem);
  --space-section: clamp(5rem, 3rem + 8vw, 12rem);
  --gutter: clamp(1.25rem, 0.8rem + 2vw, 3rem);

  /* Motion */
  --duration-fast: 200ms;
  --duration-normal: 400ms;
  --duration-slow: 800ms;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);

  /* Layout */
  --max-width: 1600px;
  --radius-sm: 4px;
  --radius-md: 10px;
}
