.footer {
    background: var(--c-text);
    color: #fff;
    padding: var(--sp-3xl) 0 var(--sp-xl);
}

.footer__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--sp-xl);
}

.footer__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: var(--sp-2xl);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: var(--sp-xl);
}

.footer__brand {
    display: flex;
    align-items: center;
    gap: var(--sp-sm);
    font-weight: 600;
    font-size: var(--fs-lg);
}

.footer__brand .navbar__logo-icon {
    color: var(--c-accent-pale);
}

.footer__links {
    display: flex;
    gap: var(--sp-xl);
}

.footer__links a {
    font-size: var(--fs-sm);
    color: rgba(255,255,255,0.6);
    transition: color var(--duration) var(--ease);
}

.footer__links a:hover {
    color: #fff;
}

.footer__bottom {
    text-align: center;
}

.footer__bottom p {
    font-size: var(--fs-sm);
    color: rgba(255,255,255,0.4);
}

@media (max-width: 600px) {
    .footer__top { flex-direction: column; gap: var(--sp-lg); text-align: center; }
    .footer__links { flex-wrap: wrap; justify-content: center; }
}
