.site-footer {
    width: 100%;
    margin-top: auto;
    color: var(--muted);
    background: var(--card);
    border-top: 1px solid var(--border);
}

.site-footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 18px 32px;
}

.site-footer__brand,
.site-footer__meta {
    display: flex;
    align-items: center;
}

.site-footer__brand {
    gap: 10px;
    min-width: 0;
}

.site-footer__brand strong {
    color: var(--brand-dark);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.site-footer__brand span {
    padding-left: 10px;
    border-left: 1px solid var(--border);
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.site-footer__meta {
    justify-content: flex-end;
    gap: 12px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.site-footer__separator {
    width: 3px;
    height: 3px;
    background: var(--border);
    border-radius: 50%;
}

@media (max-width: 700px) {
    .site-footer__inner,
    .site-footer__brand,
    .site-footer__meta {
        flex-direction: column;
        justify-content: center;
    }

    .site-footer__inner {
        gap: 10px;
        padding: 18px 20px;
        text-align: center;
    }

    .site-footer__brand,
    .site-footer__meta {
        gap: 6px;
    }

    .site-footer__brand span {
        padding-left: 0;
        border-left: 0;
    }

    .site-footer__separator {
        display: none;
    }
}
