/* ============================================================
   AD Service & Logistik — Gebäudereinigung Frankfurt
   ============================================================ */

:root {
  --bg: #f6f5f1;
  --bg-2: #efece4;
  --ink: #0e0e0e;
  --ink-2: #2a2a2a;
  --muted: #6b6a64;
  --line: #d9d6cc;
  --line-soft: #e7e4da;
  --accent: #D72638;
  --accent-ink: #8a0f1c;
  --accent-soft: #fbe9eb;
  --card: #ffffff;
  --shadow-sm: 0 1px 2px rgba(14,14,14,.05);
  --shadow-md: 0 10px 30px -12px rgba(14,14,14,.18);
  --radius: 14px;
  --radius-lg: 22px;
  --maxw: 1240px;
  --section-y: 72px;   /* einheitlicher vertikaler Sektionsabstand (Desktop + iPad) */
}
@media (max-width: 600px) { :root { --section-y: 40px; } }   /* Mobil: kompakter */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  letter-spacing: -0.01em;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  font-size: 16px;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
img { display: block; max-width: 100%; }

.serif { font-family: 'Instrument Serif', Georgia, serif; font-style: italic; font-weight: 400; letter-spacing: -.01em; }
.accent { color: var(--accent); }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announce {
  background: var(--ink);
  color: #f3f1ea;
  font-size: 13px;
  letter-spacing: .02em;
}
.announce-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 28px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.announce-left {
  display: flex; align-items: center; gap: 18px;
  overflow: hidden;
}
.announce-pill {
  display: inline-flex; align-items: center; gap: 8px;
  flex: none;
  white-space: nowrap;
  background: var(--accent);
  color: white;
  padding: 3px 10px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.announce-right { display: flex; align-items: center; gap: 18px; opacity: .85; }
.announce-right a:hover { color: white; }
@media (max-width: 720px) { .announce-right { display: none; } }
@media (max-width: 600px) {
  .announce { font-size: 12px; }
  .announce-inner { padding: 9px 16px; gap: 10px; }
  .announce-left {
    flex-direction: column; align-items: flex-start; gap: 7px;
    overflow: visible;
  }
  .announce-left > span { line-height: 1.35; }
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246,245,241,.85);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.header.scrolled { border-bottom-color: var(--line); }
.header-inner {
  display: flex; align-items: center; justify-content: flex-start;
  padding: 18px 28px;
  max-width: var(--maxw);
  margin: 0 auto;
  gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.brand-logo {
  height: 46px; width: auto; display: block;
}
@media (max-width: 480px) {
  .brand-logo { height: 40px; }
}

.nav {
  display: flex; align-items: center; gap: 4px;
}
.nav a {
  padding: 10px 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-2);
  border-radius: 999px;
  transition: background .15s, color .15s;
}
.nav a:hover { background: var(--bg-2); color: var(--ink); }

/* "Leistungen"-Dropdown (Desktop) */
.nav-item { position: relative; display: flex; align-items: center; }
.nav-item > .nav-link { display: inline-flex; align-items: center; gap: 6px; }
.nav-item .caret { transition: transform .2s ease; }
.nav-item:hover .caret,
.nav-item.open .caret { transform: rotate(180deg); }
.dropdown {
  position: absolute;
  top: 100%; left: 0;
  min-width: 268px;
  padding: 8px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; gap: 2px;
  opacity: 0; visibility: hidden;
  transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 60;
}
.nav-item:hover .dropdown,
.nav-item.open .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav .dropdown-link {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px;
  border-radius: 10px;
  font-size: 14px; font-weight: 500;
  color: var(--ink-2);
  white-space: nowrap;
}
.nav .dropdown-link:hover { background: var(--bg-2); color: var(--ink); }

@media (max-width: 1080px) { .nav { display: none; } }

.header-cta {
  display: flex; align-items: center; gap: 10px;
  margin-left: auto;
}
.phone-pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
}
.phone-pill .ico {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  display: grid; place-items: center;
}
@media (max-width: 860px) { .phone-pill .num { display: none; } }
/* Auf Desktop kein Telefon-Pill im Header (Nummer steht in der Leiste oben); auf Mobil bleibt das Anruf-Icon */
@media (min-width: 861px) { .phone-pill { display: none; } }
.header-ig {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%;
  color: var(--ink); border: 1px solid var(--line-soft);
  transition: color .15s, border-color .15s, background .15s;
}
.header-ig:hover { color: var(--accent); border-color: var(--accent); background: var(--accent-soft); }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  transition: transform .15s, background .15s, color .15s, border-color .15s;
  background: var(--ink);
  color: white;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-accent { background: var(--accent); color: white; }
.btn-accent:hover { background: var(--accent-ink); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: var(--bg-2); }
.btn-lg { padding: 16px 24px; font-size: 15px; }

.btn .arr { display: inline-block; transition: transform .2s; }
.btn:hover .arr { transform: translateX(3px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 52px 0 var(--section-y);
  overflow: hidden;
}
@media (max-width: 600px) {
  .hero { padding: 28px 0 var(--section-y); }
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
/* Grid-Spalten dürfen unter ihre Inhaltsbreite schrumpfen (verhindert Überlauf) */
.hero-grid > div { min-width: 0; }
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 15px;
  max-width: 100%;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}
.eyebrow > span:last-child { min-width: 0; }
.eyebrow .dot { flex: none; }
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(215,38,56,.18);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(215,38,56,.18); }
  50% { box-shadow: 0 0 0 7px rgba(215,38,56,.05); }
}

.h-display {
  font-size: clamp(32px, 5vw, 66px);
  line-height: 1.02;
  letter-spacing: -.035em;
  font-weight: 700;
  margin: 0 0 28px;
}
.h-display .underline-mark {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.h-display .underline-mark::after {
  content: "";
  position: absolute;
  left: -2%; right: -2%;
  bottom: -15px;
  height: .05em;
  background: var(--accent);
  z-index: -1;
  opacity: .9;
  transform: skewX(-6deg);
}

.hero-sub {
  font-size: 19px;
  color: var(--ink-2);
  max-width: 540px;
  margin: 0 0 36px;
  text-wrap: pretty;
}

/* ============================================================
   ZENTRIERTER HERO-BANNER (Index) — Frankfurt-Skyline
   ============================================================ */
.hero-center {
  text-align: center;
  padding: 88px 0 96px;
  background-image:
    linear-gradient(180deg, rgba(8,10,14,.30) 0%, rgba(8,10,14,.52) 42%, rgba(8,10,14,.66) 100%),
    url('uploads/hero-frankfurt.jpg');
  background-size: cover;
  background-position: center 42%;
  background-repeat: no-repeat;
}
@media (max-width: 600px) {
  .hero-center { padding: 48px 0 56px; background-position: 64% 42%; }
}
.hero-center-inner {
  max-width: 860px; margin-inline: auto;
  display: flex; flex-direction: column; align-items: center;
}
.hero-logo {
  width: auto; height: 120px; margin-bottom: 30px;
}
@media (max-width: 600px) { .hero-logo { height: 84px; margin-bottom: 22px; } }

/* Helle Typografie auf dem dunklen Foto */
.hero-center .eyebrow { color: rgba(255,255,255,.85); margin-bottom: 20px; text-shadow: 0 1px 10px rgba(0,0,0,.55); }
.hero-center .h-display { color: #fff; text-shadow: 0 3px 28px rgba(0,0,0,.45); margin-bottom: 20px; }
.hero-center .hero-sub {
  color: rgba(255,255,255,.92);
  max-width: 620px; margin: 0 auto 18px;
  text-shadow: 0 1px 14px rgba(0,0,0,.4);
}
.hero-frankfurt {
  color: rgba(255,255,255,.8);
  max-width: 660px; margin: 0 auto 34px;
  font-size: 16px; line-height: 1.62; text-wrap: pretty;
  text-shadow: 0 1px 14px rgba(0,0,0,.4);
}
.hero-center .hero-ctas { justify-content: center; }
.hero-center .btn-ghost { border-color: rgba(255,255,255,.55); color: #fff; background: transparent; }
.hero-center .btn-ghost:hover { background: rgba(255,255,255,.14); border-color: #fff; }

.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-meta {
  margin-top: 44px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.avatars { display: flex; }
.avatars > div {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 3px solid var(--bg);
  background-size: cover;
  background-position: center;
  margin-left: -10px;
}
.avatars > div:first-child { margin-left: 0; }
.hero-meta .stars {
  display: flex; gap: 2px; color: #f5a623;
}
.hero-meta .meta-text {
  font-size: 13px; color: var(--muted); line-height: 1.3;
}
.hero-meta .meta-text strong { color: var(--ink); }

/* Hero visual */
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.hero-visual .photo {
  position: absolute; inset: 0;
}
.hero-visual .photo svg { width: 100%; height: 100%; display: block; }
.about-visual { background: var(--bg-2); }
.about-visual > svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.about-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.svc-hero-img > svg { position: absolute; inset: 0; width: 100%; height: 100%; }

/* Avatars (initials) */
.avatars .av {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 3px solid var(--bg);
  color: white;
  font-weight: 700;
  font-size: 12px;
  display: grid; place-items: center;
  margin-left: -10px;
  letter-spacing: .02em;
}
.avatars .av:first-child { margin-left: 0; }

/* Inline tag (replaces inline style on section heads) */
.tag-inline {
  font-size: 12px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 700;
}

/* Mobile menu */
.menu-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  color: var(--ink);
}
.mobile-nav { display: none; }
/* Dropdown-Menü: erscheint, sobald die Desktop-Navigation ausgeblendet wird (≤1080px) */
@media (max-width: 1080px) {
  .menu-btn { display: inline-flex; }
  .mobile-nav {
    display: block;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: 10px 28px 18px;
    opacity: 0; visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
    z-index: 49;
    max-height: calc(100dvh - 100%);
    overflow-y: auto;
  }
  .mobile-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .mobile-nav a {
    display: block;
    padding: 15px 4px;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid var(--line-soft);
  }
  .mobile-toggle {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; padding: 15px 4px;
    font: inherit; font-size: 16px; font-weight: 500;
    background: none; border: none; border-bottom: 1px solid var(--line-soft);
    color: var(--ink); text-align: left; cursor: pointer;
  }
  .mobile-toggle .m-caret { color: var(--muted); transition: transform .2s ease; }
  .mobile-toggle[aria-expanded="true"] .m-caret { transform: rotate(180deg); }
  .mobile-sub {
    display: none; flex-direction: column;
    margin: 2px 0 6px;
    padding-left: 14px;
    border-left: 2px solid var(--line);
  }
  .mobile-sub.open { display: flex; }
  .mobile-sub a {
    padding: 13px 4px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-2);
    border-bottom: 1px solid var(--line-soft);
  }
  .mobile-sub a:last-child { border-bottom: none; }
  .mobile-nav .btn {
    display: flex; margin-top: 14px; padding: 15px; font-size: 15px;
    justify-content: center; border-bottom: none;
  }
  .mobile-nav .mobile-ig {
    display: flex; align-items: center; justify-content: center; gap: 9px;
    margin-top: 12px; padding: 13px 4px;
    color: var(--ink-2); font-weight: 500; border-bottom: none;
  }
  .mobile-nav .mobile-ig svg { color: var(--accent); }
}
@media (max-width: 720px) {
  .header-cta-btn { display: none; }
  .header-ig { display: none; }
}

.fcch {
  background: transparent !important;
  border: 1px solid var(--line) !important;
  color: var(--ink) !important;
  max-width: 280px;
}
.fcch .lbl { color: var(--muted) !important; }
.fcch .val { color: var(--ink) !important; }
.hero-visual .grad {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.55) 100%);
}
.hv-tag {
  position: absolute;
  left: 22px; bottom: 22px; right: 196px;
  color: white;
  display: flex; justify-content: space-between; align-items: end; gap: 16px;
}
.hv-tag h4 { font-size: 18px; margin: 0 0 4px; font-weight: 600; letter-spacing: -.01em; line-height: 1.2; }
.hv-tag p { font-size: 12.5px; opacity: .85; margin: 0; line-height: 1.35; }
.hv-tag .play {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: white;
  color: var(--ink);
  display: grid; place-items: center;
  flex-shrink: 0;
}

.hv-card {
  position: absolute;
  background: white;
  border-radius: var(--radius);
  padding: 14px 16px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 12px;
}
.hv-card.top {
  top: 22px; left: 22px;
}
.hv-card .hv-ico {
  width: 36px; height: 36px;
  background: #ecfdf3;
  color: #027a48;
  border-radius: 10px;
  display: grid; place-items: center;
}
.hv-card .hv-txt { font-size: 12px; line-height: 1.3; }
.hv-card .hv-txt strong { display: block; font-size: 13px; }

.hv-card.bot {
  bottom: 18px; right: 18px;
  padding: 16px 18px;
}
.hv-card.bot .big {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 38px; line-height: 1;
  color: var(--accent);
}
.hv-card.bot .lbl {
  font-size: 11px; color: var(--muted);
  text-transform: uppercase; letter-spacing: .08em;
  max-width: 110px; line-height: 1.3;
}

/* ============================================================
   LOGOS / TRUST STRIP
   ============================================================ */
.strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  padding: 22px 0;
}
.strip-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.strip-label {
  font-size: 12px; color: var(--muted);
  text-transform: uppercase; letter-spacing: .12em; font-weight: 600;
}
.strip-items {
  display: flex; gap: 20px 36px; flex-wrap: wrap; align-items: center;
  justify-content: space-between;
  width: 100%;
  font-weight: 600; font-size: 15px; color: var(--ink-2);
}
.strip-items .it { display: inline-flex; align-items: center; gap: 8px; opacity: .85; }
.strip-items .it svg { color: var(--accent); }
@media (max-width: 760px) {
  .strip-items { justify-content: center; }
}
@media (max-width: 600px) {
  .strip-items { flex-direction: column; align-items: center; gap: 14px; }
}

/* ============================================================
   SERVICES
   ============================================================ */
.section { padding: var(--section-y) 0; }
.section-head {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; margin-bottom: 56px;
  align-items: end;
}
@media (max-width: 820px) { .section-head { grid-template-columns: 1fr; gap: 18px; margin-bottom: 36px; } }
.section-head h2 {
  font-size: clamp(34px, 4.6vw, 56px);
  letter-spacing: -.028em;
  line-height: 1;
  font-weight: 700;
  margin: 12px 0 0;
  text-wrap: balance;
}
.section-head .tag {
  font-size: 12px; color: var(--accent);
  text-transform: uppercase; letter-spacing: .14em; font-weight: 700;
}
.section-head p {
  color: var(--muted);
  font-size: 17px;
  margin: 0;
  max-width: 460px;
  justify-self: end;
  text-wrap: pretty;
}
@media (max-width: 820px) { .section-head p { justify-self: start; } }

.services {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.svc {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex; flex-direction: column;
  min-height: 280px;
  position: relative;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.svc:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--line);
}
/* Fokus-Leistung (Unterhaltsreinigung) — dezent rötlich schattiert */
.svc.svc--focus { border-color: var(--accent); box-shadow: 0 4px 16px rgba(215, 38, 56, .12); }
.svc.svc--focus:hover { border-color: var(--accent); box-shadow: 0 8px 24px rgba(215, 38, 56, .18); }
.svc .num {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-size: 14px;
  color: var(--muted);
  letter-spacing: .04em;
}
.svc .ico {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--bg-2);
  color: var(--ink);
  display: grid; place-items: center;
  margin: 18px 0 22px;
}
.svc .svc-photo { margin: -28px -28px 20px; background: var(--bg-2); }
.svc .svc-photo img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; display: block; }
.svc.feature .svc-photo { margin: -32px -32px 22px; }
.svc h3 {
  font-size: 22px; margin: 0 0 10px;
  font-weight: 600; letter-spacing: -.015em;
}
.svc p {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 24px;
  text-wrap: pretty;
}
.svc .more {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600;
  color: var(--ink);
}
.svc .more .arr { transition: transform .2s; }
.svc:hover .more .arr { transform: translateX(3px); }

/* Layout: feature card big, then 3+3 */
.svc.feature {
  grid-column: span 6;
  background: var(--ink); color: white;
  border: none;
  min-height: 360px;
  padding: 32px;
}
.svc.feature .ico { background: rgba(255,255,255,.08); color: white; }
.svc.feature h3 { font-size: 30px; letter-spacing: -.02em; }
.svc.feature p { color: rgba(255,255,255,.65); font-size: 15px; max-width: 360px; }
.svc.feature .num { color: rgba(255,255,255,.45); }
.svc.feature .more { color: white; }
.svc.feature .ico { background: var(--accent); color: white; }

.svc.sz-2 { grid-column: span 3; }
.svc.sz-1 { grid-column: span 3; }

@media (max-width: 980px) {
  .svc.feature { grid-column: span 12; min-height: 240px; }
  .svc.sz-2, .svc.sz-1 { grid-column: span 6; min-height: 240px; }
}
@media (max-width: 620px) {
  .svc.sz-2, .svc.sz-1 { grid-column: span 12; min-height: 200px; }
}

/* ============================================================
   KARTEN-SLIDER (Mobile) — sanft laufender, endloser Slider
   ============================================================ */
@media (max-width: 600px) {
  .card-slider {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 14px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-behavior: auto;
  }
  .card-slider::-webkit-scrollbar { display: none; }
  .card-slider > * {
    flex: 0 0 82%;
    grid-column: auto !important;
    min-height: 0 !important;
  }
  /* Ohne Auto-Lauf (reduced motion): manuelles Swipen mit Snap */
  @media (prefers-reduced-motion: reduce) {
    .card-slider { scroll-snap-type: x proximity; }
    .card-slider > * { scroll-snap-align: center; }
  }
}

/* ============================================================
   PROCESS
   ============================================================ */
.process-section { background: var(--ink); color: white; }
.process-section .section-head h2 { color: white; }
.process-section .section-head .tag { color: #ff8a96; }
.process-section .section-head p { color: rgba(255,255,255,.6); }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
@media (max-width: 880px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }
.step {
  position: relative;
  padding: 32px 4px 0;
  border-top: 1px solid rgba(255,255,255,.16);
}
.step .step-num {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-size: 64px; line-height: 1;
  color: var(--accent);
  margin-bottom: 28px;
}
.step h4 {
  font-size: 20px; font-weight: 600; letter-spacing: -.01em;
  margin: 0 0 10px;
}
.step p {
  font-size: 14px; color: rgba(255,255,255,.6);
  margin: 0;
}

/* ============================================================
   WAS UNS AUSMACHT / VALUES
   ============================================================ */
.values-section { background: var(--bg-2); }
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 880px) { .values { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .values { grid-template-columns: 1fr; } }
.value {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
}
.value .v-ico {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--accent-soft); color: var(--accent);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.value h4 {
  font-size: 18px; font-weight: 600; letter-spacing: -.01em;
  color: var(--ink);
  margin: 0 0 8px;
}
.value p {
  font-size: 15px; line-height: 1.55; color: var(--muted);
  margin: 0;
}
@media (max-width: 560px) { .value { padding: 24px 22px; } }

/* ============================================================
   QUALITÄTS- & OPTIMIERUNGSGESPRÄCH (MBR)
   ============================================================ */
.mbr-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: start;
}
@media (max-width: 900px) { .mbr-grid { grid-template-columns: 1fr; gap: 28px; } }
.mbr-copy p { color: var(--muted); font-size: 16px; line-height: 1.65; margin: 0 0 16px; }
.mbr-copy strong { color: var(--ink); font-weight: 600; }
.mbr-copy .btn { margin-top: 8px; }
.mbr-facts { display: flex; flex-direction: column; gap: 12px; }
.mbr-fact {
  display: flex; align-items: center; gap: 16px;
  background: var(--card); border: 1px solid var(--line-soft);
  border-radius: var(--radius); padding: 16px 18px;
}
.mbr-fact .mf-ico {
  flex: none; width: 44px; height: 44px; border-radius: 12px;
  background: var(--accent-soft); color: var(--accent);
  display: grid; place-items: center;
}
.mbr-fact .mf-txt { display: flex; flex-direction: column; min-width: 0; }
.mbr-fact .mf-txt strong { font-size: 15.5px; color: var(--ink); letter-spacing: -.01em; }
.mbr-fact .mf-txt span { font-size: 13.5px; color: var(--muted); margin-top: 2px; }

/* ============================================================
   ABOUT / STATS
   ============================================================ */
.about {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 920px) { .about { grid-template-columns: 1fr; gap: 36px; } }

.about-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1/1.1;
}
.about-visual .qcard {
  position: absolute;
  left: 24px; bottom: 24px; right: 24px;
  background: rgba(14,14,14,.85);
  backdrop-filter: blur(10px);
  color: white;
  padding: 20px 22px;
  border-radius: var(--radius);
  display: flex; gap: 16px; align-items: flex-start;
}
.about-visual .qcard .qmark {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-size: 56px; line-height: .7;
  color: var(--accent);
}
.about-visual .qcard p {
  margin: 0 0 8px; font-size: 14px; line-height: 1.5;
}
.about-visual .qcard .by {
  font-size: 11px; opacity: .6; letter-spacing: .08em; text-transform: uppercase;
}

.about-copy h2 {
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -.028em;
  line-height: 1.02;
  font-weight: 700;
  margin: 16px 0 20px;
}
.about-copy .lead {
  font-size: 18px;
  color: var(--ink-2);
  margin: 0 0 16px;
  text-wrap: pretty;
}
.about-copy p { color: var(--muted); font-size: 15px; margin: 0 0 14px; }

.stats {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.stats .stat {
  padding: 24px 16px 0 0;
  border-right: 1px solid var(--line);
}
.stats .stat:last-child { border-right: none; padding-right: 0; padding-left: 16px; }
.stats .stat:not(:first-child) { padding-left: 16px; }
.stats .num {
  font-size: 44px; line-height: 1; letter-spacing: -.03em; font-weight: 700;
}
.stats .num .pl { color: var(--accent); }
.stats .lbl { font-size: 12px; color: var(--muted); margin-top: 6px; }

/* ============================================================
   SERVICE AREA — Frankfurt
   ============================================================ */
.area {
  background: var(--bg-2);
  border-radius: var(--radius-lg);
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 920px) { .area { grid-template-columns: 1fr; padding: 36px; } }

.area-copy h2 {
  font-size: clamp(30px, 3.6vw, 44px);
  margin: 12px 0 16px;
  letter-spacing: -.025em;
  line-height: 1.02;
  font-weight: 700;
}
.area-copy p { color: var(--muted); margin: 0 0 24px; font-size: 16px; }
.chips {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px;
}
.chip {
  background: white;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid var(--line-soft);
  color: var(--ink-2);
}
.chip.on { background: var(--ink); color: white; border-color: var(--ink); }

.map {
  position: relative;
  aspect-ratio: 5/4;
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.map svg { width: 100%; height: 100%; display: block; }

.map .pin {
  position: absolute;
  width: 16px; height: 16px;
  margin: -8px;
  background: var(--accent);
  border: 3px solid white;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(215,38,56,.5);
  animation: pin-pulse 2.4s ease-out infinite;
}
@keyframes pin-pulse {
  0% { box-shadow: 0 0 0 0 rgba(215,38,56,.55); }
  100% { box-shadow: 0 0 0 22px rgba(215,38,56,0); }
}
.map .pin.hq {
  width: 20px; height: 20px; margin: -10px;
}
.map .pin .pin-lbl {
  position: absolute; left: 26px; top: 50%; transform: translateY(-50%);
  background: var(--ink); color: white;
  padding: 4px 10px; border-radius: 6px;
  font-size: 11px; white-space: nowrap; font-weight: 600;
  letter-spacing: .04em;
}
.map .pin.lbl-left .pin-lbl { left: auto; right: 26px; }
@media (max-width: 600px) { .map .pin.hide-sm { display: none; } }

/* ============================================================
   SOCIAL MEDIA
   ============================================================ */
.social-card {
  display: flex; align-items: center; gap: 32px;
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
}
.social-ico {
  flex: none;
  width: 64px; height: 64px; border-radius: 18px;
  background: var(--accent-soft); color: var(--accent);
  display: grid; place-items: center;
}
.social-copy { flex: 1 1 auto; min-width: 0; }
.social-copy h2 {
  font-size: 28px; letter-spacing: -.02em; line-height: 1.1;
  margin: 10px 0 8px;
}
.social-copy p { color: var(--muted); margin: 0; font-size: 15.5px; line-height: 1.55; max-width: 58ch; }
.social-btn { flex: none; gap: 9px; }
@media (max-width: 760px) {
  .social-card { flex-direction: column; text-align: center; padding: 32px 26px; gap: 20px; }
  .social-copy p { margin-inline: auto; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none; border: none;
  padding: 28px 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -.01em;
  color: var(--ink);
}
.faq-q .pm {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: background .2s, color .2s, border-color .2s, transform .25s;
}
.faq-item.open .faq-q .pm {
  background: var(--accent); color: white; border-color: var(--accent);
  transform: rotate(45deg);
}
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .3s ease;
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner {
  padding: 0 0 28px;
  max-width: 720px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

/* ============================================================
   CONTACT / CTA
   ============================================================ */
.contact-section { padding-bottom: 60px; }
.contact-wrap {
  background: var(--ink);
  color: white;
  border-radius: var(--radius-lg);
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 920px) {
  .contact-wrap { grid-template-columns: 1fr; padding: 40px; gap: 36px; }
}
.contact-wrap::before {
  content: "";
  position: absolute;
  right: -120px; top: -120px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215,38,56,.3), transparent 65%);
  pointer-events: none;
}

.contact-copy .tag {
  font-size: 12px; color: #ff8a96;
  text-transform: uppercase; letter-spacing: .14em; font-weight: 700;
}
.contact-copy h2 {
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -.025em;
  line-height: 1.02;
  font-weight: 700;
  margin: 14px 0 20px;
  text-wrap: balance;
}
.contact-copy .lead {
  font-size: 17px;
  color: rgba(255,255,255,.7);
  margin: 0 0 32px;
  max-width: 460px;
  text-wrap: pretty;
}

.contact-channels {
  display: flex; flex-direction: column; gap: 14px;
  margin-bottom: 20px;
}
.cch {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  transition: background .15s, border-color .15s;
}
.cch:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); }
.cch .ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--accent);
  display: grid; place-items: center;
  color: white;
  flex-shrink: 0;
}
.cch .txt { line-height: 1.3; }
.cch .lbl { font-size: 12px; color: rgba(255,255,255,.6); letter-spacing: .04em; }
.cch .val { font-weight: 600; font-size: 17px; }

.contact-form {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  z-index: 1;
}
.contact-form h3 {
  font-size: 20px; margin: 0 0 18px; font-weight: 600;
}
.field { margin-bottom: 14px; }
.field label {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,.6);
  margin-bottom: 6px;
  letter-spacing: .04em;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: white;
  padding: 12px 14px;
  border-radius: 10px;
  font: inherit;
  /* 16px verhindert das automatische Zoomen von iOS/Safari beim Fokussieren */
  font-size: 16px;
  transition: border-color .15s, background .15s;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255,255,255,.09);
}
.field textarea { resize: vertical; min-height: 90px; }
.field-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
@media (max-width: 600px) {
  .field-row { grid-template-columns: 1fr; }
  .contact-wrap { padding: 24px; }
  .contact-form { padding: 20px; }
}
.svc-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.svc-tags .st {
  padding: 7px 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  font-size: 12px;
  color: rgba(255,255,255,.8);
  cursor: pointer;
  transition: all .15s;
}
.svc-tags .st:hover { background: rgba(255,255,255,.1); }
.svc-tags .st.on {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}
.form-submit {
  margin-top: 18px;
  width: 100%;
  background: var(--accent);
  color: white;
  border: none;
  padding: 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  transition: background .15s, transform .15s;
}
.form-submit:hover { background: #b51a2b; transform: translateY(-1px); }
.form-success {
  text-align: center;
  padding: 30px 10px;
}
.form-success .check {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(46, 184, 92, .15);
  color: #4ade80;
  display: grid; place-items: center;
  margin: 0 auto 16px;
}
.form-success h3 { font-size: 22px; margin: 0 0 6px; }
.form-success p { color: var(--muted); font-size: 14px; margin: 0; }
/* Honeypot — für Menschen unsichtbar, für Bots ein Köder */
.hp { position: absolute !important; left: -9999px !important; top: auto; width: 1px; height: 1px; overflow: hidden; }
/* Formular-Fehlermeldung */
.form-error { color: #c0182b; font-size: 14px; font-weight: 600; margin: 12px 0 0; }
.form-note { color: var(--muted); font-size: 13px; line-height: 1.5; margin: 14px 0 0; }
.form-note a { color: var(--accent); text-decoration: none; }
.form-note a:hover { text-decoration: underline; }

/* ============================================================
   CONTACT BLOCK (inline-form, light) — used on index, kontakt & service pages
   ============================================================ */
.inline-form {
  background: var(--bg-2);
  border-radius: var(--radius-lg);
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 920px) {
  .inline-form { display: flex; flex-direction: column; gap: 0; padding: 36px; }
  .inline-form .if-copy { display: contents; }                /* Kinder werden Flex-Items → umsortierbar */
  .inline-form .if-form { order: 1; margin-top: 8px; }        /* Formular direkt unter dem Intro */
  .inline-form .if-channels { order: 2; margin-top: 24px; }   /* Kontakt-Kacheln UNTER das Formular */
}
@media (max-width: 600px) { .inline-form { padding: 24px; } }

.inline-form .if-copy h2 {
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.02;
  letter-spacing: -.025em;
  margin: 14px 0 16px;
  font-weight: 700;
}
.inline-form .if-copy p {
  color: var(--ink-2);
  margin: 0 0 18px;
  font-size: 16px;
  text-wrap: pretty;
}
.if-tag {
  display: inline-block;
  font-size: 12px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.if-channels {
  display: flex; flex-direction: column; gap: 12px;
  margin-top: 14px;
}
.if-channels .cch {
  background: white;
  border-color: var(--line);
}
.if-channels .cch .lbl { color: var(--muted); }
.if-channels .cch .val { color: var(--ink); }
.if-channels .cch:hover { background: white; border-color: var(--accent); }

.if-form {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--line-soft);
}
.if-form h3 {
  font-size: 19px;
  margin: 0 0 18px;
  font-weight: 600;
  letter-spacing: -.01em;
}
.if-form .field label { color: var(--muted); }
.if-form .field input,
.if-form .field textarea,
.if-form .field select {
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--ink);
}
.if-form .field input:focus,
.if-form .field textarea:focus,
.if-form .field select:focus {
  background: white;
  border-color: var(--accent);
}
.if-form .svc-tags .st {
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--ink-2);
}
.if-form .svc-tags .st.on {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}
.if-form .form-success h3 { color: var(--ink); }
.if-form .form-success p { color: var(--muted); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: var(--section-y) 0 28px;
  border-top: 1px solid var(--line);
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 820px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 600px) {
  /* Mobil: Footer immer einspaltig, volle Breite, von oben nach unten gestapelt */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
.footer-grid h5 {
  font-size: 12px; text-transform: uppercase; letter-spacing: .12em;
  color: var(--muted); margin: 0 0 14px; font-weight: 700;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 8px; font-size: 14px; }
.footer-grid a:hover { color: var(--accent); }
.footer-logo {
  height: 64px; width: auto; display: block;
}
.footer-brand p {
  font-size: 14px; color: var(--muted); margin: 14px 0 18px;
  max-width: 280px;
}
/* ============================================================
   LEGAL PAGES (Impressum / Datenschutz)
   ============================================================ */
.legal { max-width: 760px; }
.legal h1 { font-size: clamp(28px, 5vw, 40px); margin: 0 0 8px; letter-spacing: -.02em; }
.legal .lead { color: var(--muted); margin: 0 0 32px; }
.legal h2 { font-size: 20px; margin: 32px 0 10px; }
.legal p, .legal li { color: var(--ink-2); font-size: 15px; line-height: 1.7; }
.legal ul { padding-left: 20px; margin: 0 0 14px; }
.legal a { color: var(--accent); }
.legal a:hover { text-decoration: underline; }

/* ============================================================
   KONTAKT PAGE
   ============================================================ */
.kontakt-intro { max-width: 760px; }
.kontakt-intro .tag {
  font-size: 12px; color: var(--accent);
  text-transform: uppercase; letter-spacing: .14em; font-weight: 700;
}
.kontakt-intro h1 {
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.02; letter-spacing: -.03em; font-weight: 700;
  margin: 12px 0 16px;
}
.kontakt-intro .lead {
  font-size: 18px; color: var(--muted); max-width: 620px;
  margin: 0; text-wrap: pretty;
}
.kontakt-methods {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 44px;
}
@media (max-width: 860px) { .kontakt-methods { grid-template-columns: 1fr; } }
.kmethod {
  position: relative;
  display: flex; flex-direction: column; align-items: flex-start; gap: 8px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: transform .15s, border-color .15s, box-shadow .15s;
}
.kmethod:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.kmethod.featured { border-color: var(--accent); box-shadow: var(--shadow-md); }
.kmethod .badge {
  position: absolute; top: 18px; right: 18px;
  background: var(--accent); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
}
.kmethod .ic {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--accent-soft); color: var(--accent);
  display: grid; place-items: center; margin-bottom: 6px;
}
.kmethod h3 { font-size: 18px; font-weight: 700; margin: 0; letter-spacing: -.01em; }
.kmethod .val { font-size: 17px; font-weight: 600; color: var(--ink); word-break: break-word; }
.kmethod .sub { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.5; }
.kmethod .btn { margin-top: auto; }
.kmethod .btn-ghost { border-color: var(--line); }
.footer-bottom {
  margin-top: 50px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--muted);
  flex-wrap: wrap; gap: 14px;
}


/* ============================================================
   THEME — invert variant
   ============================================================ */
body[data-theme="dark"] {
  --bg: #0e0e0e;
  --bg-2: #161616;
  --ink: #f6f5f1;
  --ink-2: #d4d3cd;
  --muted: #8b8a84;
  --line: #262626;
  --line-soft: #1d1d1d;
  --card: #161616;
  --accent-soft: #2a1418;
}
body[data-theme="dark"] .header {
  background: rgba(14,14,14,.85);
}
body[data-theme="dark"] .svc.feature {
  background: #1c1c1c;
}
body[data-theme="dark"] .area { background: #161616; }
body[data-theme="dark"] .chip { background: #1c1c1c; border-color: #262626; color: var(--ink-2); }
body[data-theme="dark"] .chip.on { background: var(--ink); color: var(--bg); border-color: var(--ink); }
