.site-footer {
    position: relative;
    background: var(--footer-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 5;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr 0.9fr 0.9fr;
    gap: 1.25rem;
    padding: 2.4rem 0 1.1rem;
}

.footer-column strong {
    display: block;
    margin-bottom: 0.7rem;
    color: var(--footer-text);
    font-size: 1rem;
}

.footer-brand-logo {
    display: block;
    width: auto;
    max-width: 150px;
    max-height: 48px;
    margin-bottom: 0.9rem;
    object-fit: contain;
}

.footer-column p,
.footer-column a,
.footer-column small {
    color: color-mix(in srgb, var(--footer-text) 74%, transparent);
    line-height: 1.7;
}

.footer-link-list {
    display: grid;
    gap: 0.4rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: color-mix(in srgb, var(--footer-text) 68%, transparent);
}

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

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

    .footer-bottom {
        flex-direction: column;
    }
}
