/* css/tokens.css */
:root {
  /* Colors */
  --color-bg: #0A0A0A;
  --color-surface: #111111;
  --color-border: #1F1F1F;
  --color-text: #F5F5F5;
  --color-text-muted: #888888;
  --color-accent: #C6A96C;
  --color-accent-hover: #D4BA82;

  /* Typography */
  --font-display: 'Cabinet Grotesk', sans-serif;
  --font-body: 'Geist', sans-serif;

  --text-xs: clamp(0.75rem, 1vw, 0.875rem);
  --text-sm: clamp(0.875rem, 1.2vw, 1rem);
  --text-base: clamp(1rem, 1.5vw, 1.125rem);
  --text-lg: clamp(1.125rem, 2vw, 1.375rem);
  --text-xl: clamp(1.375rem, 3vw, 2rem);
  --text-2xl: clamp(2rem, 5vw, 3.5rem);
  --text-3xl: clamp(3rem, 8vw, 6rem);
  --text-hero: clamp(4rem, 12vw, 10rem);

  /* 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;
  --space-32: 8rem;

  /* Easing (Emil Kowalski) */
  --ease-out: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-fast-out: cubic-bezier(0.55, 0, 1, 0.45);

  /* Transitions */
  --transition-fast: 150ms var(--ease-out);
  --transition-base: 220ms var(--ease-out);
  --transition-slow: 350ms var(--ease-out);

  /* Layout */
  --max-width: 1440px;
  --gutter: clamp(1.5rem, 5vw, 5rem);
  --nav-height: 72px;
}
