:root {
    /* Colors */
    --bg-primary: #FAF8F5;
    --bg-secondary: #EDE8E0;
    --bg-dark: #1A252F;
    --text-primary: #1A252F;
    --text-secondary: #757575;
    --text-light: #FAF8F5;
    --text-light-secondary: #EDE8E0;
    
    --primary: #4A9B94;
    --primary-hover: #3A8B84;
    --accent: #B8A082;
    --accent-hover: #A68B6B;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #4A9B94 0%, #3A8B84 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(26, 37, 47, 0.7) 0%, rgba(74, 155, 148, 0.3) 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.24);
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'DM Sans', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    
    /* Container */
    --container-max: 1200px;
    --container-padding: 2rem;
}

@media (max-width: 768px) {
    :root {
        --container-padding: 1.5rem;
        --spacing-xl: 2rem;
        --spacing-2xl: 3rem;
        --spacing-3xl: 4rem;
    }
}
