/* =========================================================
   SHARED SITE FOOTER
   ========================================================= */

.site-footer {
  padding: 70px 24px 0;
  background: #202327;
  color: rgba(255, 255, 255, 0.72);
  text-align: left;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(420px, 1fr);
  gap: 80px;
  width: min(100%, 1180px);
  margin: 0 auto;
  padding-bottom: 55px;
}

.footer-brand {
  max-width: 620px;
}

.site-footer .footer-name {
  margin: 0 0 20px;
  color: var(--gold-light);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: none;
}

.footer-brand p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
  line-height: 1.8;
  letter-spacing: 0;
  text-transform: none;
}

.footer-navigation {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 45px;
}

.site-footer .footer-heading {
  margin: 0 0 20px;
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  margin-bottom: 13px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  line-height: 1.5;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: none;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.footer-column a:hover,
.footer-column a:focus {
  color: var(--gold-light);
  transform: translateX(3px);
}

.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 25px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer .footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.7rem;
  line-height: 1.7;
  letter-spacing: 0.06em;
  text-transform: none;
}

.site-footer .footer-disclaimer {
  max-width: 650px;
  text-align: right;
}

/* =========================================================
   FOOTER TABLET
   ========================================================= */

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

  .footer-navigation {
    max-width: 650px;
  }
}

/* =========================================================
   FOOTER MOBILE
   ========================================================= */

@media (max-width: 640px) {
  .site-footer {
    padding: 52px 20px 0;
  }

  .footer-inner {
    gap: 35px;
    padding-bottom: 40px;
  }

  .footer-navigation {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    display: block;
    padding: 23px 0 28px;
  }

  .site-footer .footer-disclaimer {
    margin-top: 13px;
    text-align: left;
  }
}