/* =========================================================
   Greenleaf LTD — footer.css
   Pairs with includes/footer.html.
   ========================================================= */

.site-footer {
  background: var(--navy-900);
  color: #C7CEE8;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 24px 40px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
}

.footer-logo {
  height: 84px;
  margin-bottom: 16px;
/*  filter: brightness(0) invert(1); */
}

.footer-brand p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 280px;
  color: #A9B2D6;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.9rem;
}

.footer-links a,
.footer-contact a,
.footer-contact span {
  color: #C7CEE8;
  font-size: 0.9rem;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 20px 24px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.82rem;
  color: #8B95C0;
}

@media (max-width: 700px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 56px 24px 32px;
  }
}
