/* ============================================================
   DK Montage-Service München
   ============================================================ */

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

/* ── Tokens ──────────────────────────────────────────────── */
:root {
  --white:       #ffffff;
  --off-white:   #f5f3ef;
  --warm-2:      #ebe8e2;
  --ink:         #171717;
  --ink-light:   #686868;
  --line:        #d8d5cf;
  --accent:      #1e3a5f;
  --accent-mid:  #2c5282;
  --wa:          #1f7a4d;

  --font: 'Inter', 'Manrope', system-ui, -apple-system, sans-serif;

  --text-base: 18px;
  --lh:        1.7;
  --max-w:     1200px;
  --pad:       clamp(20px, 5vw, 80px);
  --sec-py:    clamp(4.5rem, 7vw, 7rem);
}

/* ── Base ────────────────────────────────────────────────── */
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font);
  font-size: var(--text-base);
  line-height: var(--lh);
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

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

/* Global link reset — inherit color, prevent purple visited */
a               { color: inherit; text-decoration: none; }
a:visited       { color: inherit; }

ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ── Focus ───────────────────────────────────────────────── */
/* Einheitlicher, sichtbarer Fokusrahmen für alles */
:focus-visible {
  outline: 3px solid #f4b400;
  outline-offset: 3px;
  border-radius: 3px;
}
/* Fokus nur bei Tastaturnavigation */
:focus:not(:focus-visible) { outline: none; }

/* ── Typography ──────────────────────────────────────────── */
.label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--ink-light);
  margin-bottom: 14px;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 5.5rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.03em;
  color: var(--white);
}

h2 {
  font-size: clamp(1.9rem, 3.5vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -.025em;
  color: var(--ink);
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -.015em;
  color: var(--ink);
  margin-bottom: 12px;
}

p { color: var(--ink-light); line-height: var(--lh); }

/* ── Button-Basis ─────────────────────────────────────────── */
/* Gemeinsame Grundregeln für alle echten Schaltflächen */
.btn,
.btn-band,
.form-submit,
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: .8rem 1.4rem;
  border-radius: 6px;
  font-family: var(--font);
  font-size: .95rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color .22s ease,
    color .22s ease,
    border-color .22s ease,
    transform .18s ease;
}
/* Subtiler Hover-Lift für .btn-Varianten */
.btn:hover { transform: translateY(-1px); }

/* ── Button-Varianten ─────────────────────────────────────── */
.btn-dark,
.btn-dark:visited {
  background: #171717;
  color: #ffffff;
  border: 1px solid #171717;
}
.btn-dark:hover { background: #000; border-color: #000; color: #ffffff; }

.btn-ghost,
.btn-ghost:visited {
  background: rgba(255,255,255,.95);
  color: #171717;
  border: 1px solid rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: #fff; border-color: #fff; color: #000; }

.btn-outline,
.btn-outline:visited {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-outline:hover { border-color: var(--ink-light); }

.btn-wa,
.btn-wa:visited {
  background: var(--wa);
  color: #ffffff;
  border: 1px solid var(--wa);
}
.btn-wa:hover { background: #185f3c; border-color: #185f3c; color: #ffffff; }

/* ── Header ──────────────────────────────────────────────── */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(
    to bottom,
    rgba(12,12,12,.72) 0%,
    rgba(12,12,12,.28) 70%,
    transparent 100%
  );
  transition: background .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
#header.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--white);
  transition: color .3s;
}
#header.scrolled .nav-logo { color: var(--ink); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Nav-Links: alle außer .nav-cta */
.nav-links a:not(.nav-cta) {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,.82);
  transition: color .2s;
  text-decoration: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.nav-links a:not(.nav-cta):visited { color: rgba(255,255,255,.82); }
.nav-links a:not(.nav-cta):hover   { color: var(--white); }
#header.scrolled .nav-links a:not(.nav-cta)       { color: var(--ink-light); }
#header.scrolled .nav-links a:not(.nav-cta):visited { color: var(--ink-light); }
#header.scrolled .nav-links a:not(.nav-cta):hover  { color: var(--ink); }

/* nav-cta — explizite Farben, niemals geerbt */
.nav-cta,
.nav-links .nav-cta,
.nav-cta:visited,
.nav-links .nav-cta:visited {
  background: #171717;
  color: #ffffff;
  border: 1px solid #171717;
  white-space: nowrap;
}
.nav-cta:hover,
.nav-links .nav-cta:hover {
  background: #000;
  border-color: #000;
  color: #ffffff;
  transform: translateY(-1px);
}
/* Nach dem Scrollen: CTA bleibt dunkel */
#header.scrolled .nav-cta,
#header.scrolled .nav-links .nav-cta,
#header.scrolled .nav-cta:visited,
#header.scrolled .nav-links .nav-cta:visited {
  background: #171717;
  color: #ffffff;
  border-color: #171717;
}
#header.scrolled .nav-cta:hover,
#header.scrolled .nav-links .nav-cta:hover {
  background: #000;
  border-color: #000;
}

/* Mobile Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 4px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--white);
  border-radius: 1px;
  transition: transform .25s, opacity .25s;
}
#header.scrolled .nav-toggle span { background: var(--ink); }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Mobile Menu ─────────────────────────────────────────── */
#mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 0 var(--pad) 16px;
  z-index: 999;
  flex-direction: column;
}
#mobile-menu.open { display: flex; }
#mobile-menu a {
  display: block;
  font-size: 17px;
  font-weight: 400;
  color: var(--ink);
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: color .2s;
}
#mobile-menu a:visited { color: var(--ink); }
#mobile-menu a:hover   { color: var(--ink-light); }
#mobile-menu a:last-child {
  border-bottom: none;
  margin-top: 8px;
  color: var(--wa);
  font-weight: 600;
}
#mobile-menu a:last-child:hover { color: #185f3c; }

/* ── Hero ────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  background: var(--ink);
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: none;
}

/* Overlay: pointer-events: none, z-index 1 — UNTER hero-content */
#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(12,12,12,.74) 0%,
      rgba(12,12,12,.48) 38%,
      rgba(12,12,12,.12) 68%,
      transparent 100%
    ),
    linear-gradient(
      to top,
      rgba(12,12,12,.50) 0%,
      transparent 32%
    );
}

/* Hero-Inhalt: z-index 2 — ÜBER dem Overlay */
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 0 clamp(48px, 8vw, 96px);
  width: 100%;
}
.hero-content .label { color: rgba(255,255,255,.55); margin-bottom: 18px; }
.hero-content h1     { max-width: 820px; margin-bottom: 22px; }

.hero-sub {
  font-size: clamp(16px, 1.8vw, 19px);
  color: rgba(255,255,255,.68);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

/* Google-Pill im Hero */
.hero-google-rating,
.hero-google-rating:visited {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  width: fit-content;
  margin-bottom: 24px;
  padding: 10px 16px;
  background: rgba(255,255,255,.94);
  color: #171717;
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 5px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  z-index: 3;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background .2s, transform .15s;
  cursor: pointer;
  pointer-events: auto;
}
.hero-google-rating:hover { background: #fff; color: #000; transform: translateY(-1px); }
.hero-google-name       { font-weight: 700; color: #202124; }
.hero-google-stars      { color: #f4b400; letter-spacing: 1px; font-size: 13px; }
.hero-google-score      { font-weight: 700; color: #171717; }
.hero-google-link-text  { color: #686868; font-size: 13px; }

.hero-trust {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  letter-spacing: .01em;
}

/* ── Trust Strip ─────────────────────────────────────────── */
#trust {
  background: var(--warm-2);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}

.trust-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 28px;
  border-right: 1px solid var(--line);
}
.trust-stat:first-child { padding-left: 0; }
.trust-stat:last-child  { border-right: none; }

.trust-stat .num {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  letter-spacing: -.03em;
  color: var(--ink);
  line-height: 1;
}
.trust-stat .desc {
  font-size: 13px;
  color: var(--ink-light);
  line-height: 1.35;
}

/* Google-Karte im Trust-Strip */
.trust-stat--google {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 18px 28px;
  margin-right: 20px;
  gap: 10px;
  align-items: flex-start;
  flex-direction: column;
  min-width: 220px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.google-label  { font-size: 15px; font-weight: 700; color: #202124; letter-spacing: -.01em; line-height: 1; }
.google-stars  { color: #f4b400; letter-spacing: 3px; font-size: 16px; line-height: 1; }
.trust-stat--google .num { font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 700; color: #171717; letter-spacing: -.04em; }

.google-review-link,
.google-review-link:visited {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-mid);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  line-height: 1.4;
  padding-bottom: 1px;
  display: inline-block;
  pointer-events: auto;
  cursor: pointer;
  transition: color .2s;
}
.google-review-link:hover { color: var(--accent); }

.trust-stat--secondary {
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  padding: 6px 24px;
}
.trust-stat--secondary .num { font-size: clamp(18px, 2.5vw, 26px); }

.trust-divider {
  width: 1px; height: 36px;
  background: var(--line);
  flex-shrink: 0;
  align-self: center;
}
.trust-cert {
  font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 400;
  color: var(--ink-light);
  line-height: 1.55;
  align-self: center;
  padding-left: 24px;
}
.contact-sub { display: block; font-size: 13px; color: var(--ink-light); }

/* ── Services ────────────────────────────────────────────── */
#services { padding: var(--sec-py) 0; background: var(--white); }
.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: clamp(2.5rem, 4vw, 4rem);
}
.services-header h2 { margin: 0; }
.services-header p  { color: var(--ink-light); max-width: 440px; }

.services-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service-item {
  background: var(--white);
  padding: 48px 40px;
  transition: background .2s;
}
.service-item:hover  { background: var(--off-white); }
.service-num         { font-size: 13px; color: var(--ink-light); margin-bottom: 32px; display: block; }
.service-item h3     { margin-bottom: 14px; }
.service-item p      { font-size: 16px; color: var(--ink-light); margin-bottom: 20px; }

.service-points      { display: flex; flex-direction: column; gap: 6px; }
.service-points li {
  font-size: 14px;
  color: var(--ink-light);
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}
.service-points li::before { content: '–'; position: absolute; left: 0; color: var(--line); }

/* ── Projects ────────────────────────────────────────────── */
#projects { padding: var(--sec-py) 0; background: var(--off-white); }
.projects-header { margin-bottom: clamp(2rem, 3vw, 3rem); }

.projects-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-areas:
    "project1 project2"
    "project1 project3"
    "project4 project4";
  gap: 18px;
}
.project-item {
  position: relative;
  overflow: hidden;
  background: var(--line);
  min-height: 280px;
}
.project-item--1 { grid-area: project1; min-height: 560px; }
.project-item--2 { grid-area: project2; }
.project-item--3 { grid-area: project3; }
.project-item--4 { grid-area: project4; min-height: 360px; }

.project-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}
.project-item--1 img { object-position: center 55%; }
.project-item--2 img { object-position: 60% center; }
.project-item--3 img { object-position: center 45%; }
.project-item--4 img { object-position: 50% 40%; }

.project-item:hover img { transform: scale(1.04); }
.project-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 18px 22px;
  background: linear-gradient(to top, rgba(0,0,0,.52), transparent);
  color: rgba(255,255,255,.82);
  font-size: 12px;
  letter-spacing: .06em;
  pointer-events: none;
}

/* ── CTA Band ────────────────────────────────────────────── */
#cta-band { background: var(--ink); padding: clamp(2.5rem, 4vw, 3.5rem) 0; }
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band-title {
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-weight: 600;
  color: var(--white);
  letter-spacing: -.02em;
  margin-bottom: 6px;
  line-height: 1.25;
}
.cta-band-sub {
  font-size: 15px;
  color: rgba(255,255,255,.55);
  line-height: 1.55;
  max-width: 500px;
  margin-bottom: 0;
}

/* btn-band: auf dunklem Hintergrund — weißer Rand, weißer Text */
.btn-band,
.btn-band:visited {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.5);
  flex-shrink: 0;
}
.btn-band:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-1px);
}

/* ── Process ─────────────────────────────────────────────── */
#process { padding: var(--sec-py) 0; background: var(--white); }
.process-header { margin-bottom: clamp(2.5rem, 4vw, 4rem); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.process-step { background: var(--white); padding: 48px 40px; }
.step-num {
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 600;
  letter-spacing: -.04em;
  color: var(--line);
  line-height: 1;
  margin-bottom: 24px;
}
.process-step h3 { margin-bottom: 10px; }
.process-step p  { font-size: 15px; }

/* ── Reviews ─────────────────────────────────────────────── */
#reviews { padding: var(--sec-py) 0; background: var(--ink); color: var(--white); }
.reviews-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

/* Google-Panel: weißes Rechteck auf dunklem Hintergrund */
.reviews-google {
  background: var(--white);
  color: var(--ink);
  padding: 40px;
  border-radius: 4px;
  position: relative;
  z-index: 2;
}
.reviews-google-label {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #202124;
  letter-spacing: -.01em;
  margin-bottom: 12px;
}
.reviews-google-score {
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 8px;
}
.reviews-google-stars {
  color: #f4b400;
  font-size: 1.35rem;
  letter-spacing: 3px;
  display: block;
  margin-bottom: 10px;
}
.reviews-google-count {
  font-size: 15px;
  color: var(--ink-light);
  margin-bottom: 20px;
}

/* KRITISCHER BUGFIX: reviews-google-link muss klickbar und sichtbar sein */
.reviews-google-link,
.reviews-google-link:visited {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  width: fit-content;
  padding-bottom: 2px;
  color: #171717;
  background: transparent;
  border-bottom: 1.5px solid #171717;
  font-size: .95rem;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  cursor: pointer;
  position: relative;
  z-index: 3;
  transition: color .2s, border-color .2s, transform .18s;
}
.reviews-google-link:hover {
  color: #000;
  border-bottom-color: #000;
  transform: translateX(3px);
}

/* Sekundäre Plattformen rechts */
.reviews-right {}
.reviews-right .label { color: rgba(255,255,255,.45); }

.reviews-platforms {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255,255,255,.1);
  margin-bottom: 32px;
}
.rp-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.rp-stars  { font-size: 13px; letter-spacing: 2px; color: #f4b400; flex-shrink: 0; }
.rp-name,
.rp-name:visited {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,.78);
  flex: 1;
  text-decoration: none;
  transition: color .2s;
  pointer-events: auto;
  cursor: pointer;
}
.rp-name:hover { color: var(--white); }
.rp-count { font-size: 13px; color: rgba(255,255,255,.38); flex-shrink: 0; }

.reviews-tuev {
  font-size: 13px;
  color: rgba(255,255,255,.38);
  line-height: 1.55;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 20px;
}

/* ── About ───────────────────────────────────────────────── */
#about { padding: var(--sec-py) 0; background: var(--off-white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.about-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--line);
}
.about-img img {
  width: 100%; height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center 28%;
}
.about-text .label { margin-bottom: 20px; }
.about-text h2     { margin-bottom: 24px; }
.about-text p      { margin-bottom: 16px; font-size: 17px; }
.about-cert {
  display: block;
  margin-top: 28px;
  font-size: 13px;
  color: var(--ink-light);
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

/* ── Contact ─────────────────────────────────────────────── */
#contact {
  padding: var(--sec-py) 0;
  background: var(--white);
  border-top: 1px solid var(--line);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.contact-left h2 { margin-bottom: 18px; }
.contact-left p  { margin-bottom: 28px; font-size: 17px; }

.contact-number,
.contact-number:visited {
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--ink);
  text-decoration: none;
  display: inline-block;
  transition: color .2s;
}
.contact-number:hover { color: var(--accent); }

.contact-options { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.contact-option  { display: flex; align-items: center; gap: 14px; font-size: 16px; }
.contact-option a,
.contact-option a:visited { color: var(--ink); font-weight: 500; text-decoration: none; transition: color .2s; }
.contact-option a:hover   { color: var(--accent); }

.co-icon {
  width: 38px; height: 38px;
  border: 1.5px solid var(--line);
  border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.co-icon svg { pointer-events: none; }

.contact-form {
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: clamp(28px, 4vw, 44px);
}
.contact-form h3 { margin-bottom: 28px; }

.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 13px;
  color: var(--ink-light);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 5px;
  padding: 14px 16px;
  min-height: 48px;
  font-size: 15px;
  color: var(--ink);
  font-family: var(--font);
  transition: border-color .2s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(44,82,130,.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #b0aca6; }
.form-group textarea { resize: vertical; min-height: 110px; }

/* form-submit: volle Breite, Button-Klasse reicht */
.form-submit,
.form-submit:visited {
  width: 100%;
  background: #171717;
  color: #ffffff;
  border: 1px solid #171717;
  min-height: 50px;
}
.form-submit:hover { background: #000; border-color: #000; transform: none; }

#form-msg {
  display: none;
  margin-top: 14px;
  font-size: 14px;
  color: var(--ink-light);
  text-align: center;
  line-height: 1.55;
}

/* ── Footer ──────────────────────────────────────────────── */
#footer {
  background: var(--off-white);
  border-top: 1px solid var(--line);
  padding: 32px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo { font-size: 15px; font-weight: 600; color: var(--ink); letter-spacing: -.01em; }
.footer-links { display: flex; gap: 24px; }
.footer-links a,
.footer-links a:visited { font-size: 13px; color: var(--ink-light); text-decoration: none; transition: color .2s; }
.footer-links a:hover   { color: var(--ink); }
.footer-copy  { font-size: 13px; color: #b0aca6; }

/* ── WhatsApp Float ──────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 500;
  width: 50px; height: 50px;
  background: var(--wa);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(31,122,77,.4);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
  pointer-events: auto;
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 22px rgba(31,122,77,.55);
}
.wa-float svg { width: 26px; height: 26px; fill: var(--white); pointer-events: none; }

/* ── Reveal ──────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Reduced motion: alles sofort sichtbar */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover,
  .nav-cta:hover,
  .btn-band:hover,
  .wa-float:hover { transform: none; }
  .project-item:hover img { transform: none; }
}

/* ── Responsive 900 px ───────────────────────────────────── */
@media (max-width: 900px) {
  .services-header { grid-template-columns: 1fr; gap: 20px; }
  .services-list   { grid-template-columns: 1fr; }
  .process-steps   { grid-template-columns: 1fr; }
  .reviews-inner   { grid-template-columns: 1fr; gap: 40px; }
  .about-grid      { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid    { grid-template-columns: 1fr; gap: 48px; }
  .about-img       { aspect-ratio: 16/9; }
  .about-img img   { min-height: 360px; }
  .trust-stat--google { margin-right: 0; margin-bottom: 12px; }
}

/* ── Responsive 768 px ───────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links  { display: none; }
  .nav-toggle { display: flex; }

  .hero-img img { object-position: center center; }

  .hero-actions { flex-direction: column; align-items: flex-start; gap: 14px; }

  /* Buttons auf Mobile: umbrechen erlaubt */
  .btn,
  .btn-band,
  .form-submit,
  .nav-cta { white-space: normal; text-align: center; }

  .hero-google-rating { width: fit-content; max-width: 100%; }
  .reviews-google-link { max-width: 100%; }

  /* Trust Strip */
  .trust-inner       { flex-direction: column; align-items: flex-start; gap: 16px; }
  .trust-divider     { display: none; }
  .trust-stat        { border-right: none; padding-left: 0; border-bottom: 1px solid var(--line); padding-bottom: 16px; width: 100%; }
  .trust-stat:last-child { border-bottom: none; }
  .trust-stat--google { width: 100%; margin-right: 0; }
  .trust-cert        { padding-left: 0; }

  /* Projects */
  .projects-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "project1" "project2" "project3" "project4";
    gap: 12px;
  }
  .project-item--1,
  .project-item--4 { min-height: 280px; }

  .cta-band-inner { flex-direction: column; align-items: flex-start; }
  .btn-band { width: 100%; }

  .about-img img { min-height: 300px; object-position: center 22%; }
}

/* ── Responsive 480 px ───────────────────────────────────── */
@media (max-width: 480px) {
  .service-item, .process-step { padding: 32px 24px; }
  .contact-form { padding: 24px; }
  .wa-float     { width: 46px; height: 46px; bottom: 18px; right: 18px; }
  .wa-float svg { width: 22px; height: 22px; }
  .reviews-google { padding: 28px 24px; }
}
