/* ══════════════════════════════════════════════════════════════
   H&M GEBÄUDEREINIGUNG — Modern Trust
   Manrope sans-serif · soft radii · warm earth accents ·
   trust-first surfaces. Built for conversion.
   ══════════════════════════════════════════════════════════════ */

:root {
  /* Surface & Ink — kühle Neutrals (slate), passend zu Ice-Blue-Akzent */
  --paper:        #ffffff;
  --paper-soft:   #f8fafc;       /* slate-50 */
  --paper-deep:   #f1f5f9;       /* slate-100 */
  --paper-warm:   #e2e8f0;       /* slate-200 */
  --line:         #e2e8f0;       /* slate-200 */
  --line-soft:    #f1f5f9;       /* slate-100 */
  --line-strong:  #cbd5e1;       /* slate-300 */

  --ink:          #0f172a;       /* slate-900 */
  --ink-soft:     #334155;       /* slate-700 */
  --ink-mute:     #64748b;       /* slate-500 */
  --ink-faint:    #94a3b8;       /* slate-400 */

  /* Akzent — Ice Blue / Clean Water
     Reinheit, Frische, Wasser, professionell. Steht für Sauberkeit, nicht Schmutz.
     --clay      = primärer Akzent (Buttons, Headlines em, Hover)
     --clay-deep = Aktiv/Hover-State, dunkler
     --clay-soft = heller Akzent auf dunklem Grund
     --clay-tint = sehr helle Fläche für Badges/Pills */
  --clay:         #0891b2;
  --clay-deep:    #0e7490;
  --clay-soft:    #67e8f9;
  --clay-tint:    #ecfeff;

  /* Gradient — verleiht CTAs + Eyebrows einen "frische Wasser"-Touch */
  --gradient-clean: linear-gradient(135deg, #0891b2 0%, #06b6d4 50%, #22d3ee 100%);
  --gradient-clean-soft: linear-gradient(135deg, #ecfeff 0%, #cffafe 100%);
  --gradient-clean-dark: linear-gradient(135deg, #164e63 0%, #0e7490 100%);

  /* Trust-Anker — slate-gray statt warm-coffee, passt zu kühlem Blau */
  --trust:        #0f172a;       /* slate-900 */
  --trust-deep:   #020617;       /* slate-950 */

  /* Feedback-Farben (für Form-Validierung etc.) */
  --success:      #5a7d4e;
  --danger:       #b04545;

  /* Typo — Manrope für alles, kein Serif mehr */
  --sans:   "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  /* --mono ist auf Manrope gemappt — Mikrotext bleibt damit modern statt technisch.
     Stellen, die wirklich Tabular-Numerals brauchen, können font-variant-numeric verwenden. */
  --mono:   var(--sans);
  /* Legacy fallback — wenn irgendwo noch --serif referenziert, sieht es gut aus */
  --serif:  var(--sans);

  /* Type-Scale — 13 / 14 / 15 / 16 / 18 / 22 / 30 / 40 / 52 / 72 */
  --t-xs:   .8125rem;   /* 13 */
  --t-sm:   .875rem;    /* 14 */
  --t-base: 1rem;       /* 16 */
  --t-md:   1.125rem;   /* 18 */
  --t-lg:   1.375rem;   /* 22 */
  --t-xl:   1.875rem;   /* 30 */
  --t-2xl:  2.5rem;     /* 40 */
  --t-3xl:  3.25rem;    /* 52 */
  --t-4xl:  4.5rem;     /* 72 */

  /* Spacing — 4/8 dp rhythm */
  --s-1: .25rem; --s-2: .5rem; --s-3: .75rem; --s-4: 1rem;
  --s-5: 1.5rem; --s-6: 2rem; --s-7: 3rem; --s-8: 4rem;
  --s-9: 6rem; --s-10: 9rem; --s-11: 12rem;

  /* Layout */
  --max: 1320px;
  --gutter: clamp(1.25rem, 4vw, 3rem);

  /* Radien — modern, weich, aber nicht spielerisch */
  --r-sm:  8px;     /* Pills, Tags */
  --r-md:  12px;    /* Buttons */
  --r-lg:  16px;    /* Cards */
  --r-xl:  24px;    /* Large feature cards */
  --r-full: 999px;  /* nur noch für Avatars + Icon-Buttons */

  /* Schatten — gestaffelte Trust-Schatten */
  --shadow-sm: 0 1px 2px rgba(28,27,24,.05), 0 1px 1px rgba(28,27,24,.04);
  --shadow:    0 2px 6px -1px rgba(28,27,24,.06), 0 4px 12px -2px rgba(28,27,24,.06);
  --shadow-lg: 0 8px 24px -4px rgba(28,27,24,.08), 0 16px 48px -12px rgba(28,27,24,.10);
  --shadow-xl: 0 24px 60px -16px rgba(28,27,24,.16), 0 40px 100px -30px rgba(28,27,24,.18);

  /* Motion */
  --ease:     cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);

  /* Hairline */
  --hair: 1px solid var(--line);
  --hair-soft: 1px solid var(--line-soft);
}

/* RESET ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

body {
  font-family: var(--sans);
  font-size: var(--t-base);
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  font-feature-settings: "ss01", "ss02", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Heading-Defaults — Manrope mit klarer Hierarchie */
h1, h2, h3, h4 {
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.15;
  color: var(--ink);
}
h1 { font-weight: 800; letter-spacing: -.03em; line-height: 1.05; }
h4, h5, h6 { font-weight: 600; }

img, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { padding: 0; list-style: none; }

::selection { background: var(--clay); color: var(--paper); }

:focus-visible { outline: 2px solid var(--clay); outline-offset: 3px; border-radius: 2px; }

/* Skip link */
.skip-link {
  position: absolute; top: -100px; left: var(--s-4);
  background: var(--ink); color: var(--paper);
  padding: .6rem 1rem; font-size: .9rem; z-index: 100;
  transition: top .25s var(--ease);
}
.skip-link:focus { top: var(--s-3); }
section[id], :target { scroll-margin-top: 92px; }

/* ════════════ TOP-METER ════════════════════════════════════
   Vercel-/Linear-style dünner Progress-Streifen am Top         */
.top-meter {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  height: 2px; background: transparent; pointer-events: none;
}
.top-meter__bar { height: 100%; width: 0%; background: var(--gradient-clean); transition: width .1s linear; }

/* ════════════ NAV ════════════════════════════════════════════ */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center; gap: var(--s-5);
  padding: var(--s-3) var(--gutter);
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(160%) blur(20px);
  -webkit-backdrop-filter: saturate(160%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), padding .25s var(--ease), background .25s var(--ease);
}
.nav.is-stuck {
  border-bottom-color: var(--line);
  padding-top: var(--s-2); padding-bottom: var(--s-2);
  background: rgba(255,255,255,.96);
}

.nav__brand { display: inline-flex; align-items: center; gap: var(--s-3); }
.nav__brand-mark {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: #fff;
  border-radius: var(--r-md);
  border: 1px solid rgba(0,0,0,.08);
  overflow: hidden;
  position: relative;
}
.nav__brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.nav__brand-mark::after { display: none; }
.nav__brand-text { display: flex; flex-direction: column; line-height: 1.2; gap: 2px; }
.nav__brand-name {
  font-family: var(--sans); font-weight: 700; font-size: var(--t-base);
  letter-spacing: -.015em; color: var(--ink);
}
.nav__brand-meta {
  font-family: var(--sans); font-size: var(--t-xs); color: var(--ink-mute);
  text-transform: none; letter-spacing: 0; font-weight: 500;
}

.nav__links {
  display: flex; align-items: center; gap: var(--s-5);
  justify-self: center;
}
.nav__links a {
  position: relative;
  font-family: var(--sans); font-size: var(--t-sm); font-weight: 500;
  color: var(--ink-soft);
  padding: 8px 12px;
  border-radius: var(--r-sm);
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav__links a:not(.nav__cta)::before { display: none; }
.nav__links a:not(.nav__cta):hover { color: var(--ink); background: var(--paper-soft); }

.nav__cta {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--trust); color: var(--paper) !important;
  padding: 10px 18px !important;
  font-size: var(--t-sm) !important; font-weight: 600;
  border-radius: var(--r-md);
  transition: background .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
  touch-action: manipulation;
  box-shadow: var(--shadow-sm);
}
.nav__cta:hover { background: var(--clay-deep); transform: translateY(-1px); box-shadow: var(--shadow); }
.nav__cta::after { display: none; }

.nav__menu { display: none; flex-direction: column; gap: 5px; width: 28px; padding: 6px; }
.nav__menu span { height: 1.5px; background: var(--ink); border-radius: 1px; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav__menu[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__menu[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__menu[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav[hidden] { display: none !important; }
.mobile-nav {
  position: fixed; inset: 64px 0 0 0; z-index: 49;
  background: var(--paper); padding: var(--s-6) var(--gutter);
  display: flex; flex-direction: column; gap: var(--s-4);
  border-bottom: 1px solid var(--line);
  overflow-y: auto;
  animation: fade-in .35s var(--ease);
}
.mobile-nav a {
  font-family: var(--serif); font-size: 1.55rem; font-weight: 400;
  color: var(--ink); padding: .35rem 0;
  border-bottom: 1px solid var(--line-soft);
}
.mobile-nav__cta { color: var(--clay) !important; border-bottom: none !important; padding-top: var(--s-3) !important; font-style: italic; }
@keyframes fade-in { from { opacity: 0; transform: translateY(-6px);} to { opacity: 1; transform: translateY(0);} }

/* ════════════ BUTTONS — moderne weiche Rechtecke ═══════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s-2);
  padding: 14px 24px;
  font-family: var(--sans); font-size: var(--t-sm); font-weight: 600;
  letter-spacing: -.005em;
  border-radius: var(--r-md);
  transition: transform .25s var(--ease-out), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(168,137,107,.18);
  position: relative;
  min-height: 48px;        /* a11y touch target */
}
.btn--primary {
  background: var(--gradient-clean);
  background-size: 200% 100%;
  background-position: 0% 0%;
  color: var(--paper);
  box-shadow: 0 4px 14px -2px rgba(8,145,178,.45), var(--shadow-sm);
  transition: transform .25s var(--ease-out), background-position .4s var(--ease),
              box-shadow .25s var(--ease);
}
.btn--primary:hover {
  background-position: 100% 0%;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -4px rgba(8,145,178,.55), var(--shadow);
}
.btn--ghost {
  background: var(--paper); color: var(--ink);
  border: 1px solid var(--line-strong);
}
.btn--ghost:hover {
  background: var(--paper-soft); border-color: var(--ink);
  transform: translateY(-1px);
}
.btn--block { display: flex; width: 100%; }
.btn__arrow {
  display: inline-block;
  transition: transform .35s var(--ease-out);
}
.btn:hover .btn__arrow { transform: translateX(4px); }

/* Editorial-Link (Underline-Slide) ─────────────────────── */
.elink {
  position: relative; padding-bottom: 3px;
  background-image: linear-gradient(currentColor,currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 100% 1px;
  transition: color .25s var(--ease);
}
.elink:hover { color: var(--clay); }

/* ════════════ HERO ═══════════════════════════════════════════ */
.hero {
  position: relative;
  max-width: var(--max); margin: 0 auto;
  padding: clamp(2rem, 4vw, 3.5rem) var(--gutter) clamp(3rem, 6vw, 5rem);
}

/* Meta-Row über Hero ───────────────────────────────────── */
.hero__meta {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: var(--s-4);
  padding-bottom: var(--s-6);
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--ink-mute);
}
.hero__meta-mid { color: var(--clay); }
.hero__meta-right { text-align: right; }

/* Hauptgrid — Text links, Querformat-Bild rechts, beide gleich hoch
   Owner-Card ist absolut am unteren Bildrand verankert, damit
   die rechte Spalte exakt auf gleicher Höhe wie die linke endet. */
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 4vw, 3rem);
  padding-top: var(--s-7);
  align-items: stretch;
}
.hero__copy { display: flex; flex-direction: column; min-width: 0; justify-content: center; }
.hero__aside {
  min-width: 0; width: 100%;
  position: relative;
  display: flex; flex-direction: column;
}
.hero__photo { flex: 1; margin: 0; }
.hero__photo img { width: 100%; height: 100%; min-height: 420px; aspect-ratio: auto; object-fit: cover; }

/* Owner-Card schwebt auf dem Bild unten — Bild bleibt voll, Spalten enden gleich hoch */
.hero__owner {
  position: absolute;
  left: var(--s-3); right: var(--s-3); bottom: var(--s-3);
  margin: 0;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: 0 10px 32px -8px rgba(15,23,42,.25);
}

.hero__lefthead {
  display: inline-flex; align-items: center; gap: var(--s-3);
  margin-bottom: var(--s-5);
  padding: 6px 14px 6px 6px;
  background: var(--gradient-clean-soft);
  border: 1px solid #cffafe;
  border-radius: var(--r-full);
  box-shadow: 0 2px 8px -2px rgba(8,145,178,.15);
}
.hero__lefthead::before {
  content: ""; width: 8px; height: 8px;
  background: var(--gradient-clean); border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(34,211,238,.2);
}
.hero__index {
  font-family: var(--sans); font-size: var(--t-xs);
  font-weight: 600; letter-spacing: -.005em;
  color: var(--clay-deep);
  text-transform: none;
}
.hero__lefthead-divider { display: none; }
.hero__lefthead-since {
  font-family: var(--sans); font-size: var(--t-xs);
  font-weight: 500; color: var(--ink-mute);
  text-transform: none; letter-spacing: 0;
  padding-left: var(--s-3);
  border-left: 1px solid var(--clay);
}

.hero__title {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -.035em;
  color: var(--ink);
  text-wrap: balance;
}
.hero__title-row {
  display: block;
  overflow: hidden;
  /* Padding verhindert Clipping bei Ober-/Unterlängen wie g, j, p, ä, ö, ü */
  padding-top: .12em;
  padding-bottom: .14em;
  margin-top: -.12em;
  margin-bottom: -.14em;
}
.hero__title-row > span {
  display: inline-block;
  opacity: 0; transform: translateY(60%);
  animation: rise 1s var(--ease-out) forwards;
  padding-top: .02em;
  padding-bottom: .02em;
}
.hero__title-row:nth-child(1) > span { animation-delay: .1s; }
.hero__title-row:nth-child(2) > span { animation-delay: .25s; }
.hero__title em {
  font-style: normal;
  font-weight: 800;
  background: var(--gradient-clean);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}
.hero__title em::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 4px;
  background: var(--gradient-clean);
  border-radius: 2px;
  transform: scaleX(0); transform-origin: left;
  animation: under .9s var(--ease-out) 1.1s forwards;
  opacity: .5;
}
@keyframes rise { to { opacity: 1; transform: translateY(0); } }
@keyframes under { to { transform: scaleX(1); } }

.hero__lead {
  max-width: 58ch;
  font-size: var(--t-md);
  line-height: 1.65;
  color: var(--ink-soft);
  font-weight: 400;
  margin-top: var(--s-6);
  opacity: 0; animation: rise .9s var(--ease-out) .7s forwards;
}
.hero__ctas {
  display: flex; flex-wrap: wrap; gap: var(--s-3);
  margin-top: var(--s-6);
  opacity: 0; animation: rise .9s var(--ease-out) .85s forwards;
}

/* Hero-Aside (rechte Spalte) — jetzt mit Foto + Owner-Card */
.hero__aside {
  position: relative;
  display: flex; flex-direction: column; gap: var(--s-4);
  opacity: 0; animation: rise 1s var(--ease-out) .5s forwards;
}

.hero__photo {
  position: relative;
  margin: 0;
  background: var(--paper-deep);
  overflow: hidden;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
}
.hero__photo img {
  display: block; width: 100%; height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 1.8s var(--ease-out);
}
.hero__photo:hover img { transform: scale(1.04); }
.hero__photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.55) 100%);
  pointer-events: none;
}
.hero__photo figcaption {
  position: absolute; top: 18px; left: 18px;
  z-index: 1;
}
.hero__photo-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-size: var(--t-xs);
  font-weight: 600; letter-spacing: -.005em; text-transform: none;
  padding: 8px 14px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: var(--r-full);
  color: #fff;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 16px -4px rgba(0,0,0,.3);
}
.hero__photo-tag-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22d3ee;
  box-shadow: 0 0 0 4px rgba(34,211,238,.3);
  animation: pulseDot 2.2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.25); opacity: .65; }
}

/* Owner-Karte unter dem Foto — sauberer, CTA-orientiert */
.hero__owner {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: var(--s-3);
  align-items: center;
  padding: var(--s-4);
  margin-top: var(--s-4);
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}
.hero__owner-mark-wrap {
  width: 52px; height: 52px;
  background: var(--gradient-clean-soft);
  border-radius: var(--r-md);
  display: grid; place-items: center;
  border: 1px solid #cffafe;
}
.hero__owner-mark {
  width: 40px; height: 40px; object-fit: contain;
  background: transparent; padding: 0; border-radius: 0;
}
.hero__owner-text { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.hero__owner-eyebrow {
  font-family: var(--sans); font-size: var(--t-xs);
  font-weight: 600; letter-spacing: -.005em; text-transform: none;
  color: var(--clay-deep);
}
.hero__owner-name {
  font-family: var(--sans); font-weight: 700; font-style: normal;
  font-size: var(--t-md); letter-spacing: -.015em;
  color: var(--ink);
}
.hero__owner-sub {
  font-family: var(--sans); font-size: var(--t-xs);
  color: var(--ink-mute); font-weight: 500;
}
.hero__owner-cta {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  background: var(--gradient-clean);
  color: #fff;
  border-radius: var(--r-md);
  box-shadow: 0 4px 12px -2px rgba(8,145,178,.45);
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease);
}
.hero__owner-cta:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 18px -4px rgba(8,145,178,.55);
}

/* Trust-Strip — 4 gleich breite Karten: Angebot · Festpreis · Ansprechpartner · Öffnungszeiten */
.hero__trust {
  margin-top: var(--s-7);
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--s-3);
  opacity: 0; animation: rise .9s var(--ease-out) 1s forwards;
}

/* Ansprechpartner-Card — Name + klickbare Telefonnummer */
.hero__trust-item--contact { gap: var(--s-2); }
.hero__trust-contact-name {
  font-family: var(--sans); font-weight: 800;
  font-size: var(--t-md); letter-spacing: -.018em;
  color: var(--ink);
  line-height: 1.15;
  margin: 0;
}
.hero__trust-contact-phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-size: var(--t-sm);
  font-weight: 600; letter-spacing: -.005em;
  color: var(--clay-deep);
  margin-top: var(--s-2);
  padding: 8px 12px;
  background: var(--gradient-clean-soft);
  border: 1px solid #cffafe;
  border-radius: var(--r-md);
  width: fit-content;
  transition: background .25s var(--ease), color .25s var(--ease), transform .2s var(--ease-out);
}
.hero__trust-contact-phone:hover {
  background: var(--gradient-clean);
  color: #fff;
  transform: translateY(-1px);
  border-color: var(--clay);
}
.hero__trust-contact-phone svg { flex-shrink: 0; }

/* Öffnungszeiten-Card — kompakte Stack-List */
.hero__trust-item--hours { gap: var(--s-2); }
.hero__trust-hours {
  display: flex; flex-direction: column; gap: 6px;
  font-family: var(--sans); font-size: var(--t-sm);
  color: var(--ink-soft); font-weight: 500;
  margin-top: var(--s-2);
  line-height: 1.4;
}
.hero__trust-hours span {
  display: flex; align-items: baseline; gap: 8px;
}
.hero__trust-hours strong {
  font-family: var(--sans); font-weight: 700;
  color: var(--ink);
  min-width: 42px;
  display: inline-block;
}
.hero__trust-item {
  display: flex; flex-direction: column; gap: 4px;
  padding: var(--s-5);
  background: var(--paper-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.hero__trust-item:hover {
  background: var(--clay-tint);
  border-color: var(--clay-soft);
  transform: translateY(-2px);
}
.hero__trust-item::before { display: none; }
.hero__trust-num {
  font-family: var(--sans); font-weight: 800;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: -.03em; line-height: 1;
  color: var(--ink);
}
.hero__trust-num sup { font-size: .5em; vertical-align: super; color: var(--clay-deep); margin-left: 2px; font-weight: 700; }
.hero__trust-num em { font-style: normal; color: var(--clay); }
.hero__trust-label {
  font-family: var(--sans); font-size: var(--t-xs);
  font-weight: 600; letter-spacing: -.005em;
  color: var(--clay-deep);
  text-transform: none;
  margin-bottom: var(--s-2);
}
.hero__trust-desc { font-size: var(--t-sm); color: var(--ink-soft); line-height: 1.5; margin-top: 4px; max-width: 28ch; }

/* Marquee — Sans, freundlich, mit Pill-Style ──────────── */
.marquee {
  margin-top: var(--s-8);
  padding: var(--s-5) 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.marquee-track {
  display: inline-flex; gap: var(--s-5); white-space: nowrap;
  font-family: var(--sans); font-style: normal; font-weight: 600;
  font-size: var(--t-md);
  color: var(--ink);
  animation: marquee 55s linear infinite;
}
.marquee-track span:nth-child(4n+2),
.marquee-track span:nth-child(4n+4) { color: var(--clay-deep); }
.marquee-track .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--clay); align-self: center; opacity: .7;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ════════════ SECTION SHELLS ════════════════════════════════ */
.section {
  max-width: var(--max); margin: 0 auto;
  padding: clamp(4rem, 9vw, 8rem) var(--gutter);
  position: relative;
}
.section--alt { background: var(--paper-deep); max-width: none; }
.section--alt > * { max-width: var(--max); margin-left: auto; margin-right: auto; }
.section--ink { background: var(--ink); color: var(--paper); max-width: none; }
.section--ink > * { max-width: var(--max); margin-left: auto; margin-right: auto; }

.section__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: flex-end;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
  padding-bottom: var(--s-5);
  border-bottom: 1px solid var(--line);
}
.section--ink .section__head { border-bottom-color: rgba(255,255,255,.12); }
.section__head--single { grid-template-columns: 1fr; }

.section__id {
  display: inline-flex; align-items: center; gap: var(--s-2);
  font-family: var(--sans); font-size: var(--t-xs);
  font-weight: 600;
  color: var(--clay-deep);
  text-transform: none; letter-spacing: -.005em;
  margin-bottom: var(--s-3);
  padding: 6px 12px;
  background: var(--clay-tint);
  border-radius: var(--r-full);
  width: fit-content;
}
.section__id::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--clay);
}
.section__title {
  font-family: var(--sans); font-weight: 800;
  font-size: clamp(1.85rem, 4.5vw, 3.4rem);
  line-height: 1.08; letter-spacing: -.028em;
  color: inherit; text-wrap: balance;
  max-width: 16ch;
}
.section__title em { font-style: normal; color: var(--clay); font-weight: 800; }
.section--ink .section__title em { color: var(--clay-soft); }
.section__lede {
  font-size: var(--t-md); line-height: 1.6;
  color: var(--ink-soft);
  max-width: 56ch;
  font-weight: 400;
}
.section--ink .section__lede { color: rgba(255,255,255,.88); }
.process .section__lede,
.contact__lede { color: rgba(255,255,255,.88); }
/* Section-ID Pills auf dunklem Grund — heller Akzent statt dunkles Tint */
.section--ink .section__id,
.process .section__id,
.contact__id {
  background: rgba(103,232,249,.12);
  color: var(--clay-soft);
  border: 1px solid rgba(103,232,249,.28);
}
.section--ink .section__id::before,
.process .section__id::before,
.contact__id::before { background: var(--clay-soft); }

/* ════════════ SERVICES — KOMPAKTES CARD-GRID ════════════════
   3×3 auf Desktop · 2×x auf Tablet · 1-spaltig auf Mobile.
   Einheitliches Card-Format: Bild oben, Titel + 1-Liner + Tags. */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.75rem);
}
.svc-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  transition: border-color .25s var(--ease), transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
  isolation: isolate;
  overflow: hidden;
}
.svc-card:hover {
  border-color: var(--clay);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.svc-card__link {
  display: flex; flex-direction: column;
  height: 100%;
  color: inherit;
}
.svc-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--paper-deep);
}
.svc-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(35%) contrast(1.02);
  transition: filter .6s var(--ease-out), transform 1.4s var(--ease-out);
}
.svc-card:hover .svc-card__media img {
  filter: grayscale(0%) contrast(1);
  transform: scale(1.05);
}
.svc-card__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(26,23,20,.25));
  opacity: 0; transition: opacity .35s var(--ease);
}
.svc-card:hover .svc-card__media::after { opacity: 1; }

/* Badge (z. B. "15 % Rabatt im 1. Jahr") */
.svc-card__badge {
  position: absolute; top: 12px; left: 12px;
  z-index: 2;
  background: var(--gradient-clean); color: #fff;
  font-family: var(--sans);
  font-size: var(--t-xs); font-weight: 600;
  letter-spacing: -.005em;
  padding: 6px 12px;
  border-radius: var(--r-sm);
  white-space: nowrap;
  box-shadow: 0 4px 12px -4px rgba(8,145,178,.55);
}

.svc-card__body {
  flex: 1;
  display: flex; flex-direction: column; gap: var(--s-3);
  padding: var(--s-5);
}
.svc-card__num {
  font-family: var(--sans); font-size: var(--t-xs);
  font-weight: 600; letter-spacing: -.005em;
  color: var(--clay-deep);
  text-transform: none;
}
.svc-card__title {
  font-family: var(--sans); font-weight: 700;
  font-size: var(--t-lg);
  line-height: 1.2; letter-spacing: -.02em;
  color: var(--ink);
  transition: color .25s var(--ease);
}
.svc-card:hover .svc-card__title { color: var(--clay-deep); }
.svc-card__title em { font-style: normal; font-weight: 700; color: var(--clay); }

.svc-card__desc {
  font-size: var(--t-sm); line-height: 1.55;
  color: var(--ink-soft);
}

.svc-card__tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: auto;
  padding-top: var(--s-3);
  border-top: 1px solid var(--line-soft);
}
.svc-card__tags span {
  font-family: var(--sans); font-size: var(--t-xs);
  font-weight: 500; letter-spacing: -.005em;
  color: var(--ink-mute);
  padding: 4px 10px;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  text-transform: none;
  transition: border-color .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.svc-card:hover .svc-card__tags span { background: var(--clay-tint); border-color: var(--clay-soft); color: var(--clay-deep); }

.svc-card__arrow {
  position: absolute; right: var(--s-4); top: var(--s-4);
  z-index: 2;
  width: 38px; height: 38px;
  background: rgba(255,255,255,.95);
  color: var(--ink);
  display: grid; place-items: center;
  border-radius: 50%;
  font-size: 1rem; font-weight: 400;
  transform: translate(8px,-4px); opacity: 0;
  transition: transform .35s var(--ease-out), opacity .35s var(--ease-out),
              background .3s var(--ease), color .3s var(--ease);
}
.svc-card:hover .svc-card__arrow {
  transform: translate(0,0); opacity: 1;
  background: var(--clay); color: #fff;
}

/* Featured Card (Unterhaltsreinigung – №01) etwas hervorgehoben */
.svc-card--featured { border-color: var(--ink); }
.svc-card--featured .svc-card__media { aspect-ratio: 16 / 10; }

/* ════════════ PROCESS ═══════════════════════════════════════ */
.process {
  background: var(--trust); color: var(--paper);
  max-width: none;
  position: relative;
  overflow: hidden;
}
.process::before {
  content: ""; position: absolute;
  top: -10%; left: -10%; width: 60%; height: 60%;
  background: radial-gradient(circle at center, rgba(8,145,178,.18), transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.process::after {
  content: ""; position: absolute;
  bottom: -20%; right: -10%; width: 50%; height: 60%;
  background: radial-gradient(circle at center, rgba(34,211,238,.12), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.process .section { max-width: var(--max); position: relative; z-index: 1; }
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.14);
}
.process__step {
  padding: var(--s-7) var(--s-5) var(--s-6);
  border-right: 1px solid rgba(255,255,255,.14);
  position: relative;
  display: flex; flex-direction: column;
  transition: background .4s var(--ease);
}
.process__step:last-child { border-right: 0; }
.process__step:hover { background: rgba(255,255,255,.03); }

.process__num {
  display: inline-grid; place-items: center;
  width: 56px; height: 56px;
  font-family: var(--sans); font-weight: 700; font-style: normal;
  font-size: var(--t-md);
  line-height: 1; letter-spacing: -.02em;
  background: var(--gradient-clean);
  color: #fff;
  border-radius: var(--r-md);
  margin-bottom: var(--s-4);
  box-shadow: 0 6px 16px -4px rgba(8,145,178,.55), 0 0 0 1px rgba(103,232,249,.2) inset;
}
.process__num::after { display: none; }
.process__step h3 {
  font-family: var(--sans); font-weight: 700; font-size: var(--t-lg);
  letter-spacing: -.018em; margin-bottom: var(--s-2);
  color: var(--paper);
}
.process__step p {
  font-size: var(--t-sm); line-height: 1.55;
  color: rgba(255,255,255,.7);
  margin-bottom: var(--s-5);
}
.process__eta {
  margin-top: auto;
  font-family: var(--sans); font-size: var(--t-xs);
  font-weight: 600; text-transform: none; letter-spacing: -.005em;
  color: var(--clay-soft);
  padding: 4px 10px;
  background: rgba(255,255,255,.08);
  border-radius: var(--r-sm);
  width: fit-content;
  border-top: 0;
}

/* Bildband unter den Steps ─────────────────────────────── */
.process__band {
  margin: clamp(2.5rem, 5vw, 4rem) 0 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
}
.process__band img {
  width: 100%; height: clamp(220px, 32vw, 420px);
  object-fit: cover;
  filter: grayscale(45%) contrast(1.05);
  transition: filter 1.5s var(--ease-out), transform 8s var(--ease-out);
}
.process__band:hover img { filter: grayscale(0%); transform: scale(1.03); }
.process__band::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,13,13,.55), rgba(13,13,13,.15) 50%, rgba(13,13,13,.65));
  pointer-events: none;
}
.process__band figcaption {
  position: absolute; left: var(--s-5); right: var(--s-5); bottom: var(--s-5);
  display: flex; justify-content: space-between; align-items: flex-end; gap: var(--s-5);
  color: var(--paper); z-index: 2;
  font-family: var(--mono); font-size: .68rem;
  text-transform: uppercase; letter-spacing: .14em;
}
.process__band figcaption span:first-child { color: var(--clay-soft); }
.process__band figcaption span:last-child {
  font-family: var(--serif); font-style: italic; font-size: 1rem;
  letter-spacing: -.005em; text-transform: none; color: var(--paper);
  max-width: 50%; text-align: right;
}

/* ════════════ ABOUT ══════════════════════════════════════════ */
.about__grid {
  display: grid;
  grid-template-columns: minmax(300px, 1.2fr) 1.5fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: flex-start;
}

/* Linke Spalte: Foto + Logo + Stempel ─────────────────── */
.about__mark {
  position: relative;
  display: grid;
  gap: var(--s-4);
}
.about__photo {
  position: relative; margin: 0;
  overflow: hidden;
  background: var(--paper-deep);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
}
.about__photo img:first-child {
  display: block; width: 100%; height: auto;
  aspect-ratio: 9 / 8;
  object-fit: cover;
  object-position: center bottom;
  filter: grayscale(15%) contrast(1.02);
  transition: transform 2s var(--ease-out);
}
.about__photo:hover img:first-child { transform: scale(1.05); }
.about__photo figcaption {
  position: absolute; left: var(--s-4); bottom: var(--s-4);
  font-family: var(--sans); font-size: var(--t-xs);
  font-weight: 600; text-transform: none; letter-spacing: -.005em;
  color: var(--paper);
  background: rgba(28,27,24,.85);
  padding: 8px 14px;
  border-radius: var(--r-full);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
/* Logo-Frame — gefüllter Cyan-Gradient mit subtilem Dot-Pattern, Logo füllt den Raum aus */
.about__logo-card {
  position: absolute;
  top: var(--s-4);
  right: var(--s-4);
  width: 140px;
  height: 140px;
  object-fit: contain;
  border-radius: var(--r-lg);
  background: #fff;
  border: 1px solid rgba(207,250,254,.8);
  box-shadow: 0 4px 16px rgba(15,23,42,.15);
  padding: 6px;
}

.about__stamp {
  position: absolute; bottom: -32px; right: -32px;
  width: 128px; height: 128px;
  background: var(--ink); color: var(--paper);
  border-radius: 50%;
  display: grid; place-items: center; text-align: center;
  font-family: var(--mono); font-size: .62rem;
  text-transform: uppercase; letter-spacing: .14em;
  line-height: 1.6;
  transform: rotate(-12deg);
  box-shadow: 0 22px 50px -16px rgba(0,0,0,.35);
}
.about__stamp strong {
  display: block; font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 2.1rem; letter-spacing: -.02em; text-transform: none;
  color: var(--clay-soft);
}

.about__copy { display: flex; flex-direction: column; gap: var(--s-5); }
.about__id {
  display: inline-flex; align-items: center; gap: var(--s-2);
  font-family: var(--sans); font-size: var(--t-xs);
  font-weight: 600; letter-spacing: -.005em;
  color: var(--clay-deep);
  text-transform: none;
  padding: 6px 12px;
  background: var(--clay-tint);
  border-radius: var(--r-full);
  width: fit-content;
}
.about__id::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--clay);
}
.about__title {
  font-family: var(--sans); font-weight: 800;
  font-size: clamp(1.85rem, 4.5vw, 3.2rem);
  line-height: 1.1; letter-spacing: -.028em;
  text-wrap: balance; max-width: 18ch;
}
.about__title em { font-style: normal; font-weight: 800; color: var(--clay); }
.about__lead {
  font-family: var(--sans); font-weight: 500; font-style: normal;
  font-size: var(--t-lg);
  line-height: 1.45;
  color: var(--ink);
  max-width: 36ch;
  padding-left: var(--s-5);
  border-left: 3px solid var(--clay);
}
.about__lead em { font-style: normal; font-weight: 700; color: var(--clay-deep); }
.about__copy p { color: var(--ink-soft); line-height: 1.65; font-size: var(--t-base); }

.about__signature {
  display: flex; align-items: center; gap: var(--s-5);
  padding-top: var(--s-5);
  border-top: 1px solid var(--line);
  margin-top: var(--s-3);
}
.about__signature-name {
  font-family: var(--sans); font-style: normal; font-weight: 700;
  font-size: var(--t-md); color: var(--ink);
  letter-spacing: -.01em;
}
.about__signature-role {
  font-family: var(--sans); font-size: var(--t-xs);
  font-weight: 500; text-transform: none; letter-spacing: -.005em;
  color: var(--ink-mute);
}

.about__stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--s-3);
  margin-top: var(--s-7);
}
.about__stats > div {
  display: flex; flex-direction: column; gap: 6px;
  padding: var(--s-4);
  background: var(--paper-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
}
.about__stats dt {
  font-family: var(--sans); font-weight: 800;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  color: var(--ink); letter-spacing: -.028em; line-height: 1;
}
.about__stats dt em { font-style: normal; color: var(--clay); }
.about__stats dd {
  font-family: var(--sans); font-size: var(--t-xs);
  font-weight: 500; text-transform: none; letter-spacing: -.005em;
  color: var(--ink-mute);
  padding-top: var(--s-2);
  border-top: 1px solid var(--line);
}

/* ════════════ OBJECTS — Card-Grid mit Gap ═══════════════════ */
.objects__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
}
/* Object-Cards — Hintergrundbild dauerhaft sichtbar, Cyan-Titel, weiße Schrift */
.object {
  padding: var(--s-6) var(--s-5);
  border-radius: var(--r-lg);
  position: relative;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
  display: flex; flex-direction: column; gap: var(--s-3);
  min-height: 280px;
  overflow: hidden;
  isolation: isolate;
  background: var(--trust);
  box-shadow: var(--shadow-sm);
  color: #fff;
}
.object:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* Hintergrund-Bild: dauerhaft sichtbar */
.object::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background-image: var(--bg);
  background-size: cover; background-position: center;
  transform: scale(1);
  transition: transform 1.4s var(--ease-out), filter 1s var(--ease-out);
  filter: grayscale(25%) brightness(.78);
}
.object:hover::before {
  transform: scale(1.06);
  filter: grayscale(0%) brightness(.85);
}

/* Dunkles Overlay für Lesbarkeit */
.object::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(15,23,42,.35) 0%, rgba(15,23,42,.85) 100%),
    linear-gradient(135deg, rgba(8,145,178,.18) 0%, transparent 60%);
  transition: opacity .35s var(--ease);
}

.object__title {
  font-family: var(--sans); font-weight: 800;
  font-size: var(--t-lg);
  letter-spacing: -.02em; line-height: 1.2;
  color: var(--clay-soft);
  text-shadow: 0 2px 8px rgba(15,23,42,.4);
}
.object__desc {
  font-size: var(--t-sm); line-height: 1.55;
  color: rgba(255,255,255,.92);
  margin-top: var(--s-2);
  text-shadow: 0 1px 4px rgba(15,23,42,.5);
}
.object__arrow {
  margin-top: auto;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.4);
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 50%;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
  color: #fff;
}
.object:hover .object__arrow {
  background: var(--gradient-clean); color: #fff; border-color: var(--clay);
  transform: rotate(-45deg);
}

/* ════════════ REGIONS ════════════════════════════════════════ */
.regions__layout {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: flex-start;
}

/* Hauptstandort-Karte */
.regions__primary {
  margin-top: var(--s-7);
  padding: var(--s-5);
  background: var(--paper-deep);
  border-left: 3px solid var(--clay);
}
.regions__primary-title {
  font-family: var(--mono); font-size: .68rem;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--clay);
  margin-bottom: var(--s-2);
  font-weight: 500;
}
.regions__primary-city {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  letter-spacing: -.018em; line-height: 1.15;
  color: var(--ink);
  margin-bottom: var(--s-3);
}
.regions__primary-desc {
  font-size: .95rem; line-height: 1.5;
  color: var(--ink-soft);
}

/* Liste weiterer Städte */
.regions__cities-title {
  font-family: var(--mono); font-size: .68rem;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
  margin-bottom: var(--s-4);
  padding-bottom: var(--s-3);
  border-bottom: 1px solid var(--line);
}
.regions__cloud {
  display: flex; flex-wrap: wrap;
  gap: var(--s-2);
}
.regions__cloud li {
  font-family: var(--sans); font-weight: 400;
  font-size: clamp(.85rem, 1.1vw, .98rem);
  padding: .45rem .95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  background: var(--paper);
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.regions__cloud li:hover {
  background: var(--ink); color: var(--paper); border-color: var(--ink);
}

/* ════════════ PULL QUOTE — Vollbreite mit Hintergrundfoto ═══ */
.pull-wrap {
  position: relative;
  isolation: isolate;
  color: var(--paper);
  overflow: hidden;
  background: var(--ink);
}
.pull-wrap__bg {
  position: absolute; inset: 0; z-index: -1;
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(80%) brightness(.55) contrast(1.05);
  transform: scale(1.03);
  animation: kenburns 28s linear infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1.03) translate(0,0); }
  to   { transform: scale(1.08) translate(-1.5%, -1%); }
}
.pull-wrap::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(120deg, rgba(15,23,42,.78) 0%, rgba(15,23,42,.5) 50%, rgba(8,145,178,.35) 100%);
}
/* Inhalt: einspaltig zentriert, saubere optische Achse */
.pull-wrap__inner {
  max-width: 880px; margin: 0 auto;
  padding: clamp(4.5rem, 11vw, 9rem) var(--gutter);
  position: relative;
  text-align: center;
}

/* Anführungszeichen als dekoratives Hintergrund-Ornament hinter der Headline */
.pull-wrap__mark {
  position: absolute;
  top: clamp(2rem, 6vw, 4rem);
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--sans); font-style: normal; font-weight: 800;
  font-size: clamp(8rem, 18vw, 18rem);
  line-height: .7;
  color: var(--clay);
  opacity: .12;
  user-select: none;
  pointer-events: none;
  z-index: 0;
}

.pull-wrap__eyebrow {
  position: relative; z-index: 1;
  display: inline-flex; align-items: center; gap: var(--s-2);
  font-family: var(--sans); font-size: var(--t-xs);
  font-weight: 600; letter-spacing: -.005em; text-transform: none;
  color: #fff;
  margin-bottom: var(--s-5);
  padding: 6px 14px;
  background: rgba(168,137,107,.25);
  border: 1px solid rgba(197,169,134,.4);
  border-radius: var(--r-full);
}
.pull-wrap__eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--clay-soft);
}

.pull-wrap__body {
  position: relative; z-index: 1;
  font-family: var(--sans); font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.3; letter-spacing: -.025em;
  text-wrap: balance;
  max-width: 26ch;
  margin: 0 auto;
  color: #fff;
}
.pull-wrap__body em {
  font-style: normal; color: var(--clay-soft); font-weight: 700;
  white-space: nowrap;
}

.pull-wrap__cite {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  align-items: center; gap: 6px;
  margin-top: var(--s-7);
  padding-top: var(--s-5);
}
.pull-wrap__cite::before {
  content: ""; position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: 40px; height: 2px; border-radius: 1px;
  background: var(--clay-soft);
}
.pull-wrap__sign {
  font-family: var(--sans); font-style: normal; font-weight: 700;
  font-size: var(--t-md); letter-spacing: -.01em;
  color: var(--paper);
}
.pull-wrap__role {
  font-family: var(--sans); font-size: var(--t-xs);
  font-weight: 500; text-transform: none; letter-spacing: -.005em;
  color: rgba(255,255,255,.6);
}

/* Trust-Linie: 3 Garantien — als Tag-Grid */
.pull-wrap__trust {
  position: relative; z-index: 1;
  display: inline-flex; flex-wrap: wrap;
  justify-content: center;
  gap: var(--s-2);
  margin-top: var(--s-6);
  padding: 0;
  background: transparent;
  border: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.pull-wrap__trust li {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-size: var(--t-xs);
  font-weight: 500; letter-spacing: -.005em; text-transform: none;
  color: rgba(255,255,255,.9);
  padding: 8px 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-full);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.pull-wrap__trust li span {
  display: inline-grid; place-items: center;
  width: 18px; height: 18px;
  background: var(--clay); color: #fff;
  border-radius: 50%;
  font-size: .65rem; line-height: 1;
  font-weight: 700;
}

/* Sekundäre CTA — invertiert, fügt sich in die Trust-Zone ein */
.pull-wrap__cta {
  position: relative; z-index: 1;
  display: inline-flex; align-items: center; gap: var(--s-2);
  margin-top: var(--s-6);
  padding: 14px 24px;
  background: var(--paper); color: var(--ink);
  border-radius: var(--r-md);
  font-family: var(--sans); font-weight: 600; font-size: var(--t-sm);
  letter-spacing: -.005em;
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease-out), box-shadow .25s var(--ease);
  touch-action: manipulation;
  box-shadow: var(--shadow);
  min-height: 48px;
}
.pull-wrap__cta:hover {
  background: var(--clay); color: var(--paper);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.pull-wrap__cta span {
  transition: transform .35s var(--ease-out);
  display: inline-block;
}
.pull-wrap__cta:hover span { transform: translateX(4px); }

/* Alte .pull-Klasse bleibt für Fallback */
.pull {
  text-align: left; max-width: var(--max); margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) var(--gutter);
  display: grid; grid-template-columns: auto 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: flex-start;
}
.pull__mark {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(6rem, 14vw, 13rem);
  line-height: .7; color: var(--clay);
  user-select: none;
}
.pull__body blockquote {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(1.7rem, 3.6vw, 2.9rem);
  line-height: 1.18; letter-spacing: -.022em;
  color: var(--ink);
  text-wrap: balance;
}
.pull__body em { font-style: italic; color: var(--clay); font-weight: 400; }
.pull__cite {
  display: flex; align-items: center; gap: var(--s-3);
  margin-top: var(--s-6);
  padding-top: var(--s-4);
  border-top: 1px solid var(--line);
  font-family: var(--mono); font-size: .72rem;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--ink-mute);
}
.pull__cite strong {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 1.05rem; letter-spacing: -.005em; color: var(--ink);
  text-transform: none;
}

/* ════════════ FAQ ════════════════════════════════════════════ */
.faq__layout {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: flex-start;
}
.faq__head .section__title { font-size: clamp(2.2rem, 4.5vw, 3.6rem); }
.faq__list {
  display: flex; flex-direction: column;
  gap: var(--s-3);
}
.faq details {
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s-4) var(--s-5);
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.faq details[open] { background: var(--paper); border-color: var(--clay-soft); }
.faq details > summary { display: flex; }
.faq summary::marker { content: ""; font-size: 0; color: transparent; }
.faq summary::-webkit-details-marker { display: none; }
details > summary { list-style: none; }
details > summary::marker { content: ""; }
details > summary::-webkit-details-marker { display: none; }
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  -webkit-appearance: none; appearance: none;
  gap: var(--s-4);
  font-family: var(--sans); font-weight: 600;
  font-size: var(--t-md);
  color: var(--ink); letter-spacing: -.018em;
  transition: color .25s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--clay); }
.faq__plus {
  flex-shrink: 0; width: 32px; height: 32px;
  background: var(--clay-tint); border-radius: 50%;
  position: relative;
  transition: background .25s var(--ease);
}
.faq__plus::before, .faq__plus::after {
  content: ""; position: absolute; background: var(--clay-deep);
  top: 50%; left: 50%; border-radius: 1px;
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.faq__plus::before { width: 12px; height: 2px; transform: translate(-50%, -50%); }
.faq__plus::after  { width: 2px; height: 12px; transform: translate(-50%, -50%); }
.faq details[open] summary { color: var(--clay-deep); }
.faq details[open] .faq__plus { background: var(--clay); }
.faq details[open] .faq__plus::before, .faq details[open] .faq__plus::after { background: #fff; }
.faq details[open] .faq__plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq details p {
  padding-top: var(--s-3);
  font-size: var(--t-sm); line-height: 1.65;
  color: var(--ink-soft); max-width: 60ch;
}

/* ════════════ CONTACT ═══════════════════════════════════════ */
.contact {
  background: var(--trust); color: var(--paper);
  max-width: none;
  position: relative; overflow: hidden;
}
.contact::before {
  content: ""; position: absolute;
  top: -30%; right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle at center, rgba(8,145,178,.22), transparent 65%);
  pointer-events: none;
}
.contact__inner {
  max-width: var(--max); margin: 0 auto;
  padding: clamp(4rem, 9vw, 8rem) var(--gutter);
  display: grid; grid-template-columns: 1fr 1.05fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  position: relative;
}

/* Contact-Eyebrow: gleiche Pill-Form wie alle anderen Section-IDs */
.contact__id {
  display: inline-flex; align-items: center; gap: var(--s-2);
  font-family: var(--sans); font-size: var(--t-xs);
  font-weight: 600; letter-spacing: -.005em; text-transform: none;
  margin-bottom: var(--s-5);
  padding: 6px 14px;
  background: rgba(103,232,249,.12);
  color: var(--clay-soft);
  border: 1px solid rgba(103,232,249,.28);
  border-radius: var(--r-full);
  width: fit-content;
}
.contact__id::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--clay-soft);
}
.contact__title {
  font-family: var(--sans); font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.08; letter-spacing: -.028em;
  margin-bottom: var(--s-5);
}
.contact__title em { font-style: normal; font-weight: 800; color: var(--clay-soft); }
.contact__lede {
  font-size: var(--t-md); line-height: 1.65;
  color: rgba(255,255,255,.88);
  max-width: 42ch;
}

/* Channels — als rounded Cards mit dezenter Innenfläche, kein Hairline mehr */
.contact__channels {
  margin-top: var(--s-7);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-3);
  border: 0;
}
.contact__channels li {
  display: flex; flex-direction: column;
  gap: 6px;
  padding: var(--s-4) var(--s-5);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
  align-items: flex-start;
}
.contact__channels li:hover {
  background: rgba(8,145,178,.12);
  border-color: rgba(103,232,249,.3);
  transform: translateY(-2px);
}
.contact__channels li > span:first-child {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--sans); font-size: var(--t-xs);
  font-weight: 600; letter-spacing: -.005em; text-transform: none;
  color: var(--clay-soft);
}
.contact__channels li > span:first-child::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--clay-soft);
  box-shadow: 0 0 0 3px rgba(103,232,249,.2);
}
.contact__channels a, .contact__channels li p {
  font-family: var(--sans); font-weight: 600;
  font-size: var(--t-md);
  color: var(--paper); letter-spacing: -.01em;
  transition: color .25s var(--ease);
  line-height: 1.35;
}
.contact__channels a:hover { color: var(--clay-soft); }

/* Formular ────────────────────────────────────────────── */
.contact__form {
  background: var(--paper); color: var(--ink);
  padding: clamp(2rem, 4vw, 3rem);
  display: flex; flex-direction: column; gap: var(--s-4);
  box-shadow: var(--shadow-xl);
  border-radius: var(--r-xl);
  position: relative;
}
.contact__form::before {
  content: "01 / Anfrage"; position: absolute; top: var(--s-5); right: var(--s-5);
  font-family: var(--mono); font-size: .65rem;
  color: var(--clay); letter-spacing: .14em; text-transform: uppercase;
}
.contact__form-title {
  font-family: var(--serif); font-weight: 400; font-size: 1.55rem;
  letter-spacing: -.018em; padding-bottom: var(--s-3);
  border-bottom: 1px solid var(--line);
  margin-bottom: var(--s-2);
}
.contact__form label { display: flex; flex-direction: column; gap: 6px; }
.contact__form label > span {
  font-family: var(--mono); font-size: .65rem;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--ink-mute);
}
.contact__form input, .contact__form select, .contact__form textarea {
  font: inherit; font-family: var(--sans); font-size: var(--t-sm); font-weight: 500;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: var(--paper-soft);
  color: var(--ink);
  transition: border-color .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
  border-radius: var(--r-md);
  min-height: 48px;
}
.contact__form input:focus-visible,
.contact__form select:focus-visible,
.contact__form textarea:focus-visible {
  border-color: var(--clay); background: var(--paper-soft);
  outline: 2px solid var(--clay); outline-offset: 2px;
}
.contact__form textarea { resize: vertical; min-height: 110px; }
.contact__form select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='none' stroke='%230d0d0d' stroke-width='1.5' d='M1 1l5 5 5-5'/></svg>");
  background-repeat: no-repeat; background-position: right 1rem center;
  padding-right: 2.5rem;
}
.contact__row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4); }
.contact__form button[type="submit"] {
  margin-top: var(--s-2);
  border-radius: var(--r-md);
  background: var(--trust); color: var(--paper);
}
.contact__form button[type="submit"]:hover { background: var(--clay-deep); }
.contact__note {
  font-size: .75rem; color: var(--ink-mute);
  text-align: center; margin-top: var(--s-1);
}
.contact__note a { color: var(--clay); text-decoration: underline; text-underline-offset: 2px; }

/* ════════════ FOOTER ═════════════════════════════════════════ */
.footer { background: #050505; color: rgba(255,255,255,.55); padding: var(--s-8) 0 var(--s-5); }
.footer__top {
  max-width: var(--max); margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid; grid-template-columns: 1.2fr 2fr;
  gap: var(--s-8); align-items: flex-start;
  padding-bottom: var(--s-7);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__brand { display: flex; gap: var(--s-4); align-items: center; }
.footer__brand img {
  width: 48px; height: 48px; object-fit: contain;
  filter: invert(1);
  background: rgba(255,255,255,.05);
  padding: 6px;
  border-radius: var(--r-md);
}
.footer__name {
  font-family: var(--sans); font-weight: 700; font-size: var(--t-md); color: var(--paper);
  letter-spacing: -.018em;
}
.footer__tag {
  font-family: var(--sans); font-style: normal; font-weight: 400;
  font-size: var(--t-sm); color: rgba(255,255,255,.5);
  margin-top: 4px;
}

.footer__cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-5); }
.footer__cols h4 {
  font-family: var(--sans); font-size: var(--t-xs);
  text-transform: none; letter-spacing: -.005em;
  color: var(--clay-soft); margin-bottom: var(--s-3);
  font-weight: 700;
}
.footer__cols div { display: flex; flex-direction: column; gap: var(--s-2); }
.footer__cols a, .footer__cols p {
  font-size: .88rem; color: rgba(255,255,255,.55);
  transition: color .25s var(--ease);
  line-height: 1.5;
}
.footer__cols a:hover { color: var(--paper); }

.footer__bottom {
  max-width: var(--max); margin: var(--s-5) auto 0;
  padding: 0 var(--gutter);
  display: flex; justify-content: space-between; align-items: center;
  gap: var(--s-5);
  font-family: var(--sans); font-size: var(--t-xs); font-weight: 500;
  text-transform: uppercase; letter-spacing: .14em;
  color: rgba(255,255,255,.35);
}

/* ════════════ FLOATING SIDE INDEX ═══════════════════════════
   rechts schwebende Sektion-Anchors (Editorial-Pagination)    */
.side-index { display: none; }
.side-index--legacy {
  position: fixed; right: var(--s-5); top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  display: flex; flex-direction: column; gap: var(--s-3);
}
.side-index a {
  display: flex; align-items: center; gap: var(--s-3);
  font-family: var(--mono); font-size: .65rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-faint);
  transition: color .25s var(--ease);
}
.side-index a::before {
  content: ""; width: 14px; height: 1px;
  background: currentColor;
  transition: width .3s var(--ease), background .3s var(--ease);
}
.side-index a:hover, .side-index a.is-active { color: var(--clay); }
.side-index a.is-active::before { width: 28px; }
.side-index a span { opacity: 0; transform: translateX(-6px); transition: opacity .3s var(--ease), transform .3s var(--ease); }
.side-index a:hover span, .side-index a.is-active span { opacity: 1; transform: translateX(0); }

/* ════════════ FAB (call) ═════════════════════════════════════ */
.fab {
  position: fixed; bottom: var(--s-5); right: var(--s-5); z-index: 41;
  width: 56px; height: 56px;
  background: var(--gradient-clean); color: var(--paper);
  border-radius: 50%; display: grid; place-items: center;
  box-shadow: 0 12px 30px -8px rgba(8,145,178,.55), 0 0 0 0 rgba(8,145,178,.4);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  animation: pulseRing 2.6s var(--ease) infinite;
}
.fab:hover { transform: scale(1.08); }
@keyframes pulseRing {
  0% { box-shadow: 0 12px 30px -8px rgba(8,145,178,.55), 0 0 0 0 rgba(8,145,178,.45); }
  70% { box-shadow: 0 12px 30px -8px rgba(8,145,178,.55), 0 0 0 18px rgba(8,145,178,0); }
  100% { box-shadow: 0 12px 30px -8px rgba(8,145,178,.55), 0 0 0 0 rgba(8,145,178,0); }
}

/* ════════════ REVEAL ═══════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease-out), transform 1s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ════════════ RESPONSIVE — 3-Stufen-Strategie ═════════════════
   ≤1100  Tablet (Side-Index aus, Grid 2-spaltig)
   ≤720   Phablet (Hero stacked, Footer 2-cols, Marquee kleiner)
   ≤480   Phone   (1-spaltig durchgehend, kompakt)             */

/* — Tablet ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .side-index { display: none; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .objects__grid { grid-template-columns: repeat(2, 1fr); }
  .about__grid { grid-template-columns: 1fr; gap: var(--s-7); }
  .about__mark { max-width: 460px; margin: 0 auto; width: 100%; }
  .regions__layout { grid-template-columns: 1fr; }
  .faq__layout { grid-template-columns: 1fr; }
  .contact__inner { grid-template-columns: 1fr; }
  .process__steps { grid-template-columns: repeat(2, 1fr); }
  .process__step:nth-child(2) { border-right: 0; }
  .process__step:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.14); }
  .section__head { grid-template-columns: 1fr; gap: var(--s-5); }
  .hero__grid { grid-template-columns: 1fr; gap: var(--s-7); }
  .hero__aside { order: 2; max-width: 520px; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: repeat(4, 1fr); }
}

/* — Phablet ─────────────────────────────────────────────── */
@media (max-width: 720px) {
  body { font-size: 15px; }

  /* Nav */
  .nav { grid-template-columns: 1fr auto; padding: var(--s-3) var(--gutter); }
  .nav__links { display: none; }
  .nav__menu { display: flex; }
  .nav__cta { display: none; }
  .nav__brand-meta { font-size: .58rem; }
  .nav__brand-name { font-size: .95rem; }

  /* Sections kompakter */
  .section { padding-top: clamp(3rem, 9vw, 4rem); padding-bottom: clamp(3rem, 9vw, 4rem); }
  .section__head { margin-bottom: clamp(1.5rem, 5vw, 2.5rem); padding-bottom: var(--s-4); }
  .section__title { font-size: clamp(1.85rem, 8vw, 2.6rem); }
  .section__lede { font-size: .98rem; }

  /* Hero */
  .hero { padding: clamp(1.25rem, 5vw, 2rem) var(--gutter) clamp(2rem, 6vw, 3rem); }
  .hero__meta {
    grid-template-columns: 1fr;
    gap: 4px; text-align: left;
    padding-bottom: var(--s-4);
    font-size: .62rem;
  }
  .hero__meta-mid, .hero__meta-right { text-align: left; }
  .hero__title { font-size: clamp(2.6rem, 14vw, 4.2rem); letter-spacing: -.04em; }
  .hero__lefthead { flex-wrap: wrap; gap: var(--s-2); margin-bottom: var(--s-3); }
  .hero__lefthead-divider { display: none; }
  .hero__lead { font-size: 1rem; margin-top: var(--s-5); }
  .hero__ctas { gap: var(--s-3); margin-top: var(--s-4); }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .hero__trust { grid-template-columns: 1fr 1fr; gap: var(--s-3); margin-top: var(--s-6); }
  .hero__trust-num { font-size: clamp(1.7rem, 8vw, 2.2rem); }
  .hero__trust-desc { font-size: .78rem; max-width: 22ch; }
  .hero__photo figcaption { left: var(--s-3); right: var(--s-3); bottom: var(--s-3); flex-wrap: wrap; gap: var(--s-2); }
  .hero__photo-cap { font-size: .8rem; max-width: 100%; text-align: left; }
  .marquee { margin-top: var(--s-7); padding: var(--s-3) 0; }
  .marquee-track { font-size: 1.1rem; gap: var(--s-4); }

  /* Service-Cards — 1-spaltig, kompakter */
  .svc-grid { grid-template-columns: 1fr; gap: var(--s-4); }
  .svc-card__body { padding: var(--s-4); gap: var(--s-2); }
  .svc-card__title { font-size: 1.25rem; }
  .svc-card__desc { font-size: .9rem; }
  .svc-card__media { aspect-ratio: 16 / 9; }
  /* Pfeil immer sichtbar auf Touch */
  .svc-card__arrow { opacity: 1; transform: translate(0,0); }
  /* Featured nicht extra hervorheben auf Phone — Ruhe wahren */
  .svc-card--featured { border-color: var(--line-soft); }

  /* Process */
  .process__steps { grid-template-columns: 1fr; }
  .process__step { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); padding: var(--s-5) 0; }
  .process__step:last-child { border-bottom: 0; }
  .process__num { font-size: 3rem; margin-bottom: var(--s-3); }
  .process__step h3 { font-size: 1.3rem; }
  .process__step p { font-size: .9rem; margin-bottom: var(--s-3); }
  .process__band { margin-top: var(--s-6); }
  .process__band img { height: 220px; }
  .process__band figcaption { left: var(--s-3); right: var(--s-3); bottom: var(--s-3); flex-direction: column; gap: 4px; align-items: flex-start; }
  .process__band figcaption span:last-child { text-align: left; max-width: 100%; font-size: .85rem; }

  /* About */
  .about__title { font-size: clamp(1.8rem, 8vw, 2.4rem); }
  .about__lead { font-size: 1.1rem; padding-left: var(--s-4); }
  .about__stats { grid-template-columns: repeat(2, 1fr); gap: var(--s-4); margin-top: var(--s-5); }
  .about__stats dt { font-size: 1.6rem; }
  .about__stamp { width: 92px; height: 92px; right: -8px; bottom: -16px; font-size: .55rem; }
  .about__stamp strong { font-size: 1.5rem; }
  .about__photo img:first-child { aspect-ratio: 5 / 4; }

  /* Objects */
  .objects__grid { grid-template-columns: 1fr; }
  .object { min-height: 240px; padding: var(--s-5); }
  .object__title { font-size: 1.25rem; }

  /* Regions */
  .regions__cloud { gap: 6px; }
  .regions__cloud li { font-size: 1rem; padding: .35rem .85rem; }

  /* Pull-Quote */
  .pull-wrap__inner { padding: clamp(3.5rem, 12vw, 5rem) var(--gutter); }
  .pull-wrap__mark { font-size: clamp(8rem, 28vw, 14rem); top: clamp(1.5rem, 5vw, 3rem); opacity: .12; }
  .pull-wrap__body { font-size: clamp(1.3rem, 6vw, 1.8rem); max-width: 18ch; }
  .pull-wrap__trust { padding: var(--s-3) var(--s-4); gap: var(--s-3); border-radius: 16px; }
  .pull-wrap__trust li { font-size: .66rem; }
  .pull-wrap__eyebrow { font-size: .66rem; }
  .pull-wrap__cta { font-size: .88rem; padding: .85rem 1.4rem; }

  /* FAQ */
  .faq summary { font-size: 1.05rem; gap: var(--s-3); }
  .faq__plus { width: 26px; height: 26px; }
  .faq details p { font-size: .95rem; }

  /* Contact */
  .contact__inner { padding: clamp(3rem, 9vw, 5rem) var(--gutter); }
  .contact__title { font-size: clamp(1.9rem, 9vw, 2.6rem); margin-bottom: var(--s-4); }
  .contact__lede { font-size: 1rem; }
  .contact__channels { grid-template-columns: 1fr; gap: var(--s-2); }
  .contact__channels li { padding: var(--s-3) var(--s-4); }
  .contact__channels a, .contact__channels li p { font-size: var(--t-base); }
  .contact__form { padding: var(--s-5); }
  .contact__form::before { font-size: .58rem; top: var(--s-4); right: var(--s-4); }
  .contact__form-title { font-size: 1.3rem; }
  .contact__row { grid-template-columns: 1fr; gap: var(--s-3); }

  /* Footer */
  .footer { padding: var(--s-7) 0 var(--s-4); }
  .footer__top { padding-bottom: var(--s-5); gap: var(--s-5); }
  .footer__cols { grid-template-columns: 1fr 1fr; gap: var(--s-4); }
  .footer__bottom { flex-direction: column; gap: var(--s-2); text-align: center; padding-top: var(--s-4); }

  /* FAB Call-Button — Position anpassen, dass er FABs nicht verdeckt */
  .fab { width: 52px; height: 52px; bottom: var(--s-4); right: var(--s-4); }
}

/* — Phone (kleine Geräte) ─────────────────────────────────── */
@media (max-width: 480px) {
  :root { --gutter: 1.1rem; }
  .hero__title { font-size: clamp(2.4rem, 15vw, 3.5rem); }
  .section__title { font-size: clamp(1.7rem, 8vw, 2.2rem); }

  /* Trust auf 1 Spalte umbrechen für sehr enge Screens? Nein — 2-spaltig bleibt lesbar */
  .hero__trust-desc { display: none; }
  .hero__trust { gap: var(--s-3); }

  .footer__cols { grid-template-columns: 1fr; }
  .svc-card__media { aspect-ratio: 5 / 3; }
  .nav__brand-text { max-width: 180px; overflow: hidden; }

  /* Mobile-Nav A-Items */
  .mobile-nav a { font-size: 1.35rem; }
}
