/* =========================================================
   Eymen Galabau – Stylesheet
   1. CSS-Variablen
   2. Reset & Basisstile
   3. Typografie
   4. Hilfsklassen / Buttons
   5. Header
   6. Hero
   7. Leistungen
   8. Über uns
   9. Galerie
   10. Ablauf
   11. Vorteile
   12. CTA
   13. Kontakt
   14. Footer
   15. WhatsApp-Float / Lightbox
   16. Rechtliche Seiten
   17. Animationen
   18. Media Queries
   19. prefers-reduced-motion
   ========================================================= */

/* ---------- 1. CSS-Variablen ---------- */
:root {
  /* Farben aus dem Logo abgeleitet */
  --green-900: #1f3d24;
  --green-700: #2f5a34;   /* Primärgrün (Logo) */
  --green-600: #3a6d40;
  --green-500: #4a854f;
  --green-100: #e6efe6;
  --green-50:  #f3f7f2;

  --anthracite: #37414a;  /* Anthrazit (Logo-Schrift) */
  --ink:        #26302a;
  --muted:      #5c6660;
  --beige:      #e9e3d6;
  --beige-dark: #d9cfba;

  --bg:         #ffffff;
  --bg-soft:    #f5f7f3;
  --border:     #e2e6df;

  --white:      #ffffff;
  --whatsapp:   #25d366;
  --whatsapp-dark: #1da851;

  /* Typografie */
  --font-base: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
               Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;

  /* Layout */
  --container: 1180px;
  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;

  /* Schatten */
  --shadow-sm: 0 2px 8px rgba(31, 61, 36, .06);
  --shadow:    0 10px 30px rgba(31, 61, 36, .09);
  --shadow-lg: 0 20px 50px rgba(31, 61, 36, .14);

  --transition: .25s ease;
}

/* ---------- 2. Reset & Basisstile ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-base);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.08rem);
  overflow-x: hidden;
}

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

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

ul { list-style: none; margin: 0; padding: 0; }

button { font-family: inherit; cursor: pointer; }

/* Sichtbarer Fokus für Barrierefreiheit */
:focus-visible {
  outline: 3px solid var(--green-500);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Skip-Link */
.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  background: var(--green-700);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  z-index: 1200;
  transition: top var(--transition);
}
.skip-link:focus { top: 12px; color: #fff; }

/* ---------- 3. Typografie ---------- */
h1, h2, h3 { line-height: 1.15; color: var(--green-900); margin: 0 0 .4em; font-weight: 800; }
h1 { font-size: clamp(2.1rem, 1.5rem + 3vw, 3.6rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.7rem, 1.3rem + 1.8vw, 2.5rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.15rem, 1.05rem + 0.5vw, 1.35rem); }
p  { margin: 0 0 1rem; }

/* ---------- 4. Hilfsklassen / Buttons ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 4vw, 2rem);
}

.section { padding: clamp(3.5rem, 6vw, 6rem) 0; }
.section-alt { background: var(--bg-soft); }

.section-head { max-width: 720px; margin: 0 auto clamp(2rem, 4vw, 3.2rem); text-align: center; }
.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .8rem;
  font-weight: 700;
  color: var(--green-600);
  margin-bottom: .5rem;
}
.section-title { margin-bottom: .6rem; }
.section-lead { color: var(--muted); font-size: 1.08rem; margin: 0; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .8rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .98rem;
  border: 2px solid transparent;
  transition: transform var(--transition), background var(--transition),
              color var(--transition), box-shadow var(--transition), border-color var(--transition);
  text-align: center;
  line-height: 1.2;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-lg { padding: 1rem 1.9rem; font-size: 1.05rem; }
.btn-block { width: 100%; }

.btn-primary { background: var(--green-700); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--green-900); color: #fff; box-shadow: var(--shadow); }

.btn-outline { background: transparent; color: var(--green-700); border-color: var(--green-700); }
.btn-outline:hover { background: var(--green-700); color: #fff; }

.btn-light { background: #fff; color: var(--green-900); }
.btn-light:hover { background: var(--green-50); color: var(--green-900); }

.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn-outline-light:hover { background: rgba(255,255,255,.14); color: #fff; }

.btn-whatsapp { background: var(--whatsapp); color: #fff; }
.btn-whatsapp:hover { background: var(--whatsapp-dark); color: #fff; }
.btn .icon { width: 1.2em; height: 1.2em; }

/* ---------- 5. Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--transition), background var(--transition), border-color var(--transition);
}
.site-header.scrolled {
  background: rgba(255, 255, 255, .97);
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}
.logo img { height: 52px; width: auto; }

.nav-list { display: flex; align-items: center; gap: .3rem; }
.nav-link {
  display: inline-block;
  padding: .55rem .85rem;
  color: var(--anthracite);
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover { color: var(--green-700); background: var(--green-50); }
.nav-cta-mobile { display: none; }
.header-cta { flex-shrink: 0; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0 10px;
}
.nav-toggle-bar {
  display: block;
  height: 2.5px;
  width: 100%;
  background: var(--anthracite);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.open .nav-toggle-bar:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle.open .nav-toggle-bar:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- 6. Hero ---------- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(520px, 82vh, 760px);
  color: #fff;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: -1; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(20,40,24,.86) 0%, rgba(20,40,24,.6) 45%, rgba(20,40,24,.25) 100%);
}
.hero-content { max-width: 660px; padding-block: clamp(3rem, 8vw, 5rem); }
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
  font-size: .85rem;
  color: #cfe6cd;
  margin-bottom: .8rem;
}
.hero-title { color: #fff; margin-bottom: 1rem; }
.hero-text { font-size: 1.15rem; color: rgba(255,255,255,.92); max-width: 560px; margin-bottom: 1.8rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 2rem; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.6rem;
  font-weight: 600;
  font-size: .95rem;
}
.hero-trust li { position: relative; padding-left: 1.5rem; }
.hero-trust li::before {
  content: "";
  position: absolute;
  left: 0; top: .5em;
  width: .85rem; height: .5rem;
  border-left: 2.5px solid var(--whatsapp);
  border-bottom: 2.5px solid var(--whatsapp);
  transform: rotate(-45deg);
}

/* ---------- 7. Leistungen ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: clamp(1rem, 2vw, 1.6rem);
}
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--green-100);
}
.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--green-50);
  color: var(--green-700);
  margin-bottom: 1rem;
}
.service-icon svg { width: 30px; height: 30px; }
.service-title { margin-bottom: .5rem; }
.service-card p { color: var(--muted); margin-bottom: 1rem; }
.card-link { font-weight: 700; font-size: .95rem; }
.card-link span { transition: margin var(--transition); }
.card-link:hover span { margin-left: .2rem; }

/* ---------- 8. Über uns ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.about-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem 1.4rem;
  margin: 1.4rem 0 1.8rem;
}
.check-list li {
  position: relative;
  padding-left: 1.9rem;
  font-weight: 600;
  color: var(--ink);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: .15em;
  width: 1.25rem; height: 1.25rem;
  border-radius: 50%;
  background: var(--green-100);
}
.check-list li::after {
  content: "";
  position: absolute;
  left: .38rem; top: .45em;
  width: .5rem; height: .28rem;
  border-left: 2px solid var(--green-700);
  border-bottom: 2px solid var(--green-700);
  transform: rotate(-45deg);
}

/* ---------- 9. Galerie ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: clamp(.8rem, 1.6vw, 1.2rem);
}
.gallery-item {
  position: relative;
  border: none;
  padding: 0;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--bg-soft);
  box-shadow: var(--shadow-sm);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img,
.gallery-item:focus-visible img { transform: scale(1.07); }
.gallery-tag {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.4rem .9rem .8rem;
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  text-align: left;
  background: linear-gradient(to top, rgba(20,40,24,.85), rgba(20,40,24,0));
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition);
}
.gallery-item:hover .gallery-tag,
.gallery-item:focus-visible .gallery-tag { opacity: 1; transform: translateY(0); }

/* ---------- 10. Ablauf / Timeline ---------- */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  counter-reset: step;
}
.timeline-step {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.2rem 1.4rem 1.6rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.step-number {
  position: absolute;
  top: -26px; left: 50%;
  transform: translateX(-50%);
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  background: var(--green-700);
  color: #fff;
  border-radius: 50%;
  font-weight: 800;
  font-size: 1.3rem;
  box-shadow: var(--shadow-sm);
  border: 4px solid var(--bg-soft);
}
.step-title { margin: .6rem 0 .4rem; }
.timeline-step p { color: var(--muted); margin: 0; font-size: .98rem; }

/* ---------- 11. Vorteile ---------- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: clamp(1rem, 2vw, 1.6rem);
}
.benefit {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.benefit:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.benefit-icon {
  display: inline-grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--green-700);
  color: #fff;
  font-weight: 800;
  margin-bottom: .8rem;
}
.benefit h3 { margin-bottom: .35rem; }
.benefit p { color: var(--muted); margin: 0; font-size: .98rem; }

/* ---------- 12. CTA ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--green-900), var(--green-700));
  color: #fff;
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}
.cta-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.cta-inner h2 { color: #fff; }
.cta-inner p { color: rgba(255,255,255,.9); font-size: 1.1rem; margin-bottom: 1.8rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; }

/* ---------- 13. Kontakt ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(1.6rem, 4vw, 3rem);
  align-items: start;
}
.contact-info {
  background: var(--green-900);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 3vw, 2.6rem);
}
.contact-name { color: #fff; margin-bottom: 1.4rem; }
.contact-list { display: grid; gap: 1.1rem; margin-bottom: 1.8rem; }
.contact-list li { display: flex; align-items: flex-start; gap: .9rem; }
.contact-list a { color: #fff; }
.contact-list a:hover { color: #cfe6cd; text-decoration: underline; }
.contact-ico {
  flex-shrink: 0;
  display: grid; place-items: center;
  width: 42px; height: 42px;
  border-radius: 11px;
  background: rgba(255,255,255,.1);
  color: #cfe6cd;
}
.contact-ico svg { width: 22px; height: 22px; }
.contact-info .btn-outline { color: #fff; border-color: rgba(255,255,255,.6); }
.contact-info .btn-outline:hover { background: #fff; color: var(--green-900); border-color: #fff; }

/* Formular */
.contact-form-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: var(--shadow);
}
.form-row { margin-bottom: 1.1rem; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-row label {
  display: block;
  font-weight: 600;
  margin-bottom: .35rem;
  font-size: .95rem;
  color: var(--anthracite);
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: .8rem .9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font: inherit;
  color: var(--ink);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px var(--green-100);
}
.form-row textarea { resize: vertical; min-height: 120px; }
.form-row input.invalid,
.form-row select.invalid,
.form-row textarea.invalid { border-color: #c0392b; }

.form-check {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  margin-bottom: 1.3rem;
  font-size: .92rem;
  color: var(--muted);
}
.form-check input {
  width: 1.2rem; height: 1.2rem;
  margin-top: .15rem;
  flex-shrink: 0;
  accent-color: var(--green-700);
}
.form-check.invalid label { color: #c0392b; }

.form-status {
  margin: 1rem 0 0;
  padding: 0;
  font-weight: 600;
  font-size: .95rem;
}
.form-status.success {
  padding: .9rem 1rem;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: var(--radius-sm);
  color: var(--green-900);
}
.form-status.error {
  padding: .9rem 1rem;
  background: #fdecea;
  border: 1px solid #f5c6c0;
  border-radius: var(--radius-sm);
  color: #a5281b;
}

/* ---------- 14. Footer ---------- */
.site-footer { background: var(--anthracite); color: #cfd4d8; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-block: clamp(2.6rem, 5vw, 4rem);
}
.footer-logo {
  height: 58px; width: auto;
  background: #fff;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}
.footer-brand p { color: #aab2b8; max-width: 40ch; margin: 0; }
.footer-title { color: #fff; font-size: 1rem; margin-bottom: 1rem; }
.footer-address { font-style: normal; line-height: 1.9; color: #aab2b8; }
.footer-address a, .footer-nav a { color: #cfd4d8; }
.footer-address a:hover, .footer-nav a:hover { color: #fff; text-decoration: underline; }
.footer-nav { display: grid; gap: .55rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); }
.footer-bottom p { margin: 0; padding-block: 1.3rem; font-size: .9rem; color: #9aa1a6; }

/* ---------- 15. WhatsApp-Float & Lightbox ---------- */
.whatsapp-float {
  position: fixed;
  right: clamp(1rem, 3vw, 1.8rem);
  bottom: clamp(1rem, 3vw, 1.8rem);
  z-index: 900;
  width: 60px; height: 60px;
  display: grid; place-items: center;
  background: var(--whatsapp);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .45);
  transition: transform var(--transition), background var(--transition);
  animation: wa-pulse 2.6s infinite;
}
.whatsapp-float:hover { transform: scale(1.08); background: var(--whatsapp-dark); color: #fff; }
.whatsapp-float svg { width: 34px; height: 34px; }

@keyframes wa-pulse {
  0%   { box-shadow: 0 8px 24px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.5); }
  70%  { box-shadow: 0 8px 24px rgba(37,211,102,.45), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 8px 24px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,0); }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(15, 25, 17, .92);
}
.lightbox.open { display: flex; }
.lightbox-figure { margin: 0; max-width: 1000px; width: 100%; text-align: center; }
.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  margin: 0 auto;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.lightbox-caption { color: #fff; margin-top: .9rem; font-weight: 600; }
.lightbox-close {
  position: absolute;
  top: clamp(1rem, 3vw, 1.6rem);
  right: clamp(1rem, 3vw, 1.6rem);
  width: 48px; height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.15);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  display: grid; place-items: center;
  transition: background var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,.3); }

/* ---------- 16. Rechtliche Seiten ---------- */
.legal-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 1000;
}
.legal-header .header-inner { min-height: 72px; }
.legal-header .logo img { height: 48px; }
.legal-main { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.legal-content { max-width: 820px; margin: 0 auto; }
.legal-content h1 { margin-bottom: 1.5rem; }
.legal-content h2 {
  font-size: 1.3rem;
  margin-top: 2.2rem;
  margin-bottom: .6rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.legal-content h2:first-of-type { border-top: none; padding-top: 0; }
.legal-content p, .legal-content li { color: #40473f; }
.legal-content ul { list-style: disc; padding-left: 1.4rem; margin-bottom: 1rem; }
.legal-content li { margin-bottom: .4rem; }
.legal-content a { text-decoration: underline; }
.todo {
  display: inline-block;
  background: #fff4d6;
  border: 1px solid #f0d78a;
  color: #7a5c00;
  padding: .1rem .5rem;
  border-radius: 5px;
  font-weight: 700;
  font-size: .85em;
}
.back-link { display: inline-flex; align-items: center; gap: .4rem; font-weight: 700; margin-bottom: 1.5rem; }
.legal-note {
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  margin-bottom: 2rem;
  font-size: .95rem;
  color: var(--green-900);
}

/* ---------- 17. Animationen (Scroll-Reveal) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
  will-change: opacity, transform;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- 18. Media Queries ---------- */
@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .timeline { grid-template-columns: repeat(2, 1fr); gap: 2.2rem 1.4rem; }
}

@media (max-width: 860px) {
  html { scroll-padding-top: 76px; }
  .header-cta { display: none; }
  .nav-toggle { display: flex; }

  .main-nav {
    position: fixed;
    inset: 72px 0 auto 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
  }
  .main-nav.open { max-height: 80vh; overflow-y: auto; }
  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: .2rem;
    padding: 1rem clamp(1.1rem, 4vw, 2rem) 1.4rem;
  }
  .nav-link { padding: .85rem 1rem; font-size: 1.05rem; }
  .nav-cta-mobile { display: block; margin-top: .6rem; }
  .nav-cta-mobile .btn { width: 100%; }

  .about-grid { grid-template-columns: 1fr; }
  .about-media { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .check-list { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; gap: 2.4rem; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .cta-actions .btn { width: 100%; }
}

@media (max-width: 400px) {
  .footer-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
}

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

/* ---------- 20. Honeypot (Spam-Schutz, visuell ausgeblendet) ---------- */
.form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
