:root{
  --forest-dark:#33421f;
  --forest:#4a5e2e;
  --forest-mid:#5c7a3f;
  --olive:#7c8f5a;
  --sage-light:#f3f3e2;
  --sage-mid:#e3e8d2;
  --sage-card:#e9edd9;
  --gold:#c9a227;
  --gold-soft:#dcb84a;
  --text:#2f3620;
  --text-soft:#5a6249;
  --white:#fffdf6;
  --radius:18px;
  --shadow: 0 10px 30px rgba(51,66,31,0.10);
}
*{box-sizing:border-box;}
html{scroll-behavior:smooth; overflow-x:hidden;}
body{
  margin:0;
  overflow-x:hidden;
  font-family:'Quicksand', sans-serif;
  background:var(--sage-light);
  color:var(--text);
  line-height:1.6;
}
h1,h2,h3{
  font-family:'Playfair Display', serif;
  color:var(--forest-dark);
  margin:0 0 8px 0;
}
p{ margin:0 0 14px 0; }
a{ color:inherit; }
img{ max-width:100%; display:block; }
.wrap{ max-width:1120px; margin:0 auto; padding:0 28px; }
.eyebrow{
  text-transform:uppercase;
  letter-spacing:3px;
  font-size:13px;
  font-weight:700;
  color:var(--olive);
  margin-bottom:6px;
}
.divider{
  width:70px; height:4px; border-radius:4px;
  background:linear-gradient(90deg,var(--gold),var(--forest-mid));
  margin:10px auto 30px auto;
}
.divider.left{ margin:10px 0 30px 0; }

/* HEADER */
header{
  position:sticky; top:0; z-index:50;
  background:rgba(243,243,226,0.94);
  backdrop-filter:blur(6px);
  border-bottom:1px solid rgba(51,66,31,0.08);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:clamp(10px,3vw,14px) clamp(14px,4vw,28px); max-width:1120px; margin:0 auto;
  gap:clamp(8px,3vw,20px);
}
.brand{ display:flex; align-items:center; gap:12px; min-width:0; flex:1 1 auto; }
.brand svg{ width:38px; height:34px; flex-shrink:0; }
.brand .logo-slot{
  background:var(--forest-dark); border-radius:50%;
  width:clamp(44px,14vw,80px); height:clamp(44px,14vw,80px);
  display:flex; align-items:center; justify-content:center; flex-shrink:0; padding:10px; box-sizing:border-box;
}
.brand img.logo-img{ width:100%; height:100%; object-fit:contain; }
.brand-text{ line-height:1.15; min-width:0; overflow:hidden; }
.brand-text .b1{
  font-family:'Quicksand',sans-serif; font-weight:700; letter-spacing:clamp(1px,0.5vw,2.5px);
  font-size:clamp(11px,3.2vw,15px); color:var(--forest-dark);
  overflow:hidden; text-overflow:ellipsis; white-space:nowrap;
}
.brand-text .b2{
  font-size:clamp(8px,2.2vw,10px); letter-spacing:clamp(0.5px,0.4vw,2px); font-weight:600; color:var(--olive);
  overflow:hidden; text-overflow:ellipsis; white-space:nowrap;
}
nav.tabs{
  display:flex; flex-wrap:wrap; gap:4px 8px;
  padding:0 28px 12px 28px; max-width:1120px; margin:0 auto;
}
.nav-toggle{
  display:none; flex-direction:column; justify-content:center; gap:5px;
  width:40px; height:36px; padding:0; border:none; background:transparent; cursor:pointer;
  flex-shrink:0;
}
.nav-toggle span{ display:block; width:100%; height:2.5px; background:var(--forest-dark); border-radius:2px; transition:transform .2s ease, opacity .2s ease; }
.nav-toggle.open span:nth-child(1){ transform:translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity:0; }
.nav-toggle.open span:nth-child(3){ transform:translateY(-7.5px) rotate(-45deg); }
nav.tabs button{
  font-family:'Quicksand',sans-serif; font-weight:700; font-size:14px;
  letter-spacing:0.4px;
  padding:9px 18px; border-radius:999px; border:1.5px solid transparent;
  background:transparent; color:var(--text-soft); cursor:pointer;
  white-space:nowrap; transition:all .18s ease;
}
nav.tabs button:hover{ background:var(--sage-mid); color:var(--forest-dark); }
nav.tabs button.active{
  background:var(--forest-dark); color:var(--white); border-color:var(--forest-dark);
}
.nav-group{ position:relative; }
.nav-group-btn{ display:inline-flex; align-items:center; gap:5px; }
.nav-group-btn .caret{ font-size:10px; transition:transform .18s ease; }
.nav-group.open .nav-group-btn .caret{ transform:rotate(180deg); }
.nav-group:not(.open) .nav-group-btn.has-active{
  background:var(--forest-dark); color:var(--white); border-color:var(--forest-dark);
  font-weight:800;
}
.nav-group.open .nav-group-btn.has-active{ background:transparent; color:var(--text-soft); font-weight:700; }
.nav-dropdown{
  display:none; position:absolute; top:calc(100% + 6px); left:0;
  background:var(--white); border-radius:14px; box-shadow:var(--shadow);
  padding:6px; min-width:200px; max-width:calc(100vw - 56px); flex-direction:column; gap:2px; z-index:9999;
}
.nav-group.open .nav-dropdown{ display:flex; }
.nav-dropdown button{ width:100%; text-align:left; border-radius:8px; }
.header-cta{
  display:flex; align-items:center; justify-content:center;
  background:var(--forest-dark); color:var(--white); text-decoration:none;
  width:clamp(38px,10vw,44px); height:clamp(38px,10vw,44px); border-radius:50%;
  flex-shrink:0; transition:background .2s;
}
.header-cta svg{ width:55%; height:55%; }
.header-cta:hover{ background:var(--forest-mid); }

/* HERO */
.hero.hero-hidden{ display:none; }
.hero{
  padding:56px 0 40px 0;
  background:linear-gradient(180deg, var(--sage-mid) 0%, var(--sage-light) 100%);
  overflow:hidden;
}
.hero .wrap{ display:flex; align-items:center; gap:40px; }
.hero-text{ flex:1 1 420px; min-width:280px; }
.hero-text h1{ font-size:42px; line-height:1.2; }
.hero-text .lead{ font-size:18px; color:var(--text-soft); max-width:480px; }
.hero-img{ flex:1 1 320px; min-width:240px; text-align:center; }
.hero-img img{ max-width:340px; margin:0 auto; }
.hero-ctas{ display:flex; gap:12px; flex-wrap:wrap; margin-top:22px; }
.btn{
  display:inline-flex; align-items:center; gap:8px;
  padding:13px 24px; border-radius:999px; font-weight:700; font-size:14px;
  text-decoration:none; cursor:pointer; border:2px solid var(--forest-dark);
  transition:all .2s;
}
.btn.solid{ background:var(--forest-dark); color:var(--white); }
.btn.solid:hover{ background:var(--forest-mid); border-color:var(--forest-mid); }
.btn.outline{ background:transparent; color:var(--forest-dark); }
.btn.outline:hover{ background:var(--forest-dark); color:var(--white); }

/* TAB PANELS */
.panel{ display:none; padding:50px 0 70px 0; animation:fade .35s ease; }
.panel.active{ display:block; }
@keyframes fade{ from{opacity:0; transform:translateY(6px);} to{opacity:1; transform:translateY(0);} }

.section-head{ text-align:center; margin-bottom:8px; }
.section-head h2{ font-size:30px; }

.intro-block{ max-width:760px; margin:0 auto 34px auto; text-align:center; }
.intro-block p{ font-size:16.5px; color:var(--text-soft); }

.callout{
  background:var(--forest-dark); color:var(--white);
  border-radius:var(--radius); padding:26px 34px; margin:0 auto 46px auto;
  max-width:880px; text-align:center; font-size:16px; box-shadow:var(--shadow);
}
.callout b{ color:var(--gold-soft); }

.cards-grid{
  display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:20px; margin-bottom:50px;
}
.card{
  background:var(--forest); color:var(--white);
  border-radius:var(--radius); padding:26px 24px; text-align:center;
  box-shadow:var(--shadow);
}
.card svg{ width:30px; height:30px; margin:0 auto 12px auto; display:block; stroke:var(--gold-soft); }
.card h3{ color:var(--white); font-size:18px; margin-bottom:6px; }
.card p{ color:#eef0dc; font-size:14.5px; margin:0; }

.themes-grid{
  display:grid; grid-template-columns:minmax(0,1fr) minmax(0,1fr); gap:22px; margin-bottom:52px;
}
.theme-box{ border-radius:var(--radius); padding:26px 24px; box-shadow:var(--shadow); }
.theme-box.korp{ background:var(--olive); }
.theme-box.seel{ background:var(--forest-dark); }
.theme-box h3{ color:var(--white); font-size:19px; display:flex; align-items:center; gap:8px; margin-bottom:16px; }
.pill-row{ display:flex; flex-wrap:wrap; gap:9px; }
.pill{
  background:rgba(255,255,255,0.18); color:var(--white);
  padding:7px 14px; border-radius:999px; font-size:13.5px; font-weight:600;
}
.pill.clickable{
  border:none; cursor:pointer; font-family:inherit; transition:background .15s, transform .1s;
}
.pill.clickable:hover{ background:rgba(255,255,255,0.32); }
.pill.clickable:active{ transform:scale(0.97); }
.pill.clickable.is-active{ background:var(--gold); color:var(--forest-dark); }
.pill-detail{
  display:none; margin-top:16px; background:rgba(255,255,255,0.14); border-radius:14px;
  padding:16px 20px; animation:fade .25s ease;
}
.pill-detail.show{ display:block; }
.pill-detail h4{ color:var(--gold-soft); margin:0 0 6px 0; font-size:16px; }
.pill-detail p{ color:#eef0dc; margin:0; font-size:14px; }
.pill-hint{ font-size:12.5px; color:rgba(255,255,255,0.7); margin-top:10px; font-style:italic; }

.apo-grid{ display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:14px; margin-bottom:14px; }
.apo-card{ background:var(--forest); color:var(--white); border-radius:14px; padding:16px 18px; box-shadow:var(--shadow); min-width:0; }
.apo-card h4{ color:var(--gold-soft); font-size:15.5px; margin:0 0 5px 0; overflow-wrap:break-word; }
.apo-card p{ font-size:13px; color:#eef0dc; margin:0; line-height:1.45; overflow-wrap:break-word; }
.theme-tags{ display:flex; flex-wrap:wrap; gap:10px; justify-content:center; }
.theme-tag{
  background:var(--forest-dark); color:var(--white);
  padding:9px 18px; border-radius:999px; font-size:14px; font-weight:600;
}

.oils-strip{ margin-bottom:52px; }
.oils-strip .section-head{ margin-bottom:22px; }
.oils-row{
  display:flex; gap:22px; justify-content:center; flex-wrap:wrap;
}
.oil-item{ text-align:center; width:120px; }
.oil-item img{ height:120px; width:auto; margin:0 auto 10px auto; filter:drop-shadow(0 8px 14px rgba(51,66,31,0.18)); }
.oil-item span{ font-weight:700; font-size:13.5px; color:var(--forest-dark); }

.gallery-wrap{ margin-bottom:20px; }
.gallery-grid{
  display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:16px;
}
.gallery-item{
  background:var(--white); border-radius:14px; overflow:hidden; box-shadow:var(--shadow);
}
.gallery-item img{ width:100%; height:260px; object-fit:cover; object-position:center 40%; background:var(--sage-light); display:block; }
.gallery-cap{ padding:12px 14px; }
.gallery-cap .d{ font-weight:700; font-size:14px; color:var(--forest-dark); }
.gallery-cap .s{ font-size:12.5px; color:var(--text-soft); }
.gallery-note{ text-align:center; font-style:italic; color:var(--text-soft); margin-top:16px; font-size:14.5px; }

.decor-row{ display:flex; align-items:center; gap:30px; margin-bottom:50px; }
.decor-row img{ max-width:220px; margin:0 auto; }

.testi-grid{
  display:grid; grid-template-columns:minmax(0,1fr) minmax(0,1fr); gap:20px; margin-top:10px;
}
.testi-card{
  background:var(--forest-dark); color:var(--white); border-radius:16px;
  padding:22px 24px; box-shadow:var(--shadow); position:relative;
}
.testi-card .quote-mark{ color:var(--gold-soft); font-size:26px; font-weight:800; line-height:0.5; }
.testi-card p{ font-style:italic; color:#eef0dc; margin:10px 0 10px 0; font-size:15px; }
.testi-card .who{ font-weight:700; color:var(--gold-soft); font-size:13.5px; }

.testi-soon{
  background:var(--sage-card); border:2px dashed var(--olive); border-radius:16px;
  padding:34px; text-align:center; max-width:600px; margin:10px auto 0 auto;
}
.testi-soon p{ margin:0; color:var(--text-soft); font-size:15.5px; }

.farm-banner{
  margin:10px auto 46px auto; width:fit-content; max-width:100%;
  border-radius:16px; overflow:hidden; box-shadow:var(--shadow);
}
.farm-banner img{ display:block; width:auto; height:auto; max-width:100%; max-height:420px; }

.final-cta{
  background:linear-gradient(135deg, var(--forest-dark), var(--forest-mid));
  color:var(--white); border-radius:24px; padding:42px 34px; text-align:center;
  box-shadow:var(--shadow);
}
.final-cta h2{ color:var(--gold-soft); }
.final-cta p{ color:#eef0dc; max-width:520px; margin:0 auto 22px auto; }
.contact-buttons{ display:flex; flex-direction:column; gap:12px; max-width:420px; margin:0 auto; }
.contact-buttons a{
  display:flex; align-items:center; justify-content:center; gap:10px;
  background:rgba(255,255,255,0.12); border:1.5px solid rgba(255,255,255,0.35);
  color:var(--white); text-decoration:none; padding:13px 20px; border-radius:999px;
  font-weight:700; font-size:14.5px; transition:background .2s;
}
.contact-buttons a:hover{ background:rgba(255,255,255,0.25); }

.disclaimer-note{ text-align:center; color:var(--text-soft); font-size:13.5px; max-width:680px; margin:26px auto 0 auto; }

/* WICHTIGE HINWEISE */
.notice-block{ max-width:820px; margin:0 auto; }
.notice-callout{
  background:var(--forest-dark); color:var(--white); border-radius:var(--radius);
  padding:28px 32px; margin-bottom:36px; text-align:center; box-shadow:var(--shadow);
}
.notice-callout b{ color:var(--gold-soft); }
.safety-list{ display:grid; grid-template-columns:minmax(0,1fr) minmax(0,1fr); gap:18px; }
.safety-item{
  background:var(--white); border-radius:14px; padding:20px 22px; box-shadow:var(--shadow);
  display:flex; gap:14px; align-items:flex-start;
}
.safety-item svg{ width:22px; height:22px; flex-shrink:0; margin-top:2px; stroke:var(--forest-mid); }
.safety-item p{ margin:0; font-size:14.5px; color:var(--text-soft); }
.safety-item strong{ color:var(--forest-dark); }

/* VERDÜNNUNG */
.dil-table-wrap{ overflow-x:auto; margin-bottom:30px; border-radius:16px; box-shadow:var(--shadow); }
table.dil{ width:100%; border-collapse:collapse; background:var(--white); min-width:600px; }
table.dil th{
  background:var(--forest-dark); color:var(--white); text-align:left;
  padding:14px 18px; font-size:14px; letter-spacing:0.3px;
}
table.dil td{ padding:14px 18px; border-bottom:1px solid var(--sage-mid); font-size:14.5px; color:var(--text-soft); }
table.dil tr:last-child td{ border-bottom:none; }
table.dil td.hl{ color:var(--forest-dark); font-weight:700; }
.dil-list{
  list-style:none; margin:0 0 30px 0; padding:0;
  background:var(--white); border-radius:16px; box-shadow:var(--shadow); overflow:hidden;
}
.dil-list li{
  padding:14px 18px; border-bottom:1px solid var(--sage-mid);
  color:var(--forest-dark); font-weight:700; font-size:14.5px;
}
.dil-list li:last-child{ border-bottom:none; }
.carrier-row{ display:flex; gap:16px; flex-wrap:wrap; margin:30px 0 40px 0; }
.carrier-chip{
  background:var(--sage-card); border-radius:14px; padding:16px 20px; flex:1 1 220px;
}
.carrier-chip h4{ margin:0 0 4px 0; color:var(--forest-dark); font-size:15px; }
.carrier-chip p{ margin:0; font-size:13.5px; color:var(--text-soft); }
.mini-note{
  background:var(--sage-card); border-left:4px solid var(--gold); border-radius:8px;
  padding:14px 18px; font-size:14px; color:var(--text-soft); margin-bottom:36px;
}

/* PROZENT-TROPFEN-TABELLE */
.pct-section{ margin-bottom:8px; }
.pct-legend{ display:flex; gap:24px; justify-content:center; flex-wrap:wrap; margin:20px 0 26px 0; }
.pct-legend-item{ display:flex; align-items:center; gap:9px; font-size:13.5px; font-weight:600; color:var(--text-soft); max-width:320px; }
.pct-legend-dot{ width:15px; height:15px; border-radius:50%; flex-shrink:0; box-shadow:var(--shadow); }
.pct-legend-dot.ext{ background:linear-gradient(135deg,var(--gold-soft),var(--gold)); }
.pct-legend-dot.int{ background:linear-gradient(135deg,var(--forest-mid),var(--forest-dark)); }
.pct-table-wrap{ overflow-x:auto; border-radius:18px; box-shadow:var(--shadow); margin-bottom:8px; }
.pct-grid{
  display:grid; grid-template-columns:96px repeat(6,1fr); min-width:780px;
  background:var(--sage-mid); gap:2px;
}
.pct-grid > div{ background:var(--white); padding:14px 6px; text-align:center; }
.pct-corner{ background:var(--forest-dark) !important; }
.pct-bottlehead{ background:var(--forest-dark) !important; color:var(--white); }
.pct-bottlehead svg{ width:22px; height:28px; margin:0 auto 5px auto; display:block; stroke:var(--gold-soft); }
.pct-bottlehead .ml{ font-weight:700; font-size:13px; letter-spacing:0.3px; }
.pct-rowlabel{
  background:var(--sage-card) !important; font-weight:700; color:var(--forest-dark);
  font-size:14.5px; display:flex; align-items:center; justify-content:center;
}
.pct-rowlabel.ext{ color:var(--gold); }
.pct-cell{ display:flex; align-items:center; justify-content:center; }
.pct-drop{
  width:36px; height:36px; border-radius:50% 50% 50% 4px; transform:rotate(-45deg);
  display:flex; align-items:center; justify-content:center; margin:0 auto; box-shadow:var(--shadow);
}
.pct-drop span{ transform:rotate(45deg); font-weight:700; font-size:12.5px; color:var(--white); white-space:nowrap; }
.pct-drop.ext{ background:linear-gradient(135deg,var(--gold-soft),var(--gold)); }
.pct-drop.int{ background:linear-gradient(135deg,var(--forest-mid),var(--forest-dark)); }

/* TREUEPROGRAMM */
.loyalty-intro{ text-align:center; max-width:640px; margin:0 auto 40px auto; }
.tiers{ display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:22px; margin-bottom:40px; }
.tier{
  border-radius:20px; padding:28px 22px; text-align:center; box-shadow:var(--shadow);
  color:var(--white); position:relative;
}
.tier.t1{ background:var(--olive); }
.tier.t2{ background:var(--forest-mid); }
.tier.t3{ background:var(--forest-dark); }
.tier .tier-icon{ font-size:30px; margin-bottom:8px; }
.tier h3{ color:var(--white); font-size:19px; margin-bottom:2px; }
.tier .tier-req{ font-size:12.5px; letter-spacing:0.5px; text-transform:uppercase; color:var(--gold-soft); font-weight:700; margin-bottom:14px; }
.tier ul{ text-align:left; padding-left:18px; margin:0; font-size:13.8px; color:#eef0dc; }
.tier ul li{ margin-bottom:6px; }
.ref-box{
  background:var(--sage-card); border-radius:18px; padding:28px 30px; text-align:center;
  margin-bottom:16px;
}
.ref-box h3{ margin-bottom:8px; }
.ref-box p{ color:var(--text-soft); margin-bottom:0; }

.steps-list{ display:flex; flex-direction:column; gap:14px; max-width:760px; margin:0 auto 44px auto; }
.step-item{ display:flex; gap:16px; align-items:flex-start; background:var(--sage-card); border-radius:14px; padding:16px 22px; }
.step-num{
  flex-shrink:0; width:32px; height:32px; border-radius:50%; background:var(--forest-dark);
  color:var(--white); display:flex; align-items:center; justify-content:center;
  font-family:'Playfair Display',serif; font-weight:700; font-size:15px; line-height:1;
  text-align:center; font-variant-numeric:lining-nums; font-feature-settings:"lnum" 1;
}
.step-item p{ margin:0; font-size:14.5px; color:var(--text-soft); }
.step-item strong{ color:var(--forest-dark); }
.gold-highlight{
  text-align:center; font-family:'Playfair Display',serif; font-style:italic;
  color:var(--forest-dark); font-size:17px; max-width:640px; margin:0 auto 44px auto;
}
.gold-highlight b{ color:var(--gold); font-style:normal; }
.risk-box{
  background:var(--sage-card); border:1.5px solid var(--gold); border-radius:18px;
  padding:26px 30px; text-align:center; max-width:760px; margin:0 auto 30px auto;
}
.risk-box .tag-row{ display:flex; justify-content:center; gap:10px; flex-wrap:wrap; margin-top:12px; }
.risk-box .tag{ background:var(--forest-dark); color:var(--white); padding:6px 16px; border-radius:999px; font-size:13px; font-weight:700; }

.contact-form-wrap{
  max-width:600px; margin:0 auto; background:var(--sage-card); border-radius:var(--radius);
  padding:34px 32px; box-shadow:var(--shadow);
}
.contact-form-wrap h3{ text-align:center; }
.contact-form-wrap .form-lead{ text-align:center; color:var(--text-soft); font-size:14.5px; margin-bottom:24px; }
.form-field{ margin-bottom:16px; }
.form-field label{ display:block; font-weight:700; font-size:13.5px; color:var(--forest-dark); margin-bottom:6px; }
.form-field input, .form-field textarea{
  width:100%; padding:11px 14px; border-radius:10px; border:1.5px solid var(--sage-mid);
  font-family:'Quicksand',sans-serif; font-size:14.5px; color:var(--text); background:var(--white);
}
.form-field textarea{ resize:vertical; min-height:100px; }
.form-field input:focus, .form-field textarea:focus{ outline:none; border-color:var(--forest-mid); }
.contact-form-wrap button.btn{ width:100%; justify-content:center; border:none; cursor:pointer; }
.form-checkbox{ display:flex; align-items:flex-start; gap:10px; margin-bottom:20px; }
.form-checkbox input[type="checkbox"]{ width:18px; height:18px; margin-top:2px; accent-color:var(--forest-dark); flex-shrink:0; cursor:pointer; }
.form-checkbox label{ font-size:13.5px; color:var(--text-soft); font-weight:600; cursor:pointer; }
.form-note{ text-align:center; font-size:12.5px; color:var(--text-soft); margin-top:14px; margin-bottom:0; }
.form-note a{ color:var(--forest-dark); font-weight:700; text-decoration:none; }

footer{
  background:var(--forest-dark); color:#dfe6c8; padding:40px 0 26px 0; font-size:13.5px;
}
footer .wrap{ display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:16px; }
footer .f-brand{ display:flex; align-items:center; gap:10px; }
footer .f-brand svg{ width:26px; height:24px; }
footer .f-brand img.logo-img{ width:72px; height:auto; }
footer .f-links{ display:flex; gap:18px; flex-wrap:wrap; }
footer a{ color:#dfe6c8; text-decoration:none; }
footer a:hover{ color:var(--gold-soft); }
.footer-bottom{ text-align:center; color:#9fae86; font-size:12px; margin-top:22px; }
