:root {
  --green: #355947;
  --green-2: #486b57;
  --sage: #a9c9a8;
  --sage-light: #ddead8;
  --orange: #e9965b;
  --orange-dark: #c9733f;
  --gold: #f2bc57;
  --cream: #fff7ec;
  --cream-2: #f5ebdd;
  --paper: #fffdf8;
  --ink: #26362e;
  --muted: #6f7d75;
  --white: #ffffff;
  --line: rgba(53, 89, 71, .14);
  --shadow: 0 24px 70px rgba(53, 89, 71, .14);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.62;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 253, 248, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.nav {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img { width: 230px; height: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 19px;
  color: var(--green);
}
.nav-links a {
  font-size: .9rem;
  font-weight: 800;
}
.nav-links a:hover,
.nav-links a.active { color: var(--orange-dark); }
.nav-cta {
  padding: 11px 17px;
  border-radius: 999px;
  background: var(--green);
  color: var(--cream) !important;
  box-shadow: 0 8px 0 var(--sage);
}
.nav-toggle {
  display: none;
  border: 0;
  border-radius: 999px;
  padding: 10px 15px;
  background: var(--green);
  color: var(--cream);
  font-weight: 900;
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
}
.household-hero {
  padding: 82px 0 0;
  background:
    radial-gradient(circle at 10% 15%, rgba(169, 201, 168, .44), transparent 24%),
    radial-gradient(circle at 92% 4%, rgba(233, 150, 91, .22), transparent 27%),
    linear-gradient(180deg, var(--cream), #fffdf9 68%);
}
.household-hero::before,
.household-page-hero::before,
.garden-page-hero::before {
  content: "";
  position: absolute;
  width: 390px;
  height: 390px;
  border: 58px solid rgba(169, 201, 168, .18);
  border-radius: 50%;
  right: -160px;
  top: -160px;
}
.hero-grid,
.page-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 54px;
  align-items: center;
}
.flyer-kicker,
.eyebrow {
  margin: 0 0 13px;
  color: var(--orange-dark);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.quality-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--sage-light);
  color: var(--green);
  font-size: .86rem;
  font-weight: 900;
  margin-bottom: 22px;
}
h1, h2, h3 { margin: 0; line-height: 1.08; }
h1 {
  max-width: 760px;
  font-size: clamp(3rem, 6vw, 6rem);
  letter-spacing: -.06em;
  color: var(--green);
}
h2 {
  font-size: clamp(2.15rem, 4vw, 3.65rem);
  letter-spacing: -.045em;
  color: var(--green);
}
h3 { font-size: 1.35rem; color: var(--green); }
.hero-lead,
.lead {
  max-width: 700px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn.primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 9px 0 var(--sage);
}
.btn.primary:hover { box-shadow: 0 12px 0 var(--sage); }
.btn.secondary {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn.secondary.dark { color: var(--green); border-color: var(--green); }
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.hero-points span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.74);
  border: 1px solid var(--line);
  color: var(--green);
  font-size: .84rem;
  font-weight: 800;
}
.friendly-visual,
.page-illustration { position: relative; }
.hero-illustration,
.page-illustration {
  margin: 0;
  border-radius: 38px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-illustration {
  border: 10px solid var(--paper);
  transform: rotate(1.5deg);
}
.hero-label {
  position: absolute;
  left: -24px;
  bottom: 24px;
  max-width: 285px;
  padding: 18px 20px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.warm-label {
  background: var(--green);
  border-left: 8px solid var(--orange);
}
.hero-label strong {
  display: block;
  color: var(--cream);
  font-size: 1.04rem;
  text-transform: uppercase;
}
.hero-label span { color: rgba(255,247,236,.78); font-size: .92rem; }

.contact-bar { position: relative; z-index: 3; margin-top: 64px; }
.soft-contact-bar { background: var(--green); color: var(--cream); }
.contact-bar-inner {
  min-height: 84px;
  display: grid;
  grid-template-columns: 1.1fr .8fr 1fr;
  align-items: center;
  gap: 20px;
}
.contact-bar strong { font-size: 1.1rem; text-transform: uppercase; }
.contact-bar a { font-weight: 900; }
.contact-bar .highlight {
  align-self: stretch;
  display: grid;
  place-items: center;
  background: var(--orange);
  padding: 0 18px;
  text-align: center;
  color: var(--white);
}

.section { padding: 92px 0; }
.section.light { background: var(--paper); }
.sage-section { background: var(--sage-light); }
.extras-section { background: var(--cream-2); }
.about-section { background: linear-gradient(180deg, var(--cream), #f8f1e7); }
.section-head { max-width: 860px; margin-bottom: 36px; }
.section-head.centered { text-align: center; margin-inline: auto; }
.section-head p:not(.eyebrow) { color: var(--muted); font-size: 1.05rem; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  position: relative;
  min-height: 240px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--cream);
  border: 1px solid var(--line);
  box-shadow: 0 16px 45px rgba(53,89,71,.08);
}
.service-card:nth-child(even) { background: #f3f8f1; }
.service-card::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 20px;
  width: 38px;
  height: 7px;
  border-radius: 999px;
  background: var(--orange);
}
.service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--green);
  color: var(--cream);
  font-size: 1.65rem;
  font-weight: 900;
  margin-bottom: 20px;
}
.service-card p { color: var(--muted); margin: 12px 0 0; }
.service-note {
  margin: 25px 0 0;
  padding: 15px 18px;
  border-radius: 18px;
  background: var(--sage-light);
  color: var(--green);
  font-weight: 800;
  text-align: center;
}

.service-duo {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-poster {
  min-height: 330px;
  padding: 36px;
  border-radius: 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: var(--shadow);
}
.home-poster { background: var(--green); color: var(--cream); }
.garden-poster { background: var(--paper); border: 2px solid rgba(53,89,71,.16); }
.service-poster h3 { font-size: 2.2rem; margin-bottom: 14px; }
.home-poster h3 { color: var(--cream); }
.service-poster p { margin: 0 0 25px; color: var(--muted); }
.home-poster p { color: rgba(255,247,236,.78); }
.poster-tag {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-weight: 900;
  margin-bottom: auto;
}

.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.price-card,
.review-form,
.review-card,
.contact-form,
.stats {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px;
}
.price-card.featured {
  background: var(--green);
  color: var(--cream);
  transform: translateY(-10px);
}
.price-card.featured h3 { color: var(--cream); }
.package-label {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--sage-light);
  color: var(--green);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.price-card.featured .package-label { background: rgba(255,247,236,.14); color: var(--cream); }
.badge {
  position: absolute;
  right: 22px;
  top: 22px;
  padding: 6px 11px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  font-size: .78rem;
  font-weight: 900;
}
.price {
  margin: 14px 0 16px;
  color: var(--orange-dark);
  font-size: 2.55rem;
  font-weight: 900;
}
.price-card.featured .price { color: var(--gold); }
.price-card ul { padding-left: 20px; color: var(--muted); margin-bottom: 26px; }
.price-card.featured ul { color: rgba(255,247,236,.78); }
.price-card .btn { margin-top: auto; }
.note { text-align: center; color: var(--muted); margin-top: 26px; }

.extras-grid,
.reviews-grid,
.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: start;
}
.extras-grid p:not(.eyebrow),
.about-grid p,
.contact-grid p { color: var(--muted); }
.extras-list {
  display: grid;
  gap: 12px;
}
.extras-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
}
.extras-list strong { color: var(--green); }
.extras-list span { color: var(--orange-dark); font-weight: 800; text-align: right; }

.rating-summary {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
  padding: 20px 24px;
  border-radius: 24px;
  background: var(--green);
  color: var(--cream);
}
.rating-score { font-size: 3rem; font-weight: 900; }
.stars-display { color: var(--gold); letter-spacing: .12em; }
.review-form,
.contact-form { display: grid; gap: 16px; padding: 28px; }
.review-form h3 { font-size: 1.55rem; }
.form-note { color: var(--muted); font-size: .9rem; margin: 0; }
.star-picker { display: flex; gap: 8px; }
.star-btn {
  width: 45px;
  height: 45px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--cream);
  color: #c7b99d;
  font-size: 1.5rem;
  cursor: pointer;
}
.star-btn.active { background: #fff5d9; color: var(--gold); }
.review-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 28px;
}
.review-card { padding: 25px; }
.review-meta { display: flex; justify-content: space-between; gap: 12px; font-weight: 900; }
.review-card blockquote { margin: 14px 0; color: var(--muted); }
.review-date { color: var(--muted); font-size: .88rem; font-weight: 700; }

.stats { padding: 28px; }
.stats div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.stats div:last-child { border-bottom: 0; }
.stats strong { color: var(--green); font-size: 1.8rem; }
.stats span { color: var(--muted); font-weight: 800; text-align: right; }

.cta-section { padding: 32px 0 82px; background: var(--cream); }
.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 44px;
  border-radius: 36px;
  box-shadow: var(--shadow);
}
.friendly-cta {
  background:
    radial-gradient(circle at 88% 15%, rgba(233,150,91,.28), transparent 25%),
    var(--green);
  color: var(--cream);
}
.friendly-cta h2 { color: var(--cream); }
.friendly-cta p:not(.eyebrow) { margin: 10px 0 0; color: rgba(255,247,236,.78); }

.contact-list { display: grid; gap: 13px; margin-top: 28px; }
.contact-list a,
.contact-list p {
  margin: 0;
  padding: 18px;
  border-radius: 18px;
  background: var(--cream-2);
  color: var(--green);
  font-weight: 900;
}
.contact-list span {
  display: block;
  color: var(--muted);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .1em;
}
label { display: grid; gap: 8px; font-weight: 800; color: var(--green); }
input, select, textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--cream);
  color: var(--ink);
}
input:focus, select:focus, textarea:focus {
  outline: 3px solid rgba(233,150,91,.24);
  border-color: var(--orange);
}

.page-hero { padding: 84px 0 74px; background: var(--cream); }
.household-page-hero {
  background:
    radial-gradient(circle at 14% 14%, rgba(169,201,168,.34), transparent 25%),
    linear-gradient(180deg, var(--cream), #fffdf8);
}
.garden-page-hero {
  background:
    radial-gradient(circle at 10% 20%, rgba(169,201,168,.45), transparent 25%),
    linear-gradient(180deg, #f4f8f0, var(--cream));
}
.page-hero h1 { font-size: clamp(2.8rem, 5vw, 5.2rem); }
.page-illustration { box-shadow: var(--shadow); }
.garden-photo {
  margin: 0;
  min-height: 470px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 10px solid var(--paper);
}
.garden-photo img,
.garden-mini-photo img { width: 100%; height: 100%; object-fit: cover; }
.garden-mini-photo {
  min-height: 330px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.footer {
  padding: 46px 0;
  background: var(--green);
  color: var(--cream);
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,247,236,.18);
}
.footer-grid p { margin: 7px 0 0; color: rgba(255,247,236,.72); }
.footer-grid a { display: inline-block; margin-left: 18px; color: var(--gold); font-weight: 900; }
.legal { color: rgba(255,247,236,.72); font-size: .92rem; margin-top: 26px; }
.legal h2 { color: var(--cream); font-size: 1.35rem; }

@media (max-width: 930px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    top: 86px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    border-radius: 24px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .hero-grid,
  .page-hero-grid,
  .extras-grid,
  .reviews-grid,
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .service-grid,
  .pricing,
  .review-list { grid-template-columns: 1fr 1fr; }
  .contact-bar-inner { grid-template-columns: 1fr; padding: 20px 0; text-align: center; }
  .contact-bar .highlight { min-height: 58px; border-radius: 16px; }
  .hero-label { left: 16px; }
  .price-card.featured { transform: none; }
}

@media (max-width: 650px) {
  .container { width: min(100% - 28px, 1160px); }
  .brand img { width: 185px; }
  .household-hero { padding-top: 58px; }
  .section { padding: 62px 0; }
  .page-hero { padding: 62px 0; }
  .service-grid,
  .service-duo,
  .pricing,
  .review-list { grid-template-columns: 1fr; }
  .hero-illustration { border-width: 6px; transform: none; }
  .hero-label { position: relative; left: 0; bottom: auto; margin-top: 14px; max-width: none; }
  .service-card { min-height: 0; }
  .cta-box { flex-direction: column; align-items: flex-start; padding: 30px; }
  .extras-list div { flex-direction: column; gap: 4px; }
  .extras-list span { text-align: left; }
  .footer-grid { flex-direction: column; }
  .footer-grid a { margin-left: 0; margin-right: 18px; }
  .garden-photo { min-height: 300px; }
}

/* Mobile-first Nachoptimierung */
:root {
  --mobile-bar-height: 68px;
}

body {
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

.mobile-quick-actions {
  display: none;
}

@media (max-width: 930px) {
  body.nav-open {
    overflow: hidden;
  }

  .site-header {
    padding-top: env(safe-area-inset-top);
  }

  .nav {
    min-height: 74px;
  }

  .brand img {
    width: 195px;
  }

  .nav-toggle {
    min-width: 50px;
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    cursor: pointer;
  }

  .nav-links {
    position: fixed;
    z-index: 100;
    top: calc(74px + env(safe-area-inset-top));
    left: 14px;
    right: 14px;
    max-height: calc(100dvh - 92px - env(safe-area-inset-top));
    overflow-y: auto;
    gap: 6px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255,253,248,.99);
    box-shadow: 0 24px 70px rgba(38,54,46,.24);
  }

  .nav-links a {
    min-height: 50px;
    display: flex;
    align-items: center;
    padding: 12px 14px;
    border-radius: 14px;
    font-size: 1rem;
  }

  .nav-links a:not(.nav-cta):hover,
  .nav-links a:not(.nav-cta):focus-visible,
  .nav-links a.active {
    background: var(--sage-light);
  }

  .nav-cta {
    justify-content: center;
    margin-top: 6px;
    box-shadow: none;
  }

  .hero-grid,
  .page-hero-grid {
    gap: 34px;
  }

  .hero-copy,
  .page-hero-grid > div:first-child {
    max-width: 720px;
  }

  .service-card,
  .price-card,
  .review-card,
  .review-form,
  .contact-form,
  .stats {
    box-shadow: 0 14px 38px rgba(53,89,71,.11);
  }
}

@media (max-width: 650px) {
  body {
    padding-bottom: calc(var(--mobile-bar-height) + env(safe-area-inset-bottom));
  }

  .container {
    width: min(100% - 24px, 1160px);
  }

  .nav {
    min-height: 68px;
    gap: 12px;
  }

  .brand img {
    width: 162px;
  }

  .nav-toggle {
    min-width: 46px;
    min-height: 44px;
    padding: 8px 12px;
  }

  .nav-links {
    top: calc(68px + env(safe-area-inset-top));
    left: 10px;
    right: 10px;
    max-height: calc(100dvh - 84px - env(safe-area-inset-top));
  }

  .household-hero,
  .page-hero {
    padding-top: 38px;
  }

  .hero-grid,
  .page-hero-grid,
  .extras-grid,
  .reviews-grid,
  .about-grid,
  .contact-grid {
    gap: 28px;
  }

  h1,
  .page-hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.55rem);
    line-height: 1.02;
    letter-spacing: -.05em;
  }

  h2 {
    font-size: clamp(1.85rem, 8vw, 2.65rem);
    line-height: 1.08;
  }

  h3 {
    font-size: 1.22rem;
  }

  .flyer-kicker,
  .eyebrow {
    font-size: .72rem;
    letter-spacing: .12em;
  }

  .quality-pill {
    margin-bottom: 16px;
    padding: 7px 12px;
    font-size: .8rem;
  }

  .hero-lead,
  .lead {
    margin-top: 18px;
    font-size: 1.02rem;
    line-height: 1.55;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 24px;
  }

  .hero-actions .btn,
  .price-card .btn,
  .review-form .btn,
  .contact-form .btn,
  .cta-box .btn {
    width: 100%;
    min-height: 52px;
  }

  .hero-points {
    gap: 8px;
    margin-top: 22px;
  }

  .hero-points span {
    flex: 1 1 calc(50% - 8px);
    min-width: 130px;
    text-align: center;
    padding: 9px 10px;
    font-size: .78rem;
  }

  .hero-illustration,
  .page-illustration,
  .garden-photo,
  .garden-mini-photo {
    border-radius: 24px;
  }

  .hero-label {
    padding: 16px 17px;
    border-radius: 18px;
  }

  .contact-bar {
    margin-top: 38px;
  }

  .contact-bar-inner {
    gap: 10px;
    padding: 16px 0;
  }

  .contact-bar strong,
  .contact-bar a {
    font-size: .93rem;
  }

  .contact-bar .highlight {
    min-height: 52px;
    padding: 10px 12px;
  }

  .section {
    padding: 56px 0;
  }

  .section-head {
    margin-bottom: 26px;
  }

  .section-head p:not(.eyebrow) {
    font-size: .98rem;
  }

  .service-grid,
  .service-duo,
  .pricing,
  .review-list {
    gap: 14px;
  }

  .service-card,
  .price-card,
  .review-card,
  .review-form,
  .contact-form,
  .stats,
  .service-poster {
    padding: 22px;
    border-radius: 22px;
  }

  .service-card {
    min-height: auto;
  }

  .service-card::after {
    right: 18px;
    bottom: 16px;
  }

  .service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    border-radius: 15px;
  }

  .service-poster {
    min-height: 280px;
  }

  .service-poster h3 {
    font-size: 1.8rem;
  }

  .price {
    font-size: 2.25rem;
  }

  .badge {
    position: static;
    align-self: flex-start;
    margin-bottom: 10px;
  }

  .extras-list {
    gap: 9px;
  }

  .extras-list div {
    padding: 15px 16px;
    border-radius: 15px;
  }

  .rating-summary {
    width: 100%;
    justify-content: center;
    padding: 17px 18px;
  }

  .rating-score {
    font-size: 2.55rem;
  }

  .star-picker {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 7px;
  }

  .star-btn {
    width: 100%;
    min-width: 0;
    height: 48px;
    font-size: 1.35rem;
  }

  .review-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .stats div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .stats span {
    text-align: left;
  }

  .cta-section {
    padding: 18px 0 58px;
  }

  .cta-box {
    gap: 22px;
    padding: 25px 22px;
    border-radius: 24px;
  }

  input,
  select,
  textarea {
    min-height: 50px;
    padding: 14px;
    border-radius: 13px;
    font-size: 16px;
  }

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

  .contact-list a,
  .contact-list p {
    padding: 16px;
  }

  .footer {
    padding: 38px 0 30px;
  }

  .footer-grid {
    gap: 18px;
  }

  .footer-grid div:last-child {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }

  .footer-grid a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    margin: 0;
  }

  .legal {
    font-size: .86rem;
    overflow-wrap: break-word;
    word-break: normal;
  }

  .mobile-quick-actions {
    position: fixed;
    z-index: 120;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    min-height: var(--mobile-bar-height);
    padding-bottom: env(safe-area-inset-bottom);
    background: rgba(255,255,255,.9);
    border-top: 1px solid rgba(53,89,71,.18);
    box-shadow: 0 -10px 28px rgba(38,54,46,.14);
    backdrop-filter: blur(14px);
  }

  .mobile-quick-actions a {
    min-height: var(--mobile-bar-height);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 900;
    font-size: 1rem;
  }

  .mobile-action-call {
    background: var(--green);
    color: var(--cream);
  }

  .mobile-action-mail {
    background: var(--orange);
    color: var(--white);
  }

  .mobile-quick-actions span {
    font-size: 1.18rem;
  }
}

@media (max-width: 380px) {
  .container {
    width: min(100% - 18px, 1160px);
  }

  .brand img {
    width: 145px;
  }

  h1,
  .page-hero h1 {
    font-size: 2.15rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero-points span {
    flex-basis: 100%;
  }

  .service-card,
  .price-card,
  .review-card,
  .review-form,
  .contact-form,
  .stats,
  .service-poster {
    padding: 19px;
  }
}


/* Zusätzliche Bild- und Lesbarkeitsoptimierung */
p,
li,
h1,
h2,
h3,
a,
span,
strong,
label,
input,
select,
textarea,
blockquote {
  word-break: normal;
  overflow-wrap: break-word;
  hyphens: manual;
}

.hero-photo-frame img,
.about-photo-card img,
.page-photo-panel img,
.showcase-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-showcase {
  background: linear-gradient(180deg, #fffefb, var(--cream));
}

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

.single-highlight {
  grid-template-columns: 1fr;
}

.showcase-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.showcase-card-wide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.showcase-photo {
  margin: 0;
  min-height: 280px;
}

.showcase-copy {
  padding: 28px;
}

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

.benefit-list {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.benefit-list li + li {
  margin-top: 8px;
}

.about-grid-enhanced {
  align-items: start;
}

.about-side-block {
  display: grid;
  gap: 22px;
}

.about-photo-card,
.page-photo-panel {
  margin: 0;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 320px;
}

.page-photo-panel {
  border: 10px solid var(--paper);
}

@media (max-width: 930px) {
  .showcase-grid,
  .showcase-card-wide {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 650px) {
  .showcase-grid {
    gap: 14px;
  }

  .showcase-card,
  .showcase-copy,
  .about-photo-card,
  .page-photo-panel {
    border-radius: 22px;
  }

  .showcase-copy {
    padding: 22px;
  }

  .showcase-photo,
  .about-photo-card,
  .page-photo-panel {
    min-height: 220px;
  }
}

/* Erweiterungen für Startseite und Winterservice */
.visual-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.visual-service-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.visual-service-card .showcase-photo {
  min-height: 240px;
}

.visual-service-card .showcase-copy {
  display: grid;
  gap: 12px;
}

.visual-service-card .btn {
  justify-self: start;
  margin-top: 6px;
}

.winter-page-hero {
  background:
    radial-gradient(circle at 10% 18%, rgba(193, 220, 235, .42), transparent 26%),
    linear-gradient(180deg, #f5f9fc, var(--cream));
}

@media (max-width: 930px) {
  .visual-service-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 650px) {
  .visual-service-card {
    border-radius: 22px;
  }

  .visual-service-card .showcase-photo {
    min-height: 220px;
  }

  .visual-service-card .btn {
    width: 100%;
    justify-self: stretch;
  }
}
