.site-footer {
  padding: 120px 80px;
  background:
    linear-gradient(rgba(255,255,255,.92), rgba(255,255,255,.92)),
    url("../assets/preloader-bg.png") center/cover no-repeat;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 80px;
}

.site-footer h4 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  margin-bottom: 16px;
}

.site-footer input {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
}

.site-footer button {
  width: 100%;
  padding: 12px;
  background: var(--dark);
  color: #fff;
  border: none;
  cursor: pointer;
}

.links a {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
}

.links a:hover {
  color: var(--dark);
}




/* =========================
   FOOTER MOBILE FIX
========================= */

@media (max-width: 900px) {

  .site-footer {
    padding: 60px 24px;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* center subscribe form */
  .site-footer input,
  .site-footer button {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  /* center links */
  .links {
    text-align: center;
  }

  .links a {
    margin-bottom: 10px;
  }

}
