/* =========================================================
   footer.css
   ========================================================= */

.footer {
  background: var(--bg);
  border-top: 1px solid var(--cream-line);
  padding: 2.5rem 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.75rem;
  justify-content: flex-end;
}

.footer__nav a {
  font-size: 0.85rem;
  color: var(--cream-dim);
  transition: color 0.2s ease;
}

.footer__nav a:hover {
  color: var(--cream);
}

.footer__legal {
  font-size: 0.78rem;
  color: var(--cream-dim);
  margin: 0;
  letter-spacing: 0.02em;
}
