.site-footer {
  position: relative;
  display: block;
  padding: 0 var(--pad);
  color: #fff;
  background: #080808;
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0;
}

.footer-inner {
  width: 100%;
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 150px;
  padding: 30px 0;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 24px);
}

.footer-social a,
.footer-social span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #fff;
  cursor: pointer;
  transition: color .2s ease;
}

.footer-social a:hover,
.footer-social span:hover {
  color: #e60012;
}

.footer-social svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-company {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 12px;
}

.footer-company .footer-logo img {
  width: 116px;
  height: 50px;
  object-fit: contain;
}

.footer-company p {
  margin: 0;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
}

.footer-top-button {
  position: absolute;
  right: var(--pad);
  top: -64px;
  width: 52px;
  height: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: #fff;
  background: #080808;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
}

.footer-top-button span {
  color: #e60012;
  font-size: 14px;
}

@media (max-width: 760px) {
  .site-footer {
    padding: 0 var(--pad);
  }

  .footer-main,
  .footer-company {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-main {
    padding: 35px 0;
    gap: 32px;
  }

  .footer-social {
    gap: 12px;
  }

  .footer-company {
    gap: 12px;
  }

  .footer-top-button {
    right: var(--pad);
  }
}
