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

.site-footer {
  width: 100%;
  margin-top: 70px;
  overflow: hidden;
  background: transparent;
  color: #fff;
}

.site-footer__container {
  width: min(100% - 40px, 1180px);
  margin-inline: auto;
  padding: 44px 0 24px;
}

.site-footer__brand {
  display: flex;
  width: fit-content;
  gap: 13px;
  align-items: center;
  color: #fff;
  text-decoration: none;
}

.site-footer__logo {
  display: block;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  object-fit: contain;
}

.site-footer__name {
  font-size: clamp(24px, 2.1vw, 30px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-footer__bottom {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.site-footer__bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 720px) {
  .site-footer {
    margin-top: 48px;
  }

  .site-footer__container {
    width: min(100% - 32px, 1180px);
    padding: 34px 0 20px;
  }

  .site-footer__brand {
    gap: 10px;
  }

  .site-footer__logo {
    width: 38px;
    height: 38px;
  }

  .site-footer__name {
    max-width: calc(100vw - 96px);
    overflow: hidden;
    font-size: clamp(17px, 5.2vw, 21px);
    letter-spacing: 0.035em;
    text-overflow: ellipsis;
  }

  .site-footer__bottom {
    margin-top: 26px;
    padding-top: 17px;
  }

  .site-footer__bottom p {
    font-size: 13px;
  }
}
