/* ============================================================
   legal.css — Impressum & Datenschutz
   ============================================================ */

.legal {
  padding-top: clamp(64px, 8vw, 112px);
  padding-bottom: clamp(40px, 5vw, 80px);
  max-width: 72ch;
}

/* ── Back link ───────────────────────────────────────────────── */
.legal__back {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 40px;
  transition: color .2s, gap .2s var(--ease);
}
.legal__back:hover { color: var(--accent); gap: 12px; }
.legal__back svg { width: 13px; height: 13px; }

/* ── Page heading ────────────────────────────────────────────── */
.legal__h1 {
  font-size: clamp(32px, 5vw, 72px);
  font-weight: 600; letter-spacing: -0.03em;
  line-height: 0.98; margin-top: 20px; margin-bottom: 36px;
}

.legal__intro {
  font-family: var(--mono); font-size: 12px; color: var(--muted);
  letter-spacing: 0.04em; margin-bottom: 48px;
  border-left: 2px solid var(--accent-dim); padding-left: 14px;
}

/* ── Body content ────────────────────────────────────────────── */
.legal__body { display: flex; flex-direction: column; gap: 0; }

.legal__body section {
  padding-top: clamp(32px, 4vw, 52px);
  padding-bottom: clamp(24px, 3vw, 40px);
  border-bottom: 1px solid var(--line-soft);
}
.legal__body section:last-child { border-bottom: none; }

.legal__body h2 {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600; letter-spacing: -0.015em;
  line-height: 1.2; margin-bottom: 18px;
  scroll-margin-top: 32px;
}

.legal__body h3 {
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 500; letter-spacing: -0.01em;
  color: var(--text-2); margin-top: 24px; margin-bottom: 12px;
  scroll-margin-top: 32px;
}

.legal__body p {
  font-size: 15px; line-height: 1.72;
  color: var(--text-2); max-width: 66ch;
}
.legal__body p + p { margin-top: 14px; }

.legal__body ul,
.legal__body ol {
  margin-top: 14px; margin-left: 20px;
  display: flex; flex-direction: column; gap: 8px;
}
.legal__body li {
  font-size: 15px; line-height: 1.6; color: var(--text-2);
}

.legal__body address {
  font-style: normal; font-size: 15px; line-height: 1.8;
  color: var(--text-2); margin-top: 14px;
}

.legal__body a {
  color: var(--text-2); border-bottom: 1px solid var(--line);
  transition: color .2s, border-color .2s;
}
.legal__body a:hover { color: var(--accent); border-color: var(--accent-dim); }

.legal__body strong { color: var(--text); font-weight: 500; }

/* Definition list */
.legal__dl {
  display: grid; grid-template-columns: auto 1fr;
  gap: 8px 24px; margin-top: 16px;
}
.legal__dl dt {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted); padding-top: 2px;
}
.legal__dl dd { font-size: 15px; color: var(--text-2); }
.legal__dl dd a { border-bottom: 1px solid var(--line); }

/* ── Footer ──────────────────────────────────────────────────── */
.legal__footer {
  margin-top: 48px; padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  font-family: var(--mono); font-size: 12px;
}
.legal__footer a {
  color: var(--muted); letter-spacing: 0.04em;
  transition: color .2s;
}
.legal__footer a:hover { color: var(--accent); }

