/* ============================================================
   Kaltipower leichthufig — Demo-Prototyp
   Farbwelt: Creme, Sand, Salbeigrün (Logo), helles Braun, Oliv
   Schrift:  Playfair Display (Display), Karla (Text), Caveat (Akzent)
   ============================================================ */

:root {
  --creme:       #F7F1E5;
  --creme-deep:  #F0E8D6;
  --sand:        #E7DCC3;
  --sand-deep:   #D9C9A6;
  --green:       #8FB573;
  --green-soft:  #B5CD9E;
  --green-deep:  #5C7C49;
  --green-ink:   #3E5632;
  --brown:       #B08D6A;
  --brown-deep:  #8C6D4F;
  --olive:       #29241A;
  --olive-soft:  #3A3426;
  --ink:         #322A1F;
  --muted:       #6E6250;
  --line:        rgba(60, 50, 36, .16);
  --paper:       #FFFDF7;
  --shadow-soft: 0 10px 30px rgba(60, 50, 36, .10);
  --shadow-lift: 0 18px 44px rgba(60, 50, 36, .16);
  --radius:      22px;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body:    "Karla", "Segoe UI", sans-serif;
  --font-hand:    "Caveat", cursive;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--creme);
}

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

/* <picture> soll kein eigenes Layout-Element bilden, damit alle bestehenden
   Bildregeln unverändert auf das <img> darin greifen */
picture { display: contents; }

a { color: var(--green-deep); text-decoration: none; }
a:hover { color: var(--green-ink); }

::selection { background: var(--green-soft); color: var(--green-ink); }

.wrap { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ---------- Typografie ---------- */

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 560;
  line-height: 1.14;
  color: var(--ink);
  letter-spacing: .01em;
}

h1 { font-size: clamp(2.3rem, 5.2vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.28rem; line-height: 1.3; }

h1 em, h2 em, blockquote em {
  font-style: italic;
  font-weight: 480;
  color: var(--green-deep);
}

.kicker {
  font-family: var(--font-hand);
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  font-weight: 600;
  color: var(--brown-deep);
  display: inline-flex;
  align-items: center;
  gap: .55em;
  margin-bottom: .6rem;
}

.kicker::before {
  content: "";
  width: 34px; height: 2px;
  background: var(--brown);
  border-radius: 2px;
}

.lead { font-size: 1.18rem; color: var(--muted); max-width: 58ch; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 700;
  padding: .85em 1.7em;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}

.btn svg { width: 18px; height: 18px; flex: none; }

.btn-solid {
  background: var(--green-deep);
  color: var(--paper);
}
.btn-solid:hover {
  background: var(--green-ink);
  color: var(--paper);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.btn-ghost {
  background: transparent;
  color: var(--green-ink);
  border-color: var(--green-deep);
}
.btn-ghost:hover {
  background: rgba(143, 181, 115, .14);
  color: var(--green-ink);
  transform: translateY(-2px);
}

.btn-sand {
  background: var(--paper);
  color: var(--green-ink);
}
.btn-sand:hover { background: var(--creme); transform: translateY(-2px); }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(247, 241, 229, .97);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
}

/* Blur nur auf Desktop: backdrop-filter macht den Header sonst zum
   Bezugsrahmen fürs fixierte Mobilmenü und quetscht es zusammen */
@media (min-width: 901px) {
  .site-header {
    background: rgba(247, 241, 229, .86);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(60, 50, 36, .07);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 14px;
  padding-bottom: 14px;
}

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

.brand-logo {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px var(--sand-deep);
}

.brand-text { display: flex; flex-direction: column; line-height: 1.05; }

.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.22rem;
  color: var(--ink);
  letter-spacing: .04em;
}

.brand-sub {
  font-family: var(--font-hand);
  font-size: 1.12rem;
  font-weight: 500;
  color: var(--green-deep);
}

.main-nav { display: flex; align-items: center; gap: 30px; }

.main-nav a {
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
}

.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -3px;
  width: 100%;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }

.main-nav a.active { color: var(--green-ink); font-weight: 700; }

.nav-cta {
  background: var(--green-deep);
  color: var(--paper) !important;
  font-weight: 700;
  padding: .6em 1.4em !important;
  border-radius: 999px;
  transition: background .18s ease, transform .18s ease;
}
.nav-cta:hover { background: var(--green-ink); transform: translateY(-1px); }

.nav-toggle, .nav-close { display: none; }

/* Liegt bewusst UNTER dem Header (z-index 60): das Menü lebt im
   Stacking-Context des Headers und bliebe sonst unter dem Scrim */
.nav-scrim {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(41, 36, 26, .45);
  z-index: 50;
  opacity: 0;
  transition: opacity .25s ease;
}
.nav-scrim.show { display: block; opacity: 1; }

/* ---------- Hero (Startseite) ---------- */

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(40px, 7vw, 90px) 0 clamp(48px, 7vw, 96px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.hero-copy h1 { margin-bottom: 1.1rem; }
.hero-copy .lead { margin-bottom: 1.9rem; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 2.2rem; }

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.fact-chip {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .45em 1em;
  font-size: .92rem;
  font-weight: 500;
  color: var(--muted);
}
.fact-chip svg { width: 15px; height: 15px; flex: none; color: var(--green-deep); }

.hero-media { position: relative; }

.arch-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 52% 52% var(--radius) var(--radius) / 34% 34% var(--radius) var(--radius);
  box-shadow: var(--shadow-lift);
}

/* Gleichmäßige Kontur in exakt derselben Bogenform wie das Foto */
.hero-media::before {
  content: "";
  position: absolute;
  inset: -12px;
  border: 2px solid var(--green-soft);
  border-radius: 52% 52% var(--radius) var(--radius) / 34% 34% var(--radius) var(--radius);
  pointer-events: none;
}

.hero-badge {
  position: absolute;
  left: -18px;
  bottom: 36px;
  background: var(--paper);
  border-radius: 18px;
  box-shadow: var(--shadow-lift);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 300px;
}

.hero-badge svg { width: 30px; height: 30px; flex: none; color: var(--green-deep); }
.hero-badge b { display: block; font-size: .98rem; line-height: 1.3; }
.hero-badge span { font-size: .85rem; color: var(--muted); }

/* ---------- Abschnitte ---------- */

.section { padding: clamp(56px, 8vw, 104px) 0; }
.section-sand { background: var(--creme-deep); }

.section-head { max-width: 640px; margin-bottom: clamp(30px, 4vw, 52px); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .kicker { justify-content: center; }
.section-head.center .kicker::before { display: none; }
.section-head h2 { margin-bottom: .7rem; }
.section-head p { color: var(--muted); }

/* Huf-Trenner */
.hoof-divider {
  display: flex;
  gap: 18px;
  padding: 10px 0 0;
  color: var(--brown);
}
.hoof-divider svg { width: 19px; height: 19px; }
.hoof-divider svg:nth-child(2) { transform: translateY(-7px) rotate(10deg); }
.hoof-divider svg:nth-child(3) { transform: rotate(-8deg); opacity: .7; }
.section-head.center .hoof-divider { justify-content: center; }

/* ---------- Schwerpunkte (Hufbogen-Karten) ---------- */

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: start;
}

.focus-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 170px 170px var(--radius) var(--radius);
  padding: 52px 28px 36px;
  text-align: center;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.focus-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
  border-color: var(--green-soft);
}

/* mittlere Karte versetzt, wie ein Schrittmuster */
.focus-card:nth-child(2) { margin-top: 34px; }

.focus-icon {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: rgba(143, 181, 115, .16);
  border: 1.5px solid rgba(143, 181, 115, .4);
  color: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.focus-icon svg { width: 32px; height: 32px; }

.focus-card h3 { margin-bottom: .55rem; }
.focus-card p { color: var(--muted); font-size: 1rem; }

.focus-tag {
  font-family: var(--font-hand);
  font-size: 1.35rem;
  color: var(--brown-deep);
  margin-bottom: .3rem;
}

.focus-hoofs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  color: var(--sand-deep);
}
.focus-hoofs svg { width: 16px; height: 16px; }
.focus-hoofs svg:nth-child(odd) { transform: rotate(-10deg); }
.focus-hoofs svg:nth-child(even) { transform: rotate(10deg) translateY(-3px); }

/* ---------- Hufspur im Hero ---------- */

.hoof-steps {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  margin-top: 30px;
  color: var(--brown);
}
.hoof-steps svg { width: 22px; height: 22px; }
.hoof-steps svg:nth-child(odd) { transform: rotate(-12deg); }
.hoof-steps svg:nth-child(even) { transform: rotate(14deg) translateY(-7px); }
.hoof-steps svg:nth-child(4) { opacity: .75; }
.hoof-steps svg:nth-child(5) { opacity: .55; }
.hoof-steps svg:nth-child(6) { opacity: .38; }
.hoof-steps svg:nth-child(7) { opacity: .22; }

/* ---------- Wohlfühl-Laufband ---------- */

.hand-band {
  background: var(--sand);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 16px 0;
}

.hand-track {
  display: flex;
  width: max-content;
  animation: band-scroll 40s linear infinite;
}

/* Zwei identische Hälften ergeben eine nahtlose Schleife bei -50 % */
.hand-half {
  display: flex;
  align-items: center;
  gap: 46px;
  padding-right: 46px;
}

.hand-half span {
  font-family: var(--font-hand);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--brown-deep);
  white-space: nowrap;
}

.hand-half svg { width: 18px; height: 18px; color: var(--green-deep); flex: none; }
.hand-half svg:nth-of-type(even) { transform: rotate(12deg); }
.hand-half svg:nth-of-type(odd) { transform: rotate(-10deg); }

@keyframes band-scroll {
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .hand-track { animation: none; }
}

/* ---------- Stimmen aus dem Stall ---------- */

.voices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.voice-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(26px, 3vw, 36px);
  position: relative;
}

.voice-card::before {
  content: "„";
  font-family: var(--font-display);
  font-style: italic;
  font-size: 3.4rem;
  line-height: .5;
  color: var(--green-soft);
  position: absolute;
  top: 30px;
  left: 26px;
}

.voice-card::after {
  content: "“";
  font-family: var(--font-display);
  font-style: italic;
  font-size: 3.4rem;
  line-height: .5;
  color: var(--green-soft);
  position: absolute;
  bottom: 26px;
  right: 26px;
}

.voice-card blockquote {
  font-size: 1.06rem;
  color: var(--ink);
  padding-top: 40px;
  margin-bottom: 14px;
}

.voice-card figcaption {
  font-family: var(--font-hand);
  font-size: 1.3rem;
  color: var(--brown-deep);
  display: flex;
  align-items: center;
  gap: 10px;
}
.voice-card figcaption svg { width: 17px; height: 17px; color: var(--green-deep); }

/* ---------- Arbeitsweise / Schritte ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  counter-reset: step;
}

.step {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px 26px;
}

.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.6rem;
  font-weight: 480;
  color: var(--sand-deep);
  display: block;
  line-height: 1;
  margin-bottom: 14px;
}

.step h3 { font-size: 1.15rem; margin-bottom: .45rem; }
.step p { font-size: .98rem; color: var(--muted); }

/* ---------- Zitat-Band (dunkel) ---------- */

.quote-band {
  background:
    radial-gradient(ellipse at 20% 10%, rgba(143, 181, 115, .12), transparent 55%),
    var(--olive);
  color: var(--creme);
  padding: clamp(64px, 9vw, 120px) 0;
  position: relative;
  overflow: hidden;
}

.quote-hoof {
  position: absolute;
  right: -30px;
  top: -30px;
  width: 260px;
  height: 260px;
  color: rgba(143, 181, 115, .1);
  transform: rotate(18deg);
  pointer-events: none;
}

.quote-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}

.quote-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 52% 52% var(--radius) var(--radius) / 36% 36% var(--radius) var(--radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .45);
}

.quote-media { position: relative; }

.quote-band blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 480;
  font-size: clamp(1.5rem, 3.2vw, 2.3rem);
  line-height: 1.35;
  color: var(--creme);
}

.quote-band blockquote strong { color: var(--green-soft); font-weight: 560; }

.quote-band figcaption {
  margin-top: 1.6rem;
  font-family: var(--font-hand);
  font-size: 1.35rem;
  color: var(--green-soft);
}

/* ---------- Über-mich-Teaser / Split ---------- */

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}

.split-media { position: relative; }

.split-img {
  width: 100%;
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lift);
}

.split-media .photo-note {
  position: absolute;
  right: 18px;
  bottom: -20px;
  background: var(--paper);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  padding: 10px 18px;
  font-family: var(--font-hand);
  font-size: 1.25rem;
  color: var(--brown-deep);
  transform: rotate(-2deg);
}

.split-copy h2 { margin-bottom: 1rem; }
.split-copy p { color: var(--muted); margin-bottom: 1rem; }
.split-copy .btn { margin-top: .8rem; }

/* Handschriftliche Akzentzeile im Fließtext */
.hand-note {
  font-family: var(--font-hand);
  font-size: clamp(1.4rem, 2.3vw, 1.65rem);
  font-weight: 600;
  color: var(--green-deep) !important;
  margin: 1.2rem 0;
}

/* Betontes Abschluss-Zitat */
.accent-quote {
  border-left: 3px solid var(--green-soft);
  padding: .3rem 0 .3rem 18px;
  margin: 1.4rem 0 .4rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.22rem;
  line-height: 1.5;
  color: var(--green-ink);
}

/* ---------- Dekoratives Hufbogen-Panel ---------- */

.concept-panel {
  background: linear-gradient(165deg, var(--sand), var(--creme-deep) 70%);
  border: 1px solid var(--line);
  border-radius: 170px 170px var(--radius) var(--radius);
  min-height: 420px;
  padding: 70px 36px 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.concept-icon {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--paper);
  border: 1.5px solid rgba(143, 181, 115, .4);
  color: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
}
.concept-icon svg { width: 48px; height: 48px; }

.concept-word {
  font-family: var(--font-hand);
  font-size: clamp(1.6rem, 2.6vw, 2rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--brown-deep);
}

.concept-panel .hoof-divider { padding: 0; }

/* ---------- Leistungen & Preise ---------- */

.price-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
}

.img-placeholder {
  border: 2px dashed var(--sand-deep);
  border-radius: var(--radius);
  background: rgba(217, 201, 166, .16);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 280px;
  color: var(--brown-deep);
  font-family: var(--font-hand);
  font-size: 1.35rem;
  text-align: center;
  padding: 24px;
}
.img-placeholder svg { width: 42px; height: 42px; color: var(--sand-deep); }

/* Foto „bei der Arbeit“ neben der Preistabelle */
.price-media { position: relative; margin: 0; }

.price-img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  max-height: 560px;
  object-fit: cover;
  object-position: center 30%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lift);
  display: block;
}

.price-media .photo-note {
  position: absolute;
  right: 18px;
  bottom: -20px;
  background: var(--paper);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  padding: 10px 18px;
  font-family: var(--font-hand);
  font-size: 1.25rem;
  color: var(--brown-deep);
  transform: rotate(-2deg);
}

.price-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(26px, 3.5vw, 38px);
  box-shadow: var(--shadow-soft);
}

.price-card h3 { margin-bottom: .15rem; }

.price-sub {
  font-family: var(--font-hand);
  font-size: 1.3rem;
  color: var(--brown-deep);
  margin-bottom: .4rem;
}

ul.price-list { list-style: none; margin-top: 1.1rem; display: grid; gap: 16px; }

.price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.price-row span { color: var(--muted); flex: none; }
.price-row i {
  flex: 1;
  border-bottom: 2px dotted var(--sand-deep);
  transform: translateY(-4px);
}
.price-row b { color: var(--green-ink); font-weight: 700; text-align: right; }

.price-hint { margin-top: 1.2rem; font-size: .92rem; color: var(--muted); }

/* ---------- Einzugsgebiete ---------- */

.area-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(26px, 4vw, 44px);
  display: flex;
  gap: clamp(18px, 3vw, 30px);
  align-items: flex-start;
  box-shadow: var(--shadow-soft);
}

.area-card > svg { width: 46px; height: 46px; flex: none; color: var(--green-deep); margin-top: 4px; }
.area-card p { color: var(--muted); max-width: 62ch; font-size: 1.05rem; margin-bottom: 1.3rem; }
.area-card h2 { margin-bottom: .6rem; }
.area-card p.kicker { color: var(--brown-deep); margin-bottom: .5rem; }

.map-base { font-size: .95rem !important; }
.area-card .map-base { margin-bottom: .7rem; }

/* Orte im Einzugsgebiet — hilft Suchmaschinen und Interessenten gleichermaßen */
.town-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1.3rem;
}
.town-list li {
  background: var(--creme);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .35em .9em;
  font-size: .9rem;
  color: var(--muted);
}

.area-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(22px, 3vw, 32px);
  align-items: stretch;
}

/* Karte mit Zwei-Klick-Lösung */
.map-embed {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--creme-deep);
  min-height: 360px;
  box-shadow: var(--shadow-soft);
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  display: block;
}

.map-load {
  width: 100%;
  height: 100%;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 28px;
  background:
    radial-gradient(circle at 28% 22%, rgba(143, 181, 115, .18), transparent 55%),
    var(--creme-deep);
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  color: var(--ink);
  text-align: center;
  transition: filter .2s ease;
}
.map-load:hover { filter: brightness(.97); }
.map-load svg { width: 42px; height: 42px; color: var(--green-deep); }
.map-load b { font-size: 1.1rem; }
.map-load .map-hint { font-size: .88rem; color: var(--muted); max-width: 42ch; }

.map-load .map-load-btn {
  display: inline-block;
  margin-top: 8px;
  background: var(--green-deep);
  color: var(--paper);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
  border-radius: 999px;
  padding: .65em 1.6em;
  transition: background .18s ease;
}
.map-load:hover .map-load-btn { background: var(--green-ink); }

/* ---------- Listen mit Häkchen ---------- */

ul.ticks { list-style: none; display: grid; gap: 12px; margin: 1.2rem 0 1.6rem; }

ul.ticks li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--ink);
}

ul.ticks li svg {
  width: 20px; height: 20px;
  flex: none;
  margin-top: 3px;
  color: var(--green-deep);
}

/* ---------- CTA-Band ---------- */

.cta-band {
  background: linear-gradient(150deg, var(--green-deep), var(--green-ink));
  border-radius: calc(var(--radius) + 8px);
  color: var(--creme);
  padding: clamp(40px, 6vw, 72px);
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  right: -70px; top: -70px;
  width: 280px; height: 280px;
  border: 2px solid rgba(247, 241, 229, .22);
  border-radius: 50%;
}

.cta-band h2 { color: var(--creme); margin-bottom: .6rem; }
.cta-band p { color: rgba(247, 241, 229, .85); }

.cta-actions { display: flex; flex-direction: column; gap: 12px; align-items: stretch; }

.cta-band .btn-ghost { border-color: rgba(247, 241, 229, .55); color: var(--creme); }
.cta-band .btn-ghost:hover { background: rgba(247, 241, 229, .12); color: var(--creme); }

/* ---------- Unterseiten-Hero ---------- */

.page-hero {
  background: var(--creme-deep);
  padding: clamp(44px, 6vw, 76px) 0;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 { margin-bottom: .8rem; max-width: 18ch; }
.page-hero .lead { max-width: 62ch; }

.breadcrumb {
  font-size: .9rem;
  color: var(--muted);
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--green-deep); }
.breadcrumb svg { width: 13px; height: 13px; color: var(--sand-deep); }

/* ---------- Fließtext / Artikel ---------- */

.prose { max-width: 68ch; }
.prose h2 { margin: 2.4rem 0 .9rem; }
.prose h3 { margin: 1.8rem 0 .6rem; }
.prose p { margin-bottom: 1.1rem; }
.prose p + h2 { margin-top: 2.6rem; }

/* ---------- Info-Karten (Leistungen) ---------- */

.info-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.info-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 34px);
}

.info-card h3 { display: flex; align-items: center; gap: 12px; margin-bottom: .7rem; }
.info-card h3 svg { width: 24px; height: 24px; flex: none; color: var(--green-deep); }
.info-card p { color: var(--muted); font-size: 1rem; }
.info-card p + p { margin-top: .7rem; }

/* ---------- FAQ ---------- */

.faq { display: grid; gap: 14px; max-width: 780px; }

.faq details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
}

.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-weight: 700;
  font-size: 1.02rem;
}
.faq summary::-webkit-details-marker { display: none; }

.faq summary svg {
  width: 18px; height: 18px;
  flex: none;
  color: var(--green-deep);
  transition: transform .22s ease;
}
.faq details[open] summary svg { transform: rotate(45deg); }

.faq .faq-body { padding: 0 22px 18px; color: var(--muted); font-size: 1rem; }

/* ---------- Kontakt ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: start;
}

.contact-card {
  background: var(--olive);
  color: var(--creme);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 40px);
}

.contact-card h2 { color: var(--creme); font-size: 1.6rem; margin-bottom: 1.4rem; }

.contact-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(247, 241, 229, .14);
}
.contact-row:last-of-type { border-bottom: none; }

.contact-row svg { width: 22px; height: 22px; flex: none; color: var(--green-soft); margin-top: 2px; }
.contact-row b { display: block; font-size: .92rem; color: var(--green-soft); font-weight: 700; margin-bottom: 2px; }
.contact-row a, .contact-row span { color: var(--creme); }
.contact-row a:hover { color: var(--green-soft); }

.contact-note {
  margin-top: 20px;
  font-size: .92rem;
  color: rgba(247, 241, 229, .72);
}

.form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 40px);
}

.form-card h2 { font-size: 1.6rem; margin-bottom: .5rem; }
.form-card > p { color: var(--muted); margin-bottom: 1.6rem; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }

.field label {
  display: block;
  font-weight: 700;
  font-size: .95rem;
  margin-bottom: 6px;
}

.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--creme);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: .8em 1em;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(143, 181, 115, .22);
}

.field textarea { min-height: 130px; resize: vertical; }

.form-hint { font-size: .88rem; color: var(--muted); margin-top: 12px; }

.form-success {
  display: none;
  background: rgba(143, 181, 115, .16);
  border: 1.5px solid var(--green);
  border-radius: 14px;
  padding: 18px 20px;
  margin-top: 18px;
  color: var(--green-ink);
  font-weight: 500;
}
.form-success.show { display: flex; gap: 12px; align-items: flex-start; }
.form-success svg { width: 22px; height: 22px; flex: none; color: var(--green-deep); margin-top: 2px; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--olive);
  color: rgba(247, 241, 229, .82);
  padding: clamp(48px, 6vw, 72px) 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr 1fr;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(247, 241, 229, .14);
}

.footer-brand img {
  width: 74px; height: 74px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 14px;
  box-shadow: 0 0 0 2px rgba(143, 181, 115, .4);
}

.footer-brand p { font-size: .95rem; max-width: 30ch; }

.footer-hand {
  font-family: var(--font-hand);
  font-size: 1.3rem;
  color: var(--green-soft);
  margin-bottom: .4rem;
}

.site-footer h4 {
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 700;
  color: var(--creme);
  margin-bottom: 14px;
}

.site-footer ul { list-style: none; display: grid; gap: 9px; }
.site-footer ul a, .site-footer ul span { color: rgba(247, 241, 229, .78); font-size: .97rem; }
.site-footer ul a:hover { color: var(--green-soft); }

.site-footer ul button {
  background: none;
  border: none;
  color: rgba(247, 241, 229, .78);
  font-family: var(--font-body);
  font-size: .97rem;
  cursor: pointer;
  padding: 0;
  text-align: left;
}
.site-footer ul button:hover { color: var(--green-soft); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 22px;
  font-size: .88rem;
  color: rgba(247, 241, 229, .55);
}

/* ---------- Scroll-Reveal ---------- */

.reveal {
  opacity: 0;
  /* translate3d + will-change: eigene Compositing-Ebene, verhindert
     Geisterbilder/Repaint-Artefakte auf schwächeren Android-Geräten */
  transform: translate3d(0, 26px, 0);
  transition: opacity .7s ease, transform .7s ease;
  will-change: opacity, transform;
  backface-visibility: hidden;
}
.reveal.in { opacity: 1; transform: translate3d(0, 0, 0); }
.reveal.done { will-change: auto; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; will-change: auto; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Cookie-Consent
   ============================================================ */

.cc-fab {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 90;
  display: none;
  align-items: center;
  gap: 8px;
  background: var(--olive);
  color: var(--creme);
  border: 1px solid rgba(247, 241, 229, .2);
  border-radius: 999px;
  padding: 10px 16px;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow-lift);
  transition: transform .18s ease;
}
.cc-fab.show { display: inline-flex; }
.cc-fab:hover { transform: translateY(-2px); }
.cc-fab svg { width: 18px; height: 18px; }

.cc-banner {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translate(-50%, 20px);
  width: min(920px, calc(100vw - 32px));
  z-index: 95;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-lift);
  padding: 22px 26px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
}
.cc-banner.show { opacity: 1; transform: translate(-50%, 0); pointer-events: auto; }

.cc-inner { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; }

.cc-text { flex: 1 1 380px; }
.cc-text strong { font-family: var(--font-display); font-weight: 600; font-size: 1.08rem; }
.cc-text p { font-size: .93rem; color: var(--muted); margin-top: 4px; }

.cc-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.cc-btn {
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 700;
  border-radius: 999px;
  padding: .65em 1.3em;
  cursor: pointer;
  transition: background .18s ease, color .18s ease;
}

.cc-btn.solid {
  background: var(--green-deep);
  color: var(--paper);
  border: 1.5px solid var(--green-deep);
}
.cc-btn.solid:hover { background: var(--green-ink); border-color: var(--green-ink); }

.cc-btn.ghost {
  background: transparent;
  color: var(--green-ink);
  border: 1.5px solid var(--green-deep);
}
.cc-btn.ghost:hover { background: rgba(143, 181, 115, .14); }

.cc-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.cc-modal.show { display: flex; }

.cc-scrim { position: absolute; inset: 0; background: rgba(41, 36, 26, .55); }

.cc-card {
  position: relative;
  width: min(560px, 100%);
  max-height: min(84vh, 720px);
  overflow: auto;
  background: var(--creme);
  border-radius: 22px;
  padding: 30px 30px 26px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .4);
}

.cc-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.cc-head h2 { font-size: 1.45rem; }

.cc-x {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  padding: 8px;
  border-radius: 10px;
  display: flex;
}
.cc-x:hover { color: var(--ink); background: rgba(60, 50, 36, .08); }
.cc-x svg { width: 20px; height: 20px; }

.cc-lead { font-size: .95rem; color: var(--muted); margin-bottom: 18px; }

.cc-cat {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 12px;
}

.cc-cat-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.cc-cat b { display: block; font-size: 1rem; }
.cc-cat span { display: block; font-size: .88rem; color: var(--muted); margin-top: 2px; }

.cc-switch { position: relative; display: inline-block; flex: none; }
.cc-switch input { position: absolute; opacity: 0; width: 100%; height: 100%; cursor: pointer; }

.cc-track {
  display: block;
  width: 46px; height: 26px;
  border-radius: 999px;
  background: var(--sand-deep);
  position: relative;
  transition: background .2s ease;
}
.cc-track::after {
  content: "";
  position: absolute;
  top: 3px; left: 3px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--paper);
  transition: transform .2s ease;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
}
.cc-switch input:checked + .cc-track { background: var(--green-deep); }
.cc-switch input:checked + .cc-track::after { transform: translateX(20px); }
.cc-switch input:disabled + .cc-track { opacity: .6; cursor: not-allowed; }

.cc-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}
.cc-modal-actions .cc-btn { width: 100%; text-align: center; }

.cc-links {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-top: 16px;
  font-size: .9rem;
}

/* ============================================================
   Legal-Seiten
   ============================================================ */

.legal-note {
  background: rgba(176, 141, 106, .12);
  border: 1.5px dashed var(--brown);
  border-radius: 16px;
  padding: 16px 20px;
  margin-bottom: 2rem;
  color: var(--brown-deep);
  font-size: .96rem;
}

.legal .prose h2 { font-size: 1.5rem; }
.legal .prose h3 { font-size: 1.15rem; }
.legal address { font-style: normal; }
.legal .prose ul { margin: 0 0 1.1rem; padding-left: 1.3em; display: grid; gap: 6px; }

/* ---------- Kontakt: Hinweis für hilfreiche Angaben ---------- */

.contact-tips {
  background: var(--creme);
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  border-radius: 14px;
  padding: 16px 20px;
  margin-bottom: 22px;
  font-size: .97rem;
}
.contact-tips b { display: block; margin-bottom: .3rem; }
.contact-tips p { margin: 0 0 .5rem; color: var(--muted); }
.contact-tips ul {
  margin: 0;
  padding-left: 1.2em;
  color: var(--muted);
  display: grid;
  gap: 4px;
}

/* Honeypot-Feld: für Menschen unsichtbar, Bots füllen es aus */
.field.hp {
  position: absolute !important;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-error {
  display: none;
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(196, 84, 62, .1);
  border: 1px solid rgba(196, 84, 62, .4);
  color: #A03A28;
  font-size: .95rem;
}
.form-error.show { display: block; }

/* ---------- Google-Rezensionen in den Stimmen-Karten ---------- */

.voice-stars { display: inline-flex; gap: 2px; color: #F4B400; margin-bottom: 10px; }
.voice-stars svg { width: 16px; height: 16px; }

/* ---------- Footer: made by WarpSolutions ---------- */

.made-by {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: rgba(247, 241, 229, .55);
  transition: color .18s ease;
}
.made-by:hover { color: var(--creme); }
.made-by img { height: 46px; width: auto; margin: -14px -6px; display: block; }

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 1020px) {
  .focus-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .focus-card:nth-child(2) { margin-top: 0; }
  .voices { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--ink);
    padding: 10px;
    border-radius: 12px;
  }
  .nav-toggle:hover { background: rgba(60, 50, 36, .07); }
  .nav-toggle svg { width: 26px; height: 26px; }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 80;
    width: min(340px, 86vw);
    background: var(--paper);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 92px 30px 30px;
    box-shadow: -20px 0 60px rgba(41, 36, 26, .3);
    transform: translateX(105%);
    transition: transform .3s ease;
  }
  .main-nav.open { transform: none; }

  .main-nav a {
    font-size: 1.12rem;
    padding: 16px 0;
    width: 100%;
  }
  .main-nav a:not(.nav-cta) { border-bottom: 1px solid var(--line); }
  .main-nav a:not(.nav-cta)::after { display: none; }
  .nav-cta { margin-top: 22px; text-align: center; }

  .nav-close {
    display: flex;
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--ink);
    padding: 10px;
    border-radius: 12px;
  }
  .nav-close:hover { background: rgba(60, 50, 36, .07); }
  .nav-close svg { width: 24px; height: 24px; }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { max-width: 460px; }
  .hero-badge { left: 10px; }

  .quote-grid { grid-template-columns: 1fr; }
  .quote-media { max-width: 320px; }

  .split { grid-template-columns: 1fr; }
  .split-media { max-width: 520px; }

  .steps { grid-template-columns: 1fr; }
  .info-cards { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-band { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .img-placeholder { min-height: 200px; }
  .area-card { flex-direction: column; }
  .area-grid { grid-template-columns: 1fr; }
  .map-embed, .map-embed iframe, .map-load { min-height: 300px; }
}

@media (max-width: 620px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-badge { position: static; margin-top: 16px; max-width: none; }
  .brand-logo { width: 44px; height: 44px; }
  .cc-actions { flex-direction: column; align-items: stretch; }
  .cc-actions .cc-btn { width: 100%; text-align: center; }
}
