/* Gemeinsames Layout für die Rechtsseiten (Datenschutz, AGB, Impressum) — Marke wie die Startseite.
   Lokale Schriften (kein externes CDN), Lesespalte, gleiche Farb-/Typo-Palette. */
@font-face { font-family: "Jost"; font-style: normal; font-weight: 300; font-display: swap; src: url("/fonts/jost-latin-300-normal.woff2") format("woff2"); }
@font-face { font-family: "Jost"; font-style: normal; font-weight: 600; font-display: swap; src: url("/fonts/jost-latin-600-normal.woff2") format("woff2"); }
@font-face { font-family: "Cormorant Garamond"; font-style: normal; font-weight: 600; font-display: swap; src: url("/fonts/cormorant-garamond-latin-600-normal.woff2") format("woff2"); }
@font-face { font-family: "Cormorant Garamond"; font-style: normal; font-weight: 700; font-display: swap; src: url("/fonts/cormorant-garamond-latin-700-normal.woff2") format("woff2"); }

:root {
  --hero: #ff8c1a; --orange-50: #fff5e8; --orange-200: #ffd09b; --orange-600: #c56700; --orange-700: #964f06;
  --navy: #0b2545; --navy-50: #ebeff5; --navy-100: #cbd6e4; --navy-200: #9fb1cb; --navy-300: #6e84a8;
  --bg-page: #fcfbf8; --surface: #ffffff; --text: #14202e; --muted: #5b6677;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg-page); color: var(--text);
  font-family: "Jost", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-weight: 300; line-height: 1.6; -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
svg { display: block; }

/* ── Kopf (identisch zur Startseite) ── */
.ic { width: 1em; height: 1em; flex: none; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.wrap { width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: clamp(20px, 5vw, 64px); }
.btn { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 17px; border-radius: 9999px; padding: 14px 26px; transition: filter .15s ease, background .15s ease, color .15s ease; white-space: nowrap; }
.btn-primary { background: var(--hero); color: #fff; }
.btn-primary:hover { filter: brightness(1.05); }
.btn .ic { width: 18px; height: 18px; }
.nav { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.9); backdrop-filter: saturate(160%) blur(8px); border-bottom: 1px solid var(--navy-100); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-block: 14px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: "Jost"; font-weight: 600; font-size: 20px; color: var(--navy); }
.brand .ic { width: 24px; height: 24px; color: var(--hero); }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 16px; color: var(--text); }
.nav-links a:hover { color: var(--orange-600); }
.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-cta .login { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 16px; color: var(--navy); }
.nav-cta .login:hover { color: var(--orange-600); }
.nav-cta .login .ic { width: 20px; height: 20px; }
.nav-cta .btn { font-size: 16px; padding: 11px 22px; }
.nav-burger { display: none; align-items: center; justify-content: center; width: 44px; height: 44px; border: 1px solid var(--navy-100); border-radius: 10px; background: #fff; color: var(--navy); cursor: pointer; }
.nav-burger .ic { width: 24px; height: 24px; }
.nav-backdrop { display: none; position: fixed; inset: 0; z-index: 55; background: rgba(11,37,69,.45); opacity: 0; visibility: hidden; transition: opacity .34s ease, visibility 0s linear .34s; }
.nav-backdrop.open { opacity: 1; visibility: visible; transition: opacity .34s ease, visibility 0s; }
.nav-mobile { display: none; position: fixed; top: 0; right: 0; bottom: 0; z-index: 60; flex-direction: column; width: min(320px, 84vw); background: #fff; padding: 16px 22px calc(28px + env(safe-area-inset-bottom)); box-shadow: -14px 0 44px rgba(11,37,69,.20); overflow-y: auto; transform: translateX(100%); visibility: hidden; transition: transform .34s cubic-bezier(.22,.61,.36,1), visibility 0s linear .34s; }
.nav-mobile.open { transform: translateX(0); visibility: visible; transition: transform .34s cubic-bezier(.22,.61,.36,1), visibility 0s; }
.nav-mobile-top { display: flex; align-items: center; justify-content: flex-end; margin-bottom: 6px; }
.nav-close { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; margin-right: -8px; border: none; border-radius: 8px; background: transparent; color: var(--navy); cursor: pointer; }
.nav-close:hover { background: var(--navy-50); }
.nav-close .ic { width: 24px; height: 24px; }
.nav-mobile a { padding: 14px 2px; font-size: 17px; color: var(--text); border-bottom: 1px solid var(--navy-50); }
.nav-mobile a:hover { color: var(--orange-600); }
.nav-mobile a.login { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--navy); }
.nav-mobile a.login .ic { width: 20px; height: 20px; }
.nav-mobile .btn { margin-top: 16px; justify-content: center; border-bottom: none; }
body.nav-locked { overflow: hidden; }
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: inline-flex; }
  .nav-mobile { display: flex; }
  .nav-backdrop { display: block; }
}

/* ── Inhalt ── */
.lwrap { max-width: 880px; margin-inline: auto; padding: clamp(34px, 6vw, 60px) clamp(20px, 5vw, 40px) 56px; }
.lback { margin-bottom: 16px; font-size: 15px; color: var(--muted); font-weight: 600; }
.lback:hover { color: var(--orange-600); }
.lwrap h1 { font-family: "Cormorant Garamond", Georgia, serif; font-weight: 700; font-size: clamp(38px, 6vw, 52px); line-height: 0.96; letter-spacing: -0.02em; color: var(--navy); }
.lmeta { color: var(--muted); font-size: 15px; margin-top: 12px; }
.lbody h2 { font-family: "Cormorant Garamond", Georgia, serif; font-weight: 600; font-size: clamp(24px, 3.4vw, 31px); line-height: 1.06; letter-spacing: -0.01em; color: var(--navy); margin-top: 42px; }
.lbody h3 { font-family: "Jost"; font-weight: 600; font-size: 18px; color: var(--navy); margin-top: 26px; }
.lbody p { font-size: 17px; color: var(--text); margin-top: 14px; }
.lbody ul { margin-top: 14px; padding-left: 22px; }
.lbody li { font-size: 17px; margin-top: 8px; }
.lbody li::marker { color: var(--navy-200); }
.lbody a[href] { color: var(--orange-700); text-decoration: underline; text-underline-offset: 2px; }
.lbody a[href]:hover { color: var(--orange-600); }
.lbody strong { font-weight: 600; }
/* Offene Platzhalter optisch hervorheben, bis der Betreiber sie ersetzt. */
.lbody mark { background: var(--orange-50); border: 1px dashed var(--orange-200); border-radius: 5px; padding: 0 5px; color: var(--orange-700); font-weight: 600; }

/* ── Fuß (identisch zur Startseite) ── */
footer { background: #fff; border-top: 1px solid var(--navy-100); padding-block: 40px; }
.foot-top { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.foot-brand { display: inline-flex; align-items: center; gap: 10px; }
.foot-mark { width: 28px; height: 28px; border-radius: 7px; background: var(--hero); display: flex; align-items: center; justify-content: center; color: #fff; }
.foot-mark .ic { width: 18px; height: 18px; }
.foot-brand span { font-family: "Cormorant Garamond"; font-weight: 600; font-size: 26px; color: var(--navy); letter-spacing: -0.01em; }
.foot-links { display: flex; flex-wrap: wrap; gap: 28px; }
.foot-links a { font-weight: 600; font-size: 16px; color: var(--muted); }
.foot-links a:hover { color: var(--orange-600); }
.foot-rule { height: 1px; background: var(--navy-100); margin-block: 24px; }
.foot-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.foot-bottom, .foot-note { font-size: 15px; color: var(--navy-300); }
.foot-note { display: flex; gap: 14px; flex-wrap: wrap; color: var(--muted); }
.foot-note .sep { color: var(--navy-200); }
.foot-note a { color: var(--muted); font-weight: 600; }
.foot-note a:hover { color: var(--orange-600); }
@media (max-width: 560px) {
  .foot-top, .foot-bottom { flex-direction: column; align-items: flex-start; }
}
