.site-footer {
  background: #050505;
  color: #ffffff;
  padding: 92px 0 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.9fr 1.2fr;
  gap: 72px;
  align-items: start;
}

.footer-logo {
  display: inline-flex;
  margin-bottom: 24px;
  color: #ffffff;
  font-size: 1.7rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.05em;
  text-decoration: none;
}

.footer-logo span {
  color: var(--accent);
}

.footer-brand p {
  max-width: 340px;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 1rem;
  line-height: 1.65;
}

.footer-brand strong {
  display: block;
  margin-top: 28px;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-col h3 {
  margin: 0 0 22px;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.footer-nav {
  display: grid;
  gap: 13px;
}

.footer-nav a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.98rem;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-nav a:hover {
  color: var(--accent);
}

.footer-contacts {
  display: grid;
  gap: 18px;
}

.footer-phone {
  width: fit-content;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-phone:hover {
  color: var(--accent);
}

.footer-contacts p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.98rem;
  line-height: 1.65;
}

/* SOCIAL ICONS */

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-social {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.78);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.footer-social svg {
  width: 20px;
  height: 20px;
  display: block;
  fill: currentColor;
}

.footer-social:hover {
  transform: translateY(-3px);
  color: #ffffff;
  border-color: rgba(229, 90, 0, 0.45);
  background: rgba(229, 90, 0, 0.12);
}

/* BOTTOM */

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 76px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.88rem;
}

@media (max-width: 1080px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 54px;
  }
}

@media (max-width: 680px) {
  .site-footer {
    padding: 72px 0 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footer-bottom {
    flex-direction: column;
    margin-top: 54px;
  }

  .footer-social {
    width: 42px;
    height: 42px;
  }

  .footer-social svg {
    width: 19px;
    height: 19px;
  }
}