.site-footer {
  margin-top: 28px;
  border-top: 1px solid #ded7c8;
  background: #ffffff;
}

.site-footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px 18px 12px;
  text-align: center;
}

.site-footer-top {
  padding-bottom: 20px;
}

.site-footer-brand {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  color: #274c37;
}

.site-footer-brand .site-logo-img {
  height: 58px;
}

.site-footer-links {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 8px 38px;
  flex-wrap: wrap;
}

.site-footer-links a {
  text-decoration: none;
  color: #2f4f3d;
  font-size: 14px;
  font-weight: 500;
}

.site-footer-social {
  margin-top: 10px;
  display: flex;
  justify-content: flex-start;
  gap: 14px;
}

.site-footer-contact-info {
  display: none;
  margin-top: 14px;
  color: #2f4f3d;
}

.site-footer-contact-info p {
  margin: 2px 0;
  font-size: 15px;
}

.site-footer-contact-info a {
  color: #2f4f3d;
}

.site-footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid #bfc9ba;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #2f4f3d;
  font-size: 18px;
}

.site-footer-bottom {
  border-top: 1px solid #cdbf9e;
  padding-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.site-footer-meta {
  text-align: center;
}

.site-footer-copy {
  margin: 0;
  color: #3f5a48;
  font-size: 13px;
  font-weight: 500;
}

.site-footer-legal {
  margin-top: 6px;
  display: flex;
  justify-content: center;
  gap: 18px;
}

.site-footer-legal a {
  color: #3b5243;
  text-decoration: underline;
  font-size: 14px;
}

@media (max-width: 991px) {
  .site-footer-legal {
    display: none;
  }
}

@media (min-width: 992px) {
  .site-footer-inner {
    padding: 30px 26px 16px;
  }

  .site-footer-logo-image {
    width: 104px;
  }

  .site-footer-brand .site-logo-img {
    height: 34px;
  }

  .site-footer-links {
    margin-top: 24px;
    gap: 22px 54px;
  }

  .site-footer-links a {
    font-size: 17px;
  }

  .site-footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }

  .site-footer-contact-info {
    display: block;
  }

  .site-footer-social {
    margin-top: 0;
  }

  .site-footer-social a {
    width: 44px;
    height: 44px;
    font-size: 24px;
  }

  .site-footer-meta {
    text-align: right;
  }

  .site-footer-copy {
    font-size: 15px;
  }

  .site-footer-legal a {
    font-size: 15px;
  }
}

