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

:root {
  --gruen:    #4a7c4e;
  --gruen-h:  #3a6340;
  --gruen-l:  #e8f2e9;
  --braun:    #6b4c3b;
  --erde:     #c8882a;
  --creme:    #faf7f0;
  --creme-d:  #f0ebe0;
  --text:     #2c2c2c;
  --text-m:   #555;
  --text-l:   #888;
  --weiss:    #ffffff;
  --shadow:   0 4px 24px rgba(0,0,0,.12);
  --r:        6px;
  --section:  5rem 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Georgia', serif;
  background: var(--creme);
  color: var(--text);
  line-height: 1.7;
  font-size: 17px;
}

.container { max-width: 960px; margin: 0 auto; padding: 0 1.5rem; }
.container--wide { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }

h1, h2, h3 { font-family: 'Georgia', serif; font-weight: normal; line-height: 1.25; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.2rem; }

p { margin-bottom: 1rem; color: var(--text-m); }
a { color: var(--gruen); text-decoration: none; }
a:hover { color: var(--gruen-h); }

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

.eyebrow {
  display: inline-block;
  font-family: sans-serif;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gruen);
  margin-bottom: .75rem;
}

.sep {
  width: 48px; height: 3px;
  background: var(--erde);
  margin: 1rem 0 1.5rem;
  border-radius: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  background: var(--gruen);
  color: var(--weiss);
  border: none;
  border-radius: var(--r);
  font-size: .95rem;
  font-family: sans-serif;
  cursor: pointer;
  transition: background .2s, transform .1s;
  text-decoration: none;
}
.btn:hover { background: var(--gruen-h); color: var(--weiss); transform: translateY(-1px); }
.btn--outline {
  background: transparent;
  border: 2px solid var(--gruen);
  color: var(--gruen);
}
.btn--outline:hover { background: var(--gruen-l); }
.btn--wa {
  background: #25D366;
}
.btn--wa:hover { background: #1ebe5d; }

.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

/* ── NAV ─────────────────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,247,240,.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(74,124,78,.15);
  padding: .85rem 0;
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 960px; margin: 0 auto; padding: 0 1.5rem;
}
.nav__logo {
  font-family: Georgia, serif;
  font-size: 1.1rem;
  color: var(--braun);
  font-weight: normal;
}
.nav__logo span { color: var(--gruen); }
.nav__links {
  display: flex; gap: 1.75rem; list-style: none;
}
.nav__links a {
  font-family: sans-serif; font-size: .85rem;
  color: var(--text-m); letter-spacing: .04em;
}
.nav__links a:hover { color: var(--gruen); }

/* ── HERO ────────────────────────────────────────────────────── */
#hero {
  min-height: 88vh;
  display: flex; align-items: center;
  background: linear-gradient(135deg, #2c3e2d 0%, #4a7c4e 100%);
  position: relative; overflow: hidden;
}
.hero__bg-img {
  position: absolute; inset: 0;
  background: url('images/stefan-natur.jpg') center/cover no-repeat;
  opacity: .22;
}
.hero__inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center;
  max-width: 960px; margin: 0 auto; padding: 6rem 1.5rem 5rem;
}
.hero__text .eyebrow { color: rgba(255,255,255,.6); }
.hero__h1 { color: #fff; margin-bottom: 1.25rem; }
.hero__h1 em { color: #a8d4aa; font-style: normal; }
.hero__sub { color: rgba(255,255,255,.75); font-size: 1.1rem; margin-bottom: 2rem; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__img-wrap {
  position: relative;
}
.hero__img-wrap img {
  border-radius: 12px;
  box-shadow: 0 16px 60px rgba(0,0,0,.45);
  width: 100%; object-fit: cover; max-height: 480px;
}
.hero__badge {
  position: absolute; bottom: -16px; left: 50%; transform: translateX(-50%);
  background: var(--erde); color: #fff;
  font-family: sans-serif; font-size: .78rem; letter-spacing: .06em;
  padding: .5rem 1.25rem; border-radius: 99px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
}

/* ── ÜBER MICH ───────────────────────────────────────────────── */
#ueber { padding: var(--section); background: var(--creme); }
.ueber__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.ueber__img {
  border-radius: 10px;
  box-shadow: var(--shadow);
  width: 100%; object-fit: cover; max-height: 420px;
}
.ueber__bahn {
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--gruen-l); color: var(--gruen);
  font-family: sans-serif; font-size: .82rem; font-weight: 600;
  padding: .45rem 1rem; border-radius: 99px; margin-top: 1.25rem;
}

/* ── LEISTUNGEN ──────────────────────────────────────────────── */
#leistungen { padding: var(--section); background: var(--creme-d); }
#leistungen > .container > h2 { text-align: center; margin-bottom: .5rem; }
#leistungen > .container > .eyebrow { display: block; text-align: center; }
.leistungen__grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.leistungs-card {
  background: var(--weiss); border-radius: var(--r);
  padding: 1.75rem; box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.leistungs-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,.15); }
.leistungs-card__icon { font-size: 2.2rem; margin-bottom: .85rem; }
.leistungs-card h3 { color: var(--braun); margin-bottom: .5rem; }
.leistungs-card p { font-size: .92rem; margin: 0; }

/* ── TIER-PATEN ──────────────────────────────────────────────── */
#tierpaten {
  padding: var(--section);
  background: linear-gradient(135deg, var(--gruen) 0%, #2c3e2d 100%);
  color: #fff;
}
.tierpaten__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.tierpaten__text .eyebrow { color: rgba(255,255,255,.6); }
.tierpaten__text h2 { color: #fff; margin-bottom: 1rem; }
.tierpaten__text p { color: rgba(255,255,255,.8); }
.tierpaten__img {
  border-radius: 10px;
  box-shadow: 0 12px 48px rgba(0,0,0,.4);
  width: 100%; object-fit: cover; max-height: 400px;
}
.paten-features {
  list-style: none; margin: 1.25rem 0 2rem;
}
.paten-features li {
  display: flex; align-items: flex-start; gap: .75rem;
  color: rgba(255,255,255,.85); font-size: .95rem; margin-bottom: .6rem;
}
.paten-features li::before {
  content: '✓';
  color: #a8d4aa; font-weight: bold; flex-shrink: 0; margin-top: .1rem;
}
.paten-tiere {
  display: flex; gap: .75rem; flex-wrap: wrap; margin: 1.25rem 0;
}
.tier-badge {
  background: rgba(255,255,255,.15); color: #fff;
  font-family: sans-serif; font-size: .8rem; letter-spacing: .04em;
  padding: .35rem .9rem; border-radius: 99px;
  border: 1px solid rgba(255,255,255,.25);
}

/* ── FOTOS ───────────────────────────────────────────────────── */
#fotos { padding: var(--section); background: var(--creme); }
#fotos h2 { text-align: center; margin-bottom: 2.5rem; }
.fotos__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.fotos__item img {
  width: 100%; height: 240px; object-fit: cover;
  border-radius: var(--r);
  box-shadow: var(--shadow);
  transition: transform .3s;
}
.fotos__item img:hover { transform: scale(1.02); }

/* ── KONTAKT ─────────────────────────────────────────────────── */
#kontakt { padding: var(--section); background: var(--creme-d); }
.kontakt__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.kontakt__info h2 { margin-bottom: .5rem; }
.kontakt__info p { margin-bottom: 1.5rem; }
.kontakt__actions { display: flex; flex-direction: column; gap: .85rem; margin-top: 1.5rem; }

.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block; font-family: sans-serif; font-size: .8rem;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--text-l); margin-bottom: .4rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: .75rem 1rem;
  border: 1.5px solid #ddd; border-radius: var(--r);
  font-family: Georgia, serif; font-size: .95rem;
  background: #fff; color: var(--text);
  transition: border-color .2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gruen); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form__submit {
  width: 100%; padding: .9rem;
  background: var(--gruen); color: #fff; border: none;
  border-radius: var(--r); font-size: 1rem;
  font-family: sans-serif; cursor: pointer; transition: background .2s;
}
.form__submit:hover { background: var(--gruen-h); }
.form__danke {
  display: none; text-align: center;
  padding: 2rem; color: var(--gruen); font-size: 1.1rem;
}

/* ── FOOTER ──────────────────────────────────────────────────── */
footer {
  background: #2c3e2d; color: rgba(255,255,255,.55);
  font-family: sans-serif; font-size: .82rem;
  padding: 2rem 0; text-align: center;
}
footer a { color: rgba(255,255,255,.6); }
footer a:hover { color: #fff; }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero__inner,
  .ueber__grid,
  .tierpaten__inner,
  .kontakt__grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero__inner { padding-top: 4rem; padding-bottom: 3rem; }
  .hero__img-wrap { order: -1; }
  .hero__badge { font-size: .7rem; }
  .fotos__grid { grid-template-columns: repeat(2, 1fr); }
  .nav__links { display: none; }
}
@media (max-width: 480px) {
  .fotos__grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
}
