:root {
  /* Background — warm charcoal */
  --bg: #0b0b09;
  --bg-elevated: #131311;
  --bg-card: #191916;
  --bg-card-hover: #1f1f1c;
  --surface: #0f0f0d;

  /* Text — warm whites */
  --text: #ece9e1;
  --text-secondary: #9a9789;
  --text-tertiary: #5c5a51;
  --text-muted: #3d3b35;

  /* Accent — olive/sage from logo */
  --accent: #9ab04d;
  --accent-dim: #7d8f3d;
  --accent-glow: rgba(154, 176, 77, 0.08);
  --accent-glow-strong: rgba(154, 176, 77, 0.18);
  --accent-text: #0b0b09;

  /* Borders */
  --border: #242420;
  --border-subtle: #1c1c19;

  /* Semantic */
  --success: #4ade80;
  --warning: #fbbf24;
  --danger: #f87171;

  /* Typography */
  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --font: var(--font-body);
  --font-mono: 'JetBrains Mono', 'SF Mono', 'Fira Code', monospace;

  --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: 2rem;
  --text-4xl: 2.75rem;
  --text-5xl: 3.75rem;
  --text-6xl: 4.5rem;

  --weight-light: 300;
  --weight-normal: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --weight-extrabold: 800;

  --leading-tight: 1.1;
  --leading-snug: 1.25;
  --leading-normal: 1.6;
  --leading-relaxed: 1.8;

  --tracking-tight: -0.025em;
  --tracking-normal: 0;
  --tracking-wide: 0.06em;
  --tracking-wider: 0.1em;

  /* Spacing */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.25rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  /* Layout */
  --max-w: 1100px;
  --max-w-narrow: 720px;
  --container-px: var(--sp-6);
  --section-py: var(--sp-24);

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 24px 80px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 40px var(--accent-glow);

  /* Transitions */
  --ease-fast: 150ms ease;
  --ease-base: 300ms ease;
  --ease-slow: 500ms ease;
  --ease-spring: 600ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Z-index */
  --z-base: 1;
  --z-nav: 100;
  --z-overlay: 200;
  --z-modal: 300;
  --z-grain: 9999;
}
