/* ── Simplified Footer ──────────────────────────────────────────── */
.site-footer {
  background-color: var(--surface);
  border-top: 1px solid var(--border-soft);
  margin: 2rem 0 0;
  padding: 2rem 1.2rem 1.5rem;
  display: flex;
  justify-content: center;
}

[data-theme="dark"] .site-footer {
  background-color: var(--surface);
  border-top-color: color-mix(in srgb, rgb(255,255,255) 6%, transparent);
}

.site-footer-inner {
  max-width: 60rem;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.5rem;
}

.site-footer__links {
  display: flex;
  gap: 1.25rem;
}

.site-footer__links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: color var(--motion-fast) var(--ease-out);
}

.site-footer__links a:hover {
  color: var(--text);
  text-decoration: none;
}

.site-footer__copy {
  color: var(--muted);
  font-size: 0.8rem;
  margin: 0;
  opacity: 0.7;
}
