.footer-nap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.4rem 1rem;
  font-size: 0.78rem;
  color: rgba(245,240,232,0.45);
  margin-top: 1.5rem;
  border-top: 1px solid rgba(245,240,232,0.08);
  padding-top: 1.5rem;
}

.footer-nap a {
  color: rgba(245,240,232,0.45);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-nap a:hover { color: var(--gold); }

.footer-nap .footer-sep {
  color: rgba(245,240,232,0.2);
}

.footer-copy {
  font-size: 0.72rem;
  color: rgba(245,240,232,0.3);
  margin-top: 0.75rem;
  text-align: center;
}

/* ── MOBILE ── */
@media (max-width: 600px) {
  .footer-nap {
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-nap .footer-sep {
    display: none;
  }
}