.site-footer {
  width: 100%;
  background: #FAF9F6;
  padding: 50px 30px 50px;
  box-sizing: border-box;
  overflow: hidden;
}

.footer-container {
  width: 100%;
  display: grid;
  grid-template-columns: 1.25fr 1.25fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.footer-col {
  min-height: 205px;
}

.footer-left-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo-menu-row {
  display: grid;
  grid-template-columns: 150px auto;
  gap: 40px;
  align-items: start;
  margin-bottom: 28px;
}

.footer-logo img {
  width: 125px;
  height: auto;
  display: block;
}

.footer-menu-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-menu-column li {
  margin-bottom: 7px;
}

.footer-menu-column a {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 18px;
  line-height: 1;
  color: #354230;
  text-decoration: none;
}

.footer-menu-column a:hover {
  color: #d9c5a3;
}

.footer-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-buttons .green-btn {
  min-width: 142px;
  height: 52px;
}

.footer-contact-column {
  border-left: 1px solid #c9c6bf;
  border-right: 1px solid #c9c6bf;
  padding: 0 38px;
}

.footer-contact-item {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
}

.footer-contact-icon {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.footer-contact-icon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
}

.footer-contact-item p {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 16px;
  line-height: 1;
  color: #354230;
  margin: 0;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: #c9c6bf;
  margin: 24px 0;
}

.footer-follow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 18px;
  color: #354230;
}

.footer-follow a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-follow img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
}

.footer-right {
  display: flex;
  justify-content: center;
}

.footer-mail-form {
  width: 100%;
  max-width: 400px;
  height: 60px;
  border: 2px solid #bcb8b2;
  border-radius: 40px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: transparent;
}

.footer-mail-form input {
  flex: 1;
  height: 100%;
  border: none;
  background: transparent;
  padding: 0 24px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 16px;
  color: #354230;
  outline: none;
}

.footer-mail-form input::placeholder {
  color: #b3afa8;
}

.footer-mail-form button {
  width: 120px;
  height: 100%;
  border: none;
  background: #d9d6d2;
  color: #354230;
  font-family: "The Seasons", Georgia, serif;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer-mail-form button:hover {
  background: #354230;
  color: #FFFFFF;
}

.footer-bottom-title {
  width: 100%;
  text-align: center;
  margin-top: 70px;
  font-family: "The Seasons", Georgia, serif;
  font-size: 60px;
  line-height: 0.9;
  color: #354230;
  letter-spacing: -2px;
}
/* 
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .site-footer {
    padding: 35px 30px 20px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-contact-column {
    border-left: none;
    border-right: none;
    padding: 0;
  }

  .footer-right {
    justify-content: flex-start;
  }

  .footer-bottom-title {
    font-size: 52px;
    margin-top: 55px;
  }
} */

@media only screen and (max-width: 767px) {
  .site-footer {
    padding: 32px 22px 20px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-col {
  min-height: 5px;
  }

  .footer-left-menu {
    align-items: center;
  }

  .footer-logo-menu-row {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .footer-logo img {
    width: 110px;
    margin: 0 auto;
  }

  .footer-buttons {
    justify-content: center;
  }

  .footer-contact-column {
    border-left: none;
    border-right: none;
    padding: 0;
    text-align: center;
  }

  .footer-contact-item {
    grid-template-columns: 1fr;
    gap: 8px;
    text-align: center;
  }

  .footer-contact-icon {
    justify-content: center;
  }

  .footer-follow {
    justify-content: center;
  }

  .footer-right {
    justify-content: center;

  }

  .footer-mail-form {
    max-width: 100%;
    height: 54px;
  }

  .footer-mail-form button {
    width: 100px;
    font-size: 16px;
  }

  .footer-bottom-title {
    font-size: 38px;
    line-height: 1;
    letter-spacing: -1px;
  }
}