/* ===== Footer ===== */
.footer {
  background: #0f172a;
  color: #f1f5f9;
  padding: 3rem 0 1.5rem;
  font-size: 0.95rem;
}
.footer-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer h4 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: #e2e8f0;
}
.footer-brand .small {
  text-align: left;
}
.footer-nav ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}
.footer a {
  color: #f1f5f9;
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  text-align: center;
  color: #94a3b8;
}
@media (max-width: 820px) {
  .footer-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .f-logo {
    justify-self: center;
    display: flex;
  }
  .footer-brand .small {
    text-align: center;
  }
}
