/* =========================================================================
   ManagementFolio – Website Design-System (gemeinsames Stylesheet)
   -------------------------------------------------------------------------
   Marken-Design: Navy #123A4B / Gold #B0803A, Georgia (Display) + Segoe UI
   (Body). Bewusst OHNE externe Fonts/CDN/Tracking → schnell + DSGVO-sauber,
   kein Cookie-Banner nötig. Wird von jeder Seite per <link> eingebunden.
   ========================================================================= */

:root {
  /* Markenfarben */
  --navy:       #123A4B;
  --navy-700:   #0d2c39;
  --navy-300:   #2f6076;
  --gold:       #B0803A;
  --gold-light: #cf9f4f;
  --ink:        #39444B;
  --muted:      #7F7F7F;
  --hair:       #D7DCE0;
  --panel:      #F6F8F9;
  --cream:      #F2ECE0;
  --white:      #ffffff;
  --good:       #2c7a4b;

  /* Typografie */
  --font-display: Georgia, "Times New Roman", serif;
  --font-body: "Open Sans", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;

  /* Maße */
  --wrap: 1080px;
  --radius: 8px;
  --radius-sm: 5px;
  --shadow: 0 1px 2px rgba(18,58,75,.06), 0 8px 30px rgba(18,58,75,.08);
  --shadow-soft: 0 1px 3px rgba(18,58,75,.10);
}

/* ---------- Reset / Base ------------------------------------------------ */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); }

h1, h2, h3 { font-family: var(--font-display); color: var(--navy); line-height: 1.15; margin: 0; }
h1 { font-size: clamp(2rem, 4.4vw, 3.1rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 700; }
p  { margin: 0 0 1rem; }
strong { color: var(--navy); }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-family: var(--font-body);
  font-size: .78rem; letter-spacing: 2.2px; text-transform: uppercase;
  font-weight: 700; color: var(--gold); margin: 0 0 .5rem;
}
.lead { font-size: 1.18rem; color: var(--ink); }
.muted { color: var(--muted); }
.center { text-align: center; }

/* ---------- Buttons ----------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--font-body); font-size: 1.02rem; font-weight: 700;
  line-height: 1; text-decoration: none; cursor: pointer;
  padding: 15px 26px; border-radius: var(--radius-sm);
  border: 2px solid transparent; transition: transform .12s ease, background .15s ease, box-shadow .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--gold); color: #fff; box-shadow: 0 4px 14px rgba(176,128,58,.35); }
.btn-primary:hover { background: var(--gold-light); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--hair); }
.btn-ghost:hover { border-color: var(--navy); }
.btn-on-navy { background: transparent; color: var(--cream); border-color: rgba(242,236,224,.45); }
.btn-on-navy:hover { border-color: var(--cream); background: rgba(255,255,255,.06); }

/* Übergangszustand bis die Payhip-Links stehen: Button sichtbar, aber inaktiv.
   Entfällt zusammen mit den .is-soon-Elementen im HTML. */
.btn.is-soon { background: #DCD6CB; color: #6B6459; box-shadow: none; cursor: default; }
.btn.is-soon:hover { background: #DCD6CB; }
.btn.is-soon:active { transform: none; }
.btn-soon-note,
.signup-card .btn-soon-note { margin-top: 12px; margin-bottom: 0; font-size: .9rem; line-height: 1.5; color: var(--muted); text-align: center; }

/* ---------- Header / Navigation ---------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.94); backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--hair);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; min-height: 68px; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.brand .signet { width: 30px; height: 30px; flex: 0 0 auto; }
.brand .wordmark { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: var(--navy); letter-spacing: .1px; }
.brand .wordmark .ul { border-bottom: 2px solid var(--gold); padding-bottom: 1px; }
.nav { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.nav a {
  font-size: .98rem; font-weight: 600; color: var(--ink); text-decoration: none;
  padding: 8px 12px; border-radius: 6px;
}
.nav a:hover { color: var(--navy); background: var(--panel); }
.nav a.cta { color: #fff; background: var(--gold); }
.nav a.cta:hover { background: var(--gold-light); }

/* ---------- Hero -------------------------------------------------------- */
.hero { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-700) 100%); color: var(--cream); overflow: hidden; }
.hero .wrap { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; padding-top: 68px; padding-bottom: 68px; }
.hero .eyebrow { color: var(--gold-light); }
.hero h1 { color: #fff; }
.hero h1 .accent { color: var(--gold-light); }
.hero p { color: rgba(242,236,224,.86); font-size: 1.2rem; max-width: 33em; }
.hero .cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.hero .microcopy { margin-top: 16px; font-size: .9rem; color: rgba(242,236,224,.62); }

/* OnePager-Mockup (drei gefächerte "druckfertige" Karten, reines CSS) */
.mockup { position: relative; height: 340px; }
.mockup .sheet {
  position: absolute; top: 50%; left: 50%; width: 240px; height: 300px;
  background: #fff; border-radius: 6px; box-shadow: 0 18px 44px rgba(0,0,0,.34);
  padding: 22px 20px; transform-origin: center;
}
.mockup .sheet-3 { transform: translate(-50%,-50%) rotate(-9deg) translateX(-46px); opacity: .9; }
.mockup .sheet-2 { transform: translate(-50%,-50%) rotate(5deg)  translateX(40px); opacity: .95; }
.mockup .sheet-1 { transform: translate(-50%,-50%) rotate(-2deg); }
.mockup .m-title { font-family: var(--font-display); font-size: .82rem; font-weight: 700; color: var(--navy); }
.mockup .m-rule { height: 3px; width: 46px; background: var(--gold); margin: 7px 0 12px; border-radius: 2px; }
.mockup .m-line { height: 6px; border-radius: 3px; background: #e4e8eb; margin: 7px 0; }
.mockup .m-line.short { width: 62%; }
.mockup .m-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 14px; }
.mockup .m-box { height: 58px; border: 1px solid var(--hair); border-radius: 4px; border-top: 2px solid var(--navy); }

/* ---------- Sections ---------------------------------------------------- */
.section { padding: 68px 0; }
.section-alt { background: var(--panel); border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); }
.section-head { max-width: 42em; margin: 0 auto 42px; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.1rem; margin-top: .5rem; }

/* Feature-Karten */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: #fff; border: 1px solid var(--hair); border-top: 3px solid var(--gold);
  border-radius: var(--radius); padding: 26px 24px; box-shadow: var(--shadow-soft);
}
.card .ic { width: 34px; height: 34px; color: var(--navy); margin-bottom: 12px; }
.card h3 { margin-bottom: 6px; }
.card p { margin: 0; font-size: .98rem; color: var(--ink); }

/* ---------- Leseprobe / Signup ----------------------------------------- */
.leseprobe { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-700) 100%); color: var(--cream); }
.leseprobe .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; padding: 64px 24px; }
.leseprobe .eyebrow { color: var(--gold-light); }
.leseprobe h2 { color: #fff; }
.leseprobe p { color: rgba(242,236,224,.85); }
.leseprobe ul { list-style: none; padding: 0; margin: 18px 0 0; }
.leseprobe li { position: relative; padding-left: 28px; margin: 10px 0; color: rgba(242,236,224,.92); }
.leseprobe li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--gold-light); font-weight: 700; }

.signup-card { background: #fff; border-radius: var(--radius); padding: 30px 28px; box-shadow: 0 20px 50px rgba(0,0,0,.30); color: var(--ink); }
.signup-card h3 { font-size: 1.28rem; margin-bottom: 6px; }
.signup-card .sub { font-size: .96rem; color: var(--muted); margin-bottom: 18px; }
.signup-card .btn-download { width: 100%; padding: 15px; }

/* ---------- Zielgruppe -------------------------------------------------- */
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 8px; }
.audience-grid .who { background: #fff; border: 1px solid var(--hair); border-radius: var(--radius); padding: 22px; }
.audience-grid .who h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 6px; }
.audience-grid .who p { font-size: .95rem; margin: 0; color: var(--ink); }

/* ---------- Paket-Ausblick --------------------------------------------- */
.tiers { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 760px; margin: 0 auto; }
.tier { background: #fff; border: 1px solid var(--hair); border-radius: var(--radius); padding: 28px 26px; text-align: center; box-shadow: var(--shadow-soft); display: flex; flex-direction: column; }
.tier .name { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--navy); }
.tier .price { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; color: var(--navy); margin: 6px 0 2px; }
.tier .price small { font-size: 1rem; color: var(--muted); font-weight: 400; }
.tier .desc { font-size: .95rem; color: var(--ink); flex-grow: 1; }
.tier .soon { display: inline-block; margin-top: 8px; font-size: .78rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); }
.tier .btn { margin-top: 18px; width: 100%; }

/* Paket-Gruppen (Hauptpaket + Zusatzpaket „Führen mit KI") */
.pkg { margin-top: 52px; }
.pkg:first-of-type { margin-top: 0; }
.pkg-head { text-align: center; max-width: 44em; margin: 0 auto 24px; }
.pkg-head h3 { font-size: 1.45rem; }
.pkg-head p { color: var(--muted); font-size: 1rem; margin: 6px 0 0; }
.badge-soon {
  display: inline-block; vertical-align: 4px; margin-left: 10px;
  font-family: var(--font-body); font-size: .7rem; font-weight: 700;
  letter-spacing: 1.4px; text-transform: uppercase; color: var(--gold);
  border: 1.5px solid var(--gold); border-radius: 999px; padding: 3px 11px;
}

/* ---------- Footer ------------------------------------------------------ */
.site-footer { background: var(--navy); color: rgba(242,236,224,.72); padding: 46px 0 30px; }
.site-footer .cols { display: flex; justify-content: space-between; align-items: flex-start; gap: 32px; flex-wrap: wrap; }
.site-footer .fbrand { max-width: 340px; }
.fbrand-brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; margin-bottom: 12px; }
.fbrand-brand .signet { width: 30px; height: 30px; flex: 0 0 auto; }
.fbrand-brand .wordmark { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: var(--cream); letter-spacing: .1px; }
.fbrand-brand .wordmark .ul { border-bottom: 2px solid var(--gold-light); padding-bottom: 1px; }
.site-footer .fbrand p { font-size: .92rem; color: rgba(242,236,224,.6); margin: 0; }
.site-footer nav { display: flex; gap: 26px; flex-wrap: wrap; }
.site-footer nav a { color: rgba(242,236,224,.8); text-decoration: none; font-size: .95rem; }
.site-footer nav a:hover { color: #fff; text-decoration: underline; }
.site-footer .legal { margin-top: 30px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12); font-size: .84rem; color: rgba(242,236,224,.5); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

/* ---------- Inhaltsseiten (Leseprobe-Vorschau, Impressum, Datenschutz) -- */
.page-head { background: var(--panel); border-bottom: 1px solid var(--hair); padding: 46px 0 38px; }
.page-head .eyebrow { color: var(--gold); }
.page-head h1 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); }
.page-head p { color: var(--muted); margin-top: .5rem; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }

.prose { max-width: 760px; margin: 0 auto; padding: 50px 24px 64px; }
.prose h2 { font-size: 1.35rem; margin: 32px 0 10px; padding-top: 18px; border-top: 1px solid var(--hair); }
.prose h2:first-of-type { border-top: 0; padding-top: 0; margin-top: 0; }
.prose h3 { font-size: 1.08rem; margin: 20px 0 6px; }
.prose p { margin: 0 0 12px; }
.prose ul { padding-left: 22px; margin: 8px 0 14px; }
.prose li { margin: 5px 0; }
.prose li::marker { color: var(--gold); }
.prose dl { margin: 6px 0 14px; }
.prose dt { font-weight: 700; color: var(--navy); margin-top: 12px; }
.prose dd { margin: 2px 0 0; }
.prose .updated { color: var(--muted); font-size: .92rem; margin-bottom: 18px; }
.prose address { font-style: normal; }
.todo { background: #fff6e2; border: 1px dashed var(--gold); border-radius: 5px; padding: 1px 7px; font-size: .95em; color: #8a6a1f; font-weight: 600; }
.draft-banner { background: #fff6e2; border: 1px dashed var(--gold); border-radius: 6px; padding: 10px 14px; color: #8a6a1f; font-size: .92rem; margin-bottom: 22px; }
.lese-benefits { padding-left: 20px; margin: 10px 0 16px; }
.lese-benefits li { margin: 8px 0; }
.lese-benefits li::marker { color: var(--gold); }

/* ---------- Responsive -------------------------------------------------- */
@media (max-width: 880px) { .split { grid-template-columns: 1fr; gap: 30px; } }
@media (max-width: 880px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 30px; padding-top: 48px; padding-bottom: 52px; }
  .hero .mockup { height: 300px; order: -1; }
  .leseprobe .wrap { grid-template-columns: 1fr; gap: 34px; }
  .features { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .section { padding: 48px 0; }
  .site-header .wrap { flex-wrap: wrap; min-height: 0; padding-top: 12px; padding-bottom: 12px; gap: 10px; }
  .nav { width: 100%; }
  .tiers { grid-template-columns: 1fr; }
  .site-footer .legal { flex-direction: column; }
}

/* ---------- Blog: Übersicht + Artikel ----------------------------------
   Genutzt von blog/index.html und blog/<slug>/index.html (Artikel-Template:
   .claude/skills/blog-artikel/assets/artikel-template.html). ------------- */

/* Übersicht: Artikel-Karten, gruppiert nach Clustern */
.bloglist-cluster { margin: 0 0 46px; }
.bloglist-cluster > h2 { font-size: 1.35rem; padding-bottom: 8px; border-bottom: 1px solid var(--hair); margin-bottom: 18px; }
.bloglist { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.bloglist .post {
  display: block; background: #fff; border: 1px solid var(--hair);
  border-radius: var(--radius); padding: 20px 22px; text-decoration: none;
  box-shadow: var(--shadow-soft); transition: border-color .15s ease;
}
.bloglist .post:hover { border-color: var(--navy-300); }
.bloglist .post h3 { font-size: 1.08rem; margin-bottom: 6px; }
.bloglist .post p { font-size: .95rem; color: var(--ink); margin: 0; }
.bloglist .post .meta { display: block; font-size: .8rem; color: var(--muted); margin-top: 10px; }

/* Artikel: Kopf, Meta-Zeile, Fließtext-Erweiterungen zu .prose */
.article-meta { display: flex; flex-wrap: wrap; gap: 6px 18px; font-size: .88rem; color: var(--muted); margin-top: .6rem; }
.article-figure { margin: 26px 0; }
/* max-height deckelt Hochformat-Grafiken (Eisberg, Pyramide, Zwei-Systeme):
   ohne Deckel füllen sie die volle Textbreite und werden >1000px hoch */
.article-figure img {
  border: 1px solid var(--hair); border-radius: var(--radius-sm); background: #fff;
  width: auto; max-height: 480px; margin: 0 auto;
}
.article-figure figcaption { font-size: .88rem; color: var(--muted); margin-top: 8px; text-align: center; }

/* Leseproben-CTA im Artikel (1× ganz am Ende – kein mittlerer CTA) */
.article-cta {
  background: var(--panel); border: 1px solid var(--hair); border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm); padding: 20px 22px; margin: 30px 0;
}
.article-cta h3 { font-size: 1.08rem; margin-bottom: 4px; }
.article-cta p { font-size: .95rem; margin: 0 0 14px; }
.article-cta .btn { font-size: .95rem; padding: 12px 20px; }
.article-cta .cta-paket { font-size: .9rem; margin: 12px 0 0; }

/* Teilen-Zeile am Artikelende (vor der CTA-Box). LinkedIn = primärer Button in
   LinkedIn-Blau; E-Mail + „Link kopieren" als dezente Ghost-Buttons. Der
   Kopier-Button ist ohne JS via [hidden] aus (das Script blendet ihn ein). */
.article-share { display: flex; align-items: center; flex-wrap: wrap; gap: 10px 12px; margin: 30px 0 0; padding-top: 18px; border-top: 1px solid var(--hair); }
.article-share-label { font-size: .92rem; font-weight: 700; color: var(--navy); margin-right: 2px; }
.article-share-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font: inherit; font-size: .9rem; font-weight: 600; line-height: 1; text-decoration: none;
  padding: 9px 15px; border-radius: 999px; border: 1px solid transparent; cursor: pointer;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.article-share-btn svg { width: 17px; height: 17px; flex: none; }
.article-share-btn[hidden] { display: none; }
.article-share-btn.linkedin { background: #0a66c2; color: #fff; }
.article-share-btn.linkedin:hover { background: #094f97; }
.article-share-btn.ghost { background: #fff; color: var(--navy); border-color: var(--hair); }
.article-share-btn.ghost:hover { border-color: var(--navy-300); background: var(--panel); }
.article-share-btn.copied { color: #1a7f4b; border-color: #1a7f4b; background: #eef7f1; }

/* Verwandte Artikel (Cluster-Kasten am Artikelende) */
.article-related { border-top: 1px solid var(--hair); margin-top: 36px; padding-top: 18px; }
.article-related h2 { font-size: 1.1rem; border-top: 0; padding-top: 0; margin: 0 0 8px; }
.article-related ul { list-style: none; padding: 0; margin: 0; }
.article-related li { margin: 7px 0; padding-left: 20px; position: relative; }
.article-related li::before { content: "→"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

@media (max-width: 700px) { .bloglist { grid-template-columns: 1fr; } }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .btn { transition: none; } }
