/* ==========================================================================
   huomi.de
   Designsystem übernommen von build-av.de, Akzent auf Ocker umgestellt.
   Handgeschrieben, kein Framework, kein Build-Schritt.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Schriften
   -------------------------------------------------------------------------- */

@font-face {
  font-family: "General Sans";
  src: url("../fonts/GeneralSans-Variable.woff2") format("woff2-variations");
  font-weight: 200 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "General Sans";
  src: url("../fonts/GeneralSans-VariableItalic.woff2") format("woff2-variations");
  font-weight: 200 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Bricolage Grotesque";
  src: url("../fonts/BricolageGrotesque-Variable.woff2") format("woff2-variations");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

/* --------------------------------------------------------------------------
   2. Tokens
   -------------------------------------------------------------------------- */

:root {
  /* Marke */
  --base-light: #f1f0eb;
  --base-dark: #434240;

  /* Neutralrampe */
  --neutral-50:  #f7f6f2;
  --neutral-100: #f1f0eb;
  --neutral-200: #e6e4dd;
  --neutral-300: #d2d0c8;
  --neutral-400: #a8a6a0;
  --neutral-500: #757470;
  --neutral-600: #5a5955;
  --neutral-700: #434240;
  --neutral-800: #2e2d2c;
  --neutral-900: #1c1b1a;

  /* Ocker — Akzent von HUOMI */
  --ochre-50:  #f7f2e7;
  --ochre-100: #ede1c4;
  --ochre-200: #dcc594;
  --ochre-300: #c8ad75;
  --ochre-400: #b4965a;
  --ochre-500: #927747;
  --ochre-600: #6c5832;
  --ochre-700: #483a20;

  /* Akzent in drei Stärken: dekorativ, Fläche, Text.
     Getrennt, weil das reine Ocker auf hellem Grund für Fließtext
     zu wenig Kontrast hat (2,2:1). */
  --accent: var(--ochre-400);
  --accent-solid: var(--ochre-500);
  --accent-text: var(--ochre-600);

  /* Semantisch */
  --fg-1: var(--neutral-700);
  --fg-2: var(--neutral-600);
  --fg-3: var(--neutral-500);
  --fg-on-dark: var(--neutral-50);
  --fg-on-accent: #ffffff;

  --bg-1: var(--base-light);
  --bg-2: var(--neutral-50);
  --bg-3: #ffffff;
  --bg-inverse: var(--base-dark);
  --bg-tint: var(--ochre-50);

  --border-1: var(--neutral-200);
  --border-2: var(--neutral-300);
  --border-strong: var(--neutral-700);

  /* Schrift */
  --font-display: "Bricolage Grotesque", "General Sans", ui-sans-serif, system-ui, sans-serif;
  --font-sans: "General Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Der Hero steht ab 900px in einer halben Spalte — die Größe richtet sich
     deshalb nach der Spalte, nicht nach dem ganzen Fenster. */
  --fs-display-xl: clamp(38px, 4.6vw, 78px);
  --fs-display-l:  clamp(32px, 5.5vw, 80px);
  --fs-display-m:  clamp(28px, 3.6vw, 52px);
  --fs-h3: clamp(21px, 2.2vw, 28px);
  --fs-h4: 20px;
  --fs-body-lg: clamp(18px, 1.7vw, 24px);
  --fs-body:    clamp(17px, 1.3vw, 20px);
  --fs-body-sm: 15px;
  --fs-caption: 13px;
  --fs-overline: 11px;

  --lh-display: 1.04;
  --lh-heading: 1.16;
  --lh-body: 1.6;

  --ls-display: -.025em;
  --ls-heading: -.012em;
  --ls-overline: .16em;

  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;

  /* Abstände */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;

  /* Radien, Schatten, Motion */
  --radius-2: 4px;
  --radius-3: 8px;
  --radius-4: 14px;
  --radius-pill: 999px;

  --shadow-1: 0 1px 2px rgba(28, 27, 26, .04), 0 1px 1px rgba(28, 27, 26, .03);
  --shadow-2: 0 6px 16px rgba(28, 27, 26, .06), 0 2px 4px rgba(28, 27, 26, .04);
  --shadow-3: 0 18px 48px rgba(28, 27, 26, .1), 0 4px 12px rgba(28, 27, 26, .05);

  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --dur-fast: .14s;
  --dur-base: .26s;

  /* Layout */
  --container: 1280px;
  --container-narrow: 820px;
  --gutter: clamp(20px, 4vw, 48px);
  --header-h: 72px;
  --focus-ring: 0 0 0 3px rgba(146, 119, 71, .3);
}

/* --------------------------------------------------------------------------
   3. Grundlagen
   -------------------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + var(--space-4));
}

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

body {
  margin: 0;
  background: var(--bg-1);
  color: var(--fg-1);
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  font-weight: var(--fw-regular);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, picture, svg, video { display: block; max-width: 100%; height: auto; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: var(--fw-medium);
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-heading);
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }

a { color: var(--accent-text); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--ochre-700); }

:focus-visible {
  outline: 2px solid var(--accent-solid);
  outline-offset: 2px;
  border-radius: var(--radius-2);
}

::selection { background: var(--ochre-200); color: var(--neutral-900); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip-path: inset(50%); white-space: nowrap;
}

.skip-link {
  position: absolute; left: var(--space-4); top: -100px; z-index: 200;
  background: var(--bg-inverse); color: var(--fg-on-dark);
  padding: var(--space-3) var(--space-5); border-radius: var(--radius-pill);
  font-size: var(--fs-body-sm); text-decoration: none;
  transition: top var(--dur-base) var(--ease-out);
}
.skip-link:focus { top: var(--space-4); color: var(--fg-on-dark); }

/* --------------------------------------------------------------------------
   4. Layout-Bausteine
   -------------------------------------------------------------------------- */

.wrap {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.wrap--narrow { max-width: var(--container-narrow); }

.section { padding-block: clamp(56px, 9vw, 128px); }
.section--tight { padding-block: clamp(40px, 6vw, 80px); }
.section--light { background: var(--bg-2); }
.section--white { background: var(--bg-3); }
.section--tint  { background: var(--bg-tint); }
.section--dark  { background: var(--bg-inverse); color: var(--fg-on-dark); }
.section--dark h2, .section--dark h3 { color: var(--fg-on-dark); }

.overline {
  display: block;
  font-size: var(--fs-overline);
  letter-spacing: var(--ls-overline);
  text-transform: uppercase;
  font-weight: var(--fw-semibold);
  color: var(--accent-text);
  margin-bottom: var(--space-4);
}
.section--dark .overline { color: var(--ochre-300); }

.lede {
  font-size: var(--fs-body-lg);
  color: var(--fg-2);
  max-width: 56ch;
}
.section--dark .lede { color: var(--neutral-300); }

.akzent { color: var(--accent-text); font-style: italic; }

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: .01em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--dur-base) var(--ease-out),
              color var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
  /* Touch-Ziel nie unter 44px */
  min-height: 48px;
}

.btn svg { flex: none; transition: transform var(--dur-base) var(--ease-out); }
.btn:hover svg { transform: translate(3px, -3px); }
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--bg-inverse);
  color: var(--fg-on-dark);
}
.btn--primary:hover { background: var(--neutral-900); color: var(--fg-on-dark); }

.btn--accent {
  background: var(--accent-solid);
  color: var(--fg-on-accent);
}
.btn--accent:hover { background: var(--ochre-600); color: var(--fg-on-accent); }

.btn--ghost {
  background: transparent;
  color: var(--fg-1);
  border-color: var(--border-2);
}
.btn--ghost:hover { border-color: var(--border-strong); color: var(--fg-1); background: rgba(255,255,255,.5); }

.section--dark .btn--ghost { color: var(--fg-on-dark); border-color: rgba(247,246,242,.3); }
.section--dark .btn--ghost:hover { border-color: var(--fg-on-dark); background: rgba(247,246,242,.08); }

.btn-gruppe { display: flex; flex-wrap: wrap; gap: var(--space-4); }

/* --------------------------------------------------------------------------
   6. Kopfzeile
   -------------------------------------------------------------------------- */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(241, 240, 235, .82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-base) var(--ease-out),
              background var(--dur-base) var(--ease-out);
}

.header[data-gescrollt="ja"] {
  border-bottom-color: var(--border-1);
  background: rgba(241, 240, 235, .95);
}

.header__innen {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
}

.header__logo { display: flex; align-items: center; }
.header__logo img { height: 30px; width: auto; }

.nav { display: flex; align-items: center; gap: var(--space-6); }

.nav__liste {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  list-style: none;
  margin: 0; padding: 0;
}

.nav__link {
  color: var(--fg-2);
  text-decoration: none;
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-medium);
  padding: var(--space-2) 0;
  position: relative;
}
.nav__link::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur-base) var(--ease-out);
}
.nav__link:hover { color: var(--fg-1); }
.nav__link:hover::after { transform: scaleX(1); }

/* Schlichte Variante für Impressum und Datenschutz: immer sichtbar,
   kein Aufklappen, auch auf kleinen Bildschirmen. */
.nav__liste--einfach { position: static; flex-direction: row; }

.nav__schalter {
  display: none;
  width: 48px; height: 48px;
  align-items: center; justify-content: center;
  background: none; border: none; cursor: pointer;
  color: var(--fg-1);
  margin-right: -12px;
}

@media (max-width: 880px) {
  .nav__schalter { display: inline-flex; }
  .nav__liste {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg-2);
    border-bottom: 1px solid var(--border-1);
    box-shadow: var(--shadow-3);
    padding: var(--space-3) var(--gutter) var(--space-6);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--dur-base) var(--ease-out),
                transform var(--dur-base) var(--ease-out),
                visibility var(--dur-base);
  }
  .nav__liste[data-offen="ja"] { transform: none; opacity: 1; visibility: visible; }

  /* Die schlichte Variante bleibt auch mobil stehen und sichtbar. */
  .nav__liste--einfach {
    position: static;
    inset: auto;
    flex-direction: row;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: none;
    box-shadow: none;
    border: 0;
    padding: 0;
  }
  .nav__liste--einfach .nav__link { border-bottom: 0; font-size: var(--fs-body-sm); padding: var(--space-2) 0; }
  .nav__link {
    display: block;
    padding: var(--space-4) 0;
    font-size: 18px;
    border-bottom: 1px solid var(--border-1);
  }
  .nav__link::after { display: none; }
  .nav .btn { margin-top: var(--space-5); justify-content: center; }
}

/* --------------------------------------------------------------------------
   7. Hero — Vollbild mit Text auf dem Bild, wie auf der alten Seite
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: min(92vh, 1000px);
  color: var(--fg-on-dark);
  background: var(--neutral-800);
  overflow: hidden;
}
.hero__bild { position: absolute; inset: 0; }
.hero__bild picture { display: block; height: 100%; }
.hero__bild img { width: 100%; height: 100%; object-fit: cover; }
.hero__bild::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(28,27,26,.62) 0%, rgba(28,27,26,.28) 55%, rgba(28,27,26,0) 80%),
              linear-gradient(0deg, rgba(28,27,26,.35) 0%, rgba(28,27,26,0) 40%);
}

.hero__text { position: relative; padding-block: clamp(64px, 12vw, 160px); }

.hero__titel {
  font-size: var(--fs-display-l);
  line-height: var(--lh-display);
  letter-spacing: var(--ls-display);
  max-width: 19ch;
  margin-bottom: var(--space-5);
  color: var(--fg-on-dark);
  hyphens: manual;
}
.hero__lede { color: var(--neutral-100); margin-bottom: var(--space-7); max-width: 46ch; }

.btn--hell { background: var(--fg-on-dark); color: var(--neutral-900); }
.btn--hell:hover { background: #fff; color: var(--neutral-900); }
.hero .btn--ghost { color: var(--fg-on-dark); border-color: rgba(247,246,242,.55); }
.hero .btn--ghost:hover { border-color: var(--fg-on-dark); background: rgba(247,246,242,.1); color: var(--fg-on-dark); }

.section--sand { background: var(--neutral-200); }

.zentriert { text-align: center; }
.zentriert .kopf__titel, .zentriert .kopf__text { margin-inline: auto; }
.zentriert .btn-gruppe { justify-content: center; margin-top: var(--space-7); }

/* --------------------------------------------------------------------------
   8. Abschnittsköpfe
   -------------------------------------------------------------------------- */

.kopf { max-width: 24ch; margin-bottom: clamp(32px, 4vw, 64px); }
.kopf--breit { max-width: 34ch; }

.kopf__titel {
  font-size: var(--fs-display-m);
  line-height: var(--lh-display);
  letter-spacing: var(--ls-display);
}

.kopf__text { margin-top: var(--space-5); max-width: 58ch; }

/* --------------------------------------------------------------------------
   9. Kompetenz-Abschnitt mit Referenzband
   -------------------------------------------------------------------------- */

.zweispalt {
  display: grid;
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
}
@media (min-width: 880px) {
  .zweispalt { grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); }
}

.band {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(230px, 1fr);
  gap: var(--space-4);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  padding-block: var(--space-2);
  padding-inline: var(--gutter);
  margin-inline: calc(var(--gutter) * -1);
  scrollbar-width: thin;
  scrollbar-color: var(--border-2) transparent;
}
.band > * { scroll-snap-align: start; }
.band::-webkit-scrollbar { height: 8px; }
.band::-webkit-scrollbar-thumb { background: var(--border-2); border-radius: var(--radius-pill); }
.band::-webkit-scrollbar-track { background: transparent; }

.band__bild {
  border-radius: var(--radius-4);
  overflow: hidden;
  background: var(--neutral-200);
  box-shadow: var(--shadow-1);
}
.band__bild img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

/* --------------------------------------------------------------------------
   10. Ablauf in vier Schritten
   -------------------------------------------------------------------------- */

.schritte {
  display: grid;
  gap: var(--space-6);
  list-style: none;
  margin: 0; padding: 0;
  counter-reset: schritt;
}
@media (min-width: 720px) { .schritte { grid-template-columns: repeat(2, 1fr); gap: var(--space-8) var(--space-7); } }
@media (min-width: 1080px) { .schritte { grid-template-columns: repeat(4, 1fr); } }

.schritt { position: relative; padding-top: var(--space-6); border-top: 1px solid var(--border-2); }

.schritt__nr {
  font-family: var(--font-display);
  font-size: var(--fs-caption);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-overline);
  color: var(--accent-text);
  position: absolute;
  top: calc(var(--space-6) * -1 + 8px);
  left: 0;
}
.schritt__nr::before { counter-increment: schritt; content: "0" counter(schritt); }

.schritt__titel { font-size: var(--fs-h3); margin-bottom: var(--space-3); }
.schritt__text { color: var(--fg-2); font-size: var(--fs-body-sm); line-height: 1.65; }

/* --------------------------------------------------------------------------
   10b. Referenzraster: ein hohes Bild links, rechts zwei kleine und ein breites
   -------------------------------------------------------------------------- */

.raster {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px;
  background: var(--bg-3);
}
.raster__bild { overflow: hidden; background: var(--neutral-200); }
.raster__bild picture { display: block; height: 100%; }
.raster__bild img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.raster__bild--hoch, .raster__bild--breit { grid-column: 1 / -1; }

@media (min-width: 880px) {
  .raster {
    grid-template-columns: 4fr 3fr 3fr;
    grid-template-rows: repeat(2, clamp(220px, 25vw, 360px));
  }
  .raster__bild img { aspect-ratio: auto; }
  .raster__bild--hoch { grid-column: 1; grid-row: 1 / 3; }
  .raster__bild--breit { grid-column: 2 / 4; grid-row: 2; }
}

/* --------------------------------------------------------------------------
   11. Gartengestaltungen: grauer Balken, links Blickwinkel, rechts Slider
   -------------------------------------------------------------------------- */

.vorlage { background: var(--bg-3); padding-bottom: clamp(40px, 5vw, 72px); }

.vorlage__balken {
  background: var(--bg-inverse);
  color: var(--fg-on-dark);
  padding-block: clamp(32px, 4.5vw, 64px);
  text-align: center;
}
.vorlage__titel {
  font-size: clamp(34px, 5.2vw, 76px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--fg-on-dark);
}

/* Unterüberschriften stehen im weißen Bereich, je über ihrer Spalte */
.vorlage__untertitel {
  font-size: var(--fs-h3);
  color: var(--neutral-800);
  margin-bottom: var(--space-4);
}

.vorlage__inhalt {
  display: grid;
  gap: var(--space-7) var(--space-5);
  padding-top: clamp(32px, 4vw, 56px);
}
.vorlage__spalte { display: flex; flex-direction: column; }
@media (min-width: 880px) {
  .vorlage__spalte + .vorlage__spalte .vorlage__untertitel { text-align: right; }
}

/* Aufzählung im Ablauf-Abschnitt: Block mittig, Text linksbündig */
.punkte {
  list-style: none;
  margin: var(--space-7) auto 0;
  padding: 0;
  max-width: 62ch;
  display: grid;
  gap: var(--space-4);
  text-align: left;
}
.punkte li {
  position: relative;
  padding-left: var(--space-6);
  color: var(--fg-2);
}
.punkte li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .6em;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--accent-solid);
}
.vorlage__spalte .slider { flex: 1; }
@media (min-width: 880px) {
  .vorlage__inhalt { grid-template-columns: 1fr 1fr; align-items: stretch; }
}

.blickwinkel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  margin: 0; padding: 0;
  list-style: none;
  align-content: start;
}
.blickwinkel__karte {
  background: var(--bg-3);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-3);
  overflow: hidden;
  transition: border-color var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.blickwinkel__karte:hover { border-color: var(--accent); box-shadow: var(--shadow-2); }
.blickwinkel__karte img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: var(--neutral-100); }
.blickwinkel__nr {
  display: block;
  padding: var(--space-3) var(--space-4);
  font-size: var(--fs-overline);
  letter-spacing: var(--ls-overline);
  text-transform: uppercase;
  font-weight: var(--fw-semibold);
  color: var(--fg-2);
  text-align: center;
  border-top: 1px solid var(--border-1);
}

/* Slider — ohne JS eine wischbare Leiste, mit JS kommen Pfeile und Punkte dazu */
.slider { position: relative; min-height: 280px; border-radius: var(--radius-3); overflow: hidden; background: var(--neutral-200); }
.slider__spur {
  display: flex;
  height: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.slider__spur::-webkit-scrollbar { display: none; }
.slider__bild { flex: 0 0 100%; scroll-snap-align: start; }
.slider__bild picture { display: block; height: 100%; }
.slider__bild img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
@media (min-width: 880px) {
  .slider__spur { position: absolute; inset: 0; }
  .slider__bild img { aspect-ratio: auto; }
}

.slider__pfeil {
  position: absolute; top: 50%; z-index: 2;
  width: 44px; height: 44px; margin-top: -22px;
  display: grid; place-items: center;
  border: 0; border-radius: 50%;
  background: rgba(247,246,242,.88); color: var(--neutral-900);
  cursor: pointer; box-shadow: var(--shadow-2);
}
.slider__pfeil:hover { background: #fff; }
.slider__pfeil--zurueck { left: var(--space-3); }
.slider__pfeil--vor { right: var(--space-3); }

.slider__punkte {
  position: absolute; left: 0; right: 0; bottom: var(--space-3); z-index: 2;
  display: flex; justify-content: center; gap: var(--space-2);
}
.slider__punkt {
  width: 10px; height: 10px; padding: 0; border: 0; border-radius: 50%;
  background: rgba(247,246,242,.55); cursor: pointer;
}
.slider__punkt[aria-current="true"] { background: #fff; }

.vorlage__fuss { margin-top: var(--space-6); text-align: center; }

/* --------------------------------------------------------------------------
   12. Preis: links Text, rechts Bild bis zum Rand
   -------------------------------------------------------------------------- */

.preis { display: grid; background: var(--bg-2); }
@media (min-width: 880px) { .preis { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); } }

.preis__text {
  padding: clamp(48px, 7vw, 112px) var(--gutter);
  max-width: 640px;
  justify-self: end;
  width: 100%;
}
.preis__bild { min-height: 320px; background: var(--neutral-300); }
.preis__bild picture { display: block; height: 100%; }
.preis__bild img { width: 100%; height: 100%; object-fit: cover; }

.preis__zahl {
  font-family: var(--font-display);
  font-size: clamp(72px, 10vw, 150px);
  line-height: .9;
  letter-spacing: -.04em;
  font-weight: var(--fw-medium);
  color: var(--accent-text);
  display: block;
  margin-bottom: var(--space-5);
}

.leistungen { list-style: none; margin: 0; padding: 0; }
.leistungen li {
  display: flex;
  gap: var(--space-4);
  padding-block: var(--space-3);
  border-bottom: 1px solid var(--border-1);
  font-size: var(--fs-body-sm);
  line-height: 1.55;
}
.leistungen li::before {
  content: "";
  flex: none;
  width: 18px; height: 18px;
  margin-top: 3px;
  background: var(--accent-solid);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 14px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 14px no-repeat;
}

.fussnote { font-size: var(--fs-caption); color: var(--fg-3); margin-top: var(--space-4); }
.preis__hinweis { font-size: var(--fs-body-sm); color: var(--fg-2); margin: var(--space-6) 0; }

/* --------------------------------------------------------------------------
   13. Kontakt und Formular
   -------------------------------------------------------------------------- */

.kontakt { display: grid; gap: clamp(32px, 5vw, 72px); align-items: stretch; }
@media (min-width: 880px) { .kontakt { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); } }
.kontakt .kopf__titel { margin-bottom: var(--space-7); }
.kontakt__bild { border-radius: var(--radius-3); overflow: hidden; min-height: 280px; background: var(--neutral-200); }
.kontakt__bild picture { display: block; height: 100%; }
.kontakt__bild img { width: 100%; height: 100%; object-fit: cover; }

.formular { display: grid; gap: var(--space-5); }

.feld { display: grid; gap: var(--space-2); }

.feld label {
  font-size: var(--fs-caption);
  letter-spacing: var(--ls-overline);
  text-transform: uppercase;
  font-weight: var(--fw-semibold);
  color: var(--fg-3);
}

.feld input, .feld textarea {
  width: 100%;
  font-family: inherit;
  font-size: var(--fs-body-sm);
  line-height: 1.5;
  color: var(--fg-1);
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-3);
  padding: 14px 16px;
  transition: border-color var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
  min-height: 48px;
}
.feld textarea { resize: vertical; min-height: 140px; }

.feld input:focus, .feld textarea:focus {
  outline: none;
  border-color: var(--accent-solid);
  box-shadow: var(--focus-ring);
}

.feld input:user-invalid, .feld textarea:user-invalid { border-color: #b4564a; }

/* Honigtopf gegen Bots — für Menschen unsichtbar, für Screenreader ausgeblendet */
.honigtopf {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  opacity: 0;
}

.zustimmung {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  font-size: var(--fs-caption);
  color: var(--fg-2);
  line-height: 1.5;
}
.zustimmung input { flex: none; width: 20px; height: 20px; margin-top: 2px; accent-color: var(--accent-solid); }

.hinweis {
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-3);
  font-size: var(--fs-body-sm);
  border: 1px solid;
}
.hinweis--ok { background: #eef3e9; border-color: #6f8b56; color: #3d5130; }
.hinweis--fehler { background: #f8ecea; border-color: #b4564a; color: #7a3129; }

.kontaktweg {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding-block: var(--space-4);
  border-bottom: 1px solid var(--border-1);
  text-decoration: none;
  color: var(--fg-1);
  transition: color var(--dur-base) var(--ease-out);
}
.kontaktweg:hover { color: var(--accent-text); }
.kontaktweg__wert { font-weight: var(--fw-medium); }
.kontaktweg__art { font-size: var(--fs-caption); color: var(--fg-3); display: block; }

/* --------------------------------------------------------------------------
   14. Fußzeile
   -------------------------------------------------------------------------- */

.footer { position: relative; background: var(--bg-inverse); color: var(--neutral-300); padding-block: var(--space-8) var(--space-6); }
.footer a { color: var(--neutral-300); text-decoration: none; }
.footer a:hover { color: var(--fg-on-dark); text-decoration: underline; }

.footer__logo { display: flex; justify-content: center; }
.footer__logo img { height: 56px; width: auto; }
.footer__claim { font-family: var(--font-display); font-size: var(--fs-h4); color: var(--fg-on-dark); margin-top: var(--space-3); }
.footer__adresse { font-size: var(--fs-body-sm); margin-top: var(--space-6); }
.footer__recht { font-size: var(--fs-caption); color: var(--neutral-400); margin-top: var(--space-4); }

/* Unterseiten (Impressum, Datenschutz, 404) nutzen die schlichte Zeile */
.footer__unten {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-4);
  font-size: var(--fs-caption);
  color: var(--neutral-400);
}

.footer__hoch {
  position: absolute; top: 0; left: 50%;
  width: 48px; height: 48px; margin: -24px 0 0 -24px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--accent-solid);
  color: #fff !important;
}
.footer__hoch:hover { background: var(--ochre-600); }

/* --------------------------------------------------------------------------
   15. Fließtextseiten (Impressum, Datenschutz)
   -------------------------------------------------------------------------- */

.text-seite { padding-block: clamp(48px, 7vw, 104px); }
.text-seite h1 { font-size: var(--fs-display-m); letter-spacing: var(--ls-display); margin-bottom: var(--space-7); }
.text-seite h2 { font-size: var(--fs-h3); margin: var(--space-8) 0 var(--space-4); }
.text-seite h3 { font-size: var(--fs-h4); margin: var(--space-6) 0 var(--space-3); }
.text-seite p, .text-seite li { font-size: var(--fs-body-sm); line-height: 1.7; color: var(--fg-2); }
.text-seite p + p { margin-top: var(--space-4); }
.text-seite ul { padding-left: var(--space-5); display: grid; gap: var(--space-2); margin: var(--space-4) 0; }
.text-seite address { font-style: normal; line-height: 1.7; font-size: var(--fs-body-sm); color: var(--fg-2); }

/* --------------------------------------------------------------------------
   16. Einblenden beim Scrollen
   Ohne JS sichtbar — die Klasse wird nur gesetzt, wenn JS läuft.
   -------------------------------------------------------------------------- */

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}
.js .reveal[data-sichtbar="ja"] { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   17. Kleine Helfer
   Statt style-Attributen: Die Content-Security-Policy in .htaccess blockiert
   Inline-Styles, deshalb stehen auch Einzelfälle hier.
   -------------------------------------------------------------------------- */

.abstand-oben { margin-top: var(--space-7); }
.abstand-unten { margin-bottom: var(--space-7); }
.logo--hell { filter: invert(1) brightness(1.6); }
.stand { margin-top: var(--space-8); font-size: var(--fs-caption); color: var(--fg-3); }
