/* ==========================================================
   Helfer Fuchs · neue Website
   Zielgruppe: Privatkunden, viele davon älter.
   Grundsätze: große Schrift, ruhige Flächen, ein Akzent (Fuchs-Orange),
   Bewegung nur mit Zweck und nur ohne "Bewegung reduzieren".
   ========================================================== */

/* Schrift lokal gehostet (Variable Font, 400-800). Lizenz: SIL OFL, siehe assets/fonts */
@font-face {
  font-family: "Atkinson Hyperlegible Next";
  font-style: normal; font-weight: 400 800; font-display: swap;
  src: url("../assets/fonts/atkinson-hyperlegible-next-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Atkinson Hyperlegible Next";
  font-style: normal; font-weight: 400 800; font-display: swap;
  src: url("../assets/fonts/atkinson-hyperlegible-next-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --font: "Atkinson Hyperlegible Next", "Atkinson Hyperlegible", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Farben aus dem Maskottchen abgeleitet */
  --cream: #fbf6ee;
  --cream-deep: #f3ebdd;
  --ink: #2b2117;
  --ink-soft: #5a4a3a;
  --orange: #d9531e;
  --orange-deep: #b8421a;
  --green: #3f5a3a;
  --forest: #1f3320;       /* techmacher-Block */
  --bark: #2a1f14;         /* dunkle Betreuungs-Fläche */
  --night: #1c1610;        /* Nachtbild-Grund */
  --orange-light: #ffb48a; /* Orange auf Dunkel */
  --leaf-light: #b7e3a8;   /* Häkchen auf Grün */
  --line: rgba(43, 33, 23, 0.14);

  --radius: 14px;
  --radius-pill: 999px;
  --shadow: 0 10px 30px rgba(74, 48, 20, 0.18);

  --header-h: 76px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; }
/* Sprungziele (#pakete usw.) landen unter der festen Kopfzeile, nicht dahinter */
html { scroll-padding-top: calc(var(--header-h) + 0.75rem); }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 20px;            /* bewusst groß */
  line-height: 1.5;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { width: min(1280px, 100% - 2.5rem); margin-inline: auto; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 20;
  height: var(--header-h);
  background: rgba(251, 246, 238, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { height: 100%; display: flex; align-items: center; gap: 2rem; }
.brand { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
/* Wortmarke (finales Logo, 23.09.2026); Fuchskopf bleibt Favicon */
.brand-logo { height: 56px; width: auto; display: block; }
.brand-sub { font-size: 0.88rem; line-height: 1.3; color: var(--ink-soft); padding-left: 0.85rem; border-left: 1px solid var(--line); max-width: 16rem; white-space: nowrap; }
.main-nav { display: flex; gap: 1.75rem; margin-left: auto; }
.main-nav a { text-decoration: none; font-weight: 500; font-size: 1.05rem; padding: 0.4rem 0; border-bottom: 2px solid transparent; }
.main-nav a:hover { border-bottom-color: var(--orange); }
.phone-cta {
  display: flex; align-items: center; gap: 0.6rem;
  text-decoration: none; font-weight: 700;
  padding: 0.6rem 1.1rem; border-radius: var(--radius-pill);
  background: var(--orange); color: #fff;
  transition: transform 0.2s var(--ease), background 0.2s;
}
.phone-cta:hover { background: var(--orange-deep); }
.phone-cta:active { transform: translateY(1px); }
.phone-cta i { font-size: 1.25rem; }
.phone-label { display: none; }
.nav-toggle { display: none; }
.mobile-nav { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: calc(100dvh - var(--header-h));
  display: flex; flex-direction: column; justify-content: space-between;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -1; }
.hero-bg-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  object-position: 62% 60%;
  opacity: 0; transition: opacity 0.9s var(--ease);
  /* Bild rutscht nach hinten: leicht weich und etwas zurückgenommen, der Fuchs steht davor */
  transform: scale(1.06);
  filter: blur(1.5px) saturate(0.92) brightness(0.98);
}
.hero-bg-img.is-active { opacity: 1; }
/* Heller Schleier links, damit der Text auf dem Himmel gut lesbar bleibt */
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(251, 246, 238, 0.94) 0%, rgba(251, 246, 238, 0.82) 34%, rgba(251, 246, 238, 0.25) 56%, rgba(251, 246, 238, 0) 72%),
    linear-gradient(180deg, rgba(251, 246, 238, 0) 70%, rgba(251, 246, 238, 0.9) 100%);
}

.hero-inner {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  padding-top: clamp(2rem, 5vh, 4rem);
  position: relative; z-index: 1;
}
.hero-copy { max-width: 680px; padding-block: 1rem; position: relative; }
/* Weicher Lesbarkeits-Schein hinter dem Text: Text und Buttons liegen ÜBER dem Fuchs
   und bleiben auch dort lesbar, wo sie ihn überlappen */
.hero-copy::before {
  content: ""; position: absolute; z-index: -1;
  inset: -3rem -9rem -3rem -9rem;
  /* closest-side: die Ellipse endet an allen Rändern transparent, keine harte Kante */
  background: radial-gradient(closest-side at 50% 50%, rgba(251, 246, 238, 0.95) 0%, rgba(251, 246, 238, 0.88) 55%, rgba(251, 246, 238, 0) 100%);
  pointer-events: none;
}
.hero-kicker { margin: 0 0 0.6rem; font-size: 1.05rem; font-weight: 700; color: var(--orange-deep); }
.hero-title {
  margin: 0 0 1.25rem;
  font-size: clamp(2.4rem, 4.6vw, 4rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  font-weight: 800;
}
.hero-title .line { display: block; color: var(--orange); }
.hero-text {
  margin: 0 0 2rem;
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 34ch;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }

.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  min-height: 60px; padding: 0.85rem 1.75rem;
  border-radius: var(--radius-pill);
  font-weight: 700; font-size: 1.2rem; text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s var(--ease), background 0.2s, box-shadow 0.2s;
}
.btn i { font-size: 1.35rem; }
.btn:active { transform: translateY(1px) scale(0.99); }
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 8px 22px rgba(60, 35, 10, 0.22); }
.btn-primary:hover { background: var(--orange-deep); box-shadow: 0 10px 26px rgba(60, 35, 10, 0.28); }
.btn-secondary { background: rgba(255, 255, 255, 0.75); color: var(--ink); border: 2px solid var(--ink); }
.btn-secondary:hover { background: #fff; }

/* Der Fuchs steht ganz vorn in der Kamera: groß, unten angeschnitten, vor dem Hintergrund */
.hero-fox {
  position: absolute;
  right: clamp(0px, 2vw, 60px);
  bottom: -34%;
  height: 128%;
  width: 56%;
  z-index: 0;
  pointer-events: none;
}
.hero-fox-img {
  position: absolute; bottom: 0; left: 50%;
  height: 100%; width: auto; max-width: none;
  transform: translateX(-50%);
  opacity: 0;
  filter: drop-shadow(0 30px 40px rgba(60, 35, 10, 0.4));
  transition: opacity 0.6s var(--ease), transform 0.8s var(--ease);
}
.hero-fox-img.is-active { opacity: 1; }
.hero-tabs-wrap { position: relative; z-index: 2; display: flex; align-items: flex-start; gap: 0.6rem; }
/* Reihenfolge im Flex-Fluss (relevant, sobald der Fuchs mobil im Fluss steht) */
.hero-inner { order: 1; }
.hero-fox { order: 2; }
.hero-tabs-wrap { order: 3; }

/* Szenen-Reiter */
.scene-tabs {
  flex: 1; min-width: 0;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.6rem;
  padding-bottom: 1.5rem;
}
.scene-tab {
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  min-height: 64px; padding: 0.85rem 1.1rem;
  border-radius: var(--radius);
  border: 2px solid rgba(43, 33, 23, 0.12);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(6px);
  font: inherit; font-weight: 700; font-size: 1.05rem; color: var(--ink);
  cursor: pointer;
  transition: transform 0.2s var(--ease), border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.scene-tab i { font-size: 1.5rem; color: var(--orange); }
.scene-tab:hover { border-color: var(--orange); transform: translateY(-2px); }
.scene-tab:active { transform: translateY(0); }
.scene-tab.is-active { background: var(--ink); color: #fff; border-color: var(--ink); box-shadow: var(--shadow); }
.scene-tab.is-active i { color: var(--orange-light); }
.scene-tab:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }

/* Bedienblock rechts: blättern und anhalten */
.hero-controls { flex: none; display: flex; align-items: flex-start; gap: 0.5rem; }

/* Blätter-Pfeile */
.hero-arrow {
  flex: none; width: 64px; min-height: 64px; border-radius: 50%;
  display: grid; place-items: center; cursor: pointer;
  background: rgba(255, 255, 255, 0.86); color: var(--ink);
  border: 2px solid rgba(43, 33, 23, 0.14);
  backdrop-filter: blur(6px);
  font-size: 1.5rem; line-height: 1;
  transition: background 0.2s, border-color 0.2s, transform 0.2s var(--ease);
}
@media (hover: hover) and (pointer: fine) {
  .hero-arrow:hover { background: #fff; border-color: var(--orange); transform: translateY(-2px); }
}
.hero-arrow:active { transform: translateY(0) scale(0.96); }
.hero-arrow:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }

/* Pause-Knopf neben den Reitern */
.scene-pause[hidden] { display: none; }
.scene-pause {
  flex: none; width: 64px; min-height: 64px; border-radius: 50%;
  display: grid; place-items: center; cursor: pointer;
  border: 2px solid rgba(43, 33, 23, 0.12);
  background: rgba(255, 255, 255, 0.82); backdrop-filter: blur(6px);
  color: var(--ink); font-size: 1.35rem;
  transition: transform 0.2s var(--ease), border-color 0.2s, background 0.2s;
}
@media (hover: hover) and (pointer: fine) {
  .scene-pause:hover { border-color: var(--orange); transform: translateY(-2px); }
}
.scene-pause:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }

/* ---------- Versprechen ---------- */
.promises { background: var(--cream-deep); border-block: 1px solid var(--line); }
.promises-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding-block: 1.4rem;
}
.promise {
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
  font-weight: 700; font-size: 1.1rem;
  padding: 0.75rem 1.25rem;
}
.promise + .promise { border-left: 1px solid var(--line); }
.promise i { font-size: 1.6rem; color: var(--green); }

/* ---------- Abschnitte allgemein ---------- */
.section-head { max-width: 720px; margin-bottom: 2.5rem; }
.section-head h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.1; letter-spacing: -0.02em; font-weight: 800;
}
.section-head .accent { color: var(--orange); }
.section-head p { margin: 0; font-size: 1.25rem; color: var(--ink-soft); max-width: 60ch; }

/* ---------- Pakete ---------- */
.packages { padding: clamp(4rem, 8vw, 7rem) 0; }
.package-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto auto;
  gap: 1.25rem;
}
.package {
  position: relative;
  display: flex; flex-direction: column; gap: 0.9rem;
  padding: 2rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
}
.package h3 { margin: 0; font-size: 1.6rem; line-height: 1.2; letter-spacing: -0.01em; }
.package p { margin: 0; color: var(--ink-soft); font-size: 1.1rem; }
.package-icon { font-size: 2.4rem; color: var(--orange); }
.package-tag {
  align-self: flex-start;
  font-size: 0.95rem; font-weight: 700;
  padding: 0.5rem 0.95rem; border-radius: var(--radius-pill);
  background: var(--orange-deep); color: #fff;
}
.package-tag-light { background: rgba(251, 246, 238, 0.16); color: var(--cream); }
.package-list { list-style: none; margin: 0.25rem 0 0.5rem; padding: 0; display: grid; gap: 0.5rem; }
.package-list li { display: flex; align-items: center; gap: 0.6rem; font-size: 1.1rem; }
.package-list i { color: var(--green); font-size: 1.25rem; flex: none; }
.package .btn { align-self: flex-start; margin-top: auto; }
.package-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: auto; font-weight: 700; font-size: 1.1rem; color: var(--orange-deep); text-decoration: none;
}

.package-featured {
  grid-column: 1; grid-row: 1 / span 2;
  background: var(--cream-deep);
  border-color: transparent;
}
.package-wache {
  grid-column: 1 / -1;
  display: grid;
  position: relative; isolation: isolate; grid-template-columns: minmax(0, 3fr) minmax(0, 2fr); gap: 2rem;
  align-items: end;
  background: var(--bark); color: var(--cream);
  border-color: transparent;
  overflow: hidden;
  padding: 0;
  min-height: 420px;
}
.package-wache-bg {
  position: absolute; inset: 0; z-index: -1; width: 100%; height: 100%; object-fit: cover; object-position: 55% 40%;
  filter: brightness(0.55) saturate(0.9);
}
.package-wache::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(42,31,20,0.92) 0%, rgba(42,31,20,0.75) 45%, rgba(42,31,20,0.2) 100%); }
.package-wache-copy { padding: 2.5rem; display: flex; flex-direction: column; gap: 0.9rem; align-self: center; }
.package-wache h3 { color: var(--cream); font-size: 2rem; }
.package-wache p { color: rgba(251, 246, 238, 0.82); }
.package-wache .package-list i { color: #8fd08a; }
.package-wache-img {
  align-self: end; justify-self: center;
  height: 460px; width: auto; max-width: none;
  margin-bottom: -60px;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.45));
}
.packages-more { margin: 2rem 0 0; font-size: 1.15rem; color: var(--ink-soft); }
.packages-more a { color: var(--orange-deep); font-weight: 700; }

/* Paket-Illustrationen: ruhige Fläche, Bild immer ganz sichtbar */
.package-art { position: relative; border-radius: 14px; background: var(--cream); overflow: hidden; }
.package-art img { position: absolute; inset: 0.35rem; width: calc(100% - 0.7rem); height: calc(100% - 0.7rem); object-fit: contain; }
.package-featured .package-art { aspect-ratio: 16 / 10; max-height: 340px; width: 100%; margin-bottom: 0.5rem; background: rgba(255, 255, 255, 0.7); }
.package-featured .package-list { margin-bottom: 1.25rem; }
/* Die beiden kleineren Pakete: Bild links, Inhalt rechts - sobald die Karte breit genug ist */
.package-row { container-type: inline-size; }
.package-row-inner { display: flex; flex-direction: column; gap: 1.25rem; height: 100%; }
.package-row .package-art { aspect-ratio: 16 / 9; }
.package-copy { display: flex; flex-direction: column; gap: 0.75rem; flex: 1; }
.package-row .package-list { margin: 0 0 0.35rem; }
.package-row .package-list li { align-items: flex-start; font-size: 1.04rem; line-height: 1.4; }
.package-row .package-list i { margin-top: 0.15rem; }
@container (min-width: 470px) {
  .package-row-inner { display: grid; grid-template-columns: 180px minmax(0, 1fr); gap: 1.75rem; align-items: center; }
  .package-row .package-art { aspect-ratio: 1 / 1; }
}

@media (max-width: 900px) {
  .package-grid { grid-template-columns: 1fr; }
  .package-featured { grid-column: 1; grid-row: auto; }
  .package-wache { grid-template-columns: 1fr; min-height: 0; }
  .package-wache-img { height: 340px; margin-bottom: -40px; }
}
@media (max-width: 768px) {
  .package { padding: 1.5rem; }
  .package-wache-copy { padding: 1.75rem; }
  .package .btn { align-self: stretch; justify-content: center; }
}

/* ---------- Fuchs-Wache (Hauptprodukt) ---------- */
.section-head h2, .wache-intro h2, .wache-care h2, .pain h3, .phase h3 { text-wrap: balance; }
.accent-light { color: var(--orange-light); }
.btn-ghost-light { background: transparent; color: var(--cream); border: 2px solid rgba(251, 246, 238, 0.7); }
.btn-ghost-light:hover { background: rgba(251, 246, 238, 0.1); border-color: var(--cream); }

/* Einstieg: Nachtbild, Fuchs groß rechts, unten angeschnitten */
.wache-intro { position: relative; isolation: isolate; overflow: hidden; background: var(--night); color: var(--cream); }
.wache-intro-bg {
  position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%;
  object-fit: cover; object-position: 60% 40%;
  filter: brightness(0.6) saturate(0.9);
}
.wache-intro::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, rgba(28, 22, 16, 0.94) 0%, rgba(28, 22, 16, 0.8) 42%, rgba(28, 22, 16, 0.15) 75%, rgba(28, 22, 16, 0) 100%);
}
.wache-intro-inner {
  display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); align-items: end; gap: 2rem;
  min-height: 600px;
}
.wache-intro-copy { align-self: center; padding: clamp(4rem, 8vw, 6rem) 0; display: flex; flex-direction: column; gap: 1.25rem; }
.wache-intro-copy .package-tag { align-self: flex-start; }
.wache-intro h2 {
  margin: 0; font-size: clamp(2.3rem, 4.4vw, 3.6rem); line-height: 1.06; letter-spacing: -0.02em; font-weight: 800; color: var(--cream);
}
.wache-intro h2 .accent-light { display: block; }
.wache-intro-copy > p { margin: 0; font-size: clamp(1.15rem, 1.6vw, 1.35rem); line-height: 1.55; color: rgba(251, 246, 238, 0.9); max-width: 44ch; }
.wache-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 0.5rem; }
.wache-intro-fox {
  justify-self: center; align-self: end;
  height: 640px; width: auto; max-width: none;
  margin-bottom: -150px;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.5));
}

/* Schmerzpunkte */
.wache-pain { padding: clamp(4rem, 8vw, 6.5rem) 0; background: var(--cream-deep); border-bottom: 1px solid var(--line); }
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.pain {
  padding: 1.75rem; border-radius: var(--radius);
  background: #fff; border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 0.6rem;
}
.pain h3 { margin: 0; font-size: 1.35rem; line-height: 1.3; color: var(--ink); }
.pain p { margin: 0; color: var(--ink-soft); font-size: 1.08rem; }
.pain-bridge {
  margin: 3rem auto 0; max-width: 40ch; text-align: center;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem); line-height: 1.3; font-weight: 500;
}
.pain-bridge strong { display: block; color: var(--orange-deep); font-weight: 800; }

/* Einrichtung auf Business-Standard */
.wache-setup { padding: clamp(4rem, 8vw, 6.5rem) 0; background: #fff; }
.wache-setup .section-head { max-width: 760px; }
.wache-setup .section-head strong { color: var(--ink); }
/* Drei Phasen: Bild, Schrittmarke, ein Absatz */
.phase-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.phase {
  display: flex; flex-direction: column; overflow: hidden;
  border-radius: var(--radius); background: var(--cream); border: 1px solid var(--line);
}
.phase-media { aspect-ratio: 1 / 1; background: var(--night); }
.phase-media img { display: block; width: 100%; height: 100%; object-fit: cover; }
.phase-body { padding: 1.6rem 1.7rem 1.9rem; display: flex; flex-direction: column; gap: 0.6rem; }
.phase-step {
  display: inline-flex; align-items: center; gap: 0.6rem; align-self: flex-start;
  font-weight: 800; font-size: 0.92rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green);
}
.phase-num {
  flex: none; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center;
  background: var(--orange-deep); color: #fff; font-size: 1rem; letter-spacing: 0;
}
.phase h3 { margin: 0; font-size: 1.45rem; line-height: 1.25; }
.phase p { margin: 0; color: var(--ink-soft); font-size: 1.05rem; line-height: 1.6; }

/* Abschluss-Checkliste: alle Leistungen auf einen Blick */
.setup-summary {
  margin-top: clamp(2.5rem, 5vw, 3.5rem); padding: clamp(1.75rem, 3.5vw, 2.75rem);
  border-radius: var(--radius); background: var(--cream); border: 1px solid var(--line);
}
.setup-summary h3 { margin: 0 0 1.75rem; font-size: clamp(1.5rem, 2.6vw, 2rem); line-height: 1.2; }
.summary-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem 2.75rem; }
.summary-list > li { display: flex; gap: 0.85rem; align-items: flex-start; font-size: 1.05rem; line-height: 1.55; color: var(--ink-soft); }
.summary-list > li > i {
  flex: none; margin-top: 0.15rem; width: 26px; height: 26px; border-radius: 50%;
  display: grid; place-items: center; background: var(--green); color: #fff; font-size: 0.85rem;
}
.summary-list strong { color: var(--ink); }
.summary-note { margin: 2rem 0 0; font-size: 1.05rem; color: var(--ink-soft); }
.summary-note a { font-weight: 700; color: var(--orange-deep); }

/* ---------- Fuchs-Wache: Preis ---------- */
/* Sticker im dunklen Einstieg: rundes Preisschild (Bild) mit Text darueber, daneben die Bedingungen */
.wache-preis-zeile {
  display: flex; align-items: center; gap: 1.1rem; margin-top: 0.25rem; max-width: 44ch;
  color: var(--cream); text-decoration: none; border-bottom: 0;
}
.preis-sticker { position: relative; flex: none; width: 118px; height: 118px; transform: rotate(-7deg); filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.35)); transition: transform var(--t-ui) var(--ease); }
.wache-preis-zeile:hover .preis-sticker { transform: rotate(-3deg) scale(1.04); }
.preis-sticker img { display: block; width: 100%; height: 100%; }
.preis-sticker-text {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--cream); line-height: 1; text-align: center; padding-bottom: 6px;
}
.preis-sticker-text small { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.02em; }
.preis-sticker-text b { font-size: 1.55rem; font-weight: 800; letter-spacing: -0.02em; margin: 2px 0 3px; }
.wache-preis-info { display: flex; flex-direction: column; gap: 0.2rem; line-height: 1.4; }
.wache-preis-info strong { font-size: 1.15rem; color: var(--cream); }
.wache-preis-info span { font-size: 0.95rem; color: rgba(251, 246, 238, 0.75); }

/* Preiskarte unter "Das ist alles drin": Fuchs mit Holzschild, Betrag liegt auf dem Schild */
.preis-karte {
  margin-top: clamp(2rem, 4vw, 3rem); padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius); background: var(--bark); color: var(--cream);
  display: grid; grid-template-columns: minmax(220px, 2fr) minmax(0, 3fr); gap: clamp(1.5rem, 3vw, 3rem); align-items: center;
  scroll-margin-top: calc(var(--header-h) + 1rem);
}
/* feste Breite noetig: mit container-type hat der Block keine Eigenbreite, mit margin:auto wuerde er auf 0 schrumpfen */
.preis-fuchs { position: relative; container-type: inline-size; width: min(100%, 360px); margin: 0 auto; }
.preis-fuchs img { display: block; width: 100%; height: auto; filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.4)); }
/* Schildflaeche im Bild: links 16 %, oben 35 %, Breite 64 %, Hoehe 22 % */
.preis-schild {
  position: absolute; left: 16%; top: 35.5%; width: 64%; height: 21.5%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; line-height: 1;
  color: #3a2814; text-shadow: 0 1px 0 rgba(255, 240, 220, 0.35); transform: rotate(-1deg);
}
.preis-schild .ab { font-size: 5.5cqw; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.preis-schild .betrag { font-size: 15cqw; font-weight: 800; letter-spacing: -0.02em; margin: 1cqw 0; }
.preis-schild .einheit { font-size: 5.5cqw; font-weight: 700; }
.preis-text { display: flex; flex-direction: column; gap: 0.9rem; align-items: flex-start; }
.preis-text .package-tag { background: var(--orange); }
.preis-text h3 { margin: 0; font-size: clamp(1.6rem, 2.8vw, 2.2rem); line-height: 1.15; color: var(--cream); }
.preis-gross { margin: 0; display: flex; align-items: baseline; gap: 0.5rem; flex-wrap: wrap; color: var(--orange-light); }
.preis-gross b { font-size: clamp(2.6rem, 5vw, 3.6rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.preis-gross span { font-size: 1.1rem; font-weight: 600; }
.preis-hinweis { margin: -0.3rem 0 0; font-size: 1rem; color: rgba(251, 246, 238, 0.78); max-width: 42ch; }
/* Zwei Zahlweisen: jährlich (empfohlen, 9,95) und monatlich (14,95) */
.zahlweisen { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.75rem; width: 100%; max-width: 34rem; }
.zahlweise {
  position: relative; display: flex; flex-direction: column; gap: 0.2rem;
  padding: 1rem 1.1rem 0.95rem; border-radius: 12px; background: rgba(251, 246, 238, 0.06); border: 1px solid rgba(251, 246, 238, 0.16);
}
.zahlweise.empfohlen { background: rgba(255, 180, 138, 0.12); border-color: var(--orange-light); }
.zw-tag { position: absolute; top: -0.7rem; left: 1rem; font-size: 0.75rem; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; background: var(--orange); color: #fff; border-radius: var(--radius-pill); padding: 0.2rem 0.6rem; }
.zw-titel { font-size: 0.95rem; font-weight: 700; color: rgba(251, 246, 238, 0.85); }
.zw-preis { color: var(--orange-light); font-size: 1rem; font-weight: 600; }
.zw-preis b { font-size: clamp(1.7rem, 3vw, 2.2rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; margin-right: 0.2rem; }
.zw-info { font-size: 0.85rem; line-height: 1.35; color: rgba(251, 246, 238, 0.72); }
@media (max-width: 480px) { .zahlweisen { grid-template-columns: 1fr; } }
.preis-punkte { list-style: none; margin: 0.25rem 0 0.5rem; padding: 0; display: grid; gap: 0.55rem; }
.preis-punkte li { display: flex; gap: 0.7rem; align-items: center; font-size: 1.05rem; }
.preis-punkte i { flex: none; width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; background: var(--green); color: var(--leaf-light); font-size: 0.8rem; }
@media (max-width: 760px) {
  .preis-karte { grid-template-columns: 1fr; text-align: left; }
  .preis-fuchs { width: min(100%, 260px); }
  .wache-preis-zeile { align-items: flex-start; }
  .preis-sticker { width: 96px; height: 96px; }
  .preis-sticker-text b { font-size: 1.25rem; }
}

/* "Was ist das?" zum Aufklappen */
.explain { margin-top: 0.45rem; }
.explain > summary {
  cursor: pointer; display: inline-flex; align-items: center; gap: 0.45rem;
  font-weight: 700; font-size: 0.98rem; color: var(--green); list-style: none;
}
.explain > summary::-webkit-details-marker { display: none; }
.explain > summary::after {
  content: ""; width: 0.4em; height: 0.4em; margin-top: -0.25em;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg); transition: transform var(--t-ui) var(--ease-out);
}
.explain[open] > summary::after { transform: rotate(-135deg); margin-top: 0.1em; }
.explain > summary:focus-visible { outline: 3px solid var(--orange-deep); outline-offset: 3px; border-radius: 4px; }
.explain p {
  margin: 0.6rem 0 0; padding: 0.9rem 1.05rem; max-width: 60ch;
  border-radius: 12px; background: #fff; border: 1px solid var(--line);
  font-size: 1rem; line-height: 1.55; color: var(--ink-soft);
}

/* Laufende Betreuung */
.wache-care { padding: clamp(4rem, 8vw, 6.5rem) 0; background: var(--bark); color: var(--cream); }
.wache-care-inner { display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 6fr); gap: 4rem; align-items: center; }
.wache-care h2 { margin: 0 0 1.25rem; font-size: clamp(2rem, 3.6vw, 3rem); line-height: 1.1; letter-spacing: -0.02em; font-weight: 800; color: var(--cream); }
.wache-care-lead { margin: 0 0 2rem; font-size: 1.2rem; line-height: 1.6; color: rgba(251, 246, 238, 0.88); }
.wache-promise {
  display: flex; align-items: center; gap: 1rem; margin: 0;
  padding: 1.25rem 1.4rem; border-radius: var(--radius);
  background: rgba(251, 246, 238, 0.08); border: 1px solid rgba(251, 246, 238, 0.16);
  font-size: 1.3rem; line-height: 1.35;
}
.wache-promise i {
  flex: none; width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
  background: var(--orange); color: #fff; font-size: 1.5rem;
}
.wache-promise strong { color: var(--orange-light); }
.wache-timeline { padding: 2rem; border-radius: var(--radius); background: var(--cream); color: var(--ink); }
.wache-timeline-title { margin: 0 0 1.25rem; font-weight: 700; color: var(--ink-soft); font-size: 1.05rem; }
.wache-timeline ol { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.5rem; position: relative; }
.wache-timeline ol::before {
  content: ""; position: absolute; left: 23px; top: 12px; bottom: 12px; width: 2px;
  background: rgba(217, 83, 30, 0.25);
}
.wache-timeline li { display: grid; grid-template-columns: 48px 1fr; gap: 1rem; align-items: start; position: relative; }
.wache-timeline li > i {
  width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center;
  background: #fff; border: 2px solid var(--orange); color: var(--orange-deep); font-size: 1.4rem;
}
.wache-timeline li:last-child > i { background: var(--orange); color: #fff; }
.wache-timeline strong { display: block; font-size: 1.15rem; line-height: 1.35; margin-top: 0.2rem; }
.wache-timeline span { display: block; color: var(--ink-soft); font-size: 1.02rem; margin-top: 0.2rem; }

/* Ohne / Mit */
.wache-compare { padding: clamp(4rem, 8vw, 6.5rem) 0; background: var(--cream); }
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.compare-col { padding: 2rem; border-radius: var(--radius); }
.compare-col h3 { margin: 0 0 1.25rem; font-size: 1.5rem; }
.compare-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.9rem; }
.compare-col li { display: grid; grid-template-columns: 28px 1fr; gap: 0.75rem; align-items: start; font-size: 1.1rem; line-height: 1.45; }
.compare-col li i { font-size: 1.5rem; margin-top: 0.05rem; }
.compare-without { background: #fff; border: 1px solid var(--line); color: var(--ink-soft); }
.compare-without h3 { color: var(--ink-soft); }
.compare-without strong { color: var(--ink); }
.compare-without li i { color: #9a8a7a; }
.compare-with { background: var(--green); color: var(--cream); }
.compare-with h3 { color: var(--cream); }
.compare-with li i { color: var(--leaf-light); }

.wache-cta {
  margin-top: 2.5rem; padding: 2rem 2.25rem; border-radius: var(--radius);
  background: #fff; border: 1px solid var(--line);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.wache-cta h3 { margin: 0 0 0.3rem; font-size: 1.5rem; }
.wache-cta p { margin: 0; color: var(--ink-soft); }
.wache-cta-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }

@media (max-width: 1024px) {
  .phase-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .phase { flex-direction: row; gap: 1.5rem; padding: 1.5rem; align-items: flex-start; }
  .phase-media { flex: none; width: 200px; border-radius: 14px; overflow: hidden; }
  .phase-body { padding: 0; }
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .wache-intro-inner { grid-template-columns: 1fr; min-height: 0; }
  .wache-intro-copy { padding-bottom: 0; }
  .wache-intro::after { background: linear-gradient(180deg, rgba(28, 22, 16, 0.92) 0%, rgba(28, 22, 16, 0.75) 55%, rgba(28, 22, 16, 0.3) 100%); }
  .wache-intro-fox { height: 420px; margin-bottom: -110px; }
  .wache-care-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .compare-grid { grid-template-columns: 1fr; }
  .summary-list { grid-template-columns: 1fr; gap: 1.1rem; }
}
@media (max-width: 640px) {
  .pain-grid { grid-template-columns: 1fr; }
  .phase { flex-direction: column; gap: 1rem; padding: 1.25rem; }
  .phase-media { width: 100%; }
  .wache-actions .btn, .wache-cta-actions .btn { width: 100%; justify-content: center; }
  .wache-timeline, .compare-col { padding: 1.5rem; }
  .wache-promise { font-size: 1.15rem; }
}

/* ---------- Leistungen ---------- */
.services { padding: clamp(4rem, 8vw, 7rem) 0; background: #fff; border-block: 1px solid var(--line); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.service {
  display: flex; flex-direction: column; gap: 0.6rem;
  padding: 1.75rem; border-radius: var(--radius);
  background: var(--cream); border: 1px solid var(--line);
}
.service img { width: 190px; height: 190px; object-fit: contain; margin: -0.5rem 0 0.25rem -0.75rem; }
.service-icon-wrap {
  width: 150px; height: 120px; display: grid; place-items: center; margin-bottom: 0.5rem;
  font-size: 4rem; color: var(--green);
}
.service h3 { margin: 0; font-size: 1.35rem; line-height: 1.2; }
.service p { margin: 0; color: var(--ink-soft); font-size: 1.05rem; }
.service-ask { background: var(--ink); color: var(--cream); border-color: transparent; justify-content: center; }
.service-ask h3 { font-size: 1.7rem; }
.service-ask p { color: rgba(251, 246, 238, 0.82); margin-bottom: 0.75rem; }
.service-ask .btn { align-self: flex-start; }
.service-ask-alt { margin: 0.9rem 0 0 !important; font-size: 1.05rem; color: rgba(251, 246, 238, 0.82); }
.service-ask-alt a { color: var(--orange-light); font-weight: 700; }
@media (max-width: 1024px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) {
  .service-grid { grid-template-columns: 1fr; }
  .service img, .service-icon-wrap { width: 150px; height: 150px; }
  .service-icon-wrap { font-size: 3rem; }
  .service-ask .btn { align-self: stretch; justify-content: center; }
}

/* ---------- So läuft's ab ---------- */
.steps { padding: clamp(4rem, 8vw, 7rem) 0; background: var(--cream-deep); border-block: 1px solid var(--line); }
.steps-list {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem;
  counter-reset: step;
}
.step { position: relative; padding-top: 0.5rem; }
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; top: 0; right: 0;
  font-size: 5rem; font-weight: 800; line-height: 1; color: rgba(217, 83, 30, 0.14);
}
.step-icon {
  width: 64px; height: 64px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--orange); color: #fff; font-size: 1.8rem;
  margin-bottom: 1.25rem;
}
.step h3 { margin: 0 0 0.5rem; font-size: 1.5rem; }
.step p { margin: 0; color: var(--ink-soft); font-size: 1.1rem; }

/* ---------- techmacher ---------- */
/* Dunkles Waldgrün, damit sich der Block abhebt und das grüne Logo wirkt. Alle Texte hell. */
/* ---------- Einsatzgebiet ---------- */
.region { padding: clamp(4rem, 8vw, 7rem) 0; background: #fff; }
.region-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.region-card {
  display: flex; flex-direction: column; gap: 0.5rem;
  padding: 1.6rem 1.7rem; border-radius: var(--radius); background: var(--cream); border: 1px solid var(--line);
}
.region-card i { font-size: 1.9rem; color: var(--orange); }
.region-card h3 { margin: 0; font-size: 1.45rem; line-height: 1.2; }
.region-card p { margin: 0; color: var(--ink-soft); font-size: 1.05rem; line-height: 1.5; }
.region-note { margin: 2rem 0 0; font-size: 1.15rem; color: var(--ink-soft); }
.region-note a { color: var(--orange-deep); font-weight: 700; }
@media (max-width: 1024px) { .region-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 760px) { .region-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .region-grid { grid-template-columns: 1fr; } }

.pro { padding: clamp(4rem, 8vw, 7rem) 0; background: var(--forest); color: var(--cream); }
.pro-brand { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.pro-logo { width: 230px; height: auto; }
.pro-brand-label { font-size: 1.05rem; color: rgba(251, 246, 238, 0.7); padding-left: 1.25rem; border-left: 1px solid rgba(251, 246, 238, 0.25); }
.pro-inner { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 4rem; align-items: center; }
.pro h2 { margin: 0 0 1rem; font-size: clamp(2rem, 3.6vw, 3rem); line-height: 1.1; letter-spacing: -0.02em; font-weight: 800; color: var(--cream); }
.pro-lead { font-size: 1.35rem; line-height: 1.45; margin: 0 0 1.25rem; color: var(--cream); font-weight: 500; }
.pro-copy p { color: rgba(251, 246, 238, 0.88); font-size: 1.15rem; line-height: 1.6; max-width: 58ch; margin: 0 0 1rem; }
.pro-copy .btn { margin-top: 1.25rem; }
.pro .btn-secondary { background: transparent; color: var(--cream); border-color: rgba(251, 246, 238, 0.7); }
.pro .btn-secondary:hover { background: rgba(251, 246, 238, 0.1); border-color: var(--cream); }

.pro-quote-card {
  margin: 0; padding: 2.25rem;
  border-radius: var(--radius);
  background: var(--cream); color: var(--ink);
}
.pro-quote-card blockquote { margin: 0 0 1.5rem; }
.pro-quote-card blockquote p { margin: 0; font-size: clamp(1.4rem, 2vw, 1.8rem); line-height: 1.3; font-weight: 700; letter-spacing: -0.01em; }
.pro-quote-card figcaption { display: flex; align-items: center; gap: 0.9rem; }
.pro-quote-card figcaption img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; object-position: 50% 20%; }
.pro-quote-card figcaption span { display: flex; flex-direction: column; line-height: 1.3; color: var(--ink-soft); font-size: 1rem; }
.pro-quote-card figcaption strong { color: var(--ink); font-size: 1.1rem; }

.pro-facts {
  list-style: none; margin: 3rem 0 0; padding: 2rem 0 0;
  border-top: 1px solid rgba(251, 246, 238, 0.2);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.pro-facts li { display: flex; flex-direction: column; gap: 0.3rem; }
.pro-facts li + li { border-left: 1px solid rgba(251, 246, 238, 0.2); padding-left: 1.5rem; }
.fact-number { font-size: 2.8rem; font-weight: 800; line-height: 1; letter-spacing: -0.02em; color: var(--orange-light); }
.fact-label { font-size: 1.05rem; color: rgba(251, 246, 238, 0.85); }

/* ---------- Team ---------- */
.team { padding: clamp(4rem, 8vw, 7rem) 0; background: #fff; border-block: 1px solid var(--line); }
.team-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; max-width: 1040px; }
.member {
  display: grid; grid-template-columns: 132px minmax(0, 1fr); gap: 1.5rem; align-items: center;
  padding: 1.5rem; border-radius: var(--radius); background: var(--cream); border: 1px solid var(--line);
}
.member img { width: 132px; height: 132px; object-fit: cover; object-position: 50% 15%; border-radius: 50%; }
.member h3 { margin: 0 0 0.2rem; font-size: 1.5rem; }
.member .member-role { margin: 0 0 0.6rem; color: var(--orange-deep); font-weight: 700; }
.member p { margin: 0; color: var(--ink-soft); font-size: 1.1rem; }

/* ---------- Kundenstimmen ---------- */
.quotes { padding: clamp(4rem, 8vw, 7rem) 0; }
.quote-grid { display: grid; grid-template-columns: minmax(0, 3fr) minmax(0, 2fr); grid-auto-rows: auto; gap: 1.25rem; }
.quote {
  position: relative; margin: 0; padding: 2rem;
  border-radius: var(--radius); background: #fff; border: 1px solid var(--line);
}
.quote-big { grid-row: 1 / span 2; background: var(--cream-deep); border-color: transparent; display: flex; flex-direction: column; justify-content: center; }
.quote p { margin: 0 0 1rem; font-size: 1.25rem; line-height: 1.45; }
.quote-big p { font-size: 1.7rem; line-height: 1.35; font-weight: 500; }
.quote footer { color: var(--ink-soft); font-weight: 700; }

/* ---------- Vertrauen (statt Kundenstimmen, bis echte Zitate da sind) ---------- */
.trust { padding: clamp(4rem, 8vw, 7rem) 0; }
.trust-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: 1.5rem; align-items: stretch; }
.trust-word {
  display: flex; flex-direction: column; justify-content: center; gap: 1.25rem;
  padding: clamp(1.75rem, 3.5vw, 2.75rem); border-radius: var(--radius);
  background: var(--cream-deep);
}
.trust-faces { display: flex; }
.trust-faces img {
  width: 64px; height: 64px; border-radius: 50%; object-fit: cover; object-position: 50% 15%;
  border: 3px solid var(--cream-deep);
}
.trust-faces img + img { margin-left: -14px; }
.trust-quote { margin: 0; font-size: clamp(1.25rem, 1.9vw, 1.5rem); line-height: 1.45; font-weight: 500; text-wrap: pretty; }
.trust-sign { margin: 0; display: flex; flex-direction: column; gap: 0.15rem; color: var(--ink-soft); }
.trust-sign strong { color: var(--ink); }
.trust-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.trust-list li {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.25rem 1.4rem; border-radius: var(--radius); background: #fff; border: 1px solid var(--line);
  font-size: 1.08rem; line-height: 1.5; color: var(--ink-soft);
}
.trust-list li > i {
  flex: none; width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  background: var(--green); color: #fff; font-size: 1.4rem;
}
.trust-list strong { display: block; color: var(--ink); font-size: 1.15rem; margin-bottom: 0.15rem; }
@media (max-width: 900px) {
  .trust-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .trust-list li { padding: 1.1rem 1.15rem; gap: 0.85rem; }
  .trust-list li > i { width: 40px; height: 40px; font-size: 1.2rem; }
}
.sample-tag {
  position: absolute; top: 0.9rem; right: 0.9rem;
  font-size: 0.8rem; font-weight: 700; padding: 0.45rem 0.75rem; border-radius: var(--radius-pill);
  background: #fde7c8; color: #7a4a10; border: 1px dashed #c98a3a;
}

/* ---------- FAQ ---------- */
.faq { padding: clamp(4rem, 8vw, 7rem) 0; background: var(--cream-deep); border-block: 1px solid var(--line); }
.faq-inner { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); gap: 3rem; align-items: start; }
.faq-inner .section-head { margin-bottom: 0; }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list details:first-child { border-top: 1px solid var(--line); }
.faq-list summary {
  cursor: pointer; list-style: none;
  padding: 1.25rem 3.5rem 1.25rem 0.75rem; position: relative;
  font-size: 1.3rem; font-weight: 700;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+"; position: absolute; right: 0.5rem; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  background: #fff; border: 1px solid var(--line); font-size: 1.6rem; font-weight: 500; color: var(--orange);
}
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p { margin: 0 0 1.25rem; padding: 0 3.5rem 0 0.75rem; color: var(--ink-soft); font-size: 1.15rem; }

/* ---------- Kontakt ---------- */
.contact { padding: clamp(4rem, 8vw, 7rem) 0; }
.contact-inner { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: 4rem; align-items: start; }
.contact h2 { margin: 0 0 0.75rem; font-size: clamp(2rem, 3.6vw, 3rem); line-height: 1.1; letter-spacing: -0.02em; font-weight: 800; }
.contact-copy > p { color: var(--ink-soft); font-size: 1.2rem; margin: 0 0 1.5rem; }
.contact-phone {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: var(--orange); text-decoration: none;
  margin-bottom: 1.5rem;
}
.contact-facts { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.75rem; }
.contact-facts li { display: flex; align-items: center; gap: 0.75rem; font-size: 1.1rem; }
.contact-facts i { color: var(--green); font-size: 1.4rem; flex: none; }
.contact-facts a { color: var(--ink); }
.contact-form {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem; display: grid; gap: 1.25rem;
}
.field { display: grid; gap: 0.4rem; }
.field label { font-weight: 700; font-size: 1.1rem; }
.field input, .field textarea {
  font: inherit; font-size: 1.15rem; color: var(--ink);
  padding: 0.9rem 1rem; border-radius: 10px;
  border: 2px solid rgba(43, 33, 23, 0.25); background: var(--cream);
}
.field input:focus, .field textarea:focus { outline: 3px solid var(--orange); outline-offset: 2px; border-color: var(--ink); }
.field small { color: var(--ink-soft); font-size: 0.95rem; }
.field-hp { position: absolute; left: -9999px; }
.field .optional { font-weight: 400; color: var(--ink-soft); font-size: 0.95rem; }
.field-plz input { max-width: 12rem; }
.turnstile { min-height: 65px; }
.form-status { margin: 0; font-size: 1.05rem; font-weight: 700; padding: 0.9rem 1rem; border-radius: 10px; }
.form-status:empty { display: none; }
.form-status.is-success { background: #e4f1de; color: #27451f; }
.form-status.is-error { background: #fbe3d8; color: #7a2a12; }
.contact-form .btn { justify-self: start; }
.form-note { margin: 0; font-size: 0.95rem; color: var(--ink-soft); }
.form-note a { color: var(--ink); }

/* ---------- Footer ---------- */
.site-footer { padding: 2rem 0; border-top: 1px solid var(--line); background: var(--cream-deep); }
/* SABESUS-Gruppen-Footer (js/sabesus-footer.js, Shadow DOM) im Farbstil der Seite: dunkle Rinde, Creme, Orange */
sabesus-footer {
  font-family: var(--font);
  /* gleiche Kante wie .wrap (min(1280px, 100% - 2.5rem)): Logo steht buendig unter dem Helfer-Fuchs-Logo */
  --sf-pad-x: 1.25rem;
  --sf-max: calc(1280px + 2.5rem);
  --sf-bg: var(--bark);
  --sf-fg: var(--cream);
  --sf-dim: rgba(251, 246, 238, 0.72);
  --sf-faint: rgba(251, 246, 238, 0.42);
  --sf-line: rgba(251, 246, 238, 0.14);
  --sf-accent: var(--orange-light);
}
.footer-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; }
.footer-brand { display: flex; align-items: center; gap: 0.75rem; color: var(--ink-soft); font-size: 1rem; }
.footer-brand img { height: 40px; width: auto; }
.footer-nav { display: flex; gap: 1.5rem; }
/* Facebook / Instagram im Fuss: runde Icon-Knoepfe */
.footer-social { display: flex; gap: 0.6rem; }
.footer-social a {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  background: var(--cream); border: 1px solid var(--line); color: var(--ink); font-size: 1.4rem; text-decoration: none;
  transition: background var(--t-ui) var(--ease), color var(--t-ui) var(--ease), transform var(--t-ui) var(--ease);
}
.footer-social a:hover, .footer-social a:focus-visible { background: var(--orange); border-color: var(--orange); color: #fff; transform: translateY(-2px); }
.footer-nav a { color: var(--ink); text-decoration: none; font-weight: 500; }

@media (max-width: 900px) {
  .steps-list { grid-template-columns: 1fr; gap: 2rem; }
  .pro-inner, .faq-inner, .contact-inner { grid-template-columns: 1fr; gap: 2rem; }
  .pro-facts { grid-template-columns: 1fr 1fr; }
  .pro-facts li + li { border-left: 0; padding-left: 0; }
  .team-grid { grid-template-columns: 1fr; gap: 1rem; }
  .quote-grid { grid-template-columns: 1fr; }
  .quote-big { grid-row: auto; }
}
@media (max-width: 768px) {
  .contact-form { padding: 1.5rem; }
  .contact-form .btn { justify-self: stretch; justify-content: center; }
  .fact-number { font-size: 2.2rem; }
}

/* ---------- Unterseiten ---------- */
.subpage-head { padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem); }
.subpage-head h1, .legal h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(2.2rem, 4vw, 3.4rem); line-height: 1.08; letter-spacing: -0.02em; font-weight: 800;
}
.subpage-head .accent { color: var(--orange); }
.subpage-head p { margin: 0; font-size: 1.25rem; color: var(--ink-soft); max-width: 60ch; }

.pkg-group { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.pkg-group h2 { margin: 0 0 1.5rem; font-size: clamp(1.6rem, 2.6vw, 2.2rem); letter-spacing: -0.01em; }
.pkg-group-dark { background: var(--cream-deep); border-block: 1px solid var(--line); }
.pkg-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.pkg {
  display: grid; grid-template-columns: auto 1fr; gap: 0.35rem 1.25rem; align-items: start;
  padding: 1.75rem; border-radius: var(--radius);
  background: #fff; border: 1px solid var(--line);
}
/* Icon links ueber alle Zeilen, alle Texte rechts - sonst rutscht ein dritter Absatz (z. B. Preiszeile) in die Icon-Spalte */
.pkg > i { grid-row: 1 / -1; font-size: 2.2rem; color: var(--orange); margin-top: 0.15rem; }
.pkg > :not(i) { grid-column: 2; }
.pkg h3 { margin: 0; font-size: 1.4rem; line-height: 1.2; }
.pkg p { margin: 0; color: var(--ink-soft); font-size: 1.05rem; }
.pkg-highlight { background: var(--green); border-color: transparent; color: var(--cream); }
.pkg-highlight > i { color: var(--orange-light); }
.pkg-highlight p { color: rgba(251, 246, 238, 0.85); }
.pkg-preis { font-size: 1rem; }
.pkg-preis b { display: block; font-size: 1.35rem; font-weight: 800; color: var(--orange-light); margin-bottom: 0.15rem; }

.pkg-cta { padding: clamp(3rem, 6vw, 5rem) 0; }
.pkg-cta-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 2.5rem; border-radius: var(--radius); background: var(--ink); color: var(--cream);
}
.pkg-cta h2 { margin: 0 0 0.4rem; font-size: 1.7rem; }
.pkg-cta p { margin: 0; color: rgba(251, 246, 238, 0.82); }

/* Rechtsseiten */
.legal { padding: clamp(3rem, 6vw, 5rem) 0; }
.legal-inner { max-width: 820px; }
.legal h2 { margin: 2.5rem 0 0.75rem; font-size: 1.6rem; line-height: 1.2; }
.legal h3 { margin: 1.75rem 0 0.5rem; font-size: 1.25rem; }
.legal h4 { margin: 1.25rem 0 0.4rem; font-size: 1.1rem; }
.legal p { margin: 0 0 1rem; color: var(--ink-soft); }
.legal a { color: var(--orange-deep); word-break: break-word; }
.legal-back { margin-top: 3rem; }
.legal-stand { color: var(--ink-soft); font-size: 1rem; margin: -0.25rem 0 1.5rem; }

@media (max-width: 800px) { .pkg-grid { grid-template-columns: 1fr; } .pkg-cta-inner { padding: 1.75rem; } .pkg-cta .btn { width: 100%; justify-content: center; } }

/* ---------- Platzhalter ---------- */
.placeholder { padding: 5rem 0; border-bottom: 1px dashed var(--line); color: var(--ink-soft); }

/* ---------- Dunkle Szenen (Fuchsbau, Nacht): heller Text, dunkler Schleier ---------- */
.hero[data-scene="fernwartung"] .hero-scrim,
.hero[data-scene="abo"] .hero-scrim,
.hero[data-scene="wache"] .hero-scrim {
  background:
    linear-gradient(90deg, rgba(38, 24, 12, 0.88) 0%, rgba(38, 24, 12, 0.72) 34%, rgba(38, 24, 12, 0.2) 56%, rgba(38, 24, 12, 0) 72%),
    linear-gradient(180deg, rgba(38, 24, 12, 0) 70%, rgba(38, 24, 12, 0.85) 100%);
}
.hero[data-scene="fernwartung"] .hero-title,
.hero[data-scene="abo"] .hero-title,
.hero[data-scene="wache"] .hero-title { color: var(--cream); }
.hero[data-scene="fernwartung"] .hero-title .line,
.hero[data-scene="abo"] .hero-title .line,
.hero[data-scene="wache"] .hero-title .line { color: #ff9d6b; }
.hero[data-scene="fernwartung"] .hero-kicker,
.hero[data-scene="abo"] .hero-kicker,
.hero[data-scene="wache"] .hero-kicker { color: var(--orange-light); }
.hero[data-scene="fernwartung"] .hero-text,
.hero[data-scene="abo"] .hero-text,
.hero[data-scene="wache"] .hero-text { color: rgba(251, 246, 238, 0.86); }
.hero[data-scene="fernwartung"] .btn-secondary,
.hero[data-scene="abo"] .btn-secondary,
.hero[data-scene="wache"] .btn-secondary { background: rgba(38, 24, 12, 0.55); color: var(--cream); border-color: var(--cream); }
.hero[data-scene="fernwartung"] .btn-secondary:hover,
.hero[data-scene="abo"] .btn-secondary:hover,
.hero[data-scene="wache"] .btn-secondary:hover { background: rgba(38, 24, 12, 0.8); }
.hero[data-scene="fernwartung"] .hero-copy::before,
.hero[data-scene="abo"] .hero-copy::before,
.hero[data-scene="wache"] .hero-copy::before {
  background: radial-gradient(closest-side at 50% 50%, rgba(38, 24, 12, 0.85) 0%, rgba(38, 24, 12, 0.75) 55%, rgba(38, 24, 12, 0) 100%);
}
.hero[data-scene="fernwartung"] .scene-tab:not(.is-active),
.hero[data-scene="abo"] .scene-tab:not(.is-active),
.hero[data-scene="wache"] .scene-tab:not(.is-active) { background: rgba(251, 246, 238, 0.9); }
.hero .hero-scrim, .hero .hero-title, .hero .hero-text, .hero .btn-secondary { transition: color 0.6s ease, background 0.6s ease, border-color 0.6s ease; }
@media (max-width: 768px) {
  .hero[data-scene="fernwartung"] .hero-scrim,
.hero[data-scene="abo"] .hero-scrim,
  .hero[data-scene="wache"] .hero-scrim {
    background: linear-gradient(180deg, rgba(38, 24, 12, 0.92) 0%, rgba(38, 24, 12, 0.85) 45%, rgba(38, 24, 12, 0.3) 70%, rgba(38, 24, 12, 0.8) 100%);
  }
}

/* Textwechsel zwischen Szenen: zieht in Blätterrichtung heraus, kommt von der anderen Seite herein */
.hero-copy { transition: opacity 0.18s ease, transform 0.18s ease; }
.hero-copy.is-switching { opacity: 0; transform: translateY(6px); }
.hero-copy.is-switching[data-dir="next"] { transform: translateX(-28px); }
.hero-copy.is-switching[data-dir="prev"] { transform: translateX(28px); }
.hero-copy.is-in { animation: copy-in 420ms var(--ease-out) both; }
.hero-copy.is-in[data-dir="prev"] { animation-name: copy-in-prev; }
@keyframes copy-in { from { opacity: 0; transform: translateX(28px); } to { opacity: 1; transform: none; } }
@keyframes copy-in-prev { from { opacity: 0; transform: translateX(-28px); } to { opacity: 1; transform: none; } }

/* Einstiegs-Animationen: siehe Abschnitt "Bewegung" am Ende der Datei */

/* ---------- Mobil ---------- */
@media (max-width: 1024px) {
  .main-nav { display: none; }
  .nav-toggle {
    display: grid; place-items: center; margin-left: auto;
    width: 52px; height: 52px; border-radius: var(--radius);
    border: 2px solid var(--line); background: #fff; font-size: 1.6rem; cursor: pointer;
  }
  .phone-cta { margin-left: auto; }
  .nav-toggle { margin-left: 0; }
  .mobile-nav { display: flex; flex-direction: column; background: var(--cream); border-bottom: 1px solid var(--line); }
  .mobile-nav[hidden] { display: none; }
  .mobile-nav a { padding: 1rem 1.25rem; text-decoration: none; font-weight: 700; font-size: 1.15rem; border-top: 1px solid var(--line); }
  .scene-tabs { grid-template-columns: repeat(5, 1fr); gap: 0.4rem; }
  .scene-pause, .hero-arrow { width: 56px; min-height: 56px; height: 56px; }
  .scene-tab { flex-direction: column; gap: 0.25rem; font-size: 0.85rem; min-height: 72px; padding: 0.5rem 0.3rem; }
}
@media (max-width: 768px) {
  body { font-size: 18px; }
  .phone-number { display: none; }
  .phone-label { display: inline; }
  .brand-sub { display: none; }
  .header-inner { gap: 0.75rem; }
  .brand-logo { height: 44px; }
  .hero { min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 0; padding-top: 1.5rem; }
  .hero-copy { max-width: none; text-align: left; }
  .hero-title { font-size: clamp(2rem, 9vw, 2.6rem); }
  .hero-text { max-width: none; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  /* Mobil: Fuchs unter dem Text. Er bekommt seine volle Hoehe (Hut bis Knie sichtbar);
     nur die Reiterleiste darf ihn unten leicht ueberlappen. Vorher ragte er 118 % ueber
     seinen Rahmen hinaus und der Kopf verschwand hinter den Buttons. */
  .hero-fox { position: relative; right: auto; bottom: auto; width: 100%; height: clamp(380px, 105vw, 540px); margin-top: 0.5rem; margin-bottom: -9%; overflow: hidden; }
  .hero-inner { position: relative; z-index: 1; }
  .hero-fox-img { height: 100%; }
  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(251, 246, 238, 0.96) 0%, rgba(251, 246, 238, 0.9) 45%, rgba(251, 246, 238, 0.35) 70%, rgba(251, 246, 238, 0.85) 100%);
  }
  .hero-bg-img { object-position: 70% 60%; }
  .scene-tabs { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 1rem; scrollbar-width: none; }
  .scene-tabs::-webkit-scrollbar { display: none; }
  .scene-tab { flex: 0 0 31%; scroll-snap-align: start; }
  .hero-arrow { display: none; }
  .scene-pause { width: 52px; min-height: 52px; height: 52px; font-size: 1.15rem; }
  .promises-grid { grid-template-columns: 1fr 1fr; gap: 0.25rem; }
  .promise { justify-content: flex-start; font-size: 1rem; }
  .promise + .promise { border-left: 0; }
}

/* ==========================================================
   Bewegung
   Regeln: nur transform/opacity, kurze Dauern, starke Ease-out-Kurven,
   Hover nur mit Maus, alles Räumliche fällt bei "Bewegung reduzieren" weg.
   ========================================================== */
:root {
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --t-fast: 150ms;
  --t-ui: 220ms;
  --t-reveal: 550ms;
}

/* --- Buttons: heben sich beim Zeigen, drücken sich beim Klick --- */
.btn, .phone-cta, .scene-tab, .nav-toggle {
  transition: transform var(--t-fast) var(--ease-out), box-shadow var(--t-fast) var(--ease-out),
              background-color var(--t-fast) ease, border-color var(--t-fast) ease, color var(--t-fast) ease;
}
.btn:active, .phone-cta:active { transform: translateY(1px) scale(0.98); }
@media (hover: hover) and (pointer: fine) {
  .btn:hover, .phone-cta:hover { transform: translateY(-2px); }
  .btn-primary:hover { box-shadow: 0 12px 26px rgba(60, 35, 10, 0.3); }
  .phone-cta:hover { box-shadow: 0 8px 18px rgba(60, 35, 10, 0.22); }
  /* Hörer klingelt einmal kurz */
  .btn[href^="tel:"]:hover i, .phone-cta:hover i, .contact-phone:hover i { animation: ring 0.4s var(--ease-out) 1; }
}
@keyframes ring {
  0%, 100% { transform: rotate(0); }
  20% { transform: rotate(-14deg); }
  40% { transform: rotate(12deg); }
  60% { transform: rotate(-8deg); }
  80% { transform: rotate(5deg); }
}
.btn i, .phone-cta i, .contact-phone i { display: inline-block; transform-origin: 50% 60%; }

/* --- Links: Unterstreichung wächst von links (transform, kein Hintergrund) --- */
.main-nav a, .footer-nav a, .package-link, .packages-more a { position: relative; text-decoration: none; border-bottom: 0; }
.main-nav a::after, .footer-nav a::after, .package-link::after, .packages-more a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: var(--orange); transform: scaleX(0); transform-origin: left center;
  transition: transform var(--t-ui) var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .main-nav a:hover::after, .footer-nav a:hover::after, .package-link:hover::after, .packages-more a:hover::after { transform: scaleX(1); }
}
.main-nav a:focus-visible::after, .footer-nav a:focus-visible::after, .package-link:focus-visible::after, .packages-more a:focus-visible::after { transform: scaleX(1); }
.package-link i { transition: transform var(--t-ui) var(--ease-out); }
@media (hover: hover) and (pointer: fine) { .package-link:hover i { transform: translateX(4px); } }

/* --- Kacheln: heben sich beim Zeigen, Illustration wächst leicht --- */
.package, .service, .pkg, .quote, .member img {
  transition: transform var(--t-ui) var(--ease-out), box-shadow var(--t-ui) var(--ease-out);
}
.service img, .package-icon, .pkg > i { transition: transform 280ms var(--ease-out); }
@media (hover: hover) and (pointer: fine) {
  .package:hover, .service:hover, .pkg:hover, .quote:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(74, 48, 20, 0.14); }
  .package-wache:hover { transform: none; box-shadow: none; }
  .service:hover img { transform: scale(1.04); }
  .package:hover .package-icon, .pkg:hover > i { transform: scale(1.08); }
  .member:hover img { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(74, 48, 20, 0.16); }
}

/* --- Hero: Einstieg beim Laden (@starting-style, ohne JS) --- */
.hero-copy > *, .hero-tabs-wrap {
  transition: opacity var(--t-reveal) var(--ease-out), transform var(--t-reveal) var(--ease-out);
}
.hero-text { transition-delay: 80ms; }
.hero-actions { transition-delay: 160ms; }
.hero-tabs-wrap { transition-delay: 320ms; }
@starting-style {
  .hero-copy > *, .hero-tabs-wrap { opacity: 0; transform: translateY(18px); }
  .hero-fox-img.is-active { opacity: 0; transform: translateX(-50%) translateY(40px) scale(0.97); }
}
/* Fuchs: Ein-/Austritt beim Szenenwechsel, danach ruhiges Atmen */
.hero-fox-img { transform: translateX(-50%) translateY(20px); transition: opacity 500ms var(--ease-out), transform 700ms var(--ease-out); }
.hero-fox-img.is-active { transform: translateX(-50%) translateY(0); animation: breathe 5s ease-in-out 1.5s infinite; }
@keyframes breathe {
  0%, 100% { transform: translateX(-50%) translateY(0) scale(1); }
  50% { transform: translateX(-50%) translateY(-3px) scale(1.01); }
}

/* --- Szenen-Reiter: gleitende Markierung --- */
.scene-tabs { position: relative; isolation: isolate; }
.scene-indicator {
  position: absolute; top: 0; left: 0; height: 100%; z-index: -1;
  border-radius: var(--radius); background: var(--ink); box-shadow: var(--shadow);
  transition: transform 260ms var(--ease-out);
  pointer-events: none;
}
.scene-tabs.has-indicator .scene-tab.is-active { background: transparent; border-color: transparent; box-shadow: none; }
.scene-indicator { overflow: hidden; }
.scene-progress {
  position: absolute; left: 0; bottom: 0; width: 100%; height: 4px;
  background: var(--orange); transform: scaleX(0); transform-origin: left center;
}
/* Der Balken wird von hero.js angetrieben (Web Animations API) und gibt den Takt vor */

/* --- Hero-Parallax und Kopfzeilen-Schatten (scrollgesteuert, ohne JS) --- */
.site-header { isolation: isolate; }
@supports (animation-timeline: scroll()) {
  .hero-bg { animation: bg-drift linear both; animation-timeline: scroll(root); animation-range: 0 100vh; }
  @keyframes bg-drift { to { transform: translateY(14%); } }
  .site-header::after {
    content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
    box-shadow: 0 8px 24px rgba(43, 33, 23, 0.12); opacity: 0;
    animation: header-shadow linear both; animation-timeline: scroll(root); animation-range: 0 120px;
  }
  @keyframes header-shadow { to { opacity: 1; } }
}

/* --- Scroll-Reveal: Abschnitte und gestaffelte Kinder --- */
html.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity var(--t-reveal) var(--ease-out), transform var(--t-reveal) var(--ease-out); }
html.js .reveal.is-in { opacity: 1; transform: none; }
html.js [data-stagger] > * { opacity: 0; transform: translateY(14px); transition: opacity var(--t-reveal) var(--ease-out), transform var(--t-reveal) var(--ease-out); transition-delay: calc(var(--i, 0) * 60ms); }
html.js [data-stagger].is-in > * { opacity: 1; transform: none; }
/* Nach dem Reveal kein Delay mehr, damit Hover-Effekte sofort reagieren */
html.js [data-stagger].is-done > * { transition-delay: 0ms; transition-duration: var(--t-ui); }

/* --- FAQ: weiches Aufklappen, Plus dreht sich --- */
.faq-list summary::after { transition: transform var(--t-ui) var(--ease-out), background-color var(--t-fast) ease; }
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); content: "+"; }
@supports (interpolate-size: allow-keywords) {
  .faq-list details { interpolate-size: allow-keywords; }
  .faq-list details::details-content { block-size: 0; overflow: clip; transition: block-size 250ms var(--ease-out), content-visibility 250ms allow-discrete; }
  .faq-list details[open]::details-content { block-size: auto; }
}

/* --- Formular: Fokus blendet ein, Bestätigung steigt auf --- */
.field input, .field textarea { transition: box-shadow var(--t-fast) ease, border-color var(--t-fast) ease; outline: none; }
.field input:focus, .field textarea:focus { box-shadow: 0 0 0 3px rgba(217, 83, 30, 0.35); border-color: var(--orange); outline: none; }
.form-status { align-items: center; gap: 0.6rem; transition: opacity var(--t-ui) var(--ease-out), transform var(--t-ui) var(--ease-out); }
.form-status:not(:empty) { display: flex; }
.form-status i { font-size: 1.5rem; animation: pop 400ms var(--ease-out) both; }
@starting-style { .form-status:not(:empty) { opacity: 0; transform: translateY(8px); } }
@keyframes pop { from { transform: scale(0.6); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* --- Bewegung reduzieren: nur noch Überblendungen --- */
@media (prefers-reduced-motion: reduce) {
  .hero-fox-img.is-active { animation: none; }
  .hero-copy > *, .hero-tabs-wrap, html.js .reveal, html.js [data-stagger] > *, .form-status { transform: none !important; transition-property: opacity; }
  /* Fuchs bleibt zentriert (translateX), nur die Auf-/Ab-Bewegung entfällt */
  .hero-fox-img { transform: translateX(-50%) !important; transition-property: opacity; }
  .hero-bg, .site-header::after { animation: none; }
  .site-header::after { opacity: 1; }
  .btn:hover, .phone-cta:hover, .package:hover, .service:hover, .pkg:hover, .quote:hover, .member:hover img { transform: none; }
  .btn i, .phone-cta i, .contact-phone i, .form-status i { animation: none; }
  .scene-indicator { transition: none; }
  .hero-copy.is-in { animation: none; }
  .faq-list details::details-content { transition: none; }
}
.pkg-more { display: inline-block; margin-top: 0.5rem; color: var(--orange-light); font-weight: 700; }

/* ---------- Audit-Nachbesserungen ---------- */
/* Tastatur-Fokus gut sichtbar */
.btn:focus-visible, .phone-cta:focus-visible, .contact-phone:focus-visible { outline: 3px solid var(--orange-deep); outline-offset: 3px; }
.wache-intro .btn:focus-visible, .wache-care .btn:focus-visible, .pro .btn:focus-visible, .service-ask .btn:focus-visible { outline-color: var(--orange-light); }
/* Auf dunklem Grund keine (unsichtbaren) Schatten */
.wache-intro .btn, .wache-care .btn, .pro .btn, .service-ask .btn, .pkg-cta .btn,
.wache-intro .btn:hover, .wache-care .btn:hover, .pro .btn:hover, .service-ask .btn:hover, .pkg-cta .btn:hover { box-shadow: none; }
/* Lesbare Zeilenlängen */
.faq-list details p { max-width: 65ch; }
.packages-more { max-width: 62ch; }
/* Footer-Links: Klickfläche mindestens 44px hoch */
.footer-nav { gap: 0.5rem 1.25rem; flex-wrap: wrap; }
.footer-nav a { display: inline-flex; align-items: center; min-height: 44px; padding: 0 0.15rem; }
.footer-nav a::after { bottom: 8px; }

/* Team auf dem Handy: Porträt noch etwas kleiner */
@media (max-width: 640px) {
  .member { grid-template-columns: 92px minmax(0, 1fr); gap: 1.1rem; padding: 1.15rem; }
  .member img { width: 92px; height: 92px; }
  .member h3 { font-size: 1.3rem; }
  .member p { font-size: 1.02rem; }
}
