:root {
  --bg: #f7f4ef;
  --paper: #fffdf9;
  --ink: #15211f;
  --muted: #68716e;
  --line: rgba(21, 33, 31, .12);
  --accent: #9b6a3a;
  --accent-dark: #69441f;
  --forest: #173f36;
  --shadow: 0 24px 70px rgba(21, 33, 31, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(247, 244, 239, .86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--forest);
  color: white;
  font-weight: 800;
  letter-spacing: .03em;
}

.brand strong, .brand small { display: block; }
.brand strong { line-height: 1.1; }
.brand small { color: var(--muted); font-size: .78rem; margin-top: -2px; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 650;
  font-size: .95rem;
}

.main-nav a { color: rgba(21,33,31,.78); }
.main-nav a:hover { color: var(--accent-dark); }

.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: white !important;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  min-height: 82vh;
  display: grid;
  align-items: end;
  padding: clamp(80px, 12vw, 140px) clamp(20px, 5vw, 72px) 48px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(21,33,31,.86) 0%, rgba(21,33,31,.60) 42%, rgba(21,33,31,.05) 100%),
    url("hero-rural.png") center/cover;
  transform: scale(1.02);
}

.hero-content {
  position: relative;
  max-width: 900px;
  color: white;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
}

.hero .eyebrow { color: #e9c79d; }

h1, h2, h3 { line-height: 1.08; margin: 0; }
h1 {
  font-size: clamp(2.7rem, 7vw, 6.6rem);
  letter-spacing: -.06em;
  max-width: 980px;
}
h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: -.045em;
}
h3 { font-size: 1.35rem; letter-spacing: -.02em; }

.hero-text {
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  max-width: 660px;
  color: rgba(255,255,255,.86);
}

.hero-actions, .contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
}

.btn.primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 16px 34px rgba(105,68,31,.24);
}

.btn.primary:hover { background: var(--accent-dark); }
.btn.secondary {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.34);
  color: white;
}
.contact-card .btn.secondary {
  background: var(--accent);
  color: white;
  border-color: transparent;
  box-shadow: 0 16px 34px rgba(105,68,31,.18);
}

.contact-card .btn.secondary:hover,
.contact-card .btn.secondary:focus-visible {
  background: var(--accent-dark);
  box-shadow: 0 18px 38px rgba(105,68,31,.25);
}

.contact-card .btn.secondary:active,
.contact-card .btn.primary:active {
  transform: translateY(1px);
}

.split-content .btn.secondary {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}
.trust-row span {
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.88);
  font-size: .92rem;
}

.quick-contact {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: -34px clamp(20px, 5vw, 72px) 0;
  position: relative;
  z-index: 2;
  background: var(--paper);
  border-radius: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.quick-contact div {
  padding: 28px;
  border-right: 1px solid var(--line);
}
.quick-contact div:last-child { border-right: 0; }
.quick-contact span {
  display: block;
  color: var(--muted);
  font-weight: 700;
  font-size: .85rem;
  margin-bottom: 6px;
}
.quick-contact a, .quick-contact p {
  margin: 0;
  font-weight: 850;
  font-size: clamp(.94rem, 1.25vw, 1.08rem);
}

.quick-contact a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 50px;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  box-shadow: 0 16px 34px rgba(105,68,31,.18);
  transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
}

.quick-contact a:hover,
.quick-contact a:focus-visible {
  background: var(--accent-dark);
  box-shadow: 0 18px 38px rgba(105,68,31,.25);
}

.quick-contact a:active {
  transform: translateY(1px);
  box-shadow: 0 10px 24px rgba(105,68,31,.18);
}

.section, .split-section, .contact-section {
  padding: clamp(72px, 10vw, 130px) clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 880px;
  margin-bottom: 38px;
}
.section-heading p {
  font-size: 1.1rem;
  color: var(--muted);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  padding: 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(21,33,31,.06);
}

.card p { color: var(--muted); }
.icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  border-radius: 16px;
  background: rgba(155,106,58,.12);
  color: var(--accent-dark);
  font-weight: 900;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  background: var(--paper);
}

.split-image {
  min-height: 620px;
  border-radius: 34px;
  background: url("livingroom-family.png") center/cover;
  box-shadow: var(--shadow);
}

.split-content p { color: var(--muted); font-size: 1.08rem; }

.check-list {
  padding: 0;
  margin: 28px 0;
  list-style: none;
}
.check-list li {
  padding: 12px 0 12px 34px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-dark);
  font-weight: 900;
}

.muted {
  background:
    radial-gradient(circle at top right, rgba(155,106,58,.18), transparent 38%),
    var(--forest);
  color: white;
}
.muted .eyebrow { color: #e9c79d; }
.muted .section-heading p { color: rgba(255,255,255,.72); }

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.stats div {
  padding: 28px;
  border-radius: 24px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.13);
}
.stats strong {
  display: block;
  font-size: clamp(1.5rem, 2.8vw, 2.5rem);
  line-height: 1;
  letter-spacing: -.04em;
}
.stats span { color: rgba(255,255,255,.68); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.about-grid p, blockquote {
  margin: 0;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
}
.about-grid p { color: var(--muted); }
blockquote {
  padding: 30px;
  border-left: 5px solid var(--accent);
  background: var(--paper);
  border-radius: 0 26px 26px 0;
  font-weight: 800;
  letter-spacing: -.02em;
}

.contact-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 24px;
  background: linear-gradient(135deg, #eee5d8 0%, #f9f6f0 100%);
}

.contact-card, .contact-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: clamp(26px, 4vw, 42px);
  box-shadow: 0 20px 60px rgba(21,33,31,.08);
}
.contact-card p { color: var(--muted); }
.contact-form {
  display: grid;
  gap: 16px;
}
label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  background: #fff;
  font: inherit;
  color: var(--ink);
}
textarea { resize: vertical; }
.contact-form small { color: var(--muted); }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 42px clamp(20px, 5vw, 72px);
  background: var(--ink);
  color: white;
}
.site-footer p { margin: 6px 0; color: rgba(255,255,255,.68); }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 22px;
}
.footer-links a { color: rgba(255,255,255,.82); }

@media (max-width: 920px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    inset: 81px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 10px; }
  .quick-contact, .cards, .stats, .split-section, .about-grid, .contact-section {
    grid-template-columns: 1fr;
  }
  .quick-contact div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .quick-contact div:last-child { border-bottom: 0; }
  .split-image { min-height: 420px; }
  .site-footer { flex-direction: column; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 560px) {
  .site-header { padding: 14px 18px; }
  .brand small { display: none; }
  .hero { min-height: 88vh; padding-top: 100px; }
  .quick-contact { margin-top: -20px; border-radius: 22px; }
  .card, .contact-card, .contact-form { border-radius: 22px; }
}


/* Datenschutz-Unterseite */
.legal-page {
  background: linear-gradient(135deg, #eee5d8 0%, #f9f6f0 100%);
  min-height: 70vh;
}

.legal-hero {
  padding: clamp(72px, 10vw, 120px) clamp(20px, 5vw, 72px) 40px;
  background:
    radial-gradient(circle at top right, rgba(155,106,58,.16), transparent 40%),
    var(--forest);
  color: white;
}

.legal-hero .eyebrow { color: #e9c79d; }
.legal-hero h1 {
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  letter-spacing: -.055em;
}
.legal-hero p {
  max-width: 760px;
  color: rgba(255,255,255,.78);
  font-size: 1.12rem;
}

.legal-content {
  width: min(980px, calc(100% - 40px));
  margin: -24px auto clamp(72px, 8vw, 110px);
  padding: clamp(28px, 5vw, 56px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.legal-content h2 {
  margin-top: 34px;
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 2vw, 2rem);
  letter-spacing: -.03em;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li {
  color: var(--muted);
  font-size: 1rem;
}
.legal-content ul {
  margin: 14px 0 24px;
  padding-left: 24px;
}
.legal-content li { margin: 8px 0; }
.legal-back { margin-top: 28px; }


/* Rezensionen */
.reviews-section {
  background:
    radial-gradient(circle at top left, rgba(155,106,58,.12), transparent 34%),
    var(--bg);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.review-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(21,33,31,.06);
}

.review-card .stars {
  color: var(--accent);
  font-size: 1.15rem;
  letter-spacing: .08em;
  margin-bottom: 16px;
}

.review-card p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 1rem;
}

.review-card strong {
  margin-top: auto;
  display: block;
  font-size: 1.05rem;
  letter-spacing: -.01em;
}

.review-card span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: .9rem;
}

@media (max-width: 1100px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}


/* Rezensionen als laufende 3er-Karussellansicht */
.reviews-carousel {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.reviews-track {
  display: flex;
  gap: 18px;
  will-change: transform;
  transition: transform .55s ease;
}

.reviews-track .review-card {
  flex: 0 0 calc((100% - 36px) / 3);
}

@media (max-width: 1100px) {
  .reviews-track .review-card {
    flex-basis: calc((100% - 18px) / 2);
  }
}

@media (max-width: 640px) {
  .reviews-track .review-card {
    flex-basis: 100%;
  }
}

.reviews-grid {
  display: block;
}
