.site-footer {
    margin-top: 0px;
    background: #050505;
    color: #ffffff;
    border-top: 1px solid #300000;
    text-align: center;
}

.site-footer__inner {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-footer__brand {
    flex: 0 0 auto;
}

.site-footer__logo {
    color: #8a8a8a;
    text-decoration: none;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.site-footer__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    flex: 1 1 auto;
}

.site-footer__nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.65rem;
    line-height: 1;
}

.site-footer__nav a:hover {
    text-decoration: underline;
}

.site-footer__social {
    display: flex;
    gap: 10px;
    flex: 0 0 auto;
}

.site-footer__social a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1;
}

.site-footer__social a:hover {
    opacity: 0.8;
}

