.site-footer {
  --footer-content-max: 1368px;
  --footer-muted: rgba(248, 248, 248, 0.5);
  --footer-line: rgba(248, 248, 248, 0.12);
  background: #000;
  color: #fff;
  font-family: Roboto, Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.35;
}

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

.site-footer a,
.site-footer p {
  font: inherit;
}

#footer.site-footer a {
  font: inherit;
}

#footer.site-footer li {
  font: inherit;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
  transition: color 160ms ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #ed1c24;
}

.site-footer__container {
  width: min(100% - 32px, var(--footer-content-max));
  margin-inline: auto;
}

.site-footer__main {
  display: grid;
  grid-template-areas: "brand catalog service contact";
  grid-template-columns: minmax(320px, 1.65fr) minmax(120px, 0.62fr) minmax(120px, 0.62fr) minmax(250px, 1fr);
  gap: clamp(40px, 5vw, 96px);
  align-items: start;
  padding-block: 48px 25px;
}

.site-footer__brand {
  grid-area: brand;
  min-width: 0;
}

.site-footer__logo {
  display: inline-flex;
}

.site-footer__logo img {
  display: block;
  width: 200px;
  height: auto;
}

.site-footer__description {
  max-width: 405px;
  margin-top: 13px;
  color: var(--footer-muted);
  line-height: 1.5;
}

.site-footer__description p {
  margin: 0;
}

.site-footer__section--catalog {
  grid-area: catalog;
}

.site-footer__section--service {
  grid-area: service;
}

.site-footer__section--contact {
  grid-area: contact;
}

.site-footer__section h2 {
  margin: 0;
  color: #fff;
  font: inherit;
  line-height: 1;
  text-transform: uppercase;
}

.site-footer__section ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.site-footer__section li,
.site-footer__section a {
  min-width: 0;
}

.site-footer__section li a {
  color: var(--footer-muted);
}

#footer.site-footer .site-footer__phone {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  margin-top: 17px;
  font-size: 16px;
  line-height: 1.25;
  white-space: nowrap;
}

.site-footer__phone-icon {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  background: #ed1c24;
  -webkit-mask: url("../../../components/site-footer/assets/phone.svg") center/contain no-repeat;
  mask: url("../../../components/site-footer/assets/phone.svg") center/contain no-repeat;
}

.site-footer__bottom {
  display: flex;
  min-height: 55px;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--footer-line);
  color: var(--footer-muted);
  font-size: 10px;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-footer__copyright {
  margin: 0;
  white-space: nowrap;
}

.site-footer__legal {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}

@media (max-width: 991.98px) {
  .site-footer__main {
    grid-template-areas: "brand brand" "catalog service" "contact contact";
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px clamp(32px, 8vw, 80px);
  }
  .site-footer__description {
    max-width: 640px;
  }
}
@media (max-width: 767.98px) {
  .site-footer__container {
    width: min(100% - 30px, var(--footer-content-max));
  }
  .site-footer__main {
    grid-template-areas: "catalog service" "contact contact" "brand brand";
    gap: 0 clamp(28px, 10vw, 54px);
    padding-block: 40px 38px;
  }
  .site-footer__section ul {
    gap: 7px;
  }
  .site-footer__section--contact {
    margin-top: 44px;
  }
  .site-footer__brand {
    margin-top: 52px;
  }
  .site-footer__description {
    max-width: none;
    margin-top: 21px;
    line-height: 1.45;
  }
  .site-footer__bottom {
    min-height: 69px;
    justify-content: flex-start;
  }
  .site-footer__legal {
    display: none;
  }
}