@import url('fonts.css');

:root{
  --bg:#F6F2EB; --surface:#FBF8F1; --ink:#1C1814; --accent:#0D9488; --accent-dark:#0A6D63;
  --accent-soft:#7FD8CD; --accent-tint:#E6F2F0; --cream:#F6F2EB; --cream-2:#E9DCC4;
  --muted:#8A7D6D; --secondary:#4A423A; --line:#DDD2BD;
  --serif:'Cormorant Garamond',Georgia,serif; --sans:'DM Sans',system-ui,-apple-system,sans-serif;
  --radius:10px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;background:var(--bg);color:var(--ink);font-family:var(--sans);font-size:18px;line-height:1.6;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility}
img{max-width:100%;height:auto;display:block}
h1,h2,h3{font-family:var(--serif);font-weight:600;margin:0;letter-spacing:.005em}
a{color:var(--accent);text-decoration:none}
.wrap{width:min(1200px,92vw);margin-inline:auto}
.section-pad{padding-block:clamp(64px,10vw,120px)}
.accent{color:var(--accent);font-style:inherit}
.eyebrow{font-family:var(--sans);text-transform:uppercase;letter-spacing:2px;font-size:.78rem;font-weight:600;color:var(--muted);margin:0 0 1rem}

.js .reveal{opacity:0;transform:translateY(24px)}
.reveal.in{opacity:1;transform:none;transition:opacity .7s ease,transform .7s ease}

.btn{display:inline-block;font-family:var(--sans);font-weight:600;font-size:1rem;padding:15px 30px;border-radius:var(--radius);border:1px solid transparent;cursor:pointer;transition:background .25s,color .25s,border-color .25s}
.btn-primary{background:var(--accent);color:var(--surface)}
.btn-primary:hover{background:var(--accent-dark);color:var(--surface)}
.btn-outline{border-color:var(--ink);color:var(--ink)}
.btn-outline:hover{background:var(--ink);color:var(--surface)}
.btn-ghost-light{border-color:var(--cream);color:var(--cream)}
.btn-ghost-light:hover{background:var(--cream);color:var(--ink)}
.textlink{color:var(--accent);font-weight:600}
.textlink:hover{color:var(--accent-dark)}

.site-header{position:absolute;top:0;left:0;right:0;z-index:50;color:var(--cream);transition:background .3s,color .3s,box-shadow .3s}
.site-header.scrolled{position:fixed;background:rgba(246,242,235,.94);backdrop-filter:blur(8px);color:var(--ink);box-shadow:0 1px 0 var(--line)}
body:not(.home) .site-header{position:sticky;background:var(--bg);color:var(--ink);border-bottom:1px solid var(--line)}
.header-inner{display:flex;align-items:center;justify-content:space-between;height:76px}
.brand{font-family:var(--serif);font-size:1.55rem;font-weight:600;color:inherit}
.nav-list{display:flex;gap:1.7rem;list-style:none;margin:0;padding:0}
.nav-list a{color:inherit;font-weight:500;font-size:.98rem}
.nav-list a:hover{color:var(--accent)}
.nav-toggle{display:none;flex-direction:column;gap:5px;background:none;border:0;cursor:pointer;padding:8px;color:inherit}
.nav-toggle span{width:24px;height:2px;background:currentColor;display:block;transition:.25s}

.hero{position:relative;min-height:100svh;display:flex;align-items:flex-end;overflow:hidden;color:var(--cream)}
.hero-bg{position:absolute;inset:-6% 0 0;background-size:cover;background-position:center 24%;z-index:0;will-change:transform}
.hero-scrim{position:absolute;inset:0;z-index:1;background:linear-gradient(180deg,rgba(20,16,12,.18) 0%,rgba(20,16,12,.10) 38%,rgba(20,16,12,.55) 78%,rgba(20,16,12,.9) 100%)}
.hero-inner{position:relative;z-index:2;padding-top:18vh;padding-bottom:12vh}
.hero-title{font-weight:500;font-size:clamp(3rem,9vw,6rem);line-height:.98;letter-spacing:-.01em;color:var(--cream);margin:.15em 0 .32em}
.hero .eyebrow{color:var(--cream-2)}
.hero-sub{font-family:var(--serif);font-style:italic;font-weight:300;font-size:clamp(1.3rem,3.2vw,2rem);line-height:1.32;color:#F3EAD7;max-width:34ch;margin:0}
.hero-cta{margin-top:2rem;display:flex;gap:14px;flex-wrap:wrap}

.pinwrap{position:relative;background:var(--bg)}
.pin{position:relative;min-height:100vh;overflow:hidden;display:flex;align-items:center}
.pin-gz{position:absolute;inset:-6% -12%;color:var(--ink);opacity:.6;pointer-events:none;z-index:0}
.pin-gz .gz{width:100%;height:100%}
.statements{position:relative;z-index:2}
.statement h2{font-size:clamp(2rem,5.2vw,4rem);line-height:1.06;max-width:20ch}
.statement p{color:var(--secondary);font-size:clamp(1rem,1.6vw,1.2rem);line-height:1.6;max-width:44ch;margin-top:1rem}
.scroll-hint{position:absolute;left:50%;bottom:5vh;width:1px;height:44px;background:linear-gradient(var(--muted),transparent);z-index:2}

.js .pinwrap{height:320vh}
.js .pin{position:sticky;top:0;height:100vh}
.js .statement{position:absolute;left:0;right:0;top:50%;transform:translateY(-42%);opacity:0;transition:opacity .5s ease,transform .6s ease;pointer-events:none}
.js .statement.is-active{opacity:1;transform:translateY(-50%)}

.gz{display:block}
.gz .s{fill:none;stroke:currentColor;stroke-linecap:round;stroke-linejoin:round}
.js .gz .s{stroke-dasharray:1;stroke-dashoffset:1}
.js .gz .a{opacity:0}
.gz.play .s{animation:gzdraw var(--du,1.8s) ease-out var(--dl,0s) forwards}
.gz.play .a{animation:gzfade .6s ease-out var(--al,1.5s) forwards}
@keyframes gzdraw{to{stroke-dashoffset:0}}
@keyframes gzfade{to{opacity:1}}
.gz-faint{opacity:.55}

.bento{display:grid;grid-template-columns:repeat(12,1fr);gap:24px}
.card{border:1px solid var(--line);border-radius:var(--radius);padding:clamp(28px,3.4vw,44px);background:var(--surface);display:flex;flex-direction:column;justify-content:center;min-height:240px}
.card h3{font-size:clamp(1.6rem,2.8vw,2.5rem);line-height:1.08}
.card p{color:var(--secondary);line-height:1.6;margin:0}
.card .stat{font-family:var(--serif);color:var(--accent);font-weight:600;font-size:clamp(2.2rem,4.4vw,3.2rem);line-height:1;margin-bottom:.35em}
.card-tint{background:var(--accent-tint)}
.card-a{grid-column:span 7}
.card-b{grid-column:span 5}
.card-c{grid-column:span 5}
.card-d{grid-column:span 7}

.story-grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:clamp(32px,5vw,64px);align-items:center}
.story-img img{border-radius:var(--radius)}
.story-text h2{font-size:clamp(1.9rem,3.6vw,2.9rem);line-height:1.08;margin-bottom:.55em}
.story-text p{color:var(--secondary);line-height:1.75;margin:0 0 1em;max-width:54ch}

.cta-band{background:var(--surface);text-align:center}
.cta-inner{max-width:640px;margin-inline:auto}
.cta-inner h2{font-size:clamp(2.2rem,4.6vw,3.4rem);line-height:1.05;margin-bottom:.4em}
.cta-inner p{color:var(--secondary);margin-bottom:1.6em}

.contact{position:relative;overflow:hidden;background:var(--bg);text-align:center}
.contact-gz{position:absolute;inset:-8% -12%;color:var(--ink);opacity:.4;pointer-events:none;display:flex;align-items:center;justify-content:center;z-index:0}
.contact-gz .gz{width:100%;height:100%}
.contact-inner{position:relative;z-index:2;max-width:640px;margin-inline:auto}
.contact-inner h2{font-size:clamp(2.6rem,7vw,4.6rem);line-height:1.02;margin-bottom:.35em}
.contact-inner p{color:var(--secondary);margin-bottom:1.6em}

.site-footer{background:var(--ink);color:var(--cream);padding-block:56px}
.footer-inner{display:flex;flex-direction:column;gap:16px;align-items:flex-start}
.footer-brand{font-family:var(--serif);font-size:1.4rem;margin:0}
.foot-list{display:flex;gap:1.4rem;list-style:none;margin:0;padding:0;flex-wrap:wrap}
.foot-list a{color:var(--cream);opacity:.85}
.foot-list a:hover{opacity:1;color:var(--accent-soft)}
.footer-legal{opacity:.7;font-size:.9rem;margin:0}
.footer-legal a{color:var(--cream)}

.page-head{margin-bottom:2.4rem}
.page-title{font-size:clamp(2.2rem,5vw,3.4rem);line-height:1.05}
.post-card{padding:34px 0;border-bottom:1px solid var(--line)}
.post-card-link{color:inherit;display:block}
.post-card-link:hover .post-card-title{color:var(--accent)}
.post-date{color:var(--muted);font-size:.82rem;text-transform:uppercase;letter-spacing:1px;margin:0 0 .5rem}
.post-card-title{font-size:clamp(1.6rem,3vw,2.3rem);line-height:1.1;margin:0 0 .5rem;transition:color .2s}
.post-excerpt{color:var(--secondary);line-height:1.6;max-width:62ch;margin:0 0 .6rem}
.readmore{color:var(--accent);font-weight:600;font-size:.95rem}
.pagination{margin-top:2.5rem;display:flex;gap:1rem}
.pagination a,.pagination .current{color:var(--ink);font-weight:600}
.article{max-width:760px}
.article-title{font-size:clamp(2.2rem,5vw,3.4rem);line-height:1.08;margin-top:.15em}
.article-body{font-size:1.16rem;line-height:1.78}
.article-body p{margin:0 0 1.3em;max-width:66ch}
.article-foot{margin-top:2.5rem;padding-top:1.5rem;border-top:1px solid var(--line)}
.back-link{font-weight:600}
.page-body{font-size:1.1rem;line-height:1.75;max-width:66ch}
.page-body p{margin:0 0 1.2em}

@media(max-width:900px){
  .nav{position:fixed;inset:76px 0 auto 0;background:var(--bg);border-bottom:1px solid var(--line);transform:translateY(-130%);transition:transform .3s;padding:1rem 0}
  .nav.open{transform:translateY(0)}
  .nav-list{flex-direction:column;gap:0;align-items:center}
  .nav-list a{display:block;padding:.9rem;color:var(--ink)}
  .nav-toggle{display:flex}
  .bento{grid-template-columns:1fr;gap:18px}
  .card-a,.card-b,.card-c,.card-d{grid-column:auto}
  .story-grid{grid-template-columns:1fr}
  .story-img{max-width:420px}
}

@media(prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  .js .reveal{opacity:1;transform:none}
  .js .gz .s{stroke-dashoffset:0}
  .js .gz .a{opacity:1}
  .gz.play .s,.gz.play .a{animation:none}
  .js .pinwrap{height:auto}
  .js .pin{position:static;height:auto;display:block;padding-block:8vh}
  .js .statement{position:relative;opacity:1;transform:none;margin-block:9vh}
  .hero-bg{transform:none!important}
}


/* Deep parallax layer (Hintergrund hinter dem Hintergrund) */
.deep-layer{position:fixed;inset:0;z-index:0;pointer-events:none;overflow:hidden}
.deep-gz{position:absolute;top:-20%;right:-24%;width:105vw;height:150vh;color:var(--ink);opacity:.10;will-change:transform}
.deep-gz .gz{width:100%;height:100%}
.hero,.block,.landkarte,.site-footer,main{position:relative;z-index:1}
.block,.landkarte{background:transparent}
@media(prefers-reduced-motion:reduce){.deep-gz{transform:none!important}}


/* Textvorlage v2 - Bloecke */
.wrap.narrow{width:min(760px,92vw)}
.hero-title{font-size:clamp(2.6rem,6.6vw,4.8rem);line-height:1.0}
.block h2{font-size:clamp(1.9rem,4.4vw,3rem);line-height:1.1;margin-bottom:.7em}
.block p{font-size:1.15rem;line-height:1.7;color:var(--ink);margin:0 0 1.1em;max-width:60ch}
.block .fine{color:var(--muted);font-size:.95rem}
.block .cta-row{margin-top:1.5em;max-width:none}
.block-lines p{font-size:clamp(1.2rem,2.4vw,1.6rem);line-height:1.5;max-width:34ch;margin:0 0 1.1em}
.block-lines .beat{color:var(--accent)}
.block-vision{background:var(--surface)}
.block-vision .block-lines p{max-width:42ch}
.block-offer{background:var(--surface)}
.circle-grid{display:grid;grid-template-columns:1fr 1fr;gap:clamp(24px,5vw,64px);align-items:center}
.circle-text p{max-width:40ch}
.circle-art{position:relative;min-height:360px;color:var(--ink);opacity:.7}
.circle-art .gz{width:100%;height:100%}
.me-grid{display:grid;grid-template-columns:.85fr 1.15fr;gap:clamp(28px,5vw,60px);align-items:center}
.me-img img{border-radius:var(--radius)}
.me-text p{max-width:54ch}
.landkarte{text-align:center}
.landkarte .wrap.narrow{margin-inline:auto}
.landkarte-graphic{position:relative;min-height:clamp(320px,46vw,560px);margin-block:clamp(32px,5vw,64px);color:var(--ink);opacity:.72;display:flex;align-items:center;justify-content:center}
.landkarte-graphic .gz{width:100%;height:100%}
.lk-optin{margin-inline:auto}
.optin-form{display:flex;gap:12px;flex-wrap:wrap;justify-content:center;margin:1.4em 0 .5em}
.optin-form input{font-family:var(--sans);font-size:1rem;padding:14px 18px;border:1px solid var(--line);border-radius:var(--radius);background:var(--surface);color:var(--ink);min-width:200px}
.optin-form input:focus{outline:2px solid var(--accent);outline-offset:1px;border-color:var(--accent)}
.faq{text-align:left;margin-top:1.4em}
.faq-block .wrap.narrow{text-align:left}
.faq .qa{padding:22px 0;border-bottom:1px solid var(--line)}
.faq .q{font-family:var(--serif);font-size:clamp(1.25rem,2.2vw,1.6rem);font-weight:600;margin:0 0 .4em}
.faq .a{color:var(--secondary);margin:0;max-width:60ch}
.block-close{background:var(--surface);text-align:center}
.block-close .wrap.narrow{margin-inline:auto}
.footer-claim{opacity:.8;margin:0;max-width:48ch}
.nav-list .menu-cta a{background:var(--accent);color:var(--surface);padding:9px 18px;border-radius:var(--radius)}
.nav-list .menu-cta a:hover{background:var(--accent-dark);color:var(--surface)}
.site-header.scrolled .nav-list .menu-cta a,body:not(.home) .nav-list .menu-cta a{color:var(--surface)}
@media(max-width:900px){.circle-grid,.me-grid{grid-template-columns:1fr}.me-img{max-width:420px}.optin-form{flex-direction:column}.optin-form input,.optin-form .btn{width:100%}}

/* Kopf-Lesbarkeit ueber hellem Hero */
body.home .site-header:not(.scrolled)::before{content:'';position:absolute;top:0;left:0;right:0;height:130px;background:linear-gradient(rgba(20,16,12,.42),rgba(20,16,12,0));pointer-events:none;z-index:-1}


/* Tiefe Ebene: Spirale statt Grenzzyklus + Uebergang */
.deep-gz .spiralbg{width:100%;height:100%;display:block}


#landkarte{scroll-margin-top:90px}

.js .spirale-section .bl{opacity:.12;will-change:opacity}


/* Mobile-Feinschliff */
@media(max-width:600px){
  .hero-inner{padding-top:20vh}
  .hero-title{font-size:clamp(2rem,8.4vw,2.9rem);line-height:1.04}
  .hero-sub{font-size:1.12rem;max-width:32ch}
  .hero-cta{flex-direction:column;align-items:stretch}
  .hero-cta .btn{width:100%;text-align:center}
  .btn{padding:14px 20px;font-size:.98rem}
  .cta-row .btn{width:100%;text-align:center}
  .section-pad{padding-block:clamp(44px,9vw,72px)}
  .me-img{margin-inline:auto}
  .faq .q{font-size:1.25rem}
}
@media(max-width:880px){
  .spirale-section{overflow-x:hidden}
  .bl-spiral svg{max-width:340px}
  .stufe-wort{font-size:22px}
  .bl{padding:14px}
  .bl-karte h2{font-size:clamp(26px,7vw,34px)}
  .bl-panel{min-height:0}
}

/* Relaunch Affaere 2026-09 */
.two-cols{display:grid;grid-template-columns:1fr 1fr;gap:clamp(28px,5vw,72px);align-items:start}
.two-cols .col h2{font-size:clamp(1.6rem,3vw,2.3rem);margin-bottom:.6em}
.two-cols .col p{max-width:46ch}
.two-cols-close{margin-top:clamp(40px,6vw,72px);text-align:center}
.two-cols-close p{max-width:none;margin-inline:auto;font-size:clamp(1.15rem,2.2vw,1.5rem);line-height:1.5;margin-bottom:.4em}
.two-cols-close .beat{color:var(--accent);font-family:var(--serif);font-size:clamp(1.5rem,3vw,2.2rem);font-weight:600}
.block-permission{background:var(--surface)}
.block-zwei h2{font-size:clamp(1.7rem,3.6vw,2.6rem);line-height:1.18}
.cta-row .cta-side{display:inline-block;margin-left:1.2em;font-size:1rem}
.block-read p{margin-bottom:1.6em}
.footer-nav{display:flex;gap:1.4rem;flex-wrap:wrap}
.footer-nav a{color:var(--cream);opacity:.85}
.footer-nav a:hover{opacity:1;color:var(--accent-soft)}
.landkarte-intro .page-title{margin-bottom:.6em}
.landkarte-intro p,.landkarte-outro p{font-size:1.15rem;line-height:1.7;max-width:60ch;margin:0 0 1.1em}
.landkarte-page .spirale-section .bl{opacity:1}
@media(max-width:900px){.two-cols{grid-template-columns:1fr}}
@media(max-width:600px){.cta-row .cta-side{display:block;margin:1em 0 0;text-align:center}}