/* ============================================================
   Davids Umzüge — Modern Redesign
   ============================================================ */

/* ─── Design Tokens ────────────────────────────────────────── */
:root{
  --bg: #fafaf7;
  --bg-elev: #ffffff;
  --ink: #0c0d10;
  --ink-2: #2a2d33;
  --muted: #6b7280;
  --line: #e6e4dd;

  --brand: #4fa38b;          /* exact green from Davids Umzüge Logo */
  --brand-2: #6dbfa5;
  --brand-ink: #082721;

  --accent: #0c3329;         /* deep forest */
  --accent-2: #1a5a48;

  --cta: #ff6b35;            /* CTA orange */
  --cta-2: #ff8a5b;          /* CTA orange light */
  --cta-3: #e8551e;          /* CTA orange dark (hover) */
  --cta-ink: #2a0e02;        /* dark text on orange */

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-xl: 36px;

  --shadow-sm: 0 1px 2px rgba(12,13,16,.04), 0 1px 1px rgba(12,13,16,.03);
  --shadow:    0 10px 30px -10px rgba(12,13,16,.15), 0 4px 10px -6px rgba(12,13,16,.08);
  --shadow-lg: 0 30px 60px -20px rgba(12,13,16,.25), 0 18px 36px -18px rgba(12,13,16,.18);

  --container: 1200px;
  --gap: clamp(1rem, 2vw, 1.5rem);

  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-serif: 'Instrument Serif', Georgia, serif;

  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ─── Reset ────────────────────────────────────────────────── */
*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body{
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img,svg{ display: block; max-width: 100%; }
a{ color: inherit; text-decoration: none; }
button{ font: inherit; cursor: pointer; }
h1,h2,h3,h4,h5{ margin: 0; font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; }
p{ margin: 0; }
em{ font-style: italic; font-family: var(--font-serif); font-weight: 400; letter-spacing: -0.01em; }

.container{ width: min(100% - 2rem, var(--container)); margin-inline: auto; }

/* ─── Accessibility helpers ────────────────────────────────── */
.sr-only{
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.skip-link{
  position: absolute;
  top: -100px; left: 1rem;
  background: var(--brand);
  color: var(--brand-ink);
  padding: .75rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  z-index: 1000;
  transition: top .2s var(--ease);
}
.skip-link:focus{ top: 1rem; outline: 2px solid var(--ink); }

/* Focus visibility */
:focus-visible{
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ─── Buttons ──────────────────────────────────────────────── */
.btn{
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .8rem 1.3rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  border: 1px solid transparent;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
}
.btn svg{ width: 18px; height: 18px; transition: transform .25s var(--ease); }
.btn:hover svg{ transform: translateX(3px); }
.btn--primary{
  background: var(--cta);
  color: #fff;
  box-shadow: 0 8px 20px -8px rgba(255,107,53,.45), var(--shadow);
}
.btn--primary:hover{
  background: var(--cta-3);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -8px rgba(255,107,53,.55), var(--shadow);
}
.btn--ghost{
  background: transparent;
  color: var(--ink);
  border-color: rgba(12,13,16,.16);
}
.btn--ghost:hover{
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.btn--lg{ padding: 1rem 1.6rem; font-size: 1rem; }
.btn--full{ width: 100%; justify-content: center; }

/* On dark hero */
.hero .btn--ghost{
  color: #fff;
  border-color: rgba(255,255,255,.25);
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,.04);
}
.hero .btn--ghost:hover{ background: #fff; color: var(--ink); border-color: #fff; }
.hero .btn--primary{ background: var(--cta); color: #fff; }
.hero .btn--primary:hover{ background: var(--cta-3); color: #fff; }

/* ─── Eyebrow ──────────────────────────────────────────────── */
.eyebrow{
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  padding: .35rem .75rem;
  border-radius: 999px;
  background: rgba(11,61,46,.07);
  margin-bottom: 1.25rem;
}
.eyebrow--light{
  color: var(--brand-2);
  background: rgba(108,196,170,.18);
}

/* ─── Section heads ────────────────────────────────────────── */
.section-head{
  max-width: 720px;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.section-head h2{
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-bottom: 1rem;
}
.section-head p{
  color: var(--muted);
  font-size: 1.1rem;
}

/* ─── Nav ──────────────────────────────────────────────────── */
.nav{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: background .3s var(--ease), backdrop-filter .3s var(--ease), box-shadow .3s var(--ease), padding .3s var(--ease);
}
.nav.scrolled{
  background: rgba(250,250,247,.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 var(--line);
  padding: .65rem 0;
}
.nav__inner{
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: nowrap;
}
.nav__logo{
  display: flex; align-items: center; gap: .55rem;
  font-weight: 700; font-size: 1.05rem; letter-spacing: -.02em;
  color: var(--ink);
}
.nav__logo-mark{
  width: 40px; height: 36px;
  display: grid; place-items: center;
  color: var(--brand);
}
.nav__logo-mark svg{ width: 100%; height: 100%; }
.nav__logo-text em{ color: var(--brand); margin-left: .15em; font-style: normal; font-family: inherit; font-weight: 700; }
.nav__logo{ gap: .65rem; }
.nav__logo-icon{
  height: 38px; width: auto;
  display: block;
  transition: transform .3s var(--ease);
}
.nav__logo-wordmark{
  height: 22px; width: auto;
  display: block;
  transition: filter .25s var(--ease);
}
.nav__logo:hover .nav__logo-icon{ transform: rotate(-3deg) scale(1.05); }

/* On dark hero/photo hero: invert the wordmark to white via filter */
.nav:not(.scrolled) .nav__logo-wordmark{
  filter: brightness(0) invert(1);
}
.nav:not(.scrolled) .nav__logo-icon{
  filter: brightness(1.25) saturate(1.1);
}
.footer .nav__logo-wordmark{
  filter: brightness(0) invert(1);
}
.footer .nav__logo-icon{
  filter: brightness(1.2);
}

/* Hero nav (inverted) */
.nav:not(.scrolled) .nav__logo{ color: #fff; }
.nav:not(.scrolled) .nav__logo-mark{ color: var(--brand-2); }
.nav:not(.scrolled) .nav__logo-text em{ color: var(--brand-2); }
.nav:not(.scrolled) .nav__links a{ color: rgba(255,255,255,.85); }
.nav:not(.scrolled) .nav__links a:hover{ color: #fff; }
.nav:not(.scrolled) .nav__phone{ color: rgba(255,255,255,.9); }
.nav:not(.scrolled) .nav__phone:hover{ color: #fff; }
.nav:not(.scrolled) .btn--primary{
  background: var(--cta); color: #fff;
}
.nav:not(.scrolled) .btn--primary:hover{ background: var(--cta-3); }
.nav:not(.scrolled) .nav__burger span{ background: #fff; }

.nav__links{ display: flex; gap: 1.5rem; flex-wrap: nowrap; }
.nav__links a{
  font-size: .95rem; font-weight: 500; color: var(--ink-2);
  position: relative;
  transition: color .2s;
  white-space: nowrap;
}
.nav__links a:hover{ color: var(--brand); }
.nav__links a::after{
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  height: 2px; width: 0;
  background: var(--brand);
  transition: width .3s var(--ease);
}
.nav__links a:hover::after{ width: 100%; }

.nav__cta{ display: flex; align-items: center; gap: .75rem; flex-wrap: nowrap; }
.nav__phone{
  display: flex; align-items: center; gap: .4rem;
  font-weight: 600; font-size: .9rem;
  color: var(--ink-2);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav__phone span{ white-space: nowrap; }
.nav__phone svg{ width: 16px; height: 16px; color: var(--brand); }

.nav__burger{
  display: none;
  background: none; border: none; padding: 0;
  width: 32px; height: 32px;
  flex-direction: column; justify-content: center; gap: 5px;
}
.nav__burger span{
  display: block; width: 24px; height: 2px;
  background: var(--ink);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav.open .nav__burger span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav.open .nav__burger span:nth-child(2){ opacity: 0; }
.nav.open .nav__burger span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* ─── Hero ─────────────────────────────────────────────────── */
.hero{
  position: relative;
  min-height: 100vh;
  padding: 9rem 0 6rem;
  color: #fff;
  background: #0c0d10;
  overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
}
.hero__bg{
  position: absolute; inset: 0;
  pointer-events: none;
}
.hero__photo{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.hero__overlay{
  position: absolute; inset: 0;
  background:
    linear-gradient(95deg, rgba(8,42,33,.92) 0%, rgba(8,42,33,.78) 35%, rgba(8,42,33,.35) 65%, rgba(8,42,33,.15) 100%),
    linear-gradient(180deg, rgba(8,42,33,.2) 0%, rgba(8,42,33,.55) 100%);
}
.hero__grid{
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 35%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 35%, #000 30%, transparent 80%);
}
.hero__glow{
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .55;
  animation: float 18s ease-in-out infinite;
}

/* ─── Scroll-reveal hero variant ──────────────────────────── */
.hero--scroll{
  height: 220vh;
  min-height: 0;
  padding: 0;
  display: block;
  background: #082721;
  overflow: visible;
}
.hero__sticky{
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 9rem 0 4rem;
  background: #082721;
}
.hero--scroll .hero__bg{
  position: absolute; inset: 0;
  z-index: 0;
}
.hero--scroll .hero__photo{
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 38%;
  transform: scale(1.35);
  transform-origin: center 45%;
  will-change: transform;
}
.hero--scroll .hero__overlay{
  position: absolute; inset: 0;
  opacity: 1;
  will-change: opacity;
  background:
    linear-gradient(95deg, rgba(8,42,33,.95) 0%, rgba(8,42,33,.85) 35%, rgba(8,42,33,.55) 65%, rgba(8,42,33,.35) 100%),
    linear-gradient(180deg, rgba(8,42,33,.25) 0%, rgba(8,42,33,.65) 100%);
}
.hero--scroll .hero__inner{
  position: relative;
  z-index: 2;
  will-change: transform, opacity;
}

/* CHECK24 Top Profi floating badge */
.hero__check24-badge{
  position: absolute;
  top: clamp(6rem, 10vh, 8rem);
  right: clamp(1rem, 3vw, 3rem);
  z-index: 3;
  display: block;
  width: clamp(90px, 12vw, 140px);
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,.35));
  transition: transform .35s var(--ease);
  animation: badge-float 4s ease-in-out infinite;
}
.hero__check24-badge:hover{
  transform: scale(1.06) rotate(-3deg);
}
.hero__check24-badge img{
  width: 100%;
  height: auto;
  display: block;
}
@keyframes badge-float{
  0%,100%{ transform: translateY(0) rotate(-4deg); }
  50%   { transform: translateY(-6px) rotate(-2deg); }
}
@media (max-width: 768px){
  .hero__check24-badge{
    top: 6rem;
    right: 1rem;
    width: 80px;
  }
}

/* Scroll hint */
.hero__scroll-hint{
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column;
  align-items: center;
  gap: .35rem;
  color: rgba(255,255,255,.7);
  font-size: .75rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 500;
  will-change: opacity, transform;
  animation: hint-bob 2.4s ease-in-out infinite;
}
.hero__scroll-hint svg{
  width: 22px; height: 22px;
}
@keyframes hint-bob{
  0%,100%{ transform: translateX(-50%) translateY(0); opacity: .6; }
  50%   { transform: translateX(-50%) translateY(6px); opacity: 1; }
}

/* Stats payoff inside sticky — appears via scroll */
.hero__stats.hero__stats--scroll{
  position: absolute;
  bottom: clamp(2rem, 6vh, 4rem);
  left: 50%;
  margin: 0;
  transform: translateX(-50%) translateY(40px);
  z-index: 3;
  opacity: 0;
  will-change: opacity, transform;
  transition: opacity .6s var(--ease), transform .6s var(--ease);
  padding: 1.25rem 1rem;
}
.hero__stats.hero__stats--scroll.is-revealed{
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
/* Compact stat sizes in scroll-hero so labels always fit */
.hero__stats--scroll .stat__num{
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}
.hero__stats--scroll .stat__suffix{
  font-size: clamp(1.1rem, 2vw, 1.4rem);
}
.hero__stats--scroll .stat__label{
  font-size: .78rem;
  margin-top: .25rem;
  line-height: 1.25;
}

/* Photo-hero variant — text left-aligned over background photo */
.hero--photo .hero__inner{
  text-align: left;
  max-width: 1200px;
  margin: 0 auto;
}
.hero--photo .hero__title,
.hero--photo .hero__lead,
.hero--photo .hero__badge,
.hero--photo .hero__actions,
.hero--photo .hero__meta{
  max-width: 640px;
  margin-left: 0;
}
.hero--photo .hero__actions{
  justify-content: flex-start;
}
.hero--photo .hero__lead,
.hero--photo .hero__meta{
  margin-right: auto;
}
.hero--photo .hero__title{
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero--photo .hero__meta{
  background: rgba(0,0,0,.35);
  border-color: rgba(255,255,255,.15);
  backdrop-filter: blur(10px);
}
@media (max-width: 900px){
  .hero--photo .hero__inner{ text-align: center; }
  .hero--photo .hero__title,
  .hero--photo .hero__lead,
  .hero--photo .hero__badge,
  .hero--photo .hero__actions,
  .hero--photo .hero__meta{
    margin-left: auto;
  }
  .hero--photo .hero__actions{ justify-content: center; }
  .hero__overlay{
    background: linear-gradient(180deg, rgba(8,42,33,.55) 0%, rgba(8,42,33,.9) 100%);
  }
}
.hero__glow--1{
  width: 600px; height: 600px;
  top: -10%; left: -10%;
  background: radial-gradient(circle, var(--brand) 0%, transparent 70%);
  opacity: .35;
}
.hero__glow--2{
  width: 520px; height: 520px;
  bottom: -15%; right: -10%;
  background: radial-gradient(circle, var(--accent-2) 0%, transparent 70%);
  animation-delay: -9s;
  opacity: .55;
}
@keyframes float{
  0%,100%{ transform: translate(0,0) scale(1); }
  50%   { transform: translate(40px,-30px) scale(1.1); }
}

.hero__inner{
  position: relative; z-index: 2;
  text-align: center;
  max-width: 920px;
}
.hero__badge{
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .45rem 1rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 500;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}
.hero__badge .dot{
  width: 8px; height: 8px; border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 12px #4ade80;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse{ 50%{ opacity: .5; transform: scale(1.2); } }

.hero__title{
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  letter-spacing: -.035em;
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.hero__title em{
  color: var(--brand-2);
  display: inline-block;
}

.hero__lead{
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: rgba(255,255,255,.75);
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.hero__actions{
  display: flex; justify-content: center; gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero__meta{
  display: inline-flex; align-items: center; gap: 1.25rem;
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  padding: .85rem 1.5rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero__meta strong{ color: #fff; margin-right: .3rem; }
.hero__meta span{ color: var(--brand-2); margin-right: .35rem; letter-spacing: .15em; }
.hero__meta-divider{
  width: 1px; height: 18px; background: rgba(255,255,255,.2);
}

/* Stats card */
.hero__stats{
  position: relative; z-index: 3;
  width: min(100% - 2rem, 1100px);
  margin: 4rem auto -90px;
  background: rgba(8,42,33,.78);
  border: 1px solid rgba(108,196,170,.25);
  backdrop-filter: blur(28px) saturate(140%);
  -webkit-backdrop-filter: blur(28px) saturate(140%);
  border-radius: var(--radius-lg);
  padding: 2rem 1rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,.5);
}
.stat{
  display: block;
  text-align: center;
  padding: .5rem;
}
.stat__num{
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1;
  color: #fff;
  font-weight: 400;
  text-shadow: 0 2px 8px rgba(0,0,0,.4);
  display: inline;
  vertical-align: baseline;
}
.stat__suffix{
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--brand-2);
  display: inline;
  vertical-align: baseline;
  margin-left: .1rem;
}
.stat__label{
  display: block;
  font-size: .85rem;
  color: rgba(255,255,255,.85);
  margin-top: .5rem;
  font-weight: 500;
}

/* ─── Trusted (with Logo Marquee) ──────────────────────────── */
.trusted{
  padding: 8rem 0 5rem;
  background: var(--bg);
}

.logo-marquee{
  position: relative;
  overflow: hidden;
  margin-top: 2.5rem;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.logo-marquee__track{
  display: flex;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 5rem);
  width: max-content;
  animation: scroll-logos 36s linear infinite;
}
.logo-marquee:hover .logo-marquee__track{ animation-play-state: paused; }
.logo-marquee__item{
  flex: 0 0 auto;
  height: 70px;
  width: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  filter: none;
  transition: opacity .35s var(--ease), filter .35s var(--ease), transform .35s var(--ease);
}
.logo-marquee__item:hover{
  opacity: 1;
  filter: none;
  transform: scale(1.08);
}
.logo-marquee__item img{
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
@keyframes scroll-logos{
  from{ transform: translateX(0); }
  to  { transform: translateX(-50%); }
}
@media (max-width: 768px){
  .logo-marquee__item{ height: 56px; width: 140px; }
  .logo-marquee__track{ animation-duration: 28s; }
}
.trusted__label{
  text-align: center;
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2rem;
  font-weight: 500;
}
.trusted__label strong{
  color: var(--brand);
  font-weight: 600;
}
.trusted__logos{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  gap: 2rem;
  padding: 0 1rem;
}
.partner-logo{
  display: flex;
  align-items: center; justify-content: center;
  height: 80px;
  padding: 0.5rem;
  opacity: 1;
  filter: none;
  transition: opacity .3s var(--ease), filter .3s var(--ease), transform .3s var(--ease);
}
.partner-logo:hover{
  opacity: 1;
  filter: none;
  transform: scale(1.05);
}
.partner-logo svg,
.partner-logo img{
  width: auto; height: 100%;
  max-height: 70px;
  max-width: 100%;
  object-fit: contain;
}
@media (max-width: 768px){
  .trusted__logos{ grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .partner-logo{ height: 70px; }
}

/* ─── Services ─────────────────────────────────────────────── */
.services{ padding: 6rem 0; }
.services__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.service{
  position: relative;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  overflow: hidden;
  display: flex; flex-direction: column;
  isolation: isolate;
}
.service__media{
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, var(--accent), var(--brand));
  position: relative;
}
.service__media img{
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.service:hover .service__media img{ transform: scale(1.06); }
.service__body{
  padding: 1.75rem 2rem 2rem;
  flex: 1;
  display: flex; flex-direction: column;
}
.service::before{
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(79,171,145,.18), transparent 60%);
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.service:hover{
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service:hover::before{ opacity: 1; }
.service > *{ position: relative; }
.service__icon{
  width: 52px; height: 52px;
  display: grid; place-items: center;
  background: var(--ink);
  color: #fff;
  border-radius: 14px;
  margin-bottom: 1.25rem;
  margin-top: -52px;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow);
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.service__icon svg{ width: 24px; height: 24px; }
.service:hover .service__icon{
  background: var(--brand);
  color: var(--brand-ink);
  transform: rotate(-5deg) scale(1.05);
}
.service h3{
  font-size: 1.3rem;
  margin-bottom: .6rem;
}
.service p{
  color: var(--muted);
  font-size: .98rem;
}
.service__tag{
  position: absolute;
  top: 1rem; right: 1rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .7rem;
  background: var(--brand);
  color: var(--brand-ink);
  border-radius: 999px;
  z-index: 3;
  box-shadow: var(--shadow-sm);
}

/* Add-ons */
.addons{
  margin-top: 3rem;
  display: flex; flex-wrap: wrap; gap: .75rem;
  justify-content: center;
}
.addon{
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .65rem 1.1rem;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 500;
  transition: all .25s var(--ease);
}
.addon:hover{
  border-color: var(--ink);
  transform: translateY(-2px);
}
.addon span{ font-size: 1.1rem; }

/* ─── Story scroll (Chaos → Wir → Ordnung) ─────────────────── */
.story{
  position: relative;
  height: 320vh;
  background: #082721;
}
.story__sticky{
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: #fff;
}
.story__media{
  position: absolute; inset: 0;
  z-index: 0;
}
.story__frame{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 45%;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity .9s var(--ease), transform 1.4s var(--ease);
  will-change: opacity, transform;
}
.story__frame.is-active{
  opacity: 1;
  transform: scale(1);
}
.story__video{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  background: #082721;
  pointer-events: none;
}
.story__vignette{
  position: absolute; inset: 0;
  background:
    linear-gradient(95deg, rgba(8,42,33,.85) 0%, rgba(8,42,33,.55) 40%, rgba(8,42,33,.15) 70%, rgba(8,42,33,0) 100%),
    linear-gradient(180deg, rgba(8,42,33,.3) 0%, rgba(8,42,33,.7) 100%);
  z-index: 1;
}
.story__content{
  position: relative;
  z-index: 2;
  padding: 0 1rem;
}
.story__step{
  position: absolute;
  top: 50%;
  transform: translateY(-50%) translateY(30px);
  max-width: 560px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  will-change: opacity, transform;
}
.story__step.is-active{
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%) translateY(0);
}
.story__count{
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 4.5rem;
  line-height: 1;
  color: var(--brand-2);
  margin-bottom: 1.25rem;
  font-style: italic;
}
.story__step .eyebrow{
  display: inline-block;
  margin-bottom: 1rem;
}
.story__step h2{
  font-size: clamp(2.2rem, 5vw, 4rem);
  letter-spacing: -.03em;
  margin-bottom: 1.25rem;
  color: #fff;
}
.story__step h2 em{
  color: var(--brand-2);
  font-family: var(--font-serif);
  font-style: italic;
  display: inline-block;
}
.story__step p{
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  max-width: 480px;
}
.story__step .btn{
  margin-top: .5rem;
}
.story__step .btn--primary{
  background: var(--cta);
  color: #fff;
}
.story__step .btn--primary:hover{
  background: var(--cta-3);
}

/* Progress indicator (dots) */
.story__progress{
  position: absolute;
  right: clamp(1.25rem, 3vw, 3rem);
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.story__dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  border: 1px solid rgba(255,255,255,.4);
  transition: background .3s var(--ease), transform .3s var(--ease), border-color .3s var(--ease);
}
.story__dot.is-active{
  background: var(--brand-2);
  border-color: var(--brand-2);
  transform: scale(1.5);
  box-shadow: 0 0 0 4px rgba(108,196,170,.18);
}

/* Desktop: video scrubbing; mobile: static cross-fade frames */
@media (min-width: 769px){
  .story__frame{ display: none; }
}
@media (max-width: 768px){
  .story{ height: 280vh; }
  .story__progress{ right: .75rem; gap: .65rem; }
  .story__count{ font-size: 3rem; }
  .story__step p{ font-size: 1rem; }
  .story__vignette{
    background:
      linear-gradient(180deg, rgba(8,42,33,.5) 0%, rgba(8,42,33,.85) 100%);
  }
  .story__video{ display: none; }
}

/* ─── About / David ────────────────────────────────────────── */
.about{
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--bg) 0%, #f4f1ea 100%);
}
.about__inner{
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}
.about__media{
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--accent), var(--brand));
  box-shadow: var(--shadow-lg);
}
.about__photo{
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.about__badge{
  position: absolute;
  bottom: 1.5rem; right: 1.5rem;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  padding: 1rem 1.25rem;
  border-radius: 16px;
  display: flex; align-items: center; gap: .9rem;
  box-shadow: var(--shadow);
}
.about__badge-num{
  font-family: var(--font-serif);
  font-size: 2.8rem;
  line-height: 1;
  color: var(--brand);
}
.about__badge span:last-child{
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}
.about__content h2{
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.25rem;
}
.about__lead{
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 1.75rem;
  line-height: 1.7;
}
.about__points{
  list-style: none;
  padding: 0; margin: 0 0 2rem;
  display: flex; flex-direction: column;
  gap: .75rem;
}
.about__points li{
  display: flex; align-items: flex-start; gap: .65rem;
  font-size: 1rem;
}
.about__points li span{
  flex-shrink: 0;
  width: 22px; height: 22px;
  display: grid; place-items: center;
  background: var(--brand);
  color: var(--brand-ink);
  border-radius: 50%;
  font-size: .75rem;
  font-weight: 700;
  margin-top: 2px;
}

/* ─── Packages ─────────────────────────────────────────────── */
.packages{
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--bg) 0%, #f4f1ea 100%);
}
.packages__grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.pkg{
  position: relative;
  padding: 2rem 1.75rem;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.pkg:hover{
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.pkg h3{
  font-size: 1.5rem;
  margin-bottom: .6rem;
}
.pkg__desc{
  font-size: .95rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
  min-height: 60px;
}
.pkg ul{
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: .55rem;
}
.pkg li{
  font-size: .92rem;
  padding-left: 1.4rem;
  position: relative;
}
.pkg li::before{
  content: '';
  position: absolute;
  left: 0; top: .55em;
  width: 14px; height: 8px;
  border-left: 2px solid var(--brand);
  border-bottom: 2px solid var(--brand);
  transform: rotate(-45deg);
}
.pkg--featured{
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  transform: scale(1.02);
}
.pkg--featured:hover{ transform: translateY(-6px) scale(1.02); }
.pkg--featured .pkg__desc{ color: rgba(255,255,255,.7); }
.pkg--featured li::before{ border-color: var(--brand); }
.pkg__badge{
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--brand);
  color: var(--brand-ink);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 999px;
  white-space: nowrap;
}

/* ─── Process ──────────────────────────────────────────────── */
.process{
  padding: 6rem 0;
  background: var(--ink);
  color: #fff;
}
.process .eyebrow{
  color: var(--brand-2);
  background: rgba(108,196,170,.18);
}
.process h2{ color: #fff; }
.process__list{
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  counter-reset: step;
}
.step{
  position: relative;
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  transition: all .35s var(--ease);
}
.step:hover{
  background: rgba(255,255,255,.07);
  border-color: rgba(108,196,170,.4);
  transform: translateY(-4px);
}
.step__num{
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--brand);
  display: block;
  margin-bottom: 1rem;
  line-height: 1;
}
.step h3{
  font-size: 1.1rem;
  margin-bottom: .5rem;
  color: #fff;
}
.step p{
  font-size: .9rem;
  color: rgba(255,255,255,.65);
}

/* ─── Regions ──────────────────────────────────────────────── */
.regions{ padding: 6rem 0; }
.regions__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.region-card{
  padding: 2rem;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.region-card:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.region-card h4{
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  color: var(--accent);
}
.region-card ul{
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .55rem;
  font-size: .95rem;
}
.region-card li{
  display: flex; align-items: center; gap: .45rem;
}
.region-card li::before{
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--brand);
}

/* ─── Testimonials ─────────────────────────────────────────── */
.testimonials{
  padding: 6rem 0;
  background: linear-gradient(180deg, #f4f1ea 0%, var(--bg) 100%);
}
.testimonials__grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
.quote{
  margin: 0;
  padding: 2rem;
  background: var(--bg-elev);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  position: relative;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.quote:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.quote::before{
  content: '"';
  position: absolute;
  top: -.5rem; right: 1.5rem;
  font-family: var(--font-serif);
  font-size: 6rem;
  line-height: 1;
  color: var(--brand);
  opacity: .25;
}
.quote__head{
  display: flex; align-items: center; gap: .9rem;
  margin-bottom: 1rem;
}
.quote__head strong{
  display: block;
  font-size: .98rem;
  color: var(--ink);
}
.quote__head span:not(.avatar){
  display: block;
  font-size: .82rem;
  color: var(--muted);
}
.avatar{
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 700;
  font-size: .9rem;
  color: #fff;
  letter-spacing: .02em;
  background: linear-gradient(135deg, var(--c1, var(--brand)), var(--c2, var(--accent)));
  box-shadow: var(--shadow-sm);
}
.stars{
  color: var(--brand);
  letter-spacing: .15em;
  font-size: .95rem;
  margin-bottom: .75rem;
}
.quote blockquote{
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--ink-2);
}

/* ─── FAQ ──────────────────────────────────────────────────── */
.faq{ padding: 6rem 0; background: var(--bg); }
.faq__list{
  max-width: 800px;
  margin: 0 auto;
  display: flex; flex-direction: column;
  gap: .85rem;
}
.faq__item{
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.faq__item[open]{
  border-color: var(--brand);
  box-shadow: var(--shadow);
}
.faq__item summary{
  list-style: none;
  cursor: pointer;
  padding: 1.4rem 1.75rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
}
.faq__item summary::-webkit-details-marker{ display: none; }
.faq__icon{
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg);
  display: grid; place-items: center;
  position: relative;
  transition: background .25s var(--ease), transform .3s var(--ease);
}
.faq__icon::before,
.faq__icon::after{
  content: '';
  position: absolute;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s var(--ease), background .25s var(--ease);
}
.faq__icon::before{ width: 12px; height: 2px; }
.faq__icon::after { width: 2px; height: 12px; }
.faq__item[open] .faq__icon{
  background: var(--brand);
  transform: rotate(180deg);
}
.faq__item[open] .faq__icon::before{ background: var(--brand-ink); }
.faq__item[open] .faq__icon::after{ transform: scaleY(0); }
.faq__item p{
  padding: 0 1.75rem 1.5rem;
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.65;
}

/* ─── CTA Banner ───────────────────────────────────────────── */
.cta-banner{ padding: 4rem 0; }
.cta-banner__inner{
  position: relative;
  padding: 4rem clamp(2rem, 5vw, 5rem);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--accent) 0%, #052119 100%);
  color: #fff;
  display: flex; align-items: center; justify-content: space-between;
  gap: 3rem;
  overflow: hidden;
}
.cta-banner__inner::before{
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(108,196,170,.45) 0%, transparent 70%);
  filter: blur(60px);
}
.cta-banner__inner > *{ position: relative; z-index: 1; }
.cta-banner h2{
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: .6rem;
  color: #fff;
}
.cta-banner h2 em{ color: var(--brand-2); }
.cta-banner p{ color: rgba(255,255,255,.75); }
.cta-banner .btn--primary{ background: var(--cta); color: #fff; }
.cta-banner .btn--primary:hover{ background: var(--cta-3); color: #fff; }
.cta-banner .btn--ghost{
  color: #fff;
  border-color: rgba(255,255,255,.25);
}
.cta-banner .btn--ghost:hover{ background: #fff; color: var(--accent); }
.cta-banner__actions{ display: flex; gap: 1rem; flex-wrap: wrap; }

/* ─── Contact ──────────────────────────────────────────────── */
.contact{ padding: 6rem 0; }
.contact__inner{
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
}
.contact__info h2{
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.25rem;
}
.contact__lead{
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}
.contact__list{
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 1.5rem;
}
.contact__list li{
  display: flex; gap: 1rem;
  align-items: flex-start;
}
.contact__list .contact__icon{
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--brand);
  margin-bottom: 0;
}
.contact__list .contact__icon svg{
  width: 20px; height: 20px;
  display: block;
}
.contact__list span{
  display: block;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  margin-bottom: .2rem;
}
.contact__list a{
  display: block;
  font-weight: 600;
  color: var(--ink);
  transition: color .2s;
}
.contact__list a:hover{ color: var(--brand); }
.contact__list p{ font-weight: 500; }

/* Form */
.contact__form{
  padding: 2.5rem;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.contact__form h3{
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.field{ margin-bottom: 1rem; }
.field label{
  display: block;
  font-size: .82rem;
  font-weight: 600;
  margin-bottom: .4rem;
  color: var(--ink-2);
}
.field input,
.field select,
.field textarea{
  width: 100%;
  padding: .8rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font: inherit;
  font-size: .95rem;
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  font-family: inherit;
}
.field input:focus,
.field select:focus,
.field textarea:focus{
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(79,171,145,.15);
}
.field textarea{ resize: vertical; min-height: 100px; }
.row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.contact__note{
  margin-top: 1rem;
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ─── Footer ───────────────────────────────────────────────── */
.footer{
  background: var(--ink);
  color: rgba(255,255,255,.65);
  padding: 5rem 0 2rem;
}
.footer__inner{
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer .nav__logo{ color: #fff; margin-bottom: 1rem; }
.footer__brand p{
  font-size: .95rem;
  max-width: 300px;
}
.footer h4,
.footer h5{
  color: #fff;
  font-size: .95rem;
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.footer a{
  display: block;
  font-size: .92rem;
  padding: .35rem 0;
  color: rgba(255,255,255,.6);
  transition: color .2s, transform .2s;
}
.footer a:hover{
  color: var(--brand-2);
  transform: translateX(3px);
}
.footer__bottom{
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
  font-size: .85rem;
  color: rgba(255,255,255,.45);
}
.footer__credit{
  color: var(--brand-2);
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: color .2s var(--ease);
}
.footer__credit::after{
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: currentColor;
  opacity: .35;
  transition: opacity .2s var(--ease);
}
.footer__credit:hover{
  color: var(--cta-2);
}
.footer__credit:hover::after{
  opacity: 1;
}

/* ─── WhatsApp FAB ─────────────────────────────────────────── */
.whatsapp-fab{
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  width: 56px; height: 56px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 12px 30px -8px rgba(37,211,102,.5);
  z-index: 50;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  animation: bounce 3s ease-in-out infinite;
}
.whatsapp-fab:hover{
  transform: scale(1.1);
  box-shadow: 0 16px 40px -8px rgba(37,211,102,.7);
}
.whatsapp-fab svg{ width: 28px; height: 28px; }
@keyframes bounce{
  0%,100%{ transform: translateY(0); }
  50%   { transform: translateY(-6px); }
}

/* ─── Reveal animations ────────────────────────────────────── */
.reveal{
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* ─── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px){
  .services__grid{ grid-template-columns: repeat(2, 1fr); }
  .packages__grid{ grid-template-columns: repeat(2, 1fr); }
  .pkg--featured{ transform: none; }
  .pkg--featured:hover{ transform: translateY(-6px); }
  .process__list{ grid-template-columns: repeat(2, 1fr); }
  .regions__grid{ grid-template-columns: 1fr; }
  .hero__stats{ grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .footer__inner{ grid-template-columns: 1fr 1fr; }
  .about__inner{ grid-template-columns: 1fr; gap: 2.5rem; }
  .about__media{ max-width: 480px; margin: 0 auto; aspect-ratio: 4/4; }
}

@media (max-width: 768px){
  .marquee figure{ width: 240px; height: 170px; }
  .marquee{ padding-top: 6rem; }
  .nav__links{
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--bg-elev);
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: var(--shadow);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: all .3s var(--ease);
  }
  .nav.open .nav__links{
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav:not(.scrolled).open .nav__links{
    background: rgba(12,13,16,.95);
    backdrop-filter: blur(20px);
  }
  .nav__links a{ font-size: 1.1rem; }
  .nav__phone span{ display: none; }
  .nav__burger{ display: flex; }
  .nav__cta .btn{ display: none; }

  .hero{ padding: 7rem 0 5rem; min-height: auto; }
  .hero__stats{ grid-template-columns: 1fr 1fr; margin-bottom: -60px; }

  .services__grid{ grid-template-columns: 1fr; }
  .packages__grid{ grid-template-columns: 1fr; }
  .process__list{ grid-template-columns: 1fr; }
  .testimonials__grid{ grid-template-columns: 1fr; }
  .contact__inner{ grid-template-columns: 1fr; gap: 2.5rem; }
  .cta-banner__inner{
    flex-direction: column;
    text-align: center;
    padding: 3rem 1.5rem;
  }
  .footer__inner{ grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom{ justify-content: center; text-align: center; }
  .row{ grid-template-columns: 1fr; }
  .contact__form{ padding: 1.75rem; }
}

@media (prefers-reduced-motion: reduce){
  *,*::before,*::after{
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .reveal{ opacity: 1; transform: none; }
}

/* ═══════════════════════════════════════════════════════════
   CITY PAGES (staedte/)
   ═══════════════════════════════════════════════════════════ */

/* Solid-nav variant (no dark hero on city pages) */
.nav--solid{
  background: rgba(250,250,247,.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 var(--line);
}
.nav--solid .nav__logo{ color: var(--ink); }
.nav--solid .nav__links a{ color: var(--ink-2); }

/* Breadcrumb */
.breadcrumb{
  padding: 6.5rem 1rem 1rem;
}
.breadcrumb ol{
  list-style: none;
  display: flex; flex-wrap: wrap;
  gap: .5rem;
  padding: 0; margin: 0;
  font-size: .88rem;
  color: var(--muted);
}
.breadcrumb li:not(:last-child)::after{
  content: '/';
  margin-left: .5rem;
  color: var(--line);
}
.breadcrumb a{
  color: var(--muted);
  transition: color .2s;
}
.breadcrumb a:hover{ color: var(--brand); }
.breadcrumb [aria-current]{
  color: var(--ink);
  font-weight: 600;
}

/* City hero */
.city-hero{
  position: relative;
  margin: 1rem 1rem 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 540px;
  display: flex;
  align-items: flex-end;
  color: #fff;
}
.city-hero__media{
  position: absolute; inset: 0;
  z-index: 0;
}
.city-hero__media img{
  width: 100%; height: 100%;
  object-fit: cover;
}
.city-hero__overlay{
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,13,16,.25) 0%, rgba(12,13,16,.85) 100%);
}
.city-hero__content{
  position: relative;
  padding: 4rem clamp(1.25rem, 3vw, 3rem);
  width: 100%;
}
.city-hero__content .eyebrow{
  color: var(--brand-2);
  background: rgba(108,196,170,.15);
  margin-bottom: 1rem;
}
.city-hero h1{
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: -.03em;
  margin-bottom: 1rem;
  color: #fff;
}
.city-hero h1 em{
  color: var(--brand-2);
  display: block;
  font-family: var(--font-serif);
}
.city-hero__lead{
  font-size: 1.15rem;
  color: rgba(255,255,255,.85);
  max-width: 600px;
  margin-bottom: 1.75rem;
}
.city-hero__meta{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 1.5rem 0;
  margin-bottom: 1.75rem;
  border-top: 1px solid rgba(255,255,255,.15);
  border-bottom: 1px solid rgba(255,255,255,.15);
  max-width: 700px;
}
.city-hero__meta div{ display: flex; flex-direction: column; }
.city-hero__meta strong{
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: #fff;
  font-weight: 400;
}
.city-hero__meta span{
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: .15rem;
}
.city-hero .btn--primary{ background: var(--cta); color: #fff; }
.city-hero .btn--primary:hover{ background: var(--cta-3); color: #fff; }
.city-hero .btn--ghost{
  color: #fff;
  border-color: rgba(255,255,255,.3);
  background: rgba(255,255,255,.05);
}
.city-hero .btn--ghost:hover{ background: #fff; color: var(--ink); }

/* City section (intro + fact card) */
.city-section{ padding: 5rem 0; background: var(--bg); }
.city-section__inner{
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: start;
}
.city-section__text h2{
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 1.25rem;
}
.city-section__text p{
  font-size: 1.05rem;
  color: var(--ink-2);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.city-section__highlight{
  padding: 1rem 1.25rem;
  background: rgba(79,163,139,.08);
  border-left: 4px solid var(--brand);
  border-radius: 8px;
  font-family: var(--font-serif);
  font-size: 1.15rem !important;
  font-style: italic;
  color: var(--accent) !important;
}
.city-fact-card{
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.city-fact-card h3{
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--line);
}
.city-fact-card dl{
  display: flex; flex-direction: column;
  gap: 1rem;
  margin: 0;
}
.city-fact-card dl > div{ display: flex; flex-direction: column; }
.city-fact-card dt{
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  font-weight: 600;
}
.city-fact-card dd{
  margin: .25rem 0 0;
  font-weight: 600;
  color: var(--ink);
}

/* Districts */
.city-districts{
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--bg) 0%, #f4f1ea 100%);
}
.districts-grid{
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}
.districts-grid li{
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  font-weight: 600;
  font-size: .98rem;
  display: flex; align-items: center; gap: .6rem;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.districts-grid li::before{
  content: '📍';
  font-size: 1rem;
}
.districts-grid li:hover{
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* City services */
.city-services{ padding: 5rem 0; }
.city-services__grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.city-service{
  padding: 2rem;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.city-service:hover{
  border-color: var(--brand);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.city-service h3{
  font-size: 1.3rem;
  margin-bottom: .75rem;
  color: var(--accent);
}
.city-service p{
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.65;
}

/* Why us */
.city-why{
  padding: 5rem 0;
  background: var(--ink);
  color: #fff;
}
.city-why__inner{
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: center;
}
.city-why .eyebrow{
  color: var(--brand-2);
  background: rgba(108,196,170,.15);
}
.city-why h2{
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: #fff;
  margin-bottom: 1.25rem;
}
.city-why h2 em{ color: var(--brand-2); }
.city-why__lead{
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 1.75rem;
  line-height: 1.7;
}
.city-why__list{
  list-style: none;
  padding: 0; margin: 0 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.city-why__list li{
  display: flex; align-items: center; gap: .55rem;
  font-size: .98rem;
  color: rgba(255,255,255,.85);
}
.city-why__list li span{
  width: 22px; height: 22px;
  display: grid; place-items: center;
  background: var(--brand);
  color: var(--brand-ink);
  border-radius: 50%;
  font-size: .75rem;
  font-weight: 800;
  flex-shrink: 0;
}
.city-why .btn--primary{ background: var(--cta); color: #fff; }
.city-why .btn--primary:hover{ background: var(--cta-3); color: #fff; }
.city-why__stats{
  display: flex; flex-direction: column;
  gap: 1.25rem;
}
.city-why__stats div{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius);
  display: flex; align-items: center; gap: 1.25rem;
  color: rgba(255,255,255,.7);
  font-size: .92rem;
}
.city-why__stats span{
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--brand-2);
  line-height: 1;
  font-weight: 400;
}

/* Siblings nav */
.city-siblings{ padding: 3rem 0; background: var(--bg); }
.city-siblings__inner{
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.5rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.sibling{
  font-weight: 600;
  color: var(--ink-2);
  transition: color .2s, transform .2s;
  font-size: .95rem;
}
.sibling:hover{
  color: var(--brand);
  transform: translateX(-3px);
}
.sibling--next:hover{ transform: translateX(3px); }
.sibling--all{
  margin-left: auto;
  padding: .7rem 1.2rem;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
}
.sibling--all:hover{
  background: var(--brand);
  color: var(--brand-ink);
  transform: none;
}

/* City index hero */
.city-index-hero{
  padding: 4rem 0 5rem;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, #f4f1ea 100%);
}
.city-index-hero .eyebrow{ margin-bottom: 1.25rem; }
.city-index-hero h1{
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -.03em;
  max-width: 900px;
  margin: 0 auto 1.25rem;
}
.city-index-hero h1 em{ color: var(--brand); }
.city-index-hero__lead{
  max-width: 700px;
  margin: 0 auto 2.5rem;
  font-size: 1.1rem;
  color: var(--muted);
}
.city-index-hero__stats{
  display: flex; justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
}
.city-index-hero__stats div{
  display: flex; flex-direction: column;
  align-items: center;
}
.city-index-hero__stats strong{
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--brand);
  font-weight: 400;
  line-height: 1;
}
.city-index-hero__stats span{
  font-size: .85rem;
  color: var(--muted);
  margin-top: .35rem;
}

/* City region groups */
.city-region{ padding: 4rem 0; }
.city-region:nth-child(even){ background: linear-gradient(180deg, #f4f1ea 0%, var(--bg) 100%); }
.city-region__head{
  max-width: 1200px;
  margin: 0 auto 2.5rem;
  padding: 0 1rem;
  display: flex; align-items: baseline; justify-content: space-between;
}
.city-region__head h2{
  font-size: 2.2rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.city-region__head p{
  color: var(--muted);
  font-size: .95rem;
}
.city-region__grid{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

/* City card */
.city-card{
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  display: flex; flex-direction: column;
}
.city-card:hover{
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand);
}
.city-card__media{
  aspect-ratio: 4/3;
  overflow: hidden;
  background: linear-gradient(135deg, var(--card-c2, var(--accent)) 0%, var(--card-c1, var(--brand)) 100%);
  position: relative;
}
.city-card__media::after{
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.35) 100%);
  pointer-events: none;
  z-index: 1;
}
.city-card__media img{
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
  position: relative;
  z-index: 0;
}
.city-card:hover .city-card__media img{ transform: scale(1.08); }
.city-card__pin{
  position: absolute;
  bottom: .85rem; left: .85rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: .35rem .7rem;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  color: rgba(255,255,255,.98);
  z-index: 2;
}
.city-card__body{
  padding: 1.5rem 1.5rem 1.75rem;
}
.city-card__body h3{
  font-size: 1.2rem;
  margin-bottom: .3rem;
}
.city-card__body p{
  font-size: .85rem;
  color: var(--muted);
  margin-bottom: .75rem;
}
.city-card__cta{
  font-size: .9rem;
  font-weight: 600;
  color: var(--brand);
}

/* ═══════════════════════════════════════════════════════════
   SERVICE PAGES (leistungen/)
   ═══════════════════════════════════════════════════════════ */

/* Service hero (similar to city hero but different palette) */
.service-hero{
  position: relative;
  margin: 1rem 1rem 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 540px;
  display: flex;
  align-items: flex-end;
  color: #fff;
}
.service-hero__media{
  position: absolute; inset: 0;
  z-index: 0;
}
.service-hero__media img{
  width: 100%; height: 100%;
  object-fit: cover;
}
.service-hero__overlay{
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(8,42,33,.92) 0%, rgba(8,42,33,.65) 45%, rgba(8,42,33,.15) 85%);
}
.service-hero__content{
  position: relative;
  padding: 4rem clamp(1.25rem, 3vw, 3rem);
  width: 100%;
}
.service-hero__content .eyebrow{
  color: var(--brand-2);
  background: rgba(108,196,170,.18);
  margin-bottom: 1rem;
}
.service-hero h1{
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: -.03em;
  margin-bottom: 1rem;
  color: #fff;
}
.service-hero__lead{
  font-size: 1.2rem;
  max-width: 600px;
  margin-bottom: 1.75rem;
  color: rgba(255,255,255,.92);
}
.service-hero .btn--primary{ background: var(--cta); color: #fff; }
.service-hero .btn--primary:hover{ background: var(--cta-3); color: #fff; }
.service-hero .btn--ghost{
  color: #fff;
  border-color: rgba(255,255,255,.3);
  background: rgba(255,255,255,.05);
}
.service-hero .btn--ghost:hover{ background: #fff; color: var(--ink); }

/* Service intro */
.service-intro{ padding: 5rem 0; background: var(--bg); }
.service-intro__inner{
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: start;
}
.service-intro__inner h2{
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 1.25rem;
}
.service-intro__inner > div > p{
  font-size: 1.05rem;
  color: var(--ink-2);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.service-intro__highlight{
  padding: 1rem 1.25rem;
  background: rgba(255,107,53,.08);
  border-left: 4px solid var(--cta);
  border-radius: 8px;
  font-family: var(--font-serif);
  font-size: 1.15rem !important;
  font-style: italic;
  color: var(--cta-3) !important;
}
.service-fact-card{
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 96px;
}
.service-fact-card h3{
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--line);
}
.service-fact-card ul{
  list-style: none;
  padding: 0; margin: 0 0 1.5rem;
  display: flex; flex-direction: column;
  gap: .75rem;
}
.service-fact-card li{
  display: flex; align-items: flex-start; gap: .65rem;
  font-size: .96rem;
}
.service-fact-card li span{
  flex-shrink: 0;
  width: 22px; height: 22px;
  display: grid; place-items: center;
  background: var(--brand);
  color: var(--brand-ink);
  border-radius: 50%;
  font-size: .75rem; font-weight: 700;
  margin-top: 2px;
}

/* Benefits grid */
.service-benefits{ padding: 5rem 0; background: linear-gradient(180deg, var(--bg) 0%, #f4f1ea 100%); }
.benefits-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.benefit{
  padding: 2rem;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.benefit:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.benefit__icon{
  font-size: 2rem;
  display: block;
  margin-bottom: 1rem;
}
.benefit h3{
  font-size: 1.2rem;
  margin-bottom: .55rem;
}
.benefit p{
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.6;
}

/* Leistungen overview grid */
.leistungen-grid-section{ padding: 3rem 0 5rem; background: var(--bg); }
.leistungen-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.leistung-card{
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  display: flex; flex-direction: column;
}
.leistung-card:hover{
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--cta);
}
.leistung-card__media{
  aspect-ratio: 4/3;
  overflow: hidden;
}
.leistung-card__media img{
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.leistung-card:hover .leistung-card__media img{ transform: scale(1.06); }
.leistung-card__body{
  padding: 1.75rem;
  flex: 1;
  display: flex; flex-direction: column;
}
.leistung-card__body h3{
  font-size: 1.35rem;
  margin-bottom: .5rem;
}
.leistung-card__body p{
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.55;
  margin-bottom: 1rem;
  flex: 1;
}
.leistung-card__cta{
  font-weight: 600;
  color: var(--cta);
  font-size: .95rem;
}

/* Responsive */
@media (max-width: 1024px){
  .city-section__inner{ grid-template-columns: 1fr; gap: 2rem; }
  .city-services__grid{ grid-template-columns: 1fr; }
  .city-why__inner{ grid-template-columns: 1fr; gap: 2.5rem; }
  .city-region__grid{ grid-template-columns: repeat(2, 1fr); }
  .city-hero__meta{ grid-template-columns: repeat(2, 1fr); }
  .service-intro__inner{ grid-template-columns: 1fr; gap: 2rem; }
  .service-fact-card{ position: static; }
  .benefits-grid{ grid-template-columns: 1fr; }
  .leistungen-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px){
  .leistungen-grid{ grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   LEGAL PAGES (Impressum, Datenschutz)
   ═══════════════════════════════════════════════════════════ */
.legal-page{
  max-width: 820px;
  padding: 2rem clamp(1rem, 4vw, 2rem) 5rem;
}
.legal-page__head{
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}
.legal-page__head h1{
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  letter-spacing: -.02em;
  margin-top: .75rem;
}
.legal-page section{
  margin-bottom: 3rem;
}
.legal-page h2{
  font-size: 1.55rem;
  margin-bottom: 1rem;
  margin-top: 2rem;
  letter-spacing: -.01em;
  padding-left: 1rem;
  border-left: 3px solid var(--brand);
}
.legal-page h3{
  font-size: 1.1rem;
  margin: 1.5rem 0 .75rem;
  color: var(--accent);
  font-weight: 600;
}
.legal-page p{
  margin-bottom: 1rem;
  line-height: 1.7;
  color: var(--ink-2);
  font-size: 1rem;
}
.legal-page ul{
  margin: 0 0 1rem 0;
  padding-left: 1.25rem;
  display: flex; flex-direction: column;
  gap: .5rem;
}
.legal-page ul li{
  line-height: 1.65;
  color: var(--ink-2);
}
.legal-page a{
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(79,163,139,.4);
  transition: color .2s, text-decoration-color .2s;
}
.legal-page a:hover{
  color: var(--cta);
  text-decoration-color: var(--cta);
}
.legal-page strong{ color: var(--ink); }
.legal-page__source{
  margin-top: 4rem;
  font-size: .85rem;
  color: var(--muted);
  text-align: center;
  font-style: italic;
}
@media (max-width: 640px){
  .city-region__grid{ grid-template-columns: 1fr; }
  .city-why__list{ grid-template-columns: 1fr; }
  .city-index-hero__stats{ gap: 1.5rem; }
  .city-index-hero__stats strong{ font-size: 2rem; }
  .breadcrumb{ padding-top: 5.5rem; }
}

/* ============================================================
   404 — page not found
   ============================================================ */
.page404{
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  padding: 8rem 0 6rem;
  background:
    radial-gradient(circle at 15% 20%, rgba(79,163,139,.08), transparent 55%),
    radial-gradient(circle at 85% 80%, rgba(255,107,53,.06), transparent 55%);
}
.page404__inner{
  max-width: 900px;
  text-align: center;
}
.page404__eyebrow{
  display: inline-block;
  font-size: .85rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--cta);
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.page404__title{
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  letter-spacing: -.025em;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.page404__lead{
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--ink-2);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}
.page404__cta{
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}
.page404__links h2{
  font-size: 1.1rem;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 1.5rem;
  letter-spacing: .05em;
}
.page404__grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  text-align: left;
}
.page404__card{
  display: flex;
  flex-direction: column;
  gap: .35rem;
  padding: 1.25rem 1.4rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--ink);
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.page404__card:hover{
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.page404__card strong{ font-size: 1rem; color: var(--ink); }
.page404__card span{ font-size: .9rem; color: var(--muted); line-height: 1.5; }

/* ============================================================
   Cookie / Privacy notice
   ============================================================ */
.cookie-notice{
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 9999;
  max-width: 420px;
  margin-left: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 40px rgba(12,51,41,.15);
  padding: 1.25rem 1.4rem;
  font-size: .92rem;
  line-height: 1.55;
  color: var(--ink-2);
  transform: translateY(120%);
  opacity: 0;
  transition: transform .35s ease-out, opacity .35s;
  pointer-events: none;
}
.cookie-notice.is-visible{
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-notice h3{
  font-size: 1rem;
  margin: 0 0 .5rem;
  color: var(--ink);
  font-weight: 600;
}
.cookie-notice p{ margin: 0 0 1rem; }
.cookie-notice a{
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-notice__actions{
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}
.cookie-notice__btn{
  font-family: inherit;
  font-size: .88rem;
  font-weight: 600;
  padding: .55rem 1rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.cookie-notice__btn--primary{
  background: var(--brand);
  color: #fff;
}
.cookie-notice__btn--primary:hover{ background: var(--accent); }
.cookie-notice__btn--ghost{
  background: transparent;
  color: var(--ink-2);
  border: 1px solid var(--line);
}
.cookie-notice__btn--ghost:hover{ border-color: var(--ink-2); color: var(--ink); }
@media (max-width: 480px){
  .cookie-notice{ left: .75rem; right: .75rem; bottom: .75rem; padding: 1rem 1.1rem; }
}

/* ============================================================
   Contact form — submit feedback states
   ============================================================ */
.contact__form .form-status{
  margin-top: .9rem;
  padding: .8rem 1rem;
  border-radius: var(--radius-sm);
  font-size: .92rem;
  display: none;
}
.contact__form .form-status.is-error{
  display: block;
  background: rgba(220, 53, 69, .08);
  border: 1px solid rgba(220, 53, 69, .25);
  color: #b32434;
}
.contact__form .form-status.is-success{
  display: block;
  background: rgba(79, 163, 139, .1);
  border: 1px solid rgba(79, 163, 139, .35);
  color: #16604a;
}
.contact__form input[name="company"]{
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

/* ============================================================
   Contact modal — opened from CTAs (#kontakt)
   ============================================================ */
.contact-modal{
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0px, 4vw, 2rem);
}
.contact-modal[hidden]{ display: none; }
.contact-modal__overlay{
  position: absolute;
  inset: 0;
  background: rgba(12, 51, 41, .55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity .25s ease-out;
  cursor: pointer;
}
.contact-modal.is-open .contact-modal__overlay{ opacity: 1; }
.contact-modal__panel{
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(12, 51, 41, .35);
  padding: 2.25rem clamp(1.25rem, 4vw, 2.25rem) 2rem;
  transform: translateY(20px) scale(.97);
  opacity: 0;
  transition: transform .28s cubic-bezier(.16,1,.3,1), opacity .2s ease-out;
}
.contact-modal.is-open .contact-modal__panel{
  transform: translateY(0) scale(1);
  opacity: 1;
}
.contact-modal__close{
  position: absolute;
  top: .9rem;
  right: .9rem;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  color: var(--ink-2);
  transition: background .15s, color .15s, border-color .15s;
}
.contact-modal__close:hover{
  background: var(--bg-elev);
  color: var(--ink);
  border-color: var(--ink-2);
}
.contact-modal__close svg{ width: 18px; height: 18px; display: block; }
.contact-modal__head{
  margin-bottom: 1.5rem;
  padding-right: 2.5rem;
}
.contact-modal__head h2{
  font-size: clamp(1.5rem, 4vw, 1.95rem);
  letter-spacing: -.02em;
  margin: .4rem 0 .5rem;
  line-height: 1.15;
}
.contact-modal__head p{
  color: var(--ink-2);
  font-size: .95rem;
  margin: 0;
  line-height: 1.55;
}
.contact-modal__form{
  padding: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  border: 0;
}
.contact-modal__form h3{ display: none; }
@media (max-width: 480px){
  .contact-modal{ padding: 0; align-items: flex-end; }
  .contact-modal__panel{
    max-height: 92vh;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    transform: translateY(40px);
  }
  .contact-modal.is-open .contact-modal__panel{ transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce){
  .contact-modal__overlay,
  .contact-modal__panel{ transition: none; }
}

/* ============================================================
   Wizard — multi-step form inside the contact modal
   ============================================================ */
.wizard-progress{
  margin-top: 1.1rem;
  display: flex;
  align-items: center;
  gap: .9rem;
}
.wizard-progress__bar{
  flex: 1;
  height: 4px;
  background: var(--bg-elev);
  border-radius: 4px;
  overflow: hidden;
}
.wizard-progress__fill{
  height: 100%;
  background: var(--brand);
  width: 50%;
  border-radius: 4px;
  transition: width .35s cubic-bezier(.16,1,.3,1);
}
.wizard-progress__label{
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--muted);
  white-space: nowrap;
}
.wizard-step{
  border: 0;
  padding: 0;
  margin: 0;
  min-width: 0;
}
.wizard-step[hidden]{ display: none; }
.wizard-step.is-active{
  animation: wizard-fade-in .28s ease-out both;
}
@keyframes wizard-fade-in{
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.wizard-step__title{
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--accent);
  margin-bottom: 1rem;
  padding: 0;
  display: block;
}
.wizard-step__actions{
  margin-top: 1.25rem;
  display: flex;
  gap: .75rem;
}
.wizard-step__actions .btn{ flex: 1; }
.wizard-step__actions--split .btn--ghost{ flex: 0 0 auto; }
.field__optional{
  font-weight: 400;
  color: var(--muted);
  font-size: .85em;
  margin-left: .25rem;
}
.field__label{
  display: block;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: .6rem;
}
.option-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .55rem;
}
.option-card{
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .85rem 1rem;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: .95rem;
  font-weight: 500;
  color: var(--ink);
  transition: border-color .15s, background .15s, transform .15s;
}
.option-card svg{
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--muted);
  transition: color .15s;
}
.option-card:hover{
  border-color: var(--brand);
  transform: translateY(-1px);
}
.option-card:hover svg{ color: var(--brand); }
.option-card:focus-visible{
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}
.option-card.is-selected{
  border-color: var(--brand);
  background: rgba(79, 163, 139, .08);
  box-shadow: 0 0 0 1px var(--brand) inset;
}
.option-card.is-selected svg{ color: var(--brand); }
.option-card--full{ grid-column: span 2; }
@media (max-width: 420px){
  .option-grid{ grid-template-columns: 1fr; }
  .option-card--full{ grid-column: auto; }
}

@media (prefers-reduced-motion: reduce){
  .wizard-step.is-active{ animation: none; }
  .wizard-progress__fill{ transition: none; }
}

/* ════════════════════════════════════════════════════════════════
   V2 POLISH — Bento, Comfort, CHECK24, Gold, Logo-Marquee, Hero-USP
   ════════════════════════════════════════════════════════════════ */

/* ─── Bento Grid for 7 Services (Privatumzug = 2-spaltig) ──── */
@media (min-width: 900px) {
  .services__grid {
    grid-template-columns: repeat(4, 1fr) !important;
    grid-auto-flow: dense;
  }
  .services__grid .service:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
  }
  .services__grid .service:nth-child(1) .service__media {
    aspect-ratio: 4 / 3;
  }
  .services__grid .service:nth-child(1) h3 {
    font-size: 1.65rem;
  }
}

/* ─── Comfort Featured Highlight (dunkel für Lesbarkeit) ─── */
.pkg--featured {
  background:
    radial-gradient(circle at 80% 90%, rgba(255,107,53,.20) 0%, transparent 55%),
    linear-gradient(160deg, #0c3329 0%, #133f33 55%, #0c3329 100%) !important;
  color: #fff !important;
  border: 2px solid var(--brand) !important;
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 60px -16px rgba(12,51,41,.55),
              0 8px 24px -8px rgba(0,0,0,.18);
  position: relative;
}
.pkg--featured h3 { color: #fff !important; }
.pkg--featured .pkg__desc { color: rgba(255,255,255,.82) !important; }
.pkg--featured li { color: rgba(255,255,255,.95) !important; }
.pkg--featured li::before {
  border-left-color: #7adcc0 !important;
  border-bottom-color: #7adcc0 !important;
}
.pkg--featured::before {
  content: '';
  position: absolute;
  inset: -3px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 50%, var(--cta) 100%);
  border-radius: inherit;
  z-index: -1;
  opacity: .55;
  filter: blur(10px);
}
.pkg__badge {
  background: var(--cta) !important;
  color: #fff !important;
  font-weight: 700;
  letter-spacing: .08em;
  box-shadow: 0 6px 18px -4px rgba(255,107,53,.45);
}
.packages__grid { align-items: stretch; }
.packages__custom {
  text-align: center;
  margin-top: 2rem;
  font-style: italic;
  color: var(--muted);
}
.pkg li::before { color: var(--brand) !important; font-weight: 800 !important; font-size: 1.1em !important; }

/* ─── CHECK24 Hexagon Badge — kleiner ────────────────────── */
.hero__check24-badge {
  width: clamp(60px, 7vw, 90px) !important;
  height: auto !important;
  top: clamp(5.5rem, 8vh, 6.5rem) !important;
}
@media (max-width: 768px) {
  .hero__check24-badge { width: 55px !important; top: 5rem !important; right: 1rem !important; }
}

/* ─── Hero Badge entfernen ───────────────────────────────── */
/* (Wird im HTML schon entfernt — dieser Fallback falls noch da) */
.hero__badge { display: none !important; }

/* ─── Gold Stars (Hero-Meta + Stats + Testimonials) ────── */
.hero__meta span[aria-hidden="true"] {
  color: #f6c244 !important;
  font-size: 1.15rem !important;
  letter-spacing: .08em;
}
/* Bewertungs-Stern: bleibt gelb, während "4,9" weiß bleibt */
.stat__star {
  color: #f6c244 !important;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  margin-left: .25rem;
  vertical-align: baseline;
  display: inline;
}
.stars {
  color: #f6c244 !important;
  font-size: 1.05rem !important;
}

/* ─── Trust Logo Marquee — größer & in voller Farbe ─────── */
.logo-marquee__item {
  height: 95px !important;
  width: 200px !important;
  opacity: 1 !important;
  filter: none !important;
}
.logo-marquee__item:hover {
  opacity: 1 !important;
  transform: scale(1.1);
}
.logo-marquee__item img {
  max-height: 88px !important;
}
.trusted__label {
  font-size: 1.05rem !important;
  font-weight: 600 !important;
  color: var(--ink-2) !important;
  letter-spacing: .02em !important;
  text-transform: none !important;
  margin-bottom: 1.5rem !important;
}
@media (max-width: 768px) {
  .logo-marquee__item { height: 70px !important; width: 160px !important; }
}

/* ─── Hero USP Liste ──────────────────────────────────── */
.hero__usp {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .85rem 1.5rem;
  padding: 0;
  margin: 1.5rem 0 0;
  max-width: 720px;
}
.hero__usp li {
  color: rgba(255,255,255,.9);
  font-size: .92rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: .35rem;
}
@media (max-width: 600px) {
  .hero__usp { font-size: .88rem; }
  .hero__usp li { flex: 0 0 calc(50% - 1rem); }
}

/* ─── Slim Contact Card (statt Formular) ─────────────── */
.contact__quick {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 2rem 1.75rem;
  box-shadow: 0 16px 40px -16px rgba(12,51,41,.15);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact__quick-head { text-align: center; }
.contact__quick-eyebrow {
  display: inline-block;
  font-size: .85rem;
  color: var(--brand);
  background: rgba(79,163,139,.1);
  padding: .35rem .9rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: .04em;
  margin-bottom: .75rem;
}
.contact__quick h3 {
  font-size: 1.6rem;
  margin: 0 0 .5rem;
  letter-spacing: -.015em;
}
.contact__quick p {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.55;
  margin: 0;
}
.contact__quick-or {
  text-align: center;
  font-size: .85rem;
  color: var(--muted);
  margin: .25rem 0 !important;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.contact__quick-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.btn--whatsapp {
  background: #25d366;
  color: #fff;
  border: none;
}
.btn--whatsapp:hover {
  background: #20bd5a;
  color: #fff;
}
@media (max-width: 600px) {
  .contact__quick-actions { grid-template-columns: 1fr; }
  .contact__quick { padding: 1.5rem 1.25rem; }
}

/* ─── Region card — Bundesweit-Variante ─────────────── */
.region-card--nationwide {
  background: linear-gradient(135deg, rgba(79,163,139,.05) 0%, rgba(108,196,170,.08) 100%);
  border: 2px dashed var(--brand);
}
.region-card--nationwide h3 { color: var(--brand); }
.region-card--nationwide .btn { margin-top: 1rem; }

/* ════════════════════════════════════════════════════════════════
   V2 TYPOGRAPHY — Italic-Akzente raus, Sans-only
   ════════════════════════════════════════════════════════════════ */

:root {
  /* Override the Instrument Serif declaration from line 39 */
  --font-serif: var(--font-sans, 'Inter', system-ui, sans-serif) !important;
}

/* em-Akzente: kein Serif mehr, statt dessen fette Italic Sans */
em,
h1 em, h2 em, h3 em, .hero__title em,
.section-head em, .city-hero h1 em,
.about__content h2 em, .packages__grid h2 em,
.regions h2 em, .testimonials h2 em,
.faq h2 em, .contact h2 em,
.story__step h2 em, .cta-banner h2 em {
  font-family: var(--font-sans) !important;
  font-style: italic !important;
  font-weight: 700 !important;
  color: var(--brand);
  letter-spacing: -.015em !important;
}

/* Stat-Nums in Sans (waren Serif) */
.stat__num, .stat__suffix,
.story__count, .step__num,
.city-hero__meta strong,
.about__badge-num {
  font-family: var(--font-sans) !important;
  font-style: normal !important;
}

/* ════════════════════════════════════════════════════════════════
   V2 MOBILE — Headline-Overflow-Fix
   ════════════════════════════════════════════════════════════════ */

@media (max-width: 480px) {
  h1, .hero__title, .city-hero h1 {
    font-size: clamp(2rem, 9vw, 2.8rem) !important;
    word-break: normal;
    overflow-wrap: anywhere;
    hyphens: auto;
    -webkit-hyphens: auto;
    line-height: 1.05;
  }
  h2, .section-head h2 {
    font-size: clamp(1.75rem, 7vw, 2.4rem) !important;
    overflow-wrap: anywhere;
  }
  body { -webkit-hyphens: auto; hyphens: auto; }
}

/* ════════════════════════════════════════════════════════════════
   V2 A11Y — Focus + Reduced Motion
   ════════════════════════════════════════════════════════════════ */

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ════════════════════════════════════════════════════════════════
   V2 LANG SWITCHER (DE/EN)
   ════════════════════════════════════════════════════════════════ */

.lang-toggle {
  position: fixed;
  bottom: 1.5rem;
  right: 5.25rem;
  z-index: 50;
  background: rgba(8,42,33,.92);
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  padding: .55rem 1rem;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  transition: transform .2s, background .2s;
  font-family: inherit;
}
.lang-toggle:hover {
  transform: scale(1.05);
  background: var(--brand);
}
@media (max-width: 768px) {
  .lang-toggle { bottom: 5.5rem; right: 1rem; padding: .5rem .85rem; }
}

/* ════════════════════════════════════════════════════════════════
   V2 COOKIE BANNER (DSGVO Opt-in)
   ════════════════════════════════════════════════════════════════ */

.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #082721;
  color: #fff;
  padding: 1.25rem clamp(1rem, 3vw, 2rem);
  z-index: 100;
  border-top: 2px solid var(--brand);
  box-shadow: 0 -10px 30px rgba(0,0,0,.3);
}
.cookie-banner__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
}
.cookie-banner p {
  flex: 1 1 320px;
  margin: 0;
  font-size: .92rem;
  line-height: 1.5;
  color: rgba(255,255,255,.92);
}
.cookie-banner a {
  color: var(--brand-2);
  text-decoration: underline;
}
.cookie-banner__actions {
  display: flex;
  gap: .65rem;
  flex-shrink: 0;
}
.cookie-banner__actions .btn {
  min-height: 44px;
  padding: .65rem 1.25rem;
}
@media (max-width: 600px) {
  .cookie-banner__inner { gap: 1rem; }
  .cookie-banner__actions {
    width: 100%;
    flex-direction: column-reverse;
  }
  .cookie-banner__actions .btn { width: 100%; }
}

/* ════════════════════════════════════════════════════════════════
   V2 — Grid-Zentrierung (Service-Stufen 4→3, Regions 3→2)
   ════════════════════════════════════════════════════════════════ */

/* Service-Stufen: nur noch 3 Karten — zentriert */
.packages__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

/* Regions: nur noch 2 Karten — zentriert + breiter */
.regions__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

/* Mobile: jeweils auf eine Spalte */
@media (max-width: 900px) {
  .packages__grid {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
    max-width: 480px;
  }
  .regions__grid {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
    max-width: 480px;
  }
  /* Comfort darf nicht mehr skaliert über die Mobile-Karten herausragen */
  .pkg--featured {
    transform: none;
  }
}

/* ════════════════════════════════════════════════════════════════
   V2 — Hero USP-Liste als Glass-Pills (Brand-Stil)
   ════════════════════════════════════════════════════════════════ */

.hero__usp {
  list-style: none !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .65rem .85rem;
  padding: 0 !important;
  margin: 1.5rem 0 0 !important;
  max-width: 640px;
}
.hero__usp li {
  display: flex !important;
  align-items: center;
  gap: .65rem;
  padding: .7rem .95rem;
  background: rgba(255,255,255,.06) !important;
  border: 1px solid rgba(108,196,170,.22) !important;
  border-radius: 12px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: rgba(255,255,255,.95) !important;
  font-size: .9rem !important;
  line-height: 1.3 !important;
  font-weight: 400 !important;
  list-style: none !important;
  transition: border-color .25s, background .25s, transform .25s;
}
.hero__usp li::marker,
.hero__usp li::before {
  content: none !important;
  display: none !important;
}
.hero__usp li:hover {
  border-color: rgba(108,196,170,.55) !important;
  background: rgba(108,196,170,.08) !important;
  transform: translateY(-1px);
}
.hero__usp-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  display: grid;
  place-items: center;
  background: var(--brand);
  color: var(--brand-ink, #082721);
  border-radius: 999px;
  box-shadow: 0 4px 12px -2px rgba(79,163,139,.5);
}
.hero__usp-icon svg {
  width: 12px; height: 12px;
  stroke-width: 3.5;
}
.hero__usp-text strong {
  color: #fff;
  font-weight: 700;
  margin-right: .15rem;
}

@media (max-width: 768px) {
  .hero__usp {
    grid-template-columns: 1fr;
    gap: .55rem;
    max-width: 100%;
  }
  .hero__usp li {
    padding: .65rem .85rem;
    font-size: .87rem !important;
  }
}

/* ════════════════════════════════════════════════════════════════
   V2 LANG SWITCHER — Nav variant (in navigation bar)
   ════════════════════════════════════════════════════════════════ */
.lang-toggle--nav {
  position: static !important;
  bottom: auto !important;
  right: auto !important;
  background: transparent !important;
  border: 0 !important;
  color: var(--ink) !important;
  padding: .35rem .5rem !important;
  font-size: .9rem !important;
  font-weight: 600 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: .4rem !important;
  cursor: pointer !important;
  border-radius: 999px !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  margin-right: .65rem;
  transition: opacity .2s, color .2s, transform .15s;
  line-height: 1;
  opacity: .85;
}
.lang-toggle--nav:hover {
  background: transparent !important;
  border: 0 !important;
  color: var(--brand) !important;
  opacity: 1;
  transform: translateY(-1px);
}
.lang-toggle__flag {
  font-size: 1.15rem;
  line-height: 1;
  display: inline-block;
  /* Improve flag rendering on macOS/iOS */
  font-family: 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji', sans-serif;
}
.lang-toggle__label {
  font-weight: 700;
  letter-spacing: .04em;
}

/* On dark hero (nav NOT scrolled): light variant */
.nav:not(.scrolled) .lang-toggle--nav {
  border: 0 !important;
  color: #fff !important;
}
.nav:not(.scrolled) .lang-toggle--nav:hover {
  background: transparent !important;
  border: 0 !important;
  color: rgba(255,255,255,.75) !important;
}

/* Mobile: kompakter */
@media (max-width: 768px) {
  .lang-toggle--nav {
    padding: .45rem .65rem !important;
    margin-right: .35rem;
  }
  .lang-toggle__label {
    /* Auf Mobile nur Flagge zeigen */
    display: none;
  }
  .lang-toggle__flag {
    font-size: 1.3rem;
  }
}

/* Quiz/Danke nav: passt sich der hellen Quiz-Nav an */
.quiz-nav .lang-toggle--nav {
  border: 0 !important;
  color: var(--ink) !important;
}
.quiz-nav .lang-toggle--nav:hover {
  background: transparent !important;
  border: 0 !important;
  color: var(--brand) !important;
}

/* ════════════════════════════════════════════════════════════════
   FIX: Nav links auf Subpages (nav--solid) lesbar machen
   `.nav:not(.scrolled)` hat höhere Specificity als `.nav--solid`,
   weshalb auf /leistungen, /staedte etc. die Links weiß bleiben.
   Mit !important + Compound-Selector zurückerobern.
   ════════════════════════════════════════════════════════════════ */
.nav.nav--solid:not(.scrolled) .nav__links a,
.nav.nav--solid .nav__links a {
  color: var(--ink-2) !important;
}
.nav.nav--solid:not(.scrolled) .nav__links a:hover,
.nav.nav--solid .nav__links a:hover {
  color: var(--brand) !important;
}
.nav.nav--solid:not(.scrolled) .nav__phone,
.nav.nav--solid .nav__phone {
  color: var(--ink-2) !important;
}
.nav.nav--solid:not(.scrolled) .nav__phone:hover {
  color: var(--brand) !important;
}
.nav.nav--solid:not(.scrolled) .nav__phone svg {
  color: var(--brand) !important;
}
.nav.nav--solid:not(.scrolled) .nav__logo {
  color: var(--ink) !important;
}
.nav.nav--solid:not(.scrolled) .nav__logo-mark {
  color: var(--brand) !important;
}
.nav.nav--solid:not(.scrolled) .nav__logo-text em {
  color: var(--brand) !important;
}
.nav.nav--solid:not(.scrolled) .nav__logo-wordmark,
.nav.nav--solid:not(.scrolled) .nav__logo-icon {
  filter: none !important;
}
.nav.nav--solid:not(.scrolled) .nav__burger span {
  background: var(--ink) !important;
}
/* Lang-Toggle auf nav--solid: borderless, dunkle Schrift */
.nav.nav--solid:not(.scrolled) .lang-toggle--nav {
  border: 0 !important;
  color: var(--ink) !important;
}

/* ════════════════════════════════════════════════════════════════
   V2 FINAL OVERRIDE — Grid-Zentrierung + Italic-Reset
   Diese Sektion muss am ENDE der Datei bleiben damit Source-Order
   die anderen V2-Sections gewinnen lässt.
   ════════════════════════════════════════════════════════════════ */

/* Service-Stufen Grid: 3 Karten, definitiv zentriert */
section.packages .container .packages__grid,
.packages__grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  max-width: 1080px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-inline: auto !important;
  gap: 1.25rem !important;
  width: 100% !important;
}

/* Regions Grid: 2 Karten, zentriert */
section.regions .container .regions__grid,
.regions__grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  max-width: 980px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-inline: auto !important;
  gap: 1.5rem !important;
  width: 100% !important;
}

/* Italic em-Akzente: Sans-Italic (kein Serif mehr) */
section em, header em, h1 em, h2 em, h3 em, .hero__title em,
.section-head em, .city-hero h1 em, .about__content h2 em,
.packages__grid h2 em, .regions h2 em, .testimonials h2 em,
.faq h2 em, .contact h2 em, .story__step h2 em, .cta-banner h2 em {
  font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
  font-style: italic !important;
  font-weight: 700 !important;
  color: var(--brand) !important;
  letter-spacing: -.015em !important;
}

/* CSS-Variable Override: serif fallback weg */
:root {
  --font-serif: 'Inter', system-ui, -apple-system, sans-serif !important;
}

/* Mobile: 1 Spalte */
@media (max-width: 900px) {
  section.packages .container .packages__grid,
  .packages__grid {
    grid-template-columns: 1fr !important;
    max-width: 480px !important;
  }
  section.regions .container .regions__grid,
  .regions__grid {
    grid-template-columns: 1fr !important;
    max-width: 480px !important;
  }
  .pkg--featured {
    transform: none !important;
  }
}

/* ════════════════════════════════════════════════════════════════
   V2 FLEX-CENTER — Grids auf Flex umstellen für zuverlässige Zentrierung
   Grid-Centering hat nicht funktioniert, Flex mit justify-content
   ist die robusteste Methode.
   ════════════════════════════════════════════════════════════════ */

.packages__grid {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center !important;
  align-items: stretch;
  gap: 1.25rem !important;
  max-width: none !important;
  width: 100% !important;
  margin: 0 !important;
}
.packages__grid > .pkg {
  flex: 0 1 320px;
  max-width: 360px;
  min-width: 0;
}

.regions__grid {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center !important;
  align-items: stretch;
  gap: 1.5rem !important;
  max-width: none !important;
  width: 100% !important;
  margin: 0 !important;
}
.regions__grid > .region-card {
  flex: 0 1 440px;
  max-width: 460px;
  min-width: 0;
}

/* Mobile-Fallback */
@media (max-width: 600px) {
  .packages__grid > .pkg,
  .regions__grid > .region-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* ════════════════════════════════════════════════════════════════
   V2 NAV-SINGLELINE — alles in einer Zeile, kein Umbruch
   Behebt Wrap im Bereich 800-1050px: "Über uns" auf 2 Zeilen,
   Telefonnummer auf 2 Zeilen etc.
   ════════════════════════════════════════════════════════════════ */

/* Nichts in der Nav darf umbrechen */
.nav__inner,
.nav__links,
.nav__cta,
.nav__links a,
.nav__phone,
.nav__phone span,
.lang-toggle--nav,
.nav .btn {
  white-space: nowrap !important;
}

/* Flex-Items dürfen nicht shrinken — sonst Wrap */
.nav__logo,
.nav__links,
.nav__cta,
.nav__phone,
.lang-toggle--nav,
.nav .btn {
  flex-shrink: 0;
}

/* Mittlere Viewports (768-1100px): Gaps verkleinern, Burger zeigen */
@media (max-width: 1100px) and (min-width: 769px) {
  .nav__inner { gap: 1rem !important; }
  .nav__links { gap: 1.25rem !important; }
  .nav__links a { font-size: .9rem !important; }
  .nav__cta { gap: .6rem !important; }
  .nav__phone { font-size: .88rem !important; }
}

/* Burger-Breakpoint hochziehen: ab 960px Mobile-Menü statt enge Inline-Nav */
@media (max-width: 960px) {
  .nav__links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--bg-elev);
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: var(--shadow);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: all .3s var(--ease);
  }
  .nav.open .nav__links {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav:not(.scrolled).open .nav__links {
    background: rgba(12,13,16,.95);
    backdrop-filter: blur(20px);
  }
  .nav__links a { font-size: 1.1rem !important; }
  .nav__burger { display: flex !important; }
}

/* ════════════════════════════════════════════════════════════════
   V2 HERO BADGES — Rating + Trust als getrennte Pillen
   USP-Liste rückt nach oben (direkt unter CTAs)
   ════════════════════════════════════════════════════════════════ */

/* USP-Liste enger an die CTAs ranrücken */
.hero__usp {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

/* Container für die zwei Trust-Badges */
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
  margin-top: .25rem;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .7rem 1.15rem;
  border-radius: 999px;
  font-size: .92rem;
  line-height: 1;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: rgba(255,255,255,.92);
  white-space: nowrap;
}

/* Rating-Badge: Brand-Akzent */
.hero__badge--rating {
  background: linear-gradient(135deg, rgba(79,163,139,.18), rgba(79,163,139,.08));
  border-color: rgba(108,196,170,.42);
}
.hero__badge--rating strong {
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -.01em;
}
.hero__badge--rating span[aria-hidden="true"] {
  color: #ffc24a;
  letter-spacing: .08em;
  font-size: .95rem;
  margin-right: .15rem;
}

/* Trust-Badge: dezenter */
.hero__badge--trust svg {
  width: 18px; height: 18px;
  color: var(--brand-2, #7adcc0);
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .hero__badges { gap: .55rem; }
  .hero__badge {
    font-size: .85rem;
    padding: .6rem .9rem;
    white-space: normal;
  }
}

/* ════════════════════════════════════════════════════════════════
   V2 STAT-INLINE — Zahl + Suffix MÜSSEN nebeneinander stehen
   Aggressives Override gegen jeden anderen Flex/Block-Mismatch.
   ════════════════════════════════════════════════════════════════ */
.stat {
  display: block !important;
  text-align: center !important;
  white-space: nowrap !important; /* Zahl + Suffix bleiben in einer Zeile */
}
.stat__num,
.stat__suffix {
  display: inline !important;
  vertical-align: baseline !important;
  margin: 0 !important;
}
.stat__num + .stat__suffix {
  margin-left: .15rem !important;
}
.stat__label {
  display: block !important;
  white-space: normal !important; /* Label darf wieder umbrechen */
  margin-top: .35rem !important;
}

/* ════════════════════════════════════════════════════════════════
   V2 NAV-ONE-LINE — alles auf einer Zeile, keine Umbrüche
   "Über uns" und "05201 6640000" sollen nicht umbrechen.
   ════════════════════════════════════════════════════════════════ */
.nav__inner {
  flex-wrap: nowrap !important;
  gap: 1.25rem !important;
  align-items: center !important;
}
.nav__links {
  flex-wrap: nowrap !important;
  gap: 1.25rem !important;
  align-items: center !important;
}
.nav__links a {
  white-space: nowrap !important;
  flex-shrink: 0 !important;
}
.nav__cta {
  flex-wrap: nowrap !important;
  gap: .75rem !important;
  align-items: center !important;
}
.nav__phone {
  white-space: nowrap !important;
  flex-shrink: 0 !important;
  font-size: .88rem !important;
}
.nav__phone span {
  white-space: nowrap !important;
}
.nav__logo {
  flex-shrink: 0 !important;
}
.nav__cta .btn {
  white-space: nowrap !important;
  flex-shrink: 0 !important;
}

/* Tablet: Links etwas enger */
@media (min-width: 1024px) and (max-width: 1280px) {
  .nav__links { gap: 1rem !important; }
  .nav__links a { font-size: .9rem !important; }
  .nav__inner { gap: 1rem !important; }
}

/* ════════════════════════════════════════════════════════════════
   V2 RESPONSIVE-AUDIT FIX — Bugs aus Playwright-Audit beheben
   - Nav-Overflow bei 360-1099px (Burger-Mode ausweiten)
   - Tap-Targets ≥44px auf Mobile (Apple HIG)
   - Hero h1 für 320-400px Viewports
   ════════════════════════════════════════════════════════════════ */

/* ─── Nav: Burger-Modus bis 1099px ────────────────────────────── */
@media (max-width: 1099px) {
  /* Drawer-Layout für nav__links */
  .nav__links {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important; right: 0 !important;
    flex-direction: column !important;
    background: var(--bg-elev);
    padding: 1.5rem 1.5rem 2rem !important;
    gap: 1.25rem !important;
    box-shadow: var(--shadow);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    visibility: hidden; /* echt unsichtbar — verhindert Doppel-Nav */
    transition: opacity .3s var(--ease), transform .3s var(--ease), visibility 0s linear .3s;
  }
  .nav.open .nav__links {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
    visibility: visible;
    transition: opacity .3s var(--ease), transform .3s var(--ease), visibility 0s;
  }
  .nav:not(.scrolled).open .nav__links {
    background: rgba(12,13,16,.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }
  .nav__links a {
    font-size: 1.05rem !important;
    padding: .65rem 0;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .nav__burger { display: flex !important; }

  /* Kompakte Inline-CTA: nur Telefon-Icon, kompakte Lang-Toggle */
  .nav__cta { gap: .35rem !important; }
  .nav__phone span { display: none !important; }
  .nav__phone {
    padding: .5rem;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
  }
  .nav__phone svg { width: 20px !important; height: 20px !important; }
  .lang-toggle--nav {
    padding: .5rem .65rem !important;
    margin-right: .15rem !important;
    min-height: 44px !important;
  }
  /* Angebot-Button kompakter, aber sichtbar bleiben */
  .nav__cta .btn--primary {
    padding: .55rem 1rem !important;
    font-size: .85rem !important;
    min-height: 40px;
  }
}

/* ─── Sehr schmale Mobile (<480px): Telefon raus, CTA radikal kompakt ── */
@media (max-width: 479px) {
  /* CTA bleibt sichtbar (Conversion!), nur sehr kompakt */
  .nav__cta .btn--primary {
    padding: .5rem .8rem !important;
    font-size: .8rem !important;
    min-height: 36px !important;
  }
  /* Telefon-Icon raus — Lang + CTA + Burger reichen */
  .nav__cta .nav__phone { display: none !important; }
  .nav__cta { gap: .3rem !important; }
}

/* ─── Tap-Targets: Footer-Links, Quiz-Inputs ──────────────────── */
@media (max-width: 768px) {
  .footer a[href^="tel:"],
  .footer a[href^="mailto:"],
  .footer a[href*="wa.me"],
  .footer nav a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: .35rem 0;
  }
}

/* ─── Hero h1: kleinere Schrift auf sehr schmalen Viewports ───── */
@media (max-width: 400px) {
  .hero__title,
  .hero h1 {
    font-size: clamp(1.85rem, 8vw, 2.4rem) !important;
    line-height: 1.1 !important;
  }
}

/* ─── Quiz-Inputs auf Mobile besser tappable ──────────────────── */
@media (max-width: 768px) {
  .angebot input[type="text"],
  .angebot input[type="email"],
  .angebot input[type="tel"],
  .angebot input[type="number"],
  .angebot select,
  .quiz-field input,
  .quiz-field select,
  .quiz-field textarea {
    min-height: 48px;
    font-size: 16px; /* verhindert iOS Auto-Zoom */
  }
}

/* ════════════════════════════════════════════════════════════════
   V2 CITY-EYEBROW — stärker erkennbar auf Foto-Hintergrund
   "UMZUG IN PADERBORN" etc. brauchen kräftigen Brand-Hintergrund
   ════════════════════════════════════════════════════════════════ */

.city-hero__content .eyebrow,
.city-hero__content .eyebrow--light,
.service-hero__content .eyebrow,
.service-hero__content .eyebrow--light {
  color: #fff !important;
  background: var(--brand, #4fa38b) !important;
  border: 1px solid rgba(255,255,255,.25);
  padding: .5rem 1rem !important;
  font-size: .82rem !important;
  font-weight: 700 !important;
  letter-spacing: .14em;
  text-transform: uppercase;
  box-shadow:
    0 8px 24px -6px rgba(12,51,41,.55),
    0 2px 4px rgba(0,0,0,.18);
  text-shadow: 0 1px 2px rgba(0,0,0,.25);
}
