/* Rechtsseiten — gleiche Marke wie die Startseite, nur ruhiger gesetzt. */

@font-face { font-family: "Inter"; font-weight: 400; font-display: swap;
  src: url("assets/fonts/inter-400.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-weight: 600; font-display: swap;
  src: url("assets/fonts/inter-600.woff2") format("woff2"); }
@font-face { font-family: "Inter"; font-weight: 800; font-display: swap;
  src: url("assets/fonts/inter-800.woff2") format("woff2"); }

:root {
  --navy: #16283e;
  --text: #16283e;
  --muted: #5f6b76;
  --accent: #d97706;
  --accent-dark: #b45309;
  --accent-deep: #92400e;
  --bg: #ffffff;
  --creme: #f7f5f0;
  --line: rgb(22 40 62 / 0.10);
  --font: "Inter", -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font: 400 1rem/1.7 var(--font);
}

:focus-visible {
  outline: 3px solid var(--accent-dark);
  outline-offset: 2px;
  border-radius: 4px;
}

.legal-nav {
  border-bottom: 1px solid var(--line);
  padding: 1rem 1.5rem;
  background: var(--creme);
}

.legal-nav a {
  font-weight: 600;
  text-decoration: none;
  color: var(--text);
}

.legal-nav a:hover { color: var(--accent-deep); }

.legal-nav .brand-mark {
  height: 1.1em;
  width: auto;
  vertical-align: -0.18em;
  margin-right: 0.4rem;
}

main {
  max-width: 44rem;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}

h1 { font-size: 1.9rem; font-weight: 800; margin: 0 0 1.5rem; }

h2 {
  font-size: 1.15rem;
  font-weight: 800;
  margin: 2.25rem 0 0.5rem;
  padding-top: 0.25rem;
}

h2::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 3px;
  margin-top: 0.5rem;
  background: var(--accent);
  border-radius: 2px;
}

p { margin: 0 0 1rem; }

a { color: var(--accent-dark); }
a:hover { color: var(--accent-deep); }

.hinweis {
  background: #fff8ef;
  border: 1px solid var(--accent);
  border-left-width: 4px;
  padding: .9rem 1.1rem;
  border-radius: .5rem;
  font-size: .95rem;
}

footer {
  border-top: 1px solid var(--line);
  padding: 2rem 1.5rem 3rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

footer a { color: var(--muted); }
footer a:hover { color: var(--accent-deep); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
