.site-footer {
    background: #032b59;
    color: rgba(255,255,255,.66);
    padding: 32px 5% 20px;
    font-size: .78rem;
    line-height: 1.6;
    border-top: 3px solid var(--accent, #c59d5f);
}

.footer-shell {
    max-width: var(--container);
    margin: 0 auto;
}

.footer-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 18px;
}

.footer-brand-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-image {
    height: auto;
    width: auto;
    max-width: 260px;
    max-height: 60px;
}

.footer-mini-tagline {
    font-size: .72rem;
    color: #b8c5d8;
    letter-spacing: .4px;
    text-align: center;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, .14);
    margin: 14px 0;
}

.footer-links {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 20px;
    margin: 0;
}

.footer-links a,
.footer-links .is-static {
    color: #d2dceb;
    font-size: .72rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    font-weight: 600;
}

.footer-links a {
    transition: color var(--t-fast);
}

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

.footer-links .is-static {
    opacity: .7;
}

.footer-legal-inline {
    margin: 14px auto 0;
    max-width: 1080px;
    font-size: .69rem;
    line-height: 1.7;
    color: #a6b4c8;
    text-align: center;
}

.footer-legal-inline strong {
    color: #f1f5fb;
    font-weight: 600;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px 18px;
    flex-wrap: wrap;
}

.footer-reserved {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(var(--accent-rgb), .08);
    border: 1px solid rgba(var(--accent-rgb), .25);
    padding: 7px 16px;
    border-radius: 40px;
    color: var(--accent);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.footer-reserved .dot {
    width: 6px;
    height: 6px;
}

.footer-copyright {
    font-size: .7rem;
    opacity: .82;
}

@media (max-width: 1024px) {
    .footer-mini-tagline {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 56px clamp(14px, 4vw, 20px) 32px;
    }

    .footer-links {
        gap: 10px 16px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .footer-links a,
    .footer-links .is-static {
        font-size: .68rem;
        letter-spacing: .9px;
    }
}
