:root {
  --green: #1e4234;
  --green-light: #2d5e4a;
  --green-pale: #d6e8de;
  --white: #f5f0e8;
  --bg-light: #e8e0d0;
  --text-dark: #111111;
  --text-mid: #444444;
  --text-soft: #888888;
  --border: #cfc5b0;
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --header-h: 72px;
  --container: 1280px;
  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease: cubic-bezier(0.25, 0, 0, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: var(--green);
}

a.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 78px;
  width: auto;
  display: block;
}

h1, h2, h3 {
  font-family: var(--font-serif);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

em {
  font-style: italic;
  color: var(--green);
}

.body-text {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 58ch;
}

.body-text + .body-text {
  margin-top: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem 1.4rem;
  border-radius: 100px;
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .01em;
  transition: all .2s var(--ease);
  white-space: nowrap;
}

.btn--primary {
  background: var(--green);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--green-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(30,66,52,.25);
}

.btn--ghost {
  background: transparent;
  color: var(--green);
  border: 1.5px solid var(--green);
}

.btn--ghost:hover {
  background: var(--green-pale);
}

.btn--outline {
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid var(--border);
}

.btn--outline:hover {
  border-color: var(--green);
  color: var(--green);
}

.btn--white {
  background: var(--white);
  color: var(--green);
  font-weight: 500;
}

.btn--white:hover {
  background: var(--green-pale);
}

.btn--lg {
  padding: .85rem 2rem;
  font-size: 1rem;
}

.btn--full {
  width: 100%;
  justify-content: center;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 2rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}

.nav__link {
  font-size: .9rem;
  font-weight: 400;
  color: var(--text-mid);
  transition: color .15s;
}

.nav__link:hover,
.nav__link.active {
  color: var(--green);
}

.nav__link.active {
  font-weight: 500;
}

.header__cta {
  margin-left: 1rem;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .25rem;
  margin-left: auto;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-dark);
  transition: all .2s;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem 1.5rem;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav__link {
  padding: .75rem 0;
  font-size: 1rem;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
}

.mobile-nav__link.active {
  color: var(--green);
  font-weight: 500;
}

.mobile-nav__cta {
  margin-top: 1rem;
  align-self: flex-start;
}

.section {
  padding: 6rem 0;
}

.section--light {
  background: var(--bg-light);
}

.section__header {
  margin-bottom: 3rem;
}

.section__eyebrow {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: .75rem;
}

.section__title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--text-dark);
}

.section__footer {
  text-align: center;
  margin-top: 3rem;
}

/* HERO FIX */
.hero {
  padding: clamp(5rem, 10vw, 9rem) 0 clamp(4rem, 8vw, 7rem);
  position: relative;
  overflow: hidden;
}

.hero--split {
  padding: clamp(4.5rem, 7vw, 7rem) 0;
  background: var(--white);
  overflow: hidden;
}

.hero__inner--split {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(520px, 1.28fr);
  gap: clamp(3rem, 5vw, 5.5rem);
  align-items: center;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 430px;
}

.hero__headline--new {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 2.65vw, 2.85rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--text-dark);
  max-width: 15ch;
}

.hero__headline--new em {
  color: var(--green);
  font-style: italic;
}

.hero__image-col {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 100%;
  height: clamp(500px, 52vw, 690px);
  background: var(--green-pale);
  box-shadow: 0 28px 80px rgba(30, 66, 52, 0.18);
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}

.strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  padding: 1rem 2.5rem;
}

.strip__num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--green);
  line-height: 1;
}

.strip__label {
  font-size: .8rem;
  color: var(--text-soft);
  letter-spacing: .04em;
}

.strip__divider {
  width: 1px;
  height: 3rem;
  background: var(--border);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}

.card {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all .2s var(--ease);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: transparent;
}

.card__icon {
  color: var(--green);
}

.card__title {
  font-size: 1.1rem;
  font-weight: 500;
  font-family: var(--font-serif);
}

.card__text {
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.6;
  flex: 1;
}

.card__link {
  font-size: .85rem;
  color: var(--green);
  font-weight: 500;
  margin-top: auto;
}

.about-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-teaser__visual {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-teaser__block {
  padding: 2rem;
  border-radius: var(--radius-md);
  background: var(--bg-light);
  border: 1px solid var(--border);
}

.about-teaser__block--top {
  background: var(--green);
  border-color: var(--green);
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.about-teaser__quote {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--white);
  font-style: italic;
}

.about-teaser__attr {
  font-size: .8rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.value-list {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.value-item {
  font-size: .9rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: .5rem;
}

.value-check {
  color: var(--green);
  font-weight: 600;
  font-size: 1rem;
}

.cta-banner {
  background: var(--green);
  padding: 5rem 0;
}

.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-banner__title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--white);
}

.cta-banner__sub {
  font-size: .95rem;
  color: rgba(255,255,255,0.65);
  margin-top: .5rem;
}

.footer {
  background: #111;
  padding: 4rem 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer .logo {
  color: var(--white);
}

.footer__tagline {
  font-size: .85rem;
  color: rgba(255,255,255,0.45);
  margin-top: .5rem;
  line-height: 1.6;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.footer__link {
  font-size: .9rem;
  color: rgba(255,255,255,0.55);
  transition: color .15s;
}

.footer__link:hover {
  color: var(--white);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.footer__contact span {
  font-size: .85rem;
  color: rgba(255,255,255,0.5);
}

.footer__bottom {
  padding: 1.5rem 0;
}

.footer__bottom span {
  font-size: .8rem;
  color: rgba(255,255,255,0.3);
}

.page-hero {
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(3rem, 5vw, 5rem);
  border-bottom: 1px solid var(--border);
}

.page-hero__title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 1rem 0 1.5rem;
  max-width: 16ch;
}

.page-hero__sub {
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  color: var(--text-mid);
  max-width: 58ch;
  line-height: 1.75;
  font-weight: 300;
}

.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.story__text .section__title {
  margin-bottom: 1.5rem;
}

.story__aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat-card {
  padding: 1.75rem 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: .25rem;
}

.stat-card__num {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--green);
}

.stat-card__label {
  font-size: .85rem;
  color: var(--text-soft);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.value-card {
  padding: 2rem;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transition: all .2s var(--ease);
}

.value-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.value-card__icon {
  color: var(--green);
}

.value-card__title {
  font-size: 1.05rem;
  font-family: var(--font-serif);
  font-weight: 400;
}

.value-card__text {
  font-size: .875rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.process {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 720px;
  margin: 0 auto;
}

.process__step {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}

.process__step:last-child {
  border-bottom: none;
}

.process__num {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--green);
  opacity: .35;
  min-width: 2.5rem;
  line-height: 1;
  margin-top: .1rem;
}

.process__title {
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: .4rem;
}

.process__text {
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.service-block {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 2rem;
  padding: 3rem 0;
  align-items: start;
}

.service-block__label {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--green);
  opacity: .3;
  line-height: 1;
  padding-top: .25rem;
}

.service-block__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.service-block__icon {
  color: var(--green);
  flex-shrink: 0;
}

.service-block__title {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
}

.service-block__text {
  font-size: .95rem;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 65ch;
  margin-bottom: 1.25rem;
}

.service-block__list {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem .75rem;
}

.service-block__list li {
  font-size: .82rem;
  background: var(--green-pale);
  color: var(--green);
  padding: .3rem .85rem;
  border-radius: 100px;
  font-weight: 500;
}

.service-divider {
  height: 1px;
  background: var(--border);
  width: 100%;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.contact-info__title {
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.contact-item__icon {
  width: 42px;
  height: 42px;
  background: var(--green-pale);
  color: var(--green);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item__label {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-soft);
  display: block;
  margin-bottom: .2rem;
}

.contact-item__value {
  font-size: .95rem;
  color: var(--text-dark);
  line-height: 1.6;
  display: block;
}

a.contact-item__value:hover {
  color: var(--green);
}

.contact-note {
  margin-top: 2.5rem;
  padding: 1.5rem;
  background: var(--green-pale);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--green);
  font-size: .875rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.contact-form-wrap__title {
  font-size: 1.4rem;
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1rem;
}

.form-label {
  font-size: .8rem;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: .02em;
}

.form-input {
  padding: .75rem 1rem;
  font-family: var(--font-sans);
  font-size: .9rem;
  color: var(--text-dark);
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color .15s, box-shadow .15s;
  width: 100%;
  appearance: none;
}

.form-input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(30,66,52,.08);
  background: var(--white);
}

.form-input::placeholder {
  color: var(--text-soft);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .75rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-privacy {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  margin-bottom: 1.5rem;
  font-size: .82rem;
  color: var(--text-soft);
  line-height: 1.5;
}

.form-privacy input {
  margin-top: .15rem;
  accent-color: var(--green);
  flex-shrink: 0;
}

.form-privacy a {
  color: var(--green);
  text-decoration: underline;
}

.form-success {
  display: none;
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  background: var(--green-pale);
  color: var(--green);
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 500;
}

.form-success.visible {
  display: block;
}

.logo-img--footer {
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

@media (max-width: 1100px) {
  .hero__inner--split {
    grid-template-columns: .8fr 1.2fr;
    gap: 3rem;
  }

  .hero__image-col {
    min-height: 520px;
  }

  .hero__headline--new {
    font-size: clamp(1.75rem, 2.8vw, 2.5rem);
  }
}

@media (max-width: 900px) {
  .nav,
  .header__cta {
    display: none;
  }

  .nav__toggle {
    display: flex;
  }

  .hero__inner--split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__headline--new {
    max-width: 100%;
    font-size: clamp(2.1rem, 7vw, 3.2rem);
  }

  .hero__image-col {
    min-height: 430px;
  }

  .about-teaser {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .story {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .service-block {
    grid-template-columns: 1fr;
    gap: .5rem;
  }

  .service-block__label {
    display: none;
  }

  .strip__divider {
    display: none;
  }

  .strip__item {
    padding: .75rem 1.5rem;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .cta-banner__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .cards {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    padding: 1.5rem;
  }

  .hero {
    padding: 3rem 0 4rem;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero__image-col {
    min-height: 360px;
    border-radius: 16px;
  }
}/* ── Before / After Section ── */

.before-after {
  background: var(--white);
}

.ba-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.ba-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform .25s ease;
}

.ba-item:hover {
  transform: translateY(-4px);
}

.ba-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* Label oben links */
.ba-label {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: .75rem;
  padding: .35rem .7rem;
  border-radius: 100px;
  backdrop-filter: blur(6px);
}

/* Nachher grün highlight */
.ba-label--after {
  background: var(--green);
}

/* Mobile */
@media (max-width: 700px) {
  .ba-grid {
    grid-template-columns: 1fr;
  }
}