.site-footer {
    border-top: 1px solid rgba(19, 54, 111, 0.1);
    background: #ffffff;
    color: var(--brand-deep);
}

.site-footer-inner,
.site-footer-bottom {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.site-footer-inner {
    display: grid;
    grid-template-columns: minmax(240px, 1.1fr) minmax(320px, 1.4fr) minmax(180px, 0.7fr);
    gap: 32px;
    padding: 44px 0 30px;
}

.site-footer-brand {
    display: grid;
    gap: 12px;
    align-content: start;
}

.site-footer-eyebrow,
.site-footer-description,
.site-footer-bottom p {
    margin: 0;
}

.site-footer-eyebrow {
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.site-footer-description {
    max-width: 360px;
    color: var(--muted);
    font-weight: 700;
    line-height: 1.65;
}

.site-footer-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.site-footer-column h2 {
    margin: 0 0 14px;
    color: var(--brand-deep);
    font-size: 0.92rem;
}

.site-footer-list,
.site-footer-legal {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer-list a,
.site-footer-legal a {
    color: var(--muted);
    font-weight: 800;
    text-decoration: none;
}

.site-footer-list a:hover,
.site-footer-legal a:hover {
    color: var(--brand-deep);
}

.site-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    border-top: 1px solid rgba(19, 54, 111, 0.08);
    padding: 18px 0 22px;
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 750;
}

.site-footer-legal {
    display: flex;
    flex-wrap: wrap;
}

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

    .site-footer-nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .site-footer-inner,
    .site-footer-bottom {
        width: min(100% - 20px, 1120px);
    }

    .site-footer-inner,
    .site-footer-nav,
    .site-footer-bottom {
        grid-template-columns: 1fr;
    }

    .site-footer-bottom {
        display: grid;
    }
}
