.site-footer {
  background: linear-gradient(
    to bottom,
    #f7f9f9,
    #eef2f2
  );
  padding: 80px 24px 24px;
  font-family: "Poppins", sans-serif;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto 40px;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 48px;
}

/* Brand */
.footer-brand h3 {
  font-size: 22px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.8;
  color: #555;
  max-width: 300px;
}

/* Links & Contact */
.footer-links h4,
.footer-contact h4 {
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 10px;
  font-size: 13px;
  color: #555;
}

.footer-links a,
.footer-contact a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #a67547;
}

/* Bottom */
.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.footer-bottom p {
  font-size: 12px;
  color: #777;
}
