:root {
  --color-bg: #0a0a0a;
  --color-bg-alt: #111111;
  --color-bg-card: #161616;
  --color-text: #ebebeb;
  --color-text-dim: #888888;
  --color-accent: #ffffff;
  --color-border: #2a2a2a;
  --color-glow: rgba(255, 255, 255, 0.06);
  --color-accent-1: #d4af37;
  --color-accent-2: #e8d5b7;
  --color-overlay: rgba(10, 10, 10, 0.85);

  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "Space Mono", monospace;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.25rem;
  --text-xl: 1.563rem;
  --text-2xl: 1.953rem;
  --text-3xl: 2.441rem;
  --text-4xl: 3.052rem;
  --text-5xl: 3.815rem;
  --text-6xl: 4.768rem;
  --text-7xl: 5.96rem;
  --text-8xl: 7.451rem;

  --space-3xs: 0.25rem;
  --space-2xs: 0.5rem;
  --space-xs: 0.75rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;
  --space-5xl: 12rem;

  --section-padding: var(--space-4xl);
  --content-max: 1400px;
  --content-narrow: 800px;
  --grid-gap: var(--space-md);

  --ease-editorial: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-reveal: cubic-bezier(0.22, 0.61, 0.36, 1);
  --duration-fast: 300ms;
  --duration-reveal: 500ms;
  --duration-slow: 800ms;

  --nav-height: 72px;
  --hero-height: 300vh;
}

[data-theme="light"] {
  --color-bg: #f5f5f0;
  --color-bg-alt: #ebebe5;
  --color-bg-card: #ffffff;
  --color-text: #1a1a1a;
  --color-text-dim: #777777;
  --color-border: #dddddd;
  --color-glow: rgba(0, 0, 0, 0.04);
  --color-overlay: rgba(245, 245, 240, 0.9);
}
