/* ===========================
   Footer — Polished & Balanced
   =========================== */

.site-footer {
  background: #2f5d4b;
  color: #ffffff;
  padding: 20px 24px 12px;
  font-family: 'Inter', sans-serif;
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 48px;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Column headers */
.footer-column h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  margin-bottom: 14px;
  font-weight: 600;
}

/* Body text */
.footer-column p {
  font-size: 0.85rem;
  line-height: 1.6;
  opacity: 0.9;
  max-width: 320px;
}

/* Links */
.footer-column a {
  display: block;
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 6px;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-column a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* Bottom copyright */
.footer-bottom {
  text-align: center;
  margin-top: 12px;
  padding-top: 8px;
  font-size: 0.75rem;
  opacity: 0.7;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.footer-column h4 {
  margin-bottom: 10px;
}

.footer-column p {
  margin: 0;
  line-height: 1.45;
}

.footer-column a {
  margin-bottom: 4px;
  line-height: 1.4;
}

/* Mobile */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-column p {
    margin: 0 auto;
  }
}
.footer-container {
  align-items: start;
}

/* FORCE footer sizing on all pages */
.site-footer {
  padding: 20px 24px 12px !important;
}

.footer-container {
  gap: 20px !important;
}

.footer-bottom {
  margin-top: 12px !important;
  padding-top: 8px !important;
}
