:root{
  --olive:#535936;
  --olive-deep:#42482a;
  --sage:#aeb590;
  --copper:#b86d42;
  --sand:#eadbc2;
  --cream:#f6f0e5;
  --paper:#fbf8f1;
  --ink:#252824;
  --muted:#62665e;
  --line:rgba(37,40,36,.13);
  --max:1180px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--ink);
  background:var(--paper);
  font-family:Arial,Helvetica,sans-serif;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button,a{transition:.2s ease}
.wrap{width:min(var(--max),calc(100% - 40px));margin:auto}

/* HEADER */
.site-header{
  position:sticky;top:0;z-index:50;
  background:rgba(251,248,241,.95);
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--line);
}
.nav{
  min-height:84px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
}
.brand img{width:240px;height:auto;display:block}
.nav-links{display:flex;align-items:center;gap:28px;font-size:14px}
.nav-links a:hover{color:var(--copper)}
.nav-links a.active{color:var(--copper);font-weight:700}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  min-height:46px;padding:0 22px;
  border:1px solid var(--olive);
  font-size:14px;font-weight:700;
}
.btn-primary{background:var(--olive);color:var(--cream)}
.btn-primary:hover{background:var(--olive-deep)}
.btn-light{background:transparent;color:var(--olive)}
.btn-light:hover{background:rgba(83,89,54,.07)}

/* HERO */
.hero{
  position:relative;
  overflow:hidden;
  background:
    linear-gradient(rgba(66,72,42,.30),rgba(66,72,42,.30)),
    url("img/hintergrund-textur.webp") center / cover no-repeat;
  color:var(--cream);
}
.hero::after{
  content:"";
  position:absolute;inset:0;
  background:linear-gradient(90deg,rgba(37,40,36,.18),rgba(37,40,36,.03));
  pointer-events:none;
}
.hero-grid{
  position:relative;z-index:2;
  min-height:640px;
  display:grid;
  grid-template-columns:1.15fr .85fr;
  align-items:center;
  gap:64px;
  padding:86px 0;
}
.eyebrow{
  font-size:12px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:#dfcfae;
  margin-bottom:22px;
}
.hero h1{
  margin:0;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(54px,7vw,92px);
  line-height:.98;
  font-weight:500;
  letter-spacing:-.035em;
}
.hero h1 .stroke{
  position:relative;
  display:inline-block;
}
.hero h1 .stroke::after{
  content:"";
  position:absolute;
  left:-2%;
  right:-3%;
  bottom:-10px;
  height:15px;
  background:var(--copper);
  border-radius:48% 52% 55% 45%;
  transform:rotate(-1.5deg) skewX(-8deg);
  opacity:.92;
  z-index:-1;
}
.hero-copy p{
  max-width:650px;
  font-size:19px;
  color:#eee7d9;
  margin:34px 0 30px;
}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap}
.hero .btn-primary{background:var(--cream);color:var(--olive-deep);border-color:var(--cream)}
.hero .btn-primary:hover{background:white}
.hero .btn-light{color:var(--cream);border-color:rgba(246,240,229,.58)}
.hero .btn-light:hover{background:rgba(255,255,255,.08)}
.hero-note{
  align-self:end;
  justify-self:end;
  width:min(100%,360px);
  padding:26px 28px;
  border:1px solid rgba(246,240,229,.28);
  background:rgba(246,240,229,.06);
}
.hero-note strong{
  display:block;
  font-family:Georgia,"Times New Roman",serif;
  font-size:24px;
  font-weight:500;
  margin-bottom:8px;
}
.hero-note span{font-size:14px;color:#ddd5c6}

/* INTRO */
.intro{padding:92px 0 52px}
.intro-grid{
  display:grid;grid-template-columns:.8fr 1.2fr;gap:70px;align-items:start
}
.kicker{
  font-size:12px;letter-spacing:.15em;text-transform:uppercase;color:var(--copper);font-weight:700
}
.intro h2,.section-title{
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(38px,5vw,58px);
  line-height:1.08;
  font-weight:500;
  margin:8px 0 0;
}
.intro p{font-size:18px;color:var(--muted);margin:0;max-width:690px}

/* THREE PATHS */
.paths{padding:44px 0 100px}
.paths-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:24px
}
.path-card{
  background:#fff;
  border:1px solid var(--line);
  padding:34px 28px 30px;
  min-height:430px;
  display:flex;
  flex-direction:column;
}
.path-icon{height:128px;display:flex;align-items:center;margin-bottom:28px}
.path-icon img{height:118px;width:auto;max-width:100%;object-fit:contain;object-position:left center}
.path-card h3{
  font-family:Georgia,"Times New Roman",serif;
  font-size:30px;
  font-weight:500;
  line-height:1.1;
  margin:0 0 14px;
}
.path-card p{color:var(--muted);margin:0 0 20px}
.path-link{
  margin-top:auto;
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:var(--olive);
  font-weight:700;
  font-size:14px;
}
.path-link::after{content:"→";font-size:18px}
.path-card:hover{transform:translateY(-3px);box-shadow:0 16px 34px rgba(37,40,36,.08)}

/* WORKSTYLE */
.workstyle{padding:100px 0;background:var(--cream)}
.work-grid{display:grid;grid-template-columns:1fr 1fr;gap:70px;align-items:center}
.work-photo img{width:100%;height:510px;object-fit:cover}
.work-copy h2{
  font-family:Georgia,"Times New Roman",serif;
  font-size:50px;
  line-height:1.08;
  font-weight:500;
  margin:0 0 24px;
}
.work-copy>p{font-size:17px;color:var(--muted);margin:0 0 30px}
.steps{display:grid;gap:18px}
.step{
  display:grid;grid-template-columns:42px 1fr;gap:16px;
  border-top:1px solid var(--line);padding-top:18px
}
.step-no{
  font-family:Georgia,"Times New Roman",serif;
  font-size:26px;color:var(--copper)
}
.step h4{margin:0 0 4px;font-size:17px}
.step p{margin:0;color:var(--muted);font-size:14px}

/* EXPERIENCE */
.experience{padding:100px 0}
.experience-grid{display:grid;grid-template-columns:1fr 1fr;gap:80px}
.experience-portrait{margin:0 0 26px}
.experience-portrait img{width:100%;max-width:260px;aspect-ratio:4/5;object-fit:cover;display:block}
.experience-portrait figcaption{margin-top:10px;font-size:13px;color:var(--muted)}
.experience h2{
  font-family:Georgia,"Times New Roman",serif;
  font-size:48px;line-height:1.08;font-weight:500;margin:0
}
.experience-copy p{font-size:17px;color:var(--muted);margin:0 0 28px}
.facts{display:grid;grid-template-columns:1fr 1fr;gap:0;border-top:1px solid var(--line)}
.fact{padding:18px 0;border-bottom:1px solid var(--line)}
.fact:nth-child(odd){padding-right:28px}
.fact strong{display:block;font-size:15px;margin-bottom:3px}
.fact span{font-size:13px;color:var(--muted)}

/* CTA */
.cta{padding:0 0 100px}
.cta-box{
  position:relative;
  overflow:hidden;
  background:
    linear-gradient(rgba(66,72,42,.36),rgba(66,72,42,.36)),
    url("img/hintergrund-textur.webp") center / cover no-repeat;
  color:var(--cream);
  padding:58px;
}
.cta-box::before{
  content:"";
  position:absolute;inset:0;
  background:linear-gradient(90deg,rgba(37,40,36,.20),rgba(37,40,36,.04));
}
.cta-inner{position:relative;z-index:1;display:flex;align-items:end;justify-content:space-between;gap:40px}
.cta h2{
  margin:0 0 10px;
  font-family:Georgia,"Times New Roman",serif;
  font-size:44px;font-weight:500;
}
.cta p{margin:0;color:#ded7c9;max-width:650px}
.cta .btn-primary{background:var(--cream);color:var(--olive-deep);border-color:var(--cream);white-space:nowrap}

/* BREADCRUMB */
.breadcrumb{
  display:flex;align-items:center;gap:8px;
  font-size:12px;letter-spacing:.06em;text-transform:uppercase;
  color:#dfcfae;margin-bottom:26px;
}
.breadcrumb a{color:#dfcfae;opacity:.85}
.breadcrumb a:hover{opacity:1;color:var(--cream)}
.breadcrumb span{opacity:.5}
.breadcrumb .current{opacity:1;color:var(--cream)}

/* PAGE HERO (Unterseiten) */
.page-hero{
  position:relative;overflow:hidden;
  background:
    linear-gradient(rgba(66,72,42,.42),rgba(66,72,42,.42)),
    url("img/hintergrund-textur.webp") center / cover no-repeat;
  color:var(--cream);
}
.page-hero::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(90deg,rgba(37,40,36,.20),rgba(37,40,36,.04));
  pointer-events:none;
}
.page-hero-inner{position:relative;z-index:2;padding:64px 0 76px;max-width:780px}
.page-hero h1{
  margin:0;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(38px,5.2vw,60px);
  line-height:1.06;font-weight:500;letter-spacing:-.02em;
}
.page-hero-lede{font-size:19px;color:#eee7d9;margin:22px 0 0;max-width:640px}

/* SECTION SHELL */
.section{padding:88px 0}
.section--tight{padding:56px 0}
.section--cream{background:var(--cream)}
.section h2{
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(32px,4vw,44px);
  line-height:1.1;font-weight:500;margin:8px 0 22px;
}
.section-lede{font-size:18px;color:var(--muted);max-width:720px;margin:0 0 8px}
.prose p{font-size:17px;color:var(--muted);max-width:760px;margin:0 0 20px}
.prose p:last-child{margin-bottom:0}

/* QUOTE / SIGNATURE */
.signature-line{
  font-family:Georgia,"Times New Roman",serif;
  font-style:italic;font-size:26px;color:var(--olive-deep);
  border-left:3px solid var(--copper);
  padding:4px 0 4px 22px;margin:28px 0;max-width:640px;
}

/* PHASE TIMELINE */
.phases{display:grid;gap:0;border-top:1px solid var(--line);margin-top:36px}
.phase{
  display:grid;grid-template-columns:64px 1fr;gap:22px;
  padding:26px 0;border-bottom:1px solid var(--line);
}
.phase-no{
  font-family:Georgia,"Times New Roman",serif;
  font-size:34px;color:var(--copper);line-height:1;
}
.phase h3{margin:0 0 6px;font-size:19px;font-weight:700}
.phase p{margin:0;color:var(--muted);font-size:15px;max-width:620px}

/* STAT / REFERENCE BOX */
.stat-box{
  background:var(--olive);color:var(--cream);
  padding:44px 40px;margin-top:20px;
  display:grid;grid-template-columns:repeat(2,1fr);gap:30px;
}
.stat-box-copy{grid-column:1/-1;max-width:640px}
.stat-box-copy p{margin:0;color:#e7e2d2;font-size:15px}
.stat{border-top:1px solid rgba(246,240,229,.28);padding-top:16px}
.stat strong{
  display:block;font-family:Georgia,"Times New Roman",serif;
  font-size:38px;font-weight:500;line-height:1;
}
.stat span{display:block;font-size:13px;color:#d9d1bd;margin-top:8px}

/* DELIVERABLES CHIPS */
.deliverables{display:flex;flex-wrap:wrap;gap:10px;margin-top:24px}
.deliverables span{
  border:1px solid var(--line);background:#fff;
  padding:9px 16px;font-size:13px;color:var(--olive-deep);font-weight:700;
}

/* MODULE CARDS (KMU) */
.modules-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:36px}
.module-card{border:1px solid var(--line);background:#fff;padding:30px 26px}
.module-card .kicker{margin-bottom:10px}
.module-card h3{
  font-family:Georgia,"Times New Roman",serif;
  font-size:23px;font-weight:500;margin:0 0 12px;
}
.module-card p{color:var(--muted);font-size:15px;margin:0}

/* CROSS-LINKS ZU DEN ANDEREN SÄULEN */
.crosslinks{display:grid;grid-template-columns:repeat(2,1fr);gap:20px;margin-top:36px}
.crosslink-card{
  display:block;border:1px solid var(--line);background:#fff;
  padding:26px 26px 24px;
}
.crosslink-card .kicker{margin-bottom:8px}
.crosslink-card h3{
  font-family:Georgia,"Times New Roman",serif;
  font-size:21px;font-weight:500;margin:0 0 8px;
}
.crosslink-card p{color:var(--muted);font-size:14px;margin:0 0 14px}
.crosslink-card .path-link{margin-top:0}
.crosslink-card:hover{transform:translateY(-2px);box-shadow:0 14px 30px rgba(37,40,36,.08)}

/* FAQ */
.faq{margin-top:30px;border-top:1px solid var(--line)}
.faq-item{border-bottom:1px solid var(--line)}
.faq-item summary{
  cursor:pointer;list-style:none;
  display:flex;align-items:center;justify-content:space-between;gap:20px;
  padding:22px 0;font-size:17px;font-weight:700;
}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::after{
  content:"+";font-size:22px;font-weight:400;color:var(--copper);
  flex-shrink:0;transition:transform .2s ease;
}
.faq-item[open] summary::after{transform:rotate(45deg)}
.faq-item p{margin:0 0 22px;color:var(--muted);font-size:15px;max-width:700px}

@media(max-width:920px){
  .modules-grid{grid-template-columns:1fr}
  .crosslinks{grid-template-columns:1fr}
  .stat-box{grid-template-columns:1fr}
}
@media(max-width:620px){
  .page-hero-inner{padding:48px 0 56px}
  .phase{grid-template-columns:44px 1fr;gap:14px}
  .phase-no{font-size:26px}
  .stat-box{padding:30px 24px}
}

/* FOOTER */
footer{border-top:1px solid var(--line);padding:34px 0 42px}
.footer-row{display:flex;align-items:center;justify-content:space-between;gap:30px}
.footer-brand{display:flex;align-items:center;gap:22px}
.footer-brand img{width:190px;height:auto}
.footer-links{display:flex;gap:24px;font-size:13px;color:var(--muted)}
.footer-links a:hover{color:var(--copper)}
.footer-social{display:flex;gap:14px}
.footer-social a{color:var(--muted);display:inline-flex}
.footer-social a:hover{color:var(--copper)}
.experience-linkedin{margin-top:18px}
.experience-linkedin a{color:var(--copper);font-weight:600}
.experience-linkedin a:hover{text-decoration:underline}

@media(max-width:920px){
  .nav-links{display:none}
  .hero-grid,.intro-grid,.work-grid,.experience-grid{grid-template-columns:1fr}
  .hero-grid{min-height:auto;padding:72px 0}
  .hero-note{justify-self:start}
  .paths-grid{grid-template-columns:1fr}
  .path-card{min-height:0}
  .work-photo img{height:380px}
  .cta-inner{align-items:flex-start;flex-direction:column}
}
@media(max-width:620px){
  .wrap{width:min(var(--max),calc(100% - 28px))}
  .brand img{width:205px}
  .nav .btn{display:none}
  .hero h1{font-size:54px}
  .hero-copy p{font-size:17px}
  .intro,.paths,.workstyle,.experience{padding-top:70px;padding-bottom:70px}
  .facts{grid-template-columns:1fr}
  .fact:nth-child(odd){padding-right:0}
  .cta-box{padding:38px 26px}
  .footer-row{align-items:flex-start;flex-direction:column}
  .footer-links{flex-wrap:wrap}
}
