/* FOOTER */

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 64px 0 28px;
  background: #080808;
  color: #ffffff;
  border-top: 1px solid #2a2a2a;
}

.site-footer::before {
  content: "TIKI-TAKA";
  position: absolute;
  right: -0.08em;
  bottom: 18px;
  color: rgba(255, 255, 255, 0.035);
  font-size: clamp(4rem, 18vw, 14rem);
  line-height: 0.8;
  font-weight: 950;
  letter-spacing: -0.1em;
  pointer-events: none;
}

.site-footer .container {
  position: relative;
  z-index: 2;
}

.site-footer__top {
  display: grid;
  gap: 34px;
  padding-bottom: 34px;
}

.site-footer__brand {
  max-width: 420px;
}

.site-footer__logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 170px;
  height: 54px;
  text-decoration: none;
}

.site-footer__logo img {
  height: 92px;
  width: auto;
  max-width: none;
  object-fit: contain;
}

.site-footer__text {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.94rem;
  line-height: 1.6;
}

/* NAV */

.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
}

.site-footer__nav a {
  width: 100%;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 0.86rem;
  line-height: 1;
  font-weight: 800;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.site-footer__nav a:hover {
  color: #ffffff;
  background: rgba(215, 25, 32, 0.12);
  border-color: rgba(215, 25, 32, 0.36);
}

/* CONTACTS */

.site-footer__contacts {
  display: grid;
  gap: 12px;
}

.site-footer__title {
  color: var(--accent);
  font-size: 0.72rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer__contact-link {
  width: fit-content;
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
  font-size: 0.94rem;
  line-height: 1.3;
  font-weight: 750;
  transition: color 0.25s ease;
}

.site-footer__contact-link:hover {
  color: #ffffff;
}

/* SOCIALS */

.site-footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.site-footer__social {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.site-footer__social img {
  width: 20px;
  height: 20px;
  display: block;
  object-fit: contain;
}

.site-footer__social:hover {
  transform: translateY(-3px);
  border-color: rgba(215, 25, 32, 0.42);
  background: rgba(215, 25, 32, 0.18);
}

/* BOTTOM */

.site-footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 24px;
  border-top: 1px solid #2a2a2a;
}

.site-footer__bottom p,
.site-footer__bottom span {
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.82rem;
  line-height: 1.4;
  font-weight: 650;
}

/* TABLET */

@media (min-width: 768px) {
  .site-footer {
    padding: 76px 0 30px;
  }

  .site-footer__top {
    grid-template-columns: 1.3fr 0.8fr 1fr;
    gap: 42px;
    padding-bottom: 42px;
  }

  .site-footer__nav {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .site-footer__nav a {
    width: fit-content;
    min-height: auto;
    justify-content: flex-start;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
  }

  .site-footer__nav a:hover {
    background: transparent;
    border-color: transparent;
  }

  .site-footer__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* DESKTOP */

@media (min-width: 1120px) {
  .site-footer {
    padding: 88px 0 34px;
  }

  .site-footer__top {
    grid-template-columns: 1.4fr 0.8fr 1fr;
    gap: 80px;
  }

  .site-footer__logo {
    width: 210px;
    height: 62px;
  }

  .site-footer__logo img {
    height: 112px;
  }

  .site-footer__social {
    width: 44px;
    height: 44px;
  }

  .site-footer__social svg {
    width: 21px;
    height: 21px;
  }
}

/* SMALL MOBILE */

@media (max-width: 390px) {
  .site-footer {
    padding: 54px 0 26px;
  }

  .site-footer__logo {
    width: 150px;
    height: 48px;
  }

  .site-footer__logo img {
    height: 82px;
  }

  .site-footer__text {
    font-size: 0.88rem;
  }

  .site-footer__social {
    width: 40px;
    height: 40px;
  }

  .site-footer__social svg {
    width: 19px;
    height: 19px;
  }
}