/* ===== Site Footer =====
   Markup lives in base.html (shared by every page), so these rules must be
   loaded globally too — moved out of home.css, which is homepage-scoped. */
.home-footer {
  margin-top: 64px;
  background: var(--fg);
  color: hsl(210 20% 80%);
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}
.footer-inner {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 48px 24px 32px;
  gap: 48px;
}
.footer-brand { max-width: 320px; }
.footer-brand .navbar-logo { margin-bottom: 12px; }
.footer-brand .navbar-logo svg { color: var(--primary); }
.footer-brand .navbar-logo span { color: white; }
.footer-brand p { font-size: 13px; line-height: 1.6; opacity: 0.7; }
.footer-links {
  display: flex;
  gap: 64px;
}
.footer-links h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
}
.footer-links a {
  display: block;
  font-size: 13px;
  color: hsl(210 20% 70%);
  padding: 4px 0;
  transition: color var(--transition);
}
.footer-links a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid hsl(220 26% 20%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
  padding: 20px;
  font-size: 12px;
  opacity: 0.5;
}

@media (max-width: 768px) {
  .footer-inner { flex-direction: column; gap: 32px; }
  .footer-links { gap: 32px; }
}
