/* ==========================================================================
   Tiersitting Happy Home — Stylesheet
   Farbwelt und Formensprache aus dem Logo abgeleitet.
   Keine Webfonts, keine externen Requests, keine Cookies.
   ========================================================================== */

/* --------------------------------------------------------------- 1. Tokens */

:root {
  /* Markenfarben aus dem Logo */
  --gruen: #2d572e;
  --gruen-dunkel: #1f3c20;
  --gruen-hell: #97ba60;
  --creme: #faf5e2;
  --creme-tief: #f3ebd3;
  --ocker: #e0ae55;
  --braun: #aa7d46;
  --orange: #ed8e56;

  /* Textvarianten der Akzentfarben. Ocker und Braun aus dem Logo sind als
     Schriftfarbe zu hell bzw. zu blass — diese beiden erreichen die von der
     WCAG geforderten 4,5:1 auf Creme bzw. auf Dunkelgrün. */
  --braun-text: #8a5f2e;
  --ocker-hell: #edc272;

  /* Abgeleitete Rollen */
  --text: #26331f;
  --text-leise: #5d6b52;
  --flaeche: #fffdf6;
  --linie: #ddd5bc;
  --linie-stark: #c4bb9d;

  /* Typografie: System-Stack, kein Download */
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua",
    Georgia, "Times New Roman", serif;
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;

  /* Rhythmus */
  --mass: 68rem;
  --pad: clamp(1.25rem, 4vw, 2.5rem);
  --lueck: clamp(3rem, 7vw, 5.5rem);
  --radius: 14px;
  --radius-gross: 26px;

  --schatten: 0 1px 2px rgba(38, 51, 31, 0.05),
    0 6px 20px -8px rgba(38, 51, 31, 0.14);
  --schatten-hoch: 0 2px 4px rgba(38, 51, 31, 0.06),
    0 18px 40px -14px rgba(38, 51, 31, 0.24);
}

/* --------------------------------------------------------------- 2. Basis */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

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

body {
  margin: 0;
  background: var(--creme);
  color: var(--text);
  font-family: var(--sans);
  font-size: clamp(1.02rem, 0.28vw + 0.96rem, 1.12rem);
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

/* Überschriften */

h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  color: var(--gruen);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 0.6em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.1rem, 5.4vw, 3.4rem);
}

h2 {
  font-size: clamp(1.65rem, 3.6vw, 2.4rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.45rem);
}

p,
ul,
ol,
dl {
  margin: 0 0 1.15em;
}

p {
  text-wrap: pretty;
}

strong {
  color: var(--gruen-dunkel);
}

/* Sprungmarke für Tastatur und Screenreader */

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--gruen);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 var(--radius) 0;
}

.skip:focus {
  left: 0;
}

.nur-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* --------------------------------------------------------- 3. Layout-Hilfen */

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

.wrap--schmal {
  max-width: 44rem;
}

section {
  padding-block: var(--lueck);
}

.band {
  background: var(--flaeche);
  border-block: 1px solid var(--linie);
}

.band--gruen {
  background: var(--gruen);
  color: #f2f6ea;
  border-color: var(--gruen-dunkel);
}

.band--gruen h2,
.band--gruen h3 {
  color: #fff;
}

/* Nur Textlinks umfärben — Buttons behalten ihr eigenes Farbschema.
   Ohne :not(.btn) wäre diese Regel spezifischer als .btn--akzent und würde
   die Buttonschrift überschreiben. */

.band--gruen a:not(.btn) {
  color: var(--ocker);
}

.band--gruen a:not(.btn):hover {
  color: #fff;
}

.mitte {
  text-align: center;
}

.mitte > p {
  margin-inline: auto;
  max-width: 46rem;
}

.vorspann {
  font-size: 1.14em;
  color: var(--text-leise);
}

.abschnitt-kopf {
  max-width: 46rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

/* Kleines Label über Überschriften */

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--braun-text);
  margin-bottom: 0.9rem;
}

.band--gruen .eyebrow {
  color: var(--ocker-hell);
}

/* ------------------------------------------------------------ 4. Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.2;
  padding: 0.9rem 1.6rem;
  border: 2px solid var(--gruen);
  border-radius: 999px;
  background: var(--gruen);
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease,
    transform 0.18s ease, box-shadow 0.18s ease;
}

.btn:hover {
  background: var(--gruen-dunkel);
  border-color: var(--gruen-dunkel);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--schatten);
}

.btn--zweit {
  background: transparent;
  color: var(--gruen);
}

.btn--zweit:hover {
  background: var(--gruen);
  color: #fff;
}

.btn--akzent {
  background: var(--orange);
  border-color: var(--orange);
  color: #40230f;
}

.btn--akzent:hover {
  background: #e0782f;
  border-color: #e0782f;
  color: #40230f;
}

/* Sekundärer Button auf dunkelgrünem Grund */

.band--gruen .btn--zweit {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.8);
  background: transparent;
}

.band--gruen .btn--zweit:hover {
  background: #fff;
  border-color: #fff;
  color: var(--gruen-dunkel);
}

.btn-reihe {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.mitte .btn-reihe {
  justify-content: center;
}

/* -------------------------------------------------------------- 5. Header */

.kopf {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 245, 226, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--linie);
}

.kopf__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.5rem;
}

.marke {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--gruen);
  flex-shrink: 0;
}

.marke img {
  width: 46px;
  height: 46px;
}

.marke__text {
  display: flex;
  flex-direction: column;
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.01em;
}

.marke__text span:first-child {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--braun-text);
}

.marke__text span:last-child {
  font-size: 1.18rem;
}

/* Navigation */

/* Der Schalter erscheint nur, wenn JavaScript läuft — sonst bleibt die
   Navigation als einfache, immer sichtbare Liste stehen. */

.nav__schalter {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font: inherit;
  font-weight: 650;
  color: var(--gruen);
  background: transparent;
  border: 2px solid var(--linie-stark);
  border-radius: 999px;
  padding: 0.5rem 0.95rem;
  cursor: pointer;
}

.nav__schalter svg {
  width: 20px;
  height: 20px;
}

.nav__liste {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.35rem;
  align-items: center;
}

.nav__liste a {
  display: block;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  color: var(--text);
  white-space: nowrap;
}

.nav__liste a:hover {
  background: var(--creme-tief);
  color: var(--gruen);
}

.nav__liste a[aria-current="page"] {
  background: var(--gruen);
  color: #fff;
}

.nav__liste .nav__cta a {
  background: var(--orange);
  color: #40230f;
  padding-inline: 1.1rem;
}

.nav__liste .nav__cta a:hover {
  background: #e0782f;
  color: #40230f;
}

@media (max-width: 61.9375em) {
  /* Ohne JavaScript: die Navigation rutscht als umbrechende Zeile unter das
     Logo, statt sich rechts zu einer hohen Spalte zu stapeln. */
  html:not(.js) .kopf__inner {
    flex-wrap: wrap;
    padding-bottom: 0.35rem;
  }

  html:not(.js) .kopf__inner nav {
    width: 100%;
  }

  .nav__liste {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.3rem;
    padding-bottom: 0.5rem;
  }

  /* Mit JavaScript: ausklappbares Panel. */
  .js .nav__schalter {
    display: inline-flex;
  }

  .js .nav__liste {
    position: absolute;
    inset-inline: 0;
    top: 100%;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0.15rem;
    background: var(--creme);
    border-bottom: 1px solid var(--linie);
    padding: 0.75rem var(--pad) 1.25rem;
    box-shadow: var(--schatten);
  }

  .js .nav__liste[hidden] {
    display: none;
  }

  .js .nav__liste a {
    padding: 0.8rem 1rem;
    font-size: 1.05rem;
  }
}

@media (min-width: 62em) {
  .nav__liste[hidden] {
    display: flex;
  }
}

/* ---------------------------------------------------------------- 6. Hero */

.hero {
  padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(2.5rem, 6vw, 4rem);
}

.hero__grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

@media (min-width: 52em) {
  .hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

.hero h1 {
  margin-bottom: 0.5em;
}

.hero__bild {
  position: relative;
}

.hero__bild img {
  width: 100%;
  border-radius: var(--radius-gross);
  border: 1px solid var(--linie);
  box-shadow: var(--schatten-hoch);
}

.hero__logo {
  width: min(340px, 78%);
  margin: 0 auto 1.5rem;
}

/* Vertrauens-Merkmale unter dem Hero */

.merkmale {
  list-style: none;
  margin: 1.8rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.7rem 1.5rem;
}

@media (min-width: 34em) {
  .merkmale {
    grid-template-columns: 1fr 1fr;
  }
}

.merkmale li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-weight: 600;
  color: var(--gruen-dunkel);
  font-size: 0.99rem;
}

.merkmale svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 0.12em;
  color: var(--gruen-hell);
}

/* --------------------------------------------------------------- 7. Karten */

.raster {
  display: grid;
  gap: clamp(1.1rem, 2.4vw, 1.75rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16.5rem), 1fr));
}

.karte {
  display: flex;
  flex-direction: column;
  background: var(--flaeche);
  border: 1px solid var(--linie);
  border-radius: var(--radius-gross);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.karte--link:hover {
  transform: translateY(-3px);
  box-shadow: var(--schatten-hoch);
  border-color: var(--linie-stark);
}

.karte__bild {
  aspect-ratio: 3 / 2;
  width: 100%;
  object-fit: cover;
  border-bottom: 1px solid var(--linie);
}

.karte__inhalt {
  padding: clamp(1.25rem, 2.4vw, 1.7rem);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.karte__inhalt > :last-child {
  margin-bottom: 0;
}

.karte h3 {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.5rem;
}

.karte h3 img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.karte p {
  color: var(--text-leise);
  font-size: 0.99rem;
}

.karte__preis {
  margin-top: auto;
  padding-top: 1rem;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gruen);
}

.karte__preis small {
  display: block;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-leise);
  letter-spacing: 0.01em;
}

/* Leistungs-Karte mit Detailliste */

.karte ul {
  margin: 0.4rem 0 1rem;
  padding-left: 1.15rem;
  color: var(--text-leise);
  font-size: 0.96rem;
}

.karte li {
  margin-bottom: 0.3rem;
}

/* ------------------------------------------------------------- 8. Ablauf */

.ablauf {
  list-style: none;
  counter-reset: schritt;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(1.1rem, 2.2vw, 1.4rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 11rem), 1fr));
}

.ablauf li {
  counter-increment: schritt;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 1.35rem 1.3rem 1.45rem;
}

/* Die Nummer sitzt in der Zeile der Überschrift — so kann sie nicht
   mit dem Text kollidieren, auch nicht bei großer Schrift. */

.ablauf h3 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.08rem;
  margin-bottom: 0.5rem;
}

.ablauf h3::before {
  content: counter(schritt);
  flex-shrink: 0;
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gruen-dunkel);
  background: var(--ocker);
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  line-height: 1;
}

.ablauf p {
  margin: 0;
  font-size: 0.95rem;
  color: #dce6d2;
}

/* -------------------------------------------------------- 9. Preistabelle */

.preis-tabelle {
  width: 100%;
  border-collapse: collapse;
  background: var(--flaeche);
  border: 1px solid var(--linie);
  border-radius: var(--radius-gross);
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.preis-tabelle caption {
  caption-side: top;
  text-align: left;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gruen);
  padding: 0 0 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.preis-tabelle caption img {
  width: 38px;
  height: 38px;
}

.preis-tabelle th,
.preis-tabelle td {
  text-align: left;
  padding: 0.85rem 1.15rem;
  border-bottom: 1px solid var(--linie);
  vertical-align: top;
}

.preis-tabelle tr:last-child th,
.preis-tabelle tr:last-child td {
  border-bottom: 0;
}

.preis-tabelle th {
  font-weight: 600;
  color: var(--text);
}

.preis-tabelle th small {
  display: block;
  font-weight: 400;
  font-size: 0.87rem;
  color: var(--text-leise);
}

.preis-tabelle td {
  width: 1%;
  white-space: nowrap;
  font-family: var(--serif);
  font-size: 1.16rem;
  font-weight: 700;
  color: var(--gruen);
  text-align: right;
}

.preis-tabelle tbody tr:nth-child(even) {
  background: rgba(243, 235, 211, 0.45);
}

/* Hinweis-Box */

.hinweis {
  background: var(--creme-tief);
  border: 1px solid var(--linie-stark);
  border-left: 5px solid var(--ocker);
  border-radius: var(--radius);
  padding: 1.15rem 1.35rem;
  font-size: 0.98rem;
}

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

.hinweis h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.hinweis--gruen {
  border-left-color: var(--gruen-hell);
}

/* --------------------------------------------------------- 10. Galerie */

.galerie {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr));
}

.galerie figure {
  margin: 0;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--linie);
  background: var(--creme-tief);
}

.galerie img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.galerie figure:hover img {
  transform: scale(1.04);
}

.galerie figcaption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 1.6rem 0.85rem 0.65rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(
    to top,
    rgba(31, 60, 32, 0.88),
    rgba(31, 60, 32, 0)
  );
}

/* Variante für Bilder mit gemischtem Hoch- und Querformat: Spaltensatz statt
   Raster, damit jedes Bild sein eigenes Seitenverhältnis behalten darf. Ein
   Zuschnitt auf ein einheitliches Format würde bei hohen Aquarien oben und
   unten das Becken abschneiden. */

.galerie--frei {
  display: block;
  columns: 3 15rem;
  column-gap: 0.85rem;
}

.galerie--frei figure {
  break-inside: avoid;
  margin-bottom: 0.85rem;
}

.galerie--frei img {
  aspect-ratio: auto;
  width: 100%;
  height: auto;
}

/* -------------------------------------------------------- 11. Über mich */

.profil {
  display: grid;
  gap: clamp(1.8rem, 4vw, 3rem);
  align-items: start;
}

@media (min-width: 50em) {
  .profil {
    grid-template-columns: 0.85fr 1.15fr;
  }
}

.profil__bild {
  margin: 0;
}

.profil__bild img {
  border-radius: var(--radius-gross);
  border: 1px solid var(--linie);
  box-shadow: var(--schatten);
  width: 100%;
}

.profil__bild figcaption {
  margin-top: 0.7rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-leise);
  text-align: center;
}

.fakten {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.fakten li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background: var(--flaeche);
  border: 1px solid var(--linie);
  border-radius: var(--radius);
  padding: 0.95rem 1.15rem;
}

.fakten svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 0.15em;
  color: var(--braun-text);
}

.fakten strong {
  display: block;
}

.fakten span {
  font-size: 0.95rem;
  color: var(--text-leise);
}

/* -------------------------------------------------------- 12. Formular */

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

.feld {
  display: grid;
  gap: 0.4rem;
}

.feld label {
  font-weight: 650;
  font-size: 0.98rem;
  color: var(--gruen-dunkel);
}

.feld label .pflicht {
  color: var(--orange);
  font-weight: 700;
}

.feld input,
.feld select,
.feld textarea {
  font: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--flaeche);
  border: 2px solid var(--linie-stark);
  border-radius: var(--radius);
  padding: 0.75rem 0.9rem;
  width: 100%;
}

.feld textarea {
  min-height: 8.5rem;
  resize: vertical;
}

.feld input:focus,
.feld select:focus,
.feld textarea:focus {
  border-color: var(--gruen);
  outline: none;
  box-shadow: 0 0 0 3px rgba(151, 186, 96, 0.35);
}

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

.feld small {
  color: var(--text-leise);
  font-size: 0.88rem;
}

.feld-paar {
  display: grid;
  gap: 1.15rem;
}

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

.check {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.95rem;
  line-height: 1.55;
}

.check input {
  width: 1.35rem;
  height: 1.35rem;
  margin: 0.15rem 0 0;
  flex-shrink: 0;
  accent-color: var(--gruen);
}

/* Honeypot: für Menschen unsichtbar, für Bots ein Köder */

.koeder {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.meldung {
  border-radius: var(--radius);
  padding: 1.1rem 1.3rem;
  margin-bottom: 1.5rem;
  border: 1px solid;
  font-size: 0.98rem;
}

.meldung > :last-child {
  margin-bottom: 0;
}

.meldung--fehler {
  background: #fdeee9;
  border-color: #e2a58f;
  color: #7d2c16;
}

.meldung--fehler a {
  color: #7d2c16;
}

.meldung--erfolg {
  background: #eef5e4;
  border-color: var(--gruen-hell);
  color: var(--gruen-dunkel);
}

.meldung ul {
  margin: 0.5rem 0 0;
  padding-left: 1.2rem;
}

/* ------------------------------------------------------- 13. Kontaktdaten */

.kontakt-liste {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.kontakt-liste li {
  display: flex;
  gap: 0.85rem;
  align-items: center;
}

.kontakt-liste svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--braun-text);
}

.kontakt-liste a,
.kontakt-liste span {
  font-weight: 600;
  font-size: 1.02rem;
}

.kontakt-liste small {
  display: block;
  font-weight: 400;
  font-size: 0.86rem;
  color: var(--text-leise);
}

.band--gruen .kontakt-liste svg {
  color: var(--ocker-hell);
}

.band--gruen .kontakt-liste small {
  color: #c7d5ba;
}

/* Gebiets-Chips */

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

.gebiete li {
  background: var(--flaeche);
  border: 1px solid var(--linie-stark);
  border-radius: 999px;
  padding: 0.4rem 0.95rem;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--gruen);
}

.band--gruen .gebiete li {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  color: #f2f6ea;
}

/* ------------------------------------------------------------- 14. FAQ */

.faq {
  display: grid;
  gap: 0.75rem;
}

.faq details {
  background: var(--flaeche);
  border: 1px solid var(--linie);
  border-radius: var(--radius);
  padding: 0 1.25rem;
}

.faq details[open] {
  border-color: var(--linie-stark);
  box-shadow: var(--schatten);
}

.faq summary {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gruen);
  cursor: pointer;
  padding: 1.05rem 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.faq summary::after {
  content: "";
  flex-shrink: 0;
  width: 0.65rem;
  height: 0.65rem;
  border-right: 2.5px solid var(--braun-text);
  border-bottom: 2.5px solid var(--braun-text);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.faq details[open] summary::after {
  transform: rotate(-135deg);
}

.faq details > :not(summary) {
  padding-bottom: 0.35rem;
}

.faq details p:last-child {
  margin-bottom: 1.1rem;
}

/* ------------------------------------------------------- 15. Rechtstexte */

.rechtstext h2 {
  font-size: clamp(1.3rem, 2.4vw, 1.65rem);
  margin-top: 2.4rem;
}

.rechtstext h3 {
  font-size: 1.12rem;
  margin-top: 1.7rem;
}

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

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

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

.rechtstext address {
  font-style: normal;
  background: var(--flaeche);
  border: 1px solid var(--linie);
  border-radius: var(--radius);
  padding: 1.15rem 1.35rem;
  margin-bottom: 1.5rem;
  line-height: 1.75;
}

/* ---------------------------------------------------------- 16. Footer */

.fuss {
  background: var(--gruen-dunkel);
  color: #cfdcc4;
  padding-block: clamp(2.5rem, 5vw, 3.5rem) 1.75rem;
  font-size: 0.96rem;
}

.fuss__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.fuss h2 {
  font-size: 1.02rem;
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ocker);
  margin-bottom: 0.9rem;
}

.fuss a {
  color: #eaf1e2;
}

.fuss a:hover {
  color: #fff;
}

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

/* Das Logo ist dunkelgrün — auf dem dunklen Footer braucht es eine helle
   Fläche, sonst verschwindet der Schriftzug. */

.fuss__marke img {
  width: 108px;
  margin-bottom: 1rem;
  background: var(--creme);
  border-radius: var(--radius);
  padding: 0.5rem 0.6rem;
}

.fuss__unten {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  font-size: 0.88rem;
  color: #a9bb9c;
}

.fuss__unten ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.25rem;
}

/* Kontaktliste im Footer: die Standardfarben sind für dunklen Grund zu dunkel. */

.fuss .kontakt-liste small {
  color: #a9bb9c;
}

.fuss .kontakt-liste svg {
  color: var(--ocker);
}

.social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
}

.social a {
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: #eaf1e2;
}

.social a:hover {
  background: var(--ocker);
  border-color: var(--ocker);
  color: var(--gruen-dunkel);
}

.social svg {
  width: 21px;
  height: 21px;
}

/* ------------------------------------------- 17. Druckbogen für vor Ort */
/* Wird auf /unterlagen/ verwendet: ein Formular, das ausgedruckt und beim
   Kennenlerntermin ausgefüllt und unterschrieben wird. */

.bogen__kopf {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  border-bottom: 2px solid var(--gruen);
  padding-bottom: 1rem;
  margin-bottom: 1.75rem;
}

.bogen__kopf img {
  width: 66px;
  height: 69px;
  flex-shrink: 0;
}

.bogen__kopf p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-leise);
}

.bogen h2 {
  font-size: 1.25rem;
  margin-top: 2rem;
}

.bogen h3 {
  font-size: 1.02rem;
  margin-top: 1.4rem;
}

.zeile {
  display: grid;
  gap: 0.9rem 1.25rem;
  margin-bottom: 0.9rem;
}

@media (min-width: 34em) {
  .zeile--paar {
    grid-template-columns: 1fr 1fr;
  }

  .zeile--drei {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.zeile > div > span {
  display: block;
  font-weight: 650;
  font-size: 0.88rem;
  color: var(--gruen-dunkel);
  margin-bottom: 0.15rem;
}

.linie {
  display: block;
  border-bottom: 1px solid var(--linie-stark);
  min-height: 1.9rem;
}

.linie--hoch {
  min-height: 4.2rem;
}

.kasten {
  border: 1.5px solid var(--linie-stark);
  border-radius: var(--radius);
  padding: 1.1rem 1.3rem;
  margin-bottom: 1.3rem;
}

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

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

.ankreuz {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}

.ankreuz::before {
  content: "";
  flex-shrink: 0;
  width: 1.15rem;
  height: 1.15rem;
  border: 1.5px solid var(--gruen);
  border-radius: 3px;
  margin-top: 0.15em;
}

.unterschriften {
  display: grid;
  gap: 1.5rem 2rem;
  margin-top: 2.5rem;
}

@media (min-width: 34em) {
  .unterschriften {
    grid-template-columns: 1fr 1fr;
  }
}

.unterschriften div {
  border-top: 1px solid var(--text);
  padding-top: 0.4rem;
  font-size: 0.84rem;
  color: var(--text-leise);
}

.seitenumbruch {
  break-before: page;
}

/* Hinweise, die nur am Bildschirm gelten und nicht mitgedruckt werden. */

@media print {
  .nur-schirm {
    display: none !important;
  }
}

/* --------------------------------------------------------- 18. Drucken */

@media print {
  /* Der Druckbogen soll die volle Seitenbreite nutzen und nicht mitten in
     einem Kasten oder über einer Unterschriftszeile umbrechen. */
  @page {
    margin: 16mm 14mm;
  }

  .bogen {
    max-width: none;
  }

  .bogen .kasten,
  .bogen .unterschriften,
  .bogen .zeile {
    break-inside: avoid;
  }

  .bogen h2,
  .bogen h3 {
    break-after: avoid;
  }

  /* Im Bogen stören ausgeschriebene URLs hinter jedem Link. */
  .bogen a[href^="http"]::after {
    content: "";
  }
}

@media print {
  .kopf,
  .fuss,
  .btn,
  .btn-reihe,
  .galerie {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
    font-size: 11pt;
  }

  a {
    color: #000;
  }

  a[href^="http"]::after {
    content: " (" attr(href) ")";
    font-size: 0.85em;
  }

  section {
    padding-block: 1rem;
  }
}
