.site-footer {
    width: 100%;
    margin-top: 82px;
    background: #fff;
    border-top: 1px solid var(--border);
}

.site-footer-inner,
.site-footer-bottom {
    width: 100%;
    max-width: calc(var(--site-width) + (var(--site-padding) * 2));
    margin: 0 auto;
    padding-left: var(--site-padding);
    padding-right: var(--site-padding);
}

.site-footer-inner {
    padding-top: 44px;
    padding-bottom: 36px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
}

.footer-brand {
    max-width: 390px;
}

.footer-brand strong {
    display: block;
    font-family: var(--serif);
    font-size: 30px;
    line-height: 1;
    margin-bottom: 12px;
}

.footer-brand p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.65;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 14px 24px;
    max-width: 560px;
}

.footer-links a {
    color: var(--text);
    font-size: 15px;
    font-weight: 600;
}

.footer-links a:hover {
    color: var(--accent);
}

.site-footer-bottom {
    color: var(--muted);
    font-size: 14px;
    padding-bottom: 28px;
}

@media (max-width: 760px) {
    .site-footer-inner {
        flex-direction: column;
        gap: 28px;
    }

    .footer-links {
        justify-content: flex-start;
        flex-direction: column;
        gap: 10px;
    }
}
