.site-footer {
  background: linear-gradient(180deg, #ace7c5 0%, #c7f7d7 100%);
  color: #000000;
  padding: 70px 0 30px;
  font-size: 15px;
}

/* ================= GRID ================= */
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr; /* ✅ 4 columns */
  gap: 60px;
  align-items: start;
}

/* ================= BRAND ================= */
.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.footer-logo-img {
  height: 42px;
  width: auto;
  display: block;
}

.footer-brand p {
  max-width: 420px;
  line-height: 1.7;
  color: #000000;
}

/* ================= HEADINGS ================= */
.site-footer h4 {
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 16px;
}

/* ================= LINKS ================= */
.footer-links a,
.footer-contact a {
  display: block;
  color: #000000;
  text-decoration: none;
  margin-bottom: 12px;
  font-size: 15px;
}

.footer-links a:hover,
.footer-contact a:hover {
  text-decoration: underline;
}

/* ================= DIVIDER ================= */
.footer-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.15);
  margin: 50px 0 20px;
}

/* ================= BOTTOM ================= */
.footer-bottom {
  text-align: center;
  font-size: 14px;
  color: #000000;
}

/* ================= MOBILE ================= */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr; /* tablet */
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr; /* mobile */
    gap: 32px;
  }

  .footer-bottom {
    text-align: center;
  }

  .footer-logo-img {
    height: 38px;
  }
}
