.site-footer {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(8rem, 0.4fr));
  gap: 2rem;
  padding: 3rem clamp(1rem, 5vw, 4.5rem);
  color: #5d4630;
  border-top: 1px solid rgba(49, 39, 29, 0.12);
  background-color: #fffaf1;
  background-image:
    linear-gradient(to bottom, rgba(255, 250, 241, 0.9), rgba(255, 250, 241, 0.62)),
    url("flower-footer-banner.svg");
  background-position: center, center bottom;
  background-repeat: no-repeat, no-repeat;
  background-size: 100% 100%, 100% auto;
}

.site-footer .brand {
  color: #31271d;
  font-family: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
}

.site-footer h3 {
  margin: 0 0 0.8rem;
  color: #31271d;
  font-family: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer p,
.site-footer a {
  display: block;
  margin: 0.35rem 0;
  color: #5d4630;
  line-height: 1.55;
}

.site-footer p {
  max-width: 28rem;
}

.site-footer .footer-contact {
  margin-top: 1.1rem;
  font-style: normal;
}

.site-footer .footer-contact span,
.site-footer .footer-contact a {
  display: block;
  margin: 0.2rem 0;
  color: #5d4630;
  font-size: 0.92rem;
  line-height: 1.55;
  text-decoration: none;
}

.site-footer .footer-contact a:hover {
  color: #354f36;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.site-footer nav a {
  font-size: 0.92rem;
  text-decoration: none;
}

.site-footer nav a:hover {
  color: #354f36;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

@media (max-width: 920px) {
  .site-footer {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .site-footer {
    grid-template-columns: 1fr;
  }
}
