/* ─── FOOTER ──────────────────────────────────── */
.footer {
  background: var(--bg-base);
  border-top: 1px solid var(--bg-border);
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo { font-size: 0.9rem; }

.footer-copy {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.footer-email {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  transition: color var(--transition);
}

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