:root{
  --earth:#3A2B24;
  --beige:#EDE3D2;
  --paper:#FFFFFF;
  --text:#2b2b2b;
  --pill:#F4E8D6;
  --btn:#E56B3E;
  --btn2:#C49B63;
  --shadow:0 16px 44px rgba(0,0,0,.25);
  --wrap:1200px;
  --content:1000px;
}

/* =======================
   BASE
======================= */
*{box-sizing:border-box}
html,body{margin:0;overflow-x:hidden}
html{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
body{
  background:var(--paper);
  color:var(--text);
  font-family:Lato,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,"Helvetica Neue",Arial,sans-serif;
}
h1,h2,h3{
  font-family:"Playfair Display",serif;
  margin:0 0 .6rem;
  line-height:1.2;
  font-weight:700;
}
p,li,span,.lead{font-weight:400}

.container{
  max-width:var(--wrap);
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

/* =======================
   NAV
======================= */
.nav{
  position:sticky;
  top:0;
  z-index:80;
  background:rgba(246,238,226,.96);
  backdrop-filter:blur(8px);
  border-bottom:1px solid rgba(0,0,0,.06);
}
.nav .container{
  padding:12px 18px;
  gap:18px;
  min-height:56px;
}
	  
	  .nav-img{
  max-width: 20px;
  width: 100%;
  height: auto;
top: 25%;
 /* margin-right: 2rem;
	display:flex;
  justify-content:center; 
  align-items:center; */
}
	  
	  

.brand{
  font-family:"Playfair Display",serif;
  font-size:22px;
  font-weight:700;
  color:var(--earth);
}
.brand a{
  color:inherit;
  text-decoration:none;
}

/* Desktop Menu */
.menu{
  display:flex;
  gap:20px;
  align-items:center;
  margin-left:auto;
}
.menu a{
  color:var(--earth);
  text-decoration:none;
  font-weight:600;
  padding:8px 10px;
  border-radius:8px;
  line-height:1;
}
.menu a:hover{background:rgba(58,43,36,.08)}
.menu a.active{text-decoration:underline}

/* Dropdown */
.has-sub{position:relative}
.has-sub>a{
  display:inline-flex;
  align-items:center;
  gap:6px;
}
.caret{
  border:solid currentColor;
  border-width:0 2px 2px 0;
  padding:3px;
  transform:rotate(45deg);
  transition:.2s;
}
.dropdown{
  position:absolute;
  top:100%;
  left:0;
  min-width:230px;
  background:var(--beige);
  border:1px solid rgba(0,0,0,.08);
  border-radius:12px;
  padding:8px;
  box-shadow:0 12px 24px rgba(0,0,0,.12);
  display:none;
  z-index:1000;
}
.dropdown a{
  display:block;
  padding:10px 12px;
  border-radius:8px;
  font-weight:600;
  color:var(--earth);
}
.dropdown a:hover{background:var(--pill)}

@media(hover:hover){
  .has-sub:hover .dropdown{display:block}
  .has-sub:hover .caret{transform:rotate(-135deg)}
}

/* =======================
   HAMBURGER
======================= */
.hamburger{
  display:none;
  width:32px;
  height:22px;
  position:relative;
  cursor:pointer;
}
.hamburger span,
.hamburger::before,
.hamburger::after{
  content:"";
  position:absolute;
  left:0;right:0;
  height:3px;
  background:var(--earth);
  border-radius:2px;
  transition:.25s;
}
.hamburger span{top:50%;transform:translateY(-50%)}
.hamburger::before{top:0}
.hamburger::after{bottom:0}
.hamburger.active span{opacity:0}
.hamburger.active::before{transform:translateY(9px) rotate(45deg)}
.hamburger.active::after{transform:translateY(-9px) rotate(-45deg)}

/* =======================
   MOBILE PANEL
======================= */
.mobile-panel{
  position:fixed;
  inset:0;
  background:rgba(246,238,226,.98);
  z-index:9999;
  display:none;
  padding:84px 24px 24px;
  overflow:auto;
}
.mobile-panel.open{display:block}
.mobile-panel a{
  display:block;
  color:var(--earth);
  font-weight:800;
  text-decoration:none;
  padding:14px 0;
  font-size:1.15rem;
}
.mobile-panel .sub a{
  font-weight:700;
  opacity:.9;
  padding-left:14px;
}
.no-scroll{overflow:hidden}

/* =======================
   RESPONSIVE SWITCH
======================= */
@media(max-width:980px){
  #mainMenu{display:none}
  .hamburger{display:block}
}
@media(min-width:981px){
  #mobilePanel{display:none}
}

/* =======================
   HERO
======================= */
/* Desktop */
/* HERO WRAPPER */
#wf-hero {
  background: var(--paper);
  min-height: 85vh;
  display: flex;
  align-items: center;
}

/* GRID */
.hero-grid {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 1rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

/* TEXT */
.hero-text {
  padding-left: 2rem;
}

/* FOTO */
.hero-img {
  display: flex;
  justify-content: center;
}

.hero-img img {
  width: 320px;          /* 👈 FESTE GRÖSSE → KEIN PIXEL */
  max-width: 100%;
  height: auto;
  
  border: 4px solid rgba(120,180,240,.25);
  box-shadow: var(--shadow);
}

	  
	  #wf-hero h1{
  font-size:clamp(34px,4.5vw,56px);
  margin-bottom:18px;
}
#wf-hero p{
  font-size:20px;
  max-width:540px;
  line-height:1.6;
}
	  
	  
	  

	
@media(max-width:991px){
  #wf-hero{padding:56px 0}
  #wf-hero .hero-grid{grid-template-columns:1fr}
  #wf-hero h1{font-size:clamp(28px,7vw,40px)}
  #wf-hero p{font-size:clamp(16px,4.2vw,18px)}
  .hero-img{justify-self:center;margin-top:16px}
  .hero-img img{max-width:220px}
}
  
	  
	 
/* Mobile */
@media (max-width:991px){
  #wf-hero .hero-grid { 
    grid-template-columns: 1fr; 
   
  }
  .hero-img {
    justify-self: center;
    margin-top: 16px;
  }
  .hero-img img {
    max-width: 220px;
    width: auto;
    height: auto;
  }
}


	  
	  .pill-row {
  display: flex;           /* nebeneinander anordnen */
  gap: 12px;               /* Abstand zwischen den Pills */
  flex-wrap: wrap;         /* Zeilenumbruch, falls zu eng */
  justify-content: center; /* optional: zentriert */
}

.pill {
  background: var(--beige);    /* Beispielfarbe */
  padding: 12px 20px;      /* innen Abstand */
  border-radius: 999px;    /* runde Pill-Form */
  text-align: center;
  font-weight: 600;
	  box-shadow:0 8px 20px rgba(0,0,0,.08);
	  margin-top: 60px;
	  
	  
}

	  
	  

	  
	  
	  
	  
	  
	  
	  
	  
	  
	  
	



	  
	  
/* =======================
   BUTTONS (global)
======================= */
.btn,a.btn,.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.4rem;
  padding:12px 22px;
  border-radius:999px;
  font-weight:800;
  background:var(--btn);
  color:#fff;
  text-decoration:none;
  border:0;
  box-shadow:0 8px 18px rgba(0,0,0,.12);
  cursor:pointer;
}
.btn.ghost{
  background:#fff;
  color:var(--earth);
  border:1px solid rgba(0,0,0,.15);
  box-shadow:0 6px 14px rgba(0,0,0,.06);
}
.btn:hover{opacity:.95}

/* =======================
   SECTIONS / LAYOUT
======================= */
.section{padding:70px 20px}
.wrap{
  max-width:var(--content);
  margin:0 auto;
  padding:0 20px;
	  background:var(--paper);
}
		  
		  
		  /* Visuell gleiche Luft oben/unten – verhindert optische "Überbreiten" */
.section{ padding: 70px 20px; }
.section--beige, .section--paper{ padding: 70px 20px; }

	  
	  	  


		  
/* =======================
   FOOTER
======================= */
footer{
  background:var(--earth);
  color:var(--beige);
  padding:48px 20px;
}
footer a{
  color:#F7EFE4;
  text-decoration:none;
  font-weight:700;
}
footer a:hover{text-decoration:underline}
footer svg{fill:#F7EFE4}
	  
	  
	  
	  
	  
	  
	  
	   /* HERO */
    .hero-energy{background:linear-gradient(180deg,#FFFFFF 0%, #FFFFFF 100%); padding:80px 20px;}
    .hero-energy .inner{max-width:1000px; margin:0 auto; text-align:center; display:grid; gap:16px;}
    .eyebrow{display:inline-block; padding:6px 12px; border-radius:999px; background:#F4E8D6; color:#4a2c2a; font-weight:800; letter-spacing:.02em;}
    .title{font-family:"Playfair Display", serif; font-size:clamp(30px,4.2vw,52px); color:var(--earth); margin:8px 0;}
    .subtitle{font-size:clamp(16px,2.1vw,20px); color:#412f2c; opacity:.9; line-height:1.7;}
    .slogan{display:inline-block; margin-top:4px; font-weight:800; letter-spacing:.01em; color:#3A2B24; background:#F4E8D6; padding:6px 12px; border-radius:999px;}
	  

#story {
  background: var(--paper);
  min-height: 85vh;
  display: flex;
  align-items: center;
}

/* GRID */
.story-grid {
  max-width: var(--wrap);
  margin: 0 auto;
 /* padding: rem; */
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 48px;
  align-items: center;
	  column-gap: 64px;
}

/* TEXT 
.story-text {
  padding-left: 1rem;
}
*/
/* FOTO */
.story-img {
  display: flex;
  justify-content: center;
	
}

.story-img img {
  width: 320px;          /* 👈 FESTE GRÖSSE → KEIN PIXEL */
  max-width: 100%;
  height: auto;
/*  border-radius: 50%; */
  border: 4px solid rgba(120,180,240,.25);
  box-shadow: var(--shadow);
	   transform: scaleX(-1);
}

	  
	  #story h2{
  font-size:clamp(34px,4.5vw,56px);
  margin-bottom:18px;
}
#story p{
  font-size:20px;
  max-width:540px;
  line-height:1.6;
}
	  
	  
	  

	
@media(max-width:991px){
  #story{padding:56px 0}
  #story .story-grid{grid-template-columns:1fr;padding-inline: clamp(1.25rem, 5vw, 2rem)}
  #story h2{font-size:clamp(28px,7vw,40px)}
  #story p{font-size:clamp(16px,4.2vw,18px)}
  .story-img{justify-self:center;margin-top:16px}
  .story-img img{max-width:220px;width: auto;
    height: auto}
}
  
	  
	#impuls {
  max-width: 700px;
		margin: 100px auto 60px auto;
 
  padding: 0 20px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  line-height: 1.8;
  color: #2b2b2b;
}

/* Jeder Satz als kleiner Atemzug */
#impuls .impuls-text p {
  margin-bottom: 1.8em;
  font-size: 1.15rem;
  position: relative;
  transition: transform 0.3s ease;
}

/* Leichte Hervorhebungen einzelner Wörter */
#impuls .impuls-text p span {
  color: #78B4F0;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: color 0.3s ease, transform 0.3s ease;
}

/* Subtile Bewegung beim Hover für Verspieltheit */
#impuls .impuls-text p span:hover {
  color: #c49b63;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 480px) {
  #impuls .impuls-text p {
    font-size: 1.05rem;
  }
}
	  
	  
/* Container mit Flexbox */
.mentoring-images {
  display: flex;
  justify-content: center;
  gap: 80px;          /* Abstand zwischen den Bildern */
  flex-wrap: wrap;     /* erlaubt Umbrechen auf kleinere Bildschirme */
  margin: 40px 0;
}

/* Bild-Box */
.mentoring-images .img-box {
  width: 280px;
  height: 350px;
  overflow: hidden;
  flex: 0 0 auto;
  border-radius: 12px;
  margin-bottom: 20px; /* Abstand bei Umbruch */
}

/* Bild selbst */
.mentoring-images .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.mentoring-images .img-box img:hover {
  transform: translateY(-6px);
}

/* Tablet */
@media (max-width: 900px) {
  .mentoring-images .img-box {
    width: 45%;   /* zwei nebeneinander */
    height: 280px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .mentoring-images .img-box {
    width: 100%;  /* ein Bild pro Reihe */
    height: 220px;
  }
}


	  
	  
	  .btn-row {
  display: flex;
  justify-content: center; /* zentriert horizontal */
  gap: 20px;               /* Abstand zwischen den Buttons */
  margin-top: 30px;
}

	  
	  @media (max-width: 600px) {
  .btn-row {
    flex-direction: column;
    align-items: center;
  }
}
	  
	  
	  
	  
	  
	  
	     *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 
	  
	
    :root {
      --beige: #f5f0e8;
      --beige-dark: #ede6d6;
      --brown: #6b5c45;
      --dark: #1e1e1e;
      --text: #2e2e2e;
      --muted: #7a7a7a;
      --white: #ffffff;
      --accent: #8b6f47;
    }
 
    body {
      font-family: 'DM Sans', sans-serif;
      color: var(--text);
      background: var(--white);
      font-size: 17px;
      line-height: 1.75;
    }
 
    h1, h2, h3 {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 400;
      color: var(--dark);
    }
 
    /* HERO 
    #wf-hero {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 90vh;
    }
   */
		  
		  
		  
		  
		  
		  
		  
		  
		  
		  
		  
		  
		  
    .hero-text h1 {
      font-size: 4.5rem;
      line-height: 1.1;
      margin-bottom: 2rem;
      color: var(--dark);
    }
    .hero-text p {
      font-size: 1.1rem;
      color: var(--muted);
      max-width: 480px;
      margin-bottom: 1.25rem;
      line-height: 1.8;
    }
    .hero-text p:last-of-type {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      color: var(--text);
      font-style: italic;
    }
    .btn-row {
      display: flex;
      gap: 1rem;
      margin-top: 2.5rem;
      flex-wrap: wrap;
    }
    .btn {
      padding: 0.75rem 2rem;
      font-size: 14px;
      letter-spacing: 0.05em;
      text-decoration: none;
      transition: all 0.2s;
      font-family: 'DM Sans', sans-serif;
    }
    .btn.primary {
      background: var(--dark);
      color: var(--white);
      border: 1px solid var(--dark);
    }
    .btn.primary:hover { background: var(--accent); border-color: var(--accent); }
    .btn.ghost {
      background: transparent;
      color: var(--dark);
      border: 1px solid var(--dark);
    }
    .btn.ghost:hover { background: var(--dark); color: var(--white); }
 
    .hero-img {
      position: relative;
      overflow: hidden;
    }
    .hero-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
    }
 
    /* STARKE FRAGE */
    #frage {
      background: var(--dark);
      padding: 7rem 6rem;
    }
    #frage h2 {
      font-size: 3rem;
      line-height: 1.3;
      color: var(--white);
      max-width: 800px;
      font-style: italic;
    }
 
    /* LEBENSBEREICHE */
    #lebensbereiche {
      background: var(--beige);
      padding: 6rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }
    #lebensbereiche .left {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem;
      line-height: 1.5;
      color: var(--dark);
    }
    #lebensbereiche .right p {
      color: var(--muted);
      font-size: 1rem;
      margin-bottom: 1rem;
    }
    #lebensbereiche .right .statement {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem;
      color: var(--accent);
      font-style: italic;
    }
 
    /* WURZEL */
    #wurzel {
      padding: 7rem 6rem;
      display: grid;
      grid-template-columns: 2fr 3fr;
      gap: 6rem;
      align-items: start;
    }
    #wurzel .left h2 {
      font-size: 2.5rem;
      line-height: 1.2;
      position: sticky;
      top: 4rem;
    }
    #wurzel .right p {
      margin-bottom: 1.5rem;
      color: var(--text);
    }
    #wurzel .right .highlight {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem;
      font-style: italic;
      color: var(--accent);
      border-left: 2px solid var(--accent);
      padding-left: 1.5rem;
      margin: 2.5rem 0;
    }
 
    /* DENNIS */
    #story {
      background: var(--beige);
      padding: 7rem 6rem;
  /*    display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6rem;
      align-items: center;*/
    }
    .story-img {
      aspect-ratio: 3/4;
      overflow: hidden;
    }
    .story-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
    }
    .story-text h2 {
      font-size: 2.5rem;
      margin-bottom: 2rem;
    }
    .story-text p {
      margin-bottom: 1.25rem;
      color: var(--text);
    }
    .story-text .detail {
      font-size: 14px;
      color: var(--muted);
      letter-spacing: 0.05em;
      margin-top: 2rem;
      border-top: 1px solid var(--beige-dark);
      padding-top: 1.5rem;
    }
 
    /* CTA */
    #cta {
      padding: 8rem 6rem;
      text-align: center;
      background: var(--white);
    }
    #cta h2 {
      font-size: 3rem;
      max-width: 700px;
      margin: 0 auto 1.5rem;
      line-height: 1.3;
    }
    #cta p {
      color: var(--muted);
      max-width: 500px;
      margin: 0 auto 3rem;
    }
 
    /* FOOTER 
    footer {
      background: var(--dark);
      color: var(--white);
      padding: 3rem 6rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 13px;
    }
    footer a { color: var(--muted); text-decoration: none; margin-left: 2rem; }
    footer a:hover { color: var(--white); }  */
 
    @media (max-width: 900px) {
      nav { padding: 1.5rem 2rem; }
      .nav-links { display: none; }
      #wf-hero { grid-template-columns: 1fr; }
      .hero-text { padding: 4rem 2rem; }
      .hero-text h1 { font-size: 3rem; }
      .hero-img { height: 60vw; }
      #frage { padding: 4rem 2rem; }
      #frage h2 { font-size: 2rem; }
      #lebensbereiche { grid-template-columns: 1fr; padding: 4rem 2rem; gap: 2rem; }
      #wurzel { grid-template-columns: 1fr; padding: 4rem 2rem; gap: 2rem; }
      #story { grid-template-columns: 1fr; padding: 4rem 2rem; gap: 2rem; }
      #cta { padding: 5rem 2rem; }
      #cta h2 { font-size: 2rem; }
      footer { flex-direction: column; gap: 1rem; padding: 2rem; text-align: center; }
      footer a { margin: 0 0.75rem; }
    }
