.site-footer {
  position: relative;
  isolation: isolate;
  width: min(calc(100% - 32px), 1740px);
  margin: 16px auto;
  padding: 86px 72px 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.018), transparent 32%),
    #050407;
}

.site-footer::before {
  content: attr(data-footer-word);
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  color: rgba(255, 176, 201, 0.035);
  font-family: "Outfit", sans-serif;
  font-size: clamp(120px, 18vw, 330px);
  font-weight: 600;
  letter-spacing: -0.075em;
  white-space: nowrap;
  pointer-events: none;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1fr minmax(360px, 540px) 1fr;
  grid-template-areas:
    ". brand socials"
    ". copy socials";
  gap: 12px 70px;
  align-items: start;
  padding-bottom: 66px;
}

.site-footer__brand {
  grid-area: brand;
  display: block;
  justify-self: center;
  width: 360px;
  height: 118px;
  overflow: hidden;
}

.site-footer__brand img {
  width: 370px;
  height: 124px;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: screen;
}

.site-footer__top > p {
  grid-area: copy;
  max-width: 520px;
  margin: 0 auto;
  color: #9b9097;
  font-size: 14px;
  line-height: 1.8;
  text-align: center;
}

.site-footer__socials {
  grid-area: socials;
  display: grid;
  align-self: center;
  justify-self: end;
  width: min(100%, 280px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__socials a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 0 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #aaa0a6;
  font-size: 12px;
  font-weight: 700;
  transition:
    color 200ms ease,
    padding 200ms ease;
}

.site-footer__socials a:hover {
  padding-inline: 13px;
  color: var(--pink-soft);
}

.site-footer__navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__navigation nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.site-footer__navigation nav a,
.site-footer__mail {
  color: #91868d;
  font-size: 11px;
  font-weight: 700;
  transition: color 200ms ease;
}

.site-footer__navigation nav a:hover,
.site-footer__mail:hover {
  color: var(--pink-soft);
}

.site-footer__mail {
  color: var(--pink-muted);
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 26px;
  color: #6d6469;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.site-footer__bottom a {
  transition: color 200ms ease;
}

.site-footer__bottom a:hover {
  color: var(--pink-soft);
}

@media (max-width: 1030px) {
  .site-footer__top {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "copy"
      "socials";
    gap: 18px;
  }

  .site-footer__socials {
    justify-self: center;
    margin-top: 28px;
  }
}

@media (max-width: 720px) {
  .site-footer {
    width: calc(100% - 14px);
    margin: 7px auto;
    padding: 62px 24px 25px;
    border-radius: 23px;
  }

  .site-footer__brand {
    width: 285px;
    height: 96px;
  }

  .site-footer__brand img {
    width: 294px;
    height: 101px;
  }

  .site-footer__navigation,
  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__navigation nav {
    gap: 15px;
  }
}
