.site-footer {
    border-top: 1px solid var(--border);
    background: #ffffff;
}

.footer-inner {
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-brand {
    font-weight: 700;
    color: var(--text);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-links a {
    color: var(--taupe-dark);
    text-decoration: none;
    transition: color 0.2s ease;
}

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