/* Sprachkompass – Advertorial Layout
   Handgeschrieben, kein Framework, kein externer Font-Request. */

:root {
  --ink: #1f2430;
  --ink-soft: #4a5060;
  --paper: #faf7f2;
  --paper-card: #ffffff;
  --line: #e6e0d6;
  --navy: #16233f;
  --navy-2: #223a63;
  --gold: #c98a2c;
  --gold-dark: #a06f21;
  --sand: #f1e9da;
  --success: #2f6b4f;
  --max: 760px;
  --maxwide: 980px;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }

a { color: inherit; }

/* ---------- Anzeige-Leiste ---------- */
.ad-bar {
  background: var(--navy);
  color: #cfd6e4;
  font-size: 12.5px;
  letter-spacing: .02em;
  text-align: center;
  padding: 8px 16px;
}
.ad-bar strong { color: #fff; font-weight: 600; }
.ad-bar a { color: #e7c374; text-decoration: underline; }

/* ---------- Header ---------- */
.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 18px 20px;
}
.site-header-inner {
  max-width: var(--maxwide);
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.brand {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: .01em;
  text-decoration: none;
  color: var(--navy);
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}
.brand .dot { color: var(--gold); }
.brand-sub {
  font-size: 12.5px;
  color: var(--ink-soft);
  max-width: 360px;
}

/* ---------- Artikel-Rahmen ---------- */
main { padding: 0 20px; }
.article {
  max-width: var(--max);
  margin: 0 auto;
}

.kicker {
  max-width: var(--max);
  margin: 34px auto 10px;
  padding: 0 20px;
  text-transform: uppercase;
  font-size: 12.5px;
  letter-spacing: .08em;
  color: var(--gold-dark);
  font-weight: 700;
}

h1.headline {
  max-width: var(--max);
  margin: 0 auto 18px;
  padding: 0 20px;
  font-family: var(--serif);
  font-size: 38px;
  line-height: 1.2;
  color: var(--navy);
  font-weight: 700;
}
@media (min-width: 640px) {
  h1.headline { font-size: 44px; }
}

.byline {
  max-width: var(--max);
  margin: 0 auto 22px;
  padding: 0 20px;
  font-size: 13.5px;
  color: var(--ink-soft);
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.hero-figure {
  margin: 0 0 8px;
}
.hero-figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 2px;
}
figcaption, .cap {
  max-width: var(--max);
  margin: 8px auto 30px;
  padding: 0 20px;
  font-size: 13px;
  color: #8a8478;
  font-style: italic;
}

.lead {
  font-size: 21px;
  line-height: 1.55;
  color: var(--ink);
  font-weight: 400;
  margin-bottom: 22px;
}
.lead strong { color: var(--navy); }

.article p { margin: 0 0 20px; }
.article h2 {
  font-family: var(--serif);
  color: var(--navy);
  font-size: 26px;
  margin: 42px 0 16px;
  line-height: 1.3;
}
.article h3 {
  font-size: 18px;
  color: var(--navy);
  margin: 30px 0 10px;
}

/* ---------- Pull-Quote ---------- */
blockquote.pull {
  margin: 30px 0;
  padding: 4px 0 4px 22px;
  border-left: 3px solid var(--gold);
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.5;
  color: var(--navy);
  font-style: italic;
}
blockquote.pull cite {
  display: block;
  margin-top: 10px;
  font-family: var(--sans);
  font-style: normal;
  font-size: 13.5px;
  color: var(--ink-soft);
}

/* ---------- Statistik-Karten ---------- */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 16px 0 34px;
}
@media (max-width: 560px) {
  .stat-grid { grid-template-columns: 1fr; }
}
.stat-card {
  background: var(--paper-card);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 16px;
  text-align: center;
}
.stat-num {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 700;
  color: var(--navy);
  display: block;
}
.stat-label {
  font-size: 12.5px;
  color: var(--ink-soft);
  margin-top: 6px;
  display: block;
}
.stat-source {
  text-align: center;
  font-size: 11.5px;
  color: #9a9488;
  margin: -22px 0 34px;
}

/* ---------- CTA-Buttons ---------- */
.cta-wrap {
  margin: 30px 0;
  text-align: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: #fff !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 999px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  box-shadow: 0 6px 16px rgba(22, 35, 63, 0.22);
}
.btn:hover { background: var(--navy-2); transform: translateY(-1px); }
.btn .arrow { transition: transform .15s ease; }
.btn:hover .arrow { transform: translateX(3px); }
.btn-gold { background: var(--gold); box-shadow: 0 6px 16px rgba(201,138,44,.28); }
.btn-gold:hover { background: var(--gold-dark); }
.cta-note {
  margin-top: 10px;
  font-size: 12.5px;
  color: var(--ink-soft);
}

/* ---------- Empfehlungsbox ---------- */
.reco-box {
  background: var(--sand);
  border: 1px solid #e3d5b6;
  border-radius: 10px;
  padding: 24px 24px 26px;
  margin: 34px 0;
}
.reco-box .reco-kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 8px;
}
.reco-box h3 {
  font-family: var(--serif);
  font-size: 22px;
  margin: 0 0 8px;
  color: var(--navy);
}
.reco-box p { margin-bottom: 16px; color: var(--ink); }
.reco-box .cta-wrap { text-align: center; margin: 0; }

/* ---------- Schritte-Guide ---------- */
.guide {
  margin: 10px 0 20px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.step {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  align-items: center;
  background: var(--paper-card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px;
}
@media (min-width: 560px) {
  .step { grid-template-columns: 150px 1fr; padding: 18px 20px; }
}
.step-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
}
.step-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.step-num {
  position: absolute;
  top: 6px; left: 6px;
  background: var(--navy);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.step-body h3 { margin: 0 0 6px; font-size: 17px; }
.step-body p { margin: 0; font-size: 15px; color: var(--ink-soft); }

/* ---------- Fuer-dich / eher-nicht ---------- */
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 20px 0 30px;
}
@media (max-width: 560px) {
  .fit-grid { grid-template-columns: 1fr; }
}
.fit-card {
  border-radius: 10px;
  padding: 18px 18px;
  border: 1px solid var(--line);
  background: var(--paper-card);
}
.fit-card.good { border-color: #cfe3d6; }
.fit-card.bad { border-color: #e6d6cf; }
.fit-card h4 {
  margin: 0 0 10px;
  font-size: 14.5px;
  color: var(--navy);
}
.fit-card ul { margin: 0; padding-left: 18px; font-size: 14.5px; color: var(--ink-soft); }
.fit-card li { margin-bottom: 6px; }

/* ---------- Leserstimmen ---------- */
.reviews {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 10px 0 30px;
}
.review {
  background: var(--paper-card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px 20px;
}
.review p { margin: 0 0 8px; font-size: 15px; color: var(--ink); }
.review cite {
  font-size: 13px;
  color: var(--ink-soft);
  font-style: normal;
}

/* ---------- Disclosure ---------- */
.disclosure {
  max-width: var(--max);
  margin: 46px auto 10px;
  padding: 18px 20px;
  background: #f1efe9;
  border-radius: 10px;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.disclosure strong { color: var(--ink); }

/* ---------- Footer ---------- */
footer.site-footer {
  margin-top: 50px;
  border-top: 1px solid var(--line);
  padding: 26px 20px 40px;
  text-align: center;
  font-size: 13px;
  color: var(--ink-soft);
}
footer.site-footer .flinks {
  margin-bottom: 10px;
}
footer.site-footer a {
  text-decoration: none;
  color: var(--ink-soft);
  margin: 0 10px;
}
footer.site-footer a:hover { color: var(--navy); text-decoration: underline; }

/* ---------- Legal pages ---------- */
.legal-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 40px 20px 60px;
}
.legal-wrap h1 {
  font-family: var(--serif);
  color: var(--navy);
  font-size: 32px;
  margin-bottom: 6px;
}
.legal-wrap .updated {
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 30px;
}
.legal-wrap h2 {
  font-size: 19px;
  color: var(--navy);
  margin: 30px 0 10px;
}
.legal-wrap p, .legal-wrap li { color: var(--ink); font-size: 15.5px; }
.legal-wrap ul { padding-left: 20px; }
.legal-wrap a.back {
  display: inline-block;
  margin-top: 6px;
  font-size: 14px;
  color: var(--navy-2);
  text-decoration: underline;
}
