.site-footer {
  padding: 52px 0 24px;
  color: rgba(255, 255, 255, .58);
  background: #191916;
}
.site-footer .container {
  width: min(1440px, calc(100% - 48px));
  margin-inline: auto;
}
.site-footer .footer-top {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr 1fr;
  gap: 38px;
  padding-bottom: 38px;
}
.site-footer .footer-brand .brand-name {
  color: #fff;
  font-size: 21px;
  font-weight: 700;
}
.site-footer .footer-brand p {
  max-width: 330px;
  margin: 14px 0 0;
  font-size: 13px;
  line-height: 1.55;
}
.site-footer .footer-title {
  margin: 0 0 10px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.site-footer .footer-links {
  display: grid;
  gap: 2px;
  color: rgba(255, 255, 255, .58);
}
.site-footer .footer-links a {
  width: fit-content;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  line-height: 1.3;
  transition: color .2s ease;
}
.site-footer .footer-links a:hover,
.site-footer .footer-email:hover {
  color: #fff;
}
.site-footer .footer-phone {
  display: block;
  width: fit-content;
  margin-bottom: 4px;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
}
.site-footer .footer-email {
  display: block;
  width: fit-content;
  margin-bottom: 10px;
  font-size: 13px;
  transition: color .2s ease;
}
.site-footer .footer-note {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
}
.site-footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: 12px;
  line-height: 1.45;
}
.site-footer .footer-credit {
  color: rgba(255, 255, 255, .76);
  letter-spacing: .03em;
}
@media (max-width: 1080px) {
  .site-footer .footer-top {
    grid-template-columns: 1.25fr repeat(3, 1fr);
    gap: 30px;
  }
  .site-footer .footer-bottom {
    flex-wrap: wrap;
  }
}
@media (max-width: 760px) {
  .site-footer {
    padding: 42px 0 22px;
  }
  .site-footer .container {
    width: min(100% - 32px, 1440px);
  }
  .site-footer .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 30px 24px;
    padding-bottom: 30px;
  }
  .site-footer .footer-brand,
  .site-footer .footer-contact {
    grid-column: 1 / -1;
  }
  .site-footer .footer-links a {
    min-height: 38px;
  }
  .site-footer .footer-bottom {
    display: grid;
    gap: 8px;
  }
}
@media (max-width: 420px) {
  .site-footer .footer-top {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .site-footer .footer-brand,
  .site-footer .footer-contact {
    grid-column: auto;
  }
}
