:root {
    /* Colors */
    --color-white: #FFFFFF;
    --color-black-graphite: #0C1F30;
    /* Dark Blue */
    --color-gold: #BD9F6B;
    --color-gold-text: #896A33;
    /* Darker for accessibility on light bg */
    /* New Gold */
    --color-gold-hover: #876831;
    /* Dark Gold/Bronze */
    --color-petrol: #0C1F30;
    /* Dark Blue */
    --color-beige: #F8E9CA;
    /* Light Beige */
    --color-bg-alt: #E8CA96;
    /* Alt Beige */
    --color-text-main: #0C1F30;
    --color-text-light: #F9F8F4;

    /* Typography */
    --font-heading: 'Montserrat', 'Poppins', sans-serif;
    --font-body: 'Inter', 'Lato', sans-serif;

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

    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Textures */
    --bg-gold-texture: url('../assets/cores/gold.jpg');
}