:root {
  /* Brand Colors - Luxury Minimalist */
  --color-pitch-black: #0a0a0a;
  --color-bone-white: #f4f3ef;
  --color-stone: #d9d6d0;
  --color-accent-silver: #a0a0a0;
  
  /* Text Colors */
  --text-primary: var(--color-pitch-black);
  --text-secondary: #555555;
  --text-inverse: var(--color-bone-white);
  
  /* Backgrounds */
  --bg-primary: var(--color-bone-white);
  --bg-secondary: #e8e6e1;
  --bg-inverse: var(--color-pitch-black);
  
  /* Typography */
  --font-serif: 'Playfair Display', 'Bodoni MT', 'Times New Roman', serif;
  --font-sans: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  
  /* Font Sizes */
  --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.5rem;
  --text-5xl: 3rem;
  --text-6xl: 4rem;
  --text-hero: 5rem;
  
  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-24: 6rem;
  --space-32: 8rem;
  
  /* Layout */
  --container-max: 1200px;
  --container-padding: var(--space-4);
  --header-height: 80px;
  
  /* Transitions & Animation Easing */
  --ease-luxury: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --transition-fast: 0.3s var(--ease-luxury);
  --transition-normal: 0.6s var(--ease-luxury);
  --transition-slow: 1.2s var(--ease-luxury);
  
  /* Z-Index */
  --z-negative: -1;
  --z-normal: 1;
  --z-header: 100;
  --z-loader: 999;
}

@media (min-width: 768px) {
  :root {
    --text-hero: 8vw;
    --container-padding: var(--space-8);
  }
}

@media (min-width: 1024px) {
  :root {
    --text-hero: 7rem;
    --container-padding: var(--space-12);
  }
}
