: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;
}

/* ===== Base ===== */
*{box-sizing:border-box}
html,body{margin:0; overflow-x:hidden}
html{-webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale}
body{background:#F2E8DA; 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}

/* ===== NAV ===== */
.nav {
  position:sticky; top:0; z-index:80;
  background:rgba(246,238,226,.92); backdrop-filter:blur(8px);
  border-bottom:1px solid rgba(0,0,0,.06);
}
.nav .container {
  max-width:var(--wrap);
  margin:0 auto; padding:12px 18px;
  display:flex; align-items:center; justify-content:space-between; gap:18px;
}

/* Brand */
.brand {
  font-family:"Playfair Display",serif;
  font-size:22px; font-weight:700;
  color:var(--earth);
}
.brand a,
.brand a:visited,
.brand a:active,
.brand a:hover {
  color:inherit !important;
  text-decoration:none !important;
}

/* Desktop-Menü */
.menu {
  display:flex; gap:20px; align-items:center;
  margin-left:auto; /* nach rechts schieben */
}
.menu a {
  color:var(--earth);
  text-decoration:none;
  font-weight:600;
  padding:8px 10px;
  border-radius:8px;
}
.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; gap:6px; align-items:center; cursor:pointer; }
.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:#fff; border:1px solid rgba(0,0,0,.08);
  border-radius:12px; padding:8px;
  box-shadow:0 12px 24px rgba(0,0,0,.08);
  display:none;
}
.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.open .dropdown{display:block}
.has-sub.open .caret{transform:rotate(-135deg)}

/* ===== Hamburger (Mobile) ===== */
.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:90; display:none; padding:84px 24px 24px;
}
.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:10px 0 10px 14px;
}

/* Responsive Umschaltung */
@media (max-width:980px) {
  #mainMenu { display:none; }   /* Desktop-Menü verstecken */
  .hamburger { display:block; } /* Hamburger sichtbar */
}
@media (min-width:981px) {
  #mobilePanel { display:none !important; } /* Panel nie auf Desktop */
}

	  
	  
	  /* --- NAV: Beige Hintergrund bleibt auch mobil sichtbar --- */
.nav {
  background: rgba(246,238,226,.96);
}

/* --- HERO: rechter beiger Hintergrund wieder aktiv --- */
#wf-hero{
  background: linear-gradient(90deg, var(--earth) 0 56%, var(--beige) 56% 100%);
}
@media (max-width: 991px){
  /* Mobile: statt harter 50/50 ein weicher Übergang und genug Padding */
  #wf-hero{
    background: linear-gradient(180deg, var(--earth) 0 46%, var(--beige) 46% 100%);
    padding: 56px 0;
  }
}

/* --- HERO-Foto mobil nicht riesig --- */
.photo { justify-self: end; align-self: center; position: relative; }
.photo img{
  display:block; width:100%; max-width:300px; aspect-ratio:1/1;
  object-fit:cover; border-radius:50%;
  border:4px solid rgba(196,155,99,.25); box-shadow: var(--shadow);
}

@media (max-width: 991px){
  .photo{ justify-self: center; margin-top: 12px; }
  .photo img{ max-width: 220px; }
}

/* --- Mobile-Panel soll über allem liegen und Clicks fangen --- */
.mobile-panel{
  z-index: 9999;              /* höher als Nav/Dropdowns */
  pointer-events: auto;       /* Clicks auf Links erlaubt */
}
.no-scroll { overflow: hidden; }

/* --- Brand-Link bleibt schwarz/braun, niemals Standard-Blau --- */
.brand { color: var(--earth); }
.brand a,
.brand a:visited,
.brand a:active,
.brand a:hover {
  color: inherit !important;
  text-decoration: none !important;
}
	  
	  
	  /* HERO mit fließendem Übergang */
#wf-hero {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(
    90deg,
    var(--earth) 0%,
    var(--earth) 52%,
    #4a3a32 54%,   /* Zwischenton */
    #7b6a5e 57%,   /* heller Braun-Ton */
    var(--beige) 60%,
    var(--beige) 100%
  );
}

#wf-hero .grid {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 36px;
  align-items: center;
}

#wf-hero h1 {
  color: #fff;
  font-size: clamp(34px, 4.5vw, 56px);
  margin: 0 0 18px;
}

#wf-hero p {
  color: #fff;
  font-size: 20px;
  margin: 0 0 22px;
  max-width: 540px;
  line-height: 1.6;
}

.pill-row {
  display: grid;
  gap: 14px;
  max-width: 440px;
}
.pill {
  background: var(--pill);
  border-radius: 14px;
  padding: 12px 14px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
}
.pill small {
  display: block;
  font-weight: 400;
  opacity: .9;
}

/* Bild */
.photo { justify-self: end; align-self: center; position: relative; }
.photo img {
  display: block;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid rgba(196,155,99,.25);
  box-shadow: var(--shadow);
}

/* --- Mobile Anpassungen --- */
@media (max-width: 991px) {
  #wf-hero {
    padding: 56px 0;
    background: linear-gradient(
      180deg,
      var(--earth) 0%,
      var(--earth) 54%,
      #4a3a32 58%,
      #7b6a5e 62%,
      var(--beige) 68%,
      var(--beige) 100%
    );
  }
  #wf-hero .grid { grid-template-columns: 1fr; }
  #wf-hero h1 { font-size: clamp(28px,7vw,40px); line-height: 1.15; margin-bottom: 14px; }
  #wf-hero p { font-size: clamp(16px,4.2vw,18px); }
  .photo { justify-self: center; margin-top: 16px; }
  .photo img { max-width: 220px; }
}


	  
	  /* Fixierter Kontakt-Button */
.cta-fixed {
  position: fixed;
  top: 75%;            /* 75% von oben */
  right: 24px;         /* rechts im Bild */
  transform: translateY(-50%); /* zentriert auf 75%-Linie */
  
  display: inline-flex;
  align-items: center;
  gap: 10px;

  background: var(--btn);
  color: #fff;
  font-weight: 700;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
  z-index: 1000;
}

/* Option: Desktop schön weit rechts halten */
@media (min-width: 1200px) {
  .cta-fixed {
    right: max(24px, calc((100vw - var(--wrap)) / 2 + 24px));
  }
}

	  
	/* === KONTAKT-CTA (oberhalb Footer) === */
#kontakt {
  background: var(--beige);          /* beige Hintergrund */
  padding: 80px 20px;
  text-align: center;
}

#kontakt .wrap {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;                  /* Card-Effekt */
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(0,0,0,.12);
  padding: 48px 32px;
}

#kontakt h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  color: var(--earth);
  margin-bottom: 14px;
}

	  
	  
	  
	  /* === W&F Mobile-Nav Failsafe (ans CSS-Ende setzen) === */

/* Scrollen sperren, wenn offen */
html.nav-open, html.nav-open body { overflow: hidden; }

/* Ebenen-Reihenfolge: Header > Menü-Panel > Backdrop > Content */
.site-header, .header { position: sticky; top: 0; z-index: 10003; }
.nav-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,.45);
  opacity: 0; pointer-events: none; transition: opacity .2s ease; z-index: 10001; }
html.nav-open .nav-backdrop { opacity: 1; pointer-events: auto; }

/* Dein mobiles Menü-Panel – wir decken die gängigen Wrapper ab */
.mobile-nav, .menu-wrap, .drawer, nav[aria-label="Hauptnavigation"] {
  position: fixed; top: 0; bottom: 0; left: 0; right: auto;
  width: 82%; max-width: 360px; height: 100vh;
  background: var(--card, #141816);
  transform: translateX(-100%);
  transition: transform .25s ease;
  z-index: 10002;

  /* Falls irgendwo display:none/visibility:hidden gesetzt wurde */
  display: block !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

/* Aktiv-Zustand (reinfahren) */
html.nav-open .mobile-nav,
html.nav-open .menu-wrap,
html.nav-open .drawer,
html.nav-open nav[aria-label="Hauptnavigation"] {
  transform: translateX(0);
}

Falls dein Menü von rechts kommen soll, entkommentiere:
.mobile-nav, .menu-wrap, .drawer, nav[aria-label="Hauptnavigation"] { left:auto; right:0; transform: translateX(100%); }
html.nav-open .mobile-nav, html.nav-open .menu-wrap, html.nav-open .drawer, html.nav-open nav[aria-label="Hauptnavigation"] { transform: translateX(0); }


/* Sicherheit: Content soll die Nav nicht überdecken */
main, .page, .section { position: relative; z-index: 1; }

/* Medienbruch: stelle sicher, dass .menu mobil nicht weggeklemmt wird */
@media (max-width: 980px){
  .menu { display: block; }
}

#kontakt p.lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #2b2b2b;
  margin-bottom: 28px;
}

/* Buttons */
#kontakt .btn-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

#kontakt .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .9rem 1.35rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 16px;
  line-height: 1;
  text-decoration: none;
  border: 0;
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
  transition: transform .08s ease, box-shadow .2s ease, opacity .2s ease;
  cursor: pointer;
}

#kontakt .btn.primary {
  background: var(--btn);
  color: #fff;
}

#kontakt .btn.ghost {
  background: #fff;
  color: var(--earth);
  border: 1px solid rgba(0,0,0,.1);
  box-shadow:
    0 12px 28px rgba(0,0,0,.12),
    inset 0 0 0 1px rgba(0,0,0,.08);
}

#kontakt .btn:hover { transform: translateY(-1px); opacity: 0.95; }

	  
	  
	  /* Grid & Karten */
.price-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap:24px;
}
.p-card{
  background:#fff;
  border-radius:16px;
  box-shadow:0 10px 24px rgba(0,0,0,.10);
  padding:20px;
}
.p-head{ display:flex; justify-content:space-between; align-items:center; margin-bottom:8px; }
.p-title{ font-family:"Playfair Display",serif; font-size:1.2rem; color:var(--earth); }
.p-badge{ font-size:.85rem; background:var(--pill); border-radius:999px; padding:4px 10px; font-weight:700; color:#6a574c; }
.p-price{ font-size:1.6rem; font-weight:900; color:var(--earth); margin:10px 0; }
.p-list{ margin:0 0 6px; padding-left:18px; line-height:1.7; color:#2b2b2b; }

/* Button-Reihe in der Karte */
.p-cta{ margin-top:12px; display:flex; gap:12px; flex-wrap:wrap; }

/* Buttons (nutzt deine globale .btn-Optik) */
.p-cta .btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:.4rem; padding:.9rem 1.35rem; border-radius:999px;
  font-weight:800; font-size:16px; line-height:1;
  text-decoration:none; border:0;
  box-shadow:0 10px 24px rgba(0,0,0,.12);
  transition:transform .08s ease, opacity .2s ease;
}
.p-cta .btn.primary{ background:var(--btn); color:#fff; }
.p-cta .btn.ghost{ background:#fff; color:var(--earth); border:1px solid rgba(0,0,0,.1); }
.p-cta .btn:hover{ transform:translateY(-1px); opacity:.95; }

/* Verhindert „Standard-Linklook“ innerhalb der Karten */
.p-card a{ color:inherit; text-decoration:none; }
.p-card a:hover{ text-decoration:underline; }
@media (max-width:560px){
  .p-cta .btn{ width:100%; }
}
	  
	  
	  /* ===== Button-Base (greift für alle Seiten) ===== */
a.btn, .btn, .button {
  display:inline-block;
  background: var(--btn, #E56B3E);
  color:#fff !important;
  text-decoration:none !important;
  font-weight:800;
  border-radius:999px;
  padding:12px 22px;
  box-shadow:0 8px 18px rgba(0,0,0,.12);
  border:0;
  cursor:pointer;
  line-height:1;
}
a.btn:hover, .btn:hover, .button:hover { opacity:.95 }

/* Ghost-Variante */
a.btn.ghost, .btn.ghost, .button.ghost {
  background:#fff;
  color:#3A2B24 !important;
  border:1px solid rgba(0,0,0,.15);
  box-shadow:0 6px 14px rgba(0,0,0,.06);
}

/* Button-Reihen */
.btn-row { display:flex; gap:12px; flex-wrap:wrap; justify-content:center; align-items:center }
.btn-row > a, .btn-row > button { margin:6px 0 }

/* ===== FAQ-Buttons speziell (falls dort nur Links stehen) ===== */
.faq .actions a,
.faq a.button,
.faq a.btn {
  display:inline-block;
  background: var(--btn, #E56B3E);
  color:#fff !important;
  text-decoration:none !important;
  font-weight:800;
  border-radius:999px;
  padding:12px 22px;
  box-shadow:0 8px 18px rgba(0,0,0,.12);
}
.faq .actions a.ghost { background:#fff; color:#3A2B24 !important; border:1px solid rgba(0,0,0,.15) }

/* Falls die FAQ-Markup keine .actions hat, Buttons auch in Listen hübsch machen */
.faq li a.primary,
.faq li a.cta { @apply btn; } /* wenn du Tailwind nicht nutzt, bitte ignorieren */
.faq li a.primary { background:var(--btn, #E56B3E); color:#fff !important }
.faq li a.secondary { background:#fff; color:#3A2B24 !important; border:1px solid rgba(0,0,0,.15) }

/* ===== Abo-Module Grid ===== */
.abo-grid {
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap:18px;
  margin:22px 0;
}
.abo-card {
  background:#EDE3D2;
  border-radius:16px;
  padding:20px;
  box-shadow:0 10px 22px rgba(0,0,0,.06);
  display:flex; flex-direction:column; justify-content:space-between;
}
.abo-card h3 { margin:0 0 8px; color:#3A2B24; font-size:1.15rem }
.abo-card .price { font-weight:800; font-size:1.25rem; margin:6px 0 10px }
.abo-card .desc { opacity:.9; line-height:1.6 }
.abo-card .btn-row { margin-top:14px }

	  
	  
	  /* === Reset Schriftstärken === */
body, p, li, span, .lead {
  font-weight: 400;   /* normaler Text */
}

/* Überschriften bleiben fett */
h1, h2, h3, .p-title {
  font-weight: 700;
}

/* Buttons & Badges extra stark */
.btn, .button, .p-badge {
  font-weight: 800;
}

	  
	  
	  /* === W&F Mobile-Nav Failsafe (ans CSS-Ende setzen) === */

/* Scrollen sperren, wenn offen */
html.nav-open, html.nav-open body { overflow: hidden; }

/* Ebenen-Reihenfolge: Header > Menü-Panel > Backdrop > Content */
.site-header, .header { position: sticky; top: 0; z-index: 10003; }
.nav-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,.45);
  opacity: 0; pointer-events: none; transition: opacity .2s ease; z-index: 10001; }
html.nav-open .nav-backdrop { opacity: 1; pointer-events: auto; }

/* Dein mobiles Menü-Panel – wir decken die gängigen Wrapper ab */
.mobile-nav, .menu-wrap, .drawer, nav[aria-label="Hauptnavigation"] {
  position: fixed; top: 0; bottom: 0; left: 0; right: auto;
  width: 82%; max-width: 360px; height: 100vh;
  background: var(--card, #141816);
  transform: translateX(-100%);
  transition: transform .25s ease;
  z-index: 10002;

  /* Falls irgendwo display:none/visibility:hidden gesetzt wurde */
  display: block !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

/* Aktiv-Zustand (reinfahren) */
html.nav-open .mobile-nav,
html.nav-open .menu-wrap,
html.nav-open .drawer,
html.nav-open nav[aria-label="Hauptnavigation"] {
  transform: translateX(0);
}

/* Falls dein Menü von rechts kommen soll, entkommentiere:
.mobile-nav, .menu-wrap, .drawer, nav[aria-label="Hauptnavigation"] { left:auto; right:0; transform: translateX(100%); }
html.nav-open .mobile-nav, html.nav-open .menu-wrap, html.nav-open .drawer, html.nav-open nav[aria-label="Hauptnavigation"] { transform: translateX(0); }  */

/* Sicherheit: Content soll die Nav nicht überdecken */
main, .page, .section { position: relative; z-index: 1; }

/* Medienbruch: stelle sicher, dass .menu mobil nicht weggeklemmt wird */
@media (max-width: 980px){
  .menu { display: block; }
}

	  
	  
	  
	  
	  
	  
	  
	  
	  
/* === W&F Mobile Menu: #mainMenu als Off-Canvas-Panel === */
@media (max-width: 980px){
  /* Panel selbst */
  #mainMenu.menu{
    position: fixed;
    top: 0; right: 0; left: auto; bottom: 0;
    width: min(88vw, 360px);
    height: 100vh;
    background: var(--card, #141816);
    overflow: auto;
    z-index: 10002;

    /* von rechts reinsliden */
    transform: translateX(100%);
    transition: transform .25s ease;

    /* sicherstellen, dass es nicht weg-gestylt ist */
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    visibility: visible !important;
    opacity: 1 !important;
  }
  html.nav-open #mainMenu.menu{
    transform: translateX(0);
  }

  /* Links lesbar & tappable */
  #mainMenu.menu a{
    color: var(--txt, #f5f5f4) !important;
    text-decoration: none;
    padding: 12px 16px;
    display: block;
  }
  #mainMenu.menu a:hover{ background: rgba(255,255,255,.06); }

  /* Backdrop unter dem Panel */
  .nav-backdrop{
    position: fixed; inset: 0;
    background: rgba(0,0,0,.45);
    opacity: 0; pointer-events: none;
    transition: opacity .2s ease;
    z-index: 10001;
  }
  html.nav-open .nav-backdrop{
    opacity: 1; pointer-events: auto;
  }

  /* Header/Hamburger ganz oben */
  .site-header, .header{ position: sticky; top: 0; z-index: 10003; }
}
	  
	  
	  
	  
	  
	  
	  
	  
/* === Mobile Cleanup für das Off-Canvas (#mainMenu) === */
@media (max-width: 980px){
  /* Link-Hitbox & Typo */
  #mainMenu.menu a{
    display:block;
    padding:14px 18px;
    line-height:1.35;
    text-decoration:none;
    color:var(--txt,#f5f5f4);
  }

  /* Entfernt die „Striche“ / Deko vom Desktop */
  #mainMenu.menu a::after,
  #mainMenu.menu li::after,
  #mainMenu.menu a::before,
  #mainMenu.menu li::before{
    content:none !important;
    border:0 !important;
  }
  #mainMenu.menu li{ border:0 !important; }

  /* Optional: dezente Trennlinie statt „Striche“ */
  #mainMenu.menu li + li{ border-top:1px solid rgba(255,255,255,.05); }

  /* Kontakt-Button kann bleiben; Falls er float/transform hat → reset */
  #mainMenu.menu .btn, #mainMenu.menu .button{
    display:inline-flex; align-items:center; justify-content:center;
    margin:10px 18px;
  }

  /* UX: Body unter Menü nicht scrollen */
  html.nav-open, html.nav-open body{ overflow:hidden; }
}

	  
	  
	  
/* === KEIM-Hero oben "wie vorher": breiter Balken + großzügige Typo === */
.hero-energy{ padding: 84px 20px !important; background: linear-gradient(180deg,#F7F1E6 0%, #FAF7F2 100%) !important; }
.hero-energy .inner{ max-width:1000px; margin:0 auto; text-align:center; display:grid; gap:18px; }

/* breiter, abgerundeter Balken */
.hero-energy .eyebrow{
  display:block !important;
  width: min(980px, 92vw);
  margin: 4px auto 10px;
  padding: 10px 18px;
  border-radius: 9999px;
  background: var(--beige, #EDE3D2);
  color: var(--earth, #3A2B24);
  font-weight: 800;
  letter-spacing: .02em;
}

/* große, markige Headline */
.hero-energy .title{
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.12;
  color: var(--earth, #3A2B24);
  margin: 6px 0 10px;
}

/* weite, gut lesbare Subline */
.hero-energy .subtitle{
  max-width: 980px;
  margin: 0 auto;
  font-size: clamp(16px, 2.2vw, 20px);
  line-height: 1.8;
  color: #412f2c;
  opacity: .95;
}

/* Laufzeit-Zeile etwas Abstand nach oben und zentriert */
.hero-energy .lead{
  max-width: 980px;
  margin: 8px auto 0;
  text-align: center;
}

/* Mobile Feinschliff */
@media (max-width: 700px){
  .hero-energy{ padding: 64px 16px !important; }
  .hero-energy .eyebrow{ width: calc(100% - 16px); padding: 9px 14px; }
  .hero-energy .title{ font-size: clamp(28px, 8vw, 40px); }
  .hero-energy .subtitle{ padding: 0 4px; line-height: 1.75; }
}


	  /* === Mobile Menü Cleanup === */
@media (max-width: 980px){
  #mainMenu.menu a::after,
  #mainMenu.menu a::before,
  #mainMenu.menu li::after,
  #mainMenu.menu li::before {
    content: none !important;
    border: none !important;
  }

  #mainMenu.menu li {
    border: none !important;
  }

  /* Optional: dezente Trenner statt Striche */
  #mainMenu.menu li + li {
    border-top: 1px solid rgba(255,255,255,.08);
  }
}

	  
	  :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;
}

/* =======================
   BASE
======================= */
*{box-sizing:border-box}
html,body{margin:0; overflow-x:hidden}
html{-webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale}
body{background:#F2E8DA; 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}
.container{max-width:var(--wrap); margin:0 auto; display:flex; align-items:center; justify-content:space-between}

/* =======================
   NAVIGATION (Header)
======================= */
.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}

/* Brand */
.brand{font-family:"Playfair Display",serif; font-size:22px; font-weight:700; color:var(--earth)}
.brand a,.brand a:visited,.brand a:active,.brand a:hover{color:inherit !important; text-decoration:none !important}

/* ----- DESKTOP MENÜ (nur ≥981px sichtbar) */
.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;
}
.menu a:hover{ background:rgba(58,43,36,.08) }
.menu a.active{ text-decoration:underline }

/* Dropdown Desktop */
.has-sub{ position:relative }
.has-sub > a{ display:inline-flex; gap:6px; align-items:center; cursor:pointer }
.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,#EDE3D2); color:#1a1a1a;
  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.open .dropdown{ display:block }
.has-sub.open .caret{ transform:rotate(-135deg) }

/* ----- HAMBURGER (nur mobil sichtbar) */
.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 (einziges Mobile-Menü)
======================= */
.mobile-panel{ /* Basis; Desktop-Override unten */
  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:10px 0 10px 14px }
.mobile-panel *::before, .mobile-panel *::after{ content:none !important; border:0 !important; box-shadow:none !important }
.no-scroll{ overflow:hidden }

/* =======================
   RESPONSIVE UMSCHALTER
======================= */
@media (max-width:980px){
  /* Desktop-Menü aus, Hamburger an, Mobile-Panel aktiv */
  #mainMenu{ display:none !important }
  .hamburger{ display:block !important }
}
@media (min-width:981px){
  /* Mobile-Panel ganz aus, Desktop-Menü sichtbar */
  #mobilePanel{ display:none !important }
  .hamburger{ display:none !important }
  #mainMenu{ display:flex !important }
  /* Desktop-Dropdowns schweben (kein Header-Sprung) */
  #mainMenu.menu{ position:relative }
  #mainMenu.menu .dropdown{
    position:absolute !important; left:0; top:100%;
    display:none !important; min-width:230px;
    background:var(--beige,#EDE3D2) !important; color:#1a1a1a;
    box-shadow:0 10px 30px rgba(0,0,0,.15); border-radius:12px; padding:8px 0; z-index:1000;
  }
  #mainMenu.menu .has-sub:hover > .dropdown,
  #mainMenu.menu .has-sub:focus-within > .dropdown{ display:block !important }
}

/* =======================
   HERO (#wf-hero) & Bild
======================= */
#wf-hero{
  position:relative; padding:80px 0;
  background:linear-gradient(
    90deg,
    var(--earth) 0%,
    var(--earth) 52%,
    #4a3a32 54%,
    #7b6a5e 57%,
    var(--beige) 60%,
    var(--beige) 100%
  );
}
#wf-hero .grid{
  max-width:var(--wrap); margin:0 auto; padding:0 28px;
  display:grid; grid-template-columns:1.08fr .92fr; gap:36px; align-items:center;
}
#wf-hero h1{ color:#fff; font-size:clamp(34px,4.5vw,56px); margin:0 0 18px }
#wf-hero p{ color:#fff; font-size:20px; margin:0 0 22px; max-width:540px; line-height:1.6 }

.pill-row{ display:grid; gap:14px; max-width:440px }
.pill{ background:var(--pill); border-radius:14px; padding:12px 14px; font-weight:700; box-shadow:0 8px 20px rgba(0,0,0,.08) }
.pill small{ display:block; font-weight:400; opacity:.9 }

.photo{ justify-self:end; align-self:center; position:relative }
.photo img{
  display:block; width:100%; max-width:320px; aspect-ratio:1/1; object-fit:cover; border-radius:50%;
  border:4px solid rgba(196,155,99,.25); box-shadow:var(--shadow)
}

@media (max-width:991px){
  #wf-hero{
    padding:56px 0;
    background:linear-gradient(
      180deg,
      var(--earth) 0%,
      var(--earth) 54%,
      #4a3a32 58%,
      #7b6a5e 62%,
      var(--beige) 68%,
      var(--beige) 100%
    );
  }
  #wf-hero .grid{ grid-template-columns:1fr }
  #wf-hero h1{ font-size:clamp(28px,7vw,40px); line-height:1.15; margin-bottom:14px }
  #wf-hero p{ font-size:clamp(16px,4.2vw,18px) }
  .photo{ justify-self:center; margin-top:16px }
  .photo img{ max-width:220px }
}

/* =======================
   FIXIERTER CTA (📮)
======================= */
.cta-fixed{
  position:fixed; top:75%; right:24px; transform:translateY(-50%);
  display:inline-flex; align-items:center; gap:10px;
  background:var(--btn); color:#fff; font-weight:700; padding:14px 22px;
  border-radius:999px; text-decoration:none; box-shadow:0 8px 20px rgba(0,0,0,.25); z-index:1000;
}
@media (min-width:1200px){
  .cta-fixed{ right:max(24px, calc((100vw - var(--wrap)) / 2 + 24px)) }
}

/* =======================
   SECTIONS: Kontakt-CTA (oberhalb Footer)
======================= */
#kontakt{ background:var(--beige); padding:80px 20px; text-align:center }
#kontakt .wrap{
  max-width:900px; margin:0 auto; background:#fff; border-radius:20px;
  box-shadow:0 12px 28px rgba(0,0,0,.12); padding:48px 32px;
}
#kontakt h2{ font-family:"Playfair Display",serif; font-size:clamp(26px,3vw,36px); font-weight:700; color:var(--earth); margin-bottom:14px }
#kontakt p.lead{ font-size:1.15rem; line-height:1.7; color:#2b2b2b; margin-bottom:28px }
#kontakt .btn-row{ display:flex; justify-content:center; align-items:center; gap:16px; flex-wrap:wrap }
#kontakt .btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.4rem;
  padding:.9rem 1.35rem; border-radius:999px; font-weight:800; font-size:16px; line-height:1;
  text-decoration:none; border:0; box-shadow:0 10px 24px rgba(0,0,0,.12);
  transition:transform .08s ease, box-shadow .2s ease, opacity .2s ease; cursor:pointer;
}
#kontakt .btn.primary{ background:var(--btn); color:#fff }
#kontakt .btn.ghost{ background:#fff; color:var(--earth); border:1px solid rgba(0,0,0,.1);
  box-shadow:0 12px 28px rgba(0,0,0,.12), inset 0 0 0 1px rgba(0,0,0,.08) }
#kontakt .btn:hover{ transform:translateY(-1px); opacity:.95 }

/* =======================
   GRIDS & KARTEN (Preis/Angebote)
======================= */
.price-grid{ display:grid; grid-template-columns:repeat(auto-fit, minmax(260px,1fr)); gap:24px }
.p-card{ background:#fff; border-radius:16px; box-shadow:0 10px 24px rgba(0,0,0,.10); padding:20px }
.p-head{ display:flex; justify-content:space-between; align-items:center; margin-bottom:8px }
.p-title{ font-family:"Playfair Display",serif; font-size:1.2rem; color:var(--earth) }
.p-badge{ font-size:.85rem; background:var(--pill); border-radius:999px; padding:4px 10px; font-weight:700; color:#6a574c }
.p-price{ font-size:1.6rem; font-weight:900; color:var(--earth); margin:10px 0 }
.p-list{ margin:0 0 6px; padding-left:18px; line-height:1.7; color:#2b2b2b }
.p-cta{ margin-top:12px; display:flex; gap:12px; flex-wrap:wrap }
.p-cta .btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.4rem;
  padding:.9rem 1.35rem; border-radius:999px; font-weight:800; font-size:16px; line-height:1;
  text-decoration:none; border:0; box-shadow:0 10px 24px rgba(0,0,0,.12);
  transition:transform .08s ease, opacity .2s ease;
}
.p-cta .btn.primary{ background:var(--btn); color:#fff }
.p-cta .btn.ghost{ background:#fff; color:var(--earth); border:1px solid rgba(0,0,0,.1) }
.p-cta .btn:hover{ transform:translateY(-1px); opacity:.95 }
@media (max-width:560px){ .p-cta .btn{ width:100% } }

/* =======================
   ABO-GRID
======================= */
.abo-grid{ display:grid; grid-template-columns:repeat(auto-fit, minmax(260px,1fr)); gap:18px; margin:22px 0 }
.abo-card{
  background:#EDE3D2; border-radius:16px; padding:20px; box-shadow:0 10px 22px rgba(0,0,0,.06);
  display:flex; flex-direction:column; justify-content:space-between;
}
.abo-card h3{ margin:0 0 8px; color:#3A2B24; font-size:1.15rem }
.abo-card .price{ font-weight:800; font-size:1.25rem; margin:6px 0 10px }
.abo-card .desc{ opacity:.9; line-height:1.6 }
.abo-card .btn-row{ margin-top:14px }

/* =======================
   BUTTON BASICS (global)
======================= */
a.btn, .btn, .button{
  display:inline-block; background:var(--btn,#E56B3E); color:#fff !important; text-decoration:none !important;
  font-weight:800; border-radius:999px; padding:12px 22px; box-shadow:0 8px 18px rgba(0,0,0,.12); border:0; cursor:pointer; line-height:1;
}
a.btn:hover, .btn:hover, .button:hover{ opacity:.95 }
a.btn.ghost, .btn.ghost, .button.ghost{
  background:#fff; color:#3A2B24 !important; border:1px solid rgba(0,0,0,.15); box-shadow:0 6px 14px rgba(0,0,0,.06)
}
.btn-row{ display:flex; gap:12px; flex-wrap:wrap; justify-content:center; align-items:center }
.btn-row > a, .btn-row > button{ margin:6px 0 }

/* =======================
   TYPO TUNING
======================= */
body, p, li, span, .lead{ font-weight:400 }
h1, h2, h3, .p-title{ font-weight:700 }
.btn, .button, .p-badge{ font-weight:800 }

	  
	  
	  
	  /* Desktop: Caret immer nach unten – nur bei Hover/Focus hochklappen */
@media (min-width: 981px){
  #mainMenu .has-sub .caret{ transform: rotate(45deg) !important; } /* ↓ */
  #mainMenu .has-sub:hover > a .caret,
  #mainMenu .has-sub:focus-within > a .caret{
    transform: rotate(-135deg) !important;                           /* ↑ */
  }
}

	  
	  /* Aktive Links im Dropdown schöner stylen */
.menu .dropdown a.active{
  text-decoration: none !important;  /* Unterstreichung weg */
  font-weight: 700;                  /* etwas fetter */
  background: var(--pill);           /* zarter Hintergrund */
  border-radius: 6px;
}

	  .price-brutto {
  font-size: .92rem;
  opacity: .8;
  margin-left: 6px;
}
@media (max-width: 600px){
  .price-brutto {
    display: block;
    margin-left: 0;
    margin-top: 4px;
  }
}  
	  
	  
  
	
	  
	  
  .wf-slidein {
    position: fixed; right: 1rem; bottom: 1rem; z-index: 9998;
    max-width: 420px; width: min(92vw, 420px);
    transform: translateY(16px); opacity: 0; transition: all .25s ease;
  }
  .wf-slidein.wf-show { transform: translateY(0); opacity: 1; }
  .wf-si-card {
    backdrop-filter: blur(6px);
    background: rgba(255, 255, 255, .88); /* halbtransparent, wirkt edel */
    box-shadow: 0 10px 30px rgba(0,0,0,.18);
  }
  .wf-si-close {
    position:absolute; top:.5rem; right:.5rem; border:0; background:transparent;
    font-size:1.15rem; cursor:pointer; line-height:1;
  }
  @media (max-width: 680px){
    .wf-slidein { right:.75rem; left:.75rem; width:auto; }
  }
	  
	  
	  
	.socials.icons-only {
  display: flex;
  justify-content: center;  /* zentrieren */
  gap: 2rem;                /* Abstand zwischen den Icons */
  margin: 2rem 0;
}

.socials.icons-only .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease;
}

.socials.icons-only .social-link:hover {
  transform: scale(1.15);   /* Icons wachsen beim Hover */
}

.socials.icons-only svg {
  width: 40px;              /* Icon-Größe */
  height: 40px;
  fill: #111;               /* tiefes Schwarz */
}
	  
	  
	  /* CTA wieder einschalten */
#ctaBtn,
.cta-fixed{
  display: inline-flex !important; /* oder block – je nach Markup */
}

	  
	  
	  /* ==== Startseite: kompakte NAV (nur wenn der Hero existiert) ==== */
/* nutzt :has() → greift nur auf Seiten mit #wf-hero (also Home) */
body:has(#wf-hero) .nav .container{
  padding: 8px 16px !important;   /* statt 12px 18px */
}
body:has(#wf-hero) .brand{
  font-size: 20px !important;     /* statt 22px */
  line-height: 1 !important;
}
body:has(#wf-hero) .menu a{
  font-size: 15px !important;
  padding: 6px 8px !important;    /* weniger vertikales Padding */
  line-height: 1 !important;      /* verhindert „aufgeblasene“ Zeilenhöhe */
}

/* Sicherheit: Header-Höhe konstant halten */
.nav .container{
  min-height: 56px;               /* fixe Zielhöhe */
}
.nav .brand, .nav .menu a{
  line-height: 1;                 /* überschreibt evtl. geerbte line-height */

}
	  
	  
	  
	  /* Dunkler Footer im Earth-Braun */
footer{
  background: var(--earth);
  color: var(--beige);
  padding: 48px 20px;
  border-top: 1px solid rgba(0,0,0,.35);
}
footer a{
  color: #F7EFE4;
  text-decoration: none;
  font-weight: 700;
}
footer a:hover{ text-decoration: underline; }

/* Optional: Social-Icons im Footer automatisch hell */
footer svg{ fill:#F7EFE4; opacity:.95; }

/* Kleine Typo & Layout-Helfer */
footer strong{ color:#F7EFE4; }
footer .wrap{ max-width: var(--wrap); margin:0 auto; padding:0 20px; }
	  
	  
	  /* Einheitliche Content-Breite für alle Sektionen */
:root { --content: 1000px; } /* ggf. auf 960/1100 anpassen */
.wrap{ max-width: var(--content); margin: 0 auto; padding: 0 20px; }

/* Karten immer zentriert & gleiche Breite */
.card-white{ width:100%; max-width: var(--content); margin: 0 auto; }

/* Visuell gleiche Luft oben/unten – verhindert optische "Überbreiten" */
.section{ padding: 70px 20px; }
.section--beige, .section--paper{ padding: 70px 20px; }


