/* ── FOOTER ── */
#footer {
  padding: 48px 5%;
  background: var(--bg);
  border-top: 0.5px solid var(--border);
}

.footer-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.5px;
  color: var(--text);
  text-decoration: none;
}

.footer-logo span {
  color: var(--blue);
}

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

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

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

.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
  opacity: 0.6;
}

@media (max-width: 640px) {
  .footer-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}