@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700;800&family=DM+Sans:wght@400;500;600;700;800&display=swap');

.footer {
  margin-top: 52px;
  padding: 52px 0 22px;
  background: #0d1b2a;
  color: hsl(40 20% 98%);
  font-family: "DM Sans", system-ui, sans-serif;
}

.footer .container {
  width: min(100% - 32px, 1400px);
  max-width: none;
  margin: 0 auto;
  padding: 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}

.footer__brand {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.footer__muted {
  color: rgba(255,255,255,0.45);
  font-size: .95rem;
  line-height: 1.6;
  max-width: 320px;
}

.footer__title {
  margin-bottom: 14px;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #d7a84f;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__links a,
.footer__social a {
  color: rgba(255,255,255,0.55);
  font-size: .95rem;
  line-height: 1.4;
  text-decoration: none;
  transition: color .2s ease;
}

.footer__links a:hover,
.footer__social a:hover {
  color: #d7a84f;
}

.footer__social {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer__bottom {
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255,255,255,0.28);
  font-size: .82rem;
}

@media (max-width: 1100px) {
  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .footer .container {
    width: min(100% - 20px, 1400px);
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
}