.site-footer {
    margin-top: 80px;
    padding: 48px 0;
    background: linear-gradient(90deg, rgba(87, 43, 111, 0.96), rgba(52, 26, 67, 0.98));
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.08);
}

.footer-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.1fr;
    gap: 40px;
    align-items: start;
}

.footer-col {
    min-width: 0;
}

.footer-brand-top {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-logo-img {
    width: auto;
    height: 64px;
    display: block;
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #ffffff;
}

.footer-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.4;
}

.footer-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 14px;
    color: #f4d2ea;
}

.footer-contacts,
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact-item {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.5;
}

.footer-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    line-height: 1.5;
}

.footer-links a:hover {
    color: #ffffff;
}

@media (max-width: 900px) {
    .footer-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-brand-top {
        align-items: flex-start;
    }
}