/* ==========================================================================
   Baustellenreinigung Hamburg — ein Produkt der Möwe Gebäudeservice GmbH
   Design tokens derived from the Möwe logo (sampled pixel values).
   ========================================================================== */

:root {
  /* --- Color: sampled from logo (navy → sky blue gradient, graphite gray) --- */
  --navy: #005895;
  --navy-deep: #003c66;
  --navy-ink: #062038;
  --sky: #2da2da;
  --sky-soft: #6cb4e4;
  --mist: #eaf3fb;
  --mist-2: #cfe3f5;
  --graphite: #767676;
  --ink: #172230;
  --ground: #f5f8fb;
  --paper: #ffffff;
  --line: #dbe6f0;
  --gold: #d99a2b; /* semantic only: rating stars */

  /* --- Type --- */
  --font-display: "Big Shoulders Display", "Arial Narrow", "DejaVu Sans Condensed", sans-serif;
  --font-body: "Public Sans", "Segoe UI", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", "Courier New", monospace;

  --fs-h1: clamp(2.6rem, 4.2vw + 1rem, 4.4rem);
  --fs-h2: clamp(2rem, 2.4vw + 1rem, 2.9rem);
  --fs-h3: clamp(1.3rem, 1vw + 1rem, 1.65rem);
  --fs-lead: clamp(1.1rem, 0.5vw + 1rem, 1.3rem);
  --fs-body: 1.0625rem;
  --fs-small: 0.875rem;
  --fs-label: 0.78rem;

  --radius: 6px;
  --shadow-card: 0 1px 2px rgba(6, 32, 56, 0.06), 0 8px 24px -12px rgba(6, 32, 56, 0.18);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.04;
  color: var(--navy-ink);
  text-wrap: balance;
  overflow-wrap: break-word;
  margin: 0;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); letter-spacing: 0.005em; }

p { margin: 0 0 1em; max-width: 62ch; }
p:last-child { margin-bottom: 0; }

a { color: var(--sky); }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--sky-soft);
  outline-offset: 2px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-mono);
  font-size: var(--fs-label);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sky);
  font-weight: 500;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--sky);
  display: inline-block;
}

.wrap {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.overflow-x { overflow-x: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  padding: 0.85em 1.5em;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease;
  line-height: 1;
}
.btn svg { width: 1.1em; height: 1.1em; flex: none; }
.btn-primary { background: var(--sky); color: #ffffff; }
.btn-primary:hover { background: var(--navy); transform: translateY(-1px); box-shadow: 0 10px 20px -10px rgba(0, 88, 149, 0.55); }
.btn-ghost { background: transparent; border-color: rgba(255, 255, 255, 0.55); color: #ffffff; }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); }
.btn-outline { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  padding-block: 0.6rem;
  flex-wrap: nowrap;
  max-width: 1400px;
  margin-inline: auto;
}
.brand { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; min-width: 0; flex: 1 1 auto; }
.brand img { height: 44px; width: auto; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; min-width: 0; }
.brand-text strong {
  font-family: var(--font-display);
  font-size: clamp(0.82rem, 1.5vw, 1.05rem);
  font-weight: 800;
  color: var(--navy-ink);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.brand-text span { font-size: 0.7rem; color: var(--graphite); font-family: var(--font-mono); letter-spacing: 0.03em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.main-nav { display: flex; align-items: center; gap: 1rem; flex: none; }
.main-nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  padding-block: 0.3rem;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--navy); border-color: var(--sky); }

.header-cta { display: flex; align-items: center; gap: 0.7rem; flex: none; }
.tel-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-mono);
  font-weight: 500;
  color: var(--navy-ink);
  text-decoration: none;
  font-size: 0.95rem;
  white-space: nowrap;
}
.tel-link svg { width: 1.05em; height: 1.05em; color: var(--sky); flex: none; }

.nav-toggle {
  display: none;
  background: none;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 0.5rem 0.6rem;
  cursor: pointer;
  flex: none;
}
.nav-toggle svg { width: 22px; height: 22px; color: var(--navy-ink); display: block; }

/* visually-hidden but accessible: used to keep the quote button's label
   for screen readers once space runs out on small screens */
.sr-shrink {
  transition: opacity 0.1s ease;
}

@media (max-width: 1300px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0.5rem clamp(1.25rem, 4vw, 2.5rem) 1rem;
    display: none;
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { width: 100%; padding-block: 0.65rem; border-bottom: 1px solid var(--line); }
  .nav-toggle { display: inline-flex; }
}

@media (max-width: 640px) {
  .brand-text span { display: none; }
  .brand img { height: 34px; }
  .brand-text strong { font-size: 0.92rem; }
  .tel-link { display: none; }
  .header-cta .btn-primary .sr-shrink {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
  }
  .header-cta .btn-primary { padding: 0.75em; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 62%, var(--navy-ink) 100%);
  color: #fff;
  padding-block: clamp(3.5rem, 7vw, 6rem) clamp(4.5rem, 9vw, 7rem);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(600px 300px at 85% 0%, rgba(45, 162, 218, 0.28), transparent 60%),
    radial-gradient(500px 260px at 8% 100%, rgba(108, 180, 228, 0.16), transparent 60%);
  pointer-events: none;
}

/* Austauschbares Hintergrundbild fuer den Hero: einfach assets/hero-bg.jpg
   durch ein eigenes Foto ersetzen (gleicher Dateiname), fertig. Der
   Farbverlauf liegt als halbtransparente Ebene darueber, damit Überschrift
   und Text auf jedem Bild lesbar bleiben. */
.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  pointer-events: none;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(160deg, rgba(0, 88, 149, 0.86) 0%, rgba(0, 60, 102, 0.86) 62%, rgba(6, 32, 56, 0.9) 100%);
  pointer-events: none;
}

/* Baustellen-Streifenakzent: duenne, in Markenfarben gehaltene Ansatz-Leiste
   ueber der Wellen-Trennlinie, angelehnt an Absperrband, ohne Gelb/Schwarz. */
.stripe-accent {
  position: relative;
  z-index: 1;
  height: 8px;
  width: 100%;
  background: repeating-linear-gradient(135deg, var(--sky) 0 16px, var(--navy-deep) 16px 32px);
  opacity: 0.5;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}
.hero.hero-simple .hero-grid { grid-template-columns: minmax(0, 1fr); max-width: 46rem; }
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr); gap: 2rem; }
}
.hero h1 { color: #fff; }
.hero .eyebrow { color: var(--sky-soft); }
.hero .eyebrow::before { background: var(--sky-soft); }
.hero-lead { color: #dce9f5; font-size: var(--fs-lead); max-width: 44ch; margin-top: 1.1rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2rem; }

.hero-badge-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  padding: 1.6rem;
  backdrop-filter: blur(4px);
}
.hero-badge-card h3 { color: #fff; font-size: 1.05rem; margin-bottom: 0.9rem; }
.hero-checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.7rem; }
.hero-checklist li { display: flex; gap: 0.65em; align-items: flex-start; color: #e7f0f9; font-size: 0.95rem; }
.hero-checklist svg { width: 1.2em; height: 1.2em; flex: none; color: var(--sky-soft); margin-top: 0.12em; }

.wave-divider { display: block; width: 100%; height: auto; margin-top: -1px; }
.wave-divider.flip { transform: scaleY(-1); }

/* ---------- Stat strip ---------- */
.stat-strip { background: var(--navy-deep); position: relative; overflow: hidden; }
.stat-strip-icon { position: absolute; color: #fff; opacity: 0.07; pointer-events: none; }
.stat-strip-icon svg { width: 100%; height: 100%; }
.stat-strip .wrap {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  padding-block: 1.9rem;
}
.stat {
  text-align: left;
  border-left: 2px solid rgba(255, 255, 255, 0.25);
  padding-left: 1rem;
  min-width: 0;
}
.stat-num { font-family: var(--font-mono); font-size: clamp(1.1rem, 1.6vw, 1.7rem); color: #fff; font-variant-numeric: tabular-nums; font-weight: 500; overflow-wrap: break-word; }
.stat-label { font-size: 0.82rem; color: #bcd3e6; margin-top: 0.15rem; overflow-wrap: break-word; }
@media (max-width: 780px) {
  .stat-strip .wrap { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ---------- Sections ---------- */
section { padding-block: clamp(3.5rem, 6vw, 5.5rem); }
.section-alt { background: var(--mist); }
.section-head { max-width: 46rem; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head p { margin-top: 1rem; font-size: var(--fs-lead); color: #3a4a5a; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .eyebrow::before { display: none; }
.section-head.between { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 1.25rem 2rem; max-width: none; }
.section-head.between > div { min-width: 0; flex: 1 1 200px; }
.section-head.between > .btn { flex: none; }

/* ---------- Service cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.4rem; }
@media (max-width: 980px) { .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .card-grid { grid-template-columns: minmax(0, 1fr); } }

.service-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem 1.6rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.service-icon {
  width: 46px; height: 46px;
  border-radius: 8px;
  background: var(--mist);
  color: var(--navy);
  display: grid; place-items: center;
  flex: none;
}
.service-icon svg { width: 24px; height: 24px; }
.service-card h3 { font-size: 1.15rem; }
.service-card p { font-size: 0.96rem; color: #45566a; margin: 0; }
.service-link { margin-top: auto; font-size: 0.88rem; font-weight: 700; text-decoration: none; color: var(--navy); display: inline-flex; align-items: center; gap: 0.35em; }
.service-link svg { width: 1em; height: 1em; }

/* ---------- Process ---------- */
.process-list { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0 1.2rem; counter-reset: step; position: relative; }
.process-list-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
@media (max-width: 1080px) { .process-list-5 { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 2.2rem; } }
@media (max-width: 900px) { .process-list { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); row-gap: 2.2rem; } }
@media (max-width: 560px) { .process-list { grid-template-columns: minmax(0, 1fr); } }
.process-step { position: relative; padding: 0 1.5rem 0 0; }
.process-num {
  font-family: var(--font-mono);
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--mist-2);
  line-height: 1;
}
.process-step h3 { margin-top: 0.6rem; font-size: 1.05rem; }
.process-step p { margin-top: 0.45rem; font-size: 0.92rem; color: #45566a; }
.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 1.4rem;
  right: 0;
  width: 1.4rem;
  height: 2px;
  background: var(--mist-2);
  display: none;
}
@media (min-width: 901px) { .process-list:not(.process-list-5) .process-step:not(:last-child)::after { display: block; } }
@media (min-width: 1081px) { .process-list-5 .process-step:not(:last-child)::after { display: block; } }

/* ---------- Area / map ---------- */
.area-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr); gap: clamp(2rem, 4vw, 3.5rem); align-items: center; }
@media (max-width: 900px) { .area-layout { grid-template-columns: minmax(0, 1fr); } }
.area-tags { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-top: 1.3rem; }
.area-tags span {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 0.4em 0.85em;
  border-radius: 999px;
  font-size: 0.86rem;
  color: var(--navy-ink);
  font-weight: 600;
}
.map-frame {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}
.map-frame iframe { width: 100%; height: 340px; border: 0; display: block; }

/* ---------- Trust badges ---------- */
.trust-row { display: flex; flex-wrap: wrap; gap: 2.2rem; align-items: center; }
.trust-item { display: flex; align-items: center; gap: 0.7rem; color: var(--navy-ink); font-weight: 600; font-size: 0.95rem; }
.trust-item svg { width: 1.6em; height: 1.6em; color: var(--sky); flex: none; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  border-radius: 14px;
  padding: clamp(2.2rem, 4vw, 3.2rem);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.75rem;
}
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 2vw, 2.1rem); }
.cta-band p { color: #d9e9f6; margin-top: 0.6rem; }
.cta-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; }

/* ---------- Value / about grid ---------- */
.value-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.2rem 2.2rem; }
@media (max-width: 700px) { .value-grid { grid-template-columns: minmax(0, 1fr); } }
.value-item { display: flex; gap: 1rem; }
.value-item svg { width: 28px; height: 28px; color: var(--sky); flex: none; margin-top: 0.15rem; }
.value-item h3 { font-size: 1.02rem; margin-bottom: 0.35rem; }
.value-item p { font-size: 0.94rem; color: #45566a; }

/* ---------- Two column text/media ---------- */
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (max-width: 880px) { .split { grid-template-columns: minmax(0, 1fr); } }
.split-media {
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-radius: 12px;
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: #eaf3fb;
}
.split-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(320px 220px at 20% 15%, rgba(108, 180, 228, 0.35), transparent 65%);
}
.split-media svg { width: 44%; height: 44%; position: relative; stroke-width: 1.3; }

/* ---------- Foto-Platzhalter ---------- */
/* Deutlich als Platzhalter erkennbar (gestrichelter Rahmen, Kamera-Icon,
   Bildunterschrift) -- kein vorgetäuschtes Foto. Später einfach ein
   <img> anstelle des .photo-placeholder-Blocks einsetzen. */
.photo-placeholder {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  border: 2px dashed var(--mist-2);
  background:
    repeating-linear-gradient(135deg, var(--mist) 0px, var(--mist) 10px, #ffffff 10px, #ffffff 20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-align: center;
  padding: 1.5rem;
  color: var(--graphite);
  overflow: hidden;
}
.photo-placeholder svg { width: 30px; height: 30px; color: var(--sky); flex: none; }
.photo-placeholder strong {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--navy-ink);
  text-transform: none;
  letter-spacing: 0;
}
.photo-placeholder span {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  color: var(--graphite);
}
.photo-placeholder.is-compact { aspect-ratio: 1 / 1; padding: 1rem; }
.photo-placeholder.is-wide { aspect-ratio: 16 / 9; }

.photo-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.1rem; }
@media (max-width: 780px) { .photo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 480px) { .photo-grid { grid-template-columns: minmax(0, 1fr); } }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr); gap: clamp(2rem, 4vw, 3.5rem); }
@media (max-width: 900px) { .contact-grid { grid-template-columns: minmax(0, 1fr); } }
.contact-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.9rem;
  box-shadow: var(--shadow-card);
}
.contact-line { display: flex; gap: 0.9rem; padding-block: 0.85rem; border-bottom: 1px solid var(--line); }
.contact-line:last-child { border-bottom: none; }
.contact-line svg { width: 1.3em; height: 1.3em; color: var(--sky); flex: none; margin-top: 0.1em; }
.contact-line strong { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--graphite); font-weight: 700; margin-bottom: 0.15rem; }
.contact-line a { color: var(--navy-ink); text-decoration: none; font-weight: 600; }
.contact-line a:hover { color: var(--sky); }

.form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: var(--shadow-card);
}
.form-row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 1rem; }
@media (max-width: 560px) { .form-row { grid-template-columns: minmax(0, 1fr); } }
.field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.05rem; }
.field label { font-size: 0.85rem; font-weight: 700; color: var(--navy-ink); }
.field input, .field select, .field textarea {
  font-family: var(--font-body);
  font-size: 0.98rem;
  padding: 0.7em 0.85em;
  border-radius: 6px;
  border: 1.5px solid var(--line);
  background: var(--ground);
  color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--sky); outline: none; background: #fff; }
.field textarea { resize: vertical; min-height: 110px; }
.form-note {
  display: flex;
  gap: 0.7rem;
  background: var(--mist);
  border: 1px dashed var(--mist-2);
  border-radius: 8px;
  padding: 0.9rem 1rem;
  font-size: 0.86rem;
  color: #3a4a5a;
  margin-top: 1rem;
}
.form-note svg { width: 1.3em; height: 1.3em; color: var(--navy); flex: none; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-ink); color: #cfe0ee; }
.footer-top { padding-block: clamp(2.5rem, 5vw, 3.5rem); display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr); gap: 2.5rem; }
@media (max-width: 880px) { .footer-top { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); } }
@media (max-width: 560px) { .footer-top { grid-template-columns: minmax(0, 1fr); } }
.footer-brand { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 1rem; }
.footer-brand img { height: 38px; }
.footer-brand strong { font-family: var(--font-display); text-transform: uppercase; color: #fff; font-size: 1rem; letter-spacing: 0.01em; }
.site-footer p { color: #9db4c8; font-size: 0.92rem; }
.footer-col h4 { font-family: var(--font-body); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.78rem; color: #7ea0bd; font-weight: 700; margin-bottom: 1rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
.footer-col a { color: #cfe0ee; text-decoration: none; font-size: 0.92rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-block: 1.3rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: #7ea0bd;
}
.footer-bottom a { color: #7ea0bd; }

/* ---------- Misc page header (inner pages) ---------- */
.page-hero-tag { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.4rem; }
.page-hero-tag span {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #eaf3fb;
  padding: 0.35em 0.8em;
  border-radius: 999px;
  font-size: 0.82rem;
  font-family: var(--font-mono);
}

/* ---------- Legal pages ---------- */
.legal-body h2 { font-size: 1.3rem; margin-top: 2.2rem; margin-bottom: 0.7rem; text-transform: none; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body p, .legal-body li { color: #354657; font-size: 0.98rem; }
.legal-body ul { padding-left: 1.2rem; }
.legal-body a { color: var(--navy); }
.legal-body { max-width: 72ch; }

/* ---------- Reference / segment list ---------- */
.segment-list { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.2rem; }
@media (max-width: 900px) { .segment-list { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .segment-list { grid-template-columns: minmax(0, 1fr); } }
.segment-card { text-align: center; padding: 1.6rem 1rem; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); }
.segment-card svg { width: 34px; height: 34px; color: var(--sky); margin: 0 auto 0.8rem; }
.segment-card h3 { font-size: 0.98rem; }

.quote-block {
  background: var(--paper);
  border-left: 4px solid var(--sky);
  border-radius: 0 10px 10px 0;
  padding: 1.6rem 1.8rem;
  box-shadow: var(--shadow-card);
}
.quote-block p { font-size: 1.05rem; color: #2c3b4b; font-style: italic; }
.quote-block footer { margin-top: 0.9rem; font-size: 0.85rem; color: var(--graphite); font-style: normal; }

.badge-row { display: flex; flex-wrap: wrap; gap: 1.4rem; align-items: center; }
.badge-pill {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--paper); border: 1px solid var(--line); border-radius: 999px;
  padding: 0.6em 1.1em; font-size: 0.88rem; font-weight: 600; color: var(--navy-ink);
}
.badge-pill svg { width: 1.3em; height: 1.3em; color: var(--gold); }

/* ---------- Vorher/Nachher ---------- */
.before-after { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 1.5rem; }
@media (max-width: 640px) { .before-after { grid-template-columns: minmax(0, 1fr); gap: 1.5rem; } }
.before-after-pair { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 0.4rem; align-items: center; position: relative; }
.before-after-pair > div { min-width: 0; }
.before-after-pair .photo-placeholder { aspect-ratio: 3 / 4; }
.before-after-pair .ba-label {
  position: absolute; top: 0.6rem; left: 0.6rem;
  background: var(--navy-ink); color: #fff; font-family: var(--font-mono);
  font-size: 0.68rem; letter-spacing: 0.05em; padding: 0.25em 0.6em; border-radius: 999px; z-index: 1;
}
.before-after-pair .ba-label.after { left: auto; right: 0.6rem; background: var(--sky); }
.before-after-caption { grid-column: 1 / -1; text-align: center; font-size: 0.85rem; color: var(--graphite); margin-top: 0.3rem; }

/* ---------- Kundenlogo-Karussell (Platzhalter) ---------- */
.logo-marquee {
  width: 100%;
  min-width: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.logo-marquee-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.logo-tile {
  flex: none;
  width: 168px;
  height: 84px;
  border-radius: 8px;
  border: 1.5px dashed var(--mist-2);
  background: var(--paper);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  color: var(--graphite);
}
.logo-tile svg { width: 22px; height: 22px; color: var(--sky); }
.logo-tile span { font-family: var(--font-mono); font-size: 0.68rem; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .logo-marquee-track { animation: none; overflow-x: auto; }
}

/* ---------- Testimonial-Platzhalter ---------- */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.4rem; }
@media (max-width: 900px) { .testimonial-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px) { .testimonial-grid { grid-template-columns: minmax(0, 1fr); } }
.testimonial-card {
  background: var(--paper);
  border: 1.5px dashed var(--mist-2);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.testimonial-stars { display: flex; gap: 0.2rem; color: var(--mist-2); }
.testimonial-stars svg { width: 16px; height: 16px; fill: none; stroke: var(--mist-2); }
.testimonial-quote-icon { width: 26px; height: 26px; color: var(--mist-2); }
.testimonial-lines { display: grid; gap: 0.5rem; }
.testimonial-lines span { display: block; height: 9px; border-radius: 5px; background: repeating-linear-gradient(90deg, var(--mist) 0, var(--mist) 8px, #fff 8px, #fff 16px); }
.testimonial-lines span:nth-child(1) { width: 100%; }
.testimonial-lines span:nth-child(2) { width: 88%; }
.testimonial-lines span:nth-child(3) { width: 62%; }
.testimonial-who { display: flex; align-items: center; gap: 0.7rem; margin-top: 0.2rem; }
.testimonial-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1.5px dashed var(--mist-2); background: var(--mist);
  display: grid; place-items: center; color: var(--graphite); flex: none;
}
.testimonial-avatar svg { width: 18px; height: 18px; }
.testimonial-who strong { display: block; font-size: 0.86rem; color: var(--navy-ink); font-weight: 700; }
.testimonial-who span { font-family: var(--font-mono); font-size: 0.72rem; color: var(--graphite); }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 0.75rem; max-width: 52rem; margin-inline: auto; }
.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.2rem 1.3rem;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 0;
  font-weight: 700;
  color: var(--navy-ink);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .faq-plus { flex: none; width: 22px; height: 22px; border-radius: 50%; background: var(--mist); color: var(--navy); display: grid; place-items: center; font-size: 1.1rem; line-height: 1; transition: transform 0.15s ease; }
.faq-item[open] summary .faq-plus { transform: rotate(45deg); }
.faq-item p { padding-bottom: 1.1rem; color: #3a4a5a; font-size: 0.95rem; margin: 0; }

/* ---------- MöweUpdate (Projekt-Journal) ---------- */
.update-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.4rem; }
@media (max-width: 980px) { .update-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .update-grid { grid-template-columns: minmax(0, 1fr); } }
.update-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}
.update-card .photo-placeholder { aspect-ratio: 16 / 10; border-radius: 0; border-width: 0 0 1px 0; }
.update-card-body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
.update-meta { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.04em; color: var(--graphite); text-transform: uppercase; }
.update-card h3 { font-size: 1.05rem; }
.update-card p { font-size: 0.92rem; color: #45566a; }

/* ---------- Dedizierte Leistungs-Landingpages ---------- */
.deep-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4em;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--sky-soft);
  margin-bottom: 1.2rem;
}
.deep-breadcrumb a { color: var(--sky-soft); text-decoration: none; }
.deep-breadcrumb a:hover { text-decoration: underline; }
.deep-breadcrumb span[aria-current] { color: #dce9f5; }
.deep-breadcrumb span:not([aria-current]) { opacity: 0.6; }

.deep-cross-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
@media (max-width: 780px) { .deep-cross-grid { grid-template-columns: minmax(0, 1fr); } }
.deep-cross-card {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.deep-cross-card:hover { transform: translateY(-2px); }
.deep-cross-card svg:first-child { width: 22px; height: 22px; color: var(--sky); flex: none; }
.deep-cross-card span { flex: 1 1 auto; min-width: 0; }
.deep-cross-card svg:last-child { width: 1.1em; height: 1.1em; color: var(--graphite); flex: none; }
