/* =============================================
   W. Henkel – Garten- und Landschaftsbau
   Stylesheet (Production-Ready)
   ============================================= */

/* --- Local Fonts (DSGVO-konform) --- */
@font-face {
  font-family: 'Lato';
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  src: url('fonts/lato-light.ttf') format('truetype');
}
@font-face {
  font-family: 'Lato';
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url('fonts/lato-regular.ttf') format('truetype');
}
@font-face {
  font-family: 'Lato';
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url('fonts/lato-bold.ttf') format('truetype');
}
@font-face {
  font-family: 'Lato';
  font-weight: 900;
  font-style: normal;
  font-display: swap;
  src: url('fonts/lato-black.ttf') format('truetype');
}
@font-face {
  font-family: 'Playfair Display';
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url('fonts/playfair-semibold.ttf') format('truetype');
}
@font-face {
  font-family: 'Playfair Display';
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url('fonts/playfair-bold.ttf') format('truetype');
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-dark:   #2d5a1b;
  --green-mid:    #3d7a25;
  --green-light:  #5fa832;
  --green-pale:   #eaf4e1;
  --gold:         #b8860b;
  --text-dark:    #1c2415;
  --text-body:    #3a4233;
  --text-muted:   #6b7a5e;
  --white:        #ffffff;
  --off-white:    #f7faf4;
  --border:       #d4e4c4;
  --shadow:       0 4px 24px rgba(45,90,27,.12);
  --radius:       10px;
  --transition:   .25s ease;
  --font-sans:    'Lato', sans-serif;
  --font-serif:   'Playfair Display', serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}

a { color: var(--green-mid); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--green-light); }

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

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =============================================
   PAGE LOADER
   ============================================= */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .5s ease, visibility .5s ease;
}
.loader.hidden {
  opacity: 0;
  visibility: hidden;
}
.loader__spinner {
  width: 48px;
  height: 48px;
  border: 4px solid var(--green-pale);
  border-top-color: var(--green-light);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger > .fade-up:nth-child(1) { transition-delay: 0s; }
.stagger > .fade-up:nth-child(2) { transition-delay: .08s; }
.stagger > .fade-up:nth-child(3) { transition-delay: .16s; }
.stagger > .fade-up:nth-child(4) { transition-delay: .24s; }
.stagger > .fade-up:nth-child(5) { transition-delay: .32s; }
.stagger > .fade-up:nth-child(6) { transition-delay: .40s; }
.stagger > .fade-up:nth-child(7) { transition-delay: .48s; }
.stagger > .fade-up:nth-child(8) { transition-delay: .56s; }
.stagger > .fade-up:nth-child(9) { transition-delay: .64s; }
.stagger > .fade-up:nth-child(10) { transition-delay: .72s; }
.stagger > .fade-up:nth-child(11) { transition-delay: .80s; }
.stagger > .fade-up:nth-child(12) { transition-delay: .88s; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .03em;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-align: center;
}

.btn--primary {
  background: var(--green-light);
  color: var(--white);
  border-color: var(--green-light);
}
.btn--primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45,90,27,.3);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.7);
}
.btn--outline:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
  color: var(--white);
}

.btn--full { width: 100%; }

/* --- Section shared --- */
.section { padding: 90px 0; }

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}
.section__header h2 {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--text-dark);
  margin-bottom: 14px;
}
.section__header p { color: var(--text-muted); font-size: 1.05rem; }
.section__header--light h2 { color: var(--white); }
.section__header--light p { color: rgba(255,255,255,.8); }

/* =============================================
   HEADER
   ============================================= */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: var(--shadow); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 110px;
}

.logo {
  display: flex;
  align-items: center;
}
.logo__img {
  width: auto;
  height: 95px;
  display: block;
  object-fit: contain;
}

.nav { display: flex; gap: 36px; }
.nav a {
  font-weight: 700;
  font-size: .9rem;
  color: var(--text-body);
  letter-spacing: .04em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--green-light);
  transition: width var(--transition);
}
.nav a:hover { color: var(--green-dark); }
.nav a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: all var(--transition);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(135deg, #1a3a0e 0%, #2d5a1b 40%, #4a8e2a 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(95,168,50,.25) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(45,90,27,.4) 0%, transparent 50%),
    radial-gradient(circle at 60% 60%, rgba(29,67,13,.3) 0%, transparent 40%);
  pointer-events: none;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><path d="M30 5 Q45 15 50 30 Q45 45 30 55 Q15 45 10 30 Q15 15 30 5Z" fill="none" stroke="rgba(255,255,255,.04)" stroke-width="1"/></svg>') repeat;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 140px 24px 80px;
  max-width: 740px;
}

.hero__tag {
  display: inline-block;
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,.2);
  margin-bottom: 24px;
  animation: fadeInDown .8s ease both;
}

.hero__content h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  animation: fadeInDown .8s ease .15s both;
}

.hero__sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 40px;
  max-width: 480px;
  animation: fadeInDown .8s ease .3s both;
}

.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInDown .8s ease .45s both;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =============================================
   STRIP
   ============================================= */
.strip {
  background: var(--green-dark);
  padding: 28px 0;
}

.strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.strip__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 700;
  font-size: .95rem;
}

.strip__icon {
  color: var(--green-light);
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* =============================================
   LEISTUNGEN
   ============================================= */
.leistungen { background: var(--off-white); }

.leistungen__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.leistung-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all .35s cubic-bezier(.25,.46,.45,.94);
  position: relative;
  overflow: hidden;
}
.leistung-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-light), var(--green-mid));
  transform: scaleX(0);
  transition: transform .35s ease;
  transform-origin: left;
}
.leistung-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(45,90,27,.15);
  border-color: var(--green-light);
}
.leistung-card:hover::before {
  transform: scaleX(1);
}


.leistung-card__icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
  transition: transform .35s ease;
}
.leistung-card:hover .leistung-card__icon {
  transform: scale(1.15);
}

.leistung-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.leistung-card p {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Leistung cards with images */
.leistung-card--has-image {
  padding: 0;
  display: flex;
  flex-direction: column;
}
.leistung-card--has-image .leistung-card__img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
}
.leistung-card--has-image .leistung-card__body {
  padding: 22px 24px 28px;
}
.leistung-card--has-image .leistung-card__body h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}
/* Weitere Leistungen */
.weitere-leistungen {
  margin-top: 48px;
  text-align: center;
}
.weitere-leistungen h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 24px;
}
.weitere-leistungen__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
}
.weitere-leistungen__item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 18px;
  font-weight: 700;
  font-size: .92rem;
  color: var(--text-dark);
  transition: all var(--transition);
}
.weitere-leistungen__item:hover {
  border-color: var(--green-light);
  box-shadow: 0 4px 16px rgba(45,90,27,.1);
}
.weitere-leistungen__item span:first-child {
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* =============================================
   ABLAUF (Projektschritte)
   ============================================= */
.ablauf { background: var(--white); }

.ablauf__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.ablauf__step {
  text-align: center;
  position: relative;
}

.ablauf__number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.ablauf__step h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.ablauf__step p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 240px;
  margin: 0 auto;
}

.ablauf__cta {
  text-align: center;
}

/* =============================================
   VORTEILE (Warum wir?)
   ============================================= */
.vorteile { background: var(--off-white); }

.vorteile__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.vorteile__item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all .3s ease;
}
.vorteile__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(45,90,27,.12);
  border-color: var(--green-light);
}

.vorteile__icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
  display: block;
}

.vorteile__item h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.vorteile__item p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* =============================================
   ÜBER UNS
   ============================================= */
.ueber-uns { background: var(--white); }

.ueber-uns__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ueber-uns__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(45,90,27,.18);
}

.ueber-uns__text h2 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.25;
}

.ueber-uns__text p {
  margin-bottom: 16px;
  color: var(--text-body);
  line-height: 1.75;
}

.ueber-uns__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.badge {
  background: var(--green-pale);
  color: var(--green-dark);
  font-size: .8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid var(--border);
  letter-spacing: .02em;
}

.ueber-uns__verband {
  margin-top: 28px;
}
.verband-logo {
  height: 120px;
  width: auto;
}

/* =============================================
   MAP
   ============================================= */
.map {
  width: 100%;
  height: 350px;
  border-radius: 16px;
  margin-top: 40px;
  border: 0;
  filter: grayscale(.3) contrast(1.05);
  transition: filter var(--transition);
}
.map:hover { filter: grayscale(0) contrast(1); }

.map-consent {
  width: 100%;
  height: 350px;
  border-radius: 16px;
  margin-top: 40px;
  background: rgba(255,255,255,.08);
  border: 1px dashed rgba(255,255,255,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.map-consent.hidden { display: none; }
.map-consent__inner {
  padding: 24px;
}
.map-consent__inner p {
  color: rgba(255,255,255,.75);
  font-size: .9rem;
  margin-bottom: 8px;
}
.map-consent__inner a {
  color: var(--green-light);
  text-decoration: underline;
}
.map-consent__inner .btn {
  margin-top: 12px;
  padding: 10px 24px;
  font-size: .88rem;
}

/* =============================================
   KONTAKT
   ============================================= */
.kontakt {
  background: var(--green-dark);
  padding: 90px 0;
}

.kontakt__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.kontakt__info h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 28px;
}

.kontakt__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.kontakt__list li {
  display: flex;
  gap: 14px;
  color: rgba(255,255,255,.85);
  font-size: .97rem;
  line-height: 1.5;
}

.kontakt__icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }

.kontakt__list a {
  color: rgba(255,255,255,.9);
  font-weight: 700;
}
.kontakt__list a:hover { color: var(--green-light); }

/* Form */
.kontakt__form {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 8px 40px rgba(0,0,0,.15);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: .85rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: .02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: .95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-light);
  box-shadow: 0 0 0 3px rgba(95,168,50,.15);
}

.form-group textarea { resize: vertical; }

.form-group--checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}
.form-group--checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--green-light);
}
.form-group--checkbox label {
  font-size: .83rem;
  font-weight: 400;
  color: var(--text-muted);
  cursor: pointer;
}

.form-hint {
  text-align: center;
  font-size: .82rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* =============================================
   FLOATING CTA (Phone / WhatsApp)
   ============================================= */
.floating-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 998;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.floating-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 100px;
  font-weight: 700;
  font-size: .88rem;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
  transition: all .3s ease;
  text-decoration: none;
}
.floating-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 28px rgba(0,0,0,.25);
  color: var(--white);
}

.floating-btn--phone {
  background: var(--green-dark);
}
.floating-btn--whatsapp {
  background: #25D366;
}
.floating-btn__svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.floating-btn__label {
  display: block;
}

/* =============================================
   COOKIE BANNER
   ============================================= */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9998;
  background: var(--text-dark);
  color: rgba(255,255,255,.85);
  padding: 20px 24px;
  box-shadow: 0 -4px 24px rgba(0,0,0,.2);
  transform: translateY(100%);
  transition: transform .4s ease;
}
.cookie-banner.visible {
  transform: translateY(0);
}
.cookie-banner.hidden {
  transform: translateY(100%);
}

.cookie-banner__inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner__text {
  flex: 1;
  font-size: .9rem;
  line-height: 1.6;
  min-width: 280px;
}
.cookie-banner__text a {
  color: var(--green-light);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: .85rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}
.cookie-btn--accept {
  background: var(--green-light);
  color: var(--white);
}
.cookie-btn--accept:hover {
  background: var(--green-mid);
}
.cookie-btn--decline {
  background: transparent;
  color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.3);
}
.cookie-btn--decline:hover {
  border-color: rgba(255,255,255,.6);
  color: var(--white);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,.7);
}

.footer__grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 24px;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer__verband {
  height: 72px;
  width: auto;
}
.footer__logo {
  height: 72px;
  width: auto;
  opacity: .9;
}

.footer__links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__links a {
  color: rgba(255,255,255,.65);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.footer__links a:hover { color: var(--green-light); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  text-align: center;
  padding: 18px 24px;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
}

/* =============================================
   SCROLL-TO-TOP (moved up for floating CTA)
   ============================================= */
.scroll-top {
  position: fixed;
  bottom: 160px;
  right: 36px;
  width: 44px;
  height: 44px;
  background: var(--white);
  color: var(--green-dark);
  border: 1px solid var(--border);
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 44px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.1);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  z-index: 997;
}
.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}
.scroll-top:hover {
  background: var(--green-light);
  color: var(--white);
  border-color: var(--green-light);
  transform: translateY(-3px);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .ueber-uns__grid { grid-template-columns: 1fr; gap: 40px; }
  .kontakt__grid   { grid-template-columns: 1fr; gap: 40px; }
  .strip__grid     { grid-template-columns: repeat(2, 1fr); }
  .ablauf__grid    { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .vorteile__grid  { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .nav {
    display: none;
    position: absolute;
    top: 110px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 20px 24px;
    gap: 20px;
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .nav-toggle { display: flex; }

  .hero__cta { flex-direction: column; }
  .form-row  { grid-template-columns: 1fr; }
  .kontakt__form { padding: 28px 20px; }
  .strip__grid   { grid-template-columns: 1fr 1fr; }
  .section { padding: 60px 0; }

  .footer__grid { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer__links { gap: 14px; }

  .leistungen__grid { grid-template-columns: 1fr; }
  .weitere-leistungen__grid { grid-template-columns: 1fr 1fr; }
  .ablauf__grid   { grid-template-columns: 1fr 1fr; }
  .vorteile__grid { grid-template-columns: 1fr; }

  .floating-btn__label { display: none; }
  .floating-btn { padding: 14px; }
  .floating-cta { bottom: 20px; right: 16px; }

  .map { height: 250px; border-radius: 12px; }
}

@media (max-width: 480px) {
  .strip__grid { grid-template-columns: 1fr; }
  .hero__content h1 { font-size: 2.2rem; }
  .weitere-leistungen__grid { grid-template-columns: 1fr; }
  .ablauf__grid { grid-template-columns: 1fr; }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .fade-up { opacity: 1; transform: none; }
}
