@import url('fonts.css');

:root{
  --forest: #1a3a26;
  --forest-deep: #12291b;
  --olive: #6b8f3a;
  --olive-light: #8bab5c;
  --cream: #f7f6f2;
  --cream-dim: #efece4;
  --ink: #33352f;
  --ink-soft: #5b5d55;
  --white: #ffffff;
  --radius-lg: 22px;
  --radius-md: 14px;
  --shadow-soft: 0 10px 30px rgba(26,58,38,0.10);
  --shadow-card: 0 4px 18px rgba(26,58,38,0.08);
  --font-body: 'Manrope', system-ui, sans-serif;
  --font-script: 'Caveat', cursive;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--cream);
  -webkit-font-smoothing:antialiased;
  padding-bottom:64px;
}
@media (min-width:900px){ body{ padding-bottom:0; } }

img,svg{display:block; max-width:100%;}
a{color:inherit; text-decoration:none;}
ul{list-style:none; margin:0; padding:0;}
h1,h2,h3,h4,p{margin:0;}
section{padding:88px 20px;}
.container{max-width:1120px; margin:0 auto;}

.eyebrow{
  font-size:13px; font-weight:700; letter-spacing:.14em;
  text-transform:uppercase; color:var(--olive);
}
.script{
  font-family:var(--font-script); font-weight:600;
  color:var(--olive-light); font-size:28px; line-height:1;
}
h2.section-title{
  font-size:clamp(26px, 4vw, 38px); font-weight:800;
  color:var(--forest); letter-spacing:-0.01em; margin-top:8px;
}
.section-lead{
  color:var(--ink-soft); font-size:16px; max-width:560px;
  margin-top:14px; line-height:1.6;
}
.section-head{ margin-bottom:44px; }
.section-head.center{ text-align:center; }
.section-head.center .section-lead{ margin-left:auto; margin-right:auto; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:15px 26px; border-radius:999px; font-weight:700; font-size:15px;
  border:2px solid transparent; cursor:pointer;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space:nowrap;
}
.btn:active{transform:scale(0.97);}
.btn-call{ background:var(--olive); color:var(--white); box-shadow:0 8px 20px rgba(107,143,58,0.35); }
.btn-call:hover{background:#7ca045;}
.btn-whatsapp{ background:var(--white); color:var(--forest); border-color:var(--white); }
.btn-whatsapp:hover{background:transparent; color:var(--white);}
.btn-outline{ background:transparent; color:var(--forest); border-color:var(--forest); }
.btn-outline:hover{background:var(--forest); color:var(--white);}
.btn-block{width:100%;}

/* ---------- HEADER / NAV ---------- */
header.site-header{
  position:sticky; top:0; z-index:60;
  background:rgba(247,246,242,0.94); backdrop-filter:blur(8px);
  border-bottom:1px solid rgba(26,58,38,0.08);
}
.header-inner{
  max-width:1120px; margin:0 auto; padding:14px 20px;
  display:flex; align-items:center; justify-content:space-between; gap:16px;
}
.logo-mark{display:flex; align-items:baseline; gap:10px;}
.logo-mark .wordmark{font-weight:800; font-size:22px; color:var(--forest); letter-spacing:-0.02em;}
.logo-mark .wordmark span{color:var(--olive);}
.logo-mark .tagline{font-family:var(--font-script); font-size:17px; color:var(--ink-soft); display:none;}
@media (min-width:640px){ .logo-mark .tagline{display:inline-block;} }

nav.main-nav{display:none; align-items:center; gap:26px; font-weight:600; font-size:15px; color:var(--ink);}
nav.main-nav > a{opacity:.85; transition:opacity .15s; padding:8px 0;}
nav.main-nav > a:hover, nav.main-nav > a.active{opacity:1; color:var(--olive);}
@media (min-width:900px){ nav.main-nav{display:flex;} }

.nav-dropdown{position:relative;}
.nav-dropdown-toggle{
  display:flex; align-items:center; gap:5px; background:none; border:none;
  font:inherit; color:inherit; cursor:pointer; opacity:.85; padding:8px 0;
}
.nav-dropdown-toggle:hover{opacity:1; color:var(--olive);}
.nav-dropdown-toggle svg{transition:transform .2s ease;}
.nav-dropdown-menu{
  position:absolute; top:100%; left:50%; transform:translateX(-50%) translateY(8px);
  background:var(--white); border-radius:var(--radius-md); box-shadow:var(--shadow-soft);
  padding:10px; min-width:220px; opacity:0; visibility:hidden; pointer-events:none;
  transition:opacity .18s ease, transform .18s ease; z-index:70;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu{
  opacity:1; visibility:visible; pointer-events:auto; transform:translateX(-50%) translateY(2px);
}
.nav-dropdown:hover .nav-dropdown-toggle svg,
.nav-dropdown.open .nav-dropdown-toggle svg{transform:rotate(180deg);}
.nav-dropdown-menu a{
  display:block; padding:10px 14px; border-radius:8px; font-size:14.5px;
  font-weight:600; color:var(--ink); white-space:nowrap;
}
.nav-dropdown-menu a:hover{background:var(--cream-dim); color:var(--olive);}

.header-cta{display:flex; align-items:center; gap:10px;}
.header-cta .btn{padding:11px 18px; font-size:14px;}
.header-cta .btn-whatsapp{display:none; background:var(--forest); color:var(--white);}
@media (min-width:640px){ .header-cta .btn-whatsapp{display:inline-flex;} }

/* Burger */
.burger-btn{
  display:flex; align-items:center; justify-content:center;
  width:42px; height:42px; border-radius:10px; border:1.5px solid rgba(26,58,38,0.18);
  background:var(--white); cursor:pointer; flex-shrink:0;
}
@media (min-width:900px){ .burger-btn{display:none;} }
.burger-btn svg{width:20px; height:20px; color:var(--forest);}

.mobile-nav-panel{
  position:fixed; inset:0; z-index:100; background:var(--forest-deep);
  transform:translateX(100%); transition:transform .28s ease;
  display:flex; flex-direction:column; overflow-y:auto;
}
.mobile-nav-panel.open{transform:translateX(0);}
.mobile-nav-top{
  display:flex; align-items:center; justify-content:space-between;
  padding:16px 20px; border-bottom:1px solid rgba(255,255,255,0.1);
}
.mobile-nav-top .wordmark{color:var(--white); font-weight:800; font-size:20px;}
.mobile-nav-top .wordmark span{color:var(--olive-light);}
.mobile-nav-close{
  width:42px; height:42px; border-radius:10px; border:1.5px solid rgba(255,255,255,0.2);
  background:none; color:var(--white); display:flex; align-items:center; justify-content:center;
  cursor:pointer;
}
.mobile-nav-links{padding:16px 20px 30px; display:flex; flex-direction:column; gap:4px;}
.mobile-nav-links a, .mobile-nav-accordion-toggle{
  display:flex; align-items:center; justify-content:space-between;
  padding:16px 6px; font-size:18px; font-weight:700; color:var(--white);
  border-bottom:1px solid rgba(255,255,255,0.08);
  background:none; border-left:none; border-right:none; border-top:none;
  width:100%; text-align:left; font-family:var(--font-body); cursor:pointer;
}
.mobile-nav-accordion-toggle svg{transition:transform .2s ease; flex-shrink:0;}
.mobile-nav-accordion-toggle.open svg{transform:rotate(180deg);}
.mobile-nav-submenu{
  max-height:0; overflow:hidden; transition:max-height .25s ease;
  display:flex; flex-direction:column;
}
.mobile-nav-submenu a{
  font-size:15.5px; font-weight:600; color:#cdd6c5; padding:12px 6px 12px 18px;
  border-bottom:1px solid rgba(255,255,255,0.06);
}
.mobile-nav-actions{padding:10px 20px 30px; display:flex; flex-direction:column; gap:12px; margin-top:auto;}
body.nav-open{overflow:hidden;}

/* ---------- PAGE / SECTION HERO (Leistungsseiten etc.) ---------- */
.page-hero{
  position:relative; overflow:hidden; background:var(--forest-deep);
  padding:64px 20px 56px; display:flex; align-items:flex-end; min-height:340px;
}
.page-hero-illustration{position:absolute; inset:0; width:100%; height:100%;}
.page-hero-overlay{
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(18,41,27,0.5) 0%, rgba(18,41,27,0.82) 65%, rgba(18,41,27,0.95) 100%);
}
.page-hero-content{position:relative; z-index:2; max-width:1120px; margin:0 auto; width:100%; color:var(--white);}
.page-hero-content .breadcrumb{
  font-size:13px; font-weight:600; color:#b8c2ad; margin-bottom:14px;
}
.page-hero-content .breadcrumb a:hover{color:var(--white);}
.page-hero-content h1{
  font-size:clamp(28px, 5vw, 46px); font-weight:800; letter-spacing:-0.02em; max-width:16ch; line-height:1.1;
}
.page-hero-content .sub{margin-top:14px; font-size:clamp(15px,2vw,17.5px); color:#e3e6dd; max-width:52ch;}
.page-hero-actions{margin-top:26px; display:flex; flex-wrap:wrap; gap:12px;}

/* ---------- Full homepage HERO ---------- */
.hero{
  position:relative; min-height:92vh; display:flex; align-items:center;
  padding:140px 20px 100px; overflow:hidden; background:var(--forest-deep);
}
.hero-illustration{position:absolute; inset:0; width:100%; height:100%;}
.hero-overlay{
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(18,41,27,0.55) 0%, rgba(18,41,27,0.78) 55%, rgba(18,41,27,0.94) 100%);
}
.hero-content{position:relative; z-index:2; max-width:1120px; margin:0 auto; width:100%; color:var(--white);}
.hero-content .script{color:#c9dba0; font-size:32px; margin-bottom:6px; display:block;}
.hero-content h1{font-size:clamp(32px, 6vw, 56px); font-weight:800; line-height:1.08; letter-spacing:-0.02em; max-width:15ch;}
.hero-content .sub{margin-top:20px; font-size:clamp(16px, 2.4vw, 19px); color:#e3e6dd; font-weight:500; letter-spacing:.02em;}
.hero-actions{margin-top:38px; display:flex; flex-wrap:wrap; gap:14px;}
.hero-actions .btn{padding:17px 28px; font-size:16px;}

/* ---------- HEDGE DIVIDER ---------- */
.hedge-divider{display:block; width:100%; line-height:0; position:relative; z-index:2;}
.hedge-divider svg{width:100%; height:auto; display:block;}

/* ---------- SERVICES GRID (Startseite) ---------- */
.services-grid{display:grid; grid-template-columns:repeat(2, 1fr); gap:16px;}
@media (min-width:760px){ .services-grid{grid-template-columns:repeat(3, 1fr); gap:22px;} }
.service-card{
  background:var(--white); border-radius:var(--radius-lg); padding:26px 20px;
  box-shadow:var(--shadow-card); transition:transform .2s ease, box-shadow .2s ease;
  display:block;
}
.service-card:hover{transform:translateY(-4px); box-shadow:var(--shadow-soft);}
.service-icon{
  width:46px; height:46px; border-radius:14px; background:var(--cream-dim);
  display:flex; align-items:center; justify-content:center; color:var(--forest); margin-bottom:16px;
}
.service-card h3{font-size:17px; font-weight:700; color:var(--forest); margin-bottom:8px;}
.service-card p{font-size:14px; color:var(--ink-soft); line-height:1.55; margin-bottom:14px;}
.service-price{
  display:inline-block; font-weight:700; font-size:13px; color:var(--olive);
  background:rgba(107,143,58,0.12); padding:6px 12px; border-radius:999px;
}
.service-card .card-link{
  margin-top:14px; display:inline-flex; align-items:center; gap:6px;
  font-size:13.5px; font-weight:700; color:var(--forest);
}

/* ---------- WHY ---------- */
.why-section{background:var(--forest); color:var(--white);}
.why-section .eyebrow{color:var(--olive-light);}
.why-section h2.section-title{color:var(--white);}
.why-section .section-lead{color:#cdd6c5;}
.why-grid{display:grid; grid-template-columns:repeat(2,1fr); gap:18px;}
@media (min-width:760px){ .why-grid{grid-template-columns:repeat(4,1fr);} }
.why-item{
  background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.12);
  border-radius:var(--radius-md); padding:22px 18px;
}
.why-icon{
  width:40px; height:40px; border-radius:12px; background:rgba(139,171,92,0.25);
  color:var(--olive-light); display:flex; align-items:center; justify-content:center; margin-bottom:14px;
}
.why-item h3{font-size:15px; font-weight:700; margin-bottom:6px;}
.why-item p{font-size:13.5px; color:#c6cfbe; line-height:1.5;}

/* ---------- ABOUT ---------- */
.about-grid{display:grid; grid-template-columns:1fr; gap:36px; align-items:center;}
@media (min-width:820px){ .about-grid{grid-template-columns:0.85fr 1.15fr; gap:56px;} }
.about-photo{
  aspect-ratio:4/5; background:linear-gradient(160deg, var(--cream-dim), #e4e0d3);
  border-radius:var(--radius-lg); display:flex; align-items:center; justify-content:center;
  color:var(--ink-soft); border:2px dashed rgba(26,58,38,0.18); max-width:340px; margin:0 auto;
}
.about-photo .placeholder-inner{text-align:center; padding:20px;}
.about-photo .placeholder-inner svg{margin:0 auto 10px;}
.about-photo .placeholder-inner span{font-size:13px; font-weight:600;}
.about-text .script{display:block; margin-bottom:6px;}
.about-text h2.section-title{margin-top:0; margin-bottom:18px;}
.about-text p{color:var(--ink-soft); font-size:16px; line-height:1.75; margin-bottom:16px;}
.about-text p strong{color:var(--forest);}
.about-signature{font-family:var(--font-script); font-size:26px; color:var(--forest); margin-top:18px;}
.about-cta{margin-top:8px;}

.gallery-grid{display:grid; grid-template-columns:repeat(2,1fr); gap:14px; margin-top:18px;}
@media (min-width:640px){ .gallery-grid{grid-template-columns:repeat(4,1fr);} }
.gallery-item{
  aspect-ratio:1; background:var(--cream-dim); border-radius:var(--radius-md);
  border:2px dashed rgba(26,58,38,0.18); display:flex; align-items:center; justify-content:center;
  color:var(--ink-soft); font-size:12px; font-weight:600; text-align:center; padding:10px;
}

/* ---------- PRICE TABLE ---------- */
.price-table{width:100%; border-collapse:collapse; background:var(--white); border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-card);}
.price-table th, .price-table td{text-align:left; padding:16px 20px; font-size:15px;}
.price-table thead th{background:var(--forest); color:var(--white); font-weight:700; font-size:13px; text-transform:uppercase; letter-spacing:.06em;}
.price-table tbody tr:not(:last-child){border-bottom:1px solid var(--cream-dim);}
.price-table tbody tr:nth-child(even){background:var(--cream);}
.price-table td.price-cell{font-weight:700; color:var(--olive); white-space:nowrap; text-align:right;}
.price-table-wrap{overflow-x:auto; -webkit-overflow-scrolling:touch;}
.price-note{
  margin-top:16px; font-size:13.5px; color:var(--ink-soft); background:var(--cream-dim);
  border-left:3px solid var(--olive); padding:12px 16px; border-radius:8px;
}

/* ---------- INCLUDES LIST ---------- */
.includes-list{display:grid; grid-template-columns:1fr; gap:12px; margin-top:10px;}
@media (min-width:640px){ .includes-list{grid-template-columns:1fr 1fr;} }
.includes-list li{
  display:flex; align-items:flex-start; gap:10px; font-size:15px; color:var(--ink-soft);
  background:var(--white); padding:14px 16px; border-radius:var(--radius-md); box-shadow:var(--shadow-card);
}
.includes-list li svg{color:var(--olive); flex-shrink:0; margin-top:2px;}

/* ---------- ABLAUF STEPS ---------- */
.steps-grid{display:grid; grid-template-columns:1fr; gap:20px;}
@media (min-width:760px){ .steps-grid{grid-template-columns:repeat(4,1fr);} }
.step-item{position:relative; padding-top:8px;}
.step-number{
  font-family:var(--font-script); font-size:40px; color:var(--olive-light); line-height:1; margin-bottom:8px; display:block;
}
.step-item h3{font-size:16px; font-weight:700; color:var(--forest); margin-bottom:6px;}
.step-item p{font-size:14px; color:var(--ink-soft); line-height:1.55;}

/* ---------- FAQ ---------- */
.faq-list{display:flex; flex-direction:column; gap:12px;}
.faq-item{
  background:var(--white); border-radius:var(--radius-md); box-shadow:var(--shadow-card); overflow:hidden;
}
.faq-item summary{
  padding:18px 20px; font-weight:700; font-size:15.5px; color:var(--forest);
  cursor:pointer; list-style:none; display:flex; align-items:center; justify-content:space-between; gap:12px;
}
.faq-item summary::-webkit-details-marker{display:none;}
.faq-item summary .faq-plus{
  flex-shrink:0; width:24px; height:24px; border-radius:50%; background:var(--cream-dim);
  display:flex; align-items:center; justify-content:center; color:var(--olive); transition:transform .2s ease;
}
.faq-item[open] summary .faq-plus{transform:rotate(45deg);}
.faq-item .faq-answer{padding:0 20px 20px; font-size:14.5px; color:var(--ink-soft); line-height:1.65;}

/* ---------- FACT / EXPERTISE PARAGRAPH ---------- */
.expertise-box{
  background:var(--cream-dim); border-radius:var(--radius-lg); padding:28px 26px;
  border-left:4px solid var(--olive);
}
.expertise-box h3{font-size:16px; font-weight:700; color:var(--forest); margin-bottom:10px;}
.expertise-box p{font-size:15px; color:var(--ink-soft); line-height:1.7;}

/* ---------- FINAL CTA BLOCK ---------- */
.cta-block{
  background:var(--forest); color:var(--white); border-radius:var(--radius-lg);
  padding:44px 32px; text-align:center;
}
.cta-block .script{color:var(--olive-light); margin-bottom:8px; display:block;}
.cta-block h2{font-size:clamp(22px,3vw,30px); font-weight:800; margin-bottom:10px;}
.cta-block p{color:#cdd6c5; font-size:15px; margin-bottom:26px; max-width:46ch; margin-left:auto; margin-right:auto;}
.cta-block .hero-actions{justify-content:center; margin-top:0;}

/* ---------- CONTACT ---------- */
.contact-section{background:var(--cream-dim);}
.contact-grid{display:grid; grid-template-columns:1fr; gap:28px;}
@media (min-width:900px){ .contact-grid{grid-template-columns:1.15fr 0.85fr; gap:40px;} }
.contact-card{background:var(--white); border-radius:var(--radius-lg); padding:32px 28px; box-shadow:var(--shadow-card);}
.form-row{margin-bottom:18px; display:flex; flex-direction:column; gap:6px;}
.form-row label{font-size:13px; font-weight:700; color:var(--forest);}
.form-row input, .form-row select, .form-row textarea{
  font-family:var(--font-body); font-size:15px; padding:13px 14px; border-radius:10px;
  border:1.5px solid #dcd8cc; background:var(--cream); color:var(--ink); outline:none;
  transition:border-color .15s ease;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus{border-color:var(--olive);}
.form-row textarea{resize:vertical; min-height:100px;}
.form-note{font-size:12.5px; color:var(--ink-soft); margin-top:10px; text-align:center;}
.form-grid-2{display:grid; grid-template-columns:1fr; gap:0 16px;}
@media (min-width:520px){ .form-grid-2{grid-template-columns:1fr 1fr;} }

.contact-info-card{background:var(--forest); color:var(--white); border-radius:var(--radius-lg); padding:32px 28px; box-shadow:var(--shadow-card);}
.contact-info-card h3{font-family:var(--font-script); font-size:26px; color:var(--olive-light); font-weight:600; margin-bottom:22px;}
.contact-link-list{display:flex; flex-direction:column; gap:16px; margin-bottom:26px;}
.contact-link{display:flex; align-items:center; gap:14px; padding:14px 16px; background:rgba(255,255,255,0.07); border-radius:var(--radius-md); transition:background .15s ease;}
.contact-link:hover{background:rgba(255,255,255,0.14);}
.contact-link .ci-icon{width:38px; height:38px; border-radius:10px; background:rgba(139,171,92,0.28); color:var(--olive-light); display:flex; align-items:center; justify-content:center; flex-shrink:0;}
.contact-link .ci-text .label{font-size:12px; color:#b8c2ad; font-weight:600; letter-spacing:.03em;}
.contact-link .ci-text .value{font-size:15px; font-weight:700;}
.contact-hint{font-size:13px; color:#b8c2ad; line-height:1.6; margin-top:20px;}

/* ---------- FOOTER ---------- */
footer.site-footer{background:var(--forest-deep); color:#cfd8c6; padding:56px 20px 100px;}
@media (min-width:900px){ footer.site-footer{padding-bottom:56px;} }
.footer-inner{max-width:1120px; margin:0 auto; display:grid; grid-template-columns:1fr; gap:34px;}
@media (min-width:720px){ .footer-inner{grid-template-columns:1.2fr 1fr 1fr;} }
.footer-brand .wordmark{font-size:24px; font-weight:800; color:var(--white);}
.footer-brand .wordmark span{color:var(--olive-light);}
.footer-brand .script{font-size:22px; color:var(--olive-light); display:block; margin-top:8px;}
.footer-brand .footer-sub{font-size:12px; letter-spacing:.12em; text-transform:uppercase; color:#8fa082; margin-top:6px; font-weight:700;}
.footer-col h4{font-size:13px; text-transform:uppercase; letter-spacing:.1em; color:#8fa082; margin-bottom:14px; font-weight:700;}
.footer-col ul{display:flex; flex-direction:column; gap:10px; font-size:14.5px;}
.footer-col a:hover{color:var(--white);}
.footer-bottom{max-width:1120px; margin:40px auto 0; padding-top:24px; border-top:1px solid rgba(255,255,255,0.08); font-size:12.5px; color:#7c8d70; display:flex; flex-wrap:wrap; justify-content:space-between; gap:10px;}

/* ---------- MOBILE FIXED BAR ---------- */
.mobile-bar{
  position:fixed; bottom:0; left:0; right:0; z-index:60; display:flex;
  background:var(--white); box-shadow:0 -6px 20px rgba(26,58,38,0.15); padding:10px 12px; gap:10px;
}
.mobile-bar .btn{flex:1; padding:13px 10px; font-size:14.5px;}
@media (min-width:900px){ .mobile-bar{display:none;} }

/* ---------- LEGAL PAGES ---------- */
.legal-section{background:var(--cream);}
.legal-container{max-width:760px; margin:0 auto;}
.legal-container h1{font-size:clamp(26px,4vw,36px); font-weight:800; color:var(--forest); margin-bottom:28px;}
.legal-container h3{font-size:16px; font-weight:700; color:var(--forest); margin:28px 0 8px;}
.legal-container p, .legal-container li{font-size:15px; line-height:1.75; color:var(--ink-soft); margin-bottom:10px;}
.legal-container a{color:var(--olive); font-weight:600; text-decoration:underline;}
.legal-container ul{padding-left:20px; list-style:disc; margin-bottom:14px;}
.legal-note{background:var(--cream-dim); border-left:3px solid var(--olive); padding:14px 16px; border-radius:8px; font-size:13.5px; color:var(--ink-soft); margin-bottom:24px;}

/* ---------- SCROLL REVEAL ---------- */
.reveal{opacity:0; transform:translateY(24px); transition:opacity .7s ease, transform .7s ease;}
.reveal.is-visible{opacity:1; transform:translateY(0);}
@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto;}
  .reveal{opacity:1; transform:none; transition:none;}
}

:focus-visible{outline:3px solid var(--olive); outline-offset:2px;}
