@import url("schriften.css");

/* =========================================================
   Grundlagen
   ========================================================= */

:root {
  /* Farben – warme Naturtöne, Beere als Markenfarbe */
  --sand-50: #fcf9f5;
  --sand-100: #f5efe6;
  --sand-200: #ebe1d3;
  --sand-300: #dccfbc;
  --ink: #241e1a;
  --ink-weich: #5c514a;
  --ink-zart: #6e6259;
  --beere: #7a3a4c;
  --beere-hell: #99566a;
  --beere-dunkel: #5b2939;
  --salbei: #6d7f69;
  --salbei-hell: #eef1eb;
  --terra: #b3724f;
  --weiss: #fffdfa;

  --rahmen: #e3d8c8;
  --schatten-s: 0 1px 2px rgb(36 30 26 / 0.06), 0 2px 8px rgb(36 30 26 / 0.04);
  --schatten-m: 0 2px 6px rgb(36 30 26 / 0.06), 0 12px 32px rgb(36 30 26 / 0.08);
  --schatten-l: 0 4px 12px rgb(36 30 26 / 0.08), 0 24px 60px rgb(36 30 26 / 0.12);

  --radius-s: 6px;
  --radius-m: 14px;
  --radius-l: 24px;
  --radius-xl: 36px;

  --breite: 1180px;
  --breite-schmal: 760px;
  --rand: clamp(1.25rem, 5vw, 3rem);

  --schrift-titel: "Fraunces", "Iowan Old Style", Georgia, serif;
  --schrift-text: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --takt: clamp(3.5rem, 9vw, 7rem);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  background: var(--sand-50);
  color: var(--ink);
  font-family: var(--schrift-text);
  font-size: clamp(1rem, 0.97rem + 0.16vw, 1.0625rem);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

img {
  height: auto;
}

h1,
h2,
h3,
h4 {
  font-family: var(--schrift-titel);
  font-weight: 600;
  font-optical-sizing: auto;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 0.5em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.25rem, 1.6rem + 3.2vw, 4.1rem);
  line-height: 1.05;
}
h2 {
  font-size: clamp(1.75rem, 1.35rem + 1.9vw, 2.85rem);
}
h3 {
  font-size: clamp(1.25rem, 1.1rem + 0.7vw, 1.6rem);
}
h4 {
  font-size: clamp(1.0625rem, 1rem + 0.3vw, 1.2rem);
}

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

a {
  color: var(--beere);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--beere-dunkel);
}

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

hr {
  border: 0;
  border-top: 1px solid var(--rahmen);
  margin: 2.5rem 0;
}

::selection {
  background: var(--beere);
  color: var(--weiss);
}

/* =========================================================
   Bausteine
   ========================================================= */

.huelle {
  width: min(100% - 2 * var(--rand), var(--breite));
  margin-inline: auto;
}

.huelle-schmal {
  width: min(100% - 2 * var(--rand), var(--breite-schmal));
  margin-inline: auto;
}

.abschnitt {
  padding-block: var(--takt);
}

.abschnitt--eng {
  padding-block: calc(var(--takt) * 0.62);
}

.flaeche-sand {
  background: var(--sand-100);
}
.flaeche-weiss {
  background: var(--weiss);
}
.flaeche-salbei {
  background: var(--salbei-hell);
}
.flaeche-dunkel {
  background: var(--beere-dunkel);
  color: var(--sand-100);
}
.flaeche-dunkel h2,
.flaeche-dunkel h3 {
  color: var(--weiss);
}
.flaeche-dunkel a {
  color: var(--sand-200);
}

.springen {
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(-130%);
  background: var(--beere);
  color: var(--weiss);
  padding: 0.75rem 1.25rem;
  z-index: 200;
  border-radius: 0 0 var(--radius-s) 0;
}
.springen:focus {
  transform: translateY(0);
}

/* Augenbraue über Überschriften */
.augenbraue {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--schrift-text);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--beere);
  margin: 0 0 1rem;
}

.augenbraue::before {
  content: "";
  width: 1.75rem;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.flaeche-dunkel .augenbraue {
  color: var(--sand-300);
}

.vorspann {
  font-size: clamp(1.0625rem, 1rem + 0.45vw, 1.3rem);
  line-height: 1.65;
  color: var(--ink-weich);
  max-width: 62ch;
}

.flaeche-dunkel .vorspann {
  color: var(--sand-200);
}

/* Schaltflächen */
.knopf {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--schrift-text);
  font-size: 0.97rem;
  font-weight: 600;
  line-height: 1.2;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  min-height: 48px;
}

.knopf:hover {
  transform: translateY(-1px);
}

.knopf:active {
  transform: translateY(0);
}

.knopf--voll {
  background: var(--beere);
  color: var(--weiss);
  box-shadow: var(--schatten-s);
}
.knopf--voll:hover {
  background: var(--beere-dunkel);
  color: var(--weiss);
  box-shadow: var(--schatten-m);
}

.knopf--linie {
  border-color: var(--beere);
  color: var(--beere);
  background: transparent;
}
.knopf--linie:hover {
  background: var(--beere);
  color: var(--weiss);
}

.knopf--hell {
  background: var(--weiss);
  color: var(--beere-dunkel);
}
.knopf--hell:hover {
  background: var(--sand-100);
  color: var(--beere-dunkel);
}

.knopf--hell-linie {
  border-color: rgb(255 255 255 / 0.55);
  color: var(--weiss);
}
.knopf--hell-linie:hover {
  background: rgb(255 255 255 / 0.12);
  color: var(--weiss);
  border-color: var(--weiss);
}

.knopf[disabled],
.knopf[aria-disabled="true"] {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.knopf-reihe {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

/* Textlink mit Pfeil */
.pfeil-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-bottom: 1.5px solid currentColor;
  padding-bottom: 2px;
}

.pfeil-link::after {
  content: "→";
  transition: transform 0.2s;
}

.pfeil-link:hover::after {
  transform: translateX(4px);
}

/* =========================================================
   Kopfbereich
   ========================================================= */

.kopf {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--sand-50) 88%, transparent);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s, background-color 0.25s, box-shadow 0.25s;
}

.kopf[data-gescrollt="ja"] {
  border-bottom-color: var(--rahmen);
  box-shadow: 0 1px 20px rgb(36 30 26 / 0.05);
}

.kopf__innen {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
  padding-block: 0.6rem;
}

.marke {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--ink);
  line-height: 1.15;
  flex-shrink: 0;
}

.marke__name {
  font-family: var(--schrift-titel);
  font-size: 1.22rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.marke__zusatz {
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-zart);
  font-weight: 500;
}

.navigation {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.navigation a {
  color: var(--ink-weich);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 500;
  padding: 0.55rem 0.7rem;
  border-radius: var(--radius-s);
  white-space: nowrap;
  transition: color 0.18s, background-color 0.18s;
}

.navigation a:hover {
  color: var(--beere);
  background: var(--sand-100);
}

.navigation a[aria-current="page"] {
  color: var(--beere);
  font-weight: 600;
}

/* Untermenü */
.navi-gruppe {
  position: relative;
}

.navi-gruppe__schalter {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: none;
  border: 0;
  font: inherit;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--ink-weich);
  cursor: pointer;
  padding: 0.55rem 0.7rem;
  border-radius: var(--radius-s);
  font-family: var(--schrift-text);
}

.navi-gruppe__schalter:hover,
.navi-gruppe__schalter[aria-expanded="true"] {
  color: var(--beere);
  background: var(--sand-100);
}

.navi-gruppe__schalter svg {
  width: 0.7rem;
  height: 0.7rem;
  transition: transform 0.2s;
}

.navi-gruppe__schalter[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

/* Der äußere Kasten ist durchsichtig und reicht bis an die Schaltfläche heran.
   So bricht die Verbindung nicht ab, wenn die Maus nach unten wandert. */
.navi-gruppe__liste {
  position: absolute;
  top: 100%;
  left: 50%;
  padding-top: 0.55rem;
  min-width: 16rem;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -0.45rem);
  /* Beim Schließen wird die Sichtbarkeit erst am Ende umgeschaltet, beim Öffnen
     sofort – sonst lässt sich der erste Eintrag nicht gleich mit der Tastatur
     ansteuern, weil unsichtbare Elemente keinen Fokus annehmen. */
  transition: opacity 0.24s ease, transform 0.24s ease, visibility 0s linear 0.24s;
  pointer-events: none;
}

.navi-gruppe__liste[data-offen="ja"] {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  pointer-events: auto;
  transition: opacity 0.24s ease, transform 0.24s ease, visibility 0s;
}

.navi-gruppe__karte {
  background: var(--weiss);
  border: 1px solid var(--rahmen);
  border-radius: var(--radius-m);
  box-shadow: var(--schatten-m);
  padding: 0.5rem;
}

.navi-gruppe__liste a {
  display: block;
  padding: 0.6rem 0.8rem;
  font-size: 0.92rem;
}

.kopf__aktion {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.kopf__aktion .knopf {
  padding: 0.7rem 1.25rem;
  font-size: 0.9rem;
  min-height: 44px;
}

/* Menüschalter mobil */
.menue-schalter {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--rahmen);
  border-radius: var(--radius-s);
  background: var(--weiss);
  cursor: pointer;
  color: var(--ink);
  flex-shrink: 0;
}

.menue-schalter__balken {
  position: relative;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: background-color 0.2s;
}

.menue-schalter__balken::before,
.menue-schalter__balken::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.25s;
}

.menue-schalter__balken::before {
  top: -6px;
}
.menue-schalter__balken::after {
  top: 6px;
}

.menue-schalter[aria-expanded="true"] .menue-schalter__balken {
  background: transparent;
}

.menue-schalter[aria-expanded="true"] .menue-schalter__balken::before {
  transform: translateY(6px) rotate(45deg);
}

.menue-schalter[aria-expanded="true"] .menue-schalter__balken::after {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 1000px) {
  .menue-schalter {
    display: inline-flex;
  }

  .kopf__aktion .knopf--voll {
    display: none;
  }

  .navigation {
    position: fixed;
    inset: 72px 0 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--sand-50);
    padding: 1.25rem var(--rand) 3rem;
    overflow-y: auto;
    opacity: 0;
    transform: translateY(-0.75rem);
    visibility: hidden;
    transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s;
  }

  .navigation[data-offen="ja"] {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }

  .navigation > a,
  .navi-gruppe__schalter {
    display: flex;
    width: 100%;
    justify-content: space-between;
    font-size: 1.12rem;
    padding: 0.95rem 0.25rem;
    border-bottom: 1px solid var(--rahmen);
    border-radius: 0;
  }

  .navi-gruppe {
    width: 100%;
  }

  .navi-gruppe__liste {
    position: static;
    transform: none;
    padding: 0;
    min-width: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.32s ease;
  }

  .navi-gruppe__liste[data-offen="ja"] {
    transform: none;
    grid-template-rows: 1fr;
    /* muss hier wiederholt werden, sonst gewinnt die Regel für große Bildschirme
       und das Untermenü springt auf, statt aufzuklappen */
    transition: grid-template-rows 0.32s ease;
  }

  .navi-gruppe__karte {
    overflow: hidden;
    min-height: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
    padding: 0 0 0 0.9rem;
  }

  .navi-gruppe__liste a {
    font-size: 1rem;
    padding: 0.65rem 0.25rem;
    color: var(--ink-weich);
    border-bottom: 1px solid var(--sand-200);
  }

  .navi-gruppe__liste a:last-child {
    border-bottom: 0;
  }

  .navigation__fuss {
    margin-top: 1.75rem;
    display: grid;
    gap: 0.75rem;
  }

  .navigation__fuss .knopf {
    width: 100%;
  }
}

@media (min-width: 1001px) {
  .navigation__fuss {
    display: none;
  }
}

body[data-menue="offen"] {
  overflow: hidden;
}

/* =========================================================
   Hero
   ========================================================= */

.held {
  position: relative;
  background: var(--beere-dunkel);
  color: var(--weiss);
  overflow: hidden;
  isolation: isolate;
}

.held__bild {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.held__bild img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 38%;
}

.held::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
      100deg,
      rgb(36 22 26 / 0.82) 0%,
      rgb(36 22 26 / 0.62) 42%,
      rgb(36 22 26 / 0.22) 72%,
      rgb(36 22 26 / 0.1) 100%
    ),
    linear-gradient(to top, rgb(36 22 26 / 0.55), transparent 45%);
}

@media (max-width: 780px) {
  .held::after {
    background: linear-gradient(
      to bottom,
      rgb(36 22 26 / 0.28) 0%,
      rgb(36 22 26 / 0.45) 26%,
      rgb(36 22 26 / 0.82) 52%,
      rgb(36 22 26 / 0.92) 100%
    );
  }

  .held__bild img {
    object-position: 62% 22%;
  }

  .held__innen {
    padding-top: clamp(9rem, 34vw, 13rem);
  }

  .held .knopf-reihe .knopf,
  .seitenkopf .knopf-reihe .knopf,
  .aufruf .knopf-reihe .knopf {
    flex: 1 1 100%;
  }
}

.held__innen {
  padding-block: clamp(4.5rem, 13vw, 9.5rem);
  max-width: 44rem;
}

.held h1 {
  color: var(--weiss);
  margin-bottom: 0.35em;
}

.held__claim {
  font-family: var(--schrift-titel);
  font-size: clamp(1.1rem, 1rem + 0.6vw, 1.45rem);
  color: var(--sand-200);
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
}

.held__text {
  font-size: clamp(1.02rem, 0.98rem + 0.35vw, 1.2rem);
  color: rgb(255 253 250 / 0.9);
  max-width: 38rem;
  margin-bottom: 2.2rem;
}

.held .augenbraue {
  color: var(--sand-300);
}

/* Vertrauensleiste unter dem Hero */
.merkmale {
  border-top: 1px solid rgb(255 255 255 / 0.16);
  background: rgb(36 22 26 / 0.35);
  backdrop-filter: blur(6px);
  position: relative;
  z-index: 1;
}

.merkmale__liste {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 0.5rem 2rem;
  list-style: none;
  margin: 0;
  padding: 1.5rem 0;
}

.merkmale__liste li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.94rem;
  color: rgb(255 253 250 / 0.92);
}

.merkmale__liste svg {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
  color: var(--sand-300);
}

/* Seitenkopf für Unterseiten */
.seitenkopf {
  position: relative;
  background: var(--sand-100);
  overflow: hidden;
  isolation: isolate;
}

.seitenkopf--bild {
  background: var(--beere-dunkel);
  color: var(--weiss);
}

.seitenkopf--bild .seitenkopf__bild {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.seitenkopf--bild .seitenkopf__bild img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
}

.seitenkopf--bild::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(95deg, rgb(36 22 26 / 0.92) 0%, rgb(36 22 26 / 0.78) 45%, rgb(36 22 26 / 0.5) 100%),
    linear-gradient(to top, rgb(36 22 26 / 0.45), transparent 55%);
}

.seitenkopf--bild h1 {
  color: var(--weiss);
}

.seitenkopf--bild .vorspann {
  color: rgb(255 253 250 / 0.9);
}

.seitenkopf__innen {
  padding-block: clamp(3rem, 8vw, 6rem);
  max-width: 46rem;
}

/* Brotkrumen */
.krumen {
  font-size: 0.82rem;
  color: var(--ink-zart);
  margin-bottom: 1.1rem;
}

.krumen ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.krumen li:not(:last-child)::after {
  content: "/";
  margin-left: 0.45rem;
  opacity: 0.5;
}

.krumen a {
  color: inherit;
  text-decoration: none;
}

.krumen a:hover {
  color: var(--beere);
  text-decoration: underline;
}

.seitenkopf--bild .augenbraue {
  color: var(--sand-200);
}

.seitenkopf--bild .krumen {
  color: rgb(255 253 250 / 0.78);
}

.seitenkopf--bild .krumen a:hover {
  color: var(--weiss);
}

/* =========================================================
   Raster und Karten
   ========================================================= */

.raster {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2rem);
}

.raster--2 {
  grid-template-columns: repeat(auto-fit, minmax(min(20rem, 100%), 1fr));
}

.raster--3 {
  grid-template-columns: repeat(auto-fit, minmax(min(17.5rem, 100%), 1fr));
}

.abschnitt-kopf {
  max-width: 44rem;
  margin-bottom: clamp(2.25rem, 5vw, 3.5rem);
}

.abschnitt-kopf--mitte {
  margin-inline: auto;
  text-align: center;
}

.abschnitt-kopf--mitte .augenbraue {
  justify-content: center;
}

.abschnitt-kopf--mitte .vorspann {
  margin-inline: auto;
}

.karte {
  display: flex;
  flex-direction: column;
  background: var(--weiss);
  border: 1px solid var(--rahmen);
  border-radius: var(--radius-l);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  height: 100%;
}

a.karte:hover {
  transform: translateY(-4px);
  box-shadow: var(--schatten-m);
  border-color: var(--sand-300);
}

.karte__bild {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--sand-200);
}

.karte__bild img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

a.karte:hover .karte__bild img {
  transform: scale(1.04);
}

.karte__inhalt {
  padding: clamp(1.35rem, 3vw, 1.85rem);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.karte__inhalt h3 {
  margin-bottom: 0.45rem;
}

.karte__inhalt p {
  color: var(--ink-weich);
  font-size: 0.97rem;
  margin-bottom: 1.15rem;
}

.karte__inhalt .pfeil-link {
  margin-top: auto;
  align-self: flex-start;
  color: var(--beere);
}

/* Zweispaltiger Block Bild + Text */
.duo {
  display: grid;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  grid-template-columns: 1fr;
}

@media (min-width: 880px) {
  .duo {
    grid-template-columns: 1fr 1fr;
  }
  .duo--bild-rechts .duo__bild {
    order: 2;
  }
}

.duo__bild {
  position: relative;
}

.duo__bild img {
  width: 100%;
  border-radius: var(--radius-l);
  box-shadow: var(--schatten-m);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.duo__bild--breit img {
  aspect-ratio: 4 / 3;
}

/* Zitatkarte, die über das Bild ragt */
.duo__notiz {
  position: absolute;
  right: clamp(-1rem, -2vw, -2rem);
  bottom: clamp(-1.25rem, -3vw, -2rem);
  background: var(--weiss);
  border: 1px solid var(--rahmen);
  border-radius: var(--radius-m);
  box-shadow: var(--schatten-m);
  padding: 1.1rem 1.35rem;
  max-width: 15rem;
  font-family: var(--schrift-titel);
  font-size: 1rem;
  line-height: 1.35;
  color: var(--beere-dunkel);
}

@media (max-width: 620px) {
  .duo__notiz {
    position: static;
    max-width: none;
    margin-top: 1rem;
  }
}

/* Merkliste mit Häkchen */
.haken-liste {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.haken-liste li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--ink-weich);
}

.haken-liste li::before {
  content: "";
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  margin-top: 0.18rem;
  border-radius: 50%;
  background: var(--salbei-hell)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236d7f69' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E")
    center / 0.8rem no-repeat;
}

/* Ablauf in Schritten */
.schritte {
  counter-reset: schritt;
  display: grid;
  gap: clamp(1.5rem, 3vw, 2rem);
  grid-template-columns: repeat(auto-fit, minmax(min(15rem, 100%), 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.schritte li {
  counter-increment: schritt;
  position: relative;
  padding-top: 3.5rem;
}

.schritte li::before {
  content: counter(schritt, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: 0;
  font-family: var(--schrift-titel);
  font-size: 2.1rem;
  font-weight: 600;
  color: var(--beere);
  opacity: 0.35;
  line-height: 1;
}

.schritte h3 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.schritte p {
  color: var(--ink-weich);
  font-size: 0.96rem;
  margin: 0;
}

/* Häufige Fragen */
.fragen {
  max-width: 52rem;
  border-top: 1px solid var(--rahmen);
}

.frage {
  border-bottom: 1px solid var(--rahmen);
}

.frage summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.15rem 0;
  cursor: pointer;
  font-family: var(--schrift-titel);
  font-size: clamp(1.05rem, 1rem + 0.35vw, 1.25rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
  list-style: none;
  transition: color 0.18s;
}

.frage summary::-webkit-details-marker {
  display: none;
}

.frage summary:hover {
  color: var(--beere);
}

.frage summary::after {
  content: "";
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 0.15rem;
  border-radius: 50%;
  background: var(--sand-100)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237a3a4c' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E")
    center / 0.85rem no-repeat;
  transition: transform 0.25s ease, background-color 0.2s;
}

.frage[open] summary::after {
  transform: rotate(135deg);
  background-color: var(--salbei-hell);
}

.frage__antwort {
  padding-bottom: 1.35rem;
  max-width: 60ch;
}

.frage__antwort p {
  margin: 0;
  color: var(--ink-weich);
}

/* Zitate */
.stimmen {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2rem);
  grid-template-columns: repeat(auto-fit, minmax(min(19rem, 100%), 1fr));
}

.stimme {
  background: var(--weiss);
  border: 1px solid var(--rahmen);
  border-radius: var(--radius-l);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
}

.stimme__text {
  font-family: var(--schrift-titel);
  font-size: clamp(1.08rem, 1rem + 0.4vw, 1.28rem);
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 1.25rem;
}

.stimme__text::before {
  content: "„";
  font-size: 2.6em;
  line-height: 0;
  vertical-align: -0.35em;
  color: var(--beere);
  opacity: 0.28;
  margin-right: 0.06em;
}

.stimme__wer {
  margin-top: auto;
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-zart);
  font-weight: 600;
}

/* =========================================================
   Preise / Angebote
   ========================================================= */

.preis-raster {
  display: grid;
  gap: clamp(1.25rem, 3vw, 1.85rem);
  grid-template-columns: repeat(auto-fit, minmax(min(19rem, 100%), 1fr));
}

.preis {
  display: flex;
  flex-direction: column;
  background: var(--weiss);
  border: 1px solid var(--rahmen);
  border-radius: var(--radius-l);
  padding: clamp(1.5rem, 3vw, 2rem);
  position: relative;
  height: 100%;
}

.preis--betont {
  border-color: var(--beere);
  box-shadow: var(--schatten-m);
}

.preis__markierung {
  position: absolute;
  top: -0.75rem;
  left: clamp(1.5rem, 3vw, 2rem);
  background: var(--beere);
  color: var(--weiss);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.32rem 0.8rem;
  border-radius: 999px;
}

.preis h3 {
  margin-bottom: 0.6rem;
  padding-right: 1rem;
}

.preis__zahlen {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.9rem;
  padding-bottom: 1rem;
  margin-bottom: 1.15rem;
  border-bottom: 1px solid var(--rahmen);
}

.preis__wert {
  font-family: var(--schrift-titel);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--beere);
  line-height: 1;
}

.preis__dauer {
  font-size: 0.88rem;
  color: var(--ink-zart);
  letter-spacing: 0.02em;
}

.preis p {
  color: var(--ink-weich);
  font-size: 0.96rem;
}

.preis .knopf {
  margin-top: auto;
  align-self: flex-start;
}

.hinweis-kasten {
  background: var(--salbei-hell);
  border-left: 3px solid var(--salbei);
  border-radius: var(--radius-s);
  padding: 1.15rem 1.4rem;
  font-size: 0.95rem;
  color: var(--ink-weich);
}

.hinweis-kasten strong {
  color: var(--ink);
}

.hinweis-kasten p:last-child {
  margin-bottom: 0;
}

/* =========================================================
   Formular
   ========================================================= */

.formular {
  display: grid;
  gap: 1.15rem;
}

.feld-paar {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: 1fr;
}

@media (min-width: 620px) {
  .feld-paar {
    grid-template-columns: 1fr 1fr;
  }
}

.feld {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.feld label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
}

.pflicht {
  color: var(--beere);
}

.feld input,
.feld select,
.feld textarea {
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--weiss);
  border: 1.5px solid var(--rahmen);
  border-radius: var(--radius-m);
  padding: 0.85rem 1rem;
  width: 100%;
  transition: border-color 0.18s, box-shadow 0.18s;
  min-height: 50px;
}

.feld textarea {
  min-height: 9rem;
  resize: vertical;
  line-height: 1.6;
}

.feld input:focus,
.feld select:focus,
.feld textarea:focus {
  outline: none;
  border-color: var(--beere);
  box-shadow: 0 0 0 3px rgb(122 58 76 / 0.14);
}

.feld input[aria-invalid="true"],
.feld textarea[aria-invalid="true"],
.feld select[aria-invalid="true"] {
  border-color: #b3261e;
  box-shadow: 0 0 0 3px rgb(179 38 30 / 0.12);
}

.feld__fehler {
  font-size: 0.82rem;
  color: #b3261e;
  font-weight: 500;
  min-height: 1.1em;
}

.feld__hilfe {
  font-size: 0.82rem;
  color: var(--ink-zart);
}

.zustimmung {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.88rem;
  color: var(--ink-weich);
  line-height: 1.55;
}

.zustimmung input {
  width: 1.15rem;
  height: 1.15rem;
  min-height: 0;
  margin-top: 0.2rem;
  flex-shrink: 0;
  accent-color: var(--beere);
}

/* Zusammengehörige Felder, z. B. Wunschtermin aus Datum und Tageszeit */
.feldgruppe {
  border: 1px solid var(--rahmen);
  border-radius: var(--radius-m);
  padding: 1rem 1.15rem 1.15rem;
  margin: 0;
  min-width: 0;
  background: var(--sand-50);
}

.feldgruppe legend {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  padding: 0 0.45rem;
  margin-left: -0.45rem;
}

.feldgruppe .feld input,
.feldgruppe .feld select {
  background: var(--weiss);
}

/* Auf kleinen Geräten sind Datumsfelder sonst schnell zu schmal */
input[type="date"] {
  min-height: 50px;
  appearance: none;
}

/* Honigtopf gegen Spam – für Menschen unsichtbar */
.honigtopf {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.formular__rueckmeldung {
  border-radius: var(--radius-m);
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
  display: none;
}

.formular__rueckmeldung[data-art="erfolg"] {
  display: block;
  background: var(--salbei-hell);
  border: 1px solid var(--salbei);
  color: #35482f;
}

.formular__rueckmeldung[data-art="fehler"] {
  display: block;
  background: #fdf0ef;
  border: 1px solid #e0b4b0;
  color: #8a201a;
}

.knopf .laderad {
  width: 1rem;
  height: 1rem;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: dreh 0.7s linear infinite;
  display: none;
}

.knopf[data-laedt="ja"] .laderad {
  display: block;
}

@keyframes dreh {
  to {
    transform: rotate(360deg);
  }
}

/* Kontaktangaben als Kacheln */
.kontakt-liste {
  display: grid;
  gap: 1rem;
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
}

.kontakt-liste li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.kontakt-liste svg {
  width: 1.35rem;
  height: 1.35rem;
  color: var(--beere);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.kontakt-liste a {
  text-decoration: none;
  font-weight: 500;
}

.kontakt-liste a:hover {
  text-decoration: underline;
}

.kontakt-liste dt {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-zart);
  font-weight: 600;
  margin-bottom: 0.1rem;
}

/* =========================================================
   Buchung / Einbettung
   ========================================================= */

.einbettung {
  border: 1px solid var(--rahmen);
  border-radius: var(--radius-l);
  background: var(--weiss);
  overflow: hidden;
}

.einbettung__platzhalter {
  padding: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
}

.einbettung__platzhalter h3 {
  margin-bottom: 0.6rem;
}

.einbettung__platzhalter p {
  color: var(--ink-weich);
  max-width: 34rem;
  margin-inline: auto;
}

.einbettung iframe {
  width: 100%;
  min-height: 700px;
  border: 0;
  display: block;
}

/* =========================================================
   Blog
   ========================================================= */

.beitrag-liste {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.25rem);
  grid-template-columns: repeat(auto-fill, minmax(min(20rem, 100%), 1fr));
}

.beitrag-karte__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.9rem;
  font-size: 0.8rem;
  color: var(--ink-zart);
  margin-bottom: 0.7rem;
  letter-spacing: 0.02em;
}

.beitrag-gross {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  background: var(--weiss);
  border: 1px solid var(--rahmen);
  border-radius: var(--radius-l);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.25s, transform 0.25s;
}

@media (min-width: 820px) {
  .beitrag-gross {
    grid-template-columns: 1.05fr 1fr;
    gap: 0;
  }
}

.beitrag-gross:hover {
  box-shadow: var(--schatten-m);
  transform: translateY(-3px);
}

.beitrag-gross__bild {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--sand-200);
}

.beitrag-gross__bild img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.beitrag-gross__inhalt {
  padding: clamp(1.5rem, 4vw, 3rem);
}

.beitrag-gross__inhalt h3 {
  font-size: clamp(1.4rem, 1.2rem + 1vw, 2rem);
}

/* Beitragsseite */
.artikel {
  --breite-artikel: 44rem;
}

.artikel__kopfbild {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-l);
  box-shadow: var(--schatten-m);
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.artikel__text {
  width: min(100% - 2 * var(--rand), var(--breite-artikel));
  margin-inline: auto;
  font-size: clamp(1.03rem, 1rem + 0.2vw, 1.13rem);
  line-height: 1.78;
}

.artikel__text > h2 {
  font-size: clamp(1.5rem, 1.3rem + 1.1vw, 2.05rem);
  margin-top: 2.4em;
  margin-bottom: 0.5em;
}

.artikel__text > h2:first-child {
  margin-top: 0;
}

.artikel__text > h3 {
  font-size: clamp(1.15rem, 1.08rem + 0.4vw, 1.35rem);
  margin-top: 2em;
  margin-bottom: 0.45em;
  color: var(--beere-dunkel);
}

.artikel__text ul,
.artikel__text ol {
  padding-left: 1.35rem;
  margin: 0 0 1.4em;
}

.artikel__text li {
  margin-bottom: 0.5em;
}

.artikel__text li::marker {
  color: var(--beere);
}

.artikel__text img {
  width: 100%;
  border-radius: var(--radius-m);
  margin: 2.2em 0;
  box-shadow: var(--schatten-s);
}

.artikel__text blockquote {
  margin: 2em 0;
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--beere);
  background: var(--sand-100);
  border-radius: 0 var(--radius-m) var(--radius-m) 0;
  font-family: var(--schrift-titel);
  font-size: 1.15em;
  line-height: 1.5;
}

.artikel__text blockquote p:last-child {
  margin-bottom: 0;
}

.artikel__text strong {
  color: var(--ink);
  font-weight: 650;
}

.artikel__text a {
  font-weight: 500;
}

.artikel__fuss {
  width: min(100% - 2 * var(--rand), var(--breite-artikel));
  margin: clamp(3rem, 7vw, 4.5rem) auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--rahmen);
}

.marken {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.marke-chip {
  font-size: 0.8rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: var(--sand-100);
  border: 1px solid var(--rahmen);
  color: var(--ink-weich);
  text-decoration: none;
}

.marke-chip:hover {
  background: var(--sand-200);
  color: var(--ink);
}

/* Aufruf im Beitrag */
.beitrag-cta {
  margin: 2.5em 0;
  padding: clamp(1.35rem, 3vw, 1.9rem);
  background: var(--salbei-hell);
  border: 1px solid #dfe5da;
  border-radius: var(--radius-l);
}

.beitrag-cta__titel {
  font-family: var(--schrift-titel);
  font-size: 1.25em !important;
  font-weight: 600;
  line-height: 1.25;
  color: var(--ink) !important;
  margin-bottom: 0.4em !important;
}

.beitrag-cta p {
  margin: 0 0 0.6em;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-weich);
}

.beitrag-cta p:last-of-type {
  margin-bottom: 1.15em;
}

.beitrag-cta strong {
  color: var(--ink);
}

.beitrag-cta .knopf {
  margin: 0;
}

/* Leerzustand */
.leer {
  text-align: center;
  padding: clamp(3rem, 8vw, 5rem) 1.5rem;
  border: 1px dashed var(--sand-300);
  border-radius: var(--radius-l);
  background: var(--sand-100);
  color: var(--ink-weich);
}

.leer h3 {
  margin-bottom: 0.5rem;
}

/* =========================================================
   Abschluss-Aufruf und Fußbereich
   ========================================================= */

.aufruf {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--beere-dunkel);
  color: var(--weiss);
}

.aufruf__bild {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.aufruf__bild img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 40%;
}

.aufruf::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgb(46 22 30 / 0.9) 0%, rgb(46 22 30 / 0.72) 55%, rgb(46 22 30 / 0.5) 100%);
}

.aufruf__innen {
  padding-block: clamp(3.5rem, 9vw, 6rem);
  max-width: 42rem;
}

.aufruf h2 {
  color: var(--weiss);
}

.aufruf p {
  color: rgb(255 253 250 / 0.88);
  font-size: clamp(1rem, 0.97rem + 0.3vw, 1.15rem);
}

.fuss {
  background: var(--ink);
  color: rgb(252 249 245 / 0.72);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
  font-size: 0.93rem;
}

.fuss a {
  color: rgb(252 249 245 / 0.85);
  text-decoration: none;
}

.fuss a:hover {
  color: var(--weiss);
  text-decoration: underline;
}

.fuss__raster {
  display: grid;
  gap: clamp(2rem, 5vw, 3rem);
  grid-template-columns: repeat(auto-fit, minmax(min(14rem, 100%), 1fr));
  padding-bottom: 2.5rem;
}

.fuss__marke .marke__name {
  color: var(--weiss);
  font-size: 1.35rem;
}

.fuss__marke .marke__zusatz {
  color: rgb(252 249 245 / 0.55);
}

.fuss h2 {
  font-family: var(--schrift-text);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgb(252 249 245 / 0.5);
  margin-bottom: 1rem;
  font-weight: 600;
}

.fuss ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.fuss__unten {
  border-top: 1px solid rgb(252 249 245 / 0.14);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgb(252 249 245 / 0.55);
}

.fuss__unten nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
}

/* Fixe Aktionsleiste auf kleinen Geräten */
.mobil-leiste {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: none;
  gap: 0.6rem;
  padding: 0.6rem var(--rand) calc(0.6rem + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--sand-50) 94%, transparent);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--rahmen);
}

.mobil-leiste .knopf {
  flex: 1;
  padding: 0.8rem 0.75rem;
  font-size: 0.9rem;
}

@media (max-width: 700px) {
  .mobil-leiste {
    display: flex;
  }
  body {
    padding-bottom: 4.75rem;
  }
  body[data-menue="offen"] .mobil-leiste {
    display: none;
  }
}

/* Rechtstexte */
.rechtstext {
  font-size: 1rem;
}

.rechtstext h2 {
  font-size: clamp(1.25rem, 1.15rem + 0.6vw, 1.6rem);
  margin-top: 2.4em;
}

.rechtstext h2:first-child {
  margin-top: 0;
}

.rechtstext h3 {
  font-size: 1.1rem;
  margin-top: 1.8em;
}

.rechtstext ul {
  padding-left: 1.35rem;
}

.rechtstext li {
  margin-bottom: 0.4em;
}

.rechtstext address {
  font-style: normal;
  background: var(--sand-100);
  border-radius: var(--radius-m);
  padding: 1.25rem 1.5rem;
  display: inline-block;
}

/* Kleinteile */
.zentriert {
  text-align: center;
}

.mt-0 {
  margin-top: 0;
}

.abstand-oben {
  margin-top: clamp(2rem, 5vw, 3rem);
}

.nur-fuer-screenreader {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
