:root{
  --green-dark:#15311a;
  --green:#25562d;
  --green-light:#e7f3e9;
  --green-b-dark:#3a5a35;
  --green-b:#51784a;
  --green-b-light:#ebf1ea;
  --green-mid:#4f7d5c;
  --accent:#b85735;
  --accent-dark:#8f4128;
  --accent-light:#f7e2d6;
  --text:#1c231f;
  --muted:#5b6660;
  --bg:#f7f5ee;
  --white:#ffffff;
  --radius:14px;
}
*{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;}
body{
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.55;
}
a{color:inherit;}
img{max-width:100%;display:block;}
.container{
  max-width:1080px;
  margin:0 auto;
  padding:0 24px;
}

/* Header */
header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(251,251,249,0.92);
  backdrop-filter:blur(8px);
  border-bottom:1px solid rgba(0,0,0,0.06);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 0;
}
.logo{
  font-size:22px;
  font-weight:700;
  letter-spacing:-0.02em;
  color:var(--text);
  text-decoration:none;
}
.logo span,
.brand-card-word span,
.brand-green{color:var(--green-mid);}
.nav-links{
  display:flex;
  gap:28px;
  font-size:15px;
  font-weight:500;
  color:var(--muted);
}
.nav-links a{text-decoration:none;}
.nav-links a:hover{color:var(--green-dark);}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:13px 26px;
  border-radius:999px;
  border:none;
  font-family:inherit;
  font-weight:600;
  font-size:15px;
  text-decoration:none;
  cursor:pointer;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space:nowrap;
}
.btn-primary{
  background:var(--accent);
  color:#fff;
  box-shadow:0 6px 16px rgba(184,87,53,0.32);
}
.btn-primary:hover{background:var(--accent-dark);transform:translateY(-1px);}
.btn-small{padding:10px 20px;font-size:14px;}
header .btn{padding:10px 22px;font-size:14px;}

/* Icon links (secondary contact options) */
.icon-links{
  display:flex;
  flex-wrap:wrap;
  gap:22px;
  margin-bottom:24px;
}
.icon-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:14.5px;
  font-weight:600;
  color:var(--green-dark);
  text-decoration:none;
}
.icon-link svg{
  width:18px;
  height:18px;
  color:var(--accent);
  flex-shrink:0;
}
.icon-link:hover{color:var(--accent);}

/* Hero */
.hero{
  padding:96px 0 64px;
}
.hero-inner{
  max-width:640px;
}
.hero-visual{
  width:100%;
  margin-bottom:32px;
}
.brand-card{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:10px;
  padding:8px 0 32px;
}
.brand-card-word{
  color:var(--text);
  font-size:34px;
  font-weight:700;
  letter-spacing:-0.02em;
}
.brand-card-tag{
  color:var(--muted);
  font-size:13px;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-weight:600;
}
.eyebrow{
  display:inline-block;
  background:var(--green-light);
  color:var(--green-dark);
  font-size:13px;
  font-weight:600;
  padding:6px 14px;
  border-radius:999px;
  margin-bottom:18px;
}
h1{
  font-size:44px;
  line-height:1.12;
  letter-spacing:-0.02em;
  font-weight:700;
  color:var(--green-dark);
  margin-bottom:18px;
}
.hero-team{
  font-size:14px;
  font-weight:600;
  color:var(--green);
  margin-bottom:14px;
}
.hero p.lead{
  font-size:18px;
  color:var(--muted);
  max-width:46ch;
  margin-bottom:32px;
}
.hero-ctas{
  margin-bottom:20px;
}
.hero-note{
  font-size:13px;
  color:var(--muted);
}

/* Trust banner (merged authority + risk-reversal) */
.trust-banner{
  background:var(--green-light);
  padding:26px 0;
}
.trust-banner-inner{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  align-items:center;
  gap:14px 36px;
}
.trust-banner-item{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:14px;
  font-weight:700;
  color:var(--green-dark);
}
.trust-banner-item svg{
  width:16px;
  height:16px;
  color:var(--accent);
  flex-shrink:0;
}
.trust-banner-divider{
  color:rgba(21,49,26,0.25);
  font-weight:400;
}

/* Modes */
.modes{
  padding:88px 0;
}
.modes-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  margin-top:28px;
}
.mode-card{
  background:var(--white);
  border:1px solid rgba(0,0,0,0.06);
  border-radius:var(--radius);
  padding:28px;
}
.mode-card .tag{
  font-size:13px;
  font-weight:600;
  color:var(--green);
  text-transform:uppercase;
  letter-spacing:.04em;
  margin-bottom:10px;
}
.mode-card h3{
  font-size:21px;
  margin-bottom:8px;
  color:var(--green-dark);
}
.mode-card p{
  color:var(--muted);
  font-size:15px;
}
h2{
  font-size:30px;
  color:var(--green-dark);
  letter-spacing:-0.01em;
}
.section-sub{
  color:var(--muted);
  font-size:16px;
  margin-top:8px;
  max-width:60ch;
}

/* About */
.about{
  background:var(--white);
  border-top:1px solid rgba(0,0,0,0.06);
  border-bottom:1px solid rgba(0,0,0,0.06);
  padding:90px 0;
}
.about-inner{
  max-width:760px;
}
.about h2{
  margin-bottom:18px;
}
.about p{
  color:var(--muted);
  font-size:16px;
  margin-bottom:16px;
}
.about p:last-child{margin-bottom:0;}
.about p.lead-in{
  color:var(--green-dark);
  font-size:19px;
  font-weight:600;
  line-height:1.4;
  margin-bottom:20px;
}

/* Team */
.team-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  margin-top:36px;
}
.team-card{
  background:var(--bg);
  border:1px solid rgba(0,0,0,0.08);
  border-radius:var(--radius);
  padding:28px;
  display:flex;
  flex-direction:column;
}
.team-avatar{
  width:56px;
  height:56px;
  border-radius:50%;
  background:var(--green-dark);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  font-weight:700;
  margin-bottom:16px;
}
.team-card-b .team-avatar{background:var(--green-b-dark);}
.team-card .tag{
  display:inline-block;
  font-size:13px;
  font-weight:600;
  color:var(--green);
  text-transform:uppercase;
  letter-spacing:.04em;
  margin-bottom:6px;
}
.team-card .tag-b{color:var(--green-b-dark);}
.team-card h3{
  font-size:18px;
  margin-bottom:10px;
  color:var(--green-dark);
}
.team-card .intro{
  color:var(--muted);
  font-size:15px;
  margin-bottom:18px;
}
.team-facts{
  list-style:none;
  margin:0 0 22px;
  padding:0;
  flex-grow:1;
}
.team-facts li{
  position:relative;
  padding-left:22px;
  font-size:14.5px;
  color:var(--text);
  margin-bottom:10px;
}
.team-facts li:last-child{margin-bottom:0;}
.team-facts li::before{
  content:"✓";
  position:absolute;
  left:0;
  color:var(--accent);
  font-weight:700;
}
.team-facts b{font-weight:700;color:var(--green-dark);}
.team-card .btn{align-self:flex-start;}
.team-card-b{background:var(--green-b-light);border-color:rgba(63,107,83,0.15);}

/* Steps */
.steps{
  background:var(--green-light);
  padding:88px 0;
}
.steps-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  margin-top:32px;
}
.step{
  background:var(--white);
  border-radius:var(--radius);
  padding:26px;
}
.step-num{
  width:34px;
  height:34px;
  border-radius:50%;
  background:var(--green-dark);
  color:#fff;
  font-weight:700;
  font-size:15px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:14px;
}
.step h3{
  font-size:17px;
  margin-bottom:6px;
  color:var(--green-dark);
}
.step p{
  font-size:14.5px;
  color:var(--muted);
}

/* CTA band */
.cta-band{
  background:var(--green-dark);
  padding:96px 0;
  text-align:center;
}
.cta-band h2{color:#fff;margin-bottom:12px;}
.cta-band .section-sub{color:rgba(255,255,255,0.78);margin:0 auto 30px;}
.cta-band .hero-ctas{display:flex;justify-content:center;}
.cta-band .icon-links{justify-content:center;margin-top:22px;margin-bottom:0;}
.cta-band .icon-link{color:#fff;}
.cta-band .icon-link svg{color:var(--accent-light);}
.cta-band .icon-link:hover{color:var(--accent-light);}

/* Contact */
.contact{
  padding:90px 0;
}
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:32px;
  background:var(--white);
  border:1px solid rgba(0,0,0,0.06);
  border-radius:var(--radius);
  padding:36px;
}
.contact h3{
  font-size:15px;
  text-transform:uppercase;
  letter-spacing:.04em;
  color:var(--green);
  margin-bottom:10px;
}
.contact p{font-size:15.5px;color:var(--text);margin-bottom:6px;}
.contact .muted{color:var(--muted);font-size:14px;}

/* Footnotes (collected, above footer) */
.footnotes-section{
  padding:48px 0 64px;
}
.footnotes{
  max-width:760px;
  margin:0 auto;
  border-top:1px solid rgba(0,0,0,0.08);
  padding-top:24px;
}
.footnotes p{
  font-size:12.5px;
  line-height:1.6;
  color:var(--muted);
  margin-bottom:10px;
}
.footnotes p:last-child{margin-bottom:0;}
.footnotes sup{margin-right:2px;}
.footnotes-link a{color:var(--green);font-weight:600;text-decoration:underline;}

/* Footer */
footer{
  border-top:1px solid rgba(0,0,0,0.07);
  padding:32px 0;
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:16px;
  font-size:13.5px;
  color:var(--muted);
}
.footer-links{
  display:flex;
  gap:20px;
}
.footer-links a{text-decoration:none;}
.footer-ai{
  margin-top:14px;
  font-size:12px;
  color:var(--muted);
  opacity:0.8;
}
.footer-links a:hover{color:var(--green-dark);}

/* Booking modal */
.modal-backdrop{
  position:fixed;
  inset:0;
  background:rgba(21,49,26,0.55);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
  z-index:100;
  opacity:0;
  visibility:hidden;
  transition:opacity .2s ease;
}
.modal-backdrop.is-open{
  opacity:1;
  visibility:visible;
}
.modal-card{
  background:var(--white);
  border-radius:20px;
  padding:32px;
  max-width:420px;
  width:100%;
  position:relative;
  transform:translateY(12px);
  transition:transform .2s ease;
}
.modal-backdrop.is-open .modal-card{transform:translateY(0);}
.modal-card h3{
  color:var(--green-dark);
  font-size:21px;
  margin-bottom:6px;
}
.modal-card .modal-sub{
  color:var(--muted);
  font-size:14px;
  margin-bottom:22px;
}
.modal-close{
  position:absolute;
  top:16px;
  right:16px;
  width:32px;
  height:32px;
  border-radius:50%;
  border:none;
  background:var(--bg);
  color:var(--muted);
  font-size:18px;
  line-height:1;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
}
.modal-close:hover{background:var(--green-light);color:var(--green-dark);}
.modal-options{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.modal-option{
  display:flex;
  flex-direction:column;
  gap:2px;
  padding:16px 18px;
  border-radius:14px;
  border:1.5px solid rgba(0,0,0,0.08);
  text-decoration:none;
  transition:border-color .15s ease, background .15s ease;
}
.modal-option:hover{border-color:var(--accent);background:var(--accent-light);}
.modal-option-name{font-weight:700;color:var(--green-dark);font-size:15.5px;}
.modal-option-tag{font-size:13px;color:var(--muted);}

/* Legal pages (AGB, Impressum, Datenschutz) */
.legal-hero{
  padding:56px 0 24px;
}
.legal-hero h1{
  font-size:34px;
}
.legal-updated{
  color:var(--muted);
  font-size:14px;
}
.legal{
  padding:8px 0 72px;
}
.legal-inner{
  max-width:760px;
}
.legal-inner h2{
  font-size:19px;
  color:var(--green-dark);
  margin-top:34px;
  margin-bottom:10px;
}
.legal-inner h2:first-child{margin-top:0;}
.legal-inner h3{
  font-size:16px;
  color:var(--green-dark);
  margin-top:20px;
  margin-bottom:6px;
}
.legal-inner p{
  color:var(--muted);
  font-size:15px;
  margin-bottom:12px;
}
.legal-inner address{
  font-style:normal;
  color:var(--muted);
  font-size:15px;
  margin:12px 0 20px;
}

@media (max-width:820px){
  h1{font-size:34px;}
  .nav-links{display:none;}
  .modes-grid{grid-template-columns:1fr;}
  .team-grid{grid-template-columns:1fr;}
  .steps-grid{grid-template-columns:1fr;}
  .contact-grid{grid-template-columns:1fr;}
  .hero{padding:64px 0 48px;}
  .about,.modes,.steps,.contact{padding:64px 0;}
  .cta-band{padding:72px 0;}
}
