/* AlltagsEngel Aurich – ruhiges, barrierearmes Layout */
:root {
  --green: #2f5d50;
  --green-dark: #1f3f36;
  --green-deep: #142b24;
  --green-soft: #e8f0eb;
  --cream: #f7f1e8;
  --beige: #eadfce;
  --warm: #fffaf2;
  --white: #ffffff;
  --text: #1f2a26;
  --muted: #5f6b64;
  --border: #d9d0c1;
  --accent: #9a5c38;
  --accent-dark: #754027;
  --error: #8a1f1f;
  --success: #245d3b;
  --shadow-sm: 0 2px 10px rgba(31, 63, 54, 0.08);
  --shadow-md: 0 14px 34px rgba(31, 63, 54, 0.14);
  --radius: 14px;
  --radius-lg: 24px;
  --max-width: 1160px;
  --font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--warm);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration-thickness: 0.08em; text-underline-offset: 0.18em; }
a:hover { color: var(--accent-dark); }
p { margin: 0 0 1rem; }
h1, h2, h3 { margin: 0; color: var(--green-dark); line-height: 1.15; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.1rem, 5.7vw, 4.05rem); }
h2 { font-size: clamp(1.65rem, 3.8vw, 2.45rem); }
h3 { font-size: clamp(1.12rem, 2.4vw, 1.35rem); }
strong { color: var(--green-dark); }

.skip-link {
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  z-index: 9999;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--green-dark);
  border-radius: 999px;
  transform: translateY(-140%);
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(100% - 2rem, var(--max-width)); margin-inline: auto; }
.section { padding: clamp(3rem, 8vw, 5.8rem) 0; }
.section-sm { padding: clamp(2.2rem, 6vw, 4rem) 0; }
.section-white { background: var(--white); }
.section-alt { background: var(--cream); }
.section-soft-green { background: var(--green-soft); }
.section-dark { background: var(--green-dark); color: var(--white); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark strong { color: var(--white); }
.section-dark p, .section-dark .lead { color: rgba(255,255,255,0.86); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  margin-bottom: 0.85rem;
  color: var(--green);
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}
.eyebrow::before { content: ""; width: 0.7rem; height: 0.7rem; border-radius: 50%; background: var(--green); }
.section-dark .eyebrow { color: var(--white); }
.section-dark .eyebrow::before { background: var(--beige); }
.lead { max-width: 760px; margin-top: 1.1rem; color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.18rem); }
.text-muted { color: var(--muted); }
.inline-link { color: var(--accent-dark); font-weight: 800; }

/* Header und Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 250, 242, 0.97);
  border-bottom: 1px solid rgba(217, 208, 193, 0.9);
  backdrop-filter: blur(10px);
}
.nav-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand, .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.78rem;
  color: var(--green-dark);
  text-decoration: none;
  flex-shrink: 0;
}
.brand-logo {
  width: 84px;
  height: auto;
  display: block;
  flex-shrink: 0;
  background: transparent;
}
.footer-brand .brand-logo {
  width: 72px;
}
.brand-text { display: block; }
.brand-name { display: block; font-size: 1.22rem; line-height: 1.1; font-weight: 900; }
.brand-subline { display: block; margin-top: 0.12rem; color: var(--muted); font-size: 0.78rem; line-height: 1.2; }
.main-nav, .nav-actions { display: none; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: nowrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-list li { flex: 0 0 auto; }
.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--green-dark);
  text-decoration: none;
  font-weight: 800;
  font-size: 0.94rem;
  padding: 0.45rem 0.35rem;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
}
.nav-link:hover,
.nav-link[aria-current="page"] { color: var(--accent-dark); border-color: var(--accent); }
.nav-link-cta {
  padding: 0.58rem 1rem;
  min-height: 44px;
  color: var(--white);
  background: var(--green);
  border: 2px solid var(--green);
  border-radius: 999px;
}
.nav-link-cta:hover,
.nav-link-cta[aria-current="page"] {
  color: var(--white);
  background: var(--green-dark);
  border-color: var(--green-dark);
}
.nav-actions { align-items: center; gap: 0.65rem; flex-shrink: 0; }
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: var(--green-dark);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
}
.nav-toggle svg { width: 26px; height: 26px; }
.nav-mobile { border-top: 1px solid var(--border); background: var(--warm); padding: 0.75rem 1rem 1rem; }
.nav-mobile[hidden] { display: none; }
.nav-mobile a {
  display: block;
  padding: 0.9rem 0.25rem;
  color: var(--green-dark);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid rgba(217, 208, 193, 0.72);
  white-space: nowrap;
}
.nav-mobile a[aria-current="page"] { color: var(--accent-dark); }
.nav-mobile .mobile-actions { display: grid; gap: 0.7rem; padding-top: 0.9rem; }
.nav-mobile .mobile-actions a { border-bottom: 2px solid transparent; text-align: center; }
@media (min-width: 1120px) {
  .nav-toggle, .nav-mobile { display: none !important; }
  .main-nav, .nav-actions { display: flex; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.85rem 1.25rem;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  line-height: 1.2;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}
.btn:hover, .btn:focus { transform: translateY(-1px); }
.btn-primary { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-primary:hover, .btn-primary:focus { background: var(--green-dark); border-color: var(--green-dark); color: var(--white); }
.btn-secondary { background: var(--white); color: var(--green-dark); border-color: var(--green); }
.btn-secondary:hover, .btn-secondary:focus { background: var(--cream); color: var(--green-dark); border-color: var(--green-dark); }
.section-dark .btn-primary,
.hero--green .btn-primary,
.cta-dark .btn-primary {
  background: var(--white);
  color: var(--green-dark);
  border-color: var(--white);
}
.section-dark .btn-primary:hover,
.hero--green .btn-primary:hover,
.cta-dark .btn-primary:hover {
  background: var(--cream);
  color: var(--green-dark);
  border-color: var(--cream);
}
.section-dark .btn-secondary,
.hero--green .btn-secondary,
.cta-dark .btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.section-dark .btn-secondary:hover,
.hero--green .btn-secondary:hover,
.cta-dark .btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: var(--white);
}
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.btn-full { width: 100%; }
.btn-nav-call { min-height: 44px; padding: 0.62rem 1rem; font-size: 0.94rem; }

/* Hero */
.hero { padding: clamp(3rem, 8vw, 6.2rem) 0; background: linear-gradient(135deg, var(--warm), var(--cream)); overflow: hidden; }
.hero-grid { display: grid; gap: 2rem; align-items: center; }
.hero-copy p { max-width: 720px; margin-top: 1.05rem; font-size: clamp(1.06rem, 2vw, 1.2rem); color: var(--muted); }
.hero .button-row { margin-top: 1.55rem; }
.hero-visual { position: relative; min-height: 100%; }
.hero-image { position: relative; display: block; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 16 / 9; }
.hero-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(31,63,54,0.04), rgba(31,63,54,0.12)); }
.hero-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-logo-badge { display: none; }
.hero-logo-badge img { width: 100%; height: auto; display: block; }
.hero-person-card { position: absolute; left: 1rem; bottom: 1rem; display: grid; grid-template-columns: 92px 1fr; gap: 0.85rem; align-items: center; max-width: min(92%, 355px); padding: 0.8rem; background: rgba(255,255,255,0.92); border: 1px solid rgba(217, 208, 193, 0.88); border-radius: 20px; box-shadow: var(--shadow-md); }
.hero-person-photo { display: block; border-radius: 16px; overflow: hidden; aspect-ratio: 4 / 5; }
.hero-person-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-person-copy strong { display: block; color: var(--green-dark); font-size: 1.02rem; line-height: 1.15; }
.hero-person-copy span { display: block; margin-top: 0.2rem; color: var(--muted); font-size: 0.92rem; line-height: 1.35; }
.trust-strip {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.6rem;
}
.trust-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: start;
  padding: 0.88rem;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(217, 208, 193, 0.82);
  border-radius: 16px;
}
.check-dot { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: var(--green); color: var(--white); font-weight: 900; }
.trust-item strong { display: block; font-size: 0.98rem; }
.trust-item span:not(.check-dot) { display: block; color: var(--muted); font-size: 0.93rem; line-height: 1.45; }
@media (min-width: 920px) {
  .hero-grid { grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr); }
  .trust-strip { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .hero-logo-badge { width: 118px; top: 0.75rem; right: 0.75rem; padding: 0.35rem; }
  .hero-person-card { left: 0.75rem; right: 0.75rem; bottom: 0.75rem; grid-template-columns: 74px 1fr; max-width: none; padding: 0.68rem; }
  .hero-person-copy strong { font-size: 0.98rem; }
  .hero-person-copy span { font-size: 0.86rem; }
}

/* General layout */
.page-hero { padding: clamp(2.6rem, 7vw, 5rem) 0; background: linear-gradient(135deg, var(--cream), var(--warm)); }
.page-hero .lead { margin-bottom: 0; }
.page-hero-actions { margin-top: 1.4rem; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 0.45rem; align-items: center; margin-bottom: 1rem; color: var(--muted); font-size: 0.92rem; }
.breadcrumb a { color: var(--green-dark); font-weight: 800; text-decoration: none; }
.section-header { max-width: 780px; margin-bottom: 2rem; }
.section-header.center { margin-inline: auto; text-align: center; }
.section-header.center .eyebrow { margin-inline: auto; }
.grid { display: grid; gap: 1rem; }
.grid-3 { grid-template-columns: 1fr; }
@media (min-width: 760px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.card, .note-box, .kicker-card, .form-panel, .contact-card, .legal-content, .calendar-wrapper {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.card { padding: 1.35rem; }
.card p { color: var(--muted); margin-bottom: 0; }
.card-link { display: inline-flex; margin-top: 1rem; color: var(--accent-dark); font-weight: 800; text-decoration: none; }
.card-link::after { content: " →"; }
.note-box { padding: clamp(1.25rem, 3vw, 1.8rem); }
.note-box p { color: var(--muted); }
.list-clean { list-style: none; padding: 0; margin: 1rem 0 0; display: grid; gap: 0.65rem; }
.list-clean li { position: relative; padding-left: 1.55rem; }
.list-clean li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--green); font-weight: 900; }
.split { display: grid; gap: 2rem; align-items: center; }
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
@media (min-width: 860px) { .split { grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr); } }
.image-card { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.image-card img { width: 100%; height: 100%; min-height: 280px; object-fit: cover; }
.kicker-card { padding: clamp(1.4rem, 4vw, 2.25rem); display: grid; gap: 1.5rem; align-items: center; }
@media (min-width: 760px) { .kicker-card { grid-template-columns: 1fr auto; } }
.cta-panel { max-width: 820px; }
.cta-panel .button-row { margin-top: 1.3rem; }

/* About */
.about-hero { padding: clamp(2.6rem, 7vw, 5.2rem) 0; }
.about-hero-grid { display: grid; gap: 2rem; align-items: center; }
.about-hero__image picture { display: block; max-width: 430px; margin-inline: auto; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-md); background: var(--cream); }
.about-hero__image img { width: 100%; height: auto; object-fit: cover; }
.about-hero__quote { max-width: 430px; margin-inline: auto; padding: clamp(1.5rem, 4vw, 2.4rem); border-radius: 22px; background: linear-gradient(135deg, var(--cream), var(--warm)); border: 1px solid var(--border); box-shadow: var(--shadow-md); }
.about-hero__quote blockquote { margin: 0; }
.about-hero__quote p { margin: 0; color: var(--green-dark); font-size: clamp(1.28rem, 3vw, 1.85rem); font-weight: 800; line-height: 1.35; }
.about-hero__quote cite { display: block; margin-top: 1.1rem; color: var(--muted); font-size: 0.98rem; font-style: normal; font-weight: 800; }
.about-hero__content p { color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.16rem); }
.about-hero__content .button-row { margin-top: 1.4rem; }
@media (min-width: 880px) {
  .about-hero-grid { grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr); }
  .about-hero__image picture, .about-hero__quote { margin-inline: 0; }
}

/* Kontakt & Termin */
.contact-quick-grid { display: grid; gap: 1rem; margin-top: 1.65rem; }
.contact-card { padding: 1.15rem; }
.contact-card span { display: block; margin-bottom: 0.25rem; color: var(--muted); font-weight: 800; font-size: 0.9rem; }
.contact-card a, .contact-card strong { color: var(--green-dark); font-size: clamp(1.05rem, 2vw, 1.22rem); font-weight: 900; word-break: break-word; text-decoration: none; }
.contact-quick-grid { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.contact-layout { display: grid; gap: 1.5rem; align-items: start; }
@media (min-width: 920px) { .contact-layout { grid-template-columns: 0.8fr 1.2fr; } }
.contact-note-actions { margin-top: 1.3rem; }
.form-panel { padding: clamp(1.25rem, 3vw, 2rem); }
.form-row { display: grid; gap: 1rem; }
@media (min-width: 700px) { .form-row.two { grid-template-columns: 1fr 1fr; } }
.form-group { margin-bottom: 1rem; }
label { display: block; margin-bottom: 0.38rem; font-weight: 800; color: var(--green-dark); }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  color: var(--text);
  min-height: 48px;
  padding: 0.8rem 0.9rem;
  font: inherit;
}
textarea { min-height: 150px; resize: vertical; }
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(47, 93, 80, 0.2); border-color: var(--green); }
.required { color: var(--error); font-weight: 900; }
.checkbox-row { display: grid; grid-template-columns: auto 1fr; gap: 0.7rem; align-items: start; margin: 1rem 0 1.2rem; }
.checkbox-row input { width: 22px; height: 22px; min-height: 0; margin-top: 0.22rem; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.alert { padding: 1rem; border-radius: 14px; margin: 1rem 0; }
.alert-success { background: #e5f3eb; border: 1px solid #acd5bd; color: var(--success); }
.alert-error { background: #fae8e8; border: 1px solid #e2abab; color: var(--error); }
.alert ul { margin: 0.55rem 0 0; }
.form-note { margin: 1rem 0 0; color: var(--muted); font-size: 0.95rem; }
.calendar-wrapper { padding: clamp(1rem, 3vw, 1.5rem); min-height: 420px; overflow: hidden; }
.calendar-wrapper [data-wk-widget] { min-height: 360px; }

/* Legal */
.legal-content { padding: clamp(1.4rem, 4vw, 2.4rem); max-width: 880px; }
.legal-content h2 { margin-top: 2rem; font-size: clamp(1.35rem, 2.5vw, 1.7rem); }
.legal-content h2:first-child { margin-top: 0; }
.placeholder-note { padding: 1rem; border-radius: 14px; background: var(--cream); border: 1px solid var(--border); color: var(--green-dark); font-weight: 700; margin-bottom: 1.4rem; }
.alias-page { min-height: 100vh; display: grid; place-items: center; padding: 2rem; background: var(--cream); }
.alias-card { max-width: 560px; padding: 2rem; background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); box-shadow: var(--shadow-md); text-align: center; }

/* Footer */
.footer { padding: 3.2rem 0 1.3rem; background: var(--green-deep); color: var(--white); }
.footer a { color: var(--white); }
.footer p { color: rgba(255,255,255,0.86); }
.footer .brand-name { color: var(--white); }
.footer .brand-subline { color: rgba(255,255,255,0.84); }
.footer .brand-logo { background: transparent; border-radius: 0; padding: 0; }
.footer-grid { display: grid; gap: 2rem; }
.footer h3 { color: var(--white); font-size: 1.05rem; margin-bottom: 0.8rem; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.45rem; color: rgba(255,255,255,0.84); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; margin-top: 2.2rem; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,0.16); color: rgba(255,255,255,0.84); font-size: 0.95rem; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.35fr 0.8fr 1fr 1fr; } }

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


/* Zusatzbereiche */
.price-summary-grid { display: grid; gap: 1rem; margin-top: 1.4rem; }
@media (min-width: 760px) { .price-summary-grid { grid-template-columns: repeat(3, 1fr); } }
.step-list { counter-reset: step; list-style: none; padding: 0; margin: 1rem 0 0; display: grid; gap: 0.9rem; }
.step-list li { position: relative; padding-left: 3rem; min-height: 2.2rem; }
.step-list li::before { counter-increment: step; content: counter(step); position: absolute; left: 0; top: 0; width: 2rem; height: 2rem; border-radius: 50%; display: grid; place-items: center; background: var(--green); color: var(--white); font-weight: 900; }
.review-score { font-size: clamp(1.45rem, 2.8vw, 2rem); font-weight: 900; color: var(--green-dark); margin-bottom: 0.6rem; }
.small-note { color: var(--muted); font-size: 0.94rem; }
.whatsapp-note { margin-top: 0.9rem; }
.contact-card p { margin: 0.35rem 0 0; color: var(--muted); font-size: 0.94rem; }
.footer-address { white-space: normal; }


/* Floating WhatsApp Kontakt */
.whatsapp-float {
  position: fixed !important;
  right: max(12px, env(safe-area-inset-right)) !important;
  bottom: max(14px, env(safe-area-inset-bottom)) !important;
  left: auto !important;
  top: auto !important;
  z-index: 9999 !important;
  width: 46px !important;
  height: 46px !important;
  min-width: 46px !important;
  max-width: 46px !important;
  min-height: 46px !important;
  max-height: 46px !important;
  display: grid !important;
  place-items: center !important;
  color: #fff !important;
  background: #25d366 !important;
  border-radius: 50% !important;
  border: 2px solid #fff !important;
  box-shadow: 0 10px 24px rgba(31, 63, 54, 0.24) !important;
  text-decoration: none !important;
  overflow: visible !important;
  line-height: 1 !important;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}
.whatsapp-float svg {
  width: 25px !important;
  height: 25px !important;
  max-width: 25px !important;
  max-height: 25px !important;
  display: block !important;
  flex: 0 0 auto !important;
}
.whatsapp-float:hover,
.whatsapp-float:focus {
  background: #1ebe5d !important;
  color: #fff !important;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 14px 28px rgba(31, 63, 54, 0.32) !important;
  outline: 3px solid rgba(37, 211, 102, 0.24);
}
.whatsapp-float .tip {
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  min-width: 215px;
  padding: 0.55rem 0.75rem;
  color: var(--white);
  background: var(--green-dark);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(31, 63, 54, 0.24);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.15;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}
.whatsapp-float .tip::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  width: 12px;
  height: 12px;
  background: var(--green-dark);
  transform: translateY(-50%) rotate(45deg);
}
.whatsapp-float:hover .tip,
.whatsapp-float:focus .tip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
@media (max-width: 640px) {
  .whatsapp-float {
    right: 12px !important;
    bottom: 14px !important;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    max-width: 44px !important;
    min-height: 44px !important;
    max-height: 44px !important;
  }
  .whatsapp-float svg {
    width: 23px !important;
    height: 23px !important;
    max-width: 23px !important;
    max-height: 23px !important;
  }
  .whatsapp-float .tip { display: none; }
}

/* Google-Bewertungen in einer klaren Widget-Ansicht */
.reviews-section { scroll-margin-top: 96px; }
.google-widget-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(217, 208, 193, 0.95);
  border-radius: 28px;
  box-shadow: var(--shadow-md);
}
.google-widget-card__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 3vw, 1.35rem);
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.google-widget-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  color: var(--green-dark);
  font-weight: 900;
}
.google-widget-brand__icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  background: #4285f4;
  font-weight: 900;
  box-shadow: var(--shadow-sm);
}
.google-widget-card__inner {
  display: grid;
  gap: 1.35rem;
  padding: clamp(1.1rem, 4vw, 2rem);
  background: linear-gradient(135deg, #ffffff 0%, #fffaf2 100%);
}
@media (min-width: 920px) {
  .google-widget-card__inner {
    grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
    align-items: stretch;
  }
}
.google-score-panel {
  display: grid;
  align-content: center;
  gap: 0.9rem;
  padding: clamp(1rem, 3vw, 1.4rem);
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.google-score-panel__logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.google-score-panel__logo img {
  width: 54px;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
}
.google-score-panel__logo strong { color: var(--green-dark); display: block; }
.google-score-panel__logo span { color: var(--muted); font-size: 0.94rem; }
.google-score-number {
  display: flex;
  align-items: end;
  gap: 0.4rem;
  color: var(--green-dark);
}
.google-score-number strong {
  font-size: clamp(3.8rem, 9vw, 5.3rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
}
.google-score-number span {
  margin-bottom: 0.55rem;
  color: var(--muted);
  font-weight: 900;
}
.star-row {
  color: #f5a400;
  letter-spacing: 0.08em;
  font-size: clamp(1.18rem, 3vw, 1.55rem);
  line-height: 1.15;
}
.google-score-panel p { margin: 0; color: var(--muted); }
.google-widget-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.google-widget-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 999px;
  padding: 0.4rem 0.72rem;
  background: #e9f5ee;
  border: 1px solid #b8dbc7;
  color: var(--green-dark);
  font-size: 0.9rem;
  font-weight: 800;
}
.google-reviews-panel {
  min-width: 0;
  display: grid;
  gap: 1rem;
}
.google-reviews-panel__intro {
  display: grid;
  gap: 0.65rem;
}
.google-reviews-panel__intro h2 { margin-bottom: 0; }
.google-reviews-panel__intro p { margin: 0; color: var(--muted); }
.google-review-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(285px, 1fr);
  gap: 1rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline proximity;
  padding: 0.2rem 0.2rem 0.75rem;
}
.google-review-slider::-webkit-scrollbar { height: 10px; }
.google-review-slider::-webkit-scrollbar-track { background: rgba(217,208,193,0.45); border-radius: 999px; }
.google-review-slider::-webkit-scrollbar-thumb { background: rgba(47,93,80,0.28); border-radius: 999px; }
.google-review-card {
  scroll-snap-align: start;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.google-review-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.google-review-person {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}
.google-review-avatar {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-weight: 900;
}
.google-review-person strong {
  display: block;
  color: var(--green-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.google-review-person span,
.google-review-card__text,
.google-review-card__meta,
.review-widget-note,
.review-transparency p,
.contact-review-mini span { color: var(--muted); }
.google-review-g {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #4285f4;
  background: #fff;
  border: 1px solid var(--border);
  font-weight: 900;
}
.google-review-card__text {
  margin: 0;
  line-height: 1.55;
}
.google-review-card__meta {
  margin-top: auto;
  font-size: 0.9rem;
}
.review-widget-note {
  margin: 0;
  font-size: 0.94rem;
}
.review-transparency {
  padding: 0.95rem 1rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
}
.review-transparency summary {
  cursor: pointer;
  color: var(--green-dark);
  font-weight: 900;
}
.review-transparency p { margin: 0.6rem 0 0; font-size: 0.94rem; }
.contact-review-mini {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}
.contact-review-mini strong { color: var(--green-dark); }
.contact-review-mini__top {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 0.9rem;
  align-items: center;
}
.contact-review-mini__top .star-row { font-size: 1.25rem; }
.contact-review-mini .google-widget-brand__icon { width: 30px; height: 30px; }

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

.review-card-live__rating { display:flex; flex-wrap:wrap; align-items:center; gap:0.45rem; color: var(--muted); font-size: 0.94rem; margin-top: 0.15rem; }
.review-card-live__rating strong { color: var(--green-dark); font-size: 0.96rem; }

.google-review-card__rating { display: flex; flex-wrap: wrap; align-items: center; gap: 0.45rem; color: var(--muted); font-size: 0.94rem; }
.google-review-card__rating strong { color: var(--green-dark); font-size: 0.96rem; }

@media (max-width: 560px) {
  .nav-inner { min-height: 72px; gap: 0.65rem; }
  .brand { gap: 0.58rem; min-width: 0; }
  .brand-logo { width: 70px; }
  .brand-name { font-size: 1.06rem; }
  .brand-subline { font-size: 0.72rem; }
  .hero .button-row, .page-hero-actions, .contact-note-actions { align-items: stretch; }
  .hero .button-row .btn, .page-hero-actions .btn, .contact-note-actions .btn { width: 100%; justify-content: center; }
  .btn { min-height: 48px; }
  .footer { padding-bottom: 5.5rem; }
}

.authority-box { margin-top: 1rem; padding: 1rem 1.1rem; border-radius: 18px; background: var(--warm); border: 1px solid var(--border); }
.authority-box h3 { margin-bottom: 0.55rem; font-size: 1.02rem; }
.authority-box p { margin: 0; color: var(--text); }
