.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 80px auto 24px;
  padding: 38px;

  border-radius: var(--radius);

  background:
    linear-gradient(
      135deg,
      #24140f,
      #1d1d1d
    );

  color: white;

  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 35px;
}

.site-footer h2,
.site-footer h4 {
  color: white;
  margin-bottom: 14px;
}

.site-footer p,
.site-footer a {
  color: rgba(255,255,255,.72);
}

.site-footer a {
  display: block;
  margin: 10px 0;
  font-weight: 700;
  transition: .2s ease;
}

.site-footer a:hover {
  color: var(--yellow);
}

.footer-brand p {
  max-width: 320px;
}

.footer-logo-wrap {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: white;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  overflow: hidden;

  border: 2px solid rgba(255,255,255,.15);
}

.footer-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-bottom {
  grid-column: 1 / -1;

  margin-top: 10px;
  padding-top: 18px;

  border-top: 1px solid rgba(255,255,255,.12);

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-bottom p {
  margin: 0;
}

.footer-disclaimer {
  font-size: .85rem;
  text-align: right;
  max-width: 520px;
}

/* Tablet */
@media (max-width: 900px) {
  .site-footer {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-disclaimer {
    text-align: left;
    max-width: 100%;
  }
}

/* Mobile */
@media (max-width: 650px) {
  .site-footer {
    width: min(100% - 24px, 1180px);

    grid-template-columns: 1fr;

    padding: 30px 22px;
    gap: 24px;

    margin-bottom: 100px;
    border-radius: 22px;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .footer-bottom {
    padding-top: 14px;
  }
}