:root {
    /* Color Palette */
    --color-bg: #09090B;
    --color-surface: #141416;
    --color-card: #1C1C20;
    --color-border: #2D2D32;
    
    --color-text-primary: #F3F4F6;
    --color-text-muted: #9CA3AF;
    
    /* Temple Gold Accent */
    --color-gold: #D4AF37;
    --color-gold-light: #FBF5B7;
    --color-gold-dark: #AA8B2C;
    --gradient-gold: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold-light), var(--color-gold-dark));
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    
    /* 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;
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
}
