/* ──────────────────────────────────────────
   footer.css — Page footer
   ────────────────────────────────────────── */

.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--color-border);
  padding: var(--sp-8) var(--sp-12);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--color-text-muted);
  text-transform: uppercase;
}

.footer__copy {
  font-size: 11px;
  color: var(--color-text-dim);
  letter-spacing: 0.1em;
}

@media (max-width: 900px) {
  .footer {
    padding: var(--sp-6);
    flex-direction: column;
    gap: var(--sp-4);
    text-align: center;
  }
}
