.legal-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: center;
  padding: 1.25rem clamp(1rem, 4vw, 2rem);
  margin-top: 2rem;
  border-top: 0;
  background: #fff;
}

/* Short top rule — not edge to edge */
.legal-strip::before {
  content: '';
  flex: 0 0 100%;
  width: min(40rem, calc(100% - 4rem));
  height: 1px;
  margin: 0 auto 1rem;
  background: rgba(26, 26, 26, 0.12);
}

.legal-strip a {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink, #1a1a1a);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  border-bottom: 1px solid rgba(26, 26, 26, 0.3);
}

.legal-strip a:hover {
  border-bottom-color: var(--ink, #1a1a1a);
}
