/* Grundstil winfriedruhs.com
 *
 * Uebernommen aus der bisherigen Einzelseite (pages/index.html), bereinigt um
 * drei Dinge, die nur in Funnelbox gebraucht wurden:
 *   - die CSS-Sprachumschaltung ueber [data-en] / [data-de]. Mit echten
 *     /de/- und /en/-Adressen steht je Seite nur noch eine Sprache im HTML.
 *   - die Selektoren fuer den GHL-Seitenwrapper.
 *   - die !important-Kaskade gegen das Builder-CSS bleibt vorerst stehen,
 *     sie stoert nicht und wird beim Feinschliff der Seiten abgeraeumt.
 *
 * Ergaenzt um die Navigation. Die alte Seite hatte keine, sie war eine
 * einzelne Verkaufsseite.
 */

:root {
  color-scheme: light only;
  --bg: #F6F1E7; --bg-soft: #EFE7D6; --bg-deep: #E8DEC7;
  --ink: #1F1A16; --ink-soft: #3A332C; --muted: #6E665C;
  --rule: #C9BFA8; --accent: #8A5A2B; --accent-soft: #B88759; --accent-deep: #6B4220;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; background-color: var(--bg) !important; margin: 0 !important; padding: 0 !important; }
body { background-color: var(--bg) !important; color: var(--ink-soft); font-family: 'Inter', system-ui, sans-serif; font-weight: 300; font-size: 18px; line-height: 1.7; overflow-x: hidden; -webkit-font-smoothing: antialiased; margin: 0 !important; padding: 0 !important; }
main { display: block; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: 'Fraunces', 'Cormorant Garamond', Georgia, serif; font-weight: 400; color: var(--ink); letter-spacing: -0.01em; line-height: 1.15; }
h1 { font-size: clamp(2.2rem, 5.2vw, 4.2rem); font-weight: 300; }
h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 400; }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); font-weight: 400; }
.eyebrow { font-family: 'Inter', sans-serif; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); font-weight: 500; }
p { margin-bottom: 1em; color: var(--ink-soft); }
p:last-child { margin-bottom: 0; }
a { color: var(--accent); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color .3s; }
a:hover { border-bottom-color: var(--accent); }
em { font-family: 'Fraunces', serif; font-style: italic; font-weight: 400; color: var(--ink); }
strong { font-weight: 500; color: var(--ink); }
hr.rule { border: none; height: 1px; background: var(--rule); margin: 0; }

.scroll-progress { position: fixed; top: 0; left: 0; width: 100%; height: 2px; background: transparent; z-index: 101; pointer-events: none; }
.scroll-progress-bar { height: 100%; background: var(--accent); width: 0%; transform-origin: left center; transition: width 0.08s linear; }

.js .reveal-on-scroll { opacity: 0; transform: translateY(24px); transition: opacity 1.2s cubic-bezier(0.19, 1, 0.22, 1), transform 1.2s cubic-bezier(0.19, 1, 0.22, 1); will-change: opacity, transform; }
.js .reveal-on-scroll.is-revealed { opacity: 1; transform: translateY(0); }
.draw-on-scroll { position: relative; overflow: hidden; }
.js .draw-on-scroll::after { content: ''; position: absolute; inset: 0; background: var(--bg); transform: scaleX(1); transform-origin: center center; transition: transform 1.4s cubic-bezier(0.19, 1, 0.22, 1); }
.js .draw-on-scroll.is-drawn::after { transform: scaleX(0); }
hr.rule.draw-on-scroll { position: relative; overflow: visible; height: 1px; background: transparent; border: none; margin: 0; }
.js hr.rule.draw-on-scroll::before { content: ''; position: absolute; inset: 0; background: var(--rule); transform: scaleX(0); transform-origin: center center; transition: transform 1.4s cubic-bezier(0.19, 1, 0.22, 1); }
hr.rule.draw-on-scroll.is-drawn::before { transform: scaleX(1); }
hr.rule.draw-on-scroll::after { display: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll { opacity: 1; transform: none; transition: none; }
  .draw-on-scroll::after { transform: scaleX(0); transition: none; }
  hr.rule.draw-on-scroll::before { transform: scaleX(1); transition: none; }
}

.topnav { position: sticky; top: 0; z-index: 100; background: rgba(246, 241, 231, 0.88); backdrop-filter: saturate(180%) blur(10px); -webkit-backdrop-filter: saturate(180%) blur(10px); border-bottom: 1px solid var(--rule); }
.topnav-inner { max-width: 1180px; margin: 0 auto; padding: 18px 40px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.topnav-brand { font-family: 'Fraunces', serif; font-size: 18px; letter-spacing: 0.20em; text-transform: uppercase; color: var(--ink); font-weight: 500; }
.lang-switcher { display: flex; gap: 0; align-items: center; font-family: 'Inter', sans-serif; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; }
.lang-btn { background: none; border: none; padding: 6px 12px; cursor: pointer; color: var(--muted); font: inherit; letter-spacing: inherit; text-transform: inherit; transition: color .2s; }
.lang-btn.active { color: var(--ink); font-weight: 500; }
.lang-btn:hover { color: var(--ink); }
.lang-sep { color: var(--rule); padding: 0 2px; }

.btn { display: inline-block; font-family: 'Inter', sans-serif; font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500; padding: 18px 36px; border: 1px solid var(--ink); background: var(--ink); color: var(--bg); cursor: pointer; transition: all .3s ease; text-align: center; border-radius: 0; }
.btn:hover { background: var(--accent); border-color: var(--accent); color: var(--bg); border-bottom-color: var(--accent); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--bg); }

section { position: relative; padding: clamp(80px, 10vw, 140px) 0; }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 40px; }
.wrap-narrow { max-width: 780px; margin: 0 auto; padding: 0 40px; }
.section-eyebrow { display: block; text-align: center; margin-bottom: 24px; }

/* ============================================================
   01 HERO
   ============================================================ */
.hero { position: relative; min-height: 85vh; padding: 0; background: var(--bg); overflow: hidden; display: flex; align-items: center; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 100% 35%; display: block; filter: saturate(0.96) contrast(0.98); }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, var(--bg) 0%, rgba(246, 241, 231, 0.95) 25%, rgba(246, 241, 231, 0.72) 42%, rgba(246, 241, 231, 0.32) 60%, rgba(246, 241, 231, 0) 78%); pointer-events: none; }
.hero-inner { position: relative; z-index: 2; max-width: 1180px; margin: 0 auto; padding: 60px 40px; width: 100%; display: grid; grid-template-columns: minmax(0, 720px) 1fr; gap: 40px; align-items: start; }
.hero-text { max-width: 700px; }
.hero-text .eyebrow { margin: 0 0 32px 0 !important; padding: 0; display: block; font-size: 14px; letter-spacing: 0.22em; }

.hero-text h1 { margin-top: 0 !important; }
.hero h1 { margin-bottom: 24px; font-size: clamp(2.6rem, 5.6vw, 4.4rem); line-height: 1.05; font-weight: 300; letter-spacing: -0.02em; }
.hero-tagline { font-family: 'Fraunces', serif; font-style: italic; font-weight: 300; font-size: clamp(1.4rem, 2.4vw, 1.85rem); color: var(--ink); margin-bottom: 36px; line-height: 1.3; max-width: 28ch; }
.hero-lede { font-family: 'Inter', sans-serif; font-size: clamp(1rem, 1.4vw, 1.1rem); font-weight: 300; line-height: 1.7; color: var(--ink-soft); margin-bottom: 36px; max-width: 50ch; }
.hero-cta { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.hero-cta .meta { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); font-style: italic; font-family: 'Fraunces', serif; }

@keyframes heroEmFocus {
  0% { opacity: 0; letter-spacing: 0.08em; filter: blur(2px); }
  60% { opacity: 0.85; filter: blur(0.4px); }
  100% { opacity: 1; letter-spacing: 0em; filter: blur(0); }
}
.hero h1 em { display: inline-block; opacity: 0; letter-spacing: 0.08em; filter: blur(2px); color: var(--accent); animation: heroEmFocus 3.8s cubic-bezier(0.19, 1, 0.22, 1) 0s forwards; }
@media (prefers-reduced-motion: reduce) { .hero h1 em { animation: none; opacity: 1; letter-spacing: 0; filter: none; } }

/* ============================================================
   02 PATTERN
   ============================================================ */
.pattern { background: var(--bg); border-top: 1px solid var(--rule); }
.pattern-inner { max-width: 820px; margin: 0 auto; padding: 0 40px; }
.pattern-head { margin-bottom: 60px; }
.pattern-head .eyebrow { display: block; margin-bottom: 24px; }
.pattern-head h2 { margin-bottom: 0; }
.pattern-intro p { font-size: 18px; line-height: 1.75; max-width: 60ch; }
.pattern-prompt { font-family: 'Fraunces', serif; font-style: italic; color: var(--ink); font-size: 1.15rem; margin: 50px 0 30px; }
.pattern-scenarios { display: flex; flex-direction: column; gap: 28px; margin-bottom: 50px; }
.pattern-scenario { padding: 26px 30px; background: var(--bg-soft); border-left: 2px solid var(--accent-soft); }
.pattern-scenario p { font-size: 16.5px; line-height: 1.7; color: var(--ink-soft); margin: 0; }
.pattern-scenario p strong { font-family: 'Fraunces', serif; font-style: italic; font-weight: 400; color: var(--accent-deep); margin-right: 4px; }
.pattern-close p { font-size: 17.5px; line-height: 1.75; max-width: 60ch; }
.pattern-close p:last-child { font-family: 'Fraunces', serif; font-style: italic; color: var(--ink); font-size: 1.2rem; margin-top: 18px; }

/* ============================================================
   03 CAMPS
   ============================================================ */

.camps-inner { max-width: 920px; margin: 0 auto; padding: 0 40px; }
.camps-head { text-align: center; margin-bottom: 70px; max-width: 720px; margin-left: auto; margin-right: auto; }
.camps-head .eyebrow { display: block; margin-bottom: 24px; }
.camps-intro { font-family: 'Fraunces', serif; font-style: italic; font-size: 1.15rem; color: var(--muted); margin-top: 28px; }
.camps-list { display: flex; flex-direction: column; gap: 50px; margin-bottom: 70px; }
.camp { display: grid; grid-template-columns: 180px 1fr; gap: 50px; align-items: start; padding-top: 36px; border-top: 1px solid var(--rule); }
.camp-num { font-family: 'Inter', sans-serif; font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--accent); font-weight: 500; padding-top: 6px; }
.camp-num em { font-family: 'Fraunces', serif; font-style: italic; font-weight: 400; color: var(--ink); display: block; font-size: 1.5rem; letter-spacing: -0.01em; text-transform: none; margin-top: 8px; }
.camp p { font-size: 17px; line-height: 1.75; color: var(--ink-soft); }
.camps-bridge { text-align: center; padding: 50px 0 0; border-top: 2px solid var(--ink); max-width: 760px; margin: 0 auto; }
.camps-bridge p { font-family: 'Fraunces', serif; font-size: 1.25rem; font-weight: 300; color: var(--ink); line-height: 1.55; margin-bottom: 18px; }
.camps-bridge p:last-child { font-style: italic; color: var(--accent-deep); font-size: 1.1rem; }

/* ============================================================
   04 BUILT FROM PLEASURE - METHOD
   ============================================================ */
.method { background: var(--bg); }
.method-inner { max-width: 820px; margin: 0 auto; padding: 0 40px; text-align: center; }
.method-head { margin-bottom: 60px; }
.method-head .eyebrow { display: inline-block; margin-bottom: 24px; }
.method-head h2 { font-size: clamp(2rem, 4vw, 3rem); margin: 0; }
.method-tagline { font-family: 'Fraunces', serif; font-style: italic; color: var(--muted); font-size: 1.2rem; margin-top: 22px; }
.method-body { text-align: left; max-width: 640px; margin: 0 auto; }
.method-body p { font-size: 17px; line-height: 1.8; color: var(--ink-soft); margin-bottom: 22px; }
.method-couplets { margin: 50px 0; padding: 40px 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); display: flex; flex-direction: column; gap: 30px; }
.method-couplet { font-family: 'Fraunces', serif; font-size: 1.2rem; line-height: 1.5; color: var(--ink); }
.method-couplet .neg { color: var(--muted); font-style: italic; display: block; margin-bottom: 6px; font-size: 1rem; }
.method-couplet .pos { color: var(--ink); font-weight: 400; }
.method-stamp { text-align: center; margin-top: 60px; padding-top: 50px; border-top: 1px solid var(--rule); }
.method-stamp p { font-family: 'Fraunces', serif; font-style: italic; font-size: 1.5rem; color: var(--ink); }

/* ============================================================
   05 BIO - WER ICH BIN
   ============================================================ */
.bio { background: var(--bg-soft); }
.bio-inner { max-width: 1120px; margin: 0 auto; padding: 0 40px; display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
.bio-figure { background: var(--bg-deep); position: sticky; top: 100px; }
.bio-figure img { width: 100%; height: auto; display: block; filter: saturate(0.95); }
.bio-text .eyebrow { display: block; margin-bottom: 22px; }
.bio-text h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: 36px; line-height: 1.15; }
.bio-text p { font-size: 17px; line-height: 1.8; color: var(--ink-soft); margin-bottom: 22px; max-width: 56ch; }
.bio-text p strong { color: var(--ink); font-style: italic; font-family: 'Fraunces', serif; font-weight: 400; }

/* ============================================================
   06 PARTNERSHIP
   ============================================================ */
.partnership { background: var(--bg); }
.partnership-inner { max-width: 1180px; margin: 0 auto; padding: 0 40px; }
.partnership-head { text-align: center; margin-bottom: 70px; max-width: 760px; margin-left: auto; margin-right: auto; }
.partnership-head .eyebrow { margin-bottom: 24px; display: block; }
.partnership-head h2 { margin-bottom: 28px; }
.partnership-head p { font-size: 17px; color: var(--muted); line-height: 1.75; }
.partnership-figure { margin-bottom: 60px; max-width: 980px; margin-left: auto; margin-right: auto; overflow: hidden; background: var(--bg-soft); }
.partnership-figure img { width: 100%; height: auto; display: block; filter: saturate(0.93); }
.partnership-duo { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 70px); margin-bottom: 50px; }
.partnership-card { padding: 50px 40px; background: var(--bg-soft); border-top: 2px solid var(--ink); position: relative; }
.partnership-card .role { font-family: 'Inter', sans-serif; font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--accent); font-weight: 500; margin-bottom: 18px; }
.partnership-card h3 { font-family: 'Fraunces', serif; font-size: 1.6rem; font-weight: 400; margin-bottom: 8px; color: var(--ink); }
.partnership-card .subrole { font-family: 'Fraunces', serif; font-style: italic; color: var(--muted); font-size: 15px; margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid var(--rule); }
.partnership-card p { font-size: 16px; line-height: 1.75; color: var(--ink-soft); }
.partnership-caption { text-align: center; font-family: 'Fraunces', serif; font-style: italic; color: var(--muted); font-size: 1.1rem; margin-top: 30px; }

/* ============================================================
   07 PATH
   ============================================================ */
.path { background: var(--bg-soft); }
.path-inner { max-width: 1080px; margin: 0 auto; padding: 0 40px; }
.path-head { text-align: center; max-width: 720px; margin: 0 auto 70px; }
.path-head .eyebrow { display: inline-block; margin-bottom: 24px; }
.path-head h2 { font-family: 'Fraunces', serif; font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 400; color: var(--ink); margin-bottom: 24px; line-height: 1.2; }
.path-head p { font-family: 'Fraunces', serif; font-style: italic; font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--muted); line-height: 1.6; margin: 0; }

.path-stages { position: relative; max-width: 1080px; margin: 0 auto; padding: 20px 0; }
.path-stages::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 1px; background: var(--rule); transform: translateX(-0.5px); }
.stage { display: grid; grid-template-columns: 1fr 90px 1fr; gap: 0; align-items: center; padding: 36px 0; position: relative; transition: opacity 1.1s cubic-bezier(0.19, 1, 0.22, 1), filter 1.1s cubic-bezier(0.19, 1, 0.22, 1); }
.js .stage { opacity: 0.42; filter: saturate(0.75); }
.js .stage.is-illuminated { opacity: 1; filter: saturate(1); }
.stage-spacer { display: block; }
.stage-num { grid-column: 2; justify-self: center; width: 72px; height: 72px; border-radius: 50%; background: var(--bg); border: 1px solid var(--rule); display: flex; align-items: center; justify-content: center; font-family: 'Fraunces', serif; font-size: 1.3rem; font-weight: 400; color: var(--accent); letter-spacing: 0.02em; position: relative; z-index: 2; box-shadow: 0 0 0 0 rgba(138, 90, 43, 0); transition: box-shadow 1s cubic-bezier(0.19, 1, 0.22, 1), background 1s, border-color 1s, transform 1s; }
.stage.is-illuminated .stage-num { background: rgba(184, 135, 89, 0.12); border-color: var(--accent-soft); box-shadow: 0 0 0 4px rgba(184, 135, 89, 0.10), 0 0 28px 4px rgba(138, 90, 43, 0.22), 0 0 60px 16px rgba(138, 90, 43, 0.08); transform: scale(1.05); }
.stage-content { padding: 24px 36px; max-width: 520px; }
.stage:nth-child(odd) .stage-content { grid-column: 1; text-align: right; justify-self: end; }
.stage:nth-child(even) .stage-content { grid-column: 3; text-align: left; justify-self: start; }
.stage-title { font-family: 'Fraunces', serif; font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 400; color: var(--ink); margin: 0 0 12px 0; line-height: 1.15; }
.stage-lede { font-family: 'Fraunces', serif; font-style: italic; font-weight: 300; font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--ink); line-height: 1.45; margin: 0 0 18px 0; }
.stage-body { font-size: 15.5px; color: var(--ink-soft); line-height: 1.75; margin: 0; }

/* ============================================================
   08 DONE FOR YOU
   ============================================================ */
.dfy { background: var(--bg); }
.dfy-inner { max-width: 880px; margin: 0 auto; padding: 0 40px; }
.dfy-head { text-align: center; margin-bottom: 60px; }
.dfy-head .eyebrow { display: inline-block; margin-bottom: 24px; }
.dfy-head h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: 24px; }
.dfy-head .lede { font-family: 'Fraunces', serif; font-style: italic; font-size: 1.2rem; color: var(--muted); margin-top: 22px; }
.dfy-body { text-align: left; max-width: 680px; margin: 0 auto; }
.dfy-body p { font-size: 17px; line-height: 1.8; color: var(--ink-soft); margin-bottom: 24px; }
.dfy-list { font-family: 'Fraunces', serif; font-style: italic; font-size: 1.05rem; color: var(--ink); margin: 28px 0; padding: 26px 30px; background: var(--bg-soft); border-left: 2px solid var(--accent-soft); line-height: 1.8; }
.dfy-promise { font-family: 'Fraunces', serif; font-size: 1.5rem; color: var(--ink); margin: 40px 0 !important; line-height: 1.4; text-align: center; }
.dfy-divide { margin: 50px 0; padding-top: 40px; border-top: 1px solid var(--rule); }
.dfy-vs { font-family: 'Fraunces', serif; font-style: italic; font-size: 1.15rem; color: var(--ink); padding-left: 24px; border-left: 2px solid var(--accent-soft); margin-bottom: 28px !important; }
.dfy-callout { font-family: 'Fraunces', serif; font-style: italic; font-size: clamp(1.3rem, 2.2vw, 1.7rem); color: var(--ink); text-align: center; line-height: 1.4; margin: 40px 0 !important; padding: 28px 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }

/* ============================================================
   09 FOR YOU / NOT FOR YOU
   ============================================================ */
.foryou { background: var(--bg-deep); }
.foryou-inner { max-width: 920px; margin: 0 auto; padding: 0 40px; }
.foryou-head { text-align: center; margin-bottom: 60px; }
.foryou-head .eyebrow { display: inline-block; margin-bottom: 22px; }
.foryou h2 { margin-bottom: 0; }
.foryou-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 70px); }
.foryou-col h3 { font-family: 'Fraunces', serif; font-size: 1.4rem; margin-bottom: 28px; padding-bottom: 16px; border-bottom: 2px solid var(--ink); color: var(--ink); }
.foryou-col.is-not h3 { border-bottom-color: var(--muted); color: var(--muted); }
.foryou-col ul { list-style: none; padding: 0; counter-reset: item; }
.foryou-col li { padding: 18px 0; border-bottom: 1px solid var(--rule); font-family: 'Fraunces', serif; font-size: 1.05rem; font-weight: 300; line-height: 1.55; color: var(--ink); display: flex; gap: 14px; align-items: flex-start; }
.foryou-col li:last-child { border-bottom: none; }
.foryou-col li::before { content: counter(item, decimal-leading-zero); counter-increment: item; font-family: 'Inter', sans-serif; font-size: 10px; letter-spacing: 0.2em; color: var(--accent); font-weight: 500; padding-top: 6px; min-width: 26px; font-style: normal; }
.foryou-col.is-not li { color: var(--muted); }
.foryou-col.is-not li::before { color: var(--muted); }

/* ============================================================
   10 INVESTMENT
   ============================================================ */
.invest { background: var(--bg); }
.invest-inner { max-width: 720px; margin: 0 auto; padding: 0 40px; text-align: center; }
.invest-head { margin-bottom: 50px; }
.invest-head .eyebrow { display: inline-block; margin-bottom: 24px; }
.invest-head h2 { margin: 0; }
.invest-body p { font-size: 17px; line-height: 1.85; color: var(--ink-soft); max-width: 56ch; margin-left: auto; margin-right: auto; margin-bottom: 22px; }
.invest-body p.invest-fig { font-family: 'Fraunces', serif; font-style: italic; font-size: 1.3rem; color: var(--ink); margin: 36px auto; padding: 26px 30px; background: var(--bg-soft); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); max-width: 50ch; }

/* ============================================================
   11 FINAL CTA
   ============================================================ */
.final { text-align: center; padding: clamp(100px, 12vw, 160px) 0; border-top: 1px solid var(--rule); }
.final-inner { max-width: 780px; margin: 0 auto; padding: 0 40px; }
.final .eyebrow { margin-bottom: 32px; display: block; }
.final h2 { margin-bottom: 36px; }
.final p { font-family: 'Fraunces', serif; font-size: 18px; color: var(--muted); line-height: 1.65; margin-bottom: 16px; max-width: 48ch; margin-left: auto; margin-right: auto; }
.final p:last-of-type { margin-bottom: 48px; }
.final .btn { padding: 22px 44px; font-size: 14px; }
.final-stamp { font-family: 'Fraunces', serif; font-style: italic; font-size: 1.05rem; color: var(--accent-deep); margin-top: 40px !important; letter-spacing: 0.02em; }

footer { background: var(--bg-deep); padding: 48px 0; border-top: 1px solid var(--rule); }
.footer-inner { max-width: 1180px; margin: 0 auto; padding: 0 40px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.footer-brand { font-family: 'Fraunces', serif; font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink); font-weight: 500; }
.footer-links { display: flex; gap: 32px; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.footer-links a { color: var(--muted); border-bottom: none; }
.footer-links a:hover { color: var(--ink); border-bottom: none; }

/* ============================================================
   APPLY MODAL - Mobile-optimized (iOS-safe, reachable close button)
   ============================================================ */
.wr-modal { position: fixed; inset: 0; background: rgba(31, 26, 22, 0.78); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); z-index: 9999; display: none; align-items: center; justify-content: center; padding: 20px; }
.wr-modal.open { display: flex; animation: fadeIn .3s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.wr-modal-inner { position: relative; background: var(--bg); width: 100%; max-width: 680px; height: 90vh; max-height: 900px; padding: 0; border: 1px solid var(--rule); display: flex; flex-direction: column; overflow: hidden; }
.wr-modal-close { position: absolute; top: 12px; right: 12px; background: rgba(246, 241, 231, 0.92); border: 1px solid var(--rule); color: var(--ink); font-size: 22px; cursor: pointer; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; z-index: 10; line-height: 1; border-radius: 50%; transition: all .2s ease; padding: 0; }
.wr-modal-close:hover { color: var(--bg); background: var(--ink); border-color: var(--ink); }
.wr-survey-frame { width: 100%; flex: 1; border: 0; background: transparent; display: block; }
.wr-survey-loading { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; background: var(--bg); z-index: 2; pointer-events: none; opacity: 1; transition: opacity 0.4s ease; }
.wr-survey-loading.is-hidden { opacity: 0; }
.wr-survey-loading-label { font-family: 'Inter', sans-serif; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); }
.wr-survey-loading-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); animation: pulse 1.4s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 0.3; transform: scale(0.9); } 50% { opacity: 1; transform: scale(1.1); } }

@media (max-width: 640px) {
  .wr-modal { padding: 0; align-items: flex-start; }
  .wr-modal-inner { height: 100vh; height: 100dvh; max-height: 100vh; max-height: 100dvh; max-width: 100%; border: 0; }
  .wr-modal-close {
    position: sticky; top: 0; align-self: flex-end; margin: 0;
    margin-top: env(safe-area-inset-top, 0px);
    margin-right: max(12px, env(safe-area-inset-right, 0px));
    margin-bottom: -48px;
    width: 40px; height: 40px; font-size: 24px; flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(31, 26, 22, 0.15);
  }
}

/* ============================================================
   MOBILE
   ============================================================ */
@media (max-width: 880px) {
  body { font-size: 17px; }
  .topnav-inner { padding: 14px 24px; }
  .topnav-brand { font-size: 13px; letter-spacing: 0.18em; }
  .wrap, .wrap-narrow { padding: 0 24px; }
  section { padding: 70px 0; }
  .hero { min-height: 0; padding: 0; display: flex; flex-direction: column; align-items: stretch; }
  .hero-bg { position: relative; inset: auto; height: 58vh; min-height: 380px; max-height: 600px; order: 2; flex-shrink: 0; }
  .hero-bg::after { display: none; }
  .hero-bg img { object-position: 100% 20%; }
  .hero-inner { position: relative; z-index: 2; grid-template-columns: 1fr; padding: 32px 24px 48px; align-items: flex-start; background: var(--bg); order: 1; }
  .hero-text { max-width: 100%; }
  .hero h1 { font-size: clamp(2.2rem, 8vw, 3rem); }
  .hero-tagline, .hero-lede { max-width: 100%; }
  .hero-text .eyebrow { color: var(--accent); }
  .pattern-inner, .camps-inner, .method-inner, .dfy-inner, .foryou-inner, .invest-inner, .final-inner, .footer-inner, .partnership-inner, .path-inner { padding-left: 24px; padding-right: 24px; }
  .partnership-duo, .foryou-grid { grid-template-columns: 1fr; gap: 40px; }
  .bio-inner { grid-template-columns: 1fr; gap: 36px; }
  .bio-figure { max-width: 360px; margin: 0 auto; position: static; }
  .camp { grid-template-columns: 1fr; gap: 16px; padding-top: 28px; }
  .path-stages::before { left: 36px; transform: none; }
  .stage { display: flex; align-items: flex-start; grid-template-columns: none; gap: 20px; padding: 32px 0; }
  .stage > .stage-spacer { display: none; }
  .stage > .stage-num { order: 1; flex-shrink: 0; width: 52px; height: 52px; font-size: 1rem; }
  .stage > .stage-content { order: 2; flex: 1; min-width: 0; padding: 0; max-width: 100%; }
  .stage:nth-child(odd) .stage-content, .stage:nth-child(even) .stage-content { grid-column: auto; text-align: left; justify-self: auto; }
  .partnership-card { padding: 34px 26px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}
@media (max-width: 520px) {
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.8rem; }
  .btn { padding: 16px 28px; font-size: 12px; letter-spacing: 0.16em; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .pattern-scenario, .dfy-list { padding: 22px 22px; }
}

/* --- Navigation ---------------------------------------------------------
 * Die Kopfzeile gab es schon, aber ohne Menue. Neu sind die Links und die
 * Klappe fuer schmale Bildschirme. Bewusst ohne JavaScript-Zwang: die Klappe
 * laeuft ueber ein verstecktes Kontrollkaestchen, damit das Menue auch dann
 * aufgeht, wenn ein Skript nicht laedt.
 */
.topnav-links { display: flex; align-items: center; gap: 28px; font-family: 'Inter', sans-serif; font-size: 13px; letter-spacing: 0.08em; }
.topnav-links a { color: var(--ink-soft); border-bottom: 1px solid transparent; padding-bottom: 2px; }
.topnav-links a:hover { color: var(--ink); border-bottom-color: var(--accent); }
.topnav-links a[aria-current="page"] { color: var(--ink); border-bottom-color: var(--accent); }
.topnav-rechts { display: flex; align-items: center; gap: 20px; }
.topnav-cta { font-size: 12px; padding: 12px 22px; }

.nav-schalter, .nav-klappe-knopf { display: none; }
@media (max-width: 900px) {
  .topnav-inner { padding: 14px 24px; flex-wrap: wrap; }
  .nav-klappe-knopf { display: block; cursor: pointer; padding: 8px; margin: -8px; color: var(--ink); }
  .nav-klappe-knopf svg { display: block; }
  .topnav-links { display: none; width: 100%; flex-direction: column; align-items: flex-start; gap: 0; order: 3; }
  .topnav-links a { display: block; width: 100%; padding: 14px 0; border-bottom: 1px solid var(--rule); font-size: 15px; }
  .nav-schalter:checked ~ .topnav-links { display: flex; }
  .topnav-cta { display: none; }
}

/* --- Ergaenzungen fuer die mehrseitige Fassung --------------------------
 * Die Vorgaengerseite war eine einzelne Verkaufsseite. Was hier neu ist,
 * sind die Bausteine, die eine Website braucht und eine Landingpage nicht:
 * ein Textblock ohne eigene Dramaturgie, Frage und Antwort, Rechtstexte
 * und eine Fusszeile mit Copyright.
 */

/* Abwechselnde Flaechen. Zwei gleich helle Textbloecke hintereinander
 * verschwimmen sonst zu einer endlosen Bahn. */

.textblock .eyebrow { display: block; margin-bottom: 18px; }
.textblock h2 { margin-bottom: 28px; }
.textblock ul { margin: 24px 0 0; padding-left: 1.1em; }
.textblock li { margin-bottom: 12px; }
.textblock .hero-cta { margin-top: 40px; }

/* Saeulen: zwei nebeneinander, ab schmal untereinander. Die Vorlage kannte
 * nur die dreispaltige Fassung der alten Seite. */
.camps-inner > .eyebrow { display: block; margin-bottom: 18px; }
.camps-inner > h2 { margin-bottom: 28px; }
.camps-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
              gap: clamp(32px, 5vw, 56px); margin-top: 56px; margin-bottom: 0; }
.camp h3 { margin-bottom: 14px; }

/* Frage und Antwort. Bewusst offen, nicht zugeklappt: was zugeklappt ist,
 * liest niemand, und ein Auszug daraus wirkt aus dem Zusammenhang gerissen. */

.faq .eyebrow { display: block; margin-bottom: 18px; }
.faq > .wrap > h2 { margin-bottom: 48px; }
.faq-liste { display: flex; flex-direction: column; }
.faq-item { padding: 32px 0; border-top: 1px solid var(--rule); }
.faq-item:last-child { border-bottom: 1px solid var(--rule); }
.faq-frage { font-size: clamp(1.15rem, 1.9vw, 1.45rem); margin-bottom: 14px; }
.faq-antwort p { color: var(--ink-soft); }

/* Rechtstexte: gelesen wird hier selten, gefunden werden muss trotzdem alles. */
.rechtstext { padding-top: clamp(40px, 5vw, 70px); }
.rechtstext h2 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); margin: 48px 0 16px; }
.rechtstext h2:first-child { margin-top: 0; }
.rechtstext p { margin-bottom: 0.5em; }
.rechtstext ul { margin: 16px 0; padding-left: 1.1em; }

/* Der Hero der Rechtsseiten braucht keine volle Bildschirmhoehe. */
.rechtstext + *, .hero:has(+ .rechtstext) { }
.hero:has(+ .rechtstext) { padding-bottom: 0; min-height: 0; }
.hero:has(+ .rechtstext) .hero-inner { min-height: 0; }

.site-footer { border-top: 1px solid var(--rule); padding: 48px 0; background: var(--bg); }
.footer-copy { font-size: 13px; color: var(--muted); }

/* Hero einer Unterseite: so hoch wie sein Inhalt, nicht wie der Bildschirm. */
.hero-kompakt { min-height: 0; }
.hero-kompakt .hero-inner { padding-top: clamp(60px, 8vw, 110px); padding-bottom: clamp(30px, 4vw, 50px); }
.hero-kompakt .hero-lede { max-width: 60ch; }


/* --- Korrekturen nach der ersten Live-Ansicht ---------------------------
 * Fuenf Dinge, die aus der Uebernahme der alten Verkaufsseite stammen und
 * auf einer mehrseitigen Website nicht mehr stimmen.
 */

/* 1. Fliesstext ist immer linksbuendig.
 * Die Vorlage zentrierte den Abschlussblock. Zentrierter Fliesstext hat auf
 * jeder Zeile einen anderen Startpunkt, das Auge muss ihn jedes Mal neu
 * suchen. Bei einer Zeile geht das, bei einem Absatz nicht. */
/* ersetzt durch den Block 'Kopf mittig, Text links' weiter unten */

.final .hero-cta { justify-content: flex-start; }

/* 2. Saeulen stapeln Ueberschrift und Text, statt sie nebeneinanderzustellen.
 * .camp war in der Vorlage ein Raster aus Nummernspalte und Textspalte. Hier
 * gibt es keine Nummern, dadurch stand der Name der Person neben statt ueber
 * ihrer Beschreibung. */
.camps-list .camp { display: block; grid-template-columns: none; gap: 0; }
.camps-list .camp h3 { margin-bottom: 16px; }
.camps-list .camp p { font-size: 17px; }

/* 3. Ein durchgehendes Textmass.
 * Ueberschrift, Absatz und Liste starten an derselben Kante und enden im
 * selben Bereich. Ohne das wandert die Zeilenlaenge von Abschnitt zu
 * Abschnitt, und die Seite wirkt zusammengesetzt. */


.textblock .hero-cta, .final .hero-cta { max-width: none; }

/* 4. Knoepfe stehen links unter dem Text, nicht mittig.
 * .hero-cta stapelt in der Vorlage senkrecht. Zwei Knoepfe nebeneinander
 * lesen sich als Haupt- und Nebenweg, untereinander als Liste. */
.hero-cta { flex-direction: row; flex-wrap: wrap; align-items: center; gap: 14px; }
@media (max-width: 560px) {
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { text-align: center; }
}

/* 5. Gleicher Aussenrand ueber alle Abschnitte.
 * .wrap hat 40px, .camps-inner und .final-inner brachten eigene Werte mit.
 * Unterschiedliche Raender an untereinanderliegenden Bloecken sieht man
 * sofort, auch wenn man nicht sagen kann, woran es liegt. */
.camps-inner, .final-inner { max-width: 1180px; padding-left: 40px; padding-right: 40px; }

@media (max-width: 700px) {
  .wrap, .wrap-narrow, .camps-inner, .final-inner { padding-left: 24px; padding-right: 24px; }
}

/* Das Hero-Bild kommt als <picture>, damit WebP zuerst probiert wird. Ohne
 * diese Zeile bleibt das picture-Element ein Inline-Kasten ohne Hoehe, und
 * das Bild darin richtet sich nach ihm statt nach der Sektion. */
.hero-bg picture { display: block; width: 100%; height: 100%; }

/* Eine einzige linke Kante fuer die ganze Seite.
 * .wrap ist der Container ueberall, 1180px mit 40px Rand. Die Lesebreite
 * entsteht am Textelement, nicht an einem engeren, zentrierten Kasten:
 * ein zentrierter Kasten haette bei jeder Abschnittsbreite einen anderen
 * linken Anfang, und genau das laesst eine Seite zusammengewuerfelt wirken. */
.final-inner { max-width: 1180px; margin-left: auto; margin-right: auto; }
.rechtstext .wrap > *, .rechtstext p, .rechtstext ul { max-width: 68ch; }
.faq-liste { max-width: 68ch; }
.camps-list { max-width: none; }

/* Der Hero war auf 85vh gesetzt. Auf einem hohen Monitor sind das ueber
 * 1200 Pixel, und dann steht die Ueberschrift mitten in einem Bild, das
 * viel groesser skaliert als es aufgenommen wurde. Der Deckel haelt die
 * Proportion, ohne auf normalen Bildschirmen etwas zu aendern. */
.hero { min-height: min(85vh, 860px); }


/* --- Kopf mittig, Text links -------------------------------------------
 * Die Anmutung der Vorgaengerseite, wiederhergestellt. Der Abschnittskopf
 * (Augenbraue, Ueberschrift, Vorspann) steht mittig und schmal, der
 * Fliesstext darunter linksbuendig in einer Lesespalte. Beides zentriert
 * waere schwer lesbar, beides links waere flach.
 */
.kopf { text-align: center; max-width: 760px; margin: 0 auto clamp(36px, 5vw, 60px); }
.kopf .eyebrow { display: block; margin-bottom: 20px; }
.kopf h1, .kopf h2 { margin: 0; }
.kopf .lede { font-family: 'Fraunces', serif; font-style: italic; font-size: 1.15rem;
              color: var(--muted); margin: 24px auto 0; max-width: 46ch; }
.kopf h1, .kopf h2 { margin: 0 auto; max-width: 20ch; }

.fliesstext { max-width: 64ch; margin: 0 auto; text-align: left; }
.fliesstext > *:last-child { margin-bottom: 0; }
.fliesstext ul { margin: 24px 0; padding-left: 1.1em; }
.fliesstext li { margin-bottom: 12px; }
.fliesstext .hero-cta { margin-top: 40px; }

/* Die laufende Nummer vor der Augenbraue. */
.eyebrow-num { color: var(--accent-soft); margin-right: 12px; font-variant-numeric: tabular-nums; }
.eyebrow-num::after { content: ' \2013'; margin-left: 10px; color: var(--rule); }

/* Der hervorgehobene Absatz. Traegt die Saetze, die haengenbleiben sollen. */
.kasten { background: var(--bg-deep); border-left: 2px solid var(--accent-soft);
          padding: clamp(24px, 3vw, 34px) clamp(24px, 3.5vw, 40px);
          margin: 36px 0; }
.kasten p { font-family: 'Fraunces', serif; font-style: italic;
            font-size: 1.08rem; color: var(--ink); line-height: 1.65; }
.textblock:nth-of-type(even) .kasten { background: var(--bg); }

/* Die kursive Schlusszeile eines Abschnitts. */
.stempel { font-family: 'Fraunces', serif; font-style: italic; font-size: 1.15rem;
           color: var(--accent-deep); text-align: center; margin: 48px 0 0;
           letter-spacing: 0.01em; }

/* Die drei Lager: Ordnungswort und Marke links, Text rechts. */
.camps-marken { display: block; }
.camps-marken .camp { display: grid; grid-template-columns: 180px 1fr;
                      gap: clamp(24px, 4vw, 50px); align-items: start;
                      padding-top: 32px; margin-top: 32px;
                      border-top: 1px solid var(--rule); }
.camps-marken .camp-num { font-family: 'Inter', sans-serif; font-size: 11px;
                          letter-spacing: 0.24em; text-transform: uppercase;
                          color: var(--accent); font-weight: 500; padding-top: 4px; }
.camps-marken .camp-num em { font-family: 'Fraunces', serif; font-style: italic;
                             font-weight: 400; color: var(--ink); display: block;
                             font-size: 1.4rem; letter-spacing: -0.01em;
                             text-transform: none; margin-top: 8px; }
.camps-marken .camp-body p { font-size: 17px; }
@media (max-width: 700px) {
  .camps-marken .camp { grid-template-columns: 1fr; gap: 14px; }
}

/* Die zwei ehrlichen Listen, nummeriert. */
.foryou-grid { align-items: start; }
.foryou-col h3 { font-size: 1.25rem; margin-bottom: 28px; padding-bottom: 16px;
                 border-bottom: 1px solid var(--rule); }
                   margin-bottom: 22px; font-size: 16px; line-height: 1.7; }
                    letter-spacing: 0.14em; color: var(--accent-soft);
                    padding-top: 6px; font-variant-numeric: tabular-nums; }
/* Die rechte Spalte ist die Absage. Sie tritt zurueck, ohne unlesbar zu sein. */
.col-nein .col-nein 
/* Breites Bild zwischen Abschnittskopf und Inhalt. */
.bildband { margin: clamp(40px, 5vw, 64px) 0; }
.bildband picture, .bildband img { display: block; width: 100%; height: auto; }

/* Die Frage-und-Antwort-Liste sitzt mittig unter ihrem Kopf. */
.faq-liste { margin-left: auto; margin-right: auto; }


/* --- Abwechselnde Flaechen ----------------------------------------------
 * Jeder zweite Abschnitt steht auf dem waermeren Ton. Der Wechsel haengt an
 * der Position, nicht am Abschnittstyp: sonst treffen zwei gleichfarbige
 * Abschnitte aufeinander, ihre Innenabstaende addieren sich, und dazwischen
 * klafft eine Leerstelle ohne erkennbaren Grund.
 */
main > section { background: var(--bg); }
main > section:nth-of-type(even) { background: var(--bg-soft); }
main > section.hero { background: var(--bg); }
/* Der Kasten braucht Gegenfarbe zu seiner Flaeche, sonst verschwindet er. */
main > section:nth-of-type(even) .kasten { background: var(--bg); }
main > section:nth-of-type(odd) .kasten { background: var(--bg-deep); }

/* Der Aufruf am Seitenende steht mittig unter seiner Ueberschrift, nicht
 * linksbuendig am Aussenrand: dort haengt er neben der Textspalte in der
 * Luft. */
.final .hero-cta { justify-content: center; }
.final .fliesstext { text-align: center; }
.final .stempel { margin-top: 40px; }

/* Jede der zwei Spalten zaehlt bei eins an. */
.foryou-col ul, .foryou-col ol { counter-reset: item; }
