/* ── Reset & Basis ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --grn-dk: #1e3d10;
  --grn-md: #2d5a16;
  --grn-lt: #4a7c2f;
  --sage:   #7aaa64;
  --gold:   #c8a055;
  --cream:  #f7f3ec;
  --beige:  #ede5d5;
  --brown:  #2d1f14;
  --text:   #252525;
  --text-lt:#5f5f5f;
  --white:  #fff;
  --shad:   0 2px 16px rgba(0,0,0,.09);
}

html { scroll-behavior: smooth; }

img { max-width: 100%; height: auto; }

.skip-link {
  position: absolute; left: -999px; top: auto;
  background: var(--gold); color: var(--brown);
  padding: .75rem 1.25rem; z-index: 200;
  font-size: .9rem; font-weight: 500;
}
.skip-link:focus {
  left: 1rem; top: 1rem;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  background: var(--cream);
}

h1, h2, h3, h4 {
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.3;
  color: var(--grn-dk);
}

h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2.1rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--grn-md); text-decoration: none; transition: color .2s; }
a:hover { color: var(--grn-dk); }
a:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: 5rem 0; }

/* ── HEADER ────────────────────────────────────────────────── */
header {
  background: var(--grn-dk);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
}

nav {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1100px; margin: 0 auto; padding: .9rem 1.5rem;
}

.brand { color: var(--white); line-height: 1.25; }
.brand strong { font-family: Georgia, serif; font-size: 1.05rem; display: block; }
.brand span { font-size: .75rem; color: var(--sage); letter-spacing: .06em; font-weight: 300; }
.brand:hover { color: var(--white); }

.nav-links { display: flex; list-style: none; gap: 2rem; }
.nav-links a {
  color: var(--sage); font-size: .875rem; letter-spacing: .03em;
  padding-bottom: 2px; border-bottom: 1px solid transparent;
  transition: color .2s, border-color .2s;
}
.nav-links a:hover { color: var(--white); border-bottom-color: var(--gold); }

.nav-toggle {
  display: none; background: none; border: none;
  cursor: pointer; flex-direction: column; gap: 5px; padding: .4rem;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--white); transition: .3s; }

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  background:
    linear-gradient(160deg, rgba(15,32,7,.87) 0%, rgba(22,45,13,.82) 45%, rgba(30,62,22,.78) 100%),
    url("images/hero-wald.jpg") center 35% / cover no-repeat;
  color: var(--white); text-align: center;
  padding: 7rem 1.5rem 6rem;
}

.hero-tree { width: 80px; height: 96px; margin: 0 auto 2rem; color: rgba(255,255,255,.55); }

.hero h1 { color: var(--white); margin-bottom: .75rem; }
.hero .tagline {
  font-family: Georgia, serif; font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--sage); margin-bottom: 2rem;
}
.hero > p {
  max-width: 600px; margin: 0 auto 2.5rem;
  color: rgba(255,255,255,.82); font-size: 1.05rem;
}

.btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-block; padding: .8rem 1.8rem; font-size: .9rem;
  letter-spacing: .05em; font-weight: 500; transition: all .2s;
  border: none; cursor: pointer;
}
.btn-gold { background: var(--gold); color: var(--brown); }
.btn-gold:hover { background: #d4a85e; color: var(--brown); }
.btn-ghost { border: 1px solid rgba(255,255,255,.35); color: rgba(255,255,255,.8); }
.btn-ghost:hover { border-color: var(--white); color: var(--white); }

/* ── ABSCHNITTSKÖPFE ───────────────────────────────────────── */
.sec-head { text-align: center; margin-bottom: 3.5rem; }
.sec-head p { color: var(--text-lt); max-width: 580px; margin: .5rem auto 0; font-size: 1.05rem; }
.gold-bar { width: 48px; height: 2px; background: var(--gold); margin: 1rem auto; }

/* ── PHILOSOPHIE ───────────────────────────────────────────── */
.philosophy { background: var(--white); }
.phil-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.phil-text p { color: var(--text-lt); }
.phil-text .gold-bar { margin: 1rem 0 1.5rem; }
.phil-art { display: flex; justify-content: center; align-items: center; }
.forest-svg { width: 210px; height: 250px; color: var(--grn-lt); }
.phil-photo {
  width: 100%; max-width: 380px; aspect-ratio: 2 / 3; object-fit: cover;
  border-radius: 3px; box-shadow: var(--shad);
  border: 6px solid var(--white); outline: 1px solid var(--beige);
}

/* ── ANGEBOTE ──────────────────────────────────────────────── */
.offers { background: var(--cream); }
.cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.75rem; }
.card {
  background: var(--white); padding: 2.5rem 2rem;
  border-top: 3px solid var(--grn-lt); box-shadow: var(--shad);
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.12); }
.card-ico { width: 44px; height: 44px; color: var(--grn-md); margin-bottom: 1.25rem; }
.card h3 { margin-bottom: .75rem; }
.card p { color: var(--text-lt); font-size: .95rem; }

/* ── WALDFRIEDHOF ──────────────────────────────────────────── */
.forest-sec { background: var(--grn-dk); }
.forest-sec h2 { color: var(--white); }
.forest-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.forest-intro p { color: rgba(255,255,255,.82); }
.forest-intro .gold-bar { margin: 1rem 0 1.5rem; }
.forest-photo {
  width: 100%; aspect-ratio: 3 / 2; object-fit: cover;
  border-radius: 3px; margin-top: 1.75rem;
  box-shadow: 0 4px 24px rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.15);
}

.detail-list { display: grid; gap: 1.25rem; }
.detail {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.25rem; background: rgba(255,255,255,.05);
}
.detail-ico { flex-shrink: 0; width: 30px; height: 30px; color: var(--gold); margin-top: .1rem; }
.detail h4 {
  font-family: 'Segoe UI', system-ui, sans-serif;
  font-size: .78rem; text-transform: uppercase; letter-spacing: .09em;
  color: var(--sage); margin-bottom: .25rem;
}
.detail p { color: rgba(255,255,255,.72); font-size: .9rem; margin: 0; }

/* ── KONTAKT ───────────────────────────────────────────────── */
.contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.clist { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 1.5rem; }
.citem { display: flex; gap: 1rem; }
.citem-ico { flex-shrink: 0; width: 20px; height: 20px; color: var(--grn-md); margin-top: .3rem; }
.citem strong { display: block; color: var(--text); margin-bottom: .1rem; font-size: .9rem; text-transform: uppercase; letter-spacing: .05em; }
.citem p { margin: 0; color: var(--text-lt); font-size: .95rem; }
.citem a { color: var(--grn-md); }
.citem a:hover { color: var(--grn-dk); }

.notice {
  background: var(--cream); padding: 2rem;
  border-left: 3px solid var(--gold);
}
.notice h3 { margin-bottom: 1rem; }
.notice p { color: var(--text-lt); font-size: .95rem; }

/* ── FOOTER ────────────────────────────────────────────────── */
footer { background: var(--brown); color: rgba(255,255,255,.6); padding: 1.75rem 0; }
.foot-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  max-width: 1100px; margin: 0 auto; padding: 0 1.5rem;
}
.foot-links { display: flex; gap: 1.5rem; }
.foot-links a { color: rgba(255,255,255,.55); font-size: .85rem; transition: color .2s; }
.foot-links a:hover { color: var(--white); }
footer p { font-size: .85rem; margin: 0; }

/* ── INNENSEITEN (Impressum / Datenschutz) ─────────────────── */
.page-hero {
  background: var(--grn-dk); color: var(--white);
  padding: 4rem 1.5rem 3rem; text-align: center;
}
.page-hero h1 { color: var(--white); }
.page-hero p { color: var(--sage); margin-top: .5rem; }

.page-hero-icon {
  width: 52px; height: 60px;
  margin: 0 auto 1.75rem;
  display: block;
  color: rgba(255,255,255,.48);
}

.treeline-divider {
  background: var(--white);
  line-height: 0;
  overflow: hidden;
}
.treeline-divider svg {
  display: block;
  width: 100%;
  height: 80px;
}
@media (max-width: 768px) {
  .treeline-divider svg { height: 50px; }
}

.prose { background: var(--white); padding: 4rem 0; }
.prose-inner { max-width: 780px; margin: 0 auto; padding: 0 1.5rem; }

.prose h2 {
  margin-top: 2.5rem; padding-top: 2.5rem;
  border-top: 1px solid var(--beige); margin-bottom: 1rem;
}
.prose h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.prose h3 { margin-top: 1.5rem; margin-bottom: .5rem; }
.prose p { color: var(--text-lt); font-size: .975rem; }
.prose ul { padding-left: 1.5rem; color: var(--text-lt); font-size: .975rem; margin-bottom: 1rem; }
.prose li { margin-bottom: .4rem; }
.prose address { font-style: normal; color: var(--text-lt); line-height: 1.9; }

.ph {
  display: inline-block; background: #fff8e1;
  border: 1px dashed var(--gold); padding: .05em .4em;
  border-radius: 2px; font-style: italic; color: #7a5c00; font-size: .9em;
}

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 768px) {
  section { padding: 3.5rem 0; }

  .nav-toggle { display: flex; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--grn-dk); flex-direction: column;
    padding: 1.25rem 1.5rem 2rem; gap: 1.25rem;
    border-top: 1px solid rgba(255,255,255,.1);
  }
  .nav-links.open { display: flex; }
  header { position: relative; }

  .phil-grid,
  .forest-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .phil-art { display: none; }
  .cards { grid-template-columns: 1fr; }
  .hero { padding: 4rem 1.5rem 3.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}
