/* ─── FOOTER ───────────────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 48px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand img { height: 24px; }

.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.footer-links a {
  font-size: 13px;
  color: var(--subtle);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-copy { font-size: 13px; color: var(--subtle); }

/* ─── MOBILE ───────────────────────────────────────────────────────── */
@media (max-width: 640px) {
  footer { padding: 24px 16px; }
  .footer-links { flex-wrap: wrap; gap: 14px; justify-content: center; }
}
