/* Stilvorlage für Impressum und Datenschutzerklärung.
 *
 * Warum eine eigene Datei und nicht die Tokens aus index.html: die
 * Landingpage trägt ihr CSS bewusst inline, damit sie in einem Zug
 * ankommt. Die beiden Rechtsseiten sind Fließtext, teilen sich eine
 * Datei und dürfen dafür einen zweiten Zugriff kosten.
 *
 * ACHTUNG: Die Tokens hier sind aus index.html gespiegelt. Wer dort
 * Farben ändert, muss hier nachziehen — es gibt keinen Mechanismus,
 * der das erzwingt.
 */

:root {
  color-scheme: light dark;

  --font-sans: 'SF Pro Text', 'SF Pro Display', 'Helvetica Neue', 'Segoe UI', Roboto, Inter, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, monospace;

  --surface:        #FFFFFF;
  --surface-sunken: #F5F5F2;
  --border:         #E8E8E4;

  --text:        #1A1A1A;
  --text-muted:  #444444;
  --text-subtle: #666666;

  --accent:         #E6AD02;
  --accent-ink:     #8A6700;
  --accent-surface: #FDF4DC;
  --accent-border:  #EFD98C;

  --petrol:         #0E6E68;
  --petrol-surface: #E6F1F0;
  --petrol-border:  #A7CFCB;

  --buehne:       #141413;
  --buehne-kante: #333330;
  --buehne-text:  #F5F5F2;

  --radius-flaeche:   10px;
  --radius-element:   6px;
  --radius-abzeichen: 3px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --surface:        #1A1A1A;
    --surface-sunken: #141413;
    --border:         #333330;

    --text:        #F5F5F2;
    --text-muted:  #B5B5AF;
    --text-subtle: #8E8E88;

    --accent-ink:     #E6AD02;
    --accent-surface: #332905;
    --accent-border:  #5C4A0A;

    --petrol:         #5FC7C0;
    --petrol-surface: #0E2A28;
    --petrol-border:  #1E514D;
  }
}

*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}

.bahn { width: 100%; max-width: 780px; margin: 0 auto; padding: 0 24px; }

/* Kopfzeile — dieselbe Marke, dieselbe dunkle Leiste wie auf der
   Landingpage, damit man merkt, dass man dasselbe Haus nicht verlässt. */
header {
  background: var(--buehne);
  border-bottom: 1px solid var(--buehne-kante);
  color: var(--buehne-text);
}
.kopf { display: flex; align-items: center; gap: 10px; min-height: 64px; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.wortmarke {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 1.125rem; letter-spacing: -0.02em;
  text-decoration: none; color: inherit;
}
.wortmarke svg { width: 26px; height: 26px; flex: none; }
.kopf-zurueck {
  margin-left: auto; font-size: 0.875rem; color: var(--buehne-text);
  text-decoration: none; opacity: 0.75;
}
.kopf-zurueck:hover { opacity: 1; text-decoration: underline; }

main { padding: clamp(48px, 8vw, 88px) 0 clamp(56px, 9vw, 104px); }

h1 {
  font-size: clamp(2rem, 5vw, 3rem); font-weight: 800;
  letter-spacing: -0.035em; line-height: 1.05;
  margin: 0 0 12px;
}
h2 {
  font-size: 1.25rem; font-weight: 700; letter-spacing: -0.015em;
  margin: 44px 0 12px; padding-top: 14px;
  border-top: 2px solid var(--petrol); color: var(--petrol);
}
h3 { font-size: 1rem; font-weight: 700; margin: 26px 0 8px; }
p, li { margin: 0 0 12px; }
ul { padding-left: 20px; margin: 0 0 16px; }
li { margin-bottom: 6px; }

.stand {
  font-family: var(--font-mono); font-size: 0.75rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-subtle); margin-bottom: 36px;
}

a { color: var(--text); }
a:hover { color: var(--petrol); }

/* Definitionsliste für die Pflichtangaben — Begriff links, Wert rechts. */
.angaben { margin: 0; display: grid; gap: 0; }
@media (min-width: 620px) {
  .angaben { grid-template-columns: minmax(170px, 220px) 1fr; column-gap: 28px; }
}
.angaben dt {
  font-family: var(--font-mono); font-size: 0.75rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-subtle); padding-top: 12px;
  border-top: 1px solid var(--border);
}
.angaben dd {
  margin: 0; padding-bottom: 14px;
}
@media (min-width: 620px) {
  .angaben dd { padding-top: 12px; border-top: 1px solid var(--border); }
}

/* ── Die Lücken ───────────────────────────────────────────────
   Alles, was nur der Anbieter selbst weiß, steht als solche Marke da
   und nicht als erfundener Wert. Gold, weil es genau das heißt, was
   Gold auf dieser Seite überall heißt: hier ist ein Mensch nötig.
   Die Marke ist absichtlich laut — eine Rechtsseite mit Platzhaltern
   darf man nicht versehentlich veröffentlichen.               */
.luecke {
  display: inline-block;
  background: var(--accent-surface);
  border: 1px dashed var(--accent-border);
  border-radius: var(--radius-abzeichen);
  color: var(--accent-ink);
  font-family: var(--font-mono); font-size: 0.8125rem;
  padding: 2px 8px;
}

.hinweis {
  background: var(--accent-surface);
  border: 1px solid var(--accent-border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-flaeche);
  padding: 20px 22px;
  margin: 0 0 40px;
  color: var(--text);
}
.hinweis p:last-child { margin-bottom: 0; }
.hinweis strong { display: block; margin-bottom: 6px; }

.merk {
  background: var(--petrol-surface);
  border: 1px solid var(--petrol-border);
  border-left: 4px solid var(--petrol);
  border-radius: var(--radius-flaeche);
  padding: 18px 20px;
  margin: 0 0 20px;
}
.merk p:last-child { margin-bottom: 0; }

footer {
  border-top: 1px solid var(--border);
  background: var(--surface-sunken);
  padding: 32px 0;
  font-size: 0.875rem;
  color: var(--text-subtle);
}
footer .bahn { display: flex; flex-wrap: wrap; gap: 8px 20px; }
footer a { color: var(--text-muted); text-decoration: none; }
footer a:hover { color: var(--text); text-decoration: underline; }

:focus-visible { outline: 2px solid var(--petrol); outline-offset: 2px; }
