@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('fonts/roboto-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/roboto-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/roboto-500.woff2') format('woff2');
}

:root {
  --gruen:       #5a8a1f;
  --gruen-light: #eef4e4;
  --gruen-mid:   #4a7419;
  --anthrazit:   #4a4a4a;
  --gold:        #c8a96e;
  --gold-light:  #f5f0e6;
  --creme:       #f5f2ec;
  --creme-dark:  #ede9e0;
  --white:       #ffffff;
  --text:        #333333;
  --text-muted:  #6b6b6b;
  --border:      #ddd9d0;
  --font: 'Roboto', system-ui, sans-serif;
  --max-w: 960px;
  --radius: 3px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--font); font-weight: 400; line-height: 1.7; color: var(--text); background: var(--white); }
img { max-width: 100%; display: block; }
a { color: var(--gruen); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }

/* NAV */
.site-header { position: sticky; top: 0; z-index: 50; background: var(--white); border-bottom: 1px solid var(--border); box-shadow: 0 1px 6px rgba(0,0,0,.05); }
.nav-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; height: 60px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: .7rem; text-decoration: none; }
.nav-logo img.logo-img { height: 36px; width: auto; }
.nav-logo-text { line-height: 1.2; }
.nav-logo-text strong { display: block; font-size: .92rem; font-weight: 500; color: var(--anthrazit); }
.nav-logo-text span { display: block; font-size: .66rem; font-weight: 300; color: var(--text-muted); letter-spacing: .08em; text-transform: uppercase; }
.nav-links { display: flex; gap: .1rem; }
.nav-links a { font-size: .84rem; font-weight: 400; color: var(--text-muted); padding: .4rem .8rem; border-radius: var(--radius); transition: color .15s, background .15s; }
.nav-links a:hover, .nav-links a.active { color: var(--gruen); background: var(--gruen-light); text-decoration: none; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: .3rem; flex-direction: column; gap: 5px; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--anthrazit); }

/* HERO */
.hero { background: var(--creme); border-bottom: 3px solid var(--gold); padding: 4.5rem 1.5rem 4rem; }
.hero-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: center; }
.hero-label { font-size: .7rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--gruen); margin-bottom: .75rem; }
.hero h1 { font-size: clamp(1.65rem, 3.5vw, 2.4rem); font-weight: 300; line-height: 1.25; color: var(--anthrazit); margin-bottom: 1rem; }
.hero h1 strong { font-weight: 500; color: var(--gruen); }
.hero-sub { font-size: .93rem; font-weight: 300; color: var(--text-muted); line-height: 1.75; margin-bottom: 1.75rem; max-width: 440px; }
.hero-tags { display: flex; flex-wrap: wrap; gap: .45rem; margin-bottom: 1.75rem; }
.hero-tag { font-size: .77rem; font-weight: 400; background: var(--white); color: var(--anthrazit); border: 1px solid var(--border); padding: .25rem .7rem; border-radius: 2rem; }
.hero-tag b { color: var(--gruen); font-weight: 500; }
.hero-portrait { width: 170px; height: 170px; flex-shrink: 0; border-radius: 50%; overflow: hidden; border: 3px solid var(--gold); box-shadow: 0 4px 18px rgba(0,0,0,.10); }
.hero-portrait img { width: 100%; height: 100%; object-fit: cover; }
.hero-actions { display: flex; gap: .7rem; flex-wrap: wrap; }

/* BUTTONS */
.btn { display: inline-block; font-family: var(--font); font-size: .84rem; font-weight: 500; letter-spacing: .03em; padding: .65rem 1.5rem; cursor: pointer; border: none; text-decoration: none; border-radius: var(--radius); transition: background .15s, color .15s; }
.btn-primary { background: var(--gruen); color: var(--white); }
.btn-primary:hover { background: var(--gruen-mid); text-decoration: none; color: var(--white); }
.btn-ghost { background: transparent; color: var(--gruen); border: 1.5px solid var(--gruen); }
.btn-ghost:hover { background: var(--gruen-light); text-decoration: none; color: var(--gruen); }
.btn-white { background: var(--white); color: var(--gruen); }
.btn-white:hover { background: var(--gold-light); text-decoration: none; color: var(--gruen); }

/* SECTIONS */
section { padding: 4rem 1.5rem; }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-label { font-size: .7rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--gruen); margin-bottom: .6rem; }
.section-title { font-size: clamp(1.3rem, 2.5vw, 1.75rem); font-weight: 300; color: var(--anthrazit); line-height: 1.3; margin-bottom: .7rem; }
.section-title strong { font-weight: 500; }
.section-intro { font-size: .9rem; font-weight: 300; color: var(--text-muted); max-width: 520px; line-height: 1.75; margin-bottom: 2.5rem; }

/* LEISTUNGEN — Liste */
.services { background: var(--white); }
.service-list { display: flex; flex-direction: column; }
.service-item { display: grid; grid-template-columns: 3rem 1fr; gap: 0 1.25rem; padding: 1.5rem 0; border-bottom: 1px solid var(--creme-dark); align-items: start; }
.service-item:last-child { border-bottom: none; }
.service-num { font-size: 1.3rem; font-weight: 300; color: var(--gold); line-height: 1.5; text-align: right; }
.service-body {}
.service-name { font-size: .97rem; font-weight: 500; color: var(--anthrazit); margin-bottom: .25rem; }
.service-desc { font-size: .87rem; font-weight: 300; color: var(--text-muted); line-height: 1.7; }
.service-for { font-size: .74rem; color: var(--gruen); font-weight: 400; letter-spacing: .03em; margin-top: .3rem; }
.service-link { display: inline-block; margin-top: .4rem; font-size: .77rem; font-weight: 500; color: var(--gruen); letter-spacing: .03em; }

/* PRINZIPIEN */
.principles { background: var(--creme); }
.principles-list { display: flex; flex-direction: column; }
.principle-row { display: flex; gap: 1rem; align-items: flex-start; padding: 1.25rem 0; border-bottom: 1px solid var(--border); }
.principle-row:last-child { border-bottom: none; }
.principle-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gruen); flex-shrink: 0; margin-top: .5rem; }
.principle-name { font-size: .93rem; font-weight: 500; color: var(--anthrazit); margin-bottom: .15rem; }
.principle-desc { font-size: .87rem; font-weight: 300; color: var(--text-muted); line-height: 1.7; }

/* CTA */
.cta-band { background: var(--gruen); color: var(--white); padding: 3.5rem 1.5rem; text-align: center; }
.cta-band h2 { font-size: clamp(1.2rem, 2.5vw, 1.55rem); font-weight: 300; margin-bottom: .5rem; color: var(--white); }
.cta-band p { font-size: .88rem; font-weight: 300; opacity: .85; margin-bottom: 1.5rem; }

/* ÜBER MICH */
.about-layout { display: grid; grid-template-columns: 200px 1fr; gap: 3rem; align-items: start; }
.about-photo { border-radius: var(--radius); overflow: hidden; border: 2px solid var(--gold); }
.about-photo img { width: 100%; display: block; }
.about-name { font-size: clamp(1.2rem, 2.5vw, 1.65rem); font-weight: 300; color: var(--anthrazit); margin-bottom: .15rem; }
.about-title-line { font-size: .73rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--gruen); margin-bottom: 1.25rem; }
.about-text { font-size: .9rem; font-weight: 300; color: var(--text-muted); line-height: 1.8; margin-bottom: 1.5rem; }
.qualif-section { margin-bottom: 1.5rem; }
.qualif-heading { font-size: .68rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--anthrazit); margin-bottom: .65rem; padding-bottom: .4rem; border-bottom: 1px solid var(--border); }
.qualif-item { display: flex; gap: .6rem; align-items: baseline; font-size: .875rem; font-weight: 300; color: var(--text-muted); line-height: 1.55; padding: .25rem 0; }
.qualif-item::before { content: '–'; color: var(--gold); flex-shrink: 0; }
.values-list { display: flex; flex-direction: column; gap: .75rem; }
.value-row { display: flex; gap: .7rem; align-items: flex-start; }
.value-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: .5rem; }
.value-name { font-size: .88rem; font-weight: 500; color: var(--anthrazit); margin-bottom: .1rem; }
.value-desc { font-size: .84rem; font-weight: 300; color: var(--text-muted); line-height: 1.6; }
.memberships { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.membership-label { font-size: .68rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: .85rem; }
.membership-logos { display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; }
.membership-logos a { display: block; opacity: .75; transition: opacity .2s; }
.membership-logos a:hover { opacity: 1; }
.membership-logos img { height: 36px; width: auto; }

/* LEISTUNGS-DETAIL */
.leistung-detail { padding: 2rem 0 2.5rem; border-bottom: 1px solid var(--creme-dark); }
.leistung-detail:last-child { border-bottom: none; padding-bottom: 0; }
.leistung-header { display: flex; gap: .9rem; align-items: baseline; margin-bottom: .4rem; }
.leistung-nr { font-size: 1.3rem; font-weight: 300; color: var(--gold); flex-shrink: 0; }
.leistung-title { font-size: 1.05rem; font-weight: 500; color: var(--anthrazit); }
.leistung-for { font-size: .74rem; color: var(--gruen); letter-spacing: .03em; margin: .3rem 0 .75rem 2.2rem; }
.leistung-text { font-size: .88rem; font-weight: 300; color: var(--text-muted); line-height: 1.8; margin-bottom: .65rem; margin-left: 2.2rem; }
.leistung-bullets { margin-left: 2.2rem; display: flex; flex-direction: column; gap: .35rem; }
.leistung-bullets li { display: flex; gap: .55rem; align-items: baseline; font-size: .87rem; font-weight: 300; color: var(--text-muted); line-height: 1.55; }
.leistung-bullets li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--gruen); flex-shrink: 0; margin-top: .5rem; }
.quick-nav { background: var(--creme); border-bottom: 1px solid var(--border); padding: .6rem 1.5rem; overflow-x: auto; white-space: nowrap; }
.quick-nav-inner { max-width: var(--max-w); margin: 0 auto; display: flex; gap: 1.25rem; }
.quick-nav a { font-size: .76rem; font-weight: 500; color: var(--text-muted); letter-spacing: .05em; text-transform: uppercase; }
.quick-nav a:hover { color: var(--gruen); text-decoration: none; }

/* KONTAKT */
.contact-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 3.5rem; align-items: start; }
.contact-info-group { margin-bottom: 1.5rem; }
.contact-info-label { font-size: .68rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--gruen); margin-bottom: .3rem; }
.contact-info-value { font-size: .9rem; color: var(--text); line-height: 1.65; }
.contact-info-value a { color: var(--text); }
.contact-info-value a:hover { color: var(--gruen); }
.contact-steps { background: var(--creme); border-left: 3px solid var(--gold); padding: 1.1rem 1rem; margin-top: 1.25rem; }
.contact-steps-title { font-size: .68rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: .75rem; }
.contact-step { display: flex; gap: .7rem; align-items: flex-start; margin-bottom: .55rem; }
.contact-step:last-child { margin-bottom: 0; }
.step-num { width: 18px; height: 18px; border-radius: 50%; background: var(--gruen); color: var(--white); font-size: .68rem; font-weight: 500; flex-shrink: 0; display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.step-text { font-size: .84rem; font-weight: 300; color: var(--text-muted); line-height: 1.55; }

/* FORMULAR */
.form-field { margin-bottom: 1.1rem; }
.form-field label { display: block; font-size: .73rem; font-weight: 500; letter-spacing: .07em; text-transform: uppercase; color: var(--anthrazit); margin-bottom: .38rem; }
.form-field input, .form-field select, .form-field textarea { width: 100%; background: var(--white); border: 1px solid var(--border); padding: .62rem .82rem; font-family: var(--font); font-size: .88rem; font-weight: 300; color: var(--text); outline: none; border-radius: var(--radius); -webkit-appearance: none; transition: border-color .15s; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--gruen); }
.form-field textarea { resize: vertical; min-height: 115px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-check { display: flex; gap: .55rem; align-items: flex-start; margin-bottom: 1.1rem; }
.form-check input { width: auto; margin-top: 3px; flex-shrink: 0; accent-color: var(--gruen); }
.form-check label { font-size: .81rem; font-weight: 300; color: var(--text-muted); text-transform: none; letter-spacing: 0; }
.form-success { display: none; background: var(--gruen-light); border-left: 3px solid var(--gruen); padding: 1rem 1.1rem; font-size: .88rem; color: var(--gruen); margin-bottom: 1.25rem; border-radius: var(--radius); }
.form-error { display: none; background: #fce8e8; border-left: 3px solid #c0392b; padding: 1rem 1.1rem; font-size: .88rem; color: #c0392b; margin-bottom: 1.25rem; border-radius: var(--radius); }

/* PAGE HERO */
.page-hero { background: var(--creme); border-bottom: 1px solid var(--border); padding: 3rem 1.5rem 2.5rem; }
.page-hero-inner { max-width: var(--max-w); margin: 0 auto; }
.page-hero-eyebrow { font-size: .68rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--gruen); margin-bottom: .55rem; }
.page-hero h1 { font-size: clamp(1.45rem, 3vw, 2rem); font-weight: 300; color: var(--anthrazit); line-height: 1.25; margin-bottom: .45rem; }
.page-hero p { font-size: .9rem; font-weight: 300; color: var(--text-muted); max-width: 500px; line-height: 1.7; }

/* IMPRESSUM */
.legal { max-width: 680px; }
.legal h2 { font-size: 1.15rem; font-weight: 500; color: var(--anthrazit); margin: 2rem 0 .55rem; }
.legal h2:first-child { margin-top: 0; }
.legal h3 { font-size: .92rem; font-weight: 500; color: var(--anthrazit); margin: 1.2rem 0 .35rem; }
.legal p { font-size: .875rem; font-weight: 300; color: var(--text-muted); line-height: 1.8; margin-bottom: .55rem; }
.legal ul { margin: .4rem 0 .7rem 1.2rem; list-style: disc; }
.legal ul li { font-size: .875rem; font-weight: 300; color: var(--text-muted); line-height: 1.7; }
.legal .caps { text-transform: uppercase; font-size: .78rem; line-height: 1.65; }

/* FOOTER */
.site-footer { background: var(--anthrazit); color: rgba(255,255,255,.55); padding: 2.75rem 1.5rem 1.75rem; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2rem; }
.footer-logo img { height: 44px; width: auto; margin-bottom: .65rem; filter: brightness(0) invert(1); opacity: .65; }
.footer-brand-name { font-size: .88rem; font-weight: 400; color: rgba(255,255,255,.75); margin-bottom: .25rem; }
.footer-brand-sub { font-size: .77rem; color: rgba(255,255,255,.38); line-height: 1.6; }
.footer-col h4 { font-size: .66rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: .65rem; }
.footer-col a { display: block; font-size: .81rem; color: rgba(255,255,255,.5); margin-bottom: .3rem; transition: color .15s; }
.footer-col a:hover { color: rgba(255,255,255,.85); text-decoration: none; }

/* Footer-Banner (Mitgliedschaftsnachweise) */
.footer-banners {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.footer-banner-link {
  display: block;
  opacity: .75;
  transition: opacity .2s;
  border-radius: 3px;
  overflow: hidden;
}
.footer-banner-link:hover { opacity: 1; }
.footer-banner-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 60px;
  object-fit: contain;
  object-position: left center;
  background: rgba(255,255,255,.08);
  padding: .5rem .75rem;
  box-sizing: border-box;
}

.footer-bottom { max-width: var(--max-w); margin: 1.75rem auto 0; padding-top: 1.1rem; border-top: 1px solid rgba(255,255,255,.07); display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; font-size: .76rem; color: rgba(255,255,255,.3); }
.footer-bottom a { color: rgba(255,255,255,.3); }
.footer-bottom a:hover { color: rgba(255,255,255,.65); text-decoration: none; }

/* RESPONSIVE */
@media (max-width: 720px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 60px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: .65rem 0; box-shadow: 0 4px 12px rgba(0,0,0,.07); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: .65rem 1.5rem; border-radius: 0; }
  .nav-toggle { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 1.75rem; }
  .hero-portrait { width: 110px; height: 110px; justify-self: start; order: -1; }
  .about-layout { grid-template-columns: 1fr; gap: 2rem; }
  .about-photo { max-width: 180px; }
  .contact-layout { grid-template-columns: 1fr; gap: 2.25rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  
