.homepage-footer {
  background: #000;
  color: #b8c1cd;
  overflow: hidden;
  padding: clamp(62px, 8vw, 104px) 20px clamp(72px, 8vw, 112px);
  position: relative;
}

.homepage-footer::before {
  background-image: url("data:image/svg+xml,%3Csvg width='1600' height='330' viewBox='0 0 1600 330' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M250 330C360 280 200 98 330 62C470 23 560 278 725 211C845 162 835 72 995 65C1195 55 1240 145 1432 75C1490 54 1550 27 1600 5' stroke='%23252a34' stroke-width='4'/%3E%3Cpath d='M315 330C300 237 276 121 381 112C520 101 583 281 740 242C860 212 865 112 1025 102C1218 90 1264 180 1460 108C1510 90 1559 69 1600 50' stroke='%23252a34' stroke-width='4'/%3E%3Cpath d='M375 330C360 223 407 148 505 162C632 180 675 300 814 286C930 274 937 164 1100 151C1268 138 1328 218 1500 142C1536 126 1570 109 1600 94' stroke='%23252a34' stroke-width='4'/%3E%3C/svg%3E");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: min(1500px, 110vw) auto;
  content: "";
  inset: 0;
  opacity: 0.68;
  position: absolute;
  z-index: 0;
}

.homepage-footer__inner {
  align-items: center;
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(280px, 1fr) auto;
  margin: 0 auto;
  max-width: 1400px;
  position: relative;
  z-index: 1;
}

.homepage-footer__logo {
  display: inline-block;
  margin-bottom: 40px;
}

.homepage-footer__logo img {
  display: block;
  height: auto;
  max-width: 210px;
  width: 46vw;
}

.homepage-footer__company,
.homepage-footer__links {
  font-family: Lato, sans-serif;
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.55;
  margin: 0;
}

.homepage-footer__links {
  margin-top: 8px;
}

.homepage-footer__links a {
  color: #b8c1cd;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.homepage-footer__socials {
  display: flex;
  gap: 28px;
  justify-content: flex-end;
}

.homepage-footer__socials a {
  align-items: center;
  border: 2px solid rgba(184, 193, 205, 0.36);
  border-radius: 14px;
  color: #fff;
  display: flex;
  height: 64px;
  justify-content: center;
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease;
  width: 64px;
}

.homepage-footer__socials a:hover,
.homepage-footer__socials a:focus-visible {
  border-color: rgba(184, 193, 205, 0.82);
  transform: translateY(-2px);
}

.homepage-footer__socials svg {
  fill: currentColor;
  height: 26px;
  width: 26px;
}

@media (max-width: 900px) {
  .homepage-footer__inner {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .homepage-footer__socials {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .homepage-footer {
    padding: 48px 18px 64px;
  }

  .homepage-footer__logo {
    margin-bottom: 28px;
  }

  .homepage-footer__socials {
    gap: 14px;
  }

  .homepage-footer__socials a {
    height: 54px;
    width: 54px;
  }
}
