.site-footer {
    margin-top: 60px;
    padding: 64px 0 24px;
    background: linear-gradient(180deg, #0F172A, #111827);
    color: #F8FAFC;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.footer-brand img {
    height: 44px;
    width: auto;
    margin-bottom: 12px;
}

.site-footer .footer-logo {
    width: 220px;
    max-width: 100%;
    height: auto;
}

.footer-title {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(248, 250, 252, 0.9);
    margin-bottom: 12px;
}

.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer li + li {
    margin-top: 8px;
}

.site-footer a {
    color: rgba(248, 250, 252, 0.8);
    transition: color 0.2s ease;
}

.site-footer a:hover {
    color: var(--secondary);
}

.footer-contact {
    display: grid;
    gap: 14px;
}

.site-footer .footer-contact li,
.site-footer .footer-contact li + li {
    margin-top: 0;
}

.footer-contact a {
    font-size: .84rem;
    line-height: 1.65;
    text-decoration: none;
}

.footer-socials {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
    margin-top: 22px;
}

.footer-socials__label {
    color: rgba(248, 250, 252, .62);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.footer-socials__links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-socials a {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 12px;
    color: #ffffff;
    background: rgba(255, 255, 255, .06);
    font-size: 1rem;
    text-decoration: none;
    transition: border-color .2s ease, background-color .2s ease, transform .2s ease;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
    border-color: #f58220;
    color: #ffffff;
    background: #f58220;
    transform: translateY(-2px);
}

.footer-socials a:focus-visible {
    outline: 3px solid rgba(245, 130, 32, .35);
    outline-offset: 3px;
}

.site-footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 28px;
    padding-top: 20px;
    text-align: center;
    color: rgba(248, 250, 252, 0.8);
}

@media (max-width: 768px) {
    .site-footer .footer-logo {
        width: 188px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}
