/* ===========================================
   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: 52px; width: auto;
}
.header__logo-text {
  font-size: 1.05rem; 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; }
@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(660px, 75vh, 880px);
  background: #161616;
  color: #fff;
  overflow: hidden;
  padding: 96px 0 72px;
  display: flex;
  align-items: center;
}
.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: 580px;
  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.8rem, 2.6vw, 2.85rem);
  font-weight: 800; line-height: 1.2;
  margin: 0 0 20px; color: #fff;
  letter-spacing: -0.015em;
  max-width: 720px;
}
/* Manuelle Zeilenumbrueche raus — Browser bricht natural in Container-Breite um */
.h2026__h1 .brk { display: none; }
.h2026__h1 em {
  font-style: normal;
  white-space: nowrap;
}
.h2026__sub {
  font-size: clamp(1.02rem, 1.2vw, 1.15rem); line-height: 1.55;
  margin: 0 0 8px;
  color: rgba(255,255,255,0.88);
  max-width: 580px;
}
.h2026__sub--small {
  margin: 0 0 22px;
  font-size: clamp(0.95rem, 1.05vw, 1.05rem);
  color: rgba(255,255,255,0.78);
}
.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; }

.h2026__media {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 56%;
  z-index: 1;
  overflow: hidden;
  background: #161616;
}
.h2026__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 70% top;
  display: block;
}
.h2026__media::before {
  content: ''; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to right,
    #161616 0%,
    #161616 2%,
    rgba(22,22,22,0.88) 5%,
    rgba(22,22,22,0.72) 8%,
    rgba(22,22,22,0.55) 11%,
    rgba(22,22,22,0.4) 15%,
    rgba(22,22,22,0.26) 18%,
    rgba(22,22,22,0.15) 22%,
    rgba(22,22,22,0.06) 25%,
    rgba(22,22,22,0) 28%);
  pointer-events: none;
}
/* Mobile: Bild oben, Text drunter */
@media (max-width: 900px) {
  .h2026 {
    display: block;
    min-height: auto;
    padding: 0;
  }
  .h2026__media {
    position: relative;
    width: 100%; height: 260px;
  }
  .h2026__media img {
    object-position: center 30%;
    mask-image: none; -webkit-mask-image: none;
  }
  /* Mobile: Bild fadet unten in Hero-BG -> sauberer Uebergang zum Text */
  .h2026__media::before {
    display: block;
    background: linear-gradient(to bottom,
      rgba(22,22,22,0) 0%,
      rgba(22,22,22,0) 55%,
      rgba(22,22,22,0.55) 80%,
      #161616 100%);
  }
  .h2026__container { padding: 24px 20px 36px; }
  .h2026__kicker { font-size: 0.72rem; padding: 5px 12px; margin-bottom: 12px; }
  .h2026__h1 { font-size: clamp(1.35rem, 5vw, 1.75rem); margin-bottom: 14px; }
  .h2026__sub { font-size: 0.95rem; max-width: none; line-height: 1.5; }
  .h2026__sub--small { font-size: 0.85rem; margin-bottom: 20px; }
  .h2026__actions { gap: 10px; margin-bottom: 16px; }
  .h2026__actions .btn { padding: 10px 16px; font-size: 0.85rem; }
  .google-widget--hero { padding: 10px 14px; gap: 10px; }
  .google-widget--hero .google-widget__logo svg { width: 28px; height: 28px; }
  .google-widget--hero .google-widget__title { font-size: 0.68rem; }
  .google-widget--hero .google-widget__rating { font-size: 1.1rem; }
  .google-widget--hero .google-widget__count { font-size: 0.72rem; }
  .google-widget--hero .google-widget__stars svg { width: 13px; height: 13px; }
}

.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);
}
.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;
}

/* ===========================================
   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); }
.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; }
.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: 24px;
  padding: clamp(32px, 3.5vw, 44px);
  display: flex; flex-direction: column; gap: 18px;
  box-shadow: 0 24px 60px -28px rgba(35,32,33,0.22), 0 4px 16px rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  border: 1px solid var(--border, #ECE7DF);
}
.lstn-card::before {
  content: ''; position: absolute;
  top: 0; left: clamp(32px, 3.5vw, 44px); width: 36px; height: 3px;
  background: var(--rot);
}
.lstn-card:hover {
  border-color: rgba(217,36,49,0.25);
}
.lstn-card__top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 4px;
}
.lstn-card__icon {
  width: 64px; height: 64px; border-radius: 18px;
  background: var(--rot-glow, rgba(217,36,49,0.1));
  display: grid; place-items: center;
  font-size: 2rem; line-height: 1;
  flex-shrink: 0;
}
.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;
}
.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 — Magazin mit Pattern-Background
   =========================================== */
.ansp {
  position: relative;
  padding: clamp(72px, 8vw, 120px) 0;
  background: #F5EFE6;
  overflow: hidden;
}
.ansp__bg {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none;
  display: flex; align-items: stretch; justify-content: stretch;
}
.ansp__bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  opacity: 0.85;
}
.ansp::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(245,239,230,0.0) 0%, rgba(245,239,230,0.4) 70%, rgba(245,239,230,0.85) 100%);
  pointer-events: none;
}
.ansp__inner { position: relative; z-index: 2; }
.ansp__head {
  text-align: center; max-width: 880px; margin: 0 auto clamp(48px, 6vw, 80px);
}
.ansp__head h2 {
  font-size: clamp(1.45rem, 4.4vw, 3.6rem);
  font-weight: 800; line-height: 1.15; letter-spacing: -0.025em;
  color: var(--ink); margin: 0 auto 24px;
}
.ansp__head h2::after {
  content: ""; display: block;
  width: 72px; height: 4px;
  background: var(--rot); border-radius: 2px;
  margin: 28px auto 0;
}
.ansp__head .lead {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.65; color: var(--text); margin: 0;
}
.ansp__head .lead strong { font-weight: 800; color: var(--ink); }

.ansp__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(20px, 2.5vw, 28px); align-items: start;
}
.ansp__card {
  background: #fff; border-radius: 22px;
  padding: clamp(28px, 3vw, 36px);
  display: flex; flex-direction: column; gap: 18px;
  box-shadow: 0 20px 50px -25px rgba(35,32,33,0.18), 0 4px 16px rgba(0,0,0,0.04);
  position: relative;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.ansp__card:hover { border-color: rgba(217,36,49,0.25); }
.ansp__card::before {
  content: ''; position: absolute;
  top: 0; left: clamp(28px, 3vw, 36px); width: 36px; height: 3px;
  background: var(--rot);
}
.ansp__card h3 {
  font-size: clamp(1.4rem, 1.9vw, 1.7rem);
  font-weight: 800; line-height: 1.2; margin: 0; letter-spacing: -0.015em;
  color: var(--ink);
}
.ansp__card h3 em { font-style: normal; color: var(--rot); }
.ansp__intro {
  font-size: 1.05rem; font-weight: 800; color: var(--ink);
  margin: 0; line-height: 1.4; letter-spacing: -0.01em;
}
.ansp__sub {
  font-size: 0.95rem; line-height: 1.6; color: var(--text);
  margin: 0; font-weight: 500;
}
.ansp__list {
  list-style: none; padding: 0; margin: 4px 0 0;
  display: flex; flex-direction: column; gap: 16px;
}
.ansp__list li {
  position: relative; padding-left: 30px;
  font-size: 0.95rem; line-height: 1.6; color: var(--text);
}
.ansp__list li::before {
  content: ""; position: absolute; left: 0; top: 6px;
  width: 18px; height: 18px; 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.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: 12px;
}
.ansp__list li strong { display: block; color: var(--ink); font-weight: 800; margin-bottom: 4px; line-height: 1.35; }
.ansp__list li span { color: var(--muted); font-weight: 400; line-height: 1.55; }
.ansp__list li a { color: var(--rot); font-weight: 700; border-bottom: 1px dotted var(--rot); }
.ansp__card--featured .ansp__list li a { color: #FBBF24; border-bottom-color: #FBBF24; }
@media (max-width: 980px) { .ansp__grid { grid-template-columns: 1fr; } }

/* ===========================================
   GALERIE
   =========================================== */
.galerie {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  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;
}
@media (max-width: 880px) {
  .galerie { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .galerie__item--gross { grid-column: span 2; }
}

/* ===========================================
   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: 280px; }
}

/* ===========================================
   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; }
}

/* ===========================================
   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: 56px; width: auto;
  background: #fff; border-radius: 12px; padding: 6px;
}
.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 {
    font-size: clamp(1.55rem, 5vw, 2rem);
    line-height: 1.2;
  }
  .section .lead, .ansp__head .lead { font-size: 0.97rem; }

  .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%; }
  .gesch__intro h2 { font-size: clamp(1.6rem, 5.5vw, 2.2rem); }

  .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__brand img { height: 48px; }
  .footer__brand span { font-size: 1rem; }

  /* 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 */
  .section { padding-top: clamp(28px, 6vw, 44px); padding-bottom: clamp(28px, 6vw, 44px); }
  .ansp, .gesch { padding-top: clamp(28px, 6vw, 44px); padding-bottom: clamp(28px, 6vw, 44px); }
  .h2026 { padding-bottom: 28px; }
  .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: 42px; height: 42px; font-size: 1.25rem; border-radius: 12px; }
  .lstn-card h3 { font-size: 1.1rem; }
  .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; }
}
