:root {
  /* Colors - Primary */
  --navy-900: #0A1628;
  --navy-800: #1A2B47;
  --navy-700: #2A3F5F;
  --gold-500: #C9A227;
  --gold-400: #D4B43A;
  --gold-300: #E0C85A;

  /* Colors - Neutral */
  --ivory-50: #FAF9F6;
  --ivory-100: #F5F3EE;
  --ivory-200: #EDEAE2;
  --warm-gray-400: #9A958A;
  --warm-gray-600: #6B6558;
  --charcoal-800: #2D2D2D;
  --charcoal-900: #1A1A1A;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Spacing */
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 80px;
  --space-8: 120px;

  /* Shadows */
  --shadow-sm: 0 4px 20px rgba(10, 25, 47, 0.08);
  --shadow-md: 0 12px 40px rgba(10, 22, 40, 0.08);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.3);
  --shadow-nav: 0 2px 20px rgba(0, 0, 0, 0.05);
  --backdrop: blur(12px);

  /* Z-Index */
  --z-base: 0;
  --z-dropdown: 10;
  --z-sticky: 20;
  --z-nav: 50;
  --z-overlay: 100;
  --z-toast: 200;

  /* Animation Easing */
  --ease-primary: cubic-bezier(0.25, 0.1, 0.25, 1.0);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);

  /* Animation Durations */
  --duration-fast: 300ms;
  --duration-normal: 400ms;
  --duration-slow: 600ms;
  --duration-slower: 800ms;
  --duration-page: 300ms;

  /* Stagger */
  --stagger-fast: 100ms;
  --stagger-normal: 150ms;
  --stagger-slow: 200ms;
}
