.elementor-209 .elementor-element.elementor-element-2b8836c{--display:flex;--flex-direction:column;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--justify-content:center;--align-items:center;--margin-top:-80px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;--z-index:2;}.elementor-209 .elementor-element.elementor-element-2b8836c:not(.elementor-motion-effects-element-type-background), .elementor-209 .elementor-element.elementor-element-2b8836c > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:transparent;background-image:linear-gradient(180deg, #FCFBFA 0%, #F5F0EC 100%);}.elementor-209 .elementor-element.elementor-element-2b8836c.e-con{--align-self:center;}.elementor-209 .elementor-element.elementor-element-b845947{width:100%;max-width:100%;}@media(max-width:768px){.elementor-209 .elementor-element.elementor-element-2b8836c{--margin-top:-50px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:80px;--padding-bottom:50px;--padding-left:0px;--padding-right:0px;}}/* Start custom CSS for html, class: .elementor-element-b845947 */:root {
    --accent-color: #C9A961; 
    --accent-hover: #B89A50;
    --text-dark: #333333;
    --text-light: #666666;
    --font-heading: 'Playfair Display', sans-serif;
    --font-body: 'Inter', sans-serif;
}
.footer-logo {
    max-width: 220px;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
    /* МАГИЯ ЗДЕСЬ: Инвертируем белый цвет на 80%, получая идеальный темно-серый (#333333) */
    filter: invert(0.8); 
}

.footer-logo:hover {
    transform: scale(1.05);
}
.premium-footer {
    width: 100%;
    /* Используем более плотный темный беж для эффекта фундамента */
    background: linear-gradient(180deg, #E6E1D6 0%, #DCD6C7 100%);
    padding: 80px 20px 30px 20px;
    font-family: var(--font-body);
    color: var(--text-dark);
    overflow: hidden;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0;
    animation: footerFadeUp 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards 0.2s;
}

/* Верхняя часть с колонками */
.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

/* Логотип и слоган */
.brand-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    max-width: 220px;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-slogan {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.5;
    font-style: italic;
    max-width: 300px;
}

/* Заголовки колонок */
.footer-heading {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

/* Навигация */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-menu a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-menu a:hover {
    color: var(--accent-color);
    transform: translateX(8px); /* Плавный сдвиг при наведении */
}

/* Контакты */
.footer-contacts-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-subtitle {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-link, .contact-text {
    font-size: 16px;
    color: var(--text-dark);
    text-decoration: none;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--accent-color);
}

/* Нижняя часть (Реквизиты и Политики) */
.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-reqs {
    font-size: 13px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.req-separator {
    color: var(--accent-color);
    opacity: 0.5;
}

.footer-legal-links {
    display: flex;
    gap: 30px;
}

.footer-legal-links a {
    font-size: 13px;
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

@keyframes footerFadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- АДАПТИВНОСТЬ --- */
@media (max-width: 992px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
    .brand-col {
        grid-column: span 2; /* Логотип на всю ширину сверху */
        align-items: center;
        text-align: center;
        margin-bottom: 20px;
    }
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-col {
        align-items: center;
        text-align: center;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer-legal-links {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .premium-footer {
        padding: 60px 15px 30px 15px;
    }
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .brand-col {
        grid-column: span 1;
    }
    .footer-reqs {
        flex-direction: column;
        gap: 5px;
    }
    .req-separator {
        display: none;
    }
}/* End custom CSS */