/* Stil für die Rechtsseiten (Impressum, Datenschutz) — abgeleitet vom Hauptdesign */
:root {
  --bg: #f7f6f2;
  --bg-elev: #ecebe4;
  --ink: #111114;
  --ink-soft: #3a3a3f;
  --ink-mute: #7a7a80;
  --rule: #d9d6cc;
  --accent: #1c3a5e;
  --font-display: "Newsreader", "Iowan Old Style", Georgia, serif;
  --font-body: "Manrope", system-ui, -apple-system, sans-serif;
  --maxw: 760px;
  --gutter: clamp(1.25rem, 3vw, 2.5rem);
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #121316; --bg-elev: #1b1d22; --ink: #ecebe4; --ink-soft: #b8b8b2;
    --ink-mute: #7a7a80; --rule: #2a2c32; --accent: #93b3d8;
  }
}
*, *::before, *::after { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: clamp(15px, 0.9vw + 0.6rem, 16.5px);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }

.legal-nav {
  position: sticky; top: 0; z-index: 10;
  border-bottom: 1px solid var(--rule);
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  backdrop-filter: saturate(140%) blur(10px);
}
.legal-nav .container {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 0.9rem; padding-bottom: 0.9rem;
}
.brand {
  font-family: var(--font-display); font-weight: 500; font-size: 1.1rem;
  letter-spacing: -0.01em; color: var(--ink); text-decoration: none;
}
.back {
  font-size: 0.9rem; color: var(--ink-soft); text-decoration: none;
  border-bottom: 1px solid var(--rule); transition: color .2s ease, border-color .2s ease;
}
.back:hover { color: var(--accent); border-color: var(--accent); }

main { padding: clamp(2.5rem, 6vw, 4.5rem) 0 3.5rem; }
h1 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.9rem, 4vw, 2.6rem); letter-spacing: -0.01em; margin: 0 0 1.5rem;
}
h2 { font-family: var(--font-display); font-weight: 500; font-size: 1.2rem; margin: 2.2rem 0 0.5rem; }
p, ul { margin: 0 0 1rem; }
ul { padding-left: 1.2rem; }
li { margin-bottom: 0.3rem; }
a { color: var(--accent); }
.muted { color: var(--ink-mute); font-size: 0.9rem; }
.note {
  background: var(--bg-elev); border: 1px solid var(--rule);
  border-radius: 10px; padding: 0.9rem 1.1rem; font-size: 0.92rem; color: var(--ink-soft);
}

footer { border-top: 1px solid var(--rule); padding: 1.5rem 0; margin-top: 2rem; }
footer .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; font-size: 0.85rem; color: var(--ink-mute); }
footer a { color: var(--ink-mute); text-decoration: none; border-bottom: 1px solid var(--rule); }
footer a:hover { color: var(--accent); border-color: var(--accent); }
