:root {
  --green: #2f6f25;
  --green-dark: #183d22;
  --green-soft: #ecf4e7;
  --cream: #fbfaf4;
  --sand: #f3f0e4;
  --gold: #d8c894;
  --text: #172219;
  --muted: #536153;
  --white: #fff;
  --shadow: 0 20px 55px rgba(33, 56, 33, .13);
  --radius: 28px;
  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--green-dark);
  color: var(--white);
  padding: .75rem 1rem;
  z-index: 100;
  border-radius: 999px;
}
.skip-link:focus { top: 1rem; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}
.narrow { max-width: 920px; }
.center { text-align: center; }
.section { padding: 78px 0; position: relative; }
.compact { padding-top: 20px; }
.section-light { background: var(--cream); }

h1, h2, h3 {
  margin: 0 0 .7em;
  line-height: 1.05;
  color: var(--green-dark);
  letter-spacing: -.035em;
}
h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 7vw, 6.8rem);
  font-weight: 700;
}
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.5vw, 3.45rem);
}
h2 span { color: var(--green); }
h3 { font-size: clamp(1.4rem, 2vw, 2rem); }
p { margin: 0 0 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(251,250,244,.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(47,111,37,.09);
}
.header-inner {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 850;
  letter-spacing: -.03em;
  color: var(--green);
}
.brand-text span { color: #20251f; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--green);
  flex: 0 0 auto;
}
.brand-mark svg { width: 100%; height: 100%; }
.brand-mark img { width: 100%; height: 100%; object-fit: contain; display: block; }

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 46px);
  font-weight: 650;
}
.site-nav a {
  color: #1d271d;
  transition: color .2s ease;
}
.site-nav a:hover { color: var(--green); }
.nav-toggle { display: none; }

.hero {
  min-height: 720px;
  overflow: hidden;
  display: grid;
  align-items: center;
}
.hero::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(216,200,148,.55);
  border-radius: 50%;
  left: -210px;
  top: 120px;
  box-shadow: 0 0 0 45px rgba(216,200,148,.13), 0 0 0 92px rgba(216,200,148,.08);
  pointer-events: none;
}
.hero-image {
  position: absolute;
  inset: 0 0 0 40%;
  background-image: linear-gradient(90deg, var(--cream) 0%, rgba(251,250,244,.98) 10%, rgba(251,250,244,.62) 30%, rgba(251,250,244,.18) 50%, rgba(251,250,244,0) 68%), url('../img/weggabelung.jpg');
  background-size: cover;
  background-position: center;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 520px) 1fr;
}
.hero-content {
  padding: 68px 0 76px;
}
.eyebrow {
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .82rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.hero-lead { font-size: 1.17rem; }
.hero-content p:not(.eyebrow) { font-size: clamp(1rem, 1.35vw, 1.18rem); }
.hero-actions { margin: 30px 0 22px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  padding: 15px 26px;
  border-radius: 14px;
  border: 0;
  cursor: pointer;
  font-weight: 850;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, #3b842c, #255c1d);
  box-shadow: 0 14px 24px rgba(47,111,37,.24);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 30px rgba(47,111,37,.3); }
.btn-full { width: 100%; }

.contact-list {
  display: grid;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--muted);
}
.contact-list a { color: var(--text); }
.contact-list a:hover { color: var(--green); }
.contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}
.mini-icon {
  width: 26px;
  height: 26px;
  border: 1px solid rgba(47,111,37,.35);
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--green);
  font-size: .88rem;
}

.benefit-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  align-items: center;
  gap: 34px;
  margin-top: 34px;
}
.benefits {
  display: grid;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 1.1rem;
}
.benefits li {
  display: flex;
  align-items: center;
  gap: 18px;
}
.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(47,111,37,.45);
  color: var(--green);
  font-size: 1.35rem;
  font-weight: 800;
  flex: 0 0 auto;
  background: rgba(255,255,255,.7);
}
.path-graphic {
  opacity: .9;
  width: min(100%, 280px);
  justify-self: center;
  align-self: center;
}
.path-graphic img {
  width: 100%;
  height: auto;
  display: block;
}
.strong-line {
  color: var(--green);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 850;
  margin-top: 38px;
  font-family: Georgia, "Times New Roman", serif;
}

.walk-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1030px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #f6f5e9, #fffdf7);
  box-shadow: var(--shadow);
}
.walk-illustration svg { width: min(210px, 100%); }
.walk-card p { max-width: 570px; }

.about-grid {
  display: grid;
  grid-template-columns: minmax(230px, 360px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(38px, 7vw, 92px);
  max-width: 940px;
}
.portrait-wrap {
  position: relative;
  aspect-ratio: 1;
  border-radius: 50%;
  padding: 12px;
  border: 1px solid rgba(216,200,148,.9);
  box-shadow: 0 0 0 22px rgba(216,200,148,.14);
  overflow: hidden;
  background: #f7f4ea;
}

.portrait-wrap::before {
  content: "";
  position: absolute;
  inset: -26px;
  border-radius: 50%;
  border: 1px solid rgba(216,200,148,.45);
  clip-path: inset(0 0 40% 0);
  pointer-events: none;
}

.portrait-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
  border-radius: 50%;
  display: block;
  transform: scale(1.14);
  transform-origin: center center;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 22px;
  display: grid;
  gap: 12px;
}
.check-list li {
  position: relative;
  padding-left: 42px;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--green);
  display: grid;
  place-items: center;
  color: var(--green);
  font-weight: 900;
}
.quote {
  color: var(--green);
  font-weight: 850;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-family: Georgia, "Times New Roman", serif;
}

.cta-section {
  padding: 86px 0;
  background:
    linear-gradient(90deg, rgba(251,250,244,.97), rgba(251,250,244,.88)),
    url('../img/weggabelung.jpg') center/cover;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  left: -70px;
  bottom: 40px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle at 70% 30%, rgba(47,111,37,.23), transparent 28%), radial-gradient(circle at 40% 60%, rgba(47,111,37,.18), transparent 30%);
  border-radius: 50%;
  opacity: .8;
}
.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 500px);
  gap: clamp(30px, 6vw, 72px);
  align-items: center;
}
.cta-copy .price {
  color: var(--green-dark);
  font-weight: 850;
  font-size: 1.15rem;
}
.cta-copy .btn { margin: 20px 0 24px; }
.contact-list.dark a { color: var(--green-dark); }

.contact-form {
  background: rgba(255,255,255,.93);
  border: 1px solid rgba(47,111,37,.13);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: clamp(24px, 4vw, 42px);
}
.contact-form h3 {
  color: var(--green);
  margin-bottom: .25rem;
  font-family: Georgia, "Times New Roman", serif;
}
.form-note { color: var(--muted); font-size: .95rem; }
.field { margin: 16px 0; }
.field label {
  display: block;
  font-weight: 750;
  margin-bottom: 7px;
  color: var(--green-dark);
}
.two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
input, textarea {
  width: 100%;
  border: 1px solid rgba(47,111,37,.22);
  border-radius: 12px;
  padding: 13px 14px;
  background: #fffef9;
  color: var(--text);
  outline: none;
  transition: border .2s ease, box-shadow .2s ease;
}
textarea { resize: vertical; min-height: 132px; }
input:focus, textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(47,111,37,.12);
}
.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 18px 0 20px;
  color: var(--muted);
  font-size: .94rem;
}
.checkbox input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex: 0 0 auto;
}
.honeypot { display: none; }
.form-message {
  margin: 14px 0 0;
  min-height: 1.5em;
  color: var(--green-dark);
  font-weight: 700;
}
.form-message.error { color: #9a2b22; }

.site-footer {
  background: linear-gradient(135deg, #173b22, #2d6e25);
  color: rgba(255,255,255,.92);
  padding: 26px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: .95rem;
}
.footer-inner p { margin: 0; }
.footer-links a { opacity: .92; }
.footer-links a:hover { opacity: 1; text-decoration: underline; }

.reveal {
  opacity: 1;
  transform: none;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(47,111,37,.18);
    background: transparent;
    border-radius: 12px;
    color: var(--green-dark);
  }
  .nav-toggle span:not(.sr-only) {
    width: 22px;
    height: 2px;
    background: currentColor;
  }
  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(255,255,255,.98);
    border: 1px solid rgba(47,111,37,.12);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 20px;
  }
  .site-nav.open { display: flex; }
  .hero { min-height: auto; padding-top: 24px; }
  .hero-image {
    position: relative;
    inset: auto;
    min-height: 320px;
    order: -1;
    background-image: linear-gradient(0deg, rgba(251,250,244,.78), rgba(251,250,244,0)), url('../img/weggabelung.jpg');
  }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-content { padding: 42px 0 54px; }
  .benefit-layout, .walk-card, .about-grid, .cta-grid { grid-template-columns: 1fr; }
  .benefit-layout { gap: 24px; }
  .path-graphic {
    display: block;
    order: -1;
    width: min(240px, 72vw);
    margin: 0 auto 8px;
  }
  .walk-card { gap: 18px; }
  .walk-illustration { max-width: 180px; }
  .about-grid { text-align: left; }
  .portrait-wrap { width: min(300px, 80vw); margin: 0 auto; }
  .footer-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, var(--container)); }
  .header-inner { height: 72px; }
  .brand-mark { width: 44px; height: 44px; }
  .brand { font-size: 1.25rem; gap: 8px; }
  .brand-text { line-height: 1; }
  .section { padding: 56px 0; }
  .compact { padding-top: 0; }
  h1 { font-size: 3.1rem; }
  .btn { width: 100%; padding-inline: 18px; }
  .two-cols { grid-template-columns: 1fr; }
  .walk-card, .contact-form { border-radius: 20px; }
  .benefits li { align-items: flex-start; }
}


/* Mobile Stabilisierung */
@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .header-inner {
    height: 72px;
  }

  .brand {
    gap: 10px;
    font-size: 1.18rem;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .site-nav {
    top: 68px;
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 3.5rem);
  }

  h2 {
    font-size: clamp(1.85rem, 8vw, 2.55rem);
  }

  .section {
    padding: 54px 0;
  }

  .hero::before {
    display: none;
  }

  .hero-image {
    min-height: 245px;
    margin-inline: -14px;
    border-radius: 0 0 28px 28px;
    background-position: center center;
  }

  .hero-content {
    padding: 34px 0 42px;
  }

  .hero-lead,
  .hero-content p:not(.eyebrow) {
    font-size: 1rem;
  }

  .btn {
    width: 100%;
    min-height: 54px;
    padding-inline: 18px;
  }

  .benefits {
    gap: 14px;
    font-size: 1rem;
  }

  .benefit-layout {
    margin-top: 24px;
  }

  .path-graphic {
    display: block;
    order: -1;
    width: min(220px, 70vw);
    margin: 0 auto 10px;
  }

  .benefits li {
    gap: 12px;
  }

  .icon-circle {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .strong-line {
    margin-top: 28px;
  }

  .walk-card {
    padding: 26px 20px;
    border-radius: 22px;
  }

  .portrait-wrap {
    width: min(260px, 78vw);
  }

  .two-cols {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 24px 18px;
    border-radius: 20px;
  }

  .cta-section {
    padding: 62px 0;
  }

  .footer-inner {
    font-size: .88rem;
  }
}
