:root {
    /* Colors */
    --color-primary: #122B21; /* Richer, Darker Forest Green */
    --color-primary-dark: #0A1C15;
    --color-accent: #C9A227; /* Vibrant Metallic Gold */
    --color-accent-light: #E0C055;
    --color-bg: #F5F5F0; /* Slightly cooler cream */
    --color-bg-white: #ffffff;
    --color-text: #1A1A1A; /* Near Black */
    --color-text-light: #4A4A4A; /* Darker Grey for better readability */
    --color-border: #dcdcdc;

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

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

    /* Layout */
    --container-width: 1400px;
    --header-height: 80px;

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