.site-footer {
    width: 100%;
    border-top: 1px solid var(--app-border);
    padding: 28px 16px 20px;
}

.site-footer__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 720px;
    margin: 0 auto;
}

.site-footer__brand {
    position: relative;
    padding-right: 32px;
}

.site-footer__brand::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--app-border);
}

.site-footer__heading {
    margin: 0 0 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--app-navy);
}

.site-footer__brand p,
.site-footer__legal p {
    margin: 0;
    font-size: 12px;
    line-height: 1.6;
    color: var(--app-ink);
}

.site-footer__legal p strong {
    color: var(--app-navy);
    font-weight: 700;
}

.site-footer__copy {
    margin-top: 6px !important;
    color: var(--app-muted) !important;
    font-size: 11px !important;
}

@media (max-width: 560px) {
    .site-footer__inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .site-footer__brand {
        padding-right: 0;
    }

    .site-footer__brand::after {
        display: none;
    }
}
