.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(300px, 29vw, 430px);
  min-height: 390px;
  overflow: hidden;
  scroll-snap-align: start;
  background: #332e2a;
  color: #f8f1e5;
}

.site-footer__content {
  display: grid;
  grid-template-columns: minmax(300px, 1.35fr) minmax(280px, 1fr);
  gap: clamp(48px, 7vw, 100px);
  width: min(1120px, 100%);
  padding: 0 clamp(32px, 5vw, 72px) 38px;
}

.site-footer__about {
  max-width: 520px;
}

.site-footer__brand {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 132px;
  height: var(--badge-height);
  margin: 0 0 32px;
  background: #f5efe2;
  color: #b59568;
  text-align: center;
  clip-path: polygon(0 0, 100% 0, 100% 74%, 50% 100%, 0 74%);
}

.site-footer__brand span {
  display: block;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.08em;
}

.site-footer__brand span:first-child {
  font-size: 12px;
  font-weight: 500;
}

.site-footer__about > p:not(.site-footer__copyright) {
  max-width: 500px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.62;
}

.site-footer__copyright {
  margin: 28px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(248, 241, 229, 0.5);
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.82rem;
}

.site-footer__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: clamp(34px, 5vw, 76px);
  align-content: center;
  padding: 24px 0;
}

.site-footer__links div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.site-footer__links h2 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer__links a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  line-height: 1.4;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
  color: #d8ba8e;
  transform: translateX(2px);
}

.site-footer__map {
  min-height: 100%;
  border-left: 1px solid rgba(248, 241, 229, 0.35);
  background:
    linear-gradient(rgba(51, 46, 42, 0.08), rgba(51, 46, 42, 0.08)),
    url("./img/footer-right-side.png") center / cover no-repeat;
}

@media (max-width: 1080px) {
  .site-footer {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 30vw);
  }

  .site-footer__content {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .site-footer__links {
    align-content: start;
    padding: 0;
  }
}

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

  .site-footer__content {
    padding: 0 24px 38px;
  }

  .site-footer__brand {
    margin-bottom: 32px;
  }

  .site-footer__links {
    gap: 32px;
  }

  .site-footer__map {
    min-height: 230px;
    border-top: 1px solid rgba(248, 241, 229, 0.35);
    border-left: 0;
    background-position: center 43%;
  }
}

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