/* Gemeinsame Gestaltung für Impressum und Datenschutz */
:root {
  --ground: #eef2f6; --surface: #ffffff; --ink: #0e1a2b; --muted: #536274; --line: #d5dde6;
  --navy: #13233a; --amber: #f2b705; --link: #1d5a96;
  --f-display: "Barlow Condensed", "Arial Narrow", "Helvetica Neue", sans-serif;
  --f-body: "Atkinson Hyperlegible", "Segoe UI", system-ui, sans-serif;
  --f-mono: "IBM Plex Mono", ui-monospace, Menlo, monospace;
}
@media (prefers-color-scheme: dark) {
  :root { --ground: #0a111c; --surface: #111c2c; --ink: #e7edf4; --muted: #9aa9bb; --line: #22324a; --navy: #07101b; --link: #7db6ec; }
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
:root { padding-top: env(safe-area-inset-top, 0px); padding-bottom: env(safe-area-inset-bottom, 0px); }
body { margin: 0; padding-inline: 16px; background: var(--ground); color: var(--ink); font: 17px/1.6 var(--f-body); }
a { color: var(--link); }
a:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; border-radius: 3px; }
.wrap { max-width: 760px; margin-inline: auto; }
header { border-bottom: 1px solid var(--line); margin-inline: -16px; padding-inline: 16px; }
header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 84px; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--ink); text-decoration: none; }
.brand-mark { width: 56px; height: 56px; flex: none; }
.brand-mark .bg { fill: var(--navy); }
.brand-mark .fg { fill: var(--amber); }
.brand-mark .rw { stroke: var(--amber); }
.brand-name { font: 700 32px/1 var(--f-display); text-transform: uppercase; letter-spacing: .02em; }
.back { font-weight: 700; font-size: 15px; white-space: nowrap; }
main { padding-block: 40px 56px; }
h1, h2 { font-family: var(--f-display); text-transform: uppercase; line-height: 1.05; margin: 0; text-wrap: balance; }
h1 { font-size: clamp(38px, 7vw, 56px); margin-bottom: 28px; }
h2 { font-size: 26px; margin: 36px 0 10px; }
p, ul, address { margin: 0 0 12px; max-width: 65ch; }
address { font-style: normal; }
ul { padding-left: 1.2em; }
li { margin-bottom: 4px; }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: 8px; padding: 20px 22px; margin-bottom: 12px; }
.muted { color: var(--muted); }
.stand { font: 500 13px/1.4 var(--f-mono); color: var(--muted); margin-top: 36px; }
footer { border-top: 1px solid var(--line); padding-block: 22px 32px; font-size: 14px; color: var(--muted); display: flex; flex-wrap: wrap; gap: 8px 22px; }
footer a { color: var(--muted); }
@media (max-width: 480px) { .brand-name { font-size: 24px; } .brand-mark { width: 46px; height: 46px; } .back { font-size: 14px; } }
