:root {
  --logo: #c3c3c3;
}

.site-footer {
  max-width: none;
  min-height: 120px;
  display: grid;
  grid-template-columns: 250px 1fr 210px;
  align-items: center;
  gap: 28px;
  margin-top: 48px;
  padding: 0 74px 36px;
  background: transparent;
  color: rgba(195, 195, 195, 0.72);
  font-size: 16px;
  letter-spacing: -0.02em;
  border-top: 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--logo);
  text-decoration: none;
  white-space: nowrap;
}

.logo-lockup img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(0.765);
}

.logo-text {
  font-family: 'Poppins', ui-sans-serif, system-ui, sans-serif;
  font-size: 28px;
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.05em;
  color: var(--logo);
}

.footer-brand > span {
  display: none;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.site-footer a {
  color: rgba(195, 195, 195, 0.62);
  text-decoration: none;
  transition: color 160ms ease;
}

.site-footer a:hover {
  color: #e5e5e5;
}

.site-footer p {
  margin: 0;
  text-align: right;
}

@media (max-width: 980px) {
  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 22px 24px 40px;
  }

  .footer-links {
    gap: 18px 28px;
  }

  .site-footer p {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .site-footer {
    gap: 20px;
    padding: 18px 20px 38px;
    font-size: 14px;
  }

  .footer-links {
    max-width: 330px;
    gap: 13px 22px;
  }
}
