.site-footer {
    padding: 52px 0 0;
}

.site-footer .footer-grid {
    grid-template-columns: minmax(250px, .9fr) minmax(290px, 1.2fr) minmax(180px, .55fr);
    align-items: start;
    gap: 54px;
}

.footer-brand {
    display: grid;
    place-items: start;
}

.footer-stacked-logo {
    display: block;
    width: min(100%, 380px);
    height: auto;
    padding: 12px 16px;
    border-radius: 12px;
    background: #fff;
    object-fit: contain;
    object-position: center;
}

.footer-commercial strong {
    display: block;
    margin-bottom: 8px;
    color: #fff;
    font-size: 19px;
}

.footer-commercial p {
    max-width: 480px;
    margin: 0 0 18px;
    color: #b4c2d2;
}

.footer-commercial address {
    display: grid;
    gap: 4px;
    color: #fff;
    font-size: 13px;
    font-style: normal;
    line-height: 1.6;
}

.site-footer .footer-links {
    gap: 10px;
    text-align: left;
}

.site-footer .footer-links a {
    color: #fff;
    font-size: 13px;
}

.site-footer .footer-links a:hover {
    color: #9cc5ff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-top: 38px;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, .12);
    color: #8094aa;
    font-size: 11px;
}

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

    .site-footer .footer-links {
        grid-column: 1 / -1;
        grid-template-columns: repeat(3, max-content);
    }
}

@media (max-width: 560px) {
    .site-footer {
        padding-top: 38px;
    }

    .site-footer .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-stacked-logo {
        width: 100%;
    }

    .site-footer .footer-links {
        grid-column: auto;
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        display: grid;
        margin-top: 28px;
    }
}
