.site-footer {
  position: relative;
  background: #000;
  color: #fff;
  padding-top: 3rem;
  padding-bottom: 3rem;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(90deg, #8f6b54 0%, #caa685 30%, #1c1a18 100%);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.3);
  pointer-events: none;
}
.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.site-footer__brand {
  font-weight: 800;
  letter-spacing: 0.03em;
}
.site-footer__copy {
  font-size: 14px;
  opacity: 0.8;
}
