.site-footer {
  background: #2a1f18;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer__inner {
  width: min(1240px, 100%);
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4.5rem) var(--section-x, 1.5rem) calc(1.75rem + env(safe-area-inset-bottom));
}

.site-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: clamp(2.5rem, 4vw, 3.25rem);
  border-bottom: 1px solid rgba(196, 164, 106, 0.28);
}

.site-footer__brand {
  max-width: 20rem;
}

.site-footer__wordmark {
  display: block;
  margin-bottom: 0.45rem;
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: clamp(1.65rem, 2.5vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.site-footer__tagline {
  display: block;
  margin-bottom: 1.15rem;
  color: var(--gold);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.34em;
  line-height: 1.4;
  text-transform: uppercase;
}

.site-footer__about {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.75;
}

.site-footer__heading {
  margin-bottom: 1.15rem;
  color: #ffffff;
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.site-footer__links {
  display: grid;
  gap: 0.75rem;
  list-style: none;
}

.site-footer__link {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.4;
  transition: color 0.3s var(--ease);
}

.site-footer__link:hover,
.site-footer__link:focus-visible {
  color: var(--gold);
}

.site-footer__contact-item + .site-footer__contact-item {
  margin-top: 0.85rem;
}

.site-footer__contact-label {
  display: block;
  margin-bottom: 0.25rem;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.55rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.site-footer__contact-value {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.84rem;
  font-weight: 300;
  line-height: 1.5;
}

.site-footer__contact-value a {
  transition: color 0.3s var(--ease);
}

.site-footer__contact-value a:hover,
.site-footer__contact-value a:focus-visible {
  color: var(--gold);
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  padding-top: 1.75rem;
}

.site-footer__copy {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.06em;
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  list-style: none;
}

.site-footer__legal-link {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.3s var(--ease);
}

.site-footer__legal-link:hover,
.site-footer__legal-link:focus-visible {
  color: var(--gold);
}

@media (max-width: 960px) {
  .site-footer__top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__brand {
    grid-column: 1 / -1;
    max-width: none;
  }
}

@media (max-width: 560px) {
  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-bottom: 2rem;
  }

  .site-footer__brand {
    text-align: center;
  }

  .site-footer__wordmark {
    font-size: clamp(1.45rem, 6vw, 1.75rem);
  }

  .site-footer__about {
    font-size: 0.88rem;
  }

  .site-footer__heading {
    margin-bottom: 0.85rem;
  }

  .site-footer__link {
    display: inline-block;
    padding-block: 0.15rem;
    min-height: 1.75rem;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }

  .site-footer__legal {
    justify-content: center;
  }
}
