.site-footer {
  padding: 42px clamp(20px, 4vw, 64px) 28px;
  color: #f2eee6;
  background: #26250e;
  border: 0;
  text-align: center;
  font: 16px/1.55 Arial, Helvetica, sans-serif;
}

.site-footer,
.site-footer * {
  box-sizing: border-box;
}

.site-footer .site-footer__links {
  position: static;
  inset: auto;
  z-index: auto;
  width: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 24px;
  margin: 0 0 14px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.site-footer__link {
  color: #f2eee6;
  text-decoration: none;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  transition: color .2s ease;
}

.site-footer__link:hover,
.site-footer__link:focus-visible {
  color: #e1c59f;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.site-footer__link:focus-visible {
  outline: 2px solid #e1c59f;
  outline-offset: 5px;
}

.site-footer__separator {
  color: #8f7347;
  font-size: 1.35rem;
  line-height: 1;
}

.site-footer__disclaimer {
  margin: 0 auto 28px;
  color: rgba(242, 238, 230, .58);
  font-size: .9rem;
}

.site-footer__location {
  max-width: 1500px;
  margin: 0 auto;
  padding: 20px clamp(18px, 3vw, 36px);
  border: 1px solid rgba(179, 145, 112, .5);
  background: rgba(179, 145, 112, .08);
  box-shadow: inset 0 0 0 1px rgba(61, 57, 18, .15);
  color: #ded4c6;
}

.site-footer__location p {
  margin: 0 0 10px;
  font-size: clamp(.95rem, 1.3vw, 1.08rem);
}

.site-footer__location strong {
  color: #f1dda9;
}

.site-footer .site-footer__areas {
  position: static;
  inset: auto;
  z-index: auto;
  width: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 7px 12px;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.site-footer .site-footer__area-link {
  width: auto;
  min-height: 0;
  display: inline;
  margin: 0;
  padding: 3px 2px;
  color: #f1dda9;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(241, 221, 169, .5);
  border-radius: 0;
  box-shadow: none;
  text-decoration: none;
  font: inherit;
  font-weight: 700;
  line-height: 1.35;
}

.site-footer .site-footer__area-link:hover,
.site-footer .site-footer__area-link:focus-visible,
.site-footer .site-footer__area-link[aria-current="page"] {
  color: #fff;
  background: transparent;
  border-bottom-color: #fff;
  text-decoration: none;
  outline: 2px solid #e1c59f;
  outline-offset: 3px;
}

.site-footer .site-footer__areas span {
  color: rgba(242, 238, 230, .45);
}

.site-footer__copyright {
  margin: 20px 0 0;
  color: rgba(242, 238, 230, .56);
  font-size: .9rem;
}

@media (max-width: 620px) {
  .site-footer {
    padding: 34px 18px 24px;
  }

  .site-footer .site-footer__links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 12px;
  }

  .site-footer__link {
    min-height: 44px;
    display: grid;
    place-items: center;
    padding: 8px 4px;
  }

  .site-footer .site-footer__links .site-footer__link {
    border-bottom: 1px solid rgba(179, 145, 112, .52);
  }

  .site-footer__separator {
    display: none;
  }

  .site-footer__disclaimer {
    margin-bottom: 22px;
  }

  .site-footer__location {
    padding: 18px 16px;
  }

  .site-footer .site-footer__areas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 10px;
  }

  .site-footer .site-footer__area-link {
    min-height: 44px;
    display: grid;
    place-items: center;
    padding: 8px 5px;
    border: 1px solid rgba(241, 221, 169, .38);
  }

  .site-footer .site-footer__areas span {
    display: none;
  }
}
