:root {
  --ground: #0e0906;
  --deep: #120c08;
  --gold: #e9b056;
  --gold-soft: rgba(233, 176, 86, 0.16);
  --ivory: #f9ecdb;
  --soft: #d9c6ab;
}

html,
body {
  background-color: var(--ground);
}

.site-footer {
  margin-top: 26px;
  border-top: 1px solid rgba(233, 176, 86, 0.14);
  background: rgba(14, 9, 6, 0.6);
  padding: 40px 24px 28px;
}

.site-footer-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.site-footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.footer-title {
  margin: 0 0 10px;
  font-family: "EB Garamond", Georgia, serif;
  font-size: 1.2rem;
  color: var(--gold);
}

.footer-heading {
  margin: 0 0 10px;
  color: rgba(233, 176, 86, 0.76);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-copy {
  margin: 0;
  color: var(--soft);
  font-size: 0.88rem;
  line-height: 1.6;
}

.footer-copy-subtle {
  margin-top: 10px;
  opacity: 0.8;
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-list li + li {
  margin-top: 8px;
}

.footer-list a {
  color: var(--soft);
  text-decoration: none;
}

.footer-list a:hover,
.footer-list a:focus-visible {
  color: var(--gold);
}

.footer-bottom {
  margin-top: 24px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: rgba(217, 198, 171, 0.62);
  font-size: 0.78rem;
}

.footer-bottom-links {
  display: flex;
  gap: 14px;
}

.footer-bottom-links a {
  color: rgba(217, 198, 171, 0.72);
  text-decoration: none;
}

.footer-bottom-links a:hover,
.footer-bottom-links a:focus-visible {
  color: var(--gold);
}

@media (max-width: 760px) {
  .site-footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .site-footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
