.site-footer {
    background: #1c2b38;
    color: rgba(255, 255, 255, 0.75);
    padding-top: 40px;
}

.site-footer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 32px;
}

.site-footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}
.site-footer__logo-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}
.site-footer__logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
.site-footer__logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.site-footer__logo-text-top {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
}
.site-footer__logo-text-bottom {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
}

.site-footer__menu-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.site-footer__menu-list a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s ease;
}
.site-footer__menu-list a:hover {
    color: var(--color-accent);
}

.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 13px;
}

.site-footer__copyright {
    color: rgba(255, 255, 255, 0.55);
}

.site-footer__legal {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.site-footer__legal a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: underline dashed;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}
.site-footer__legal a:hover {
    color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 640px) {
    .site-footer__top,
    .site-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}
