.footer {
  color: rgba(255,255,255,.70);
  background:
    radial-gradient(circle at top left, rgba(216,189,131,.10), transparent 26%),
    #020a11;
  padding: 62px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr .9fr .7fr;
  gap: 80px;

  align-items: center;
  justify-content: space-between;

  padding-bottom: 44px;
}

.footer img {
  width: 150px;
  border-radius: 0px;
}

.footer p {
  margin-top: 16px;
  font-weight: 300;
}

.footer nav {
  display: grid;
  gap: 12px;
}

.footer a {
  transition: color .25s ease;
}

.footer a:hover {
  color: var(--gold-300);
}

.footer__social {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.footer__social img {
  width: 30px;
  height: 30px;
}

.footer__bottom {
  text-align: center;
  padding: 22px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .88rem;
  font-weight: 300;
}

@media (max-width: 760px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__social { justify-content: flex-start; }
}