/* =============================================================
   footer.css — Footer
   ============================================================= */

footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.5);
  padding: var(--space-2xl) 5vw;
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--white);
}

.footer-logo .accent { color: var(--sun); }

.footer-abn {
  font-family: var(--font-sans);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 400;
}

.footer-links {
  display: flex;
  gap: var(--space-lg);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 14px;
  transition: color var(--transition-base);
}

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

.footer-copy { font-size: 13px; }

@media (max-width: 768px) {
  .footer-inner    { flex-direction: column; text-align: center; }
  .footer-links    { justify-content: center; }
}
