.site-footer {
  display: flex;
  width: min(calc(100% - 80px), 1200px);
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-inline: auto;
  padding: 0;
  border-top: 1px solid rgba(255, 203, 112, .15);
  color: var(--muted);
}

.footer-brand {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.footer-legal {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  margin: 0;
  padding: 0;
  border: 0;
}

.footer-legal a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 3px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1;
  text-decoration: none;
  transition: color .22s var(--ease, ease);
}

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

@media (max-width: 980px) {
  .site-footer { width: min(calc(100% - 48px), 1200px); }
}

@media (max-width: 720px) {
  .site-footer {
    width: calc(100% - 36px);
    min-height: 0;
    flex-wrap: wrap;
    gap: 0 24px;
    padding: 18px 0 22px;
  }

  .footer-brand {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    font-size: 8px;
  }

  .footer-legal {
    min-height: 44px;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0 24px;
  }

  .footer-legal a {
    min-height: 44px;
    font-size: 11px;
  }
}
