/* Legal pages (Impressum, Datenschutz) — shared with main brand */
.legal {
  padding: 140px var(--gutter) 80px;
  max-width: 880px;
  margin: 0 auto;
}
.legal__back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 56px;
  border-bottom: 1px solid var(--black);
  padding-bottom: 4px;
  transition: color .2s;
}
.legal__back:hover { color: var(--pink); border-color: var(--pink); }
.legal__back svg { width: 16px; height: 16px; }

.legal h1 {
  font-family: var(--f-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(48px, 8vw, 120px);
  line-height: 0.88;
  letter-spacing: -0.025em;
  margin: 0 0 12px;
}
.legal h1 .accent {
  position: relative;
  display: inline-block;
}
.legal h1 .accent::after {
  content: "";
  position: absolute;
  inset: auto -0.05em -0.02em -0.05em;
  height: 0.22em;
  background: var(--accent);
  z-index: -1;
  transform: skewX(-8deg);
}
.legal__updated {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: .55;
  margin: 0 0 56px;
}

.legal h2 {
  font-family: var(--f-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(22px, 2.4vw, 32px);
  letter-spacing: -0.01em;
  margin: 56px 0 16px;
  padding-top: 28px;
  border-top: 1px solid var(--black);
}
.legal h3 {
  font-family: var(--f-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 0.04em;
  margin: 32px 0 10px;
}
.legal p, .legal li {
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 14px;
  max-width: 64ch;
}
.legal ul {
  margin: 0 0 20px;
  padding-left: 0;
  list-style: none;
}
.legal ul li {
  padding-left: 22px;
  position: relative;
}
.legal ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.65em;
  width: 8px; height: 8px;
  background: var(--accent);
}
.legal address {
  font-style: normal;
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 14px;
}
.legal a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal a:hover { color: var(--pink); }

.legal .placeholder {
  background: color-mix(in oklab, var(--accent) 50%, transparent);
  padding: 1px 6px;
  font-family: var(--f-body);
  font-weight: 600;
  font-style: normal;
}
