.site-footer {
  position: relative;
  z-index: 100;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 40px 32px;
  background: #f2f1ef;
  color: #8a8178;
  text-align: center;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
}

.site-footer__mark {
  margin: 0 0 8px;
  color: rgba(61, 53, 48, 0.12);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(14px, 2.5vw, 24px);
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
  user-select: none;
}

.site-footer__copy {
  margin: 0;
  color: inherit;
  font-size: 9px;
  letter-spacing: 0.1em;
  line-height: 1.6;
  text-transform: uppercase;
}

.site-footer > a {
  display: inline-block;
  margin-bottom: 24px;
  color: inherit;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
  transition: opacity 0.3s ease;
}

.site-footer > a:hover {
  opacity: 0.5;
}

.site-footer--overlay {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 18px 24px 22px;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer--overlay .site-footer__mark {
  display: none;
}

@media (max-width: 768px) {
  .site-footer {
    padding: 32px 20px 44px;
  }

  .site-footer__copy {
    max-width: 320px;
    margin-inline: auto;
  }

  .site-footer--overlay {
    padding: 16px 18px 20px;
  }
}
