:root{
  --bg:#f7f9f8;
  --card:#ffffff;
  --text:#0f1d16;
  --muted:#4a5a52;
  --line:#d9e1dd;
  --brand:#1f8f55;
  --brand2:#0e6f3b;
  --shadow:0 10px 28px rgba(0,0,0,.08);
  --radius:18px;
  --max:1120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:linear-gradient(180deg,#ffffff 0%, var(--bg) 55%, #ffffff 100%);
}
a{color:inherit}
.container{max-width:var(--max); margin:0 auto; padding:0 18px}
.skip{position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden}
.skip:focus{left:18px; top:18px; width:auto; height:auto; padding:10px 12px; background:#fff; border:2px solid var(--brand); border-radius:12px; z-index:1000}

header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter:saturate(180%) blur(8px);
  background:rgba(255,255,255,.86);
  border-bottom:1px solid rgba(217,225,221,.75);
}
.topbar{
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  align-items:center;
  gap:16px;
  padding:14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  min-width: 240px;
}
.brand-mark{
  width:44px; height:44px;
  border-radius:14px;
  background:linear-gradient(135deg,var(--brand) 0%, var(--brand2) 100%);
  display:grid;
  place-items:center;
  box-shadow:0 10px 18px rgba(31,143,85,.18);
  flex:0 0 auto;
}
.brand-mark span{
  color:#fff;
  font-weight:800;
  font-size:22px;
  letter-spacing:.5px;
  line-height:1;
}
.brand-text{display:flex; flex-direction:column; line-height:1.15}
.brand-text strong{font-size:15px}
.brand-text small{color:var(--muted); font-size:12px}

nav ul{
  list-style:none;
  display:flex;
  gap:14px;
  margin:0;
  padding:0;
}
nav a{
  text-decoration:none;
  padding:10px 12px;
  border-radius:12px;
  color:var(--muted);
  font-weight:600;
  font-size:14px;
}
nav a[aria-current="page"]{color:var(--text); background:rgba(31,143,85,.10)}
nav a:hover{background:rgba(31,143,85,.08); color:var(--text)}
.header-right{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:14px;
}
.badges{
  display:flex;
  gap:10px;
  align-items:center;
}
.badges img{height:38px; width:auto}
.phone{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  line-height:1.1;
}
.phone small{color:var(--muted); font-size:12px}
.phone a{font-weight:800; text-decoration:none}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid var(--line);
  background:#fff;
  text-decoration:none;
  font-weight:750;
}
.btn.primary{
  background:linear-gradient(135deg,var(--brand) 0%, var(--brand2) 100%);
  border-color:transparent;
  color:#fff;
  box-shadow:0 12px 22px rgba(31,143,85,.22);
}
.btn.primary:hover{filter:brightness(1.02)}
.btn.ghost:hover{background:rgba(31,143,85,.08)}
.hero{
  padding:26px 0 18px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:22px;
  align-items:start;
}
.card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.card.pad{padding:22px}
.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:13px;
  color:var(--muted);
  font-weight:700;
}
.kicker .dot{
  width:10px; height:10px; border-radius:99px; background:var(--brand);
}
h1{
  font-size:38px;
  line-height:1.05;
  margin:10px 0 12px;
  letter-spacing:-.5px;
}
.lead{color:var(--muted); font-size:16px; line-height:1.6; margin:0 0 16px}
.trust{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:14px;
}
.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius:999px;
  background:rgba(31,143,85,.08);
  border:1px solid rgba(31,143,85,.18);
  color:#214535;
  font-weight:750;
  font-size:12px;
}
.pill svg{width:16px; height:16px}
.map-wrap img{width:100%; height:auto; display:block; border-radius:14px; border:1px solid var(--line)}
.section{
  padding:18px 0 32px;
}
.section h2{
  margin:0 0 12px;
  font-size:24px;
  letter-spacing:-.2px;
}
.services{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:14px;
}
.service{
  padding:16px;
  border-radius:16px;
  border:1px solid var(--line);
  background:linear-gradient(180deg,#fff 0%, #fbfcfc 100%);
}
.service h3{margin:0 0 8px; font-size:16px}
.service p{margin:0; color:var(--muted); line-height:1.55; font-size:14px}
.two-col{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
}
.portrait{
  position:relative;
  overflow:hidden;
  border-radius:18px;
  border:1px solid var(--line);
  background:#fff;
}
.portrait img{
  width:100%;
  height:auto;
  display:block;
  /* weicher Übergang unten */
  -webkit-mask-image: linear-gradient(to bottom, #000 75%, transparent 98%);
  mask-image: linear-gradient(to bottom, #000 75%, transparent 98%);
}
.portrait .meta{
  padding:14px 14px 16px;
}
.portrait .meta strong{display:block; font-size:14px}
.portrait .meta small{color:var(--muted)}
.logo-overlay{
  position:absolute;
  left:14px;
  bottom:14px;
  display:flex;
  gap:10px;
  align-items:center;
}
.logo-overlay img{
  height:34px;
  width:auto;
  background:rgba(255,255,255,.92);
  border:1px solid rgba(217,225,221,.75);
  padding:6px 8px;
  border-radius:12px;
  -webkit-mask-image:none;
  mask-image:none;
}
.page-title{
  padding:26px 0 10px;
}
.page-title h1{margin:0}
.content{
  padding:18px 0 40px;
}
.content p{color:var(--muted); line-height:1.7; margin:0 0 12px}
.content ul{margin:8px 0 18px; color:var(--muted); line-height:1.65}
.content li{margin:4px 0}
.footer{
  border-top:1px solid rgba(217,225,221,.85);
  padding:18px 0 26px;
  color:var(--muted);
  font-size:13px;
}
.footer a{color:var(--muted)}
.form{
  display:grid;
  gap:12px;
}
.field{
  display:grid;
  gap:6px;
}
label{font-weight:750; font-size:13px}
input, select, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background:#fff;
  font:inherit;
}
textarea{min-height:110px; resize:vertical}
small.help{color:var(--muted); font-size:12px; line-height:1.4}
.row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
.notice{
  padding:12px 14px;
  border-radius:14px;
  background:rgba(31,143,85,.08);
  border:1px solid rgba(31,143,85,.18);
  color:#214535;
  font-weight:650;
}
.error{
  background:rgba(200,0,0,.06);
  border-color:rgba(200,0,0,.18);
  color:#5b1b1b;
}

@media (max-width: 980px){
  .topbar{grid-template-columns:1fr; gap:10px}
  nav ul{justify-content:flex-start; flex-wrap:wrap}
  .header-right{justify-content:flex-start}
  .hero-grid{grid-template-columns:1fr; }
  .services{grid-template-columns:1fr}
  .two-col{grid-template-columns:1fr}
  .row{grid-template-columns:1fr}
  h1{font-size:32px}
}
