/* Krensing GmbH — Live Style
   Basis: Stil 7 (Ice Cyan) auf moderner Form-Schicht + Talsen-Look für
   Werdegang und CEO-Karte. Reihenfolge der zusammengeführten Layer:
     1)  Struktur-Basis
     2)  Modern-Schicht (Typografie, Radien, Karten, Pills)
     2b) Talsen-Layer (Zickzack-Timeline, CEO-Card)
     3)  Ice-Cyan-Palette
*/

/* ===================================================================
   LAYER 1 — STRUKTUR-BASIS
   =================================================================== */

:root {
  --bg: #0b1d36;               /* tiefes Navy als Bühne */
  --bg-2: #102849;             /* leicht heller für alternierende Sektionen */
  --bg-3: #163358;             /* Highlight-Panel */
  --surface: rgba(255, 255, 255, 0.05);
  --surface-strong: rgba(255, 255, 255, 0.09);
  --border: rgba(255, 255, 255, 0.12);
  --border-strong: rgba(255, 255, 255, 0.25);

  --fg: #ffffff;
  --fg-soft: #d6dff0;
  --fg-muted: #8da0c2;

  --accent: #6ea8ff;            /* helles Hellblau als Akzent auf dunklem Grund */
  --accent-soft: #a9c4ff;
  --accent-strong: #ffffff;

  --serif: "Source Serif 4", "Source Serif Pro", "EB Garamond", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --container: 68rem;
  --prose: 36rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--serif);
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern", "liga", "onum";
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
p, ul, ol { margin: 0; }
ul, ol { padding: 0; list-style: none; }

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--fg);
}

a { color: var(--accent); text-underline-offset: 3px; }
a:hover { color: var(--accent-strong); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.prose { max-width: var(--prose); }
.prose p + p { margin-top: 1.1rem; }

/* Eyebrow + Kapitel-Marker */
.eyebrow {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent);
  display: inline-block;
}
.chapter {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}
.chapter .roman {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1rem;
  color: var(--accent);
}
.chapter .rule { width: 2.5rem; height: 1px; background: var(--accent); display: inline-block; opacity: 0.55; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: #fff; color: var(--bg); padding: 0.5rem 0.9rem; border-radius: 3px;
}
.skip-link:focus { left: 1rem; top: 1rem; z-index: 100; }

/* Header */
.site-header {
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: sticky; top: 0; z-index: 30;
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  background-color: rgba(11, 29, 54, 0.85);
}
.site-header .container {
  display: flex; align-items: baseline; justify-content: space-between;
  padding-top: 1.5rem; padding-bottom: 1.5rem;
  gap: 2rem;
}
.brand {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.125rem;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: 0.005em;
}
.brand .mark-line {
  display: inline-block; width: 1.4rem; height: 1px;
  background: var(--accent); vertical-align: middle;
  margin-right: 0.7rem; transform: translateY(-3px);
}
.nav {
  display: none;
  gap: 2rem;
  font-family: var(--sans);
  font-size: 0.875rem;
  color: var(--fg-soft);
}
.nav a { color: inherit; text-decoration: none; }
.nav a:hover { color: var(--fg); text-decoration: underline; text-underline-offset: 4px; }
@media (min-width: 760px) { .nav { display: flex; } }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  font-family: var(--sans);
  font-size: 0.925rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid transparent;
  transition: background-color 150ms, color 150ms, border-color 150ms, transform 150ms;
}
.btn.primary {
  background: #ffffff; color: var(--bg);
  border-color: #ffffff;
}
.btn.primary:hover { background: var(--accent-soft); border-color: var(--accent-soft); color: var(--bg); transform: translateY(-1px); }
.btn.ghost {
  background: transparent; color: var(--fg);
  border-color: var(--border-strong);
}
.btn.ghost:hover { border-color: var(--fg); background: var(--surface); }
.btn.invert {
  background: var(--accent); color: var(--bg); border-color: var(--accent);
}
.btn.invert:hover { background: var(--accent-soft); border-color: var(--accent-soft); }

.link-arrow {
  font-family: var(--sans);
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 0.15rem;
}
.link-arrow:hover { color: var(--accent-strong); border-color: var(--accent-strong); }

/* Sections */
.section { border-top: 1px solid var(--border); }
.section .container { padding-top: 5rem; padding-bottom: 5rem; }
@media (min-width: 768px) { .section .container { padding-top: 7rem; padding-bottom: 7rem; } }
.section.tint { background: var(--bg-2); border-color: transparent; }

/* Inverse-Sektion: weißer Grund mit dunkler Typo (für Über-mich-Absatz) */
.section.invert {
  background: #ffffff;
  color: #0f172a;
  border-color: transparent;
}
.section.invert .eyebrow { color: #1e3a5f; }
.section.invert h1,
.section.invert h2,
.section.invert h3,
.section.invert h4 { color: #0f172a; }
.section.invert p { color: #334155; }
.section.invert .role { color: #64748b; }
.section.invert .bio { color: #334155; }
.section.invert .monogram {
  background: #f0f5fc;
  border-color: #1e3a5f;
  color: #1e3a5f;
}
.section.invert .uebermich-block { margin-top: 0; }
.section.invert a { color: #1e3a5f; }
.section.invert a:hover { color: #122a48; }

.section-head { margin-bottom: 3.5rem; max-width: 44rem; }
.section-head h2 {
  font-size: clamp(1.875rem, 2.6vw + 1rem, 2.625rem);
  line-height: 1.2;
  font-weight: 500;
}
.section-head p {
  margin-top: 1.5rem;
  color: var(--fg-soft);
  max-width: var(--prose);
}

/* Hero – mit weichem Glow als visueller Tiefe */
.hero {
  border-top: none;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; z-index: 0;
  inset: -10% -10% auto -10%;
  height: 110%;
  background:
    radial-gradient(60rem 35rem at 80% 0%, rgba(110, 168, 255, 0.18), transparent 60%),
    radial-gradient(50rem 30rem at 0% 30%, rgba(255, 255, 255, 0.05), transparent 60%);
  pointer-events: none;
}
.hero > .container { position: relative; z-index: 1; }
.hero .container {
  padding-top: 6rem; padding-bottom: 5rem;
}
@media (min-width: 768px) {
  .hero .container { padding-top: 8.5rem; padding-bottom: 7rem; }
}
.hero .eyebrow { margin-bottom: 2rem; }
.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.25rem, 3.6vw + 1rem, 3.875rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  max-width: 50rem;
  color: var(--fg);
}
.hero h1 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}

.hero .layout {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 880px) {
  .hero .layout { grid-template-columns: 1.6fr 1fr; gap: 4rem; align-items: start; }
}

.hero .lead { color: var(--fg-soft); font-size: 1.125rem; line-height: 1.7; max-width: var(--prose); }
.hero .lead p + p { margin-top: 1.1rem; }

/* Pull-Quote */
.pull {
  border-left: 3px solid var(--accent);
  padding: 0.1rem 0 0.1rem 1.5rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--fg);
  max-width: 22rem;
}
.pull cite {
  display: block;
  margin-top: 1rem;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.hero .cta-row { margin-top: 2.75rem; display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; align-items: center; }

/* Prinzipien-Strip */
.prinzipien {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 720px) { .prinzipien { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; } }
.prinzip { display: flex; flex-direction: column; gap: 0.5rem; }
.prinzip .label {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}
.prinzip h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.0625rem;
  color: var(--fg);
}
.prinzip p {
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--fg-soft);
  line-height: 1.55;
}

/* Felder – 4-Spalten-Raster */
.felder {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 640px) { .felder { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .felder { grid-template-columns: repeat(4, 1fr); } }
.feld {
  border-top: 2px solid var(--accent);
  padding: 1.5rem 1.5rem 1.5rem 0;
  display: flex; flex-direction: column;
}
@media (min-width: 1024px) {
  .feld + .feld { border-left: 1px solid var(--border); padding-left: 1.5rem; }
}
.feld .nr {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.feld h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
  line-height: 1.3;
  color: var(--fg);
}
.feld p { color: var(--fg-soft); flex: 1; }

.felder-outro {
  margin-top: 3.5rem;
  max-width: var(--prose);
  color: var(--fg-soft);
  font-style: italic;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

/* Timeline – Vertikalachse mit alternierenden Karten, hellblau auf dunkel */
.timeline {
  position: relative;
  margin: 0 auto;
  max-width: 56rem;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: 0.75rem;
  width: 1px;
  background: var(--border-strong);
}
@media (min-width: 880px) {
  .timeline::before { left: 50%; transform: translateX(-0.5px); }
}

.timeline-item {
  position: relative;
  padding-left: 2.75rem;
  padding-bottom: 3rem;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: calc(0.75rem - 5px);
  top: 0.55rem;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px var(--bg);
}

@media (min-width: 880px) {
  .timeline-item {
    width: 50%;
    padding-left: 0;
    padding-right: 3rem;
    padding-bottom: 3.5rem;
    text-align: right;
  }
  .timeline-item::before { left: auto; right: -6px; }
  .timeline-item:nth-child(even) {
    margin-left: 50%;
    padding-left: 3rem;
    padding-right: 0;
    text-align: left;
  }
  .timeline-item:nth-child(even)::before { left: -5px; right: auto; }
}

.timeline-item .jahr {
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.timeline-item h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 0.6rem;
  color: var(--fg);
}
.timeline-item p { color: var(--fg-soft); }
@media (min-width: 880px) { .timeline-item p { display: inline-block; max-width: 24rem; } }

/* Über mich + Monogramm */
.uebermich-block {
  max-width: 48rem;
  margin: 5rem auto 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 720px) {
  .uebermich-block { grid-template-columns: 6rem 1fr; gap: 2.5rem; margin-top: 6rem; }
}
.monogram {
  width: 5rem; height: 5rem;
  border: 1.5px solid var(--accent);
  border-radius: 4px;
  display: grid; place-items: center;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--accent);
  background: var(--surface);
}
.uebermich-block .eyebrow { margin-bottom: 0.75rem; }
.uebermich-block h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.5rem, 1.8vw + 1rem, 2rem);
  line-height: 1.25;
  color: var(--fg);
}
.uebermich-block .role {
  margin-top: 0.45rem;
  font-family: var(--sans);
  font-size: 0.875rem;
  color: var(--fg-muted);
}
.uebermich-block .bio { margin-top: 1.5rem; color: var(--fg-soft); }
.uebermich-block .bio p + p { margin-top: 1.1rem; }

/* Schritte – 4-Spalten-Raster */
.schritte {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  position: relative;
}
@media (min-width: 640px) { .schritte { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .schritte { grid-template-columns: repeat(4, 1fr); } }
.schritt {
  padding: 1.75rem 1.5rem 1.75rem 0;
  border-top: 2px solid var(--accent);
  position: relative;
}
@media (min-width: 1024px) {
  .schritt + .schritt { border-left: 1px solid var(--border); padding-left: 1.5rem; }
}
.schritt .nr {
  font-family: var(--sans);
  font-size: 1.625rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--accent);
  margin-bottom: 0.6rem;
  display: block;
  line-height: 1;
}
.schritt h3 {
  font-family: var(--serif);
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--fg);
}
.schritt p { color: var(--fg-soft); }
.schritte-outro {
  margin-top: 3rem;
  max-width: var(--prose);
  color: var(--fg-soft);
  font-style: italic;
}

/* Preise – mit Highlight-Panels auf dunklem Surface */
.preise-grid {
  display: grid; grid-template-columns: 1fr; gap: 2rem;
}
@media (min-width: 900px) { .preise-grid { grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; } }
.preise-intro p { color: var(--fg-soft); }
.preise-intro p + p { margin-top: 1.1rem; }
.preise-intro h2 {
  font-size: clamp(1.75rem, 2.2vw + 1rem, 2.375rem);
  line-height: 1.2;
  font-weight: 500;
  max-width: 18rem;
  margin-top: 1.25rem;
  margin-bottom: 1.5rem;
}
.preise-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  padding: 2rem;
  border-radius: 4px;
}
.preise-panel + .preise-panel { margin-top: 1.25rem; }
.preise-panel .label {
  font-family: var(--sans);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  display: block;
  margin-bottom: 0.5rem;
}
.preise-panel strong {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--fg);
  font-size: 1.0625rem;
  display: block;
  margin-bottom: 0.5rem;
}
.preise-panel p { color: var(--fg-soft); }

/* CTA-Sektion – heller Akzent-Block als Kontrast, oder bleibt dunkel? Dunkel mit Glow */
.cta-section {
  background: var(--bg-3);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
}
.cta-section::before {
  content: "";
  position: absolute; inset: -30% -10% -30% -10%;
  background:
    radial-gradient(50rem 30rem at 80% 50%, rgba(110, 168, 255, 0.2), transparent 60%),
    radial-gradient(40rem 25rem at 0% 50%, rgba(255, 255, 255, 0.04), transparent 60%);
  pointer-events: none;
}
.cta-section > .container { position: relative; z-index: 1; }
.cta-section .container {
  padding-top: 6rem; padding-bottom: 6rem;
}
@media (min-width: 768px) { .cta-section .container { padding-top: 8rem; padding-bottom: 8rem; } }
.cta-section h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.875rem, 2.8vw + 1rem, 2.875rem);
  line-height: 1.2;
  color: var(--fg);
  max-width: 36rem;
  margin-top: 1.25rem;
}
.cta-section h2 em { font-style: italic; color: var(--accent); }
.cta-section .body { margin-top: 1.75rem; max-width: var(--prose); color: var(--fg-soft); }
.cta-section .body p + p { margin-top: 1.1rem; }
.cta-section .cta-row { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; align-items: center; }

/* Article – Impressum, Datenschutz */
.article {
  max-width: var(--prose);
  margin: 0 auto;
  padding: 5rem 1.5rem;
}
@media (min-width: 720px) { .article { padding: 7rem 1.5rem; } }
.article .eyebrow { margin-bottom: 1.25rem; }
.article h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 2.6vw + 1rem, 2.625rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--fg);
}
.article h2 {
  font-family: var(--sans);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--accent);
  margin-top: 2.5rem;
  margin-bottom: 0.6rem;
}
.article p { color: var(--fg-soft); }
.article p + p { margin-top: 0.75rem; }
.article a { color: var(--accent); }
.article a:hover { color: var(--accent-strong); }
.article ul.bulleted { list-style: disc; padding-left: 1.5rem; color: var(--fg-soft); }
.article ul.bulleted li + li { margin-top: 0.25rem; }
.article .lede { margin-top: 1.75rem; color: var(--fg-soft); font-size: 1.125rem; line-height: 1.65; }

/* Footer */
.site-footer { border-top: 1px solid var(--border); background: var(--bg-2); }
.site-footer .container {
  display: grid; gap: 2.5rem;
  padding-top: 3.5rem; padding-bottom: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .site-footer .container { grid-template-columns: 1.6fr 1fr 1fr; }
}
.site-footer h4 {
  font-family: var(--sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 0.9rem;
  font-weight: 600;
}
.site-footer p, .site-footer li {
  color: var(--fg-soft);
  font-size: 0.925rem;
  line-height: 1.6;
}
.site-footer .imprint p:first-of-type {
  color: var(--fg);
  font-family: var(--serif);
  font-weight: 500;
  margin-bottom: 0.35rem;
}
.site-footer a { color: var(--fg-soft); text-decoration: none; }
.site-footer a:hover { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.site-footer ul li + li { margin-top: 0.45rem; }
.site-footer .bottom {
  border-top: 1px solid var(--border);
  padding: 1.25rem 1.5rem;
  max-width: var(--container);
  margin-left: auto; margin-right: auto;
  font-family: var(--sans);
  font-size: 0.8125rem;
  color: var(--fg-muted);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
}


/* ===================================================================
   LAYER 2 — MODERN-SCHICHT
   =================================================================== */

/* Geteilte Modernisierungs-Schicht — überschreibt Form-Primitive aller Themes
   (Typografie, Radien, Schatten, Spacing). Farben bleiben Theme-Sache. */

:root {
  --sans: "Inter", "InterVariable", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --display: var(--sans);
  --serif: var(--sans);
  --container: 76rem;
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 18px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 16px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
}

body {
  font-family: var(--sans);
  font-feature-settings: "ss01","cv11","kern","liga";
  font-size: 1rem;
  line-height: 1.65;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.022em;
}
h1 { letter-spacing: -0.035em; }

a { text-underline-offset: 4px; }

/* --- Container --- */
.container { padding-left: 1.75rem; padding-right: 1.75rem; }

/* --- Header --- */
.site-header { border-bottom: 1px solid var(--border); }
.site-header .container { padding-top: 1rem; padding-bottom: 1rem; }
.brand { font-family: var(--sans); font-weight: 600; font-size: 1rem; letter-spacing: -0.01em; display: inline-flex; align-items: center; gap: 0.6rem; }
.brand .mark-line { width: 1.6rem; height: 2px; border-radius: 2px; transform: none; margin: 0; }
.nav { gap: 0.4rem; font-size: 0.9rem; }
.nav a { padding: 0.5rem 0.85rem; border-radius: var(--radius-sm); transition: background-color .15s, color .15s; }
.nav a:hover { text-decoration: none; background: var(--surface); }

/* --- Eyebrow neu: Pill-Badge --- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.35rem 0.75rem;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--fg-soft);
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}

.chapter { gap: 0.85rem; margin-bottom: 1.5rem; }
.chapter .roman { font-family: var(--sans); font-style: normal; font-weight: 600; font-size: 0.78rem; letter-spacing: 0.08em; color: var(--fg-muted); }
.chapter .rule { width: 2rem; height: 1px; opacity: 0.5; }

/* --- Buttons --- */
.btn {
  padding: 0.75rem 1.4rem;
  font-family: var(--sans);
  font-size: 0.925rem;
  font-weight: 500;
  border-radius: 999px;
  letter-spacing: -0.005em;
  transition: background-color .15s, color .15s, border-color .15s, transform .15s, box-shadow .15s;
}
.btn.primary { box-shadow: var(--shadow-sm); }
.btn.primary:hover { box-shadow: var(--shadow-md); transform: translateY(-1px); }
.btn.invert { box-shadow: var(--shadow-sm); }
.btn.invert:hover { box-shadow: var(--shadow-md); }

.link-arrow {
  font-family: var(--sans); font-weight: 500; font-size: 0.925rem;
  border-bottom: none; padding-bottom: 0;
  display: inline-flex; align-items: center; gap: 0.35rem;
}
.link-arrow::after { content: "→"; transition: transform .2s; }
.link-arrow:hover::after { transform: translateX(3px); }

/* --- Hero --- */
.hero h1 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.5rem, 4vw + 1rem, 4.25rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  max-width: 56rem;
}
.hero h1 em { font-style: normal; font-weight: 600; }
.hero .eyebrow { margin-bottom: 1.5rem; }
.hero .lead { font-size: 1.125rem; line-height: 1.65; }

/* Pull-Quote moderner */
.pull {
  border-left: none;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
}
.pull cite { font-family: var(--sans); }

/* --- Prinzipien als Karten --- */
.prinzipien {
  margin-top: 4.5rem;
  padding-top: 0;
  border-top: none;
  gap: 1rem;
}
@media (min-width: 720px) { .prinzipien { gap: 1.25rem; } }
.prinzip {
  padding: 1.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .2s, transform .2s;
}
.prinzip:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.prinzip .label { font-size: 0.7rem; letter-spacing: 0.08em; text-transform: none; font-weight: 600; }
.prinzip h4 { font-family: var(--sans); font-weight: 600; font-size: 1.0625rem; }
.prinzip p { font-family: var(--sans); }

/* --- Section heads --- */
.section-head { margin-bottom: 4rem; }
.section-head h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2rem, 2.8vw + 1rem, 3rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  max-width: 40rem;
}

/* --- Felder als Karten --- */
.felder { gap: 1rem; }
@media (min-width: 1024px) { .felder { grid-template-columns: repeat(4, 1fr); gap: 1rem; } }
.feld {
  border-top: none;
  padding: 1.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  transition: border-color .2s, transform .2s;
}
@media (min-width: 1024px) { .feld + .feld { border-left: 1px solid var(--border); padding-left: 1.75rem; } }
.feld:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.feld .nr { font-size: 0.7rem; letter-spacing: 0.08em; text-transform: none; font-weight: 600; }
.feld h3 { font-family: var(--sans); font-weight: 600; font-size: 1.125rem; }
.feld p { font-family: var(--sans); }

.felder-outro { font-style: normal; color: var(--fg-soft); border-top: 1px solid var(--border); padding-top: 2.5rem; margin-top: 3.5rem; }

/* --- Timeline modern: einseitig links --- */
.timeline { max-width: 44rem; margin-left: 0; }
@media (min-width: 880px) {
  .timeline::before { left: 0.75rem; transform: none; }
  .timeline-item, .timeline-item:nth-child(even) {
    width: auto;
    margin-left: 0;
    padding-left: 2.75rem;
    padding-right: 0;
    text-align: left;
  }
  .timeline-item::before, .timeline-item:nth-child(even)::before { left: calc(0.75rem - 5px); right: auto; }
  .timeline-item p { max-width: none; display: block; }
}
.timeline-item .jahr { font-size: 0.7rem; letter-spacing: 0.08em; text-transform: none; font-weight: 600; }
.timeline-item h3 { font-family: var(--sans); font-weight: 600; font-size: 1.125rem; }
.timeline-item p { font-family: var(--sans); }

/* --- Über mich --- */
.monogram { border-radius: var(--radius); font-family: var(--sans); font-weight: 600; }
.uebermich-block h2 { font-family: var(--display); font-weight: 600; letter-spacing: -0.025em; }

/* --- Schritte als Karten mit Nummer-Bubble --- */
.schritte { gap: 1rem; }
@media (min-width: 1024px) { .schritte { grid-template-columns: repeat(4, 1fr); gap: 1rem; } }
.schritt {
  border-top: none;
  padding: 1.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .2s, transform .2s;
}
@media (min-width: 1024px) { .schritt + .schritt { border-left: 1px solid var(--border); padding-left: 1.75rem; } }
.schritt:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.schritt .nr {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 2.25rem; height: 2.25rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--bg);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: 1rem;
}
.schritt h3 { font-family: var(--sans); font-weight: 600; font-size: 1.0625rem; }
.schritt p { font-family: var(--sans); }
.schritte-outro { font-style: normal; }

/* --- Preise-Panel --- */
.preise-panel {
  border-radius: var(--radius);
  border-left-width: 1px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.preise-panel .label { font-size: 0.7rem; letter-spacing: 0.08em; text-transform: none; font-weight: 600; }
.preise-panel strong { font-family: var(--sans); font-weight: 600; font-size: 1.125rem; }
.preise-panel p { font-family: var(--sans); }
.preise-intro h2 { font-family: var(--display); font-weight: 600; letter-spacing: -0.03em; }

/* --- CTA --- */
.cta-section h2 { font-family: var(--display); font-weight: 600; letter-spacing: -0.03em; }
.cta-section h2 em { font-style: normal; font-weight: 600; }

/* --- Footer --- */
.site-footer h4 { text-transform: none; letter-spacing: 0; font-size: 0.875rem; font-weight: 600; color: var(--fg); }
.site-footer .imprint p:first-of-type { font-family: var(--sans); font-weight: 600; }
.site-footer p, .site-footer li { font-family: var(--sans); }


/* ===================================================================
   LAYER 2b — TALSEN-LOOK: TIMELINE + CEO-CARD
   =================================================================== */

/* Werdegang / Timeline im Talsen-Zickzack-Stil */
.timeline { max-width: 64rem; margin: 0 auto; }
.timeline-item { position: relative; }
.timeline-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: border-color .2s, transform .2s;
}
.timeline-item:hover .timeline-card { border-color: var(--border-strong); transform: translateY(-2px); }
.timeline-card h3 {
  font-family: var(--sans); font-weight: 600; font-size: 1.0625rem;
  line-height: 1.3; margin-bottom: 0.5rem; color: var(--fg);
}
.timeline-card p { font-family: var(--sans); color: var(--fg-soft); font-size: 0.95rem; line-height: 1.55; }

.timeline-item .jahr {
  font-family: var(--display);
  font-weight: 700;
  font-size: 2.75rem;
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: none;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
}

@media (min-width: 880px) {
  .timeline::before { left: 50%; transform: translateX(-0.5px); }
  .timeline-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 4rem;
    align-items: center;
    padding: 0 0 4rem 0;
  }
  .timeline-item:last-child { padding-bottom: 0; }
  .timeline-item .jahr {
    grid-column: 1; grid-row: 1;
    justify-self: end;
    text-align: right;
    margin: 0;
    font-size: clamp(3.25rem, 4.5vw, 4.5rem);
  }
  .timeline-item .timeline-card { grid-column: 2; grid-row: 1; }
  .timeline-item:nth-child(even) .jahr { grid-column: 2; justify-self: start; text-align: left; }
  .timeline-item:nth-child(even) .timeline-card { grid-column: 1; }
  .timeline-item::before {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 14px; height: 14px;
    background: var(--accent);
    box-shadow: 0 0 0 5px var(--bg), 0 0 0 6px var(--border-strong);
  }
  .timeline-item:nth-child(even)::before { left: 50%; right: auto; }
  .timeline-item p { max-width: none; display: block; }
}

/* CEO-Karte (Talsen-Look) */
.ceo-card {
  margin: 0 auto 4rem;
  max-width: 64rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}
@media (min-width: 720px) {
  .ceo-card { grid-template-columns: auto 1fr; gap: 2.75rem; padding: 2.5rem 3rem; }
}

.ceo-portrait {
  width: 11rem; height: 11rem;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  background: var(--surface-strong);
  border: 1px solid var(--border);
  flex-shrink: 0;
  justify-self: center;
  box-shadow: 0 0 0 6px var(--bg), 0 0 0 7px var(--border), var(--shadow-md);
}
.ceo-portrait img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ceo-portrait.is-placeholder::before {
  content: attr(data-initials);
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--display);
  font-weight: 600;
  font-size: 3rem;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.ceo-body h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.75rem, 2.4vw + 1rem, 2.5rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin: 0 0 0.4rem;
}
.ceo-role { font-family: var(--sans); font-weight: 600; font-size: 0.95rem; color: var(--accent); margin: 0; }
.ceo-company { font-family: var(--sans); font-size: 0.875rem; color: var(--fg-muted); margin: 0.25rem 0 1.25rem; }
.ceo-quote {
  font-family: var(--sans); font-style: italic;
  font-size: 1.0625rem; line-height: 1.55;
  color: var(--fg-soft);
  margin: 0 0 1.5rem;
  max-width: 42rem;
  border: none; padding: 0;
}
.ceo-linkedin {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: var(--surface-strong);
  border: 1px solid var(--border);
  color: var(--fg);
  font-family: var(--sans); font-weight: 500; font-size: 0.875rem;
  text-decoration: none;
  transition: background-color .15s, color .15s, border-color .15s;
}
.ceo-linkedin:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.ceo-linkedin svg { flex-shrink: 0; }


/* ===================================================================
   LAYER 3 — STIL 7: ICE CYAN
   =================================================================== */

/* Stil 7 — Ice Cyan
   Hell, fast weiß, ein Hauch Eisblau, lebendiges Cyan als Akzent. */

:root {
  --bg: #f4f8fc;
  --bg-2: #e8f1f9;
  --bg-3: #dceaf5;
  --surface: rgba(10, 70, 130, 0.04);
  --surface-strong: rgba(10, 70, 130, 0.08);
  --border: rgba(10, 70, 130, 0.12);
  --border-strong: rgba(10, 70, 130, 0.28);

  --fg: #0a2540;
  --fg-soft: #2f4a6b;
  --fg-muted: #6b85a4;

  --accent: #0077c2;
  --accent-soft: #2c9fdc;
  --accent-strong: #00558c;
}

body { background: var(--bg); color: var(--fg); }

.site-header { background-color: rgba(244, 248, 252, 0.88); border-bottom-color: var(--border); }
.brand { color: var(--fg); }
.brand .mark-line { background: var(--accent); }

.hero::before {
  background:
    radial-gradient(60rem 35rem at 80% 0%, rgba(0, 119, 194, 0.10), transparent 60%),
    radial-gradient(50rem 30rem at 0% 30%, rgba(44, 159, 220, 0.08), transparent 60%);
}
.hero h1 em { color: var(--accent); }

.btn.primary { background: var(--fg); color: #fff; border-color: var(--fg); }
.btn.primary:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn.invert { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn.invert:hover { background: var(--accent-strong); border-color: var(--accent-strong); }

.section.invert { background: var(--fg); color: #fff; }
.section.invert .eyebrow { color: var(--accent-soft); }
.section.invert h1, .section.invert h2, .section.invert h3, .section.invert h4 { color: #fff; }
.section.invert p, .section.invert .bio { color: #d4dfec; }
.section.invert .role { color: #94a8c0; }
.section.invert .monogram { background: rgba(255,255,255,0.06); border-color: var(--accent-soft); color: var(--accent-soft); }
.section.invert a { color: var(--accent-soft); }

.cta-section { background: var(--bg-3); }
.cta-section::before {
  background:
    radial-gradient(50rem 30rem at 80% 50%, rgba(0, 119, 194, 0.14), transparent 60%),
    radial-gradient(40rem 25rem at 0% 50%, rgba(44, 159, 220, 0.10), transparent 60%);
}
.cta-section h2 { color: var(--fg); }
.cta-section h2 em { color: var(--accent); }
.cta-section .body { color: var(--fg-soft); }

.site-footer { background: var(--bg-2); }


/* ===================================================================
   LAYER 4 — HEADLINES kräftiger
   =================================================================== */

.hero h1 {
  font-weight: 700;
  font-size: clamp(2.0625rem, 3.75vw + 0.75rem, 3.75rem);
  letter-spacing: -0.04em;
  line-height: 1.02;
  color: var(--fg);
}

.section-head h2,
.preise-intro h2,
.cta-section h2 {
  font-weight: 700;
  font-size: clamp(2.25rem, 3.4vw + 1rem, 3.625rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--fg);
}

.ceo-body h2 {
  font-weight: 700;
  font-size: clamp(2rem, 2.6vw + 1rem, 2.875rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.hero h1 em,
.cta-section h2 em { font-weight: 700; color: var(--accent); font-style: normal; }

/* Vollbreite Section-Heads für plakative Kurz-Headlines */
.section-head--wide {
  max-width: none;
  text-align: center;
}
.section-head--wide h2 {
  max-width: none;
  font-size: clamp(2.0625rem, 3.75vw + 0.75rem, 3.75rem);
  letter-spacing: -0.04em;
  line-height: 1.02;
}
.section-head--wide p { margin-left: auto; margin-right: auto; }
