/* ==========================================================================
   Pferdetextilservice GmbH – www.pferdetextilservice.de
   Statisches Stylesheet · mobile-first · keine externen Abhängigkeiten
   Markenfarben aus dem Logo: Navy #103B5D · Braun #604937 · Eisblau #CBE9F7
   ========================================================================== */

/* ---------- Schrift (selbst gehostet, DSGVO-konform) ---------- */
@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("../fonts/fraunces-var.woff2") format("woff2");
}

/* ---------- Design-Token ---------- */
:root {
  --navy: #103B5D;
  --navy-deep: #0A2A45;
  --navy-soft: #2C5A85;
  --ice: #E9F3FA;
  --ice-strong: #CBE9F7;
  --brown: #604937;
  --paper: #F7FBFD;
  --white: #FFFFFF;
  --ink: #1F2E3C;
  --ink-soft: #4A5B6B;
  --line: #D7E5F0;
  --ok: #1E7A46;
  --err: #B3261E;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
               "Helvetica Neue", Arial, sans-serif;

  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 2px 10px rgba(16, 59, 93, 0.10);
  --shadow-lg: 0 8px 28px rgba(16, 59, 93, 0.16);
  --maxw: 1100px;
  --pad: 1.125rem;
}

/* ---------- Basis ---------- */
*, *::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 { transition: none !important; animation: none !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.18;
  color: var(--navy);
  margin: 0 0 0.6em;
  text-wrap: balance;
}
h1 { font-size: clamp(1.9rem, 5.5vw, 3rem); font-variation-settings: "opsz" 60; }
h2 { font-size: clamp(1.5rem, 4vw, 2.1rem); font-variation-settings: "opsz" 40; }
h3 { font-size: 1.18rem; font-family: var(--font-body); font-weight: 700; }

p { margin: 0 0 1em; }
a { color: var(--navy); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--navy-soft); }

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

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 0.6rem 1rem;
  z-index: 100;
  border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }

/* ---------- Eyebrow / Abschnittslabel ---------- */
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 0.5rem;
}

/* ---------- Header & Navigation (ohne JavaScript nutzbar) ---------- */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  min-width: 0;
}
.brand img { width: 44px; height: 44px; flex: 0 0 auto; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.12rem;
  color: var(--navy);
  line-height: 1.1;
  white-space: nowrap;
}
.brand-claim {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.72rem;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
}
.site-nav a {
  display: block;
  padding: 0.55rem 0.85rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--navy);
  border-radius: 8px;
}
.site-nav a:hover { background: var(--ice); }
.site-nav a[aria-current="page"] {
  background: var(--ice);
  box-shadow: inset 0 -2px 0 var(--navy);
  border-radius: 8px 8px 0 0;
}

/* Mobile: Navigation als schlanke Leiste unter dem Markenkopf –
   immer sichtbar, kein Menü-Button nötig */
@media (max-width: 720px) {
  .header-inner { flex-wrap: wrap; padding-bottom: 0; }
  .brand { padding-bottom: 0.45rem; }
  .site-nav {
    flex: 1 0 100%;
    margin: 0 calc(-1 * var(--pad));
    border-top: 1px solid var(--line);
    background: var(--white);
  }
  .site-nav ul {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 0.5rem;
  }
  .site-nav a { padding: 0.7rem 0.8rem; white-space: nowrap; }
  .brand-claim { display: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-weight: 700;
  font-size: 1.02rem;
  text-decoration: none;
  text-align: center;
  border-radius: var(--radius);
  padding: 0.85rem 1.5rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, transform 0.1s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-deep); color: #fff; }
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-ghost:hover { background: var(--ice); }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { background: var(--ice-strong); }
.btn-block { display: block; width: 100%; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: #fff;
  background:
    linear-gradient(165deg, rgba(10, 42, 69, 0.88) 0%, rgba(16, 59, 93, 0.72) 55%, rgba(16, 59, 93, 0.55) 100%),
    url("../img/hero-mobile.jpg") center / cover no-repeat;
  background-color: var(--navy);
}
@media (min-width: 700px) {
  .hero {
    background-image:
      linear-gradient(165deg, rgba(10, 42, 69, 0.88) 0%, rgba(16, 59, 93, 0.70) 55%, rgba(16, 59, 93, 0.50) 100%),
      url("../img/hero.jpg");
  }
}
.hero-inner {
  padding-top: clamp(2.6rem, 8vw, 5rem);
  padding-bottom: clamp(2.6rem, 8vw, 5rem);
  max-width: 760px;
}
.hero .badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  margin-bottom: 1.1rem;
}
.hero h1 { color: #fff; margin-bottom: 0.45em; }
.hero .sub {
  font-size: clamp(1.05rem, 2.6vw, 1.25rem);
  color: var(--ice-strong);
  max-width: 38em;
}
.hero-checks {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.3rem;
  padding: 0;
  margin: 1.2rem 0 1.6rem;
  font-weight: 600;
}
.hero-checks li::before {
  content: "✓";
  display: inline-block;
  margin-right: 0.45rem;
  color: var(--ice-strong);
  font-weight: 700;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.hero-trust {
  margin-top: 1.5rem;
  font-size: 0.92rem;
  color: var(--ice-strong);
}
.hero-trust .stars { color: #FFC93C; letter-spacing: 0.1em; }
.hero-trust a { color: #fff; }

/* ---------- Abschnitte ---------- */
.section { padding: clamp(2.6rem, 7vw, 4.5rem) 0; }
.section-alt { background: var(--ice); }
.section-head { max-width: 640px; margin-bottom: 2rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Leistungs-Karten ---------- */
.cards {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .cards { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.3rem;
  box-shadow: var(--shadow);
}
.card .icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--ice);
  color: var(--navy);
  display: grid;
  place-items: center;
  margin-bottom: 0.9rem;
}
.card .icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 0.4em; }
.card p { margin: 0; color: var(--ink-soft); font-size: 0.98rem; }

/* ---------- Signatur-Element: Ablauf als Sendungsverfolgung ----------
   Der 5-Schritte-Ablauf ist wie eine DHL-Sendungsverfolgung gestaltet –
   die Tracking-Metapher kennt jede Kundin aus dem Alltag. */
.tracking { max-width: 720px; }
.tracking ol {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
.tracking ol::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 14px;
  bottom: 14px;
  width: 3px;
  background: linear-gradient(var(--ice-strong), var(--navy-soft));
  border-radius: 2px;
}
.tracking li {
  position: relative;
  padding: 0 0 1.8rem 3.1rem;
}
.tracking li:last-child { padding-bottom: 0; }
.tracking .dot {
  position: absolute;
  left: 0;
  top: 0;
  width: 37px;
  height: 37px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--navy);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  display: grid;
  place-items: center;
}
.tracking li:last-child .dot {
  background: var(--navy);
  color: #fff;
}
.tracking h3 { margin-bottom: 0.25em; }
.tracking p { color: var(--ink-soft); margin-bottom: 0.4em; }
.tracking .meta {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--ice);
  border-radius: 6px;
  padding: 0.15rem 0.55rem;
}

/* ---------- Preistabellen ---------- */
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.price-table caption {
  caption-side: top;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--navy);
  padding: 0 0 0.7rem 0.2rem;
}
.price-table th,
.price-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.price-table tbody tr:last-child th,
.price-table tbody tr:last-child td { border-bottom: none; }
.price-table thead th {
  background: var(--navy);
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.price-table .price {
  text-align: right;
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--navy);
}
.price-table .indent { padding-left: 2rem; color: var(--ink-soft); }
.price-table tbody th[scope="row"] { font-weight: 500; }
.table-note {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-top: 0.8rem;
}

/* ---------- FAQ (native details/summary – funktioniert ohne JS) ---------- */
.faq { max-width: 760px; }
.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 0.7rem;
  box-shadow: var(--shadow);
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 2.6rem 1rem 1.1rem;
  font-weight: 700;
  color: var(--navy);
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--brown);
}
.faq details[open] summary::after { content: "–"; }
.faq .faq-body { padding: 0 1.1rem 1.1rem; color: var(--ink-soft); }
.faq .faq-body p:last-child { margin-bottom: 0; }

/* ---------- Google-Rezensionen (Kundenstimmen) ---------- */
.reviews {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  margin: 1.8rem 0 1.4rem;
  text-align: left;
}
@media (min-width: 700px) {
  .reviews { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}
.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.2rem 1rem;
  box-shadow: var(--shadow);
  margin: 0;
  display: flex;
  flex-direction: column;
}
.review-stars {
  color: #FFC93C;
  letter-spacing: 0.1em;
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
}
.review-card blockquote {
  margin: 0 0 0.8rem;
  flex: 1 1 auto;
  font-size: 0.98rem;
  /* sehr lange Rezensionen nach 8 Zeilen kappen */
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-card figcaption {
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.review-quelle {
  grid-column: 1 / -1;
  margin: 0;
  text-align: center;
}

/* ---------- CTA-Banner ---------- */
.cta-banner {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 4.5vw, 2.6rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  box-shadow: var(--shadow-lg);
}
.cta-banner h2 { color: #fff; margin: 0 0 0.2em; }
.cta-banner p { margin: 0; color: var(--ice-strong); }

/* ---------- Formular ---------- */
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1.3rem;
  margin-bottom: 1.3rem;
}
.form-card > h2 {
  font-size: 1.25rem;
  padding-bottom: 0.7rem;
  border-bottom: 2px solid var(--ice-strong);
  margin-bottom: 1.1rem;
}
.field { margin-bottom: 1rem; }
.field label {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}
.req { color: var(--err); }
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 8px;
  padding: 0.7rem 0.85rem;
  min-height: 48px;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--navy-soft);
  box-shadow: 0 0 0 3px rgba(44, 90, 133, 0.18);
}
.field-row { display: grid; gap: 0 1rem; grid-template-columns: 1fr; }
@media (min-width: 560px) {
  .field-row-2 { grid-template-columns: 1fr 1fr; }
  .field-row-plz { grid-template-columns: 130px 1fr; }
}
.hint { font-size: 0.88rem; color: var(--ink-soft); margin-top: 0.25rem; }

/* Mengen-Zeilen mit +/- Steppern */
.qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
}
.qty-row:last-of-type { border-bottom: none; }
.qty-label { flex: 1 1 auto; }
.qty-label .qty-price {
  display: block;
  font-size: 0.86rem;
  color: var(--ink-soft);
}
.qty-control { display: flex; align-items: center; gap: 0; flex: 0 0 auto; }
.qty-control button {
  width: 44px;
  height: 44px;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 600;
  color: var(--navy);
  background: var(--ice);
  border: 1.5px solid var(--line);
  cursor: pointer;
}
.qty-control button:hover { background: var(--ice-strong); }
.qty-control button:first-child { border-radius: 8px 0 0 8px; }
.qty-control button:last-child { border-radius: 0 8px 8px 0; }
.qty-control input {
  width: 56px;
  height: 44px;
  text-align: center;
  font: inherit;
  font-weight: 700;
  border: 1.5px solid var(--line);
  border-left: none;
  border-right: none;
  background: var(--white);
  color: var(--ink);
  -moz-appearance: textfield;
  appearance: textfield;
}
.qty-control input::-webkit-outer-spin-button,
.qty-control input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* Radios */
.radio-group { display: grid; gap: 0.5rem; }
.radio-option {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 8px;
  padding: 0.75rem 0.85rem;
  cursor: pointer;
}
.radio-option:has(input:checked) {
  border-color: var(--navy);
  background: var(--ice);
}
.radio-option input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--navy); }

.checkbox-line {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.95rem;
}
.checkbox-line input { width: 20px; height: 20px; margin-top: 2px; flex: 0 0 auto; accent-color: var(--navy); }

/* Voraussichtlicher Preis (Live-Berechnung) */
.estimate {
  background: var(--ice);
  border: 1.5px solid var(--ice-strong);
  border-radius: var(--radius);
  padding: 0.9rem 1.1rem;
  margin-bottom: 1rem;
}
.estimate-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.15rem 0;
}
.estimate-row.estimate-total {
  border-top: 1.5px solid var(--ice-strong);
  margin-top: 0.4rem;
  padding-top: 0.55rem;
  font-weight: 700;
}
.estimate strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--navy);
  white-space: nowrap;
}
.estimate .hint { margin: 0.45rem 0 0; }

.form-banner {
  border-radius: var(--radius);
  padding: 0.9rem 1.1rem;
  margin-bottom: 1.2rem;
  font-weight: 600;
}
.form-banner.error { background: #FBE9E7; border: 1.5px solid var(--err); color: var(--err); }
.form-banner.hidden { display: none; }

/* ---------- Anfahrt / Karte (Zwei-Klick-Lösung) ---------- */
.map-consent {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(16, 59, 93, 0.55), rgba(16, 59, 93, 0.55)),
    var(--ice-strong);
  min-height: 320px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1.5rem;
  color: #fff;
}
.map-consent p { max-width: 34em; }
.map-frame { border: 0; width: 100%; height: 420px; border-radius: var(--radius-lg); }

.info-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; margin: 1.5rem 0; }
@media (min-width: 700px) { .info-grid { grid-template-columns: 1fr 1fr; } }
.info-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.3rem;
  box-shadow: var(--shadow);
}
.info-box h2 { font-size: 1.2rem; }
.info-box address { font-style: normal; line-height: 1.7; }
.hours { width: 100%; border-collapse: collapse; }
.hours td { padding: 0.3rem 0; }
.hours td:last-child { text-align: right; font-weight: 600; color: var(--navy); }

/* ---------- Rechtstexte ---------- */
.legal { max-width: 760px; }
.legal h2 { font-size: 1.3rem; margin-top: 2rem; }
.legal h3 { margin-top: 1.4rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: var(--ice-strong);
  margin-top: 3rem;
  padding: 2.4rem 0 1.6rem;
  font-size: 0.95rem;
}
.footer-grid {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: 1fr;
  margin-bottom: 1.8rem;
}
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; } }
.site-footer h2 {
  color: #fff;
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}
.site-footer a { color: #fff; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 0.4rem; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
  font-size: 0.88rem;
}

/* Widerrufsbutton (gesetzliche Pflicht seit 19.06.2026):
   gut sichtbar und auf jeder Seite erreichbar */
.footer-widerruf {
  display: inline-block;
  margin-top: 0.4rem;
  padding: 0.4rem 0.9rem;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
}
.footer-widerruf:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

/* ---------- Sticky-CTA auf Mobilgeräten ---------- */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  padding: 0.6rem var(--pad) calc(0.6rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(6px);
}
.sticky-cta .btn { width: 100%; }
@media (min-width: 721px) { .sticky-cta { display: none; } }
@media (max-width: 720px) { body.has-sticky-cta { padding-bottom: calc(5rem + env(safe-area-inset-bottom)); } }

/* ---------- Hilfsklassen ---------- */
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 2rem; }
.center { text-align: center; }
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}

/* ---------- Druck ---------- */
@media print {
  .site-header, .site-footer, .sticky-cta, .hero-actions, .cta-banner { display: none; }
  body { background: #fff; color: #000; }
  a { text-decoration: none; color: #000; }
}
