/* ===========================================
   Geflügelhof Reinkemeier — Re-Build 2026
   Manrope + Brand-Rot #D92431
   =========================================== */

:root {
  --rot: #D92431;
  --rot-dark: #A4232B;
  --rot-glow: rgba(217, 36, 49, 0.1);
  --ink: #232021;
  --text: #3a3833;
  --muted: #6b6b6b;
  --border: rgba(35, 32, 33, 0.1);
  --bg-grau: #FAF8F4;
  --bg-rot-soft: #FBF6F3;
  --container-max: 1240px;
  --header-h: 76px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 90px; }
section[id] { scroll-margin-top: 90px; }
body {
  margin: 0;
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }

a { color: var(--rot); text-decoration: none; }
a:hover { color: var(--rot-dark); }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--rot); color: #fff; padding: 12px 18px;
  z-index: 9999;
}
.skip-link:focus { left: 0; }

/* ===========================================
   HEADER
   =========================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; min-height: var(--header-h); padding-top: 12px; padding-bottom: 12px;
}
.header__nav { margin-left: auto; }

/* Burger (Mobile) */
.header__burger {
  display: none;
  background: none; border: none; padding: 8px;
  cursor: pointer; margin-left: auto;
  width: 44px; height: 44px;
  flex-direction: column; justify-content: center; gap: 5px;
}
.header__burger span {
  display: block; width: 26px; height: 2.5px;
  background: var(--ink); border-radius: 2px;
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
body.nav-open .header__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .header__burger span:nth-child(2) { opacity: 0; }
body.nav-open .header__burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-nav {
  display: flex; flex-direction: column;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 12px 0;
  position: absolute; left: 0; right: 0; top: 100%;
  box-shadow: 0 16px 32px rgba(0,0,0,0.1);
}
.mobile-nav[hidden] { display: none; }
.mobile-nav a {
  padding: 14px clamp(20px, 5vw, 60px);
  color: var(--ink); font-weight: 600; font-size: 1.05rem;
  border-bottom: 1px solid rgba(35,32,33,0.06);
  text-decoration: none;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover, .mobile-nav a[aria-current] { color: var(--rot); background: var(--bg-grau); }
.header__logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--ink);
}
.header__logo img {
  height: 62px; width: auto;
}
.header__logo-text {
  font-size: 1.22rem; font-weight: 500; line-height: 1.15;
  display: flex; flex-direction: column;
}
.header__logo-text strong { font-weight: 800; color: var(--rot); }
.header__nav {
  display: flex; gap: 28px;
}
.header__nav a {
  color: var(--ink); font-weight: 500; font-size: 0.95rem;
  position: relative; padding: 6px 0;
}
.header__nav a:hover { color: var(--rot); }
.header__nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--rot); transition: width .25s var(--ease);
}
.header__nav a:hover::after { width: 100%; }
.header__tel {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--rot); color: #fff; padding: 10px 18px;
  border-radius: 999px; font-weight: 700; font-size: 0.95rem;
  transition: background .2s var(--ease);
}
.header__tel:hover { background: var(--rot-dark); color: #fff; }
.header__tel svg { width: 18px; height: 18px; }

/* Header-Dropdown (Wissen) */
.header__dropdown { position: relative; }
.header__dropdown-toggle {
  background: none; border: 0; padding: 6px 0; cursor: pointer;
  color: var(--ink); font-weight: 500; font-size: 0.95rem;
  font-family: inherit; display: inline-flex; align-items: center; gap: 4px;
}
.header__dropdown-toggle:hover { color: var(--rot); }
.header__dropdown-menu {
  position: absolute; top: 100%; right: 0; min-width: 240px;
  background: #fff; border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px; padding: 8px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  display: none; flex-direction: column; gap: 2px;
  z-index: 100;
  margin-top: 8px;
}
/* unsichtbare Bruecke fuer Hover-Uebergang Toggle->Menu */
.header__dropdown-menu::before {
  content: ""; position: absolute;
  left: 0; right: 0; top: -10px; height: 10px;
  background: transparent;
}
.header__dropdown.is-open .header__dropdown-menu,
.header__dropdown:hover .header__dropdown-menu,
.header__dropdown:focus-within .header__dropdown-menu { display: flex; }
.header__dropdown-menu a {
  padding: 10px 12px; border-radius: 8px;
  color: var(--ink); font-size: 0.9rem; font-weight: 500;
  text-decoration: none; transition: background .15s, color .15s;
}
.header__dropdown-menu a::after { display: none; }
.header__dropdown-menu a:hover { background: var(--bg-grau); color: var(--rot); }

/* Mobile-Nav: Wissen-Gruppe (collapsible) */
.mobile-nav__group {
  display: flex; flex-direction: column;
  border-top: 1px solid rgba(35,32,33,0.06);
}
.mobile-nav__group-toggle {
  background: none; border: 0; cursor: pointer;
  padding: 14px clamp(20px, 5vw, 60px);
  color: var(--ink); font-family: inherit; font-size: 1.05rem; font-weight: 600;
  text-align: left; display: flex; align-items: center; justify-content: space-between;
  width: 100%;
  border-bottom: 1px solid rgba(35,32,33,0.06);
}
.mobile-nav__group-toggle[aria-expanded="true"] span { transform: rotate(180deg); }
.mobile-nav__group-toggle span { transition: transform .2s; display: inline-block; }
.mobile-nav__group-list { display: flex; flex-direction: column; padding-bottom: 4px; }
.mobile-nav__group-list[hidden] { display: none; }
.mobile-nav__group-list a { padding-left: calc(clamp(20px, 5vw, 60px) + 18px) !important; font-size: 0.95rem; font-weight: 500; }
@media (max-width: 880px) {
  .header__nav { display: none; }
  .header__burger { display: flex; }
  .header__logo-text { font-size: 0.92rem; }
  .site-header { position: relative; }
}

/* ===========================================
   HERO 2026 — neuer Hero mit Grid (Text links, Bild rechts)
   =========================================== */
.h2026 {
  position: relative;
  min-height: clamp(780px, 92vh, 1060px);
  background: #161616;
  color: #fff;
  overflow: hidden;
  padding: 110px 0 270px;
  display: flex;
  align-items: flex-end;
}
.h2026__container {
  position: relative; z-index: 3;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}
.h2026__text {
  display: flex; flex-direction: column; align-items: flex-start;
  max-width: 760px;
  margin-left: 0;
}
.h2026__kicker {
  display: inline-block;
  background: var(--rot, #D92431); color: #fff;
  padding: 6px 14px; border-radius: 999px;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.04em; margin-bottom: 16px;
}
.h2026__h1 {
  font-size: clamp(1.7rem, 2.5vw, 2.6rem);
  font-weight: 800; line-height: 1.2;
  margin: 0 0 22px; color: #fff;
  letter-spacing: -0.015em;
  max-width: 760px;
}
/* Manuelle Zeilenumbrueche raus — Browser bricht natural in Container-Breite um */
.h2026__h1 .brk { display: none; }
.h2026__h1 em {
  font-style: normal;
  color: var(--rot, #D92431);
}
.h2026__sub--small em { font-style: italic; color: rgba(255,255,255,0.85); }
.h2026__sub {
  font-size: clamp(1.05rem, 1.25vw, 1.2rem); line-height: 1.5;
  margin: 0 0 8px;
  color: rgba(255,255,255,0.92);
  max-width: 640px;
}
.h2026__sub--small {
  margin: 0 0 22px;
  font-size: clamp(0.98rem, 1.1vw, 1.1rem);
  color: rgba(255,255,255,0.82);
}
.h2026__sub strong { font-weight: 700; color: #fff; }
.h2026__actions {
  display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 18px;
}
.h2026__actions .btn { padding: 11px 20px; font-size: 0.92rem; }

/* Full-bleed Hero-Bild: voll auf das Bild gestreckt, leichter Schader nur links */
.h2026__media {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  background: #161616;
}
.h2026__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  /* Bild zeigt oberen Rand (Koepfe ganz drin), Personen rechts */
  object-position: 75% top;
  display: block;
}
.h2026__media::before {
  content: ''; position: absolute; inset: 0; z-index: 2;
  /* Schader links staerker fuer klare Schrift */
  background: linear-gradient(to right,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.72) 18%,
    rgba(0,0,0,0.5) 35%,
    rgba(0,0,0,0.25) 50%,
    rgba(0,0,0,0.05) 65%,
    rgba(0,0,0,0) 78%);
  pointer-events: none;
}
.h2026__media::after {
  content: ''; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to bottom,
    rgba(0,0,0,0.18) 0%,
    rgba(0,0,0,0) 28%,
    rgba(0,0,0,0) 72%,
    rgba(0,0,0,0.28) 100%);
  pointer-events: none;
}
/* Mobile: Hero bleibt full-bleed, Bild als BG, Overlay etwas staerker fuer Lesbarkeit */
@media (max-width: 900px) {
  .h2026 {
    min-height: clamp(560px, 82vh, 720px);
    padding: 90px 0 130px;
  }
  /* Mobile-Schriften: alles deutlich kleiner */
  .warum__text h3 { font-size: 1rem !important; margin-bottom: 10px; line-height: 1.25; }
  /* Mobile: 3. Karte Strich noch näher ran, sonst läuft er in "Familienbetrieb" */
  .warum-wrap .warum:nth-of-type(3) .warum__text h3 em { text-underline-offset: 1px; }
  .warum__intro { font-size: 0.85rem; margin-bottom: 4px; }
  .warum__sub { font-size: 0.85rem; line-height: 1.5; margin-bottom: 12px; }
  .warum__list li { font-size: 0.8rem; line-height: 1.5; padding: 4px 0 4px 30px; }
  .warum__list li strong, .warum__list li span { font-size: inherit; line-height: inherit; }
  .warum__list li::before { width: 18px; height: 18px; left: 0; top: 5px; background-size: 11px; }
  .warum__pill { font-size: 0.65rem; padding: 4px 10px; margin-bottom: 10px; }
  .gesch__lead { font-size: 0.7rem; line-height: 1.55; font-weight: 500; }
  .gesch__erzaehl p + p { font-size: 0.68rem; line-height: 1.55; margin-top: 8px; font-weight: 400; }
  .gesch__lead strong, .gesch__erzaehl p + p strong { font-weight: 600; }
  .anfahrt__info h3 { font-size: 1rem; }
  .anfahrt__info p { font-size: 0.85rem; line-height: 1.5; }
  .anfahrt__adresse { font-size: 0.85rem; }
  .kontakt__row { font-size: 0.85rem; grid-template-columns: 80px 1fr; gap: 10px; padding-bottom: 10px; }
  .kontakt__label { font-size: 0.68rem; }
  .kontakt__value { font-size: 0.85rem; }
  .kontakt__zeiten li { font-size: 0.82rem; padding: 5px 0; }
  .kontakt__zeiten-title { font-size: 0.95rem; }
  .lstn-card p { font-size: 0.85rem !important; line-height: 1.5; }
  .lstn-card h3 { font-size: 1rem !important; padding-left: 0; gap: 8px; }
  .lstn-card__icon { font-size: 1.1rem; width: auto; height: auto; border-radius: 0; }
  .lstn-card__bullets li { font-size: 0.82rem; line-height: 1.5; }
}
@media (max-width: 900px) {
  .h2026__media img {
    /* Mobile: beide Personen sichtbar (links genug Bild zeigen + oben Koepfe) */
    object-position: 42% 32%;
  }
  .h2026__media::before {
    background: linear-gradient(to bottom,
      rgba(0,0,0,0.55) 0%,
      rgba(0,0,0,0.35) 35%,
      rgba(0,0,0,0.45) 70%,
      rgba(0,0,0,0.75) 100%);
  }
  .h2026__media::after { display: none; }
  .h2026__container { padding: 0 20px; }
  .h2026__text { max-width: 100%; }
  .h2026__h1 {
    font-size: clamp(1.45rem, 5.6vw, 1.95rem);
    margin-bottom: 14px;
    max-width: 100%;
  }
  .h2026__sub { font-size: 0.98rem; max-width: 100%; line-height: 1.5; margin-bottom: 6px; }
  .h2026__sub--small { font-size: 0.9rem; margin-bottom: 18px; }
  .minimal-hero-widget { margin-top: 8px; }
  .minimal-hero-widget .widget-text { font-size: 13px; }
  .minimal-hero-widget .widget-stars { font-size: 14px; }
  .minimal-hero-widget .widget-icon { width: 16px; height: 16px; }
  /* Bewertungen-Pattern auf Mobile weniger Overflow */
  .bw__bg img { bottom: -12px; height: calc(100% + 12px); opacity: 0.4; }
}

.section .lead strong { font-weight: 800; color: var(--ink); }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px;
  font-weight: 700; font-size: 1rem;
  text-decoration: none; cursor: pointer;
  border: 2px solid transparent;
  transition: transform .2s var(--ease), background .2s var(--ease);
}
.btn svg { width: 20px; height: 20px; }
.btn--primary {
  background: var(--rot); color: #fff;
  box-shadow: 0 8px 24px rgba(217, 36, 49, 0.4);
}
.btn--primary:hover { background: var(--rot-dark); color: #fff; transform: translateY(-2px); }
.btn--ghost {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.4);
  backdrop-filter: blur(10px);
}
.btn--ghost:hover { background: rgba(255,255,255,0.22); color: #fff; transform: translateY(-2px); }
/* ===========================================
   BEWERTUNGEN-Header: Headline links + Widget rechts
   =========================================== */
.bw-head {
  display: grid; grid-template-columns: 1fr auto;
  gap: clamp(24px, 4vw, 48px); align-items: center;
  margin-bottom: clamp(40px, 5vw, 56px);
}
.bw-head__text { text-align: left; }
.bw-head__text .kicker { display: block; margin-bottom: 10px; }
.bw-head__text h2 {
  margin: 0; max-width: none;
  font-size: clamp(1.45rem, 3.5vw, 2.8rem);
}
.bw-head__text h2::after { display: none; }
.testimonials--mt { margin-top: 0; }
@media (max-width: 760px) {
  .bw-head { grid-template-columns: 1fr; text-align: center; }
  .bw-head__text { text-align: center; }
  .google-widget--bw { justify-self: center; }
}

/* ===========================================
   GOOGLE-WIDGET (echtes G-Logo + Sterne)
   =========================================== */
.google-widget {
  display: inline-flex; align-items: center; gap: 16px;
  background: #fff; padding: 14px 22px;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  text-decoration: none;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.google-widget--hero { margin-top: 24px; }
.google-widget:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.12);
}
.google-widget--hero {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
}
/* Inline-Variante: KEIN Container, KEIN BG, KEIN Border, KEIN Backdrop */
.google-widget--inline,
.google-widget--inline.google-widget--hero {
  background: none !important;
  background-color: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  gap: 10px;
  margin-top: 12px;
}
.google-widget--inline:hover {
  transform: none;
  box-shadow: none;
}
.google-widget--inline .google-widget__title {
  color: rgba(255,255,255,0.6); font-size: 0.7rem;
}
.google-widget--inline .google-widget__rating { color: #fff; font-size: 1rem; }
.google-widget--inline .google-widget__count { color: rgba(255,255,255,0.78); font-size: 0.82rem; }
.google-widget--inline .google-widget__logo svg { width: 24px; height: 24px; }
.google-widget--inline .google-widget__body { gap: 0; }
.google-widget--inline .google-widget__line { margin-top: 4px; gap: 6px; }
.google-widget--inline .google-widget__stars svg { width: 13px; height: 13px; }
.google-widget__logo svg {
  width: 38px; height: 38px; display: block;
}
.google-widget__body {
  display: flex; flex-direction: column; gap: 2px; line-height: 1.2;
}
.google-widget__title {
  font-size: 0.78rem; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.google-widget__line {
  display: flex; align-items: center; gap: 8px; margin-top: 2px;
}
.google-widget__rating {
  font-size: 1.4rem; font-weight: 800; color: var(--ink);
  line-height: 1;
}
.google-widget__stars {
  display: inline-flex; gap: 1px;
}
.google-widget__stars svg {
  width: 16px; height: 16px;
}
.google-widget__count {
  font-size: 0.82rem; color: var(--muted); font-weight: 600;
}

/* Minimalistisches Hero-Widget (User-Code) */
.minimal-hero-widget {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0 0;
  margin-top: 4px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  text-decoration: none;
  color: #ffffff;
  background-color: transparent;
  border: none;
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}
.minimal-hero-widget .widget-icon {
  width: 18px; height: 18px;
  margin-right: 0;
}
.minimal-hero-widget .widget-stars {
  position: relative;
  display: inline-block;
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 1;
  color: rgba(255,255,255,0.5);
}
.minimal-hero-widget .widget-stars::before {
  content: '★★★★★';
  position: absolute;
  top: 0; left: 0;
  width: 98%;
  overflow: hidden;
  color: #fbbc05;
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}
.minimal-hero-widget .widget-text {
  font-size: 14px;
  line-height: 1;
}
.minimal-hero-widget .widget-text strong { font-weight: 600; }

/* ===========================================
   STATS-STRIP (warm, hell, landwirtschaftlich)
   =========================================== */
.stats {
  background: #FAF7F2;
  padding: clamp(36px, 5vw, 56px) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats__inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 24px);
}
.stats__item {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px;
  padding: clamp(20px, 2.5vw, 28px) 16px;
  background: #fff; border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.stats__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.06);
}
.stats__icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--rot-glow); color: var(--rot);
  display: grid; place-items: center;
}
.stats__icon svg { width: 26px; height: 26px; }
.stats__number {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  font-weight: 800; color: var(--ink);
  line-height: 1.15; letter-spacing: -0.01em;
}
.stats__label {
  font-size: 0.88rem; color: var(--muted); line-height: 1.45;
  max-width: 200px;
}
@media (max-width: 880px) {
  .stats__inner { grid-template-columns: repeat(2, 1fr); }
}

/* ===========================================
   SECTION-BASE — alle Sections einheitlich
   =========================================== */
.section, .ansp, .gesch {
  padding: clamp(72px, 8vw, 120px) 0;
  position: relative;
}
.section--white { background: #fff; }
.section--grau { background: var(--bg-grau); }
/* Bewertungen-Sektion mit Hahn-Pattern BG (Klon-Style) */
.section--bw {
  position: relative;
  background: #F5EFE6;
  overflow: hidden;
}
.bw__bg {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none;
}
.bw__bg img {
  /* Huehner sitzen unten am Container-Rand, Bild leicht nach unten ueber den Rand hinaus */
  position: absolute;
  left: 0; bottom: -32px;
  width: 100%; height: calc(100% + 32px);
  object-fit: cover;
  object-position: left bottom;
  opacity: 0.5;
}
.bw__inner { position: relative; z-index: 2; }
.section--rot-soft { background: var(--bg-rot-soft); }

.section__head, .ansp__head, .gesch__intro {
  text-align: center; max-width: 880px; margin: 0 auto clamp(40px, 5vw, 64px);
}
.kicker {
  display: inline-block;
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--rot); margin-bottom: 14px;
}
.section h2, .ansp h2, .gesch h2 {
  font-size: clamp(1.45rem, 4vw, 3.4rem);
  font-weight: 800; line-height: 1.15;
  margin: 0 auto 22px; color: var(--ink);
  letter-spacing: -0.025em;
  display: block;
}
.section h2 em, .ansp h2 em, .gesch h2 em {
  font-style: italic; color: var(--rot);
  font-weight: 800;
}
.section__head h2 { max-width: 920px; }
#leistungen-headline { max-width: none; white-space: nowrap; }
.nowrap { white-space: nowrap; }
.section__head h2::after {
  content: ""; display: block;
  width: 72px; height: 4px;
  background: var(--rot); border-radius: 2px;
  margin: 26px auto 0;
}
.section .lead {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.65; color: var(--muted);
  margin: 0;
}

/* ===========================================
   LEISTUNGEN — Magazin-Style alternierend
   =========================================== */
/* 2x2 Card-Grid */
.lstn-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
  margin-top: clamp(40px, 5vw, 64px);
  align-items: stretch;
}
.lstn-card {
  background: #fff; border-radius: 18px;
  padding: clamp(32px, 3.5vw, 44px);
  display: flex; flex-direction: column; gap: 18px;
  box-shadow: 0 8px 24px rgba(35,32,33,0.06);
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .25s var(--ease);
  border: 2px solid #E5DCCB;
}
/* roter Strich oben raus — Klon hatte keinen */
/* kein Hover-Effekt — Klon-Style */
.lstn-card__top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 4px;
}
.lstn-card__icon {
  font-size: 1.4rem;
  line-height: 1;
  margin: 0;
  flex: 0 0 auto;
}
.lstn-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
}
.lstn-card__bullets {
  list-style: none; padding: 0; margin: 4px 0 0;
  display: flex; flex-direction: column; gap: 6px;
}
.lstn-card__bullets li {
  position: relative; padding-left: 16px;
  font-size: 0.95rem; line-height: 1.55; color: var(--text);
}
.lstn-card__bullets li::before {
  content: '•';
  position: absolute; left: 0; top: 0;
  color: var(--rot); font-weight: 700;
}
/* Inline-Link in Leistungs-Texten (z.B. Oeffnungszeiten, Impfplan) */
.text-link {
  color: var(--rot);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: text-decoration-thickness .15s, color .15s;
}
.text-link:hover { text-decoration-thickness: 2px; color: var(--rot-dark, #A4232B); }
.text-link strong { color: inherit; }
.lstn-card__num {
  font-size: clamp(2.8rem, 4vw, 3.8rem); font-weight: 900;
  color: rgba(217,36,49,0.14); line-height: 1; letter-spacing: -0.04em;
}
.lstn-card h3 {
  font-size: clamp(1.45rem, 2vw, 1.85rem);
  font-weight: 800; line-height: 1.2; margin: 0;
  letter-spacing: -0.015em; color: var(--ink);
}
.lstn-card h3 em { font-style: normal; color: var(--rot); }
.lstn-card p {
  font-size: 1rem; line-height: 1.65;
  color: var(--text); margin: 0;
}
.lstn-card p strong { font-weight: 800; color: var(--ink); }

@media (max-width: 720px) {
  .lstn-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* Alte .leistungen Klassen lassen wir drin (falls Restspuren) */
.leistungen {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 3vw, 36px);
}
.leistung {
  background: #fff; border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.leistung:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 56px rgba(0,0,0,0.12);
  border-color: rgba(217, 36, 49, 0.4);
}
.leistung__bild {
  aspect-ratio: 16/10; overflow: hidden; background: #eee;
}
.leistung__bild img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease);
}
.leistung:hover .leistung__bild img { transform: scale(1.04); }
.leistung__body {
  padding: clamp(24px, 3vw, 36px);
  display: flex; flex-direction: column; gap: 14px;
  flex: 1;
}
.leistung__body p { flex: 0 0 auto; }
.leistung__list { margin-top: auto; }
.leistung__icon {
  font-size: 2rem; line-height: 1;
}
.leistung__body h3 {
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  font-weight: 800; line-height: 1.25;
  margin: 0; color: var(--ink);
}
.leistung__body p {
  margin: 0; line-height: 1.65; color: var(--text);
}
.leistung__list {
  list-style: none; padding: 0; margin: 4px 0 0;
  display: flex; flex-direction: column; gap: 10px;
}
.leistung__list li {
  position: relative; padding-left: 28px;
  font-size: 0.97rem; line-height: 1.55;
}
.leistung__list li::before {
  content: ""; position: absolute; left: 0; top: 7px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--rot);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-repeat: no-repeat; background-position: center; background-size: 11px;
}
@media (max-width: 880px) {
  .leistungen { grid-template-columns: 1fr; }
}

/* ===========================================
   KUNDENBEWERTUNGEN
   =========================================== */
.google-rating {
  display: inline-flex; align-items: center; gap: 12px;
  background: #fff; padding: 14px 24px; border-radius: 999px;
  border: 1px solid var(--border); margin-top: 18px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
.google-rating__stars { color: #FBBF24; font-size: 1.05rem; letter-spacing: 0.08em; }
.google-rating__big strong { font-size: 1.3rem; font-weight: 800; color: var(--ink); }
.google-rating__text { font-size: 0.92rem; color: var(--muted); }

.testimonials {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
/* Slider-Variante: horizontaler Scroll mit Pfeilen, 3 sichtbar */
.testimonials-slider {
  position: relative;
  margin-top: 32px;
}
.testimonials--scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 48px) / 3);
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 4px 24px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.testimonials--scroll::-webkit-scrollbar { display: none; }
.testimonials--scroll > .testimonial {
  scroll-snap-align: start;
}
.testimonials-slider__btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 4;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: #fff; color: var(--ink);
  border: 1px solid var(--border, #ECE7DF);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  cursor: pointer;
  display: grid; place-items: center;
  transition: background .2s, color .2s, transform .2s;
}
.testimonials-slider__btn svg { width: 22px; height: 22px; }
.testimonials-slider__btn:hover { background: var(--rot); color: #fff; border-color: var(--rot); }
.testimonials-slider__btn--prev { left: -12px; }
.testimonials-slider__btn--next { right: -12px; }
.testimonials-slider__btn[disabled] { opacity: 0.35; cursor: not-allowed; }
@media (max-width: 980px) {
  .testimonials--scroll { grid-auto-columns: calc((100% - 24px) / 2); }
}
@media (max-width: 700px) {
  .testimonials--scroll {
    grid-auto-columns: calc(100% - 32px);
    padding: 8px 16px 24px;
    scroll-padding-inline: 16px;
    gap: 16px;
  }
  .testimonials--scroll > .testimonial { scroll-snap-align: start; }
  .testimonials-slider__btn { width: 40px; height: 40px; }
  .testimonials-slider__btn--prev { left: 4px; }
  .testimonials-slider__btn--next { right: 4px; }
}
.testimonial {
  background: #fff; border: 1px solid var(--border);
  border-radius: 18px; padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  position: relative;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.testimonial::before {
  content: "\201C"; position: absolute;
  top: 8px; right: 22px;
  font-family: Georgia, serif;
  font-size: 4.5rem; line-height: 1;
  color: rgba(217, 36, 49, 0.15); font-weight: 700;
  pointer-events: none;
}
/* Hover bewusst entfernt — hochwertige Geflügelhof-Anmutung, kein Tech-Look */
.testimonial__stars { color: #FBBF24; font-size: 1rem; letter-spacing: 0.08em; position: relative; z-index: 1; }
.testimonial__text {
  margin: 0; font-size: 0.97rem; line-height: 1.65; color: var(--text);
  position: relative; z-index: 1;
}
.testimonial__author {
  display: flex; align-items: center; gap: 12px;
  margin-top: auto; color: var(--ink);
  font-size: 0.92rem;
}
.testimonial__author strong { font-weight: 700; }
.testimonial__source {
  font-size: 0.78rem; color: var(--muted); font-weight: 400;
}
.testimonial__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--rot); color: #fff;
  display: grid; place-items: center;
  font-weight: 800; font-size: 1rem; flex-shrink: 0;
}

/* ===========================================
   ANSPRUCH — 3 alternierende Bild-Text-Sektionen (Klon-Style)
   =========================================== */
.warum-wrap {
  background: #fff;
  padding-bottom: clamp(40px, 5vw, 72px);
}
.warum-wrap__head {
  text-align: center;
  padding: clamp(56px, 7vw, 100px) 0 clamp(28px, 3.5vw, 48px);
}
.warum-wrap__head h2 {
  font-size: clamp(1.5rem, 4vw, 3.2rem);
  font-weight: 800; line-height: 1.15; letter-spacing: -0.025em;
  color: var(--ink); margin: 0 auto;
  max-width: 920px;
}
.warum-wrap__head h2 em {
  font-style: italic; color: var(--rot); font-weight: 800;
  white-space: nowrap;
}
.warum-wrap__head h2::after {
  content: ""; display: block;
  width: 72px; height: 4px;
  background: var(--rot); border-radius: 2px;
  margin: 26px auto 0;
}

.warum {
  position: relative;
  padding: clamp(40px, 5vw, 72px) 0;
  background: #fff;
  overflow: hidden;
}
.warum--alt {
  background: #fff;
}
.warum__bg {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none;
}
.warum__bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  opacity: 0.55;
}
.warum__row {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.warum--reverse .warum__bild { order: 2; }
.warum--reverse .warum__text { order: 1; }
.warum__bild {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 4/3;
  box-shadow: 0 20px 50px -25px rgba(35,32,33,0.22);
}
.warum__bild img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.warum__pill {
  display: inline-block;
  padding: 6px 14px; border-radius: 6px;
  border: 1.5px solid var(--rot);
  color: var(--rot);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  margin-bottom: 14px;
}
.warum__text h3 {
  font-size: clamp(1.45rem, 2vw, 1.85rem);
  font-weight: 800; line-height: 1.2;
  margin: 0 0 14px; letter-spacing: -0.015em;
  color: var(--ink);
}
.warum__text h3 em {
  font-style: normal;
  text-decoration: underline;
  text-decoration-color: var(--rot);
  text-decoration-thickness: 3px;
  text-underline-offset: 7px;
  text-decoration-skip-ink: none;
}
/* 3. Anspruch-Karte (Persönlicher Kontakt): keine Unterlängen, Strich näher an Zeile
   damit er bei 2-Zeilen-Umbruch nicht in "Familienbetrieb" reinläuft */
.warum-wrap .warum:nth-of-type(3) .warum__text h3 em {
  text-underline-offset: 3px;
}
.warum__intro {
  font-size: 1.1rem; font-weight: 800; color: var(--ink);
  margin: 0 0 8px; line-height: 1.4; letter-spacing: -0.01em;
}
.warum__sub {
  font-size: 1rem; line-height: 1.6; color: var(--text);
  margin: 0 0 20px; font-weight: 500;
}
.warum__list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 14px;
}
.warum__list li {
  position: relative; padding-left: 36px;
  font-size: 0.92rem; line-height: 1.55; color: var(--text);
  background: transparent; border: 0; border-radius: 0; padding-top: 0; padding-bottom: 0; padding-right: 0;
}
.warum__list li::before {
  content: ""; position: absolute; left: 0; top: 4px;
  width: 22px; height: 22px; border-radius: 50%;
  background-color: var(--rot);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-repeat: no-repeat; background-position: center; background-size: 13px;
}
.warum__list li { color: #000 !important; font-weight: 700 !important; }
.warum__list li strong { display: inline !important; color: #000 !important; font-weight: 700 !important; margin: 0; line-height: inherit; }
.warum__list li span { display: inline !important; color: #000 !important; font-weight: 700 !important; line-height: inherit; font-size: inherit; }
#oeffnungszeiten { scroll-margin-top: 90px; }

@media (max-width: 900px) {
  .warum__row { grid-template-columns: 1fr; gap: 24px; }
  .warum--reverse .warum__bild { order: 1; }
  .warum--reverse .warum__text { order: 2; }
  .warum__bild { aspect-ratio: 16/10; }
}

/* ===========================================
   GALERIE
   =========================================== */
.galerie {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  grid-auto-flow: dense;
  gap: 16px;
}
.galerie__item {
  margin: 0; overflow: hidden; border-radius: 14px;
  background: #ddd;
}
.galerie__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease);
}
.galerie__item:hover img { transform: scale(1.05); }
.galerie__item--gross { grid-row: span 2; grid-column: span 2; }
.galerie__item--tall  { grid-row: span 2; }
.galerie__item--wide  { grid-column: span 2; }
@media (max-width: 880px) {
  .galerie { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .galerie__item--gross { grid-column: span 2; }
  .galerie__item--wide  { grid-column: span 2; }
  .galerie__item--tall  { grid-row: span 2; grid-column: span 1; }
}

/* ===========================================
   DROHNE — Hof aus der Luft (subtiler Zwischen-Strip)
   =========================================== */
.drohne { background: #fff; overflow: hidden; }
.drohne__inner {
  padding: clamp(32px, 5vw, 72px) clamp(16px, 3vw, 24px);
  display: flex; justify-content: center;
}
.drohne__video {
  width: 100%; max-width: 960px; height: auto;
  display: block;
  aspect-ratio: 848 / 478;
  object-fit: cover; background: #000;
  border-radius: clamp(10px, 1.4vw, 18px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  box-sizing: border-box;
}
@media (max-width: 700px) {
  .drohne__inner { padding: 28px 12px; }
  .drohne__video { border-radius: 10px; box-shadow: 0 10px 24px rgba(0,0,0,0.15); }
}

/* ===========================================
   GESCHICHTE — kompaktes Layout
   =========================================== */
.gesch {
  padding: clamp(72px, 8vw, 120px) 0;
  background: #fff;
}
.gesch__intro {
  text-align: center; margin-bottom: clamp(20px, 2.5vw, 32px);
}
.gesch__intro .kicker {
  display: inline-block;
  margin-bottom: 18px;
}
.gesch__intro h2 {
  font-size: clamp(1.45rem, 4.5vw, 3.6rem);
  font-weight: 800; line-height: 1.15; letter-spacing: -0.025em;
  margin: 0;
}
.gesch__intro h2 em {
  font-style: normal; color: var(--rot);
}
.gesch__vergleich {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 40px);
  max-width: 1100px; margin: 0 auto clamp(36px, 5vw, 64px);
}
.gesch__bild { margin: 0; }
.gesch__bild img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  display: block; border-radius: 14px;
  box-shadow: 0 24px 56px -22px rgba(35,32,33,0.28), 0 6px 18px rgba(0,0,0,0.06);
  filter: saturate(1.02);
}
.gesch__bild figcaption {
  display: flex; align-items: baseline; gap: 14px;
  margin-top: 16px;
  border-top: 2px solid var(--rot);
  padding-top: 10px;
}
.gesch__jahr {
  font-size: clamp(1.4rem, 2vw, 1.85rem);
  font-weight: 800; color: var(--rot);
  letter-spacing: -0.02em; line-height: 1; flex-shrink: 0;
}
.gesch__caption {
  font-size: 0.92rem; line-height: 1.5; color: var(--text);
}
.gesch__erzaehl {
  max-width: 820px; margin: 0 auto clamp(36px, 5vw, 64px);
  text-align: center;
}
.gesch__erzaehl p { margin: 0; }
.gesch__lead {
  font-size: clamp(1.15rem, 1.65vw, 1.45rem);
  line-height: 1.55; color: var(--ink); font-weight: 500;
}
.gesch__lead strong { font-weight: 800; color: var(--ink); }
.gesch__erzaehl p + p {
  margin-top: 14px;
  font-size: clamp(1rem, 1.25vw, 1.1rem);
  line-height: 1.6; color: var(--text);
}
.gesch__erzaehl p + p strong { color: var(--ink); font-weight: 700; }
@media (max-width: 760px) {
  .gesch__vergleich { grid-template-columns: 1fr; gap: 24px; }
}
.gesch__bild {
  margin: 0; border-radius: 18px; overflow: hidden;
  box-shadow: 0 24px 50px -20px rgba(0,0,0,0.25), 0 6px 18px rgba(0,0,0,0.06);
  background: #fff;
}
.gesch__bild img { width: 100%; height: auto; display: block; }
.gesch__bild figcaption {
  background: #fff; padding: 14px 20px;
  font-size: 0.88rem; color: var(--muted); line-height: 1.5;
}
.gesch__bild figcaption strong { color: var(--rot); font-weight: 800; }
/* alte gesch__grid/__bilder/__bild--alt Klassen ersetzt durch __vergleich/__erzaehl */
.gesch__text {
  display: flex; flex-direction: column; gap: 16px;
  background: #FAF7F2; border-radius: 22px;
  padding: clamp(28px, 3.5vw, 40px);
  border: 1px solid var(--border);
}
.gesch__big {
  font-size: clamp(1.15rem, 1.6vw, 1.4rem); line-height: 1.55;
  margin: 0; color: var(--ink); font-weight: 500;
}
.gesch__big strong { font-weight: 800; }
.gesch__text > p {
  font-size: 1.02rem; line-height: 1.7; margin: 0; color: var(--text);
}
.gesch__text strong { color: var(--ink); font-weight: 700; }

.gesch__zitat {
  background: var(--ink); color: #fff;
  border-radius: 18px;
  padding: clamp(32px, 4vw, 44px);
  position: relative;
  margin: 12px 0;
}
.gesch__zitat > span {
  position: absolute; top: -10px; left: 24px;
  font-size: 7rem; line-height: 1;
  color: var(--rot); font-family: Georgia, serif;
  font-weight: 700;
}
.gesch__zitat p {
  font-size: clamp(1.15rem, 1.7vw, 1.4rem);
  line-height: 1.45; margin: 0 0 16px;
  color: #fff; font-weight: 600; font-style: italic;
  letter-spacing: -0.005em;
}
.gesch__zitat cite {
  font-size: 0.88rem; color: rgba(255,255,255,0.7);
  font-style: normal; font-weight: 600;
  letter-spacing: 0.04em;
}

/* WISSEN & DOWNLOADS — Editorial-Listing (statt Card-Grid) */
.dl-list {
  list-style: none; padding: 0; margin: clamp(36px, 5vw, 56px) 0 0;
  max-width: 900px; margin-left: auto; margin-right: auto;
}
.dl-list li { border-top: 1px solid var(--border); }
.dl-list li:last-child { border-bottom: 1px solid var(--border); }
.dl-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px; align-items: center;
  padding: 24px 4px;
  text-decoration: none; color: inherit;
  transition: padding .25s var(--ease);
}
.dl-row:hover { padding-left: 12px; padding-right: 12px; background: rgba(217,36,49,0.03); }
.dl-row__type {
  font-size: 0.72rem; font-weight: 800; color: var(--rot);
  text-transform: uppercase; letter-spacing: 0.16em;
}
.dl-row__title {
  display: block;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  font-weight: 700; color: var(--ink);
  letter-spacing: -0.01em; line-height: 1.3;
}
.dl-row__sub {
  display: block; margin-top: 4px;
  font-size: 0.92rem; font-weight: 400;
  color: var(--muted); letter-spacing: 0;
}
.dl-row__meta {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.85rem; font-weight: 600; color: var(--muted);
  white-space: nowrap;
}
.dl-row__meta svg {
  width: 16px; height: 16px; color: var(--rot);
  transition: transform .25s var(--ease);
}
.dl-row:hover .dl-row__meta svg { transform: translateX(4px); }
@media (max-width: 760px) {
  .dl-row {
    grid-template-columns: 1fr;
    gap: 6px; padding: 18px 4px;
  }
  .dl-row__meta { justify-self: start; margin-top: 4px; }
}
/* Geschichte-Mobile-Breakpoint im neuen Block oben definiert */

/* ===========================================
   PHILIPP-VIDEO
   =========================================== */
.philipp {
  display: grid; grid-template-columns: 1.3fr 1fr;
  gap: clamp(36px, 5vw, 72px); align-items: center;
}
.philipp__text h2 { margin-top: 14px; }
.philipp__text p {
  font-size: 1.05rem; line-height: 1.65; margin: 0 0 14px; color: var(--text);
}
.philipp__caption {
  font-size: 0.92rem; color: var(--muted); margin-top: 12px;
}
.philipp__video {
  max-width: 320px; margin: 0 auto; width: 100%;
}
.philipp__video video {
  width: 100%; height: auto; display: block;
  border-radius: 22px;
  box-shadow: 0 30px 70px -20px rgba(0,0,0,0.45), 0 6px 18px rgba(0,0,0,0.08);
  background: #000;
}
@media (max-width: 880px) {
  .philipp { grid-template-columns: 1fr; }
  .philipp__video { max-width: 220px; }
}

/* ===========================================
   KONTAKT
   =========================================== */
.kontakt {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: clamp(36px, 5vw, 56px); align-items: stretch;
}
.kontakt__info {
  background: var(--bg-grau); padding: clamp(28px, 4vw, 44px);
  border-radius: 18px;
  display: flex; flex-direction: column; gap: 18px;
}
.kontakt__row {
  display: grid; grid-template-columns: 110px 1fr; gap: 16px;
  padding-bottom: 16px; border-bottom: 1px solid var(--border);
  align-items: start;
}
.kontakt__row:last-of-type { border-bottom: none; padding-bottom: 0; }
.kontakt__label {
  font-size: 0.85rem; font-weight: 700; color: var(--rot);
  letter-spacing: 0.06em; text-transform: uppercase; padding-top: 2px;
}
.kontakt__value {
  font-size: 1rem; color: var(--ink); line-height: 1.5;
}
a.kontakt__value { color: var(--ink); border-bottom: 1px dotted var(--rot); }
a.kontakt__value:hover { color: var(--rot); }
.kontakt__zeiten-title {
  font-size: 1.1rem; font-weight: 800; color: var(--ink);
  margin: 14px 0 6px;
}
.kontakt__zeiten {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.kontakt__zeiten li {
  display: flex; justify-content: space-between; gap: 14px;
  font-size: 0.95rem;
  padding: 8px 0; border-bottom: 1px dashed var(--border);
}
.kontakt__zeiten li:last-child { border-bottom: none; }
.kontakt__zeiten li span:first-child { color: var(--ink); font-weight: 600; }
.kontakt__zeiten li span:last-child { color: var(--muted); font-variant-numeric: tabular-nums; }
.kontakt__zeiten .zeit-zu { color: var(--rot); font-weight: 600; font-style: italic; }
.kontakt__hinweis {
  margin: 14px 0 0; font-size: 0.93rem; color: var(--muted);
  line-height: 1.6; font-style: italic;
}
.kontakt__karte {
  border-radius: 18px; overflow: hidden;
  background: #f0f0f0; min-height: 480px;
  display: flex; flex-direction: column;
  position: relative;
}
.kontakt__karte iframe {
  border: 0; width: 100%; flex: 1;
}
.kontakt__karte-link {
  display: block; padding: 14px 20px; background: #fff;
  color: var(--rot); font-weight: 700; font-size: 0.95rem;
  text-align: center; border-top: 1px solid var(--border);
}
.kontakt__karte-link:hover { background: var(--rot-glow); }
@media (max-width: 880px) {
  .kontakt { grid-template-columns: 1fr; }
  .kontakt__karte { min-height: 360px; }
}

/* Kontakt 2-Spalter (Klon-Style: Card + Oeffnungszeiten) */
.kontakt-2 {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}
.kontakt-2__card,
.kontakt-2__zeiten {
  background: var(--bg-grau); padding: clamp(28px, 4vw, 44px);
  border-radius: 18px;
  display: flex; flex-direction: column; gap: 18px;
}
.kontakt__wa {
  margin-top: 8px;
  display: inline-flex; align-items: center; gap: 8px;
  align-self: flex-start;
  background: transparent; color: var(--ink);
  padding: 10px 16px; border-radius: 8px;
  border: 1px solid var(--border, #ECE7DF);
  font-weight: 600; font-size: 0.95rem;
  text-decoration: none;
  transition: border-color .2s, color .2s, background .2s;
}
.kontakt__wa svg { width: 18px; height: 18px; color: #25D366; }
.kontakt__wa:hover { border-color: var(--rot); color: var(--rot); }
@media (max-width: 880px) {
  .kontakt-2 { grid-template-columns: 1fr; }
}

/* Anfahrt-Sektion */
.anfahrt {
  display: grid; grid-template-columns: 1.5fr 1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: stretch;
}
.anfahrt__karte {
  border-radius: 18px; overflow: hidden;
  background: #f0f0f0; min-height: 420px;
  position: relative;
}
.anfahrt__karte iframe { border: 0; width: 100%; height: 100%; min-height: 420px; }
.anfahrt__info {
  background: #fff; padding: clamp(28px, 4vw, 40px);
  border-radius: 18px;
  border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 16px;
  align-self: center;
}
.anfahrt__info h3 {
  font-size: clamp(1.3rem, 1.9vw, 1.7rem);
  font-weight: 800; line-height: 1.2; margin: 0;
  color: var(--ink); letter-spacing: -0.015em;
}
.anfahrt__info p { margin: 0; line-height: 1.6; color: var(--text); }
.anfahrt__adresse { font-size: 1.05rem; }
.anfahrt__adresse strong { color: var(--ink); font-weight: 700; }
.anfahrt__info .btn { align-self: flex-start; margin-top: 4px; }
@media (max-width: 880px) {
  .anfahrt { grid-template-columns: 1fr; }
  .anfahrt__karte { min-height: 320px; }
  .anfahrt__karte iframe { min-height: 320px; }
}

/* ===========================================
   FOOTER
   =========================================== */
.site-footer {
  background: var(--ink); color: rgba(255,255,255,0.8);
  padding: clamp(56px, 7vw, 88px) 0 clamp(20px, 3vw, 32px);
  border-top: 4px solid var(--rot);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  padding-bottom: clamp(40px, 5vw, 56px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  align-items: start;
}
.footer__col { display: flex; flex-direction: column; gap: 14px; }
.footer__col--brand { gap: 18px; }
.footer__brand {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none; color: #fff;
}
.footer__brand img {
  height: 84px; width: auto;
  background: transparent;
  border-radius: 0;
  padding: 0;
}
.footer__brand span {
  font-size: 1.1rem; font-weight: 600; line-height: 1.2;
}
.footer__brand strong { font-weight: 800; color: var(--rot); display: block; }
.footer__tagline {
  font-size: 0.95rem; line-height: 1.65; color: rgba(255,255,255,0.75);
  margin: 0;
}
.footer__social {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 16px;
  color: rgba(255,255,255,0.85);
  text-decoration: none; font-size: 0.92rem; font-weight: 600;
  transition: color .2s ease;
}
.footer__social:hover { color: var(--rot); }
.footer__social svg { width: 20px; height: 20px; }
.footer__inhaber {
  font-size: 0.92rem; line-height: 1.55; margin: 0;
  color: rgba(255,255,255,0.85);
}
.footer__inhaber strong { color: #fff; font-weight: 700; }
.footer__inhaber span {
  font-size: 0.82rem; color: rgba(255,255,255,0.55);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.footer__title {
  font-size: 0.85rem; font-weight: 800; color: #fff;
  text-transform: uppercase; letter-spacing: 0.12em;
  margin: 0 0 8px;
  position: relative; padding-bottom: 12px;
}
.footer__title::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 32px; height: 2px; background: var(--rot);
}
.footer__list, .footer__nav {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.footer__list li {
  font-size: 0.92rem; line-height: 1.5; color: rgba(255,255,255,0.8);
  display: flex; flex-direction: column; gap: 2px;
}
.footer__list li > span:first-child {
  font-size: 0.74rem; font-weight: 700; color: var(--rot);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.footer__list a {
  color: #fff; text-decoration: none; font-weight: 500;
  border-bottom: 1px dotted rgba(255,255,255,0.3);
  width: fit-content;
}
.footer__list a:hover { color: var(--rot); border-bottom-color: var(--rot); }
.footer__list--zeiten li {
  flex-direction: row; justify-content: space-between; gap: 12px;
  padding: 6px 0; border-bottom: 1px dashed rgba(255,255,255,0.1);
}
.footer__list--zeiten li:last-child { border-bottom: none; }
.footer__list--zeiten li > span:first-child {
  text-transform: none; letter-spacing: 0; font-weight: 600;
  color: rgba(255,255,255,0.85); font-size: 0.92rem;
}
.footer__list--zeiten li > span:last-child {
  color: rgba(255,255,255,0.6); font-size: 0.92rem; text-align: right;
}
.footer__hint {
  font-size: 0.82rem; line-height: 1.55; color: rgba(255,255,255,0.55);
  margin: 8px 0 0; font-style: italic;
}
.footer__nav a {
  color: rgba(255,255,255,0.8); text-decoration: none; font-size: 0.95rem;
  transition: color .2s var(--ease);
  position: relative; padding-left: 14px;
}
.footer__nav a::before {
  content: "›"; position: absolute; left: 0; color: var(--rot);
  font-weight: 700;
}
.footer__nav a:hover { color: #fff; }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; gap: 16px; flex-wrap: wrap;
}
.footer__copy {
  font-size: 0.85rem; color: rgba(255,255,255,0.45); margin: 0;
}
.footer__legal {
  list-style: none; padding: 0; margin: 0; display: flex; gap: 24px;
}
.footer__legal a {
  color: rgba(255,255,255,0.65); font-size: 0.85rem;
  text-decoration: none;
}
.footer__legal a:hover { color: #fff; text-decoration: underline; }
@media (max-width: 980px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__col--brand { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__col--brand { grid-column: auto; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ===========================================
   STICKY MOBILE CALL
   =========================================== */
.sticky-call {
  display: none;
  position: fixed; bottom: 16px; right: 16px; z-index: 90;
  background: var(--rot); color: #fff;
  padding: 14px 20px; border-radius: 999px;
  font-weight: 800; font-size: 0.95rem;
  box-shadow: 0 12px 30px rgba(217, 36, 49, 0.45);
  align-items: center; gap: 8px;
}
.sticky-call svg { width: 18px; height: 18px; }
/* Anrufen-Button mobil komplett aus — Iris/Tobias wollen nicht direkt angerufen werden */

/* Scroll-Reveal: subtle fade+slide */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
  will-change: opacity, transform;
}
.reveal--in {
  opacity: 1;
  transform: none;
}

/* ===========================================
   MOBILE-FEINSCHLIFF
   =========================================== */
@media (max-width: 700px) {
  body { font-size: 15px; }
  .btn { padding: 12px 22px; font-size: 0.95rem; }

  .section h2, .ansp h2, .gesch h2, .gesch__intro h2, .ansp__head h2, .warum-wrap__head h2 {
    font-size: clamp(1.6rem, 5.5vw, 2.2rem);
    line-height: 1.18;
  }
  #leistungen-headline { white-space: normal; }
  .section .lead, .ansp__head .lead { font-size: 0.85rem; line-height: 1.5; }

  .lstn__row, .lstn__row--alt { gap: 24px; }
  .lstn__row { grid-template-columns: 1fr !important; }
  .lstn__bild { aspect-ratio: 16/10; max-height: 280px; }
  .lstn__num { font-size: 3.2rem; right: 16px; top: -6px; }
  .lstn__text h3 { font-size: clamp(1.25rem, 5vw, 1.5rem); }
  .lstn__text p { font-size: 0.97rem; line-height: 1.6; }
  .lstn__tag { font-size: 0.72rem; }
  .lstn__tag::before { width: 24px; }

  .ansp { padding: clamp(56px, 8vw, 80px) 0; }
  .ansp__card { padding: 24px; }
  .ansp__card h3 { font-size: 1.2rem; }
  .ansp__num { font-size: 2rem; }

  .testimonial { padding: 22px; }
  .testimonial__text { font-size: 0.95rem; }

  .gesch__text { padding: 24px; }
  .gesch__big { font-size: 1.05rem; }
  .gesch__bild--klein { width: 100%; }

  .philipp__text h2 { font-size: clamp(1.4rem, 5vw, 1.8rem); }
  .philipp__lead, .philipp__text p { font-size: 0.97rem; }

  .kontakt__info { padding: 24px; }
  .kontakt__row { grid-template-columns: 95px 1fr; gap: 12px; }
  .kontakt__label { font-size: 0.75rem; }
  .kontakt__value { font-size: 0.95rem; }
  .kontakt__zeiten li { font-size: 0.9rem; }
  .kontakt__zeiten-title { font-size: 1rem; }

  .footer__title { font-size: 0.78rem; }
  .footer__list li { font-size: 0.88rem; }
  .footer__nav a { font-size: 0.9rem; }
  .footer__col--brand { align-items: flex-start; text-align: left; }
  .footer__brand { gap: 10px; align-items: center; justify-content: flex-start; }
  .footer__brand img { height: 48px; flex-shrink: 0; }
  .footer__brand span { font-size: 0.95rem; line-height: 1.15; }

  /* Bewertungen-Header: Headline+Widget gestackt */
  .bw-head { gap: 18px; }
  .bw-head h2 { font-size: clamp(1.5rem, 5vw, 1.95rem); }
  .google-widget { padding: 12px 16px; gap: 12px; }
  .google-widget__logo svg { width: 32px; height: 32px; }
  .google-widget__rating { font-size: 1.2rem; }
  .google-widget__title { font-size: 0.7rem; }
  .google-widget__count { font-size: 0.78rem; }

  /* Bilder mittig */
  img { display: block; margin-left: auto; margin-right: auto; }
}

/* ===========================================
   FOOTER-TAGLINE (kompakt)
   =========================================== */
.footer__tagline {
  font-size: 0.88rem; color: rgba(255,255,255,0.6);
  margin: 12px 0 0; line-height: 1.5;
}

/* ===========================================
   RATGEBER-PAGE
   =========================================== */
.ratgeber-page { padding-top: 0; }
.container--lese { max-width: 760px; }
.rg-hero {
  padding: clamp(72px, 9vw, 120px) 0 clamp(40px, 5vw, 64px);
  background: linear-gradient(180deg, var(--bg-grau) 0%, #fff 100%);
}
.rg-crumb { font-size: 0.85rem; color: var(--muted); margin: 0 0 16px; }
.rg-crumb a { color: var(--rot); text-decoration: none; }
.rg-crumb a:hover { text-decoration: underline; }
.rg-hero h1 {
  font-size: clamp(1.85rem, 4vw, 3rem);
  font-weight: 800; line-height: 1.15; letter-spacing: -0.02em;
  margin: 12px 0 20px; color: var(--ink);
}
.rg-hero h1 em { font-style: italic; color: var(--rot); font-weight: 800; }
.rg-lead {
  font-size: clamp(1rem, 1.4vw, 1.18rem); line-height: 1.65;
  max-width: 700px; color: var(--text); margin: 0;
}

.rg-block { padding: clamp(48px, 6vw, 80px) 0; }
.rg-block--alt { background: var(--bg-grau); }
.rg-block--featured { background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.rg-block h2 {
  font-size: clamp(1.45rem, 2.5vw, 2rem); font-weight: 800;
  line-height: 1.25; margin: 14px 0 24px; color: var(--ink);
}
.rg-block h2 em { font-style: italic; color: var(--rot); }
.rg-block h3 { font-size: clamp(1.1rem, 1.6vw, 1.3rem); margin: 28px 0 12px; color: var(--ink); }
.rg-block p { line-height: 1.7; margin: 0 0 14px; }
.rg-block p strong { font-weight: 800; color: var(--ink); }

.rg-callout {
  background: var(--rot-glow); border-left: 4px solid var(--rot);
  border-radius: 0 14px 14px 0;
  padding: clamp(24px, 3vw, 36px);
}
.rg-callout h2 { margin-top: 0; }

.rg-list {
  list-style: none; padding: 0; margin: 0 0 14px;
  display: flex; flex-direction: column; gap: 12px;
}
.rg-list li {
  position: relative; padding-left: 28px; line-height: 1.65;
}
.rg-list li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--rot);
}

.rg-highlight {
  background: var(--bg-grau); border-radius: 12px;
  padding: clamp(20px, 2.5vw, 28px); margin: 16px 0 28px;
}
.rg-highlight p:last-child { margin: 0; }

.rg-warn {
  background: #FEF3C7; border-left: 4px solid #D97706;
  padding: 16px 20px; border-radius: 0 8px 8px 0;
  margin: 24px 0; font-size: 0.97rem; line-height: 1.6;
}

.rg-note {
  background: #fff; border: 1px dashed var(--border);
  border-radius: 10px; padding: 18px 22px;
  margin-top: 28px; font-style: italic; color: var(--muted);
}

.rg-block--summary { background: var(--rot); color: #fff; }
.rg-block--summary .kicker { color: rgba(255,255,255,0.85); }
.rg-block--summary h2 { color: #fff; }
.rg-checks {
  list-style: none; padding: 0; margin: 0;
  counter-reset: check;
  display: flex; flex-direction: column; gap: 14px;
}
.rg-checks li {
  counter-increment: check;
  position: relative; padding-left: 56px;
  line-height: 1.55; font-size: 1.02rem;
  min-height: 40px; display: flex; align-items: center;
}
.rg-checks li::before {
  content: counter(check);
  position: absolute; left: 0; top: 0;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 800; font-size: 1.05rem;
}

.rg-cta {
  padding: clamp(56px, 7vw, 88px) 0;
  background: var(--bg-grau); text-align: center;
}
.rg-cta h2 { font-size: clamp(1.5rem, 2.5vw, 2.1rem); margin: 0 0 12px; }
.rg-cta p { color: var(--muted); margin: 0 0 28px; font-size: 1.05rem; }
.rg-cta__actions {
  display: inline-flex; flex-wrap: wrap; gap: 14px;
  justify-content: center;
}
.btn--ghost-dark {
  background: rgba(35,32,33,0.06); color: var(--ink);
  border-color: rgba(35,32,33,0.15);
}
.btn--ghost-dark:hover { background: rgba(35,32,33,0.12); color: var(--ink); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

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

/* ===========================================
   LEGAL-PAGES (Impressum / Datenschutz)
   =========================================== */
.legal-page {
  padding: clamp(36px, 6vw, 72px) 0 clamp(48px, 7vw, 96px);
}
.legal-page__inner {
  max-width: 760px; margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 32px);
}
.legal-page__back {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.92rem; font-weight: 600; color: var(--muted);
  text-decoration: none; margin-bottom: 28px;
  letter-spacing: 0.02em;
  transition: color .2s ease;
}
.legal-page__back:hover { color: var(--ink); }
.legal-page h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800; line-height: 1.15; letter-spacing: -0.02em;
  margin: 0 0 24px; color: var(--ink);
}
.legal-page h2 {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 800; line-height: 1.3; letter-spacing: -0.01em;
  margin: 36px 0 12px; color: var(--ink);
}
.legal-page h3 {
  font-size: 1.05rem; font-weight: 800;
  margin: 24px 0 8px; color: var(--ink);
}
.legal-page p {
  font-size: 1rem; line-height: 1.7; margin: 0 0 14px;
  color: var(--text);
}
.legal-page p strong { color: var(--ink); font-weight: 700; }
.legal-page ul {
  list-style: disc; padding-left: 22px; margin: 0 0 14px;
  color: var(--text);
}
.legal-page ul li {
  font-size: 1rem; line-height: 1.7; margin-bottom: 6px;
}
.legal-page address {
  font-style: normal; line-height: 1.65;
  padding: 6px 0 6px 16px;
  border-left: 2px solid var(--border);
  margin: 8px 0 18px;
}
.legal-page a { color: var(--rot); text-decoration: underline; }
.legal-page a:hover { color: var(--rot-dark); }
.legal-page__meta {
  margin-top: 32px; padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 0.88rem; color: var(--muted);
}
@media (max-width: 760px) {
  .legal-page h1 { font-size: 1.55rem; }
  .legal-page h2 { font-size: 1.1rem; margin-top: 28px; }
  .legal-page p, .legal-page ul li { font-size: 0.94rem; line-height: 1.65; }
}

/* ===========================================
   MOBILE-OVERRIDES — alle Sektionen kompakter (Stand v40)
   Best-Practice Mobile (≤760px): kompaktes Padding, kleinere Texte,
   weniger Whitespace, damit Sektionen nicht 4 Bildschirme lang sind.
   =========================================== */
@media (max-width: 760px) {
  /* SECTION-HEADER-PADDING global kompakter (einheitlich fuer alle Section-Typen) */
  .section, .ansp, .gesch, .warum, .warum-wrap { padding-top: clamp(36px, 6vw, 56px); padding-bottom: clamp(36px, 6vw, 56px); }
  .warum-wrap__head { padding: clamp(36px, 6vw, 56px) 0 clamp(20px, 3vw, 32px); }
  /* Hero behaelt sein grosses padding-bottom fuer Text-Position (siehe @900) */
  .section__head, .ansp__head { margin-bottom: clamp(16px, 3.5vw, 28px); }
  .section h2, .ansp h2, .gesch h2 { margin-bottom: 14px; }
  .section .lead, .ansp__head .lead { font-size: 0.93rem; line-height: 1.55; }
  .kicker { font-size: 0.68rem; margin-bottom: 8px; }
  .section__head h2::after, .ansp__head h2::after { margin-top: 14px; width: 48px; height: 3px; }

  /* LEISTUNGEN-CARDS (Nummern + Inhalt) */
  .lstn-grid { gap: 12px; margin-top: 24px; }
  .lstn-card { padding: 18px 18px 20px; gap: 10px; border-radius: 18px; }
  .lstn-card::before { height: 3px; border-radius: 18px 18px 0 0; }
  .lstn-card__top { margin-bottom: 0; }
  .lstn-card__num { font-size: 1.5rem; }
  .lstn-card__icon { width: auto; height: auto; font-size: 1.15rem; border-radius: 0; }
  .lstn-card h3 { font-size: 1.05rem; padding-left: 0; gap: 8px; }
  .lstn-card p { font-size: 0.87rem; line-height: 1.5; }

  /* ANSPRUCH-CARDS */
  .ansp__card { padding: 20px; gap: 12px; border-radius: 18px; }
  .ansp__card h3 { font-size: 1.1rem; }
  .ansp__intro { font-size: 0.93rem; }
  .ansp__num { font-size: 1.65rem; }
  .ansp__icon { width: 40px; height: 40px; border-radius: 11px; }
  .ansp__icon svg { width: 20px; height: 20px; }
  .ansp__list li { font-size: 0.85rem; padding: 10px 10px 10px 36px; line-height: 1.5; }
  .ansp__list li::before { left: 10px; top: 14px; width: 15px; height: 15px; }
  .ansp__list { gap: 8px; }

  /* DOWNLOADS-LISTE */
  .dl-list { margin-top: 24px; }
  .dl-row { padding: 14px 4px; gap: 4px; }
  .dl-row__type { font-size: 0.66rem; }
  .dl-row__title { font-size: 1rem; }
  .dl-row__sub { font-size: 0.85rem; margin-top: 2px; }
  .dl-row__meta { font-size: 0.78rem; }

  /* BEWERTUNGEN + GOOGLE-WIDGET */
  .google-widget { padding: 8px 12px; gap: 8px; }
  .google-widget__logo svg { width: 26px; height: 26px; }
  .google-widget__title { font-size: 0.65rem; }
  .google-widget__rating { font-size: 1.05rem; }
  .google-widget__count { font-size: 0.7rem; }
  .google-widget__stars svg { width: 12px; height: 12px; }

  /* TESTIMONIALS */
  .testimonial { padding: 18px; }
  .testimonial__text { font-size: 0.88rem; line-height: 1.55; }

  /* GESCHICHTE-Sektion */
  .gesch__intro { margin-bottom: 24px; }
  .gesch__text { padding: 22px 20px; gap: 12px; border-radius: 16px; }
  .gesch__big { font-size: 0.98rem; line-height: 1.55; }
  .gesch__text p { font-size: 0.9rem; line-height: 1.55; }

  /* HEADER */
  .header__logo-text { font-size: 0.88rem; }
}

/* Sehr kleine Phones (≤400px) */
@media (max-width: 400px) {
  .h2026__h1 { font-size: 1.25rem; }
  .h2026__sub { font-size: 0.9rem; }
  .lstn-card h3, .ansp__card h3 { font-size: 1.05rem; }
  .lstn-card p { font-size: 0.85rem; }
}
