:root {
    /* Brand Colors - Luxury Black & True Metallic Gold */
    --color-black: #060606;
    --color-black-light: #0d0d0d;
    --color-black-lighter: #161616;
    --color-black-card: #111111;
    
    /* 3-Color Gold Palette & Gradients */
    --gold-1: #f9e29d; /* Highlight / light champagne */
    --gold-2: #c6a15b; /* Classic warm gold */
    --gold-3: #8a6421; /* Deep rich bronze gold */
    
    --gold-gradient: linear-gradient(135deg, #f9e29d 0%, #c6a15b 50%, #8a6421 100%);
    --gold-gradient-h: linear-gradient(90deg, #8a6421 0%, #f9e29d 50%, #c6a15b 100%);
    --gold-gradient-shine: linear-gradient(90deg, #c6a15b 0%, #f9e29d 25%, #ffffff 50%, #f9e29d 75%, #8a6421 100%);
    --gold-border: linear-gradient(135deg, rgba(249, 226, 157, 0.6) 0%, rgba(198, 161, 91, 0.3) 50%, rgba(138, 100, 33, 0.6) 100%);

    --color-gold: #c6a15b;
    --color-gold-light: #f9e29d;
    --color-gold-dark: #8a6421;
    
    --color-ivory: #f7f4ec;
    --color-stone: #bfb8aa;
    --color-white: #ffffff;
    
    /* Typography */
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif; 
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; 
    
    /* Fluid Typography */
    --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.85rem);
    --text-sm: clamp(0.85rem, 0.8rem + 0.35vw, 0.95rem);
    --text-base: clamp(0.98rem, 0.9rem + 0.4vw, 1.1rem);
    --text-lg: clamp(1.2rem, 1.05rem + 0.6vw, 1.4rem);
    --text-xl: clamp(1.45rem, 1.2rem + 1vw, 1.9rem);
    --text-2xl: clamp(1.9rem, 1.5rem + 1.8vw, 2.7rem);
    --text-3xl: clamp(2.4rem, 1.8rem + 2.8vw, 3.8rem);
    --text-hero: clamp(2.8rem, 2.2rem + 4vw, 5.5rem);
    
    /* Spacing */
    --space-xs: clamp(0.4rem, 0.35rem + 0.3vw, 0.6rem);
    --space-sm: clamp(0.65rem, 0.55rem + 0.5vw, 0.9rem);
    --space-md: clamp(1rem, 0.85rem + 0.75vw, 1.4rem);
    --space-lg: clamp(1.5rem, 1.2rem + 1.2vw, 2.2rem);
    --space-xl: clamp(2.2rem, 1.7rem + 2vw, 3.2rem);
    --space-2xl: clamp(3.2rem, 2.4rem + 3vw, 5rem);
    --space-section: clamp(4.5rem, 3rem + 6vw, 8rem);
    
    /* Layout */
    --container-max: 1480px;
    --container-padding: clamp(1.2rem, 1rem + 2vw, 3rem);
    
    /* Transitions */
    --transition-fast: 0.25s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-medium: 0.55s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-slow: 1.1s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Z-Index */
    --z-negative: -1;
    --z-normal: 1;
    --z-header: 1000;
    --z-menu: 2000;
    --z-splash: 10000;
}
