:root {
  --bg: #FAF7F2;
  --bg-card: #FFFFFF;
  --bg-warm: #F2EDE3;
  --ink: #1C1B19;
  --ink-soft: #54524E;
  --ink-muted: #87847D;
  --accent: #1E4A7A;
  --accent-dark: #143659;
  --accent-ink: #FFFFFF;
  --accent-soft: #E8F0F9;
  --success: #2A7B3F;
  --success-soft: #E8F3EB;
  --warn: #9A6B1E;
  --warn-soft: #FDF4E1;
  --danger: #A32727;
  --danger-soft: #FBE9E9;
  --border: #E5DFD3;
  --border-strong: #D4CBB8;
  --serif: 'Lora', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: 760px; margin: 0 auto; padding: 0 28px; }

header.site-nav {
  padding: 14px 0;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1160px;
  position: relative;
}
.logo {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--serif); font-weight: 600; font-size: 20px;
  letter-spacing: -0.01em; color: var(--ink); text-decoration: none;
}
.logo-mark { width: 30px; height: 30px; color: var(--accent); }
.logo .dash { color: var(--accent); }
.nav-links { display: flex; gap: 28px; font-size: 14px; position: absolute; left: 50%; transform: translateX(-50%); }
.nav-links a { color: var(--ink-soft); text-decoration: none; font-weight: 500; }
.nav-links a:hover { color: var(--accent); }
.nav-cta {
  background: var(--accent); color: var(--accent-ink);
  padding: 10px 18px; border-radius: 8px; text-decoration: none;
  font-size: 14px; font-weight: 600; white-space: nowrap;
}
.nav-cta:hover { background: var(--accent-dark); }
@media (max-width: 640px) {
  .nav-links { display: none; }
  .logo { font-size: 18px; }
  .nav-cta { padding: 9px 14px; font-size: 13px; }
}

article.ratgeber { padding: 56px 0 24px; }
article.ratgeber .eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 18px;
}
article.ratgeber h1 {
  font-family: var(--serif); font-size: 42px; font-weight: 500;
  line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 20px;
}
article.ratgeber h2 {
  font-family: var(--serif); font-size: 28px; font-weight: 500;
  line-height: 1.25; margin: 48px 0 16px; letter-spacing: -0.01em;
}
article.ratgeber h3 {
  font-family: var(--sans); font-size: 19px; font-weight: 600;
  margin: 28px 0 10px;
}
article.ratgeber p { color: var(--ink-soft); margin-bottom: 16px; }
article.ratgeber p.lead { font-size: 20px; color: var(--ink); line-height: 1.5; margin-bottom: 28px; }
article.ratgeber strong { color: var(--ink); font-weight: 600; }
article.ratgeber em { font-style: italic; color: var(--ink); }
article.ratgeber ul, article.ratgeber ol { margin: 12px 0 24px 22px; color: var(--ink-soft); }
article.ratgeber li { margin-bottom: 10px; }
article.ratgeber blockquote {
  border-left: 3px solid var(--accent);
  background: var(--accent-soft);
  padding: 16px 22px;
  margin: 24px 0;
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink);
  border-radius: 0 8px 8px 0;
}
article.ratgeber .meta-row {
  display: flex; gap: 16px; font-size: 13px; color: var(--ink-muted);
  padding-bottom: 24px; border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
article.ratgeber .example-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 22px;
  margin: 20px 0 24px;
}
article.ratgeber .example-box .tag {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 4px; margin-bottom: 10px;
}
article.ratgeber .example-box.good .tag { background: var(--success-soft); color: var(--success); }
article.ratgeber .example-box.bad .tag { background: var(--danger-soft); color: var(--danger); }
article.ratgeber .example-box.warn .tag { background: var(--warn-soft); color: var(--warn); }
article.ratgeber .example-box p { margin-bottom: 8px; color: var(--ink); }
article.ratgeber .example-box p.label { font-size: 13px; color: var(--ink-muted); margin-bottom: 4px; }

section.cta-section {
  background: var(--bg-warm);
  padding: 56px 0;
  margin: 48px 0 0;
}
section.cta-section h2 {
  font-family: var(--serif); font-size: 30px; font-weight: 500;
  text-align: center; margin-bottom: 14px; letter-spacing: -0.01em;
}
section.cta-section p.lead {
  text-align: center; font-size: 18px; color: var(--ink-soft);
  margin-bottom: 28px; max-width: 560px; margin-left: auto; margin-right: auto;
}
section.cta-section .cta-btn-wrap { text-align: center; }
section.cta-section .cta-btn {
  display: inline-block; background: var(--accent); color: var(--accent-ink);
  padding: 16px 32px; border-radius: 10px; text-decoration: none;
  font-weight: 600; font-size: 16px; transition: background 0.15s;
}
section.cta-section .cta-btn:hover { background: var(--accent-dark); }
section.cta-section .cta-micro {
  text-align: center; font-size: 13px; color: var(--ink-muted); margin-top: 14px;
}

section.faq { padding: 48px 0; }
section.faq h2 { font-family: var(--serif); font-size: 28px; font-weight: 500; margin-bottom: 20px; }
section.faq details {
  border-bottom: 1px solid var(--border); padding: 18px 0; cursor: pointer;
}
section.faq summary {
  font-family: var(--sans); font-weight: 600; font-size: 17px;
  color: var(--ink); list-style: none; position: relative; padding-right: 28px;
}
section.faq summary::after {
  content: '+'; position: absolute; right: 0; top: 0;
  font-size: 22px; color: var(--accent); font-weight: 400;
}
section.faq details[open] summary::after { content: '−'; }
section.faq details p { margin-top: 10px; color: var(--ink-soft); }

section.related { padding: 40px 0 24px; border-top: 1px solid var(--border); }
section.related h3 { font-family: var(--serif); font-size: 20px; font-weight: 500; margin-bottom: 18px; }
section.related ul { list-style: none; padding: 0; }
section.related li { margin-bottom: 10px; }
section.related a { color: var(--accent); text-decoration: none; font-weight: 500; }
section.related a:hover { text-decoration: underline; }

footer.site-footer {
  background: var(--bg-warm);
  padding: 36px 0;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 13px;
  color: var(--ink-muted);
}
footer.site-footer p { margin-bottom: 8px; color: var(--ink-muted); font-size: 13px; }
footer.site-footer a { color: var(--ink-soft); text-decoration: none; }
footer.site-footer a:hover { color: var(--accent); }
footer.site-footer .disclaimer {
  max-width: 620px; margin: 16px auto 0; font-size: 12px;
  line-height: 1.5; color: var(--ink-muted);
}

@media (max-width: 640px) {
  article.ratgeber h1 { font-size: 32px; }
  article.ratgeber h2 { font-size: 24px; }
  section.cta-section h2 { font-size: 24px; }
}
