﻿/* ═══════════════════════════════════════════════════════════════════
   GARTEN & HAUSSERVICE STÖCKL — v3 (1:1 nach Kunden-Mockup, Foto-Look)
   Foto-Hero mit Badge & Trust-Leiste · 5 Foto-Karten · Stats-Band ·
   Über-uns 3-spaltig · Urlaubs-Banner · Kundenstimmen · CTA-Band.
   v1 = /stoeckl-v1 · ältere Stände in C:\Backups
   ═══════════════════════════════════════════════════════════════════ */

/* ── 1. Tokens (Legal-Seiten bauen darauf) ────────────────────────── */
:root {
  --os-forest:  #1C3318;
  --os-pine:    #2D5016;
  --os-moss:    #3F6423;
  --os-leaf:    #5E8C3A;
  --os-lime:    #7CB342;
  --os-mint:    #EAF4E2;
  --os-mint-2:  #DCECCF;
  --os-cream:   #FAFAF4;
  --os-paper:   #FFFFFF;
  --os-ink:     #1B241A;
  --os-mute:    #5A6655;
  --os-sun:     #F2B705;
  --os-wa:      #25D366;
  --os-wa-deep: #128C4B;

  --gline:     rgba(45, 80, 22, .18);
  --gline-dim: rgba(45, 80, 22, .10);
  --wline:     rgba(255, 255, 255, .16);
  --wline-dim: rgba(255, 255, 255, .09);

  --font-brand: 'Sora', -apple-system, sans-serif;
  --font-body:  'Inter', -apple-system, 'Segoe UI', sans-serif;
  --font-hand:  'Caveat', cursive;
  --font-mono:  'JetBrains Mono', Consolas, monospace;

  --ease: cubic-bezier(.2, .8, .2, 1);

  --shadow-soft:   0 6px 24px rgba(28, 51, 24, .10);
  --shadow-strong: 0 22px 54px rgba(28, 51, 24, .16);
  --shadow-green:  0 10px 30px rgba(94, 140, 58, .35);

  --nav-h: 72px;
}

/* ── 2. Basis ─────────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--os-paper);
  color: var(--os-ink);
  font-family: var(--font-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--os-lime); color: var(--os-forest); }
:focus-visible { outline: 2.5px solid var(--os-leaf); outline-offset: 3px; }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
button, input, textarea { font: inherit; color: inherit; }
button { background: none; border: none; cursor: pointer; }

.container { width: min(1240px, 92vw); margin-inline: auto; }
.container-wide { width: min(1560px, 94vw); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; clip-path: inset(50%); overflow: hidden; }
.mono-label {
  font-family: var(--font-mono); font-size: .68rem;
  letter-spacing: .22em; text-transform: uppercase; color: var(--os-mute);
}

/* ── 3. Typo ──────────────────────────────────────────────────────── */
.eyebrow {
  font-family: var(--font-brand); font-size: .78rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--os-leaf); margin-bottom: 12px;
}
.eyebrow-center { text-align: center; }
.sec-title {
  font-family: var(--font-brand);
  font-size: clamp(25px, 3vw, 38px);
  font-weight: 800; letter-spacing: -.015em; line-height: 1.15;
  color: var(--os-ink);
  text-align: center;
}
.sec-title-left { text-align: left; }

/* ── 4. Buttons ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 11px;
  padding: 15px 28px; border-radius: 10px;
  font-family: var(--font-brand); font-size: .84rem; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase;
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease),
              background 240ms var(--ease), color 240ms var(--ease), border-color 240ms var(--ease);
}
.btn svg { width: 19px; height: 19px; flex-shrink: 0; }
.btn em { font-style: normal; transition: transform 240ms var(--ease); }
.btn:hover em { transform: translateX(4px); }
.btn-solid { background: var(--os-pine); color: #fff; box-shadow: 0 10px 26px rgba(28, 51, 24, .26); }
.btn-solid:hover { background: var(--os-forest); transform: translateY(-2px); }
.btn-wa { background: var(--os-wa-deep); color: #fff; box-shadow: 0 10px 26px rgba(18, 140, 75, .35); }
.btn-wa:hover { background: #0F7A40; transform: translateY(-2px); box-shadow: 0 14px 34px rgba(18, 140, 75, .42); }
.btn-wa svg { fill: currentColor; }
.btn-ghost { background: rgba(255, 255, 255, .08); border: 2px solid rgba(255, 255, 255, .85); color: #fff; backdrop-filter: blur(4px); }
.btn-ghost:hover { background: #fff; color: var(--os-forest); transform: translateY(-2px); }
.btn-sm { padding: 12px 22px; font-size: .76rem; }
.btn-lg { padding: 18px 36px; font-size: .9rem; }

/* ── 5. Header ────────────────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9500;
  background: rgba(255, 255, 255, .97);
  border-bottom: 1.5px solid var(--gline-dim);
  transition: transform 380ms var(--ease), box-shadow 300ms var(--ease);
}
#navbar.nav-scrolled { box-shadow: 0 8px 28px rgba(28, 51, 24, .08); }
#navbar.nav-hidden { transform: translateY(-100%); }
.nav-inner {
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
.nav-links { display: flex; gap: clamp(16px, 2.2vw, 34px); }
.nav-links a {
  position: relative;
  font-family: var(--font-brand); font-size: .8rem; font-weight: 600;
  color: var(--os-ink); padding: 6px 0;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 2.5px; width: 100%;
  border-radius: 2px; background: var(--os-leaf);
  transform: scaleX(0); transform-origin: right;
  transition: transform 320ms var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-tel {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-brand); font-size: .84rem; font-weight: 700;
  color: var(--os-forest);
}
.nav-tel svg { width: 17px; height: 17px; color: var(--os-leaf); }
.nav-tel:hover { color: var(--os-leaf); }
.nav-wa {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 20px; border-radius: 999px;
  background: var(--os-forest); color: #fff;
  font-family: var(--font-brand); font-size: .78rem; font-weight: 700;
  transition: background 240ms var(--ease), transform 240ms var(--ease), box-shadow 240ms var(--ease);
}
.nav-wa svg { width: 17px; height: 17px; fill: currentColor; }
.nav-wa:hover { background: var(--os-pine); transform: translateY(-1px); box-shadow: var(--shadow-green); }
.nav-burger {
  display: none; flex-direction: column; gap: 7px;
  width: 44px; height: 44px; align-items: center; justify-content: center;
  border: 1.5px solid var(--gline); border-radius: 10px;
}
.nav-burger span { display: block; width: 18px; height: 2.4px; border-radius: 2px; background: var(--os-forest); transition: transform 300ms var(--ease); }
.nav-burger.open span:nth-child(1) { transform: translateY(4.7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { transform: translateY(-4.7px) rotate(-45deg); }

#mobile-menu {
  position: fixed; inset: 0; z-index: 9400;
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 9vw;
  background: rgba(250, 250, 244, .98);
  visibility: hidden; opacity: 0; pointer-events: none;
  transition: opacity 320ms var(--ease), visibility 320ms;
}
#mobile-menu.open { visibility: visible; opacity: 1; pointer-events: auto; }
.mm-links { display: flex; flex-direction: column; }
.mm-links a {
  font-family: var(--font-brand); font-size: clamp(26px, 7vw, 40px); font-weight: 700;
  color: var(--os-forest); padding: 12px 0;
  border-bottom: 1.5px solid var(--gline-dim);
}
.mm-links a:hover { color: var(--os-leaf); }
.mm-footer { margin-top: 6vh; }
.mm-footer a { font-family: var(--font-brand); font-weight: 800; font-size: 1.4rem; color: var(--os-pine); }
.mm-footer p { color: var(--os-mute); font-size: .85rem; margin-top: 6px; }

/* ── 6. Hero (Foto) ───────────────────────────────────────────────── */
.hero {
  position: relative;
  margin-top: var(--nav-h);
  min-height: min(760px, 88svh);
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
  color: #fff;
}
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 26, 10, .92) 0%, rgba(13, 26, 10, .78) 34%, rgba(13, 26, 10, .35) 62%, rgba(13, 26, 10, .25) 100%),
    linear-gradient(180deg, rgba(13, 26, 10, .25), transparent 30%, transparent 60%, rgba(13, 26, 10, .55) 100%);
}
.hero-badge {
  position: absolute; top: clamp(18px, 3.5vh, 40px); right: clamp(16px, 3.5vw, 56px);
  width: clamp(150px, 16vw, 240px); height: auto; z-index: 3;
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, .45));
}
.hero-inner { position: relative; z-index: 2; padding: clamp(40px, 7vh, 80px) 0 clamp(150px, 21vh, 210px); }
.hero-eyebrow {
  font-family: var(--font-brand); font-size: .82rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--os-lime); margin-bottom: 16px;
}
.hero-title {
  font-family: var(--font-brand);
  font-size: clamp(34px, 4.6vw, 62px);
  font-weight: 800; line-height: 1.1; letter-spacing: -.02em;
  margin-bottom: 16px;
}
.hero-title span { color: var(--os-lime); }
.hero-sub { font-family: var(--font-brand); font-size: clamp(1rem, 1.4vw, 1.25rem); font-weight: 700; margin-bottom: 14px; }
.hero-claim { max-width: 460px; color: rgba(255, 255, 255, .88); line-height: 1.8; margin-bottom: 28px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-trust {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  background: rgba(13, 26, 10, .72);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 255, 255, .12);
}
.hero-trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 1.6vw, 26px);
  padding: clamp(16px, 2.4vh, 24px) 0;
}
.ht-item { display: flex; align-items: center; gap: 13px; }
.ht-item + .ht-item { border-left: 1px solid rgba(255, 255, 255, .14); padding-left: clamp(12px, 1.6vw, 26px); }
.ht-item svg { width: 30px; height: 30px; color: var(--os-lime); flex-shrink: 0; }
.ht-item strong { display: block; font-family: var(--font-brand); font-size: .88rem; font-weight: 700; color: #fff; line-height: 1.3; }
.ht-item small { font-size: .76rem; color: rgba(255, 255, 255, .68); line-height: 1.45; display: block; }

/* ── 7. Leistungen (Foto-Karten) ──────────────────────────────────── */
.services { padding: clamp(52px, 8vh, 88px) 0; background: #fff; }
.pcards {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 1.4vw, 22px);
  margin-top: clamp(32px, 5vh, 48px);
}
.pcard {
  position: relative;
  background: #fff;
  border: 1.5px solid var(--gline-dim);
  border-radius: 14px;
  overflow: hidden;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform 280ms var(--ease), box-shadow 280ms var(--ease), border-color 280ms var(--ease);
  padding-bottom: 20px;
}
.pcard:hover { transform: translateY(-6px); border-color: rgba(94, 140, 58, .45); box-shadow: var(--shadow-strong); }
.pcard-img { height: clamp(120px, 12vw, 160px); overflow: hidden; }
.pcard-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease); }
.pcard:hover .pcard-img img { transform: scale(1.06); }
.pcard-ico {
  position: relative; z-index: 2;
  display: grid; place-items: center;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--os-pine); color: #fff;
  border: 3.5px solid #fff;
  margin: -29px auto 10px;
  box-shadow: 0 8px 20px rgba(28, 51, 24, .3);
}
.pcard-ico svg { width: 26px; height: 26px; }
.pcard h3 { font-family: var(--font-brand); font-size: .98rem; font-weight: 700; color: var(--os-ink); margin-bottom: 8px; padding: 0 14px; }
.pcard p { font-size: .82rem; color: var(--os-mute); line-height: 1.65; padding: 0 16px; margin-bottom: 12px; }
.pcard-list {
  list-style: none;
  display: grid; gap: 7px;
  padding: 0 16px; margin-bottom: 14px;
  text-align: left;
}
.pcard-list li {
  position: relative; padding-left: 24px;
  font-size: .82rem; font-weight: 500; color: var(--os-ink); line-height: 1.45;
}
.pcard-list li::before {
  content: ''; position: absolute; left: 0; top: .12em;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--os-pine) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 9px no-repeat;
}
.pcard-more {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-brand); font-size: .76rem; font-weight: 700;
  color: var(--os-leaf);
}
.pcard-more em { font-style: normal; transition: transform 220ms var(--ease); }
.pcard-more:hover { color: var(--os-pine); }
.pcard-more:hover em { transform: translateX(4px); }
.services-cta { text-align: center; margin-top: clamp(28px, 4.5vh, 42px); }

/* ── 8. Stats-Band ────────────────────────────────────────────────── */
.statband { background: #F2F5EE; border-block: 1.5px solid var(--gline-dim); }
.statband-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 1.6vw, 26px);
  padding: clamp(26px, 4vh, 42px) 0;
}
.sb-item { text-align: center; }
.sb-item + .sb-item { border-left: 1.5px solid rgba(45, 80, 22, .14); }
.sb-item svg { width: 34px; height: 34px; color: var(--os-leaf); margin: 0 auto 10px; }
.sb-item strong { display: block; font-family: var(--font-brand); font-size: clamp(1.25rem, 2vw, 1.7rem); font-weight: 800; color: var(--os-ink); line-height: 1.15; }
.sb-item small { font-size: .84rem; color: var(--os-mute); }

/* ── 9. Über uns ──────────────────────────────────────────────────── */
.about { padding: clamp(52px, 8vh, 88px) 0; background: #fff; }
.about-grid {
  display: grid; grid-template-columns: 1fr 1.05fr .75fr;
  gap: clamp(26px, 3.4vw, 56px);
  align-items: center;
}
.about-photo {
  border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow-strong);
  aspect-ratio: 16 / 9;
  position: relative;
}
.about-photo svg, .about-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about-text { color: var(--os-mute); line-height: 1.85; margin: 16px 0 24px; }
.about-perks { display: grid; gap: 20px; border-left: 1.5px solid var(--gline-dim); padding-left: clamp(20px, 2.4vw, 36px); }
.ap-item { display: flex; align-items: center; gap: 14px; }
.ap-item span {
  display: grid; place-items: center; flex-shrink: 0;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--os-mint); color: var(--os-pine);
  border: 1.5px solid rgba(94, 140, 58, .25);
}
.ap-item svg { width: 22px; height: 22px; }
.ap-item p { font-size: .9rem; font-weight: 500; color: var(--os-ink); line-height: 1.45; }

/* ── 10. Urlaubs-Banner ───────────────────────────────────────────── */
.vacband-wrap { padding: clamp(20px, 3.5vh, 44px) 0 clamp(40px, 6vh, 64px); background: #fff; }
.vacband {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  min-height: 280px;
}
.vacband-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.vacband-shade {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(250, 250, 244, .96) 0%, rgba(250, 250, 244, .88) 42%, rgba(250, 250, 244, .35) 70%, rgba(250, 250, 244, .1) 100%);
}
.vacband-inner {
  position: relative;
  display: flex; align-items: center; justify-content: space-between; gap: 30px;
  padding: clamp(28px, 4vw, 52px);
}
.vacband-copy h2 {
  font-family: var(--font-brand);
  font-size: clamp(21px, 2.4vw, 30px);
  font-weight: 800; letter-spacing: -.01em; line-height: 1.2;
  color: var(--os-ink);
  margin-bottom: 18px;
}
.vacband-checks {
  list-style: none;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 9px 30px;
}
.vacband-checks li {
  position: relative; padding-left: 27px;
  font-size: .9rem; font-weight: 500; color: var(--os-ink);
}
.vacband-checks li::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--os-pine) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 10px no-repeat;
}
.vacband-seal {
  flex-shrink: 0;
  width: clamp(130px, 13vw, 170px); aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(28, 51, 24, .92);
  border: 2px solid rgba(124, 179, 66, .6);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  text-align: center;
  color: #fff;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .3);
}
.vacband-seal span { font-family: var(--font-brand); font-size: .58rem; font-weight: 600; letter-spacing: .14em; color: rgba(255, 255, 255, .85); }
.vacband-seal strong { font-family: var(--font-brand); font-size: .66rem; font-weight: 800; letter-spacing: .12em; color: var(--os-lime); }

/* ── 11. Kundenstimmen ────────────────────────────────────────────── */
.reviews { padding: clamp(40px, 6vh, 70px) 0 clamp(52px, 8vh, 88px); background: #fff; }
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.8vw, 26px);
  margin-top: clamp(26px, 4vh, 40px);
}
.review {
  padding: clamp(22px, 2.2vw, 32px);
  border-radius: 14px;
  background: var(--os-cream);
  border: 1.5px solid var(--gline-dim);
  box-shadow: var(--shadow-soft);
}
.stars { display: flex; gap: 4px; margin-bottom: 14px; }
.stars svg { width: 17px; height: 17px; fill: #4F7C2C; }
.review blockquote { font-size: .94rem; color: var(--os-ink); line-height: 1.75; margin-bottom: 14px; }
.review figcaption { font-size: .82rem; color: var(--os-mute); }
.review-dots { display: flex; justify-content: center; gap: 8px; margin-top: 26px; }
.review-dots span { width: 8px; height: 8px; border-radius: 50%; background: rgba(45, 80, 22, .2); }
.review-dots span.on { background: var(--os-leaf); }

/* ── 12. CTA-Band / Kontakt ───────────────────────────────────────── */
.ctaband {
  background:
    radial-gradient(70% 90% at 8% 100%, rgba(124, 179, 66, .2), transparent 55%),
    linear-gradient(170deg, #234119, var(--os-forest) 60%, #142609);
  color: #fff;
  padding: clamp(36px, 5.5vh, 56px) 0 0;
}
.ctaband-grid {
  display: flex; align-items: center; justify-content: space-between; gap: clamp(20px, 3vw, 50px);
  flex-wrap: wrap;
  padding-bottom: clamp(30px, 4.5vh, 48px);
  border-bottom: 1px solid var(--wline-dim);
}
.cta-left { display: flex; align-items: center; gap: clamp(16px, 2vw, 28px); }
.cta-wa-badge {
  display: grid; place-items: center; flex-shrink: 0;
  width: 68px; height: 68px; border-radius: 50%;
  background: var(--os-wa); color: #fff;
  box-shadow: 0 0 0 9px rgba(37, 211, 102, .16);
}
.cta-wa-badge svg { width: 34px; height: 34px; }
.cta-eyebrow {
  font-family: var(--font-brand); font-size: .74rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--os-lime); margin-bottom: 4px;
}
.cta-left h2 {
  font-family: var(--font-brand);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800; letter-spacing: -.015em; line-height: 1.15;
}
.cta-sub { font-size: .9rem; color: rgba(255, 255, 255, .75); margin-top: 6px; }
.cta-bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  padding: 20px 0;
  font-size: .82rem; color: rgba(234, 244, 226, .65);
}
.cta-bottom nav { display: flex; gap: 20px; flex-wrap: wrap; }
.cta-bottom a:hover { color: #fff; text-decoration: underline; }

/* ── 13. To-Top ───────────────────────────────────────────────────── */
#to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 9300;
  width: 48px; height: 48px; border-radius: 50%;
  border: 1.5px solid var(--gline);
  background: rgba(255, 255, 255, .95);
  color: var(--os-pine); font-size: 1rem;
  box-shadow: var(--shadow-soft);
  opacity: 0; visibility: hidden; transform: translateY(14px);
  transition: opacity 300ms var(--ease), transform 300ms var(--ease), visibility 300ms;
}
#to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
#to-top:hover { box-shadow: var(--shadow-green); border-color: var(--os-leaf); }

/* ── 14. Responsive ───────────────────────────────────────────────── */
@media (max-width: 1180px) {
  .pcards { grid-template-columns: repeat(3, 1fr); }
  .about-grid { grid-template-columns: 1fr 1.1fr; }
  .about-perks { grid-column: 1 / -1; grid-template-columns: 1fr 1fr; border-left: none; padding-left: 0; padding-top: 10px; }
}
@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-tel span { display: none; }
  .hero-trust-grid { grid-template-columns: 1fr 1fr; row-gap: 14px; }
  .ht-item:nth-child(3) { border-left: none; padding-left: 0; }
  .hero-inner { padding-bottom: clamp(210px, 30vh, 270px); }
  .statband-grid { grid-template-columns: 1fr 1fr; row-gap: 22px; }
  .sb-item:nth-child(3) { grid-column: 1 / -1; border-left: none; }
  .vacband-inner { flex-direction: column; align-items: flex-start; }
  .vacband-shade { background: linear-gradient(90deg, rgba(250, 250, 244, .95), rgba(250, 250, 244, .85)); }
  .reviews-grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .nav-wa span { display: none; }
  .nav-wa { padding: 11px 13px; }
  .hero-badge { width: 108px; top: 12px; right: 12px; }
  .hero-eyebrow, .hero-title { padding-right: 120px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .hero-trust-grid { grid-template-columns: 1fr; row-gap: 10px; }
  .ht-item + .ht-item { border-left: none; padding-left: 0; }
  .hero-inner { padding-bottom: clamp(290px, 42vh, 350px); }
  .pcards { grid-template-columns: 1fr; }
  .statband-grid { grid-template-columns: 1fr; }
  .sb-item + .sb-item { border-left: none; border-top: 1.5px solid rgba(45, 80, 22, .12); padding-top: 18px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-perks { grid-template-columns: 1fr; }
  .vacband-checks { grid-template-columns: 1fr; }
  .ctaband-grid { flex-direction: column; align-items: flex-start; }
  .ctaband .btn-lg { width: 100%; }
  .cta-bottom { flex-direction: column; align-items: flex-start; }
  #to-top { right: 14px; bottom: 14px; }
}

/* ── 15. Reduced Motion ───────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* Echtes Logo im Hero-Badge (runde Maske schneidet dunkle Bildecken) */
.hero-badge img {
  width: 100%; height: auto; aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 14px 36px rgba(0, 0, 0, .45), 0 0 0 3px rgba(255, 255, 255, .85);
}


/* ── WhatsApp-/Foto-Service (1:1 nach Flyer) ── */
.fotoservice {
  display: grid; grid-template-columns: 1.15fr auto;
  gap: clamp(28px, 4vw, 70px);
  align-items: center;
  margin-top: clamp(18px, 2.6vh, 30px);
  padding: clamp(28px, 3.4vw, 54px);
  border-radius: 18px;
  background:
    radial-gradient(60% 80% at 90% 0%, rgba(124, 179, 66, .2), transparent 55%),
    linear-gradient(165deg, #24421E, var(--os-forest) 60%, #16290D);
  color: #fff;
  box-shadow: var(--shadow-strong);
}
.fs-copy h2 {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-brand);
  font-size: clamp(20px, 2.3vw, 29px);
  font-weight: 800; letter-spacing: .02em; text-transform: uppercase;
  margin-bottom: 16px;
}
.fs-copy h2 svg { width: 32px; height: 32px; color: var(--os-lime); flex-shrink: 0; }
.fs-intro { color: rgba(234, 244, 226, .85); line-height: 1.8; margin-bottom: 22px; max-width: 460px; }
.fs-checks { list-style: none; display: grid; gap: 12px; }
.fs-checks li {
  position: relative; padding-left: 32px;
  font-family: var(--font-brand); font-size: .98rem; font-weight: 600;
}
.fs-checks li::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 21px; height: 21px; border-radius: 50%;
  background: var(--os-lime) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231C3318' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 12px no-repeat;
}

/* Phone-Mockup */
.phone {
  position: relative;
  width: min(320px, 100%);
  border-radius: 40px;
  background: #ECE5DD;
  border: 10px solid #10180E;
  box-shadow: 0 34px 80px rgba(0, 0, 0, .45), inset 0 0 0 1.5px rgba(0, 0, 0, .14);
  overflow: hidden;
}
.phone-notch {
  position: absolute; top: 9px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 22px; border-radius: 999px;
  background: #10180E; z-index: 3;
}
.phone-head {
  display: flex; align-items: center; gap: 11px;
  padding: 40px 16px 12px;
  background: var(--os-forest); color: #fff;
}
.phone-ava { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.phone-head div { flex: 1; line-height: 1.25; }
.phone-head strong { display: block; font-family: var(--font-brand); font-size: .84rem; font-weight: 700; }
.phone-head small { font-size: .68rem; color: var(--os-lime); }
.phone-cam { width: 21px; height: 21px; color: rgba(255, 255, 255, .85); }
.phone-chat {
  padding: 16px 13px 14px;
  display: flex; flex-direction: column; gap: 10px;
  min-height: 300px;
  background:
    radial-gradient(circle at 20% 20%, rgba(124, 179, 66, .06) 0 2px, transparent 2px) 0 0 / 46px 46px,
    #ECE5DD;
}
.ph-bubble {
  position: relative;
  max-width: 88%;
  padding: 10px 12px 7px;
  border-radius: 13px;
  font-size: .8rem; line-height: 1.5;
  box-shadow: 0 1.5px 3px rgba(0, 0, 0, .1);
  color: #1f2a1d;
}
.ph-bubble > span { display: block; text-align: right; font-size: .58rem; color: rgba(31, 42, 29, .5); margin-top: 3px; }
.ph-in { align-self: flex-start; background: #fff; border-top-left-radius: 4px; }
.ph-bubble p { margin-bottom: 7px; }
.ph-bubble p:last-of-type { margin-bottom: 0; }
.ph-checks { display: flex; flex-direction: column; gap: 4px; }
.ph-photos .ph-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px;
  width: 196px;
}
.ph-grid img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 9px; }
.phone-foot {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 13px 14px;
  background: #ECE5DD;
}
.phone-foot span { flex: 1; height: 32px; border-radius: 999px; background: #fff; box-shadow: inset 0 0 0 1.5px rgba(0, 0, 0, .07); }
.phone-foot svg { width: 20px; height: 20px; color: var(--os-mute); }
@media (max-width: 900px) {
  .fotoservice { grid-template-columns: 1fr; }
  .phone { margin-inline: auto; }
}

