/* FOOTER */

.site-footer {
  background: #bb1f11;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/pattern.png");
  background-repeat: repeat;
  background-size: auto;
  opacity: 0.04;
  pointer-events: none;
}

.site-footer__inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin-inline: auto;
  padding: 64px 0px 32px;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 32px;
}

/* БРЕНД */

.site-footer__logo img {
  display: block;
  height: 40px;
  width: auto;
  margin-bottom: 20px;
}

.site-footer__desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
  max-width: 26ch;
}

.site-footer__address {
  font-style: normal;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.4);
}

/* КОЛОНКИ */

.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.site-footer__col-title {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
}

.site-footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer__col ul a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer__col ul a:hover {
  color: #fff;
}

/* НИЖНЯЯ СТРОКА */

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.site-footer__copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  max-width: none;
}

.site-footer__legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.site-footer__legal a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer__legal a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* АДАПТИВ */

@media (max-width: 1024px) {
  .site-footer__inner {
    padding: 48px 24px 28px;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .site-footer__desc {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .site-footer__inner {
    padding: 40px 20px 24px;
  }

  .site-footer__nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .site-footer__legal {
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .site-footer__nav {
    grid-template-columns: 1fr;
  }
}
