/* =====================================================
   CHC — Shared Footer (sitewide)
   Adds consistent dark footer styling for pages using .site-footer markup.
   ===================================================== */

.site-footer {
  background: #080808;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 3rem 0 2rem;
}

.site-footer .container { max-width: var(--container-w); }

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.footer-brand .contact-logo {
  width: 180px;
  height: auto;
  filter: brightness(0) invert(1) drop-shadow(0 10px 30px rgba(0,0,0,0.45));
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
  margin: 0;
  max-width: 34ch;
}

.footer-links h4 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.9rem;
  color: #fff;
  margin: 0 0 0.9rem;
}

.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.5;
}

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

.footer-bottom {
  margin-top: 2.25rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 860px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .footer-tagline { max-width: 100%; }
}
