.site-footer {
  background: var(--footer-wash), linear-gradient(180deg, #0a1628 0%, #07121f 100%);
  color: rgba(247, 251, 255, 0.78);
  padding: 56px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-family: "Montserrat", sans-serif;
}

.footer-inner {
  width: min(1200px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.footer-logo {
  display: inline-block;
  text-decoration: none;
  color: white;
  letter-spacing: 0.08em;
}

.logo-top {
  display: block;
  font-weight: 700;
  font-size: 14px;
}

.logo-bottom {
  display: block;
  font-size: 10px;
  opacity: 0.8;
  margin-top: 2px;
}

.footer-desc {
  margin: 16px 0 18px;
  line-height: 1.6;
  max-width: 40ch;
  color: var(--text-inverse-muted);
  font-family: "Montserrat", sans-serif;
}

.footer-social {
  list-style: none;
  display: flex;
  gap: 12px;
  padding: 0;
  margin: 0;
}

.footer-social a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: white;
  text-decoration: none;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.footer-social a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
}

.footer-title {
  margin: 0 0 14px;
  font-size: 16px;
  color: white;
  font-family: var(--font-heading);
}

.footer-links {
  list-style: none;
  padding-top: 1rem;
  margin: 0;
  display: grid;
  gap: 1.2rem;
}

.footer-links a,
.footer-links button,
.footer-legal a,
.contact-link {
  color: var(--text-inverse-muted);
  text-decoration: none;
}

.footer-links button {
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  font: inherit;
  cursor: pointer;
}

.footer-links a:hover,
.footer-links button:hover,
.footer-legal a:hover,
.contact-link:hover {
  color: white;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-block {
  font-style: normal;
  line-height: 1.7;
}

.contact-label {
  margin: 12px 0 6px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  letter-spacing: 0.03em;
  text-transform: none;
}

.footer-bottom {
  width: min(1200px, 92%);
  margin: 42px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--text-inverse-muted);
}

.footer-legal {
  display: flex;
  gap: 18px;
}

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

@media (max-width: 560px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

footer .logomancione {
  height: auto;
  width: 13.75rem;
  max-width: 100%;
  filter: brightness(0) invert(1);
}
