/* ==========================================================================
   NATURE BALANCE — Garten- und Teichpflege
   Stilrichtung: Moderner, natürlicher Landschaftsbau, maskulin-organisch
   ========================================================================== */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Design Tokens ---------- */
:root {
  /* Colors – Erdige, kräftige Naturtöne (nicht zu weiblich) */
  --bg:        #f5f3ee;            /* warmes Off-White */
  --bg-dark:   #1a1f1a;            /* Tiefes Waldgrün-Schwarz */
  --bg-card:   #ffffff;
  --ink:       #18211a;            /* fast schwarzes Grün */
  --ink-soft:  #4a564a;
  --moss:      #2d4a2b;            /* Moosgrün */
  --moss-deep: #1f3520;
  --leaf:      #4a7c3a;            /* Blattgrün */
  --leaf-bright: #7ba951;          /* Frisches Grün (Logo) */
  --bark:      #6b5a44;            /* Rinde / Erde */
  --stone:     #8a8b80;            /* Stein */
  --water:     #4d8a8c;            /* gedämpftes Wasserblau */
  --gold:      #c9a961;            /* warmer Akzent */

  /* Typography */
  --font-display: 'Fraunces', 'Playfair Display', Georgia, serif;
  --font-body:    'Manrope', -apple-system, sans-serif;

  /* Spacing & Layout */
  --container: 1280px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-y: clamp(4rem, 10vw, 8rem);

  /* Effects */
  --radius:    14px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 8px rgba(24, 33, 26, 0.06);
  --shadow:    0 12px 40px -12px rgba(24, 33, 26, 0.18);
  --shadow-lg: 0 30px 80px -20px rgba(24, 33, 26, 0.35);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}
h1 { font-size: clamp(2.75rem, 7vw, 5.5rem); font-weight: 400; font-variation-settings: 'opsz' 144, 'SOFT' 30; }
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); font-variation-settings: 'opsz' 100, 'SOFT' 50; }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.85rem); }
h4 { font-size: 1.15rem; font-family: var(--font-body); font-weight: 700; letter-spacing: -0.01em; }

p { color: var(--ink-soft); max-width: 65ch; }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.2rem); color: var(--ink-soft); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--leaf);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1.5px;
  background: var(--leaf);
  display: inline-block;
}

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.1rem 0;
  transition: background-color .15s ease, backdrop-filter .15s ease, padding .25s ease, box-shadow .15s ease;
}
.nav.is-scrolled {
  background: rgba(245, 243, 238, 0.92);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  padding: 0.7rem 0;
  box-shadow: 0 1px 0 rgba(24,33,26,0.06);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}
.brand__mark {
  width: auto;
  height: 44px;
  max-width: 60px;
  flex-shrink: 0;
  object-fit: contain;
}
.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.brand__sub {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 3px;
}
.nav.is-light .brand__name,
.nav.is-light .brand__sub { color: #fff; }
.nav.is-light.is-scrolled .brand__name { color: var(--ink); }
.nav.is-light.is-scrolled .brand__sub { color: var(--ink-soft); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}
.nav__links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
  transition: color .25s ease;
}
.nav.is-light .nav__links a { color: rgba(255,255,255,0.92); }
.nav.is-light.is-scrolled .nav__links a { color: var(--ink); }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 1.5px;
  width: 0;
  background: var(--leaf-bright);
  transition: width .35s cubic-bezier(.4,0,.2,1);
}
.nav__links a:hover::after,
.nav__links a.is-active::after { width: 100%; }
.nav__links a.is-active { color: var(--leaf); }
.nav.is-light .nav__links a.is-active { color: var(--leaf-bright); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  background: var(--ink);
  color: #fff !important;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: transform .25s ease, background-color .25s ease;
}
.nav__cta:hover { transform: translateY(-2px); background: var(--moss); }
.nav__cta::after { display: none !important; }

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}
.nav__toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--ink);
  position: relative;
  transition: background-color .25s;
}
.nav__toggle span::before,
.nav__toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 26px;
  height: 2px;
  background: var(--ink);
  transition: transform .3s;
}
.nav__toggle span::before { top: -8px; }
.nav__toggle span::after { top: 8px; }
.nav.is-light .nav__toggle span,
.nav.is-light .nav__toggle span::before,
.nav.is-light .nav__toggle span::after { background: #fff; }
.nav.is-light.is-scrolled .nav__toggle span,
.nav.is-light.is-scrolled .nav__toggle span::before,
.nav.is-light.is-scrolled .nav__toggle span::after { background: var(--ink); }

@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav__menu-open .nav__links {
    display: flex;
    position: fixed;
    inset: 0;
    background: var(--bg-dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 99;
  }
  .nav__menu-open .nav__links a {
    color: #fff !important;
    font-size: 1.5rem;
    font-family: var(--font-display);
  }
  .nav__menu-open .nav__cta { background: var(--leaf-bright); }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding: 8rem 0 5rem;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
.hero__bg img {
  position: absolute;
  top: -5%;
  left: 0;
  width: 100%;
  height: 110%;
  object-fit: cover;
  object-position: center 40%;
  will-change: transform;
}
@keyframes hero-zoom {
  to { transform: scale(1); }
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 75%, rgba(24,33,26,0.85) 0%, rgba(24,33,26,0.45) 50%, rgba(24,33,26,0.35) 100%),
    linear-gradient(180deg, rgba(24,33,26,0.4) 0%, rgba(24,33,26,0.25) 30%, rgba(24,33,26,0.92) 100%);
  z-index: -1;
}
.hero__content {
  max-width: 880px;
  position: relative;
}
.hero__eyebrow {
  color: var(--leaf-bright);
}
.hero__eyebrow::before { background: var(--leaf-bright); }

.hero h1 {
  color: #fff !important;
  margin: 1.2rem 0 1.5rem;
  font-weight: 400;
  text-shadow: 0 2px 40px rgba(0,0,0,0.7), 0 4px 8px rgba(0,0,0,0.5);
}
.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--leaf-bright);
  font-variation-settings: 'opsz' 144, 'SOFT' 80;
  text-shadow: 0 4px 30px rgba(0,0,0,0.6), 0 2px 6px rgba(0,0,0,0.5);
}
.hero__sub, .hero p {
  color: rgba(255,255,255,0.95);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  max-width: 600px;
  margin-bottom: 2.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  right: var(--gutter);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.hero__scroll::after {
  content: "";
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.4);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.7) 50%, rgba(255,255,255,0) 100%);
  background-size: 100% 200%;
  animation: scroll-line 2.4s ease-in-out infinite;
}
@keyframes scroll-line {
  0%   { background-position: 0 -100%; }
  100% { background-position: 0 100%; }
}
@media (max-width: 700px) {
  .hero__scroll { display: none; }
}

/* Page hero (für Unterseiten – kompakter) */
.page-hero {
  position: relative;
  padding: 12rem 0 6rem;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  min-height: 60vh;
  display: flex;
  align-items: center;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
.page-hero__bg img {
  position: absolute;
  top: -5%;
  left: 0;
  width: 100%;
  height: 110%;
  object-fit: cover;
  object-position: center 40%;
  will-change: transform;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(24,33,26,0.7), rgba(24,33,26,0.85)),
    linear-gradient(90deg, rgba(24,33,26,0.5) 0%, rgba(24,33,26,0) 60%);
  z-index: -1;
}
.page-hero__content { max-width: 800px; }
.page-hero h1 { color: #fff; margin: 1rem 0 1.5rem; font-weight: 300; }
.page-hero h1 em { font-style: italic; color: var(--leaf-bright); }
.page-hero p { color: rgba(255,255,255,0.85); font-size: 1.15rem; }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.8rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform .3s cubic-bezier(.4,0,.2,1), background-color .3s, color .3s, box-shadow .3s;
  white-space: nowrap;
}
.btn--primary {
  background: var(--leaf-bright);
  color: var(--bg-dark);
  box-shadow: 0 8px 24px -8px rgba(123, 169, 81, 0.6);
}
.btn--primary:hover {
  background: #8cbf5b;
  transform: translateY(-3px);
  box-shadow: 0 14px 32px -8px rgba(123, 169, 81, 0.7);
}
.btn--ghost {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(10px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-3px);
}
.btn--dark {
  background: var(--ink);
  color: #fff;
}
.btn--dark:hover { background: var(--moss); transform: translateY(-3px); }

.btn--whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 8px 24px -8px rgba(37, 211, 102, 0.5);
}
.btn--whatsapp:hover {
  background: #1ebd5a;
  transform: translateY(-3px);
  box-shadow: 0 14px 32px -8px rgba(37, 211, 102, 0.6);
  color: #fff;
}

.btn__arrow {
  width: 18px;
  height: 18px;
  transition: transform .3s;
}
.btn:hover .btn__arrow { transform: translateX(4px); }

/* ==========================================================================
   SECTIONS
   ========================================================================== */
section { position: relative; }

.section {
  padding: var(--section-y) 0;
}
.section--dark {
  background: var(--bg-dark);
  color: #fff;
  overflow: hidden;
}
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: #fff; }
.section--dark p { color: rgba(255,255,255,0.72); }

.section__head {
  max-width: 800px;
  margin-bottom: 4rem;
}
.section__head h2 { margin: 1rem 0 1.25rem; }

/* ==========================================================================
   INTRO / ABOUT
   ========================================================================== */
.intro {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.intro__text h2 { margin: 1rem 0 1.5rem; }
.intro__text .lead { margin-bottom: 1.5rem; }
.intro__signature {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(24,33,26,0.12);
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: padding-right .35s cubic-bezier(.2,0,.2,1);
}
a.intro__signature:hover { padding-right: 0.4rem; }
.intro__signature-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--leaf-bright);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .35s cubic-bezier(.2,0,.2,1), background-color .35s ease;
}
a.intro__signature:hover .intro__signature-arrow {
  transform: translateX(4px);
  background: #8cbf5b;
}
a.intro__signature:hover .intro__signature-name {
  color: var(--moss);
}
.intro__signature-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--moss);
  transition: color .25s ease;
}
.intro__signature-role {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.intro__media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.intro__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,0,.2,1);
}
.intro__media:hover img { transform: scale(1.04); }

.intro__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(24,33,26,0.3));
  z-index: 1;
  pointer-events: none;
}
.intro__badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 2;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 1.4rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.intro__badge-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--moss);
  line-height: 1;
}
.intro__badge-label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  line-height: 1.3;
}

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

/* ==========================================================================
   SERVICES (Card grid)
   ========================================================================== */
.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 700px) { .services { grid-template-columns: 1fr; } }

.service-card {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 5 / 4;
  isolation: isolate;
  cursor: pointer;
  background: var(--bg-dark);
}
.service-card__img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.service-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s cubic-bezier(.2,0,.2,1);
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24,33,26,0.05) 0%, rgba(24,33,26,0.3) 50%, rgba(24,33,26,0.92) 100%);
  z-index: 1;
}
.service-card:hover .service-card__img img { transform: scale(1.08); }

.service-card__body {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}
.service-card__num {
  position: absolute;
  top: 1.5rem;
  left: 2rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  color: var(--leaf-bright);
}
.service-card__title {
  color: #fff;
  margin-bottom: 0.6rem;
  font-weight: 400;
}
.service-card__desc {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  max-width: 30ch;
}
.service-card__more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--leaf-bright);
}
.service-card__more svg { transition: transform .3s; }
.service-card:hover .service-card__more svg { transform: translateX(5px); }

/* ==========================================================================
   FEATURE STRIPE (split image + text alternating)
   ========================================================================== */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}
.feature--reverse .feature__media { order: 2; }
.feature__media {
  aspect-ratio: 5 / 6;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}
.feature__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}
.feature:hover .feature__media img { transform: scale(1.05); }
.feature__text h2 { margin: 1rem 0 1.5rem; }
.feature__list {
  list-style: none;
  margin-top: 2rem;
  padding: 0;
}
.feature__list li {
  padding: 0.9rem 0;
  border-top: 1px solid rgba(24,33,26,0.1);
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  font-size: 1rem;
  color: var(--ink);
}
.feature__list li:last-child { border-bottom: 1px solid rgba(24,33,26,0.1); }
.feature__list li::before {
  content: "";
  flex-shrink: 0;
  width: 8px; height: 8px;
  margin-top: 0.55rem;
  background: var(--leaf-bright);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(123,169,81,0.18);
}
.section--dark .feature__list li { color: rgba(255,255,255,0.85); border-top-color: rgba(255,255,255,0.12); }
.section--dark .feature__list li:last-child { border-bottom-color: rgba(255,255,255,0.12); }

@media (max-width: 880px) {
  .feature { grid-template-columns: 1fr; }
  .feature--reverse .feature__media { order: 0; }
}

/* ==========================================================================
   STATS / NUMBERS
   ========================================================================== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--bg-dark);
  color: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat {
  padding: 3rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.08);
  text-align: left;
}
.stat:last-child { border-right: none; }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--leaf-bright);
  line-height: 1;
  letter-spacing: -0.04em;
}
.stat__label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  margin-top: 0.6rem;
  letter-spacing: 0.05em;
}
@media (max-width: 760px) {
  .stats { grid-template-columns: repeat(2,1fr); }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); }
  .stat:nth-last-child(-n+2) { border-bottom: none; }
}

/* ==========================================================================
   GALLERY GRID
   ========================================================================== */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 180px;
  gap: 1rem;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(.2,0,.2,1);
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(24,33,26,0.35));
  opacity: 0;
  transition: opacity .35s;
}
.gallery__item:hover::after { opacity: 1; }

.gallery__item--lg  { grid-column: span 6; grid-row: span 2; }
.gallery__item--md  { grid-column: span 6; grid-row: span 2; }
.gallery__item--sm  { grid-column: span 4; grid-row: span 2; }
.gallery__item--xs  { grid-column: span 4; grid-row: span 2; }

@media (max-width: 880px) {
  .gallery { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 140px; }
  .gallery__item--lg  { grid-column: span 6; grid-row: span 2; }
  .gallery__item--md  { grid-column: span 3; grid-row: span 2; }
  .gallery__item--sm  { grid-column: span 3; grid-row: span 2; }
  .gallery__item--xs  { grid-column: span 6; grid-row: span 2; }
}

/* Banner image (single hero image of a section) + paired images below */
.gallery-banner {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 1.5rem;
  max-height: 70vh;
}
.gallery-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 1.4s cubic-bezier(.2,0,.2,1);
}
.gallery-banner:hover img { transform: scale(1.04); }

.gallery-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.gallery-pair__item {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.gallery-pair__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,0,.2,1);
}
.gallery-pair__item:hover img { transform: scale(1.05); }
@media (max-width: 700px) {
  .gallery-pair { grid-template-columns: 1fr; }
  .gallery-banner { aspect-ratio: 16 / 10; }
}

/* ==========================================================================
   PROCESS / STEPS
   ========================================================================== */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.process__step {
  position: relative;
  padding: 2rem 1.5rem;
  background: var(--bg-card);
  border-radius: var(--radius);
  transition: transform .35s ease, box-shadow .35s ease;
}
.section--dark .process__step {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.process__step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.process__num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--leaf-bright);
  line-height: 1;
  display: block;
  margin-bottom: 1rem;
}
.process__step h4 { margin-bottom: 0.5rem; }
.process__step p { font-size: 0.95rem; color: var(--ink-soft); }
.section--dark .process__step p { color: rgba(255,255,255,0.7); }

/* Winter card — small accent indicating "wir ruhen mit" */
.process__step--winter {
  background: linear-gradient(160deg, rgba(123,169,81,0.08) 0%, var(--bg-card) 60%);
  border: 1px solid rgba(123,169,81,0.18);
  position: relative;
}
.process__step--winter::before {
  content: "❄";
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  font-size: 1.5rem;
  color: var(--leaf);
  opacity: 0.4;
}
.process__step--winter .process__num { color: var(--moss); }

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

/* ==========================================================================
   QUOTE / TESTIMONIAL
   ========================================================================== */
.quote {
  position: relative;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
}
.quote::before {
  content: "";
  display: none;
}
.quote__text {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  color: var(--ink);
  margin: 0 auto 2rem;
  font-variation-settings: 'opsz' 100, 'SOFT' 60;
}
.section--dark .quote__text { color: #fff; }
.quote__author {
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ==========================================================================
   CTA BAND
   ========================================================================== */
.cta-band {
  position: relative;
  padding: clamp(4rem, 9vw, 7rem) 0;
  text-align: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.cta-band__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.cta-band__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(31,53,32,0.92), rgba(24,33,26,0.85));
  z-index: -1;
}
.cta-band h2 {
  color: #fff;
  font-weight: 300;
  max-width: 18ch;
  margin: 0 auto 1.5rem;
}
.cta-band h2 em { color: var(--leaf-bright); font-style: italic; }
.cta-band p { color: rgba(255,255,255,0.8); max-width: 60ch; margin: 0 auto 2.5rem; }
.cta-band__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
}
.contact__info ul {
  list-style: none;
  margin-top: 2rem;
}
.contact__info li {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(24,33,26,0.1);
}
.contact__info li:last-child { border-bottom: none; }
.contact__icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(123,169,81,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--leaf);
}
.contact__label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: block;
  margin-bottom: 2px;
}
.contact__val {
  font-size: 1.05rem;
  color: var(--ink);
  font-weight: 500;
}
.contact__val a:hover { color: var(--leaf); }

.contact__form {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.contact__form h3 { margin-bottom: 1.5rem; }
.field {
  margin-bottom: 1.2rem;
}
.field label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 0.5rem;
}
.field input,
.field textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  background: var(--bg);
  border: 1.5px solid transparent;
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  transition: border-color .25s, background-color .25s;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--leaf-bright);
  background: #fff;
}
.field textarea { min-height: 130px; resize: vertical; }

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

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
.footer__sub {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--leaf-bright);
  margin-bottom: 1rem;
}
.footer h4 {
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  font-family: var(--font-body);
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 0.7rem; }
.footer a:hover { color: var(--leaf-bright); }
.footer__bottom {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
@media (max-width: 760px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer__top { grid-template-columns: 1fr; }
}

/* ==========================================================================
   ORGANIC DECORATIONS
   ========================================================================== */
.divider-leaf {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 2rem 0;
  color: var(--leaf);
}
.divider-leaf::before,
.divider-leaf::after {
  content: "";
  flex: 1;
  max-width: 100px;
  height: 1px;
  background: linear-gradient(to right, transparent, currentColor, transparent);
}

/* Decorative floating leaves (CSS-only, geometric SVG decoration) */
.deco-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
  opacity: 0.4;
  z-index: 0;
}
.deco-circle--moss { background: var(--moss); }
.deco-circle--leaf { background: var(--leaf-bright); }

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   Reveal items are hidden only when JS confirms it can animate them.
   Without JS (or before JS runs) everything stays visible.
   ========================================================================== */
.js .reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s cubic-bezier(.2,0,.2,1), transform .9s cubic-bezier(.2,0,.2,1);
  transition-delay: var(--delay, 0ms);
}
.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.js .reveal--scale { transform: translateY(20px) scale(.96); }
.js .reveal--scale.is-visible { transform: translateY(0) scale(1); }

/* Subtle floating animation for hero badges */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.float { animation: float 4s ease-in-out infinite; }

/* Wave SVG decoration for section transitions */
.wave-divider {
  display: block;
  width: 100%;
  height: 80px;
  margin: 0;
}

/* Marquee for service tags */
.marquee {
  overflow: hidden;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(24,33,26,0.08);
  border-bottom: 1px solid rgba(24,33,26,0.08);
  background: var(--bg);
}
.marquee__track {
  display: flex;
  gap: 4rem;
  animation: marquee 35s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee__item {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-style: italic;
  font-weight: 400;
  color: var(--moss);
  display: flex;
  align-items: center;
  gap: 4rem;
  text-decoration: none;
  transition: color .25s ease;
}
a.marquee__item:hover {
  color: var(--leaf-bright);
}
.marquee__item::after {
  content: "✦";
  color: var(--leaf-bright);
  font-style: normal;
  font-size: 0.7em;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Selection */
::selection {
  background: var(--leaf-bright);
  color: var(--ink);
}

/* ==========================================================================
   LEGAL PAGES (Impressum, Datenschutz)
   ========================================================================== */
.container--narrow {
  max-width: 820px;
}

.legal-header {
  background: var(--bg-dark);
  color: #fff;
  padding: 9rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.legal-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(123,169,81,0.12), transparent 60%),
    radial-gradient(ellipse at 10% 80%, rgba(123,169,81,0.08), transparent 60%);
  pointer-events: none;
}
.legal-header h1 {
  color: #fff;
  margin: 1rem 0 1rem;
  font-weight: 400;
  font-size: clamp(2.5rem, 5vw, 4rem);
}
.legal-header .lead {
  color: rgba(255,255,255,0.78);
  max-width: 60ch;
}

.section--legal {
  padding: 4rem 0 6rem;
}
.section--legal h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  margin: 3rem 0 1rem;
  color: var(--moss);
}
.section--legal h2:first-of-type { margin-top: 0; }
.section--legal h3 {
  font-size: 1.2rem;
  margin: 1.8rem 0 0.8rem;
  color: var(--ink);
}
.section--legal p {
  color: var(--ink);
  margin-bottom: 1rem;
  max-width: 70ch;
  line-height: 1.7;
}
.section--legal a {
  color: var(--moss);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color .25s ease;
}
.section--legal a:hover { color: var(--leaf); }
.section--legal strong { color: var(--ink); font-weight: 600; }

.legal-intro {
  padding: 1.5rem 1.75rem;
  background: var(--bg-card);
  border-left: 3px solid var(--leaf-bright);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 2.5rem;
}

.legal-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
}
.legal-list li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.5rem;
  color: var(--ink);
}
.legal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.95rem;
  width: 6px; height: 6px;
  background: var(--leaf-bright);
  border-radius: 50%;
}

.legal-note {
  font-size: 0.9rem;
  color: var(--ink-soft);
  font-style: italic;
  margin-top: 1.5rem;
}

/* Aufklappbare Datenschutz-Sektionen */
.legal-detail {
  background: var(--bg-card);
  border: 1px solid rgba(24,33,26,0.08);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: box-shadow .25s ease, border-color .25s ease;
}
.legal-detail:hover {
  border-color: rgba(123,169,81,0.4);
  box-shadow: var(--shadow-sm);
}
.legal-detail[open] {
  border-color: rgba(123,169,81,0.5);
  box-shadow: var(--shadow);
}

.legal-detail summary {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  list-style: none;
  position: relative;
  font-weight: 500;
  color: var(--ink);
}
.legal-detail summary::-webkit-details-marker { display: none; }
.legal-detail summary::after {
  content: "";
  margin-left: auto;
  width: 14px;
  height: 14px;
  border-right: 2px solid var(--leaf);
  border-bottom: 2px solid var(--leaf);
  transform: rotate(45deg);
  transition: transform .3s cubic-bezier(.2,0,.2,1);
  flex-shrink: 0;
}
.legal-detail[open] summary::after {
  transform: rotate(-135deg);
}

.legal-detail__num {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--leaf);
  font-weight: 500;
  min-width: 2.5rem;
}
.legal-detail__title {
  font-family: var(--font-body);
  font-size: 1.05rem;
  flex: 1;
}

.legal-detail__body {
  padding: 0 1.5rem 1.5rem 4rem;
  border-top: 1px solid rgba(24,33,26,0.06);
  padding-top: 1.5rem;
}
.legal-detail__body p {
  font-size: 0.97rem;
  margin-bottom: 0.9rem;
}
.legal-detail__body p:last-child { margin-bottom: 0; }
.legal-detail__body .legal-list li {
  font-size: 0.97rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.legal-detail__body .legal-list li::before { top: 0.7rem; }

@media (max-width: 600px) {
  .legal-detail summary { padding: 1rem 1.1rem; gap: 0.6rem; }
  .legal-detail__body { padding: 1.2rem 1.1rem 1.2rem 1.1rem; }
  .legal-detail__num { min-width: 2rem; }
}

.legal-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(24,33,26,0.1);
}

.btn--ghost-dark {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid rgba(24,33,26,0.2);
}
.btn--ghost-dark:hover {
  background: rgba(24,33,26,0.04);
  border-color: var(--ink);
  transform: translateY(-3px);
}
