:root {
  /* === Colors === */
  --bg-primary: #0A0A0A;
  --bg-secondary: #121212;
  --surface: #1A1A1A;
  --surface-light: #242424;
  --primary: #D5A22C;
  --primary-hover: #C18F18;
  --secondary: #B0B0B0;
  --accent: #FFFFFF;
  --border: #2F2F2F;
  --divider: #3A3A3A;
  --heading: #FFFFFF;
  --text: #D4D4D4;
  --text-light: #A0A0A0;
  --success: #2CB67D;

  /* === Typography === */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --fw-300: 300;
  --fw-400: 400;
  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;

  /* === Spacing === */
  --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;

  /* === Layout === */
  --container-max: 1280px;
  --header-height: 80px;
  --topbar-height: 40px;

  /* === Border Radius === */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 22px;
  --radius-pill: 999px;

  /* === Shadows === */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 4px 24px rgba(213, 162, 44, 0.15);

  /* === Transitions === */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;

  /* === Z-Index === */
  --z-base: 1;
  --z-dropdown: 10;
  --z-sticky: 50;
  --z-overlay: 100;
  --z-modal: 200;
  --z-toast: 300;
}
