.mh-footer {
  width: 100%;
  padding: 58px 0 0;
  background: #202020;
  color: #f7f7f7;
  font-family: "Duru Sans", sans-serif;
}

.mh-footer *,
.mh-footer *::before,
.mh-footer *::after {
  box-sizing: border-box;
}

.mh-footer a {
  color: inherit;
  text-decoration: none;
}

.mh-footer__inner,
.mh-footer__bottom {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.mh-footer__inner {
  display: grid;
  grid-template-columns: minmax(230px, .8fr) minmax(390px, 1.65fr) minmax(270px, .9fr);
  gap: clamp(42px, 6vw, 88px);
  align-items: start;
}

.mh-footer__brand,
.mh-footer__nav {
  min-height: 260px;
  padding-right: clamp(28px, 4vw, 64px);
  border-right: 1px solid rgba(255, 255, 255, .1);
}

.mh-footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.mh-footer__logo img {
  width: 78px;
  height: 78px;
  object-fit: contain;
}

.mh-footer__logo span {
  display: grid;
  gap: 5px;
}

.mh-footer__logo strong {
  color: #fff;
  font-size: .98rem;
  font-weight: 600;
  line-height: 1.3;
}

.mh-footer__logo small {
  color: #bda06c;
  font-size: .63rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.mh-footer__brand > p {
  max-width: 270px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .6);
  font-size: .82rem;
  line-height: 1.7;
}

.mh-footer__quick-links {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.mh-footer__quick-links a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  color: #fff;
  transition: color .2s ease, border-color .2s ease, background-color .2s ease;
}

.mh-footer__quick-links a:hover {
  border-color: #b1976b;
  background: #b1976b;
  color: #202020;
}

.mh-footer__quick-links svg,
.mh-footer__contact svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
  flex: 0 0 auto;
}

.mh-footer h2 {
  margin: 2px 0 25px;
  color: #fff;
  font-family: "Duru Sans", sans-serif;
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.35;
}

.mh-footer__nav-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px 34px;
}

.mh-footer__nav-grid a {
  color: rgba(255, 255, 255, .76);
  font-size: .84rem;
  line-height: 1.45;
  transition: color .2s ease, transform .2s ease;
}

.mh-footer__nav-grid a:hover {
  color: #d0b37e;
  transform: translateX(3px);
}

.mh-footer__contact {
  display: grid;
  align-content: start;
}

.mh-footer__contact > a:not(.mh-footer__contact-link) {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, .8);
  font-size: .84rem;
  line-height: 1.65;
  overflow-wrap: anywhere;
  transition: color .2s ease;
}

.mh-footer__contact > a:not(.mh-footer__contact-link):hover {
  color: #d0b37e;
}

.mh-footer__contact svg {
  margin-top: 3px;
}

.mh-footer__contact-link {
  width: fit-content;
  margin-top: 2px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(177, 151, 107, .5);
  color: #d0b37e !important;
  font-size: .82rem;
}

.mh-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  margin-top: 42px;
  padding: 18px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .48);
  font-size: .7rem;
  line-height: 1.5;
}

@media (max-width: 980px) {
  .mh-footer__inner {
    grid-template-columns: 1fr 1.5fr;
  }

  .mh-footer__brand {
    border-right: 1px solid rgba(255, 255, 255, .1);
  }

  .mh-footer__nav {
    padding-right: 0;
    border-right: 0;
  }

  .mh-footer__contact {
    grid-column: 1 / -1;
    padding-top: 34px;
    border-top: 1px solid rgba(255, 255, 255, .1);
  }
}

@media (max-width: 640px) {
  .mh-footer {
    padding-top: 46px;
  }

  .mh-footer__inner,
  .mh-footer__bottom {
    width: min(100% - 30px, 1200px);
  }

  .mh-footer__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .mh-footer__brand,
  .mh-footer__nav {
    min-height: 0;
    padding: 0 0 34px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }

  .mh-footer__contact {
    grid-column: auto;
    padding-top: 0;
    border-top: 0;
  }

  .mh-footer__nav-grid {
    gap: 15px 20px;
  }

  .mh-footer__bottom {
    display: grid;
    justify-content: start;
    gap: 6px;
    margin-top: 34px;
  }
}
