/* ── FOOTER ── */
.footer {
    background: var(--primary-dk);
    color: rgba(255,255,255,0.6);
    text-align: center;
    padding: 28px 24px;
}

.footer .links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.footer .links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer .links a:hover { color: #fff; }

.footer p { font-size: 0.85rem; }
