/* Gemeinsames Layout für Impressum und Datenschutz – Farbpalette „Tiefsee“ wie index.html */
:root {
  --paper: #eaf1f0;
  --ink: #0e2426;
  --muted: #547072;
  --rule: #cde0df;
  --accent: #467300;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
@media (prefers-color-scheme: dark) {
  :root {
    --paper: #0a1719;
    --ink: #e1eeee;
    --muted: #86a2a3;
    --rule: #1c3336;
    --accent: #c6f432;
  }
}
* { box-sizing: border-box; margin: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  background: var(--paper);
  color: var(--ink);
  font: 16px/1.65 var(--sans);
  padding: 48px 20px 64px;
}
main { max-width: 620px; margin: 0 auto; }
.back { font-size: 14px; color: var(--muted); }
h1 {
  margin: 28px 0 8px;
  font: 400 clamp(36px, 9vw, 48px)/1.05 var(--serif);
  letter-spacing: -0.02em;
  hyphens: manual;
}
h2 {
  margin-top: 36px;
  padding-top: 14px;
  border-top: 1px solid var(--rule);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
p { margin-top: 10px; }
p + p { margin-top: 14px; }
a { color: inherit; text-decoration: underline; text-decoration-color: var(--rule); text-underline-offset: 3px; transition: text-decoration-color .2s; }
a:hover { text-decoration-color: var(--accent); }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 2px; }
.back { text-decoration: none; }
.stand { margin-top: 36px; font-size: 14px; color: var(--muted); }
footer { margin-top: 48px; font-size: 14px; color: var(--muted); }
