/* valuedialog v2 – editorial premium, Oakley-inspiriert
   Palette: Tiefgrün, warmes Papier, Messing-Akzent. Serifen-Display. */

:root {
  --ink: #1f1c27;          /* Tiefgrün, fast schwarz */
  --ink-2: #282434;        /* Sektionsgrün */
  --paper: #f7f5ef;        /* warmes Papier */
  --paper-dim: #efece3;
  --line: #d9d5c8;
  --line-dark: rgba(247, 245, 239, 0.18);
  --accent: #8a7746;       /* Grün-Akzent */
  --brass: #b09f67;        /* Messing für Ziffern/Details */
  --text: #23312b;
  --text-soft: #5b6a62;
  --text-inv: #f0eee6;
  --text-inv-soft: #b9c2ba;
  --max: 1160px;
  --serif: "Iowan Old Style", Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

h1, h2, h3, .display { font-family: var(--serif); font-weight: 400; line-height: 1.12; letter-spacing: -0.015em; }

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

a { color: inherit; }

/* ---------- Reveal-Animationen ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.12s; }
.reveal.d2 { transition-delay: 0.24s; }
.reveal.d3 { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  [data-parallax] { transform: none !important; }
  * { animation: none !important; }
}

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.4s, box-shadow 0.4s;
}
.site-header.scrolled {
  background: rgba(31, 28, 39, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line-dark);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.wordmark {
  font-family: var(--serif); font-size: 1.45rem; color: var(--text-inv);
  text-decoration: none; letter-spacing: -0.02em;
}
.wordmark span { color: var(--brass); }
.site-nav { display: flex; gap: 30px; align-items: center; }
.site-nav a { color: var(--text-inv-soft); text-decoration: none; font-size: 0.92rem; transition: color 0.25s; }
.site-nav a:hover { color: #fff; }
.btn {
  display: inline-block; background: var(--brass); color: var(--ink);
  padding: 12px 26px; text-decoration: none; font-size: 0.95rem; font-weight: 600;
  border: none; cursor: pointer; font-family: var(--sans);
  transition: background 0.25s, color 0.25s;
}
.btn:hover { background: #c19b66; }
.btn-line {
  background: transparent; color: var(--text-inv); font-weight: 400;
  border: 1px solid rgba(240, 238, 230, 0.4); padding: 11px 25px;
}
.btn-line:hover { border-color: var(--brass); color: var(--brass); background: transparent; }
.btn-dark { background: var(--ink); color: var(--paper); font-weight: 400; }
.btn-dark:hover { background: var(--ink-2); color: #fff; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text-inv); margin: 5px 0; transition: 0.3s; }

/* Header auf hellen Seiten */
body.light-page .site-header { background: rgba(247, 245, 239, 0.95); backdrop-filter: blur(10px); box-shadow: 0 1px 0 var(--line); }
body.light-page .wordmark { color: var(--ink); }
body.light-page .site-nav a { color: var(--text-soft); }
body.light-page .site-nav a:hover { color: var(--ink); }
body.light-page .nav-toggle span { background: var(--ink); }

/* ---------- Hero mit Parallax ---------- */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center;
  background: var(--ink); color: var(--text-inv); overflow: hidden;
  padding: 140px 0 100px;
}
.hero-layer { position: absolute; inset: -12% 0; pointer-events: none; will-change: transform; }
.hero-layer svg { width: 100%; height: 100%; }
.hero .wrap { position: relative; z-index: 3; }
.hero .eyebrow {
  text-transform: uppercase; letter-spacing: 0.22em; font-size: 0.78rem;
  color: var(--brass); margin-bottom: 26px;
}
.hero h1 { font-size: clamp(2.5rem, 6.5vw, 5.4rem); max-width: none; color: #fdfcf8; }
.hero .lede { margin-top: 28px; max-width: 560px; font-size: 1.18rem; color: var(--text-inv-soft); }
.hero .cta-row { margin-top: 44px; display: flex; gap: 18px; flex-wrap: wrap; }
.scroll-hint {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  width: 1px; height: 56px; background: rgba(240, 238, 230, 0.25); overflow: hidden;
}
.scroll-hint::after {
  content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%;
  background: var(--brass); animation: scrollhint 2.2s ease-in-out infinite;
}
@keyframes scrollhint { 0% { top: -50%; } 70% { top: 100%; } 100% { top: 100%; } }

/* ---------- Proof / Zahlen ---------- */
.proof { background: var(--ink-2); color: var(--text-inv); }
.proof .wrap {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  padding-top: 64px; padding-bottom: 64px;
}
.proof .num {
  font-family: var(--serif); font-size: clamp(2.4rem, 4vw, 3.4rem);
  color: #fdfcf8; display: block; line-height: 1;
}
.proof .num em { font-style: normal; color: var(--brass); }
.proof .lbl { display: block; margin-top: 12px; font-size: 0.92rem; color: var(--text-inv-soft); max-width: 260px; }

/* ---------- Sektionen ---------- */
section.block { padding: 110px 0; }
section.block.alt { background: var(--paper-dim); }
section.block.dark { background: var(--ink); color: var(--text-inv); }
.kicker {
  text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.76rem;
  color: var(--brass); margin-bottom: 18px; font-weight: 600;
}
section.block h2 { font-size: clamp(1.9rem, 4.6vw, 4.2rem); max-width: none; color: var(--ink); }
section.block.dark h2 { color: #fdfcf8; }
.section-intro { margin-top: 20px; max-width: 620px; color: var(--text-soft); font-size: 1.08rem; }
section.block.dark .section-intro { color: var(--text-inv-soft); }

/* ---------- Leistungen: nummerierte Karten ---------- */
.sector-cards { margin-top: 64px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.sector-card {
  background: #fff; border: 1px solid var(--line);
  padding: 0 0 34px; overflow: hidden;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s;
}
.sector-card:hover { transform: translateY(-8px); box-shadow: 0 24px 48px rgba(31, 28, 39, 0.12); }
.sector-visual { height: 190px; position: relative; overflow: hidden; }
.sector-visual svg { width: 100%; height: 100%; display: block; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.sector-card:hover .sector-visual svg { transform: scale(1.06); }
.sector-body { padding: 30px 30px 0; }
.sector-num { font-family: var(--serif); font-size: 1rem; color: var(--brass); display: block; margin-bottom: 10px; }
.sector-card h3 { font-size: 1.45rem; margin-bottom: 10px; }
.sector-card p { font-size: 0.96rem; color: var(--text-soft); margin-bottom: 14px; }
.sector-card ul { list-style: none; }
.sector-card li { padding: 9px 0; border-top: 1px solid var(--line); font-size: 0.93rem; color: var(--text); }

/* ---------- Methode: animierte Flat-Icons ---------- */
.method-grid { margin-top: 70px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 44px; counter-reset: step; }
.method-step { position: relative; }
.method-icon { width: 88px; height: 88px; margin-bottom: 24px; }
.method-icon svg { width: 100%; height: 100%; overflow: visible; }
.method-step h3 { font-size: 1.3rem; margin-bottom: 10px; color: #fdfcf8; }
.method-step p { font-size: 0.95rem; color: var(--text-inv-soft); }
.method-step .step-no { font-family: var(--serif); color: var(--brass); font-size: 0.95rem; display: block; margin-bottom: 8px; }

/* Icon-Grundstil: flat, Strichzeichnung auf Dunkel */
.mi-stroke { fill: none; stroke: #f0eee6; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.mi-brass { stroke: var(--brass); }
.mi-fill { fill: rgba(176, 159, 103, 0.18); stroke: none; }

/* Stroke-Draw beim Einblenden */
.method-step .draw { stroke-dasharray: 300; stroke-dashoffset: 300; }
.method-step.is-visible .draw { animation: draw 1.6s cubic-bezier(0.6, 0, 0.2, 1) forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }

/* Analyse: Balken wachsen, wiederkehrend */
.method-step.is-visible .bar { animation: bargrow 3.2s cubic-bezier(0.6, 0, 0.2, 1) infinite; transform-origin: bottom; }
.method-step.is-visible .bar.b2 { animation-delay: 0.25s; }
.method-step.is-visible .bar.b3 { animation-delay: 0.5s; }
@keyframes bargrow { 0% { transform: scaleY(0.25); } 40% { transform: scaleY(1); } 75% { transform: scaleY(1); } 100% { transform: scaleY(0.25); } }

/* Organisation: Knoten pulsieren nacheinander */
.method-step.is-visible .node { animation: nodepulse 2.8s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
.method-step.is-visible .node.n2 { animation-delay: 0.4s; }
.method-step.is-visible .node.n3 { animation-delay: 0.8s; }
.method-step.is-visible .node.n4 { animation-delay: 1.2s; }
@keyframes nodepulse { 0%, 100% { transform: scale(1); } 12% { transform: scale(1.35); } 24% { transform: scale(1); } }

/* Prozesse: Punkt wandert entlang Pfad */
.method-step.is-visible .flow-dot { animation: flowdot 3s cubic-bezier(0.45, 0, 0.55, 1) infinite; }
@keyframes flowdot {
  0% { offset-distance: 0%; opacity: 0; }
  8% { opacity: 1; }
  92% { opacity: 1; }
  100% { offset-distance: 100%; opacity: 0; }
}

/* Skillset: Ring füllt sich */
.method-step.is-visible .ring { stroke-dasharray: 220; stroke-dashoffset: 220; animation: ringfill 3.4s cubic-bezier(0.6, 0, 0.2, 1) infinite; }
@keyframes ringfill { 0% { stroke-dashoffset: 220; } 45% { stroke-dashoffset: 55; } 80% { stroke-dashoffset: 55; } 100% { stroke-dashoffset: 220; } }

/* ---------- KI-Transformation ---------- */
.ki-split { margin-top: 64px; display: grid; grid-template-columns: 1.1fr 1fr; gap: 72px; align-items: center; }
.ki-points { list-style: none; margin-top: 8px; }
.ki-points li { padding: 20px 0; border-top: 1px solid var(--line); }
.ki-points li:last-child { border-bottom: 1px solid var(--line); }
.ki-points strong { display: block; font-family: var(--serif); font-size: 1.15rem; font-weight: 400; margin-bottom: 4px; }
.ki-points span { font-size: 0.94rem; color: var(--text-soft); }
.ki-visual { position: relative; }
.ki-visual svg { width: 100%; height: auto; display: block; }
.orbit { animation: orbitspin 26s linear infinite; transform-origin: center; transform-box: fill-box; }
.orbit.slow { animation-duration: 40s; animation-direction: reverse; }
@keyframes orbitspin { to { transform: rotate(360deg); } }

/* ---------- Referenzen ---------- */
.ref-list {
  margin-top: 48px; display: flex; flex-wrap: wrap; gap: 14px 40px;
  list-style: none; font-size: 1.15rem; color: var(--text-soft); font-family: var(--serif);
}
blockquote.voice { margin-top: 64px; border-left: 3px solid var(--brass); padding-left: 32px; max-width: 760px; }
blockquote.voice p { font-family: var(--serif); font-size: 1.45rem; line-height: 1.4; color: var(--ink); }
blockquote.voice footer { margin-top: 18px; font-size: 0.92rem; color: var(--text-soft); }

/* ---------- Timeline ---------- */
.timeline { margin-top: 56px; }
.timeline-item {
  display: grid; grid-template-columns: 130px 1fr; gap: 28px;
  padding: 26px 0; border-top: 1px solid var(--line);
}
.timeline-item .year { font-family: var(--serif); font-size: 1.1rem; color: var(--brass); }
.timeline-item h3 { font-size: 1.12rem; margin-bottom: 5px; }
.timeline-item p { font-size: 0.95rem; color: var(--text-soft); }

/* ---------- Blog-Karten ---------- */
.post-grid { margin-top: 56px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.post-card {
  background: #fff; border: 1px solid var(--line); display: block; text-decoration: none;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s;
}
.post-card:hover { transform: translateY(-8px); box-shadow: 0 24px 48px rgba(31, 28, 39, 0.12); }
.post-card .post-visual { height: 150px; overflow: hidden; }
.post-card .post-visual svg { width: 100%; height: 100%; display: block; }
.post-card .post-body { padding: 26px 26px 30px; }
.post-card .post-meta { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--brass); margin-bottom: 10px; }
.post-card h3 { font-size: 1.22rem; color: var(--ink); margin-bottom: 8px; }
.post-card p { font-size: 0.93rem; color: var(--text-soft); }

/* Artikel */
.article { padding: 150px 0 90px; }
.article .wrap { max-width: 760px; }
.article h1 { font-size: clamp(2rem, 4.5vw, 3rem); color: var(--ink); }
.article .post-meta { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--brass); margin-bottom: 18px; }
.article h2 { font-size: 1.5rem; margin: 44px 0 14px; }
.article p, .article li { color: var(--text); margin-bottom: 14px; font-size: 1.02rem; }
.article ul, .article ol { padding-left: 22px; margin-bottom: 16px; }
.article .takeaway {
  border-left: 3px solid var(--brass); background: var(--paper-dim);
  padding: 22px 26px; margin: 36px 0;
}
.article .takeaway p { margin: 0; font-size: 0.98rem; }

/* ---------- FAQ ---------- */
.faq { margin-top: 48px; max-width: 800px; }
.faq details { border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; padding: 20px 0; font-weight: 600; font-size: 1.03rem;
  list-style: none; position: relative; padding-right: 36px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 6px; top: 16px;
  font-size: 1.4rem; color: var(--brass); font-weight: 400; transition: transform 0.3s;
}
.faq details[open] summary::after { content: "–"; }
.faq .answer { padding: 0 0 22px; color: var(--text-soft); max-width: 700px; }

/* ---------- Kontakt ---------- */
.contact-grid { margin-top: 56px; display: grid; grid-template-columns: 1fr 1.2fr; gap: 72px; }
.contact-info p { margin-bottom: 16px; color: var(--text-inv-soft); }
.contact-info a { color: var(--brass); text-decoration: none; }
.contact-info a:hover { text-decoration: underline; }
section.dark form label { display: block; font-size: 0.86rem; font-weight: 600; margin-bottom: 6px; color: var(--text-inv); }
section.dark form input, section.dark form textarea {
  width: 100%; padding: 13px 15px; margin-bottom: 22px;
  border: 1px solid rgba(240, 238, 230, 0.25); background: rgba(247, 245, 239, 0.06);
  font-family: inherit; font-size: 0.98rem; color: var(--text-inv);
}
section.dark form input:focus, section.dark form textarea:focus {
  outline: 2px solid var(--brass); outline-offset: -1px;
}
.form-note { font-size: 0.82rem; color: var(--text-inv-soft); margin-bottom: 22px; }
.form-note a { color: var(--brass); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--text-inv-soft); padding: 48px 0; font-size: 0.88rem; border-top: 1px solid var(--line-dark); }
.site-footer .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 18px; }
.site-footer a { color: var(--text-inv-soft); text-decoration: none; margin-right: 22px; }
.site-footer a:hover { color: var(--brass); }

/* ---------- Legal ---------- */
.legal { padding: 150px 0 90px; max-width: 780px; }
.legal h1 { font-size: 2.2rem; margin-bottom: 36px; color: var(--ink); }
.legal h2 { font-size: 1.35rem; margin: 40px 0 12px; }
.legal p, .legal li { color: var(--text); margin-bottom: 12px; }
.legal ul { padding-left: 22px; }
.legal a { color: var(--accent); }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .site-nav {
    position: fixed; top: 76px; left: 0; right: 0; flex-direction: column;
    background: var(--ink); padding: 28px; gap: 20px; display: none;
  }
  .site-nav.open { display: flex; }
  body.light-page .site-nav { background: var(--paper); }
  .nav-toggle { display: block; }
  .proof .wrap { grid-template-columns: 1fr; gap: 36px; }
  .sector-cards, .method-grid, .post-grid { grid-template-columns: 1fr; }
  .ki-split, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .timeline-item { grid-template-columns: 1fr; gap: 6px; }
  section.block { padding: 72px 0; }
  .hero { min-height: 70vh; padding: 130px 0 80px; }
}

/* ---------- Logo ---------- */
.wordmark { display: flex; align-items: center; gap: 12px; }
.logo-mark { height: 30px; width: auto; display: block; }

/* ---------- Founder-Quote (Hintergrund) ---------- */
.founder-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px; align-items: center; }
.founder-quote { border: none; padding: 0; max-width: 680px; }
.founder-quote p { font-family: var(--serif); font-size: clamp(1.7rem, 3.4vw, 2.5rem); line-height: 1.28; color: var(--ink); }
.founder-quote footer { margin-top: 22px; font-size: 0.95rem; color: var(--text-soft); }
.founder-photo { position: relative; }
.founder-photo img { width: 100%; height: auto; display: block; }
.founder-photo::after { content: ""; position: absolute; inset: 18px -18px -18px 18px; border: 1px solid var(--brass); z-index: -1; }
.founder-photo.empty { display: none; }

/* ---------- Voices-Slider ---------- */
.voices-slider { margin-top: 64px; max-width: 860px; }
.voices-track { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
.voices-track::-webkit-scrollbar { display: none; }
.voice-slide { flex: 0 0 100%; scroll-snap-align: start; display: grid; grid-template-columns: 150px 1fr; gap: 36px; align-items: start; padding: 4px; }
.voice-photo { width: 150px; height: 150px; overflow: hidden; border-radius: 50%; border: 1px solid var(--line); }
.voice-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.voice-photo.empty { background: var(--paper-dim); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 2rem; color: var(--brass); }
.voice-photo.empty img { display: none; }
.voice-slide blockquote { border-left: 3px solid var(--brass); padding-left: 26px; }
.voice-slide blockquote p { font-family: var(--serif); font-size: 1.3rem; line-height: 1.42; color: var(--ink); }
.voice-slide figcaption { margin-top: 14px; padding-left: 29px; font-size: 0.92rem; color: var(--text-soft); }
.voices-dots { display: flex; gap: 10px; margin-top: 28px; padding-left: 186px; }
.voices-dots button { width: 10px; height: 10px; border-radius: 50%; border: 1px solid var(--brass); background: transparent; cursor: pointer; padding: 0; }
.voices-dots button.active { background: var(--brass); }
@media (max-width: 940px) {
  .founder-grid { grid-template-columns: 1fr; gap: 40px; }
  .voice-slide { grid-template-columns: 1fr; }
  .voices-dots { padding-left: 0; }
}

/* Header-Logo horizontal */
.logo-header { height: 22px; width: auto; display: block; }
@media (max-width: 940px) { .logo-header { height: 18px; } }

/* Markt-Charts */
.chart-grid { margin-top: 56px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.chart-card { background: #fff; border: 1px solid var(--line); padding: 28px; }
.chart-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
.chart-card .chart-sub { font-size: 0.85rem; color: var(--text-soft); margin-bottom: 18px; }
.chart-card svg { width: 100%; height: auto; display: block; }
.chart-line { fill: none; stroke: var(--brass); stroke-width: 2.5; stroke-linecap: round; }
.reveal.is-visible .chart-line { stroke-dasharray: 1200; stroke-dashoffset: 1200; animation: chartdraw 2s cubic-bezier(0.6,0,0.2,1) forwards; }
@keyframes chartdraw { to { stroke-dashoffset: 0; } }
.chart-note { margin-top: 24px; font-size: 0.8rem; color: var(--text-soft); }
@media (max-width: 940px) { .chart-grid { grid-template-columns: 1fr; } }

/* Formular: 2 Schritte + Validierung */
.form-progress { display: flex; align-items: center; gap: 14px; margin-bottom: 30px; }
.fp-step { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--text-inv-soft); }
.fp-step em { font-style: normal; font-family: var(--serif); width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--text-inv-soft); display: flex; align-items: center; justify-content: center; }
.fp-step.active { color: var(--brass); }
.fp-step.active em { border-color: var(--brass); background: rgba(176,159,103,0.15); }
.fp-line { flex: 1; height: 1px; background: rgba(240,238,230,0.25); }
.form-step { border: none; padding: 0; margin: 0; }
.form-step[hidden] { display: none; }
section.dark form select { width: 100%; padding: 13px 15px; margin-bottom: 22px; border: 1px solid rgba(240,238,230,0.25); background: rgba(247,245,239,0.06); font-family: inherit; font-size: 0.98rem; color: var(--text-inv); }
section.dark form select:focus { outline: 2px solid var(--brass); outline-offset: -1px; }
section.dark form select option { color: var(--ink); background: var(--paper); }
.field-error { display: none; margin: -16px 0 18px; font-size: 0.85rem; color: #d98d7c; }
.field-error.show { display: block; }
form .invalid { border-color: #d98d7c !important; }
.form-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hintergrund-Sektion mit Foto (Oakley-Stil) */
.bg-section { position: relative; overflow: hidden; }
.bg-media { position: absolute; inset: -14% 0; z-index: 0; will-change: transform; }
.bg-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: 72% 22%;
  opacity: 0.22; filter: grayscale(55%) contrast(1.05);
  animation: kenburns 26s ease-in-out infinite alternate;
}
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.09); } }
.bg-section::before { content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg, rgba(31,28,39,0.55) 30%, rgba(31,28,39,0.1) 70%); }
.bg-content { position: relative; z-index: 2; }
.bg-section .founder-quote p { color: #fdfcf8; }
.bg-section .founder-quote footer { color: var(--text-inv-soft); }
.bg-section .timeline-item { border-top-color: rgba(240,238,230,0.18); }
.bg-section .timeline-item h3 { color: #fdfcf8; }
.bg-section .timeline-item p { color: var(--text-inv-soft); }
.bg-section .section-intro { color: var(--text-inv-soft); }

/* Hero: dynamische Linien und Kreise */
.cline {
  stroke-dasharray: 1700; stroke-dashoffset: 1700;
  animation: linedraw 3.2s cubic-bezier(0.5,0,0.2,1) forwards, linedrift 16s ease-in-out 3.2s infinite alternate;
}
.cl2 { animation-delay: 0.25s, 3.45s; }
.cl3 { animation-delay: 0.5s, 3.7s; }
.cl4 { animation-delay: 0.75s, 3.95s; }
.cl5 { animation-delay: 1s, 4.2s; }
@keyframes linedraw { to { stroke-dashoffset: 0; } }
@keyframes linedrift { from { transform: translateY(0); } to { transform: translateY(-22px); } }
.ring-spin { animation: ringspin 50s linear infinite; transform-origin: center; transform-box: fill-box; }
@keyframes ringspin { to { transform: rotate(360deg); } }
.ring-pulse { animation: ringpulse 7s ease-in-out infinite; }
.ring-pulse.rp2 { animation-delay: 2.5s; }
@keyframes ringpulse { 0%, 100% { stroke-opacity: 0.18; } 50% { stroke-opacity: 0.5; } }
.dot-pulse { animation: dotpulse 3.5s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
@keyframes dotpulse { 0%, 100% { transform: scale(1); fill-opacity: 0.8; } 50% { transform: scale(1.7); fill-opacity: 0.4; } }

/* Hero-Animationen: staerker sichtbar */
@keyframes linedrift {
  from { transform: translateY(0) translateX(0); stroke-opacity: 0.06; }
  50%  { stroke-opacity: 0.18; }
  to   { transform: translateY(-36px) translateX(14px); stroke-opacity: 0.10; }
}
.cline { animation-duration: 2.4s, 9s; }
.cl2 { animation-delay: 0.2s, 2.6s; }
.cl3 { animation-delay: 0.4s, 2.8s; }
.cl4 { animation-delay: 0.6s, 3.0s; }
.cl5 { animation-delay: 0.8s, 3.2s; }
.ring-spin { animation-duration: 22s; }
@keyframes ringpulse { 0%, 100% { stroke-opacity: 0.15; } 50% { stroke-opacity: 0.6; } }
@keyframes dotpulse { 0%, 100% { transform: scale(1); fill-opacity: 0.9; } 50% { transform: scale(2); fill-opacity: 0.35; } }

/* Kontakt: Portrait */
.contact-photo { position: relative; max-width: 300px; margin-bottom: 26px; }
.contact-photo img { width: 100%; height: auto; display: block; filter: none; }
.contact-photo::after { content: ""; position: absolute; inset: 14px -14px -14px 14px; border: 1px solid var(--brass); z-index: -1; }
.contact-name { font-family: var(--serif); font-size: 1.2rem; color: #fdfcf8; line-height: 1.3; }
.contact-name span { font-family: var(--sans); font-size: 0.85rem; color: var(--text-inv-soft); }

/* Kontakt: integrierter Einklinker */
.contact-photo, .contact-name { display: none; }
.contact-card { display: flex; align-items: center; gap: 18px; margin-top: 30px; padding: 18px 20px; border: 1px solid rgba(240,238,230,0.22); background: rgba(247,245,239,0.05); max-width: 380px; }
.contact-card img { width: 84px; height: 84px; object-fit: cover; object-position: 50% 20%; border-radius: 50%; border: 2px solid var(--brass); }
.contact-card strong { display: block; font-family: var(--serif); font-weight: 400; font-size: 1.1rem; color: #fdfcf8; }
.contact-card span { display: block; font-size: 0.83rem; color: var(--text-inv-soft); }

/* Consent-Banner */
.consent-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
  background: var(--ink); border-top: 1px solid rgba(176,159,103,0.4);
  padding: 18px 28px; display: flex; align-items: center; justify-content: center;
  gap: 28px; flex-wrap: wrap;
}
.consent-banner p { color: var(--text-inv-soft); font-size: 0.9rem; max-width: 640px; margin: 0; }
.consent-banner a { color: var(--brass); }
.consent-actions { display: flex; gap: 12px; }

/* Hero: Wachstumslinien, deutlich staerkere Bewegung */
.gline {
  stroke-dasharray: 2200;
  stroke-dashoffset: 2200;
  animation: gdraw 4.5s cubic-bezier(0.45, 0, 0.2, 1) forwards,
             gflow 7s ease-in-out 4.5s infinite alternate;
  stroke-opacity: 0.35;
}
.gline.g2 { animation-delay: 0.5s, 5s; stroke-opacity: 0.22; }
.gline.g3 { animation-delay: 0.9s, 5.4s; stroke-opacity: 0.75; }
.gline.g4 { animation-delay: 1.3s, 5.8s; stroke-opacity: 0.15; }
@keyframes gdraw { to { stroke-dashoffset: 0; } }
@keyframes gflow {
  from { transform: translateY(0); }
  to   { transform: translateY(-46px); }
}
.gdot {
  offset-path: path('M-60,780 C280,750 560,660 820,520 C1080,380 1300,260 1520,180');
  offset-rotate: 0deg;
  animation: gtravel 9s cubic-bezier(0.5, 0, 0.4, 1) 4.5s infinite;
  opacity: 0;
}
.gdot.gd2 {
  offset-path: path('M-60,820 C300,800 620,720 880,600 C1120,490 1320,380 1520,300');
  animation-duration: 12s;
  animation-delay: 6s;
}
@keyframes gtravel {
  0% { offset-distance: 0%; opacity: 0; }
  6% { opacity: 1; }
  90% { opacity: 1; }
  100% { offset-distance: 100%; opacity: 0; }
}

/* Whitepaper-Download (Hintergrund-Sektion) */
.wp-download {
  margin-top: 56px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  border: 1px solid rgba(176,159,103,0.45); background: rgba(176,159,103,0.08);
  padding: 26px 30px;
}
.wp-icon { width: 48px; height: 48px; flex-shrink: 0; }
.wp-icon svg { width: 100%; height: 100%; }
.wp-text { flex: 1; min-width: 240px; }
.wp-text strong { display: block; font-family: var(--serif); font-weight: 400; font-size: 1.15rem; color: #fdfcf8; margin-bottom: 4px; }
.wp-text span { font-size: 0.9rem; color: var(--text-inv-soft); }

/* Whitepaper-Modal */
.wp-modal {
  position: fixed; inset: 0; z-index: 300; background: rgba(31,28,39,0.75);
  display: flex; align-items: center; justify-content: center; padding: 24px;
}
.wp-modal-box {
  background: var(--paper); max-width: 440px; width: 100%; padding: 36px;
  position: relative; box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}
.wp-modal-box h3 { font-size: 1.5rem; margin-bottom: 8px; color: var(--ink); }
.wp-modal-box p { color: var(--text-soft); font-size: 0.95rem; margin-bottom: 18px; }
.wp-modal-box label { display: block; font-size: 0.86rem; font-weight: 600; margin-bottom: 6px; color: var(--ink); }
.wp-modal-box input { width: 100%; padding: 12px 14px; margin-bottom: 16px; border: 1px solid var(--line); background: #fff; font-family: inherit; font-size: 0.97rem; }
.wp-modal-box input:focus { outline: 2px solid var(--brass); outline-offset: -1px; }
.wp-modal-box .field-error { margin: -12px 0 12px; }
.wp-modal-box .form-note { font-size: 0.8rem; color: var(--text-soft); }
.wp-modal-box .form-note a { color: var(--accent); }
.wp-close {
  position: absolute; top: 10px; right: 14px; background: none; border: none;
  font-size: 1.8rem; color: var(--text-soft); cursor: pointer; line-height: 1;
}
