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

.footer-logo {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
  text-decoration: none;
}
.footer-logo em { font-style: normal; color: var(--red); }

.footer-copy {
  font-size: 11px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.footer-links { display: flex; gap: 20px; }
.footer-links a {
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--red); }

@media (max-width: 860px) {
  footer { flex-direction: column; text-align: center; padding: 28px 20px; gap: 16px; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}
