:root {
    /* Цветовая палитра */
    --deep-taupe: #5e4b3c;
    --warm-mushroom: #8b7a6b;
    --champagne: #d4c0b0;
    --ivory-lace: #fefaf5;
    --powder-rose: #e0bfb8;
    --antique-gold: #b79b6b;
    --dusty-rose: #cfa5a0;
    --white-soft: #ffffff;
    
    /* Цвета для дресс-кода */
    --sage-green: #9caf88;
    --terracotta: #c47e5a;      /* Обновленная терракота */
    --lavender: #b2a1c4;
    --navy-blue: #3a4e6b;
    --chocolate: #6b4c3b;       /* Новый шоколадный цвет (вместо винного) */
    --blush-pink: #e8c1c0;
    
    /* Тени */
    --shadow-elegant: 0 20px 40px -10px rgba(0,0,0,0.12);
    --shadow-hover: 0 30px 50px -12px rgba(94,75,60,0.25);
    --shadow-light: 0 10px 30px -5px rgba(0,0,0,0.08);
    
    /* Анимации */
    --transition-smooth: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    --transition-fast: all 0.3s ease;
    
    /* Отступы */
    --section-spacing: 3rem;
    --container-padding: 1.5rem;
    
    /* Границы */
    --border-radius-large: 48px;
    --border-radius-medium: 32px;
    --border-radius-small: 40px;
}

@media (min-width: 768px) {
    :root {
        --section-spacing: 4rem;
        --container-padding: 2.5rem;
    }
}