:root {
    /* Color Palette */
    --primary-color: #0D4C3C;
    /* Emerald Green */
    --primary-dark: #06261E;
    --primary-light: #167a61;
    --primary-gradient: linear-gradient(135deg, #06261E, #0D4C3C);

    --accent-color: #CCAB25;
    /* Metallic Gold */
    --accent-dark: #a68b1e;
    --accent-gradient: linear-gradient(135deg, #CCAB25, #e6c53a);

    --text-color: #2C2C2C;
    /* Charcoal */
    --text-light: #555555;
    --text-white: #ffffff;

    --bg-color: #ffffff;
    --bg-light: #F4F1EB;
    /* Soft Beige */
    --bg-dark: #06261E;

    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Playfair Display', serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 50%;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 15px 30px rgba(0, 0, 0, 0.15);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: 0.5s ease;
}