/* Grünwerk — FREILAND Design · Demo-Konzept · Kruithoff Design */
/* Bricolage Grotesque (headings) + Inter (body) · Airy light organic theme */

:root {
  /* Color tokens — exact from brief */
  --bg: #FFFFFF;
  --bg-sage: #EEF3E9;
  --bg-sand: #FAF6EC;
  --card: #FFFFFF;
  --forest: #2F5233;
  --forest-2: #3E6B43;
  --clay: #C25B3A;
  --clay-hi: #DB8A6E;
  --ink: #1C2A1E;
  --muted: #5E6B5A;
  --faint: #92A08C;
  --line: #E2E8DC;

  /* Radii — generous rounded, organic */
  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-xl: 40px;
  --r-pill: 999px;

  /* Shadows — soft, organic */
  --sh-card: 0 4px 24px rgba(47, 82, 51, 0.08);
  --sh-lift: 0 12px 40px rgba(47, 82, 51, 0.13);
  --sh-float: 0 24px 64px rgba(47, 82, 51, 0.18);

  /* Ease */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  /* Typography */
  --font-head: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Inter', sans-serif;

  --maxw: 1200px;
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  line-height: 1.1;
  font-weight: 700;
  color: var(--ink);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
section { position: relative; }

/* ── DEMO RIBBON ─────────────────────────────────────────── */
.demo-ribbon {
  background: var(--forest);
  color: rgba(255,255,255,0.82);
  font-family: var(--font-head);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-align: center;
  padding: 8px 16px;
  position: relative;
  z-index: 100;
}
.demo-ribbon a { color: var(--clay-hi); font-weight: 700; }

/* ── HEADER ──────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  padding: 18px 0;
  transition: background 0.35s, box-shadow 0.35s, padding 0.35s;
}
.site-header.solid {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line), 0 4px 24px rgba(47,82,51,0.06);
  padding: 12px 0;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 22px;
  color: #fff;
  transition: color 0.3s;
  flex-shrink: 0;
}
.site-header.solid .logo { color: var(--ink); }
.logo-leaf {
  width: 38px; height: 38px;
  background: var(--forest);
  border-radius: 50% 50% 50% 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s;
}
.site-header.solid .logo-leaf { background: var(--forest); }
.logo-leaf svg { width: 20px; height: 20px; }
.logo-text b { color: var(--clay); }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  color: rgba(255,255,255,0.9);
  padding: 8px 16px;
  border-radius: var(--r-pill);
  transition: color 0.25s, background 0.25s;
}
.site-header.solid .nav-links a { color: var(--ink); }
.nav-links a:hover { color: var(--forest); background: var(--bg-sage); }
.site-header.solid .nav-links a:hover { background: var(--bg-sage); color: var(--forest); }
.nav-links a.active {
  color: var(--forest) !important;
  background: rgba(238,243,233,0.55) !important;
}
.site-header.solid .nav-links a.active {
  background: var(--bg-sage) !important;
}

/* Nav right */
.nav-right { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.nav-phone {
  display: flex; align-items: center; gap: 7px;
  font-family: var(--font-head); font-weight: 600; font-size: 14px;
  color: rgba(255,255,255,0.9);
  transition: color 0.3s;
}
.site-header.solid .nav-phone { color: var(--ink); }
.nav-phone svg { width: 15px; height: 15px; flex-shrink: 0; }

/* Burger */
.burger {
  display: none;
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  border: 1.5px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  align-items: center; justify-content: center;
  transition: border-color 0.3s, background 0.3s;
}
.site-header.solid .burger { border-color: var(--line); background: var(--bg); }
.burger span {
  width: 20px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s var(--ease);
  display: block;
}
.site-header.solid .burger span { background: var(--ink); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 55;
  background: var(--bg);
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 48px 36px;
  gap: 4px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: var(--font-head); font-weight: 700;
  font-size: 28px; color: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  transition: color 0.2s;
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--forest); }
.mm-foot {
  margin-top: 28px;
  display: flex; flex-direction: column; gap: 6px;
  color: var(--muted); font-size: 14.5px;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head); font-weight: 700; font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--r-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; flex-shrink: 0; }
.btn-forest { background: var(--forest); color: #fff; }
.btn-forest:hover { background: var(--forest-2); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(47,82,51,0.3); }
.btn-clay { background: var(--clay); color: #fff; }
.btn-clay:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(194,91,58,0.35); }
.btn-outline-forest { background: transparent; color: var(--forest); border-color: var(--forest); }
.btn-outline-forest:hover { background: var(--forest); color: #fff; transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.btn-outline-white:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--forest); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,0.12); }

/* ── EYEBROW ─────────────────────────────────────────────── */
.eyebrow {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--clay);
  border-radius: 2px;
  flex-shrink: 0;
}
.eyebrow.light { color: var(--clay-hi); }
.eyebrow.light::before { background: var(--clay-hi); }
.eyebrow.sage { color: var(--faint); }
.eyebrow.sage::before { background: var(--faint); }

/* ── SECTION HELPERS ─────────────────────────────────────── */
.pad { padding: 100px 0; }
.pad-sm { padding: 72px 0; }
.section-head { max-width: 600px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head h2 { margin: 16px 0 14px; font-size: clamp(1.9rem, 3.4vw, 2.7rem); color: var(--ink); font-weight: 700; }
.section-head p { color: var(--muted); font-size: 1.06rem; line-height: 1.7; }
.h-xl { font-size: clamp(2.5rem, 5.5vw, 4.2rem); }
.h-lg { font-size: clamp(1.85rem, 3.2vw, 2.6rem); }
.lead { font-size: 1.08rem; color: var(--muted); line-height: 1.72; }

/* KI tag */
.ki-tag {
  position: absolute; right: 16px; bottom: 14px; z-index: 4;
  font-family: var(--font-head); font-size: 10px; font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.75);
  background: rgba(28,42,30,0.5);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 4px 9px; border-radius: 6px;
  backdrop-filter: blur(4px);
}

/* ── HOMEPAGE HERO — organic / airy ─────────────────────── */
.hero {
  background: var(--bg-sage);
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.hero-content {
  padding: 140px 56px 100px 48px;
  display: flex; flex-direction: column; justify-content: center;
  max-width: 600px;
  margin-left: auto;
  position: relative; z-index: 1;
}
.hero-content .eyebrow { margin-bottom: 20px; }
.hero-content h1 {
  font-size: clamp(2.4rem, 4.8vw, 4rem);
  line-height: 1.08;
  color: var(--ink); margin-bottom: 22px; font-weight: 800;
}
.hero-content h1 em { font-style: normal; color: var(--forest); }
.hero-sub {
  font-size: 1.12rem; color: var(--muted);
  max-width: 480px; margin-bottom: 36px; line-height: 1.68;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 0;
  border-top: 1px solid var(--line); padding-top: 28px;
}
.hero-trust-pill {
  display: flex; align-items: center; gap: 7px;
  font-family: var(--font-head); font-weight: 600; font-size: 13px;
  color: var(--muted); padding: 5px 18px 5px 0;
}
.hero-trust-pill svg { width: 15px; height: 15px; color: var(--forest); flex-shrink: 0; }

/* Right: large rounded image mask */
.hero-media-wrap {
  position: relative;
  height: 100%;
  min-height: 100vh;
  overflow: hidden;
  border-radius: var(--r-xl) 0 0 var(--r-xl);
}
.hero-media-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* Decorative leaf background SVG */
.hero-leaf-bg {
  position: absolute;
  bottom: 0; left: -20px;
  width: 260px; height: 260px;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}

/* ── WAVE / CURVED SVG DIVIDERS ──────────────────────────── */
.wave-divider {
  display: block; width: 100%; overflow: hidden;
  line-height: 0; position: relative; z-index: 1;
}
.wave-divider svg { display: block; width: 100%; }

/* ── TRUST BAND ──────────────────────────────────────────── */
.trust-band { background: var(--bg-sage); padding: 52px 0; }
.trust-pills {
  display: flex; justify-content: center;
  flex-wrap: wrap; gap: 12px;
}
.trust-pill {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: var(--r-pill);
  padding: 12px 22px;
  font-family: var(--font-head); font-weight: 600; font-size: 14px;
  color: var(--ink);
  box-shadow: var(--sh-card);
}
.trust-pill svg { width: 18px; height: 18px; color: var(--forest); flex-shrink: 0; }
.trust-pill .tp-num { font-weight: 800; color: var(--forest); }

/* ── SERVICE CARDS ───────────────────────────────────────── */
.svc-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
.svc-card {
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: var(--r-lg);
  padding: 38px 34px;
  display: flex; flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
  box-shadow: var(--sh-card);
  text-decoration: none; color: inherit;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--sh-float); }
.svc-ic {
  width: 56px; height: 56px;
  background: var(--bg-sage);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; flex-shrink: 0;
}
.svc-ic svg { width: 26px; height: 26px; color: var(--forest); }
.svc-card h3 { font-size: 1.2rem; color: var(--ink); margin-bottom: 10px; }
.svc-card p { color: var(--muted); font-size: 0.99rem; flex: 1; line-height: 1.66; }
.svc-more {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 18px;
  font-family: var(--font-head); font-weight: 700; font-size: 13px;
  color: var(--forest);
}
.svc-more svg { width: 14px; height: 14px; transition: transform 0.25s; }
.svc-card:hover .svc-more svg { transform: translateX(4px); }

/* ── FEATURE SPLIT ───────────────────────────────────────── */
.feature-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; align-items: center; overflow: hidden;
}
.feature-split.flip .feat-text { order: 1; }
.feature-split.flip .feat-media { order: 2; }
.feat-media {
  position: relative; min-height: 500px;
  overflow: hidden;
  border-radius: var(--r-xl);
  margin: 40px 0 40px 40px;
}
.feature-split.flip .feat-media { margin: 40px 40px 40px 0; }
.feat-media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.feat-text {
  padding: 80px clamp(36px, 5vw, 72px);
  display: flex; flex-direction: column; justify-content: center;
}
.feat-text .eyebrow { margin-bottom: 18px; }
.feat-text h2 { margin-bottom: 18px; color: var(--ink); }
.feat-text p { color: var(--muted); font-size: 1.02rem; margin-bottom: 18px; line-height: 1.72; }
.feat-list {
  list-style: none; display: flex; flex-direction: column; gap: 11px;
  margin-top: 6px;
}
.feat-list li {
  display: flex; gap: 11px; align-items: flex-start;
  color: var(--muted); font-size: 0.99rem;
}
.feat-list svg { width: 19px; height: 19px; color: var(--forest); flex-shrink: 0; margin-top: 3px; }

/* ── PROCESS — flowing journey ───────────────────────────── */
.process-section { background: var(--bg-sage); padding: 100px 0; }
.journey {
  position: relative;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 60px;
}
.journey::before {
  content: '';
  position: absolute;
  top: 44px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--line) 0%, var(--forest) 50%, var(--line) 100%);
  z-index: 0; border-radius: 2px;
}
.journey-step {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 0 16px;
  position: relative; z-index: 1;
}
.journey-step-num {
  width: 88px; height: 88px;
  background: var(--bg);
  border: 2.5px solid var(--line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
  transition: border-color 0.3s, box-shadow 0.3s;
  flex-shrink: 0;
  box-shadow: var(--sh-card);
}
.journey-step:hover .journey-step-num { border-color: var(--forest); box-shadow: 0 0 0 6px rgba(47,82,51,0.08); }
.journey-step-num svg { width: 32px; height: 32px; color: var(--forest); }
.journey-step-tag {
  font-family: var(--font-head); font-weight: 700;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--clay); margin-bottom: 10px;
}
.journey-step h3 { font-size: 1.04rem; color: var(--ink); margin-bottom: 9px; }
.journey-step p { color: var(--muted); font-size: 0.92rem; line-height: 1.62; }

/* ── STAT PILLS ──────────────────────────────────────────── */
.stat-pills-wrap { background: var(--bg-sand); padding: 68px 0; }
.stat-pills { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; }
.stat-pill {
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: var(--r-pill);
  padding: 20px 36px;
  text-align: center;
  box-shadow: var(--sh-card); min-width: 160px;
}
.stat-pill .sp-num {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--forest); line-height: 1; display: block;
}
.stat-pill .sp-lbl { font-size: 13px; color: var(--muted); margin-top: 6px; display: block; }

/* ── SEASONAL FEATURE ────────────────────────────────────── */
.seasonal { padding: 80px 0; background: var(--bg); }
.seasonal-inner {
  background: var(--bg-sage);
  border-radius: var(--r-xl); overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr; min-height: 440px;
}
.seasonal-media { position: relative; overflow: hidden; }
.seasonal-media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.seasonal-text {
  padding: 60px 52px;
  display: flex; flex-direction: column; justify-content: center;
}
.seasonal-text .eyebrow { margin-bottom: 16px; }
.seasonal-text h2 { font-size: clamp(1.6rem, 2.8vw, 2.3rem); margin-bottom: 16px; }
.seasonal-text p { color: var(--muted); font-size: 0.99rem; margin-bottom: 24px; line-height: 1.7; }

/* ── REVIEWS ─────────────────────────────────────────────── */
.reviews-section { background: var(--bg-sand); padding: 100px 0; }
.grev-header {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px 32px; margin-bottom: 40px;
  box-shadow: var(--sh-card);
}
.grev-logo-wrap {
  display: flex; align-items: center; gap: 11px;
  font-family: var(--font-head); font-weight: 700; font-size: 17px; color: var(--ink);
}
.grev-logo-wrap svg { width: 24px; height: 24px; }
.grev-score { display: flex; align-items: baseline; gap: 10px; }
.grev-score b { font-family: var(--font-head); font-weight: 800; font-size: 32px; color: var(--ink); }
.gstars { display: inline-flex; gap: 2px; }
.gstars svg { width: 17px; height: 17px; color: #FBBC04; }
.grev-meta { color: var(--muted); font-size: 13.5px; }
.grev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grev-card {
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px; display: flex; flex-direction: column; gap: 13px;
  box-shadow: var(--sh-card);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.grev-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lift); }
.grev-top { display: flex; align-items: center; gap: 13px; }
.grev-av {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--bg-sage); color: var(--forest);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 17px;
  flex-shrink: 0; border: 2px solid var(--line);
}
.grev-name { font-family: var(--font-head); font-weight: 700; font-size: 14.5px; color: var(--ink); }
.grev-date { font-size: 12px; color: var(--faint); margin-top: 1px; }
.grev-card .gstars svg { width: 14px; height: 14px; }
.grev-card p { color: var(--muted); font-size: 0.95rem; line-height: 1.65; flex: 1; }
.grev-g { display: flex; align-items: center; gap: 6px; font-size: 11.5px; color: var(--faint); margin-top: auto; }
.grev-g svg { width: 13px; height: 13px; }

/* ── CTA PANEL ───────────────────────────────────────────── */
.cta-panel { padding: 80px 0; background: var(--bg); }
.cta-inner {
  background: var(--forest);
  border-radius: var(--r-xl);
  padding: 72px 72px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-inner::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 320px; height: 320px;
  background: rgba(255,255,255,0.05); border-radius: 50%;
  pointer-events: none;
}
.cta-inner::after {
  content: ''; position: absolute; bottom: -60px; left: -60px;
  width: 240px; height: 240px;
  background: rgba(255,255,255,0.04); border-radius: 50%;
  pointer-events: none;
}
.cta-inner h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: #fff; margin-bottom: 14px; position: relative; z-index: 1; }
.cta-inner p { color: rgba(255,255,255,0.78); max-width: 520px; margin: 0 auto 32px; font-size: 1.06rem; position: relative; z-index: 1; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ── PAGE HERO ───────────────────────────────────────────── */
.page-hero { position: relative; padding-top: 100px; background: var(--bg-sage); overflow: hidden; }
.page-hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; align-items: end; min-height: 380px;
}
.page-hero-text { padding: 64px 0 60px; }
.page-hero-text .eyebrow { margin-bottom: 16px; }
.page-hero-text h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); line-height: 1.1; color: var(--ink); margin-bottom: 14px; }
.page-hero-text p { color: var(--muted); font-size: 1.05rem; max-width: 480px; line-height: 1.68; }
.page-hero-img {
  position: relative; height: 420px;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  overflow: hidden; align-self: end;
}
.page-hero-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.page-hero-img .ki-tag { bottom: 14px; right: 14px; }
.crumb { font-family: var(--font-head); font-size: 13px; color: var(--faint); font-weight: 600; margin-bottom: 14px; display: block; }
.crumb a:hover { color: var(--forest); }

/* ── ABOUT PAGE ──────────────────────────────────────────── */
.story-block { background: var(--bg); padding: 96px 0; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.story-text .eyebrow { margin-bottom: 18px; }
.story-text h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 18px; }
.story-text p { color: var(--muted); font-size: 1.02rem; line-height: 1.75; margin-bottom: 16px; }
.story-media { border-radius: var(--r-xl); overflow: hidden; height: 440px; position: relative; }
.story-media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.values-section { background: var(--bg-sage); padding: 96px 0; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 52px; }
.value-card {
  background: var(--bg); border: 1.5px solid var(--line); border-radius: var(--r-lg);
  padding: 32px 28px; text-align: center; box-shadow: var(--sh-card);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.value-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lift); }
.value-ic { width: 56px; height: 56px; background: var(--bg-sage); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.value-ic svg { width: 24px; height: 24px; color: var(--forest); }
.value-card h3 { font-size: 1.08rem; margin-bottom: 10px; }
.value-card p { color: var(--muted); font-size: 0.93rem; line-height: 1.65; }

/* ── LEISTUNGEN BLOCKS ───────────────────────────────────── */
.svc-block { padding: 64px 0; border-bottom: 1.5px solid var(--line); }
.svc-block:last-child { border-bottom: none; }
.svc-block-inner { display: grid; grid-template-columns: 260px 1fr; gap: 56px; align-items: start; }
.svc-block-label { position: sticky; top: 120px; }
.svc-block-label .svc-ic { margin-bottom: 18px; }
.svc-block-label h3 { font-size: 1.35rem; margin-bottom: 10px; }
.svc-block-label p { color: var(--muted); font-size: 0.98rem; line-height: 1.68; }
.svc-block-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.svc-block-list li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.98rem; color: var(--muted);
  background: var(--bg-sage); border-radius: var(--r-md);
  padding: 14px 16px;
}
.svc-block-list svg { width: 17px; height: 17px; color: var(--forest); flex-shrink: 0; margin-top: 3px; }

/* ── KONTAKT PAGE ────────────────────────────────────────── */
.contact-section { background: var(--bg); padding: 80px 0 100px; }
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: start; }
.form-card { background: var(--bg); border: 1.5px solid var(--line); border-radius: var(--r-xl); padding: 48px; box-shadow: var(--sh-lift); }
.form-card h2 { font-size: 1.7rem; margin-bottom: 8px; }
.form-sub { color: var(--muted); font-size: 0.99rem; margin-bottom: 30px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: 13px; color: var(--ink); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 15px;
  padding: 13px 16px;
  border: 1.5px solid var(--line); border-radius: var(--r-md);
  background: var(--bg-sage); color: var(--ink);
  transition: border-color 0.2s, background 0.2s; -webkit-appearance: none;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--forest); background: #fff; }
.field textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 12px; color: var(--faint); margin-top: 10px; }
.form-ok { display: none; margin-top: 16px; padding: 18px 20px; border-radius: var(--r-md); background: rgba(47,82,51,0.08); border: 1.5px solid var(--forest); color: var(--forest); font-family: var(--font-head); font-weight: 600; font-size: 14.5px; }
.form-ok.show { display: flex; align-items: center; gap: 10px; }
.form-ok svg { width: 22px; height: 22px; flex-shrink: 0; }
.info-card { background: var(--forest); border-radius: var(--r-xl); padding: 44px; color: #fff; }
.info-card h2 { font-size: 1.5rem; color: #fff; margin-bottom: 28px; }
.info-row { display: flex; gap: 14px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
.info-row:last-of-type { border-bottom: none; }
.info-icon { width: 42px; height: 42px; border-radius: var(--r-md); background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-icon svg { width: 19px; height: 19px; color: var(--clay-hi); }
.info-row small { font-family: var(--font-head); font-weight: 700; font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.5); display: block; margin-bottom: 3px; }
.info-row b { font-family: var(--font-head); font-size: 1.01rem; display: block; }
.info-row a { color: var(--clay-hi); }
.map-wrap { margin-top: 24px; border-radius: var(--r-lg); overflow: hidden; border: 1.5px solid rgba(255,255,255,0.15); position: relative; }
.map-wrap iframe { width: 100%; height: 240px; border: 0; display: block; }
.map-tag { position: absolute; left: 12px; top: 12px; background: rgba(47,82,51,0.9); color: #fff; font-family: var(--font-head); font-size: 10px; font-weight: 700; padding: 5px 10px; border-radius: 7px; letter-spacing: 0.06em; }

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer { background: var(--forest); color: rgba(255,255,255,0.65); padding: 80px 0 32px; position: relative; }
.foot-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 52px; }
.site-footer .logo { color: #fff; }
.site-footer .logo-leaf { background: rgba(255,255,255,0.15); }
.foot-brand p { font-size: 14px; max-width: 280px; line-height: 1.65; margin-top: 14px; }
.foot-col h4 { font-family: var(--font-head); font-size: 12px; color: rgba(255,255,255,0.5); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 16px; }
.foot-col a, .foot-col p { display: block; font-size: 14px; margin-bottom: 9px; transition: color 0.2s; }
.foot-col a:hover { color: var(--clay-hi); }
.foot-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 12.5px; }
.foot-bottom a { color: rgba(255,255,255,0.6); }
.foot-bottom a:hover { color: var(--clay-hi); }

/* ── WHATSAPP WIDGET ─────────────────────────────────────── */
.wa-fab {
  position: fixed; right: 21px; bottom: 21px; z-index: 80;
  width: 50px; height: 50px; border-radius: 50%;
  background: #25D366; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 22px rgba(37,211,102,0.5);
  transition: transform 0.2s;
}
.wa-fab:hover { transform: scale(1.07); }
.wa-fab svg { width: 25px; height: 25px; color: #fff; }
.wa-pulse {
  position: fixed; right: 21px; bottom: 21px; z-index: 79;
  width: 50px; height: 50px; border-radius: 50%;
  background: #25D366; opacity: 0.4;
  animation: wa-pulse 2.5s infinite; pointer-events: none;
}
@keyframes wa-pulse { 0% { transform: scale(1); opacity: 0.4; } 70% { transform: scale(1.7); opacity: 0; } 100% { opacity: 0; } }
.wa-card {
  position: fixed; right: 21px; bottom: 82px; z-index: 81;
  width: 215px; max-width: calc(100vw - 32px);
  background: #fff; border-radius: 14px;
  box-shadow: 0 18px 48px rgba(0,0,0,0.18);
  overflow: hidden;
  transform: translateY(12px) scale(0.97);
  opacity: 0; pointer-events: none;
  transition: 0.32s var(--ease);
}
.wa-card.show { transform: none; opacity: 1; pointer-events: auto; }
.wa-card-head { background: #075E54; color: #fff; padding: 9px 11px; display: flex; gap: 8px; align-items: center; }
.wa-card-head .av { width: 28px; height: 28px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.wa-card-head .av svg { width: 16px; height: 16px; color: #fff; }
.wa-card-head b { font-family: var(--font-head); font-size: 12px; display: block; line-height: 1.15; }
.wa-card-head .on { font-size: 9.5px; color: #a7f3d0; display: flex; align-items: center; gap: 4px; margin-top: 2px; }
.wa-card-head .on::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #4ade80; flex-shrink: 0; }
.wa-card-head .x { margin-left: auto; background: none; border: none; color: rgba(255,255,255,0.75); font-size: 16px; cursor: pointer; line-height: 1; padding: 2px; }
.wa-card-body { padding: 11px 11px; background: #ECE5DD; }
.wa-bubble { background: #fff; border-radius: 3px 10px 10px 10px; padding: 8px 10px; font-size: 11.5px; color: var(--ink); box-shadow: 0 1px 2px rgba(0,0,0,0.1); line-height: 1.5; }
.wa-bubble .t { font-size: 9px; color: var(--faint); text-align: right; margin-top: 3px; }
.wa-247 { display: flex; align-items: center; gap: 6px; margin-top: 8px; background: #fff; border-radius: 8px; padding: 7px 9px; font-family: var(--font-head); font-weight: 700; font-size: 10px; color: #075E54; box-shadow: 0 1px 2px rgba(0,0,0,0.08); line-height: 1.25; }
.wa-247 svg { width: 13px; height: 13px; color: #25D366; flex-shrink: 0; }
.wa-card-foot { padding: 9px 11px; background: #fff; }
.wa-card-foot a { display: flex; align-items: center; justify-content: center; gap: 6px; background: #25D366; color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 11px; padding: 9px; border-radius: 8px; }
.wa-card-foot a svg { width: 14px; height: 14px; }

/* ── SCROLL REVEAL ───────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(30px); }
.reveal.in { opacity: 1; transform: none; transition: opacity 0.85s var(--ease), transform 0.85s var(--ease); }
.reveal-d1.in { transition-delay: 0.1s; }
.reveal-d2.in { transition-delay: 0.2s; }
.reveal-d3.in { transition-delay: 0.3s; }
.reveal-d4.in { transition-delay: 0.4s; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1000px) {
  .nav-links, .nav-phone, .nav-right .btn { display: none; }
  .burger { display: flex; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-media-wrap { height: 380px; min-height: unset; border-radius: var(--r-xl) var(--r-xl) 0 0; order: -1; }
  .hero-content { padding: 48px 32px 64px; max-width: 100%; margin: 0; }
  .page-hero-inner { grid-template-columns: 1fr; }
  .page-hero-img { height: 280px; border-radius: var(--r-lg); margin-top: 24px; }
  .feature-split { grid-template-columns: 1fr; }
  .feat-media { min-height: 300px; margin: 0 !important; border-radius: var(--r-lg); }
  .feat-text { padding: 48px 0; }
  .journey { grid-template-columns: 1fr 1fr; gap: 32px; }
  .journey::before { display: none; }
  .svc-grid { grid-template-columns: 1fr; }
  .grev-grid { grid-template-columns: 1fr 1fr; }
  .seasonal-inner { grid-template-columns: 1fr; }
  .seasonal-media { height: 260px; position: relative; min-height: 260px; }
  .seasonal-media img { position: relative !important; }
  .seasonal-text { padding: 40px 36px; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-card { padding: 36px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .svc-block-inner { grid-template-columns: 1fr; gap: 24px; }
  .svc-block-label { position: static; }
  .svc-block-list { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr 1fr; gap: 30px; }
  .cta-inner { padding: 52px 36px; }
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .story-media { height: 300px; }
  .pad { padding: 72px 0; }
  .pad-sm { padding: 52px 0; }
}
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .grev-grid { grid-template-columns: 1fr; }
  .journey { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr; }
  .foot-bottom { flex-direction: column; }
  .cta-inner { padding: 48px 28px; }
  .form-card { padding: 28px 22px; }
  .form-card, .info-card { max-width: 100%; box-sizing: border-box; }
  .info-card { padding: 28px 22px; }
  .contact-grid { max-width: 100%; }
  .map-wrap, .map-wrap iframe { max-width: 100%; }
  .wa-fab, .wa-pulse { right: 16px; }
  .wa-card { right: 10px; }
  .hero-ctas { flex-direction: column; }
  .grev-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .feature-split.flip .feat-text { order: unset; }
  .feature-split.flip .feat-media { order: unset; }
}
