/*
  footer.css
  Site footer.
*/
.site-footer {
  background: var(--navy-950);
  color: rgba(255,255,255,0.65);
  padding: 50px 0 26px;
  font-size: 0.86rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-grid h4 {
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.footer-grid ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-grid a:hover { color: var(--gold-400); }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand img { width: 34px; height: 34px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 20px; font-size: 0.78rem; flex-wrap: wrap; gap: 10px;
  font-family: var(--font-mono);
  color: rgba(255,255,255,0.4);
}
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; }
}
