/* ============================================================
   footer.css — closing site footer, shared across all pages
   ============================================================ */

footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.5rem 4rem;
  border-top: 1px solid var(--rule);
}

.footer-copy {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--mid);
}

.footer-back {
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--mid);
  background: none;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}

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

/* ── Responsive ── */
@media (max-width: 768px) {
  footer {
    flex-direction: column;
    gap: 1rem;
    padding: 2rem 1.5rem;
    text-align: center;
  }
}
