:root {
  --bg: #f5f2ea;
  --bg-2: #efeade;
  --panel: #fdfcf9;
  --ink: #16211a;
  --text: #16211a;
  --text-dim: rgba(22, 33, 26, 0.8);
  --text-mut: rgba(22, 33, 26, 0.72);
  --text-mut-2: rgba(22, 33, 26, 0.66);
  --border: rgba(22, 33, 26, 0.16);
  --border-soft: rgba(22, 33, 26, 0.13);
  --accent: #8f5716;
  --accent-hover: #16211a;
  --forest-1: #1b2a1f;
  --forest-2: #26382a;
  --gold: #c99a56;
  --cream: #eceada;
  --cream-2: #f1efe6;
  --font-head: 'Newsreader', Georgia, serif;
  --font-body: 'Archivo', 'Helvetica Neue', Helvetica, sans-serif;
  --max: 1240px;
  --pad: clamp(18px, 4vw, 48px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
  line-height: 1.5;
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--accent); }
h1, h2, h3 { font-family: var(--font-head); font-weight: 400; margin: 0; }
::selection { background: rgba(168, 106, 30, 0.2); }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--accent);
  color: #f8f6ef;
  padding: 19px 30px;
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border: 0;
  cursor: pointer;
  transition: background 0.15s ease;
}
.btn:hover { background: var(--accent-hover); color: #f8f6ef; }
.btn__arrow { width: 18px; height: 1px; background: currentColor; display: inline-block; }
.btn--sm { padding: 13px 22px; font-size: 0.78rem; }
.btn--gold { background: var(--gold); color: var(--ink); }
.btn--gold:hover { background: var(--cream-2); color: var(--ink); }
.btn--block { justify-content: space-between; width: 100%; }
.link {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid rgba(22, 33, 26, 0.3);
  padding-bottom: 4px;
}
.link:hover { color: var(--accent); border-bottom-color: var(--accent); }

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 70;
  background: rgba(245, 242, 234, 0.94);
  backdrop-filter: saturate(1.3) blur(10px);
  border-bottom: 1px solid var(--border-soft);
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.brand {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 30px);
  padding: 13px 0;
}
.brand__logo { height: 31px; width: auto; }
.brand__tag {
  font-size: 0.76rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: var(--text-mut);
  border-left: 1px solid rgba(22, 33, 26, 0.2);
  padding-left: clamp(16px, 2.5vw, 30px);
}
.nav__actions { display: flex; align-items: center; gap: clamp(14px, 2vw, 26px); flex-wrap: wrap; }
.nav__phone {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid rgba(22, 33, 26, 0.28);
}
.nav__phone:hover { color: var(--accent); border-bottom-color: var(--accent); }

/* Hero */
.hero { padding: clamp(40px, 5.5vw, 82px) 0 0; }
.hero__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: clamp(32px, 4.5vw, 68px);
  align-items: center;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mut);
}
.eyebrow__dot { width: 9px; height: 9px; background: var(--accent); flex: none; }
.eyebrow--label { font-family: var(--font-head); font-size: 0.9rem; letter-spacing: 0.1em; color: var(--accent); display: block; }
.eyebrow--label.eyebrow--gold { color: var(--gold); }

.hero h1 {
  margin: 22px 0 0;
  font-weight: 400;
  font-size: clamp(2.5rem, 4.7vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.024em;
  max-width: 19ch;
}
.hero h1 em { font-style: italic; color: #26382a; }
.hero__lead {
  margin: 24px 0 0;
  max-width: 48ch;
  font-size: clamp(1.02rem, 1.2vw, 1.18rem);
  line-height: 1.62;
  color: var(--text-dim);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: clamp(26px, 3vw, 34px); }
.hero__checks { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 22px; font-size: 0.82rem; color: var(--text-mut); }
.hero__figure { margin: 0; }
.hero__figure img { width: 100%; height: auto; border: 1px solid var(--border); filter: saturate(0.9) contrast(1.02); }
.hero__caption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 11px;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  color: var(--text-mut);
}

/* Proof / trust bar */
.proof {
  margin-top: clamp(40px, 5vw, 72px);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  background: var(--bg-2);
}
.proof__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(22px, 4vw, 52px);
  padding: clamp(24px, 3vw, 34px) var(--pad);
}
.proof__label {
  flex: 0 0 auto;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mut);
  max-width: 17ch;
  line-height: 1.6;
}
.proof__logos {
  flex: 1 1 400px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(22px, 3.4vw, 48px);
  mix-blend-mode: multiply;
}
.proof__logos img { height: 26px; width: auto; opacity: 0.75; }

/* Sections */
.section { padding: clamp(58px, 7vw, 104px) 0; }
.section--tight { padding: clamp(58px, 7vw, 100px) 0; }
.section--dark { background: var(--forest-1); color: var(--cream-2); }
.section--darker { background: var(--forest-2); color: var(--cream-2); }
.section--ink { background: var(--ink); color: var(--cream); }
.section__head { max-width: 56ch; }
.section__head--split {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(24px, 5vw, 72px);
  align-items: flex-end;
  border-bottom: 1px solid rgba(241, 239, 230, 0.2);
  padding-bottom: clamp(26px, 3vw, 40px);
  max-width: none;
}
.section__head--split > div:first-child { flex: 1 1 420px; }
.section__head--split > p { flex: 1 1 340px; margin: 0; font-size: 0.99rem; line-height: 1.66; color: rgba(241, 239, 230, 0.76); max-width: 46ch; }
.section h2 {
  margin: 12px 0 0;
  font-weight: 400;
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.section__lead { margin: 20px 0 0; font-size: 1.02rem; line-height: 1.66; color: var(--text-dim); }

/* Offers (Angebote) */
.offers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(20px, 2.4vw, 32px);
  margin-top: clamp(32px, 4vw, 52px);
}
.offer {
  border: 1px solid var(--border);
  background: var(--panel);
  padding: clamp(24px, 2.8vw, 38px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.offer__head { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; }
.offer__tag { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); }
.offer__num { font-family: var(--font-head); font-size: 1.1rem; color: var(--text-mut); }
.offer h3 { font-weight: 400; font-size: clamp(1.6rem, 2.2vw, 2.1rem); line-height: 1.1; letter-spacing: -0.012em; }
.offer p { margin: 0; font-size: 0.97rem; line-height: 1.62; color: var(--text-dim); }
.offer__list { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 1px; }
.offer__list li { padding: 12px 0; border-top: 1px solid var(--border-soft); font-size: 0.92rem; line-height: 1.5; }
.offer__list li:last-child { border-bottom: 1px solid var(--border-soft); }
.offer .btn { margin-top: auto; }

/* Process steps (Ablauf) */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(22px, 3vw, 42px);
  margin-top: clamp(30px, 3.6vw, 50px);
}
.step { display: flex; flex-direction: column; gap: 12px; }
.step__num { font-family: var(--font-head); font-size: 2.4rem; line-height: 1; color: var(--gold); }
.step h3 { font-size: 1rem; font-weight: 600; }
.step p { margin: 0; font-size: 0.9rem; line-height: 1.6; color: rgba(241, 239, 230, 0.72); }

/* Evidence (Beweise) */
.evidence {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(30px, 4vw, 60px);
  margin-top: clamp(34px, 4vw, 56px);
  align-items: center;
}
.evidence__map { border: 1px solid var(--border); background: var(--bg-2); padding: clamp(16px, 2.2vw, 30px); }
.evidence__map img { mix-blend-mode: multiply; }
.evidence__list { display: flex; flex-direction: column; gap: 0; }
.evidence__item { padding: 20px 0; border-top: 1px solid var(--border); display: flex; gap: 18px; }
.evidence__item:last-child { border-bottom: 1px solid var(--border); }
.evidence__num { font-family: var(--font-head); font-size: 1rem; color: var(--accent); min-width: 22px; }
.evidence__item h3 { margin: 0 0 7px; font-size: 1rem; font-weight: 600; }
.evidence__item p { margin: 0; font-size: 0.92rem; line-height: 1.6; color: var(--text-mut); }
.evidence__item a { border-bottom: 1px solid var(--border); }
.evidence__item a:hover { border-bottom-color: var(--accent); }

/* Principle (Mutterstockprinzip) */
.principles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(22px, 3vw, 40px);
  margin-top: clamp(30px, 3.6vw, 50px);
}
.principle { display: flex; flex-direction: column; gap: 12px; }
.principle__num { font-family: var(--font-head); font-size: 2.2rem; line-height: 1; color: var(--gold); }
.principle h3 { font-size: 1rem; font-weight: 600; }
.principle p { margin: 0; font-size: 0.9rem; line-height: 1.6; color: rgba(241, 239, 230, 0.74); }

.compare {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  background: rgba(241, 239, 230, 0.2);
  margin-top: clamp(38px, 4.6vw, 66px);
  border: 1px solid rgba(241, 239, 230, 0.2);
}
.compare__col { background: var(--forest-2); padding: clamp(22px, 2.6vw, 34px); }
.compare__col h3 {
  margin: 0 0 18px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(241, 239, 230, 0.62);
}
.compare__col--good h3 { color: var(--gold); }
.compare__col ul { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 11px; font-size: 0.93rem; line-height: 1.55; color: rgba(241, 239, 230, 0.78); }
.compare__col--good ul { color: inherit; }

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(28px, 4vw, 60px);
}
.testimonial, .team-event {
  display: flex;
  flex-direction: column;
  gap: 22px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}
.testimonial p { margin: 0; font-family: var(--font-head); font-style: italic; font-size: clamp(1.14rem, 1.5vw, 1.4rem); line-height: 1.42; color: #26382a; }
.testimonial__author { display: flex; align-items: center; gap: 15px; margin-top: auto; }
.testimonial__author img { width: 54px; height: 54px; object-fit: cover; border-radius: 50%; filter: grayscale(0.15); }
.testimonial__name { font-size: 0.91rem; font-weight: 600; }
.testimonial__role { margin-top: 3px; font-size: 0.79rem; color: var(--text-mut); }
.team-event { gap: 16px; }
.team-event__tag { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); }
.team-event p { margin: 0; font-size: 0.94rem; line-height: 1.62; color: var(--text-dim); }
.team-event .link { margin-top: auto; align-self: flex-start; }

/* FAQ */
.faq-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: clamp(28px, 4vw, 64px);
}
.faq-intro h2 { font-size: clamp(1.9rem, 3vw, 2.7rem); line-height: 1.06; letter-spacing: -0.018em; max-width: 18ch; }
.faq-intro p { margin: 20px 0 0; font-size: 0.95rem; line-height: 1.64; color: var(--text-mut); max-width: 36ch; }
.faq-intro a { border-bottom: 1px solid var(--border); }
.faq-intro a:hover { border-bottom-color: var(--accent); }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid var(--border); }
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-item__q {
  width: 100%;
  cursor: pointer;
  border: 0;
  background: none;
  padding: 19px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  font-family: var(--font-body);
  color: var(--text);
}
.faq-item__q:hover { color: var(--accent); }
.faq-item__sign { font-family: var(--font-head); font-size: 1.3rem; color: var(--accent); }
.faq-item__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.25s ease;
}
.faq-item__a p { margin: 0; padding: 0 0 20px; max-width: 56ch; font-size: 0.94rem; line-height: 1.65; color: var(--text-dim); }
.faq-item.is-open .faq-item__a { max-height: 400px; }

/* Contact (Anfrage) */
.contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(32px, 4.5vw, 72px);
  align-items: start;
}
.contact__info h2 { max-width: 19ch; }
.contact__info p { margin: 22px 0 0; font-size: 1rem; line-height: 1.66; color: rgba(236, 234, 218, 0.78); max-width: 44ch; }
.contact__checks { display: flex; flex-direction: column; gap: 0; margin-top: clamp(26px, 3vw, 38px); }
.contact__check {
  display: flex;
  gap: 14px;
  padding: 15px 0;
  border-top: 1px solid rgba(236, 234, 218, 0.18);
  font-size: 0.93rem;
  color: rgba(236, 234, 218, 0.82);
}
.contact__check:last-child { border-bottom: 1px solid rgba(236, 234, 218, 0.18); }
.contact__check span { color: var(--gold); }
.contact__links { display: flex; flex-wrap: wrap; gap: 12px 26px; margin-top: 26px; font-size: 0.9rem; }
.contact__links a { color: var(--cream); border-bottom: 1px solid rgba(236, 234, 218, 0.32); }
.contact__links a:hover { color: var(--gold); border-bottom-color: var(--gold); }

.contact-form-panel { background: var(--bg); color: var(--ink); padding: clamp(24px, 3vw, 40px); border: 1px solid rgba(236, 234, 218, 0.2); }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-mut); }
.field input, .field select {
  border: 1px solid rgba(22, 33, 26, 0.28);
  background: var(--panel);
  padding: 14px 15px;
  font-size: 0.96rem;
  font-family: var(--font-body);
  color: var(--text);
}
.field input:focus, .field select:focus { outline: 2px solid var(--accent); outline-offset: 1px; border-color: var(--accent); }
.form-hint { margin: 0; font-size: 0.78rem; line-height: 1.55; color: var(--text-mut-2); }
.form-status {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-mut);
  padding: 12px 14px;
  border: 1px solid var(--border);
  background: var(--bg-2);
  display: none;
}
.form-status.is-visible { display: block; }
.form-status.is-error { color: #7a2b1f; border-color: rgba(122, 43, 31, 0.4); background: rgba(122, 43, 31, 0.08); }

.form-success { display: none; flex-direction: column; gap: 16px; min-height: 340px; justify-content: center; }
.form-success.is-visible { display: flex; }
.form-success__title { font-family: var(--font-head); font-size: 2rem; line-height: 1.1; color: #26382a; }
.form-success p { margin: 0; font-size: 0.96rem; line-height: 1.65; color: var(--text-dim); }
.form-success p.form-success__hint { font-size: 0.85rem; color: var(--text-mut-2); }
.form-success__reset {
  align-self: flex-start;
  margin-top: 8px;
  cursor: pointer;
  border: 0;
  background: none;
  padding: 0 0 6px;
  border-bottom: 1px solid rgba(22, 33, 26, 0.3);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-family: var(--font-body);
  color: var(--text);
}
.form-success__reset:hover { color: var(--accent); }

.contact-form.is-hidden, .contact-form-panel .form-success:not(.is-visible) { display: none; }

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(236, 234, 218, 0.7);
  border-top: 1px solid rgba(236, 234, 218, 0.16);
  padding: 26px 0 34px;
}
.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}
.site-footer__links { display: flex; flex-wrap: wrap; gap: 20px; }
.site-footer__links a { color: rgba(236, 234, 218, 0.7); }
.site-footer__links a:hover { color: var(--gold); }

/* Sticky bottom bar */
.sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  background: rgba(27, 42, 31, 0.97);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(236, 234, 218, 0.2);
  transform: translateY(100%);
  transition: transform 0.25s ease;
}
.sticky-bar.is-visible { transform: translateY(0); }
.sticky-bar__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 12px clamp(14px, 4vw, 48px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.sticky-bar__text { font-size: 0.88rem; line-height: 1.4; color: rgba(241, 239, 230, 0.9); }
.sticky-bar__text span { color: var(--gold); }
.sticky-bar__actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.sticky-bar__call { font-size: 0.84rem; color: rgba(241, 239, 230, 0.85); border-bottom: 1px solid rgba(241, 239, 230, 0.3); }
.sticky-bar__call:hover { color: var(--gold); border-bottom-color: var(--gold); }

/* Legal pages */
.legal { max-width: 68ch; line-height: 1.7; padding: clamp(48px, 6vw, 80px) 0 clamp(64px, 8vw, 100px); }
.legal h1 { font-size: clamp(2rem, 3.4vw, 2.6rem); margin-bottom: 8px; }
.legal .eyebrow--label { margin-bottom: 4px; }
.legal h2 { font-family: var(--font-body); font-weight: 700; font-size: 1.2rem; margin: 2em 0 0.6em; color: var(--text); }
.legal h3 { font-family: var(--font-body); font-weight: 700; font-size: 1.02rem; margin: 1.6em 0 0.5em; color: var(--text); }
.legal h4, .legal h5 { font-family: var(--font-body); font-weight: 600; font-size: 0.96rem; margin: 1.2em 0 0.4em; color: var(--text); }
.legal p, .legal li { font-size: 0.96rem; color: var(--text-dim); }
.legal a { text-decoration: underline; }
.legal ul, .legal ol { padding-left: 1.4em; }

/* Responsive */
@media (max-width: 640px) {
  .nav__inner { min-height: 64px; }
  .brand__tag { display: none; }
}
