:root {
  --black: #111111;
  --white: #ffffff;
  --teal: #5fd8c9;
  --green: #4a8f6e;
  --green-dark: #2d5a44;
  --green-vibrant: #15803d;
  /* Partner-Sektion „Streidt“: warmes Braun */
  --partner-bg: #5a3d2e;
  --pink: #c5a691;
  --line-dark: rgba(255, 255, 255, 0.22);
  --line-light: rgba(0, 0, 0, 0.18);
  --max: 980px;
  --gutter: 1rem;
  --radius: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.01em;
  background: var(--black);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  text-size-adjust: 100%;
  touch-action: manipulation;
}

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

a {
  color: var(--teal);
}

main section:not(.hero) a:not(.btn),
.site-footer a:not(.btn) {
  color: var(--green);
}

.container {
  width: min(100% - 2 * var(--gutter), var(--max));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: var(--white);
  color: var(--black);
  padding: 0.5rem 0.75rem;
  border-radius: 0;
}

.section {
  position: relative;
  padding: 7rem 0;
}

.section:not(.hero)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(86%, 780px);
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  pointer-events: none;
}

.site-header > .nav-wrap,
.site-header .nav-toggle,
.site-header .main-nav {
  pointer-events: auto;
}

.nav-wrap {
  min-height: 3.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.hero-header .nav-wrap {
  justify-content: flex-end;
}

.logo {
  display: inline-flex;
  flex-shrink: 0;
  transform: translateY(23px);
}

.logo-image {
  display: block;
  max-height: 195px;
  max-width: min(546px, 81vw);
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.85));
}

.nav-toggle {
  min-width: 48px;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: rgba(20, 26, 22, 0.45);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.nav-toggle:active {
  transform: scale(0.94);
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 0;
  display: block;
  content: "";
}

.nav-toggle-bars {
  position: relative;
}

.nav-toggle-bars::before {
  position: absolute;
  top: -7px;
  left: 0;
}

.nav-toggle-bars::after {
  position: absolute;
  top: 7px;
  left: 0;
}

body.nav-open .nav-toggle-bars {
  background: transparent;
}

body.nav-open .nav-toggle-bars::before {
  top: 0;
  transform: rotate(45deg);
}

body.nav-open .nav-toggle-bars::after {
  top: 0;
  transform: rotate(-45deg);
}

.hero .nav-toggle {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.88);
}

.hero .nav-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #fff;
}

.hero .nav-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  outline: 2px solid rgba(255, 255, 255, 0.55);
  outline-offset: 2px;
}

.main-nav {
  display: none;
  flex-direction: column;
  position: absolute;
  top: calc(100% - 0.15rem);
  right: 0;
  left: auto;
  z-index: 40;
  min-width: min(220px, calc(100vw - 2.5rem));
  max-width: min(
    18rem,
    calc(100vw - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px) - 1.5rem)
  );
  background: var(--black);
  border: 1px solid rgba(197, 166, 145, 0.45);
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.55);
}

body.nav-open .main-nav {
  display: flex;
  animation: navSlideLeft 180ms ease-out;
}

@keyframes navSlideLeft {
  from {
    transform: translateX(-12px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.main-nav a {
  text-decoration: none;
  color: var(--white);
  padding: 0.8rem 1rem;
  border-bottom: 1px solid var(--line-dark);
  font-weight: 400;
}

.main-nav a:last-child {
  border-bottom: 0;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--pink);
  background: rgba(197, 166, 145, 0.18);
}

.hero {
  min-height: 98vh;
  min-height: 98dvh;
  display: grid;
  align-items: start;
  padding-top: max(2.75rem, calc(env(safe-area-inset-top, 0px) + 2.1rem));
  padding-bottom: max(2.5rem, env(safe-area-inset-bottom, 0px) + 1.25rem);
  overflow: hidden;
  isolation: isolate;
  /* Bis das Video sichtbar ist: gleiches Braun wie Partner-Sektion */
  background-color: var(--partner-bg);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: blur(2.25px);
  transform: translateZ(0);
  opacity: 0;
  transition: opacity 0.65s ease;
}

.hero.hero-video-ready .hero-video {
  opacity: 1;
}

/* Overlay + zusätzliche 20 % Schwarz; erst mit geladenem Video sichtbar */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  transform: translateZ(0);
  opacity: 0;
  transition: opacity 0.65s ease;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.64),
      rgba(0, 0, 0, 0.52)
    );
}

.hero.hero-video-ready .hero-overlay {
  opacity: 1;
}

/* Stärkeres Korn; erst mit geladenem Video sichtbar */
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  transform: translateZ(0);
  opacity: 0;
  transition: opacity 0.65s ease;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  background-repeat: repeat;
}

.hero.hero-video-ready .hero-grain {
  opacity: 0.34;
}

@media (prefers-reduced-motion: reduce) {
  .hero-video {
    filter: blur(1.25px);
    transition: opacity 0.15s ease;
  }

  .hero-overlay,
  .hero-grain {
    transition: opacity 0.15s ease;
  }

  .hero.hero-video-ready .hero-grain {
    opacity: 0.16;
  }
}

.hero > .container {
  position: relative;
  z-index: 3;
}

/* Über dem Hero-Inhalt, damit das Nav-Dropdown sichtbar bleibt */
.hero > .site-header {
  position: relative;
  z-index: 5;
}

/* —— Landing-Hero (Referenz Bild 1) —— */
.hero--landing {
  /* Gleicher rechter Rand wie CTA-Buttons (Viewport-Ecke → Flucht) */
  --hero-rail-x: max(clamp(1.5rem, 4vw, 3rem), env(safe-area-inset-right, 0px));
  --hero-rail-left: max(clamp(1.5rem, 4vw, 3rem), env(safe-area-inset-left, 0px));
  --hero-rail-top: max(clamp(1.35rem, 2.75vw, 2.35rem), env(safe-area-inset-top, 0px));
  position: sticky;
  top: 0;
  z-index: 0;
  display: flex;
  flex-direction: column;
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 0;
  padding-bottom: max(1.5rem, env(safe-area-inset-bottom, 0px));
}

/* Reveal-Effekt: Inhalt schwebt als opake Ebene über das fixierte Hero-Video */
.reveal-flow {
  position: relative;
  z-index: 1;
  background: var(--cream);
  box-shadow: 0 -40px 80px rgba(0, 0, 0, 0.18);
}

.site-footer {
  position: relative;
  z-index: 1;
}

.hero--landing .hero-video {
  filter: none;
}

.hero-overlay.hero-overlay--landing {
  background: rgba(0, 0, 0, 0.22);
  background-image: none;
}

.hero--landing.hero-video-ready .hero-overlay.hero-overlay--landing {
  opacity: 1;
}

.hero-grain.hero-grain--landing {
  opacity: 0;
}

.hero.hero-video-ready .hero-grain.hero-grain--landing {
  opacity: 0.12;
}

@media (prefers-reduced-motion: reduce) {
  .hero.hero-video-ready .hero-grain.hero-grain--landing {
    opacity: 0.06;
  }
}

/* —— Unterseiten-Hero (gleicher Stil, Standbild statt Video) —— */
.hero--sub {
  --hero-rail-x: max(clamp(1.5rem, 4vw, 3rem), env(safe-area-inset-right, 0px));
  --hero-rail-left: max(clamp(1.5rem, 4vw, 3rem), env(safe-area-inset-left, 0px));
  --hero-rail-top: max(clamp(1.35rem, 2.75vw, 2.35rem), env(safe-area-inset-top, 0px));
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  min-height: clamp(440px, 74vh, 760px);
  height: auto;
  padding: 0;
  padding-bottom: clamp(2.5rem, 6vh, 4rem);
  overflow: hidden;
  isolation: isolate;
  background-color: var(--partner-bg);
}

.hero--sub .hero-sub-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero--sub .hero-overlay--landing {
  opacity: 1;
  background: rgba(0, 0, 0, 0.42);
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.34),
    rgba(0, 0, 0, 0.5)
  );
}

.hero--sub .hero-grain--landing {
  opacity: 0.1;
}

.hero--sub .hero-landing__title {
  font-size: clamp(2.4rem, 5vw, 4.1rem);
}

/* Hamburger/Nav: echte Viewport-Ecke rechts oben (nicht Mitte durch zentrierte .container) */
.hero-header .container.nav-wrap {
  position: absolute;
  top: max(clamp(1rem, 2.75vw, 1.7rem), env(safe-area-inset-top, 0px));
  right: max(clamp(1rem, 4vw, 1.7rem), env(safe-area-inset-right, 0px));
  left: auto;
  bottom: auto;
  width: auto;
  max-width: none;
  margin: 0;
  padding: 0;
  min-height: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
}

.hero-landing-wrap {
  position: relative;
  z-index: 3;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 0;
  width: 100%;
  padding-top: max(var(--hero-rail-top), env(safe-area-inset-top, 0px));
  padding-bottom: clamp(4.5rem, 11vh, 8rem);
  padding-left: var(--hero-rail-left);
  padding-right: var(--hero-rail-x);
}

.hero-brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  color: #fff;
  flex-shrink: 0;
}

/* Logo läuft im Fluss oben links mit – kann nie in den Titel rutschen */
.hero--landing .hero-brand,
.hero--sub .hero-brand {
  position: static;
  align-self: flex-start;
  margin-bottom: clamp(1.25rem, 3.5vh, 2.5rem);
  z-index: 5;
}

.hero-brand__img {
  display: block;
  max-height: clamp(82px, 13vh, 132px);
  width: auto;
  max-width: min(220px, 44vw);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.45));
}

.hero-landing-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: clamp(1.75rem, 4vw, 2.5rem);
  margin-top: auto;
}

.hero-landing__copy {
  flex: 1 1 18rem;
  max-width: 38rem;
  text-align: left;
}

.hero-landing__title {
  margin: 0;
  font-family: Montserrat, Inter, "Segoe UI", system-ui, sans-serif;
  font-weight: 300;
  font-size: clamp(2.65rem, 5.8vw, 4.85rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #fff;
}

.hero-landing__lead {
  margin: 2rem 0 0;
  font-family: Montserrat, Inter, "Segoe UI", system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(1.1rem, 1.35vw, 1.45rem);
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: #fff;
  max-width: 36rem;
}

.hero-landing__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;
  flex-shrink: 0;
}

.btn-hero-pill {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  font-family: Montserrat, Inter, "Segoe UI", system-ui, sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.96);
  padding: 13px 32px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 4px 22px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 -1px 0 rgba(0, 0, 0, 0.08);
  transition: background 0.22s ease, transform 0.15s ease, box-shadow 0.22s ease;
}

.btn-hero-pill:hover,
.btn-hero-pill:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  transform: translateY(-1px);
  box-shadow:
    0 7px 28px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  outline: none;
}

.btn-hero-pill:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.55);
  outline-offset: 3px;
}

/* —— Split-Sektion „Der Weg zur Natur“ (Referenz-Mockup) —— */
.section-natur-split {
  padding: 0;
  margin: 0;
}

.natur-split {
  display: grid;
  grid-template-columns: minmax(0, 35%) minmax(0, 65%);
  /* Gleiche Zeilenhöhe: beide Spalten (Beige + Grau) enden unten bündig */
  align-items: stretch;
  /* Höhe orientiert sich am Inhalt – kein erzwungenes 90vh mehr */
  min-height: 0;
}

.natur-split__left {
  background: #c5a691;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  min-height: 22rem;
}

.natur-split__left-inner {
  width: 100%;
  padding: clamp(2rem, 3.8vw, 3.25rem) clamp(2rem, 4.5vw, 3.75rem)
    clamp(1.85rem, 3.5vw, 3rem) clamp(2.25rem, 5vw, 4.5rem);
  max-width: 26rem;
  text-align: left;
}

.natur-split__kicker {
  margin: 0 0 0.85rem;
  font-family: Montserrat, Inter, "Segoe UI", system-ui, sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1rem, 1.45vw, 1.15rem);
  letter-spacing: 0.06em;
  text-transform: none;
  color: #fff;
}

.natur-split__heading {
  margin: 0 0 1.85rem;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2rem, 3.6vw, 2.85rem);
  line-height: 1.12;
  letter-spacing: 0.01em;
  color: #fff;
}

.natur-split__body {
  font-family: Montserrat, Inter, "Segoe UI", system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(0.92rem, 1.15vw, 1.05rem);
  line-height: 1.72;
  letter-spacing: 0.02em;
  color: #fff;
}

.natur-split__body p {
  margin: 0 0 0.65rem;
  font-size: inherit;
  font-weight: inherit;
}

.natur-split__body p:last-child {
  margin-bottom: 0;
}

.natur-split__gap {
  margin-top: 1.35rem !important;
}

.natur-split__right {
  background: #4b4d44;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  align-self: stretch;
  padding: clamp(2rem, 3.8vw, 3.25rem) clamp(1.5rem, 3.2vw, 2.5rem)
    clamp(1.85rem, 3.5vw, 3rem) clamp(1.5rem, 3.2vw, 2.5rem);
}

.natur-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(1.1rem, 2.2vw, 1.65rem);
  width: 100%;
  max-width: 1080px;
}

.natur-card {
  flex: 1 1 170px;
  max-width: 300px;
  min-width: 148px;
}

.natur-card__media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: #3a3c36;
}

.natur-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.18) 38%,
    transparent 62%
  );
}

.natur-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.natur-card__label {
  position: absolute;
  left: clamp(0.9rem, 2vw, 1.2rem);
  bottom: clamp(0.9rem, 2vw, 1.2rem);
  z-index: 1;
  font-family: Montserrat, Inter, "Segoe UI", system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(0.92rem, 1.35vw, 1.02rem);
  letter-spacing: 0.03em;
  color: #fff;
  line-height: 1.2;
}

.natur-card__label-ad {
  font-weight: 400;
}

.natur-card__label strong {
  font-weight: 700;
}

.natur-card__caption {
  margin: 0.8rem 0 0;
  font-family: Montserrat, Inter, "Segoe UI", system-ui, sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  line-height: 1.45;
  letter-spacing: 0.04em;
  color: #fff;
  text-align: center;
}

@media (max-width: 900px) {
  .natur-split {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .natur-split__left {
    min-height: unset;
  }

  .natur-split__right {
    padding: 2rem 1.35rem 2.75rem;
  }

  .natur-cards {
    flex-direction: column;
    align-items: center;
  }

  .natur-card {
    max-width: 360px;
    width: 100%;
  }

  .hero-landing-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-landing__cta {
    align-items: stretch;
    width: 100%;
    max-width: 22rem;
  }

  .btn-hero-pill {
    width: 100%;
    box-sizing: border-box;
  }

  .hero-landing__copy {
    max-width: none;
  }
}

@media (min-width: 901px) {
  /* Floating Glassmorphism Pill Nav – zentriert, fixiert oben */
  .hero-header .container.nav-wrap {
    /* Override right-alignment → center */
    top: clamp(1.1rem, 2vw, 1.9rem);
    right: auto;
    left: 50%;
    transform: translateX(-50%);

    /* Glassmorphism capsule */
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    padding: 0.3rem 0.6rem;
    box-shadow:
      0 6px 30px rgba(0, 0, 0, 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.12),
      inset 0 -1px 0 rgba(0, 0, 0, 0.06);

    flex-wrap: nowrap;
    gap: 0;
    justify-content: center;
    width: max-content;
    max-width: calc(100vw - 20rem);
    transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  }

  /* Beim Scrollen über helle Sektionen: dunkle Kapsel für Lesbarkeit */
  .site-header.nav-scrolled .container.nav-wrap {
    background: rgba(18, 26, 21, 0.82);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 34px rgba(0, 0, 0, 0.3);
  }

  .hero-header .nav-toggle {
    display: none;
  }

  .hero-header .main-nav {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    position: static;
    background: transparent;
    border: none;
    box-shadow: none;
    min-width: 0;
    max-width: none;
    gap: 0;
    padding: 0;
    animation: none;
  }

  .hero-header .main-nav a {
    border-bottom: none;
    padding: 0.5rem 0.9rem;
    font-family: Montserrat, Inter, "Segoe UI", system-ui, sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
    border-radius: 999px;
    white-space: nowrap;
    transition: background 0.18s ease, color 0.18s ease;
  }

  .hero-header .main-nav a:hover,
  .hero-header .main-nav a:focus-visible {
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
  }
}

.hero-text {
  max-width: 42rem;
  margin-inline: auto;
  margin-top: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.15rem, 3vw, 1.75rem);
}

.hero-text .logo + h1 {
  margin-top: -0.4rem;
}

.hero-text h1 {
  margin-bottom: 0;
}

.hero-text > p {
  margin-top: 0;
  margin-bottom: 0;
  max-width: 36rem;
}

.hero-text .cta-row {
  margin-top: 0;
}

.hero-text .logo,
.hero-logo {
  display: inline-flex;
  justify-content: center;
  flex-shrink: 0;
  transform: none;
}

.hero-text .logo-image {
  max-height: min(30vh, 268px);
  max-width: min(560px, 90vw);
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.88rem;
  font-weight: 500;
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.9);
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin-top: 0;
}

h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.2rem);
  font-weight: 300;
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 400;
}

h3 {
  font-size: clamp(1.2rem, 2.1vw, 1.7rem);
  font-weight: 400;
}

p,
li {
  font-size: 1.08rem;
  font-weight: 300;
}

.lead {
  max-width: 42rem;
  margin-inline: auto;
}

.muted {
  font-size: 0.95rem;
  font-weight: 300;
}

.light-section .muted {
  color: rgba(0, 0, 0, 0.55);
}

.light-section .insert-card {
  color: var(--white);
}

.light-section .insert-card h3 {
  color: var(--white);
}

.light-section .insert-card .muted {
  color: rgba(255, 255, 255, 0.65);
}

.dark-insert .ablauf-note {
  margin-top: 1.85rem;
  color: rgba(255, 255, 255, 0.9);
}

.cta-row {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.3rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.9rem 1.9rem;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: background 0.22s ease, color 0.22s ease, transform 0.16s ease,
    box-shadow 0.22s ease, border-color 0.22s ease;
  will-change: transform;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--teal);
  color: var(--black);
}

.hero .btn-primary,
.hero .btn-secondary {
  background: transparent;
  color: #fff;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.88);
}

.hero .btn-primary:hover,
.hero .btn-primary:focus-visible,
.hero .btn-secondary:hover,
.hero .btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: #fff;
}

.hero .btn-primary:focus-visible,
.hero .btn-secondary:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}

main section:not(.hero) .btn-primary,
.site-footer .btn-primary {
  background: var(--green-vibrant);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-weight: 600;
}

main section:not(.hero) .btn-secondary,
.site-footer .btn-secondary {
  background: var(--green-vibrant);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
  font-weight: 600;
}

main section:not(.hero) .btn-primary:hover,
main section:not(.hero) .btn-primary:focus-visible,
main section:not(.hero) .btn-secondary:hover,
main section:not(.hero) .btn-secondary:focus-visible,
.site-footer .btn-primary:hover,
.site-footer .btn-primary:focus-visible,
.site-footer .btn-secondary:hover,
.site-footer .btn-secondary:focus-visible {
  background: #166534;
  color: var(--white);
}

.btn-secondary {
  background: var(--pink);
  color: var(--black);
  border: 1px solid var(--line-light);
}

.light-section {
  background: var(--white);
  color: var(--black);
}

.light-section .eyebrow {
  color: var(--green-dark);
}

.light-section h1,
.light-section h2,
.light-section h3,
.light-section p,
.light-section li,
.light-section strong {
  color: var(--black);
}

main section.light-section a:not(.btn) {
  color: var(--green-dark);
}

.section-tight {
  padding: 6rem 0;
}

.pill-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.pill {
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 0;
  text-align: center;
  padding: 0.65rem 0.9rem;
  background: var(--white);
  color: var(--black);
  font-size: 1rem;
}

.image-like {
  color: var(--white);
  min-height: 76vh;
  display: grid;
  align-items: center;
  background:
    linear-gradient(to right, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.44)),
    url("pic2.png");
  background-size: cover;
  background-position: center;
}

blockquote {
  border-left: 3px solid rgba(74, 143, 110, 0.9);
  margin: 1.2rem auto 0;
  max-width: 40rem;
  padding-left: 1rem;
}

.image-section4 {
  color: var(--white);
  min-height: 68vh;
  display: grid;
  align-items: center;
  background:
    linear-gradient(to right, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.48)),
    url("pic3.png");
  background-size: cover;
  background-position: center;
}

.dark-section {
  background: var(--black);
}

.dark-insert {
  background: var(--black);
}

.insert-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.insert-card {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
  background: #111111;
}

.section-leistungen {
  background: var(--black);
}

.section-leistungen .eyebrow {
  color: var(--pink);
}

.section-leistungen a:not(.btn) {
  color: var(--pink);
}

.leistungen-grid {
  gap: 1.35rem;
}

.leistungen-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 2.75rem;
}

.leistungen-header h2 {
  margin-bottom: 0.65rem;
}

.leistungen-lead {
  margin: 0;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 300;
  line-height: 1.55;
}

.leistungen-grid .leistungen-card {
  border: 1.5px solid rgba(197, 166, 145, 0.38);
  border-radius: 0;
  background: #161514;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04),
    0 6px 20px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: box-shadow 0.4s ease, border-color 0.4s ease;
}

.leistungen-grid .leistungen-card:hover {
  border-color: rgba(197, 166, 145, 0.55);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.05),
    0 10px 32px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.leistungen-grid .leistungen-card h3 {
  font-weight: 500;
  letter-spacing: 0.01em;
}

.light-section.section-partner {
  background: var(--partner-bg);
  color: var(--white);
}

.light-section.section-partner .eyebrow {
  color: rgba(255, 255, 255, 0.92);
}

.light-section.section-partner h1,
.light-section.section-partner h2,
.light-section.section-partner h3,
.light-section.section-partner p,
.light-section.section-partner li,
.light-section.section-partner strong {
  color: var(--white);
}

.light-section.section-partner .partner-panel-title {
  color: var(--white);
}

.light-section.section-partner .partner-panel-head {
  border-bottom-color: rgba(255, 255, 255, 0.28);
}

.light-section.section-partner .partner-role {
  color: rgba(255, 255, 255, 0.88);
}

.light-section.section-partner .partner-foot {
  color: rgba(255, 255, 255, 0.75);
}

.light-section.section-partner .partner-lead {
  color: rgba(255, 255, 255, 0.88);
}

main section.light-section.section-partner a:not(.btn) {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.45);
}

.partner-inner {
  max-width: 58rem;
  hyphens: none;
  -webkit-hyphens: none;
}

.partner-head {
  text-align: center;
  margin-bottom: 2.75rem;
  max-width: 40rem;
  margin-inline: auto;
}

.partner-head h2 {
  margin-bottom: 0.65rem;
}

.partner-lead {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.45;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.62);
}

.partner-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.75rem;
  align-items: stretch;
}

.partner-panel {
  margin: 0;
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.35rem;
  border-radius: 0;
  background: rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.partner-panel-head {
  margin: 0 0 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.partner-panel-title {
  font-size: 1.12rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--green-dark);
  margin: 0;
  padding: 0;
  border: none;
}

.partner-role {
  margin: 0.35rem 0 0;
  font-size: 0.98rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: rgba(0, 0, 0, 0.55);
}

.partner-panel-body {
  flex: 1 1 auto;
}

.partner-panel-body p:last-child {
  margin-bottom: 0;
}

.partner-foot {
  margin-top: auto;
  padding-top: 1.15rem;
  margin-bottom: 0;
  font-size: 0.93rem;
  color: rgba(0, 0, 0, 0.52);
  font-weight: 400;
}

.partner-address {
  margin: 0;
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.partner-address-org {
  font-weight: 500;
  color: inherit;
}

.partner-address-lines {
  display: block;
  line-height: 1.4;
}

.dark-pills .pill {
  background: #111111;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
  max-width: 50rem;
  margin-inline: auto;
}

.info-card,
.hours-box {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 1.2rem;
}

.bg-section5 {
  color: var(--white);
  min-height: 64vh;
  display: grid;
  align-items: center;
  background:
    linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5)),
    url("pic1.png");
  background-size: cover;
  background-position: center;
}

.two-col {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 1fr;
  max-width: 56rem;
  margin-inline: auto;
}

.bg-section5 .hours-box {
  background: rgba(17, 17, 17, 0.55);
}

.bg-section5 .eyebrow {
  color: rgba(255, 255, 255, 0.92);
}

.bg-section5 h2,
.bg-section5 p,
.bg-section5 strong,
.bg-section5 .hours-box p,
.bg-section5 .hours-box strong {
  color: var(--white);
}

.bg-section5 a:not(.btn) {
  color: var(--white);
  text-decoration-color: rgba(255, 255, 255, 0.45);
}

.dark-faq {
  background: #111111;
}

.dark-faq .faq-list {
  display: grid;
  gap: 0.75rem;
  max-width: 52rem;
  margin-inline: auto;
}

.dark-faq .faq-item {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  overflow: hidden;
}

.dark-faq summary {
  cursor: pointer;
  padding: 0.95rem 1.1rem;
  list-style: none;
  font-weight: 400;
}

.dark-faq summary::-webkit-details-marker {
  display: none;
}

.dark-faq .faq-body {
  padding: 0 1.1rem 1rem;
  border-top: 1px solid var(--line-dark);
}

.site-footer {
  background: var(--black);
  color: var(--white);
  padding-top: 3.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.5rem clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

.footer-col {
  min-width: 0;
}

.footer-col > h2 {
  margin: 0 0 1.15rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-size: clamp(1.12rem, 2.2vw, 1.38rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #fff;
}

.footer-col > .footer-block + .footer-block {
  margin-top: 1.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-block {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-block > h3 {
  margin: 0 0 0.2rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
}

.footer-firm {
  margin: 0;
  font-size: 1rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.96);
}

.footer-address-lines {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.8);
}

.footer-person {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
}

.footer-role {
  font-size: 0.92em;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.66);
}

.footer-channel-list,
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-channel-list li,
.footer-links li {
  margin: 0;
}

.footer-subhead {
  margin: 0 0 0.15rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.footer-lead {
  margin: 0 0 0.85rem;
  font-size: 0.93rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.76);
  max-width: 24rem;
}

.footer-col--meta .btn {
  align-self: flex-start;
  margin-top: 0.05rem;
}

.footer-bottom {
  border-top: 1px solid var(--line-dark);
  margin-top: 2.75rem;
  padding: 1.35rem 0 2.25rem;
  font-size: 0.9rem;
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
}

.footer-bottom-inner > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.15rem;
}

.footer-legal a {
  color: var(--green);
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  text-decoration: underline;
}

.legal-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.legal-main {
  flex: 1;
  padding: 3rem 0 4rem;
}

.legal-main .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.legal-back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 2rem;
  padding: 0.5rem 0.75rem;
  min-height: 44px;
  box-sizing: border-box;
  text-decoration: none;
  color: var(--green);
  font-weight: 500;
  font-size: 1rem;
}

.legal-back-link:hover,
.legal-back-link:focus-visible {
  text-decoration: underline;
}

.legal-content {
  max-width: 42rem;
  width: 100%;
  margin-inline: auto;
  text-align: center;
}

.legal-content h1 {
  margin-bottom: 1.25rem;
  font-weight: 400;
}

.legal-content h2 {
  font-size: 1.2rem;
  font-weight: 500;
  margin: 2rem 0 0.75rem;
  text-align: center;
}

.legal-content h1 + h2 {
  margin-top: 1.5rem;
}

.legal-content p,
.legal-content li {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.9);
  text-wrap: balance;
}

.legal-content a {
  color: var(--green);
  word-break: break-word;
}

.legal-content ul {
  margin: 0.5rem auto 1rem;
  padding-left: 1.25rem;
  text-align: left;
  display: inline-block;
  max-width: min(100%, 36rem);
  box-sizing: border-box;
}

.legal-content .placeholder-note {
  margin-top: 2rem;
  margin-inline: auto;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
  max-width: 100%;
}

.site-footer .footer-legal a {
  color: var(--green);
}

@media (max-width: 900px) {
  .hero,
  .cards-grid,
  .insert-grid,
  .pill-grid,
  .two-col,
  .partner-columns,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    /* Höhe: größte Viewport-Einheit nutzen (mobil oft höher als dvh bei sichtbarer Browser-UI) */
    min-height: 100vh;
    min-height: 100dvh;
    min-height: 100lvh;
    padding-top: max(3.65rem, calc(env(safe-area-inset-top, 0px) + 2.95rem));
    padding-bottom: max(2.5rem, env(safe-area-inset-bottom, 0px) + 1.25rem);
  }

  .container {
    width: 100%;
    max-width: var(--max);
    padding-inline: max(2rem, env(safe-area-inset-left, 0px))
      max(2rem, env(safe-area-inset-right, 0px));
  }

  .hero-text .logo-image {
    max-height: min(26vh, 200px);
    max-width: min(440px, 92vw);
  }

  .hero-text .cta-row {
    align-self: stretch;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: min(22rem, 100%);
    margin-inline: auto;
  }

  .hero-text .cta-row .btn {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
  }

  .hero-header .nav-wrap {
    min-height: 3rem;
  }

  .section {
    padding: 6rem 0;
  }

  .legal-main {
    padding: 2.25rem 0 3rem;
    padding-bottom: max(3rem, env(safe-area-inset-bottom, 0px));
  }

  .legal-content h1 {
    font-size: clamp(1.55rem, 5.5vw, 2rem);
    line-height: 1.25;
  }

  .legal-content h2 {
    font-size: clamp(1.05rem, 3.5vw, 1.2rem);
    margin: 1.5rem 0 0.65rem;
  }

  .legal-content h1 + h2 {
    margin-top: 1.15rem;
  }

  .legal-content p,
  .legal-content li {
    font-size: 1rem;
    line-height: 1.65;
  }

  .legal-back-link {
    margin-bottom: 1.5rem;
    width: 100%;
    max-width: 20rem;
  }

  .footer-bottom-inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }
}

/* ================================================================
   REBRANDING — Hell, Modern & Mediterran
   Gilt für alle Sektionen ab #leistungen
   ================================================================ */

:root {
  --cream:        #faf8f4;
  --sand:         #f2ede4;
  --sage:         #eaf4ee;
  --text-dark:    #1a1a18;
  --text-mid:     #5a5650;
  --olive-deep:   #2d6a4f;
  --border-soft:  rgba(0, 0, 0, 0.09);
  --card-shadow:  0 2px 18px rgba(0, 0, 0, 0.07), 0 1px 4px rgba(0, 0, 0, 0.04);
  --img-shadow:   0 18px 52px rgba(0, 0, 0, 0.14), 0 4px 14px rgba(0, 0, 0, 0.07);
  --r-img:        14px;
  --r-card:       10px;
}

body {
  background: var(--cream);
}

/* —— Separator lines für helle Sektionen —— */
.section-leistungen::before,
.section-featured::before,
.section-ablauf::before,
.section-showcase::before,
.section-why::before,
.section-faq::before {
  background: rgba(0, 0, 0, 0.07);
}

/* ——— Leistungen ——— */
.section-leistungen {
  background: var(--cream);
}

.section-leistungen .eyebrow {
  color: var(--olive-deep);
}

.section-leistungen h2 {
  color: var(--text-dark);
}

.section-leistungen .leistungen-lead {
  color: var(--text-mid);
}

.section-leistungen a:not(.btn) {
  color: var(--olive-deep);
}

/* Leistungen Cards: nummerierter Wow-Effekt + helles Design */
.leistungen-grid {
  counter-reset: leistungen-num;
}

.leistungen-grid .leistungen-card {
  counter-increment: leistungen-num;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-top: 3px solid var(--teal);
  border-radius: var(--r-card);
  box-shadow: var(--card-shadow);
  padding: 2rem 1.85rem 2.25rem;
  transition: box-shadow 0.3s ease, border-top-color 0.3s ease, transform 0.3s ease;
}

.leistungen-grid .leistungen-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.11), 0 2px 8px rgba(0, 0, 0, 0.05);
  border-top-color: var(--olive-deep);
  transform: translateY(-2px);
}

.leistungen-grid .leistungen-card h3 {
  color: var(--text-dark);
  margin-top: 0;
  margin-bottom: 0.85rem;
}

.leistungen-grid .leistungen-card p {
  color: var(--text-mid);
}

.leistungen-grid .leistungen-card h3::before {
  content: "0" counter(leistungen-num);
  display: block;
  font-family: Montserrat, Inter, "Segoe UI", system-ui, sans-serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--teal);
  opacity: 0.55;
  line-height: 1;
  margin-bottom: 0.7rem;
  letter-spacing: -0.03em;
}

/* ——— Friedhofsberg: Featured Split ——— */
.section-featured {
  background: var(--sand);
  color: var(--text-dark);
}

.section-featured .eyebrow {
  color: var(--olive-deep);
}

.section-featured h2 {
  color: var(--text-dark);
}

.section-featured .lead {
  color: var(--text-mid);
  margin-inline: 0;
  max-width: 34rem;
}

.section-featured blockquote {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.6;
  border-left: 3px solid var(--olive-deep);
  color: var(--text-dark);
  margin-left: 0;
  background: rgba(45, 106, 79, 0.06);
  padding: 0.9rem 1rem 0.9rem 1.4rem;
}

.featured-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.featured-split__img {
  position: relative;
}

.featured-split__img img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--r-img);
  box-shadow: var(--img-shadow);
  display: block;
}

.featured-split__img::after {
  content: "";
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 52%;
  height: 52%;
  border-radius: var(--r-img);
  background: var(--teal);
  opacity: 0.13;
  z-index: -1;
}

/* ——— Ablauf ——— */
.section-ablauf {
  background: var(--sage);
  color: var(--text-dark);
}

.section-ablauf .eyebrow {
  color: var(--olive-deep);
}

.section-ablauf h2 {
  color: var(--text-dark);
}

.section-ablauf .pill {
  background: #fff;
  color: var(--text-dark);
  border: 1px solid rgba(45, 106, 79, 0.2);
  border-radius: 8px;
  padding: 1.05rem 1.1rem;
  font-size: 0.96rem;
  line-height: 1.5;
  text-align: left;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
}

.section-ablauf .lead {
  color: var(--text-mid);
}

/* ——— Showcase: Bilder & Standort ——— */
.section-showcase {
  background: #fff;
  color: var(--text-dark);
}

.section-showcase .eyebrow {
  color: var(--olive-deep);
}

.section-showcase h2 {
  color: var(--text-dark);
}

.section-showcase .lead {
  color: var(--text-mid);
  margin-inline: 0;
  max-width: 34rem;
}

.showcase-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5.5vw, 4.5rem);
  align-items: center;
}

.showcase-layout__img {
  position: relative;
}

.showcase-layout__img img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--r-img);
  box-shadow: var(--img-shadow);
  display: block;
}

.showcase-layout__img::before {
  content: "";
  position: absolute;
  top: -14px;
  left: -14px;
  width: 48%;
  height: 48%;
  border-radius: var(--r-img);
  background: var(--sand);
  z-index: -1;
}

/* ——— Warum / Kosten ——— */
.section-why {
  background: var(--sand);
  color: var(--text-dark);
}

.section-why .insert-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--r-card);
  box-shadow: var(--card-shadow);
  padding: 2rem 2rem 2.25rem;
}

.section-why .insert-card h3 {
  color: var(--olive-deep);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 500;
  margin-bottom: 0.9rem;
}

.section-why .insert-card p,
.section-why .insert-card strong {
  color: var(--text-dark);
}

/* ——— Öffnungszeiten: wärmere Overlay ——— */
.bg-section5 {
  background:
    linear-gradient(to right, rgba(243, 233, 218, 0.88), rgba(252, 244, 232, 0.76)),
    url("pic1.png") center / cover no-repeat;
  color: var(--text-dark);
  min-height: 64vh;
}

.bg-section5::before {
  background: rgba(0, 0, 0, 0.07);
}

.bg-section5 .eyebrow {
  color: var(--olive-deep);
}

.bg-section5 h2,
.bg-section5 p,
.bg-section5 strong,
.bg-section5 .hours-box p,
.bg-section5 .hours-box strong {
  color: var(--text-dark);
}

.bg-section5 a:not(.btn) {
  color: var(--olive-deep);
  text-decoration-color: rgba(45, 106, 79, 0.45);
}

.bg-section5 .hours-box {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--r-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* ——— FAQ ——— */
.section-faq {
  background: var(--cream);
  color: var(--text-dark);
}

.section-faq .eyebrow {
  color: var(--olive-deep);
}

.section-faq h2 {
  color: var(--text-dark);
}

.section-faq .faq-intro {
  text-align: center;
  color: var(--text-mid);
  margin: 0 auto 2.5rem;
  max-width: 36rem;
  font-size: 1.05rem;
}

.section-faq .faq-list {
  display: grid;
  gap: 0.65rem;
  max-width: 54rem;
  margin-inline: auto;
}

/* Jedes FAQ-Item: klar als klickbare Karte erkennbar */
.section-faq .faq-item {
  background: #fff;
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.25s ease, transform 0.2s ease;
}

.section-faq .faq-item:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.10), 0 2px 6px rgba(0, 0, 0, 0.05);
  transform: translateY(-1px);
}

.section-faq .faq-item[open] {
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.09);
}

/* Summary: Frage-Badge links + Chevron rechts */
.section-faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.2rem 1.1rem 1.1rem;
  background: #fff;
  transition: background 0.2s ease;
}

.section-faq summary::-webkit-details-marker {
  display: none;
}

.section-faq .faq-item:hover summary {
  background: var(--sage);
}

.section-faq .faq-item[open] summary {
  background: var(--sage);
}

/* "?" Frage-Badge links — sofort erkennbar als Frage */
.section-faq summary::before {
  content: "?";
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  background: var(--teal);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: Montserrat, Inter, "Segoe UI", system-ui, sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1;
  transition: background 0.25s ease;
}

.section-faq .faq-item[open] summary::before {
  background: var(--olive-deep);
}

/* Fragetext */
.section-faq summary span {
  flex: 1;
  font-weight: 500;
  font-size: 1.02rem;
  line-height: 1.45;
  color: var(--text-dark);
  transition: color 0.2s ease;
}

.section-faq .faq-item[open] summary span {
  color: var(--olive-deep);
}

/* Chevron-Kreis rechts — zeigt "klickbar/ausklappbar" */
.section-faq summary::after {
  content: "";
  flex-shrink: 0;
  margin-left: auto;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 2px solid var(--teal);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235fd8c9' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-size: 16px;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease, border-color 0.25s ease, background-image 0.25s ease;
}

.section-faq .faq-item[open] summary::after {
  transform: rotate(180deg);
  border-color: var(--olive-deep);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232d6a4f' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
}

/* Antwortbereich */
.section-faq .faq-body {
  padding: 0 1.2rem 1.2rem 4.1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  background: var(--sage);
}

.section-faq .faq-body p {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.68;
  margin-top: 0.9rem;
}

.section-faq .faq-body a {
  color: var(--olive-deep);
}

/* ——— Responsive ——— */
@media (max-width: 900px) {
  .featured-split,
  .showcase-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .featured-split__img,
  .showcase-layout__img {
    order: -1;
  }

  .featured-split__img img,
  .showcase-layout__img img {
    aspect-ratio: 16 / 9;
  }
}

/* ================================================================
   POLISH — Animationen, moderner Footer & Feinschliff
   ================================================================ */

/* —— Anker-Offset wegen fixiertem Header —— */
section[id],
.reveal-flow [id] {
  scroll-margin-top: 6rem;
}

/* —— Scroll-Reveal Animationen —— */
.js .anim {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.js .anim.is-visible {
  opacity: 1;
  transform: none;
}

/* Gestaffeltes Erscheinen innerhalb von Grids/Reihen */
.js .anim.anim-d1 { transition-delay: 0.08s; }
.js .anim.anim-d2 { transition-delay: 0.16s; }
.js .anim.anim-d3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  .js .anim {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* —— Mobiles Dropdown-Menü: moderner, abgerundet —— */
@media (max-width: 900px) {
  .main-nav {
    top: calc(100% + 0.55rem);
    border-radius: 16px;
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(18, 22, 19, 0.92);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    padding: 0.35rem;
  }

  .main-nav a {
    border-bottom: none;
    border-radius: 10px;
    padding: 0.75rem 0.95rem;
    font-size: 0.95rem;
  }
}

/* —— Hero: dezenter Scroll-Hinweis —— */
.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: clamp(1rem, 3vh, 2rem);
  transform: translateX(-50%);
  z-index: 4;
  width: 26px;
  height: 42px;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  pointer-events: none;
}

.hero-scroll-cue::before {
  content: "";
  width: 3px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  animation: scrollCue 1.8s ease-in-out infinite;
}

@keyframes scrollCue {
  0% { opacity: 0; transform: translateY(-4px); }
  40% { opacity: 1; }
  80% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-scroll-cue::before { animation: none; }
}

/* —— Section-Buttons: edler mit Schatten —— */
main section:not(.hero) .btn-primary,
.site-footer .btn-primary {
  box-shadow: 0 8px 22px rgba(21, 128, 61, 0.26);
}

main section:not(.hero) .btn-primary:hover,
.site-footer .btn-primary:hover {
  box-shadow: 0 12px 30px rgba(21, 128, 61, 0.34);
}

/* Bilder: sanfter Zoom beim Hover */
.featured-split__img img,
.showcase-layout__img img,
.natur-card__media img {
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.featured-split__img:hover img,
.showcase-layout__img:hover img,
.natur-card:hover .natur-card__media img {
  transform: scale(1.045);
}

/* ================================================================
   FOOTER — modern, dunkel-elegant mit Olivakzent
   ================================================================ */
.site-footer {
  background:
    radial-gradient(120% 90% at 15% 0%, rgba(45, 106, 79, 0.28), transparent 60%),
    linear-gradient(to bottom, #14140f, #0c0d0a);
  color: rgba(255, 255, 255, 0.82);
  padding-top: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* —— CTA-Band —— */
.footer-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.75rem 2.5rem;
  padding: clamp(2.75rem, 6vw, 4.25rem) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-cta__eyebrow {
  margin: 0 0 0.6rem;
  font-family: Montserrat, Inter, system-ui, sans-serif;
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
  color: var(--teal);
}

.footer-cta__title {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.6rem, 3.4vw, 2.5rem);
  line-height: 1.18;
  letter-spacing: 0.005em;
  color: #fff;
  max-width: 22ch;
}

.footer-cta__lead {
  margin: 0.85rem 0 0;
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.66);
  max-width: 34ch;
}

.footer-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

/* —— Grid: Marke + 3 Spalten —— */
.site-footer .footer-grid {
  grid-template-columns: 1.5fr 1.15fr 0.9fr 0.9fr;
  gap: 2.75rem clamp(2rem, 5vw, 3.5rem);
  padding-top: clamp(2.75rem, 5vw, 3.75rem);
  padding-bottom: 0.5rem;
}

.footer-col--brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-brand {
  display: inline-flex;
}

.footer-brand img {
  width: auto;
  max-width: 170px;
  max-height: 78px;
  object-fit: contain;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.5));
}

.footer-tagline {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.6);
  max-width: 30ch;
}

.site-footer .footer-col > h2 {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 1.1rem;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  font-size: 1.3rem;
  color: #fff;
}

.site-footer .footer-col > h3,
.site-footer .footer-subhead {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}

.site-footer .footer-col > .footer-block + .footer-block {
  border-top-color: rgba(255, 255, 255, 0.08);
}

.footer-hours {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

/* Links: zarte Hover-Animation */
.site-footer .footer-channel-list a,
.site-footer .footer-links a {
  position: relative;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.74);
  transition: color 0.2s ease;
}

.site-footer .footer-channel-list a:hover,
.site-footer .footer-links a:hover,
.site-footer .footer-channel-list a:focus-visible,
.site-footer .footer-links a:focus-visible {
  color: var(--teal);
}

.site-footer .footer-links a {
  display: inline-flex;
  padding: 0.1rem 0;
}

.site-footer .footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-footer .footer-links a:hover::after,
.site-footer .footer-links a:focus-visible::after {
  transform: scaleX(1);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 2.5rem;
}

.footer-bottom-inner > p {
  color: rgba(255, 255, 255, 0.45);
}

.site-footer .footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease;
}

.site-footer .footer-legal a:hover {
  color: var(--teal);
  text-decoration: none;
}

@media (max-width: 1000px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-col--brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-cta {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-cta__actions {
    width: 100%;
  }
  .footer-cta__actions .btn {
    flex: 1 1 auto;
  }
}

/* —— Logo/Titel bei niedrigen Viewports verkleinern (kein Überlappen) —— */
@media (max-height: 780px) {
  .hero-brand__img {
    max-height: clamp(70px, 10vh, 104px);
  }
  .hero-landing__title {
    font-size: clamp(2.2rem, 4.4vw, 3.5rem);
  }
}

@media (max-height: 620px) {
  .hero-brand__img {
    max-height: 62px;
  }
  .hero-landing__title {
    font-size: clamp(1.95rem, 4vw, 2.9rem);
  }
  .hero-landing__lead {
    margin-top: 1.1rem;
    font-size: 1rem;
  }
}
