/* Gemeinsames Layout für Impressum und Datenschutz (Tokens wie die Startseite) */
@font-face {
  font-family: "Instrument Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("fonts/instrument-sans-latin.woff2") format("woff2");
}
:root {
  --bg: #f4f1ea; --surface: #ffffff; --ink: #1a1a1a; --muted: #6d695f; --line: #e2ded2;
  --brand: #3b82f6; --accent-strong: color-mix(in srgb, var(--brand) 60%, #000);
  color-scheme: light;
}
@media (prefers-color-scheme: dark) {
  :root { --bg: #1c1b19; --surface: #262420; --ink: #f4f1ea; --muted: #9a968b; --line: #2e2c27; --accent-strong: color-mix(in srgb, var(--brand) 60%, #fff); color-scheme: dark; }
}
* { box-sizing: border-box; }
body { margin: 0; background: var(--bg); color: var(--ink); font-family: "Instrument Sans", "Roboto", system-ui, sans-serif; font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: var(--accent-strong); }
.wrap { max-width: 760px; margin-inline: auto; padding-inline: clamp(16px, 4vw, 40px); }
header { border-bottom: 1px solid var(--line); }
header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 68px; }
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; color: var(--ink); font-weight: 600; }
.brand span { width: 36px; height: 36px; border-radius: 50%; background: var(--brand); color: #fff; display: grid; place-items: center; font-size: .85rem; font-weight: 500; }
.back { font-size: .9rem; color: var(--muted); text-decoration: none; }
.back:hover { color: var(--ink); }
main { padding-block: clamp(40px, 7vw, 80px); }
h1 { font-size: clamp(2rem, 5vw, 3rem); line-height: 1.05; letter-spacing: -0.04em; font-weight: 600; margin: 0 0 32px; }
h2 { font-size: 1.15rem; font-weight: 600; letter-spacing: -0.01em; margin: 36px 0 8px; }
p, li { color: var(--ink); }
.card { background: var(--surface); border-radius: 22px; padding: clamp(22px, 4vw, 36px); box-shadow: 0 1px 3px rgba(30, 25, 10, .05); }
.card > h2:first-child { margin-top: 0; }
.muted { color: var(--muted); font-size: .9rem; }
footer { border-top: 1px solid var(--line); padding-block: 28px 40px; font-size: .86rem; color: var(--muted); }
footer a { color: var(--muted); }
