:root {
    /* Colors */
    --color-primary: #2C2C2C;
    /* Stone Grey */
    --color-accent: #4A5D43;
    /* Deep Moss */
    --color-gold: #BC9E68;
    /* Antique Gold */
    --color-bg: #F5F3EF;
    /* Soft Sand */
    --color-text: #1A1A1A;
    /* Charcoal */
    --color-white: #FFFFFF;
    --color-overlay: rgba(0, 0, 0, 0.4);

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 8rem;

    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-smooth: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}