:root {
  /* Luxury Dark Palette */
  --color-bg: #0a0a0a;
  --color-bg-rgb: 10, 10, 10;
  --color-surface: #141414;
  --color-surface-hover: #1c1c1c;
  
  --color-primary: #e5b345; /* Bright Shiny Gold */
  --color-primary-rgb: 229, 179, 69;
  --color-accent: #f5cf7b; /* Light Shiny Gold */
  
  --color-text-primary: #fdfdfd;
  --color-text-secondary: #a0a0a0;
  --color-border: #2a2a2a;

  /* Typography */
  --font-display: 'Playfair Display', serif;
  --font-body: 'Manrope', sans-serif;

  /* Spacing (8px grid) */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;
  --space-5xl: 128px;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  /* Easing */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}
