/* Entwurf A — Handwerkstradition
   Waldgrün (#2D4A3E) + Eiche (#B08454), warmes Naturweiß,
   Serif-Überschriften, asymmetrisches Layout, vertikales Holzbalken-Motiv. */

:root {
  --wald: #2d4a3e;
  --wald-dunkel: #1f3528;
  --eiche: #b08454;
  --eiche-dunkel: #947048;
  --tinte: #2c2e2a;
  --grau: #5c6258;
  --grund: #f6f3ee;
  --karte: #fffdf8;
  --linie: #ddd6c9;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  padding-bottom: 6.5rem; /* Platz für Feedback-Leiste */
  font-family: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--tinte);
  background: var(--grund);
  line-height: 1.65;
}

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

h1, h2, h3, .marke-text {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--wald);
  line-height: 1.2;
}

/* Kopf */
.kopf {
  background: var(--wald);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
}

.kopf-innen {
  max-width: 70rem;
  margin: 0 auto;
  padding: 0.9rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

.marke {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

/* Vertikales Holzbalken-Motiv */
.marke-balken {
  display: inline-flex;
  align-items: flex-end;
  gap: 3px;
}
.marke-balken span {
  display: block;
  width: 5px;
  background: var(--eiche);
  border-radius: 1px;
}
.marke-balken span:nth-child(1) { height: 28px; }
.marke-balken span:nth-child(2) { height: 20px; opacity: 0.85; }
.marke-balken span:nth-child(3) { height: 14px; opacity: 0.7; }

.marke-text {
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.15;
  color: #fff;
}
.marke-text em { font-style: normal; font-weight: 400; color: var(--eiche); }
.marke-text small {
  display: block;
  font-family: -apple-system, "Segoe UI", sans-serif;
  font-weight: 400;
  font-size: 0.72rem;
  opacity: 0.75;
  letter-spacing: 0.04em;
}

.nav { display: flex; gap: 1.4rem; }
.nav a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  opacity: 0.9;
}
.nav a:hover, .nav a:focus { opacity: 1; text-decoration: underline; }

.nav-check { display: none; }
.nav-burger { display: none; }

/* Hero */
.hero {
  background: var(--grund);
  border-bottom: 1px solid var(--linie);
}

.hero-innen {
  max-width: 70rem;
  margin: 0 auto;
  padding: 4.5rem 1.25rem 4rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-family: -apple-system, "Segoe UI", sans-serif;
  font-size: 0.75rem;
  color: var(--eiche-dunkel);
  margin: 0 0 0.9rem;
  padding-left: 0.9rem;
  border-left: 4px solid var(--eiche);
}

.hero h1 {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  margin: 0 0 1.2rem;
}

.hero-lead {
  font-size: 1.08rem;
  color: var(--grau);
  max-width: 34rem;
  margin: 0 0 1.8rem;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 0.8rem; align-items: center; }

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
}

.btn-primaer { background: var(--wald); color: #fff; }
.btn-primaer:hover { background: var(--wald-dunkel); }

.btn-platzhalter {
  border: 1px dashed var(--grau);
  color: var(--grau);
  cursor: default;
}

.hero-bild { margin: 0; position: relative; }
.hero-bild img {
  border-radius: 6px;
  box-shadow: 0 18px 40px rgba(45, 74, 62, 0.18);
  width: 100%;
  object-fit: cover;
  max-height: 26rem;
}
.hero-bild figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--wald);
  color: #fff;
  font-size: 0.8rem;
  padding: 0.35rem 0.8rem;
  border-radius: 0 6px 0 6px;
}

/* Abschnitte */
.abschnitt {
  max-width: 70rem;
  margin: 0 auto;
  padding: 4rem 1.25rem;
}

.abschnitt h2 {
  font-size: 1.7rem;
  margin: 0 0 0.5rem;
  position: relative;
  padding-bottom: 0.7rem;
}
.abschnitt h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 46px;
  height: 4px;
  background: var(--eiche);
}

.abschnitt-lead { color: var(--grau); margin: 0.6rem 0 2rem; }

.karten {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1.4rem;
}

.karte {
  border: 1px solid var(--linie);
  border-left: 5px solid var(--eiche);
  border-radius: 4px;
  padding: 1.6rem 1.4rem;
  background: var(--karte);
}

.karte h3 { margin: 0 0 0.6rem; font-size: 1.15rem; }
.karte p { margin: 0; color: var(--grau); font-size: 0.97rem; }

/* Team */
.abschnitt-team {
  background: var(--karte);
  max-width: none;
  border-top: 1px solid var(--linie);
  border-bottom: 1px solid var(--linie);
}
.abschnitt-team > * { max-width: 70rem; margin-left: auto; margin-right: auto; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
  gap: 1.4rem;
}

.team-karte {
  margin: 0;
  background: var(--grund);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--linie);
}
.team-karte img {
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  object-position: top center;
}
.team-karte figcaption {
  padding: 0.8rem 1rem 1rem;
  display: flex;
  flex-direction: column;
}
.team-karte strong { font-family: Georgia, serif; font-size: 1rem; color: var(--wald); }
.team-karte span { color: var(--grau); font-size: 0.85rem; }

/* CTA */
.cta {
  background: var(--wald);
  color: #fff;
  border-top: 6px solid var(--wald-dunkel);
}
.cta-innen {
  max-width: 70rem;
  margin: 0 auto;
  padding: 3.5rem 1.25rem;
  text-align: center;
}
.cta h2 { margin: 0 0 0.6rem; font-size: 1.7rem; color: #fff; }
.cta p { margin: 0 0 1.6rem; opacity: 0.9; }
.cta-buttons { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; }
.btn-hell { background: #fff; color: var(--wald); }
.btn-platzhalter-hell {
  border: 1px dashed rgba(255, 255, 255, 0.65);
  color: rgba(255, 255, 255, 0.85);
  cursor: default;
}
.cta-zeiten { margin-top: 1.4rem; font-size: 0.9rem; opacity: 0.8; }

/* Express-Service */
.express {
  max-width: 70rem;
  margin: 2.5rem auto 0;
  padding: 1.2rem 1.4rem;
  border-left: 5px solid var(--eiche);
  background: var(--karte);
  color: var(--tinte);
  font-size: 0.97rem;
  border-radius: 0 6px 6px 0;
}
.express strong { display: block; margin-bottom: 0.2rem; color: var(--wald); }

/* Fuß */
.fuss {
  margin-top: 3rem;
  background: var(--wald-dunkel);
  color: rgba(255, 255, 255, 0.88);
}
.fuss-innen {
  max-width: 70rem;
  margin: 0 auto;
  padding: 2.8rem 1.25rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
  gap: 2rem;
}
.fuss h3 {
  margin: 0 0 0.8rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--eiche);
}
.fuss p { margin: 0 0 0.8rem; font-size: 0.95rem; }
.fuss a { color: #fff; }

/* Mobil */
@media (max-width: 50rem) {
  .hero-innen { grid-template-columns: 1fr; padding: 3rem 1.25rem; }
  .hero-bild { order: -1; max-width: 24rem; }

  .nav-burger {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 0.4rem;
  }
  .nav-burger span {
    display: block;
    width: 24px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--wald-dunkel);
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0;
  }
  .nav a { padding: 0.7rem 1.25rem; border-top: 1px solid rgba(255, 255, 255, 0.12); }
  .nav-check:checked ~ .nav { display: flex; }
}
