/* ==========================================================================
   Lechglanz – Gebäudereinigung Landsberg am Lech
   Zentrales Stylesheet
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design-Token (Farben, Abstände, Schrift)
   Hier änderst du zentral das Aussehen der gesamten Website.
   -------------------------------------------------------------------------- */
:root {
  --blau-dunkel: #0f4c81;
  --blau-tief: #0a3559;
  --blau-mittel: #1a6bb0;

  /* MAYA BLUE – die Signaturfarbe. Sie ist ein helles Himmelblau und erreicht
     auf Weiß nur 1,9:1 Kontrast. Deshalb ausschließlich für Flächen, Linien,
     Symbole und für Text auf dunklem Grund – niemals als Textfarbe auf Weiß. */
  --maya: #73c2fb;
  /* Aufgehelltes Maya für Text auf den dunkelblauen Abschnitten. */
  --maya-hell: #a8d8fd;
  /* Textfarbe für Links und Auszeichnungen: 8,9:1 auf Weiß,
     7,9:1 auf der hellen Fläche --blau-zart. Beides deutlich über WCAG AA. */
  --blau-text: #0f4c81;
  --blau-zart: #e8f3fd;

  /* Sekundärfarbe: warmes Bernstein. Orange ist der Gegenspieler von Blau im
     Farbkreis und damit die auffälligste Ergänzung. Ein blauer Knopf würde auf
     den blauen Flächen untergehen – dieser sticht heraus und erreicht mit
     dunklem Text 7,9:1 Kontrast. */
  --sand: #f0a500;
  --sand-dark: #d99500;

  --ink: #12212e;
  --ink-muted: #52616e;
  --ink-soft: #64737f;

  --surface: #f4f8fc;
  --surface-alt: #e9f1f8;
  --white: #ffffff;
  --border: #d8e4ee;

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 1px 2px rgba(18, 33, 46, 0.06), 0 2px 8px rgba(18, 33, 46, 0.06);
  --shadow: 0 4px 12px rgba(18, 33, 46, 0.08), 0 12px 28px rgba(18, 33, 46, 0.07);
  --shadow-lg: 0 8px 20px rgba(18, 33, 46, 0.1), 0 24px 48px rgba(18, 33, 46, 0.1);

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, "Noto Sans", sans-serif;

  --container: 1140px;
  --header-height: 72px;
}

/* --------------------------------------------------------------------------
   2. Grundlagen
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;

  /* Deutsche Bandwurmwörter wie "Umsatzsteuer-Identifikationsnummer" oder
     "Verbraucherschlichtungsstelle" sind breiter als ein schmales Handy-Display
     und würden die Seite seitlich verschieben. Zusammen mit lang="de" im
     HTML trennt der Browser sie korrekt nach deutschen Regeln. */
  overflow-wrap: break-word;
  -webkit-hyphens: auto;
  hyphens: auto;
}

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

h1,
h2,
h3,
h4 {
  color: var(--blau-dunkel);
  line-height: 1.2;
  margin: 0 0 0.6em;
  font-weight: 700;
  letter-spacing: -0.015em;

  /* Keine automatische Silbentrennung in Überschriften. Im Fließtext ist sie
     nötig, damit lange Wörter das Layout nicht sprengen – in großer Schrift
     wirken Trennstriche wie "Lands-berg" dagegen unsauber. */
  -webkit-hyphens: manual;
  hyphens: manual;
}

h1 {
  /* Untergrenze 1,75rem statt 2rem: Bei 320 px Bildschirmbreite passt
     "Gebäudereinigung in" damit auf eine Zeile, statt das "in" allein
     auf einer vierten Zeile stehen zu lassen. */
  font-size: clamp(1.75rem, 5.5vw, 3.1rem);
  /* Verteilt die Wörter gleichmäßiger auf die Zeilen. Browser, die das
     nicht kennen, ignorieren es folgenlos. */
  text-wrap: balance;
}
h2 {
  font-size: clamp(1.6rem, 4vw, 2.3rem);
}
h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.4rem);
}

p {
  margin: 0 0 1.1em;
}

a {
  color: var(--blau-text);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

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

ul,
ol {
  padding-left: 1.3em;
}

li {
  margin-bottom: 0.5em;
}

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

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

/* Sprungmarke für Tastatur- und Screenreader-Nutzung */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--blau-dunkel);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 0 0 var(--radius-sm) 0;
}

.skip-link:focus {
  left: 0;
  color: var(--white);
}

/* --------------------------------------------------------------------------
   3. Layout-Helfer
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}

.section {
  padding-block: 64px;
}

.section--tight {
  padding-block: 48px;
}

.section--surface {
  background: var(--surface);
}

.section--blau {
  background: var(--blau-dunkel);
  color: rgba(255, 255, 255, 0.88);
}

.section--blau h2,
.section--blau h3 {
  color: var(--white);
}

.section-head {
  max-width: 720px;
  margin-bottom: 40px;
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blau-text);
  margin-bottom: 12px;
}

.section--blau .eyebrow {
  color: var(--maya-hell);
}

.lead {
  font-size: 1.12rem;
  color: var(--ink-muted);
}

.section--blau .lead {
  color: rgba(255, 255, 255, 0.85);
}

.grid {
  display: grid;
  gap: 24px;
}

/* Kleine Abstandshelfer, damit im HTML keine Inline-Styles nötig sind */
.mt-s {
  margin-top: 8px;
}
.mt-m {
  margin-top: 22px;
}
.mt-l {
  margin-top: 28px;
}
.mt-xl {
  margin-top: 52px;
}

/* Einspaltiger Textblock. Begrenzt die Zeilenlänge, damit Fließtext auch
   ohne Bild daneben gut lesbar bleibt – über etwa 80 Zeichen pro Zeile
   verliert das Auge beim Zeilenwechsel den Anschluss. */
.text-column {
  max-width: 760px;
}

/* Hinweiszeile unter einem Knopf, z. B. "oder direkt anrufen" */
.card-note {
  margin: 16px 0 0;
  font-size: 0.9rem;
  text-align: center;
  color: var(--ink-muted);
}

@media (min-width: 700px) {
  .grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .section {
    padding-block: 88px;
  }
  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Vier Spalten erst ab 1160 px. Eine Karte kann nicht schmaler werden als ihr
   längstes Wort – "Treppenhausreinigung" braucht samt Innenabstand rund 264 px.
   Vier davon nebeneinander passen unterhalb dieser Breite nicht mehr hin und
   würden die Seite seitlich verschieben. Bis dahin stehen sie zu zweit. */
@media (min-width: 1160px) {
  .grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Karten dürfen im Raster schrumpfen, statt es aufzuweiten */
.card {
  min-width: 0;
}

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  font: inherit;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease,
    transform 0.15s ease, box-shadow 0.15s ease;
}

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

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

.btn--primary {
  background: var(--sand);
  border-color: var(--sand);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.btn--primary:hover {
  background: var(--sand-dark);
  border-color: var(--sand-dark);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.btn--secondary {
  background: var(--blau-dunkel);
  border-color: var(--blau-dunkel);
  color: var(--white);
}

.btn--secondary:hover {
  background: var(--blau-tief);
  border-color: var(--blau-tief);
  color: var(--white);
}

.btn--outline {
  background: transparent;
  border-color: var(--blau-dunkel);
  color: var(--blau-dunkel);
}

.btn--outline:hover {
  background: var(--blau-dunkel);
  color: var(--white);
}

.btn--ghost-light {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.btn--ghost-light:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--blau-dunkel);
}

.btn--whatsapp {
  background: #1c8a4e;
  border-color: #1c8a4e;
  color: var(--white);
}

.btn--whatsapp:hover {
  background: #156b3c;
  border-color: #156b3c;
  color: var(--white);
}

.btn--block {
  width: 100%;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* --------------------------------------------------------------------------
   5. Kopfbereich und Navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--header-height);
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  /* Mindestens 44 px hoch, damit das Logo auf dem Handy sicher zu treffen ist */
  min-height: 44px;
}

.logo img {
  height: 44px;
  width: auto;
}

@media (max-width: 420px) {
  .logo img {
    height: 38px;
  }
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 9px 12px;
  color: var(--blau-dunkel);
  font: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
}

.nav-toggle-bars {
  display: block;
  position: relative;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.nav-toggle-bars::before {
  top: -6px;
}
.nav-toggle-bars::after {
  top: 6px;
}

.site-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 12px 20px 20px;
}

.site-nav.is-open {
  display: block;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav li {
  margin: 0;
  border-bottom: 1px solid var(--border);
}

.site-nav a {
  display: block;
  padding: 13px 4px;
  color: var(--blau-dunkel);
  font-weight: 600;
  text-decoration: none;
}

.site-nav a[aria-current="page"] {
  color: var(--blau-text);
}

.header-cta {
  display: none;
}

@media (min-width: 940px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    display: block;
    position: static;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
    margin-left: auto;
  }

  .site-nav ul {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .site-nav li {
    border: 0;
  }

  .site-nav a {
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.97rem;
  }

  .site-nav a:hover {
    background: var(--surface);
  }

  .site-nav a[aria-current="page"] {
    background: var(--blau-zart);
  }

  .header-cta {
    display: inline-flex;
    flex-shrink: 0;
  }
}

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--blau-dunkel) 0%, var(--blau-tief) 60%, #072338 100%);
  color: rgba(255, 255, 255, 0.9);
  overflow: hidden;
  padding-block: 64px 88px;
}

/* Dezente Lichtreflexe – stehen für den "Glanz" im Namen */
.hero::before {
  content: "";
  position: absolute;
  top: -25%;
  right: -12%;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(115, 194, 251, 0.35) 0%, rgba(115, 194, 251, 0) 68%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -35%;
  left: -18%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(115, 194, 251, 0.2) 0%, rgba(115, 194, 251, 0) 70%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 720px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
}

/* Ortsname bekommt eine eigene Zeile. So bricht die Überschrift immer an
   derselben, sinnvollen Stelle statt mitten im Wort. */
.hero h1 .accent {
  color: #a8d8fd;
  display: block;
}

.hero-lead {
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 32px;
  max-width: 620px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
  border-radius: 999px;
  padding: 7px 16px 7px 12px;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-badge svg {
  flex-shrink: 0;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 36px 0 0;
  display: grid;
  gap: 12px;
}

.hero-points li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.98rem;
}

.hero-points svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: #a8d8fd;
}

@media (min-width: 700px) {
  .hero-points {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Seitenkopf für Unterseiten */
.page-hero {
  background: linear-gradient(160deg, var(--blau-dunkel) 0%, var(--blau-tief) 100%);
  color: rgba(255, 255, 255, 0.88);
  padding-block: 52px 56px;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 14px;
}

.page-hero p {
  max-width: 680px;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
}

.breadcrumb {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0 0 18px;
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.65);
}

.breadcrumb li {
  margin: 0;
}

.breadcrumb li + li::before {
  content: "›";
  margin-right: 8px;
  color: rgba(255, 255, 255, 0.45);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
}

.breadcrumb a:hover {
  color: var(--white);
}

/* --------------------------------------------------------------------------
   7. Vertrauensleiste
   -------------------------------------------------------------------------- */
.trustbar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding-block: 28px;
}

.trustbar-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}

/* Auf sehr schmalen Geräten (iPhone SE und ähnliche, 320 px) passen zwei
   Spalten nicht mehr: Ein Rasterfeld kann nicht schmaler werden als sein
   längstes Wort, und "Ansprechpartner" allein braucht rund 123 Pixel.
   Deshalb hier untereinander statt nebeneinander. */
@media (max-width: 400px) {
  .trustbar-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
}

.trust-item svg {
  flex-shrink: 0;
  color: var(--blau-text);
  margin-top: 2px;
}

.trust-item strong {
  display: block;
  font-size: 0.97rem;
  color: var(--blau-dunkel);
}

.trust-item span {
  font-size: 0.87rem;
  color: var(--ink-muted);
  line-height: 1.45;
}

@media (min-width: 900px) {
  .trustbar-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* --------------------------------------------------------------------------
   8. Karten
   -------------------------------------------------------------------------- */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.card h2,
.card h3 {
  margin-bottom: 10px;
}

/* In Kartenrastern steht die Überschrift oft als h2 in der Dokumentstruktur,
   soll optisch aber wie eine h3 wirken. */
.card h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.4rem);
}

.card p {
  color: var(--ink-muted);
  font-size: 0.97rem;
}

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

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--blau-zart);
  color: var(--blau-dunkel);
  margin-bottom: 18px;
}

.card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}

.card-list li {
  position: relative;
  padding-left: 24px;
  font-size: 0.94rem;
  color: var(--ink-muted);
  margin-bottom: 8px;
}

.card-list li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--maya);
}

.card-link {
  margin-top: auto;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  /* Vergrößert die Tippfläche auf dem Handy von 28 auf 44 Pixel Höhe.
     Der negative Abstand unten hält die Karte optisch unverändert. */
  padding-block: 8px;
  margin-bottom: -8px;
  align-self: flex-start;
}

.card-link::after {
  content: "→";
  transition: transform 0.15s ease;
}

.card-link:hover::after {
  transform: translateX(3px);
}

/* Kartenvariante auf farbigem Grund */
.card--auf-blau {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.card--auf-blau p {
  color: rgba(255, 255, 255, 0.82);
}

/* --------------------------------------------------------------------------
   9. Ablauf-Schritte
   -------------------------------------------------------------------------- */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 28px;
  counter-reset: step;
}

.steps li {
  position: relative;
  padding-left: 62px;
  margin: 0;
  counter-increment: step;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--blau-dunkel);
  color: var(--white);
  font-weight: 700;
  font-size: 1.15rem;
}

.steps h3 {
  margin-bottom: 6px;
  font-size: 1.15rem;
}

.steps p {
  color: var(--ink-muted);
  font-size: 0.97rem;
  margin-bottom: 0;
}

@media (min-width: 860px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
  }
}

/* --------------------------------------------------------------------------
   10. Merkmalsliste mit Häkchen
   -------------------------------------------------------------------------- */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin: 0;
}

.check-list svg {
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--blau-text);
}

.check-list strong {
  display: block;
  margin-bottom: 2px;
}

.check-list span {
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.section--blau .check-list svg {
  color: #a8d8fd;
}

.section--blau .check-list strong {
  color: var(--white);
}

.section--blau .check-list span {
  color: rgba(255, 255, 255, 0.82);
}

@media (min-width: 780px) {
  .check-list--2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 32px;
  }
}

/* --------------------------------------------------------------------------
   10b. Leistungsumfang und häufige Fragen
   -------------------------------------------------------------------------- */
.include-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px 32px;
}

.include-grid li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin: 0;
  font-size: 0.97rem;
}

.include-grid svg {
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--blau-text);
}

@media (min-width: 620px) {
  .include-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.faq {
  display: grid;
  gap: 26px;
  max-width: 800px;
}

.faq-item {
  border-left: 3px solid var(--maya);
  padding-left: 20px;
}

.faq-item h3 {
  font-size: 1.08rem;
  margin-bottom: 6px;
}

.faq-item p:last-child {
  margin-bottom: 0;
}

.faq-item p {
  color: var(--ink-muted);
  font-size: 0.97rem;
}

/* Angebotskarte, die beim Scrollen mitläuft */
@media (min-width: 900px) {
  .card--sticky {
    position: sticky;
    top: calc(var(--header-height) + 24px);
  }
}

/* --------------------------------------------------------------------------
   11. Einsatzgebiet
   -------------------------------------------------------------------------- */
.area-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
}

.area-tags li {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--blau-dunkel);
}

/* --------------------------------------------------------------------------
   12. Abschluss-Aufruf
   -------------------------------------------------------------------------- */
.cta-panel {
  background: linear-gradient(140deg, var(--blau-dunkel) 0%, var(--blau-tief) 100%);
  border-radius: var(--radius-lg);
  padding: 44px 32px;
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
}

.cta-panel h2 {
  color: var(--white);
}

.cta-panel p {
  max-width: 560px;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
}

.cta-panel .btn-row {
  justify-content: center;
}

@media (min-width: 800px) {
  .cta-panel {
    padding: 60px 48px;
  }
}

/* --------------------------------------------------------------------------
   13. Formular
   -------------------------------------------------------------------------- */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: var(--shadow);
}

@media (min-width: 700px) {
  .form-card {
    padding: 40px;
  }
}

.form-grid {
  display: grid;
  gap: 18px;
}

@media (min-width: 640px) {
  .form-grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.field label,
.fieldset-legend {
  display: block;
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--blau-dunkel);
  margin-bottom: 6px;
}

.hint {
  display: block;
  font-weight: 400;
  font-size: 0.84rem;
  color: var(--ink-soft);
  margin-top: 4px;
}

/* Feldgruppe ohne den Standardrahmen des Browsers */
.fieldset-reset {
  border: 0;
  padding: 0;
  margin: 28px 0 0;
  min-width: 0;
}

.req {
  color: #b3261e;
}

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="date"],
.field input[type="number"],
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

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

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' fill='none' stroke='%2352616e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--maya);
  box-shadow: 0 0 0 3px rgba(115, 194, 251, 0.18);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: #b3261e;
}

.field-error {
  display: none;
  color: #b3261e;
  font-size: 0.86rem;
  font-weight: 600;
  margin-top: 6px;
}

.field-error.is-visible {
  display: block;
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.checkbox-field input[type="checkbox"] {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: var(--blau-text);
}

.checkbox-field label {
  font-weight: 400;
  font-size: 0.92rem;
  color: var(--ink-muted);
  margin: 0;
}

/* Honigtopf gegen Spam-Bots – für Menschen unsichtbar */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  display: none;
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 0.95rem;
}

.form-status.is-visible {
  display: block;
}

.form-status--success {
  background: #e7f5ec;
  border: 1px solid #b6e0c4;
  color: #14602f;
}

.form-status--error {
  background: #fdecea;
  border: 1px solid #f5c2bd;
  color: #8c1d18;
}

/* --------------------------------------------------------------------------
   14. Kontaktinformationen
   -------------------------------------------------------------------------- */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-list svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--blau-text);
}

.contact-list strong {
  display: block;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  font-weight: 700;
  margin-bottom: 1px;
}

.contact-list a,
.contact-list span {
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 600;
  text-decoration: none;
}

.contact-list a:hover {
  color: var(--blau-text);
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   15. Textseiten (Impressum, Datenschutz)
   -------------------------------------------------------------------------- */
.prose {
  max-width: 760px;
}

.prose h2 {
  font-size: 1.5rem;
  margin-top: 2em;
}

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

.prose h3 {
  font-size: 1.13rem;
  margin-top: 1.6em;
}

.prose li {
  color: var(--ink);
}

.placeholder {
  background: #fff4d6;
  border-bottom: 2px solid var(--sand);
  padding: 1px 5px;
  border-radius: 3px;
  font-weight: 600;
  color: #6b4a00;
}

.notice {
  background: var(--blau-zart);
  border-left: 4px solid var(--maya);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 18px 20px;
  margin-bottom: 28px;
}

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

.notice--warn {
  background: #fff4d6;
  border-left-color: var(--sand);
}

/* --------------------------------------------------------------------------
   16. Fußbereich
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--blau-tief);
  color: rgba(255, 255, 255, 0.75);
  padding-block: 52px 28px;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  gap: 34px;
}

@media (min-width: 760px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px;
  }
}

.site-footer h3 {
  color: var(--white);
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--white);
  text-decoration: underline;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li {
  margin-bottom: 9px;
}

.footer-logo img {
  height: 46px;
  width: auto;
  margin-bottom: 16px;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 330px;
  font-size: 0.93rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 40px;
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: space-between;
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Auf dem Handy werden die Links im Fußbereich mit dem Daumen bedient.
   Reiner Text ist dort nur rund 20 Pixel hoch – zu wenig, um ihn sicher zu
   treffen. Zusätzlicher Innenabstand macht daraus eine 40-Pixel-Fläche,
   ohne dass sich optisch etwas ändert. */
@media (max-width: 759px) {
  .site-footer li {
    margin-bottom: 0;
  }

  .site-footer li a,
  .footer-bottom a {
    display: inline-block;
    padding-block: 10px;
  }

  /* Gleiches Prinzip für weitere kleine Links, die mit dem Daumen bedient
     werden: Brotkrumenpfad und die Telefonnummern in den Karten. */
  .breadcrumb a {
    display: inline-block;
    padding-block: 5px;
  }

  .card-note a,
  .contact-list a {
    display: inline-block;
    padding-block: 6px;
  }
}

/* --------------------------------------------------------------------------
   17. Platzhalter für spätere eigene Fotos
   -------------------------------------------------------------------------- */
.photo-placeholder {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 260px;
  padding: 28px;
  text-align: center;
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.photo-placeholder svg {
  color: var(--ink-soft);
  opacity: 0.55;
}

.photo-placeholder strong {
  color: var(--ink-muted);
  font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   18. Zweispaltiges Text-/Bild-Layout
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  gap: 32px;
  align-items: center;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }

  .split--wide-text {
    grid-template-columns: 1.25fr 1fr;
  }

  .split--sidebar {
    grid-template-columns: 1.5fr 1fr;
    align-items: start;
  }
}

/* --------------------------------------------------------------------------
   19. Bewegung reduzieren
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* --------------------------------------------------------------------------
   20. Druckansicht
   -------------------------------------------------------------------------- */
@media print {
  .site-header,
  .site-footer,
  .cta-panel,
  .btn {
    display: none !important;
  }

  body {
    font-size: 12pt;
  }
}
