/* ============================================================
   NORTH HORIZON PARTNERS — footer.css
   ============================================================ */

.site-footer {
  border-top: 1px solid var(--border-solid);
  padding: 2rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.82rem;
  color: var(--text-dim);
}

.footer-email {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color 0.18s ease;
}

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

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.82rem;
  color: var(--text-dim);
  transition: color 0.18s ease;
}

.footer-links a:hover {
  color: var(--text-muted);
}

@media (max-width: 480px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.6rem;
  }
}
