.site-footer {
  margin-top: -2px;
  padding: 84px 0 44px;
  background: radial-gradient(circle at 15% 20%, rgba(40, 28, 22, 0.68), rgba(19, 14, 12, 1) 40%), var(--footer-bg);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(200px, auto);
  gap: 60px;
}

.footer-brand .brand-text {
  color: #fff;
}

.footer-brand {
  gap: 0;
}

.footer-brand-logo {
  display: block;
  width: min(52vw, 320px);
  height: auto;
  max-height: 44px;
  transform: translateX(-24px);
  filter: brightness(0) invert(1);
}

.footer-description {
  margin-top: 26px;
  max-width: 430px;
  color: #97a4bb;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  letter-spacing: -0.03em;
  font-weight: 300;
}

.footer-copyright {
  margin-top: 20px;
  color: #9da8be;
  font-size: var(--fs-caption);
  line-height: 1.2;
  font-weight: 300;
}

.footer-links-column h3 {
  font-size: var(--fs-card-title);
  line-height: 1.1;
  font-weight: var(--fw-title);
}

.footer-links-column ul {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links-column a {
  color: #9ca8be;
  font-size: var(--fs-body);
  line-height: 1;
  font-weight: 300;
  transition: color 180ms ease;
}

.footer-links-column a:hover,
.footer-links-column a:focus-visible {
  color: var(--primary);
}

@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
}

@media (max-width: 720px) {
  .site-footer {
    padding-top: 60px;
  }

  .footer-brand-logo {
    transform: none;
    width: min(64vw, 280px);
  }

  .footer-description {
    display: none;
  }

  .footer-copyright {
    margin-top: 16px;
  }

  .footer-description,
  .footer-links-column a {
    font-size: var(--fs-body);
  }
}
