:root {
  --ink: #171512;
  --ink-soft: #2b2823;
  --muted: #6f685f;
  --ivory: #f8f4ed;
  --paper: #fffdf9;
  --paper-soft: #f1e9de;
  --line: #e4d8c8;
  --gold: #c6a15b;
  --gold-deep: #9b743c;
  --copper: #9b743c;
  --copper-dark: #9b743c;
  --white: #ffffff;
  --green: #25d366;
  --shadow: 0 18px 50px rgba(34, 27, 20, .09);
  --shadow-strong: 0 30px 80px rgba(34, 27, 20, .15);
  --radius: 26px;
  --radius-sm: 16px;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }
.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 1000;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--copper));
}

.utility-bar {
  background: var(--ink);
  color: #ddd4c7;
  font-size: .78rem;
  letter-spacing: .015em;
}
.utility-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.utility-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.utility-contact a { color: #f3eadf; }
.utility-contact a:hover { color: #e9c88b; }
.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #67d890;
  box-shadow: 0 0 0 5px rgba(103, 216, 144, .12);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(228, 216, 200, .78);
  background: rgba(255, 253, 249, .92);
  backdrop-filter: blur(18px);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.compact {
  box-shadow: 0 12px 35px rgba(34, 27, 20, .08);
  background: rgba(255, 253, 249, .97);
}
.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  transition: min-height .25s ease;
}
.site-header.compact .header-inner { min-height: 72px; }

.brand {
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 0;
}
.logo-frame {
  width: 140px;
  height: 94px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  transition: width .25s ease, height .25s ease;
}
.site-header.compact .logo-frame { width: 128px; height: 86px; }
.logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: none;
  background: transparent;
}
.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1.05;
}
.brand-copy small {
  margin-bottom: 7px;
  color: var(--gold-deep);
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.brand-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  letter-spacing: .025em;
}
.brand-copy em {
  margin-top: 6px;
  color: var(--muted);
  font-size: .72rem;
  font-style: normal;
  letter-spacing: .04em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: .88rem;
  font-weight: 750;
}
.main-nav a { position: relative; }
.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--gold-deep);
  transition: right .22s ease;
}
.main-nav a:not(.nav-cta):hover::after { right: 0; }
.nav-cta {
  padding: 12px 19px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(23, 21, 18, .16);
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  border-radius: 9px;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 790px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: #e9e2d8;
}
.hero-image {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=2200&q=92") center / cover no-repeat;
  transform: scale(1.025);
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(249, 246, 240, .98) 0%, rgba(249, 246, 240, .92) 43%, rgba(249, 246, 240, .52) 72%, rgba(249, 246, 240, .18) 100%),
    linear-gradient(0deg, rgba(23, 21, 18, .08), transparent 44%);
}
.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.16fr .72fr;
  gap: 58px;
  align-items: center;
  padding: 76px 0 64px;
}
.eyebrow {
  display: inline-block;
  margin-bottom: 17px;
  color: var(--gold-deep);
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .19em;
  text-transform: uppercase;
}
.eyebrow-light { color: #e5c58d; }
.hero h1,
.section-heading h2,
.signature-copy h2,
.package-copy h2,
.inquiry-head h2,
.faq-copy h2,
.final-cta h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -.035em;
}
.hero h1 {
  max-width: 830px;
  font-size: clamp(3.5rem, 6.3vw, 6.3rem);
  text-wrap: balance;
}
.hero h1 em {
  color: var(--copper-dark);
  font-style: normal;
}
.hero-lead {
  max-width: 720px;
  margin: 25px 0 0;
  color: #4f4941;
  font-size: 1.08rem;
}
.hero-actions,
.final-actions {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
}
.hero-actions { margin: 33px 0; }

.btn {
  min-height: 53px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 32px rgba(34, 27, 20, .13);
}
.btn-primary {
  background: linear-gradient(135deg, var(--copper), #9b743c);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(169, 80, 34, .24);
}
.btn-dark { background: var(--ink); color: var(--white); }
.btn-glass {
  border-color: rgba(23, 21, 18, .11);
  background: rgba(255, 253, 249, .76);
  backdrop-filter: blur(12px);
}
.btn-soft {
  border-color: var(--line);
  background: var(--paper);
}
.btn-outline {
  border-color: rgba(255, 255, 255, .35);
  color: var(--white);
}
.btn-block { width: 100%; }

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 11px;
  max-width: 780px;
}
.hero-trust article {
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, .92);
  border-radius: 17px;
  background: rgba(255, 253, 249, .78);
  box-shadow: 0 14px 35px rgba(34, 27, 20, .08);
  backdrop-filter: blur(12px);
}
.hero-trust strong,
.hero-trust span { display: block; }
.hero-trust strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
  font-weight: 600;
}
.hero-trust span {
  margin-top: 4px;
  color: var(--muted);
  font-size: .76rem;
  line-height: 1.45;
}

.hero-card {
  position: relative;
  overflow: hidden;
  padding: 31px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 28px;
  background: linear-gradient(150deg, rgba(23, 21, 18, .96), rgba(45, 40, 34, .94));
  color: var(--white);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(16px);
}
.hero-card::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -120px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 161, 91, .22), transparent 65%);
  pointer-events: none;
}
.hero-card > * { position: relative; z-index: 1; }
.hero-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: #d8cfc2;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.hero-card-head i {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: #6bda91;
}
.hero-card-head b { color: #e6c588; font-size: .68rem; }
.hero-card h2 {
  margin: 21px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.22rem;
  font-weight: 500;
  line-height: 1.08;
}
.hero-card p { margin: 0; color: #d8d0c6; }
.hero-card ul { list-style: none; padding: 0; margin: 22px 0; }
.hero-card li {
  position: relative;
  margin: 11px 0;
  padding-left: 25px;
  color: #f1ece5;
}
.hero-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #e4bd78;
  font-weight: 900;
}
.hero-assurance {
  display: flex;
  justify-content: center;
  gap: 7px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.hero-assurance span {
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  color: #d9d1c7;
  background: rgba(255, 255, 255, .04);
  font-size: .66rem;
}

.hero-services {
  position: relative;
  z-index: 3;
  border-top: 1px solid rgba(228, 216, 200, .85);
  background: rgba(255, 253, 249, .94);
  backdrop-filter: blur(12px);
}
.hero-services-grid { display: grid; grid-template-columns: repeat(7, 1fr); }
.hero-services-grid span {
  padding: 16px 8px;
  border-right: 1px solid var(--line);
  color: #4d463e;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .035em;
  text-align: center;
}
.hero-services-grid span:last-child { border-right: 0; }

.section { padding: 108px 0; }
.section-heading {
  max-width: 850px;
  margin-bottom: 46px;
}
.section-heading h2,
.signature-copy h2,
.package-copy h2,
.inquiry-head h2,
.faq-copy h2,
.final-cta h2 {
  font-size: clamp(2.7rem, 4.2vw, 4.45rem);
}
.section-heading p,
.signature-copy > p,
.package-copy p,
.inquiry-head > p,
.faq-copy p {
  color: var(--muted);
  font-size: 1.02rem;
}

.services-section {
  background:
    radial-gradient(circle at 90% 8%, rgba(198, 161, 91, .08), transparent 24%),
    linear-gradient(180deg, var(--paper), var(--ivory));
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 21px;
}
.service-card {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
  transition: transform .28s ease, box-shadow .28s ease;
}
.service-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-strong);
}
.service-card:last-child { grid-column: 2; }
.featured-image {
  position: relative;
  min-height: 225px;
  background-position: center;
  background-size: cover;
}
.featured-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(23, 21, 18, .28));
}
.image-sheen {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, .22) 45%, transparent 70%);
  opacity: 0;
  transform: translateX(-100%);
  transition: transform .7s ease, opacity .7s ease;
}
.service-card:hover .image-sheen { opacity: 1; transform: translateX(100%); }
.image-move { background-image: url("https://images.unsplash.com/photo-1600518464441-9154a4dea21b?auto=format&fit=crop&w=1600&q=92"); }
.image-clearout { background-image: url("https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?auto=format&fit=crop&w=2400&q=92"); background-position: center center; }
.image-renovation { background-image: url("https://images.unsplash.com/photo-1674485147314-17906eed126b?auto=format&fit=crop&fm=jpg&ixlib=rb-4.1.0&q=82&w=1800"); }
.image-construction { background-image: url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1600&q=92"); }
.image-garden { background-image: url("https://media-production.lp-cdn.com/cdn-cgi/image/format%3Dauto%2Cquality%3D88/https%3A//media-production.lp-cdn.com/media/mYHDjI4GsQSYpun9"); }
.image-cleaning { background-image: url("https://images.unsplash.com/photo-1527515637462-cff94eecc1ac?auto=format&fit=crop&w=1600&q=92"); }
.image-security { background-image: url("https://images.unsplash.com/photo-1578328819058-b69f3a3b0f6b?auto=format&fit=crop&fm=jpg&ixlib=rb-4.1.0&q=82&w=1800"); }

.featured-body {
  min-height: 215px;
  display: flex;
  flex-direction: column;
  padding: 24px 25px 26px;
}
.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service-top span {
  color: var(--gold-deep);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .13em;
}
.service-top i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #f4eadc;
  color: var(--copper-dark);
  font-size: 1.08rem;
  font-style: normal;
}
.service-card h3 {
  margin: 19px 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.18;
}
.service-card p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: .93rem;
}
.service-link {
  margin-top: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--copper-dark);
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}
.service-link b { display: inline-block; transition: transform .2s ease; }
.service-link:hover b { transform: translateX(4px); }

.signature-section { background: var(--paper); }
.signature-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 62px;
  align-items: center;
}
.signature-photo {
  min-height: 650px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(23,21,18,.08)),
    url("https://images.unsplash.com/photo-1600585154526-990dced4db0d?auto=format&fit=crop&w=1700&q=92") center / cover no-repeat;
  box-shadow: var(--shadow-strong);
}
.quality-list { display: grid; gap: 3px; margin-top: 29px; }
.quality-list article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 15px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.quality-list article > span {
  width: 41px;
  height: 41px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: linear-gradient(180deg, #f5ebdc, #ecdeca);
  color: var(--gold-deep);
  font-size: .78rem;
  font-weight: 900;
}
.quality-list h3 { margin: 0 0 4px; font-size: 1rem; }
.quality-list p { margin: 0; color: var(--muted); }

.location-section {
  background:
    radial-gradient(circle at 10% 90%, rgba(201, 104, 44, .06), transparent 24%),
    var(--ivory);
}
.location-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.location-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: var(--shadow);
  transition: transform .27s ease, box-shadow .27s ease;
}
.location-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-strong); }
.location-image {
  position: relative;
  min-height: 220px;
  background-position: center;
  background-size: cover;
}
.location-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.05), transparent 45%, rgba(23,21,18,.25));
}
.location-munich { background-image: url("https://images.unsplash.com/photo-1577653993857-3718d1f1f997?auto=format&fit=crop&w=1400&q=90"); }
.location-augsburg { background-image: url("https://images.unsplash.com/photo-1591690765263-adc20a0c5907?auto=format&fit=crop&w=1400&q=90"); }
.location-nuremberg { background-image: url("https://images.unsplash.com/photo-1596037559554-9da56fcdae24?auto=format&fit=crop&w=1400&q=90"); }
.location-stuttgart { background-image: url("https://images.unsplash.com/photo-1559565866-9871f78ccd78?auto=format&fit=crop&w=1400&q=90"); }
.city-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 999px;
  background: rgba(255,253,249,.88);
  color: #3d352d;
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}
.location-body { padding: 21px 22px 23px; }
.location-body h3 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}
.location-body p { margin: 0; color: var(--muted); font-size: .9rem; }
.location-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-top: 22px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--paper);
  box-shadow: var(--shadow);
}
.location-cta strong,
.location-cta span { display: block; }
.location-cta span { margin-top: 3px; color: var(--muted); }

.package-section {
  color: var(--white);
  background:
    radial-gradient(circle at 12% 20%, rgba(198, 161, 91, .14), transparent 28%),
    linear-gradient(135deg, #171512, #2a251f);
}
.package-layout {
  display: grid;
  grid-template-columns: 1.1fr .78fr;
  gap: 48px;
  align-items: center;
}
.package-copy p { color: #d6cec3; max-width: 700px; }
.package-pills {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin: 27px 0;
}
.package-pills span {
  padding: 9px 13px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  color: #eee7dd;
  font-size: .82rem;
}
.package-card {
  padding: 33px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 28px;
  background: linear-gradient(180deg, #fffdf9, #f2e8dc);
  color: var(--ink);
  box-shadow: var(--shadow-strong);
}
.package-card > small {
  color: var(--gold-deep);
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.package-card h3 {
  margin: 12px 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.08rem;
  font-weight: 500;
  line-height: 1.12;
}
.package-card > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
.package-card b { color: var(--copper-dark); font-size: .78rem; }

.inquiry-section {
  background:
    radial-gradient(circle at 85% 10%, rgba(198, 161, 91, .10), transparent 25%),
    linear-gradient(180deg, #f3ece2, var(--ivory));
}
.inquiry-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 42px;
  margin-bottom: 39px;
}
.inquiry-head > div { max-width: 800px; }
.inquiry-head > p { max-width: 420px; }
.inquiry-shell {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 29px;
  background: rgba(255,253,249,.97);
  box-shadow: var(--shadow-strong);
}
.wizard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 21px 24px;
  border-bottom: 1px solid var(--line);
  background: #f8f2e9;
}
.wizard-progress {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.wizard-step {
  padding: 9px 11px;
  border: 0;
  border-radius: 13px;
  background: #ece3d8;
  color: #81766a;
  font-size: .78rem;
  font-weight: 850;
  cursor: pointer;
}
.wizard-step span {
  width: 27px;
  height: 27px;
  display: inline-grid;
  place-items: center;
  margin-right: 6px;
  border-radius: 50%;
  background: var(--paper);
}
.wizard-step.active { background: var(--ink); color: var(--white); }
.wizard-step.active span { background: var(--gold); color: var(--ink); }
.wizard-support { font-size: .77rem; text-align: right; }
.wizard-support span,
.wizard-support a { display: block; }
.wizard-support a { color: var(--copper-dark); font-weight: 850; }
.form-trust {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 13px 18px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.form-trust span {
  padding: 6px 10px;
  border: 1px solid #e9dfd3;
  border-radius: 999px;
  background: #fbf7f1;
  color: #665b50;
  font-size: .7rem;
}

#leadForm { padding: 32px; }
.form-step { display: none; }
.form-step.active { display: block; animation: stepIn .3s ease; }
@keyframes stepIn {
  from { opacity: 0; transform: translateY(7px); }
  to { opacity: 1; transform: none; }
}
.step-heading small {
  display: block;
  color: var(--gold-deep);
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.step-heading h3 {
  margin: 7px 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.18rem;
  font-weight: 500;
  line-height: 1.08;
}
.step-heading p { margin: 0 0 26px; color: var(--muted); }

.customer-type-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 17px;
}
.choice-card {
  position: relative;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--paper);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.choice-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.choice-card input,
.service-choice-grid input { position: absolute; opacity: 0; pointer-events: none; }
.choice-card:has(input:checked),
.service-choice-grid label:has(input:checked) {
  border-color: var(--gold);
  background: #fcf6ec;
  box-shadow: 0 0 0 4px rgba(198, 161, 91, .12);
}
.choice-card:has(input:checked)::after {
  content: "✓";
  position: absolute;
  top: 16px;
  right: 16px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--copper);
  color: var(--white);
  font-weight: 900;
}
.choice-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 17px;
  border-radius: 15px;
  background: #f2e8da;
  color: var(--copper-dark);
  font-size: 1.25rem;
}
.choice-card strong,
.choice-card small { display: block; }
.choice-card small { margin-top: 5px; color: var(--muted); }

.business-fields {
  margin-top: 18px;
  padding: 21px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #f9f4ec;
}
.field-grid { display: grid; gap: 15px; }
.field-grid.two { grid-template-columns: repeat(2, 1fr); }
.span-two { grid-column: span 2; }
label, legend { color: #39332d; font-size: .81rem; font-weight: 800; }
input, select, textarea {
  width: 100%;
  margin-top: 7px;
  padding: 13px 14px;
  border: 1px solid #d9ccbd;
  border-radius: 13px;
  outline: none;
  background: var(--white);
  color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--gold-deep);
  box-shadow: 0 0 0 4px rgba(198, 161, 91, .13);
}
textarea { resize: vertical; }

.form-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 26px;
}
.form-actions.end { justify-content: flex-end; }

.service-choice-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 11px;
}
.service-choice-grid label {
  position: relative;
  min-height: 106px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.service-choice-grid label:has(input:checked)::after {
  content: "✓";
  position: absolute;
  top: 10px;
  right: 11px;
  color: var(--copper-dark);
  font-weight: 900;
}
.service-choice-grid span,
.service-choice-grid strong { display: block; }
.service-choice-grid span {
  margin-bottom: 10px;
  color: var(--gold-deep);
  font-size: .68rem;
  letter-spacing: .1em;
}
.service-choice-grid strong { font-size: .87rem; line-height: 1.35; }
.common-project-fields { margin: 22px 0; }

.dynamic-panel {
  display: none;
  margin: 20px 0;
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #f9f4ec;
}
.dynamic-panel.active { display: block; animation: stepIn .3s ease; }
.panel-heading { margin-bottom: 18px; }
.panel-heading span {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  font-weight: 600;
}
.panel-heading p { margin: 4px 0 0; color: var(--muted); }
.option-group { margin: 18px 0 0; padding: 0; border: 0; }
.option-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 9px;
}
.option-grid label {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px;
  border: 1px solid #e0d5c8;
  border-radius: 12px;
  background: var(--white);
  font-weight: 650;
}
.option-grid input { width: auto; margin: 0; }
.final-project-fields { margin-top: 21px; }
.field-note {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 500;
}
.summary-box {
  margin-bottom: 18px;
  padding: 21px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: #f8f4ee;
}
.summary-box dl {
  display: grid;
  grid-template-columns: 175px 1fr;
  gap: 10px 15px;
  margin: 0;
}
.summary-box dt { color: var(--muted); }
.summary-box dd { margin: 0; font-weight: 750; }
.consent-box {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 11px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
  font-weight: 600;
}
.consent-box input { width: auto; margin: 3px 0 0; }
.consent-box a { color: var(--copper-dark); text-decoration: underline; }
.consent-box.optional { background: transparent; }
.submit-status {
  margin-top: 15px;
  padding: 13px;
  border-radius: 14px;
  font-weight: 750;
}
.submit-status.error {
  display: block;
  border: 1px solid #ecc2bb;
  background: #fff0ee;
  color: #8e3029;
}
.submit-status.success {
  display: block;
  border: 1px solid #bfe1ca;
  background: #edf9f1;
  color: #276c42;
}
.submit-button { min-width: 280px; }
.submit-button:disabled { opacity: .65; cursor: wait; }
.security-note { color: var(--muted); font-size: .74rem; text-align: center; }
.honeypot { display: none; }

.faq-section { background: var(--paper); }
.faq-layout {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 55px;
  align-items: start;
}
.faq-copy {
  position: sticky;
  top: 110px;
}
.accordion { display: grid; gap: 11px; }
.accordion details {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--paper);
  box-shadow: 0 10px 30px rgba(34, 27, 20, .06);
}
.accordion summary {
  position: relative;
  padding-right: 28px;
  list-style: none;
  font-weight: 850;
  cursor: pointer;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after {
  content: "+";
  position: absolute;
  right: 0;
  color: var(--gold-deep);
  font-size: 1.2rem;
}
.accordion details[open] summary::after { content: "–"; }
.accordion p { margin: 11px 0 0; color: var(--muted); }

.final-cta {
  padding: 79px 0;
  background:
    radial-gradient(circle at 82% 40%, rgba(198,161,91,.14), transparent 25%),
    var(--ink);
  color: var(--white);
}
.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
}
.final-cta p { color: #d8d0c6; }

.site-footer {
  padding: 62px 0 23px;
  background: #0e0d0c;
  color: #cec6bc;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr .7fr;
  gap: 34px;
}
.footer-brand {
  display: block;
}
.site-footer h3 { margin: 0 0 12px; color: var(--white); font-size: .93rem; }
.site-footer p { max-width: 320px; margin: 0; }
.site-footer a,
.site-footer span { display: block; margin: 7px 0; }
.site-footer a:hover { color: #e4c083; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 36px;
  padding-top: 17px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .75rem;
}

.whatsapp-float {
  position: fixed;
  right: 17px;
  bottom: calc(17px + 1cm);
  z-index: 120;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  box-shadow: 0 16px 35px rgba(0,0,0,.24);
  font-size: .96rem;
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* Legal and utility pages */
.legal-page {
  min-height: calc(100vh - 96px);
  background:
    radial-gradient(circle at 80% 0, rgba(198,161,91,.09), transparent 25%),
    var(--ivory);
}
.legal-container {
  max-width: 880px;
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--paper);
  box-shadow: var(--shadow);
}
.legal-container h1 {
  margin: .4rem 0 1.4rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.1rem;
  font-weight: 500;
  line-height: 1.05;
}
.legal-container h2 { margin-top: 2rem; font-size: 1.05rem; }
.legal-container a { color: var(--copper-dark); text-decoration: underline; }
.legal-note {
  margin-top: 24px;
  padding: 15px 17px;
  border: 1px solid #e3cfb7;
  border-radius: 15px;
  background: #f8eee1;
  color: #66513c;
  font-size: .88rem;
}
.legal-header-inner { position: relative; }
.legal-back {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  font-size: .8rem;
  font-weight: 800;
}
.error-page { text-align: center; }
.error-page p { color: var(--muted); font-size: 1.02rem; }

@media (max-width: 1100px) {
  .hero-layout,
  .signature-layout,
  .package-layout,
  .faq-layout { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-layout { gap: 34px; }
  .hero-card { max-width: 720px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:last-child { grid-column: auto; }
  .location-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-copy { position: static; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .utility-bar { display: none; }
  .header-inner { min-height: 74px; }
  .brand-copy em { display: none; }
  .menu-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: 74px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 15px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--paper);
    box-shadow: var(--shadow-strong);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 10px 12px; border-radius: 10px; }
  .main-nav a:not(.nav-cta)::after { display: none; }
  .nav-cta { text-align: center; }
  .inquiry-head { display: block; }
  .inquiry-head > p { margin-top: 15px; }
  .wizard-support { display: none; }
  .service-choice-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .container { width: calc(100% - 28px); }
  .section { padding: 74px 0; }
  .header-inner { min-height: 66px; gap: 10px; }
  .site-header.compact .header-inner { min-height: 64px; }
  .logo-frame,
  .site-header.compact .logo-frame {
    width: 96px;
    height: 66px;
    padding: 0;
    border-radius: 0;
  }
  .brand { gap: 9px; }
  .brand-copy small { display: none; }
  .brand-copy strong { font-size: .82rem; white-space: nowrap; }
  .main-nav { top: 66px; right: 14px; left: 14px; }

  .hero-image { background-position: 64% center; }
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(249,246,240,.95), rgba(249,246,240,.88) 62%, rgba(249,246,240,.76)),
      linear-gradient(90deg, rgba(249,246,240,.93), rgba(249,246,240,.55));
  }
  .hero-layout { padding: 52px 0 38px; }
  .hero h1 { font-size: clamp(2.45rem, 12vw, 3.5rem); line-height: 1.05; }
  .hero-lead { font-size: .98rem; }
  .hero-actions,
  .final-actions { flex-direction: column; }
  .btn { width: 100%; }
  .hero-trust { grid-template-columns: 1fr; }
  .hero-card { padding: 24px 20px; border-radius: 22px; }
  .hero-card h2 { font-size: 1.85rem; }
  .hero-card-head b { display: none; }
  .hero-services-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-services-grid span { border-bottom: 1px solid var(--line); }

  .section-heading { margin-bottom: 34px; }
  .section-heading h2,
  .signature-copy h2,
  .package-copy h2,
  .inquiry-head h2,
  .faq-copy h2,
  .final-cta h2 {
    font-size: clamp(2.15rem, 9.5vw, 2.85rem);
    line-height: 1.07;
  }

  .service-grid,
  .location-grid,
  .footer-grid,
  .customer-type-grid,
  .field-grid.two,
  .option-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; border-radius: 21px; }
  .featured-image { min-height: 215px; }
  .featured-body { min-height: 0; padding: 22px 20px 23px; }
  .service-card:hover,
  .location-card:hover { transform: none; }

  .signature-layout,
  .package-layout,
  .faq-layout { gap: 31px; }
  .signature-photo { min-height: 370px; border-radius: 23px; }
  .quality-list article { grid-template-columns: 40px 1fr; gap: 12px; }

  .location-card { border-radius: 21px; }
  .location-image { min-height: 205px; }
  .location-cta { display: block; padding: 20px; }
  .location-cta .btn { margin-top: 15px; }

  .package-card { padding: 24px 21px; border-radius: 22px; }
  .package-card h3 { font-size: 1.8rem; }

  .inquiry-shell { border-radius: 22px; }
  .wizard-top { padding: 14px; }
  .wizard-progress { gap: 6px; }
  .wizard-step { min-height: 42px; padding: 7px; font-size: 0; }
  .wizard-step span {
    width: 27px;
    height: 27px;
    margin: 0 auto;
    font-size: .73rem;
  }
  .wizard-step b { display: none; }
  .form-trust { padding: 11px 12px; gap: 5px; }
  .form-trust span { padding: 5px 7px; font-size: .64rem; }
  #leadForm { padding: 21px 17px; }
  .step-heading h3 { font-size: 1.78rem; }
  .choice-card { padding: 20px; border-radius: 17px; }
  .span-two { grid-column: auto; }
  .service-choice-grid { grid-template-columns: 1fr; }
  .dynamic-panel { padding: 19px 15px; border-radius: 17px; }
  .form-actions { flex-direction: column-reverse; }
  .form-actions .btn { width: 100%; }
  .summary-box { padding: 17px; }
  .summary-box dl { grid-template-columns: 1fr; gap: 4px; }
  .summary-box dt { margin-top: 8px; }
  .submit-button { min-width: 0; }

  .final-cta { padding: 62px 0; }
  .final-cta-inner { display: block; }
  .final-actions { margin-top: 23px; }
  .site-footer { padding-bottom: 88px; }
  .footer-grid { gap: 26px; }
  .footer-bottom { display: block; }
  .whatsapp-float {
    right: 13px;
    bottom: calc(13px + 1cm);
    padding: 12px 18px;
    font-size: .92rem;
  }

  .legal-container { padding: 25px 20px; border-radius: 20px; }
  .legal-container h1 { font-size: 2.3rem; }
  .legal-header-inner .brand-copy { display: none; }
}

@media (max-width: 380px) {
  .container { width: calc(100% - 22px); }
  .brand-copy strong { font-size: .74rem; }
  .hero h1 { font-size: 2.22rem; }
  #leadForm { padding: 19px 13px; }
}

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

.thank-page { text-align: center; }
.centered-actions { justify-content: center; }


/* ===== Bereich 02 · Freigegebene Hero-Typografie ===== */
.hero.hero-minimal .hero-layout.hero-layout-centered {
  min-height: 790px;
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  padding: 0;
  text-align: center;
}
.hero.hero-minimal .hero-copy.hero-copy-minimal {
  max-width: 1080px;
  margin: 0 auto;
}
.hero.hero-minimal .hero-copy.hero-copy-minimal h1 {
  max-width: none;
  margin: 0;
  color: #fffdf9;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.68rem, 5.61vw, 5.78rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -.035em;
  text-shadow: 0 12px 36px rgba(0, 0, 0, .28);
}
.hero.hero-minimal .hero-subline-minimal {
  margin: 16px 0 0;
  color: #fffdf9;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(.96rem, 1.45vw, 1.12rem);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: .01em;
  text-shadow: 0 6px 22px rgba(0, 0, 0, .32);
}
@media (max-width: 840px) {
  .hero.hero-minimal .hero-layout.hero-layout-centered {
    min-height: 620px;
  }
  .hero.hero-minimal .hero-copy.hero-copy-minimal h1 {
    font-size: clamp(2rem, 8.5vw, 3.53rem);
    line-height: 1.04;
  }
  .hero.hero-minimal .hero-subline-minimal {
    max-width: 34rem;
    margin: 14px auto 0;
    padding: 0 12px;
    font-size: .94rem;
  }
}

/* ===== Bereich 02 · Bildfarben normalisiert ===== */
.hero.hero-minimal .hero-image {
  filter: none;
  opacity: 1;
}
.hero.hero-minimal .hero-overlay {
  background: linear-gradient(180deg, rgba(10, 10, 10, .16), rgba(10, 10, 10, .22));
}

/* ===== Bereich 03 · Leistungen final ===== */
.services-section {
  background: linear-gradient(180deg, #fffdf9 0%, #fbf7ef 100%);
}
.services-section .section-heading {
  max-width: 900px;
  margin-bottom: 44px;
}
.services-section .section-heading h2 {
  color: var(--ink);
}
.services-section .section-heading p {
  max-width: 760px;
  color: #5f5a52;
}
.services-section .service-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}
.services-section .service-card {
  min-height: 0;
  padding: 0;
  border: 1px solid rgba(183, 143, 67, .2);
  border-radius: 24px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 50px rgba(48, 39, 27, .08);
}
.services-section .service-card:last-child {
  grid-column: 1 / -1;
  width: calc(50% - 14px);
  justify-self: center;
}
.services-section .featured-image {
  min-height: 310px;
  border-radius: 24px 24px 0 0;
  background-position: center;
}
.services-section .featured-body {
  min-height: 0;
  padding: 30px;
  justify-content: flex-start;
}
.services-section .service-top span {
  color: #9b772e;
}
.services-section .service-top i {
  background: #f7f0e2;
  color: #9b772e;
}
.services-section .service-card h3 {
  margin-top: 25px;
  color: var(--ink);
}
.services-section .service-card p {
  min-height: 3.2em;
  margin-bottom: 22px;
  color: #665f55;
}
.services-section .service-link {
  width: fit-content;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  border: 1px solid #b58a3a;
  border-radius: 999px;
  color: #7b5a1f;
  background: #fffdf8;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.services-section .service-link:hover {
  color: #fff;
  background: #9d762f;
  transform: translateY(-1px);
}
.services-section .service-link b {
  font-size: 1rem;
  font-weight: 500;
  transition: transform .25s ease;
}
.services-section .service-link[aria-expanded="true"] b {
  transform: rotate(45deg);
}
.services-section .service-details {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(183, 143, 67, .22);
}
.services-section .service-details[hidden] {
  display: none;
}
.services-section .service-details ul {
  columns: 2;
  column-gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.services-section .service-details li {
  position: relative;
  break-inside: avoid;
  margin: 0 0 10px;
  padding-left: 17px;
  color: #4f4a43;
  font-size: .9rem;
  line-height: 1.45;
}
.services-section .service-details li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #b58a3a;
}
@media (max-width: 840px) {
  .services-section .service-grid {
    grid-template-columns: 1fr;
  }
  .services-section .service-card:last-child {
    grid-column: auto;
    width: 100%;
  }
  .services-section .featured-image {
    min-height: 260px;
  }
}
@media (max-width: 560px) {
  .services-section .featured-body {
    padding: 24px;
  }
  .services-section .service-details ul {
    columns: 1;
  }
  .services-section .service-card p {
    min-height: 0;
  }
}

/* ===== Bereich 02 · Text exakt im Hero zentriert ===== */
.hero.hero-minimal .hero-layout.hero-layout-centered {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: none;
  min-height: 0;
  margin: 0;
  padding-inline: 20px;
  display: grid;
  place-items: center;
}
.hero.hero-minimal .hero-copy.hero-copy-minimal {
  width: min(1080px, 100%);
  margin: 0;
  text-align: center;
  justify-self: center;
  align-self: center;
  transform: translateY(-19px);
}
.hero.hero-minimal .hero-copy.hero-copy-minimal h1,
.hero.hero-minimal .hero-copy.hero-copy-minimal .hero-subline-minimal {
  display: inline-block;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.18)) drop-shadow(0 10px 22px rgba(0, 0, 0, 0.12));
}
.hero.hero-minimal .hero-copy.hero-copy-minimal h1 {
  text-shadow:
    0 2px 6px rgba(0, 0, 0, 0.20),
    0 10px 28px rgba(0, 0, 0, 0.18),
    0 0 14px rgba(0, 0, 0, 0.10);
}
.hero.hero-minimal .hero-copy.hero-copy-minimal .hero-subline-minimal {
  text-shadow:
    0 2px 5px rgba(0, 0, 0, 0.18),
    0 8px 18px rgba(0, 0, 0, 0.16),
    0 0 10px rgba(0, 0, 0, 0.08);
}
@media (max-width: 840px) {
  .hero.hero-minimal .hero-layout.hero-layout-centered {
    min-height: 0;
    padding-inline: 13px;
  }
  .hero.hero-minimal .hero-copy.hero-copy-minimal {
    transform: translateY(-16px);
  }
}


/* ===== Leistungsdetailseiten ===== */
.service-detail-page {
  background: #fffdf9;
}
.service-detail-page .site-header {
  position: sticky;
  top: 0;
}
.service-detail-visual {
  position: relative;
  width: 100%;
  min-height: clamp(390px, 58vw, 720px);
  background-position: center;
  background-size: cover;
}
.service-detail-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16,15,13,.04), rgba(16,15,13,.2));
}
.service-detail-section {
  background: linear-gradient(180deg, #fffdf9 0%, #fbf7ef 100%);
}
.service-detail-container {
  max-width: 980px;
}
.service-detail-back {
  display: inline-flex;
  margin-bottom: 32px;
  color: #76571f;
  font-weight: 750;
}
.service-detail-number {
  display: block;
  margin-bottom: 12px;
  color: #9b772e;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .18em;
}
.service-detail-container h1 {
  max-width: 900px;
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -.04em;
}
.service-detail-intro {
  max-width: 820px;
  margin: 27px 0 0;
  color: #554f47;
  font-size: clamp(1.02rem, 1.7vw, 1.2rem);
  line-height: 1.75;
}
.service-detail-list-wrap {
  position: relative;
  margin-top: 62px;
  padding: clamp(32px, 5vw, 58px);
  border: 1px solid rgba(181, 138, 58, .28);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(252, 248, 239, .96));
  box-shadow:
    0 24px 70px rgba(48, 39, 27, .09),
    inset 0 1px 0 rgba(255, 255, 255, .9);
  overflow: hidden;
}
.service-detail-list-wrap::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, #b58a3a 18%, #d8bd82 50%, #b58a3a 82%, transparent);
}
.service-detail-list-wrap::after {
  content: "";
  position: absolute;
  top: -90px;
  right: -90px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 189, 130, .18), transparent 68%);
  pointer-events: none;
}
.service-detail-list-wrap h2 {
  position: relative;
  margin: 0 0 34px;
  padding-bottom: 18px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.95rem, 3vw, 2.7rem);
  font-weight: 500;
  letter-spacing: -.025em;
}
.service-detail-list-wrap h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 76px;
  height: 2px;
  background: linear-gradient(90deg, #9b772e, #d8bd82);
}
.service-detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.service-detail-list li {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 58px;
  margin: 0;
  padding: 15px 18px 15px 48px;
  border: 1px solid rgba(181, 138, 58, .18);
  border-radius: 15px;
  background: rgba(255, 255, 255, .82);
  color: #403b35;
  line-height: 1.45;
  box-shadow: 0 8px 22px rgba(48, 39, 27, .045);
  transition:
    transform .22s ease,
    border-color .22s ease,
    box-shadow .22s ease,
    background-color .22s ease;
}
.service-detail-list li::before {
  content: "✓";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border: 1px solid rgba(181, 138, 58, .42);
  border-radius: 50%;
  background: #fffaf0;
  color: #8f6b2b;
  font-size: .72rem;
  font-weight: 900;
}
.service-detail-list li:hover {
  transform: translateY(-2px);
  border-color: rgba(181, 138, 58, .42);
  background: #fffdf8;
  box-shadow: 0 14px 30px rgba(48, 39, 27, .08);
}
.service-detail-cta {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 50px;
  padding-top: 28px;
}
.service-detail-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(360px, 70%);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(181, 138, 58, .5), transparent);
}
.service-detail-cta .btn-primary {
  min-width: 250px;
  min-height: 56px;
  padding-inline: 30px;
  border: 1px solid #b58a3a;
  background: linear-gradient(180deg, #1d1b18, #11100e);
  color: #fff;
  box-shadow: 0 16px 34px rgba(23, 21, 18, .2);
}
.service-detail-cta .btn-primary:hover {
  border-color: #d8bd82;
  background: #8f6b2b;
  box-shadow: 0 18px 38px rgba(143, 107, 43, .24);
}
.services-section .service-detail-link {
  text-decoration: none;
}
@media (max-width: 760px) {
  .service-detail-visual { min-height: 420px; }
  .service-detail-list { grid-template-columns: 1fr; }
  .service-detail-section { padding-top: 72px; }
}


/* ===== Bereich 03 · Karten in zwei Reihen (4 + 3) ===== */
@media (min-width: 1181px) {
  .services-section .service-grid {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 22px;
  }
  .services-section .service-card {
    grid-column: span 2;
    width: 100%;
    justify-self: stretch;
  }
  .services-section .service-card:nth-child(5) {
    grid-column: 2 / span 2;
  }
  .services-section .service-card:nth-child(6) {
    grid-column: 4 / span 2;
  }
  .services-section .service-card:nth-child(7) {
    grid-column: 6 / span 2;
  }
  .services-section .service-card:last-child {
    width: 100%;
    justify-self: stretch;
  }
  .services-section .featured-image {
    min-height: 235px;
  }
  .services-section .featured-body {
    padding: 24px;
  }
  .services-section .service-card h3 {
    font-size: 1.08rem;
  }
  .services-section .service-card p {
    min-height: 4.8em;
    font-size: .92rem;
  }
}
@media (min-width: 841px) and (max-width: 1180px) {
  .services-section .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .services-section .service-card,
  .services-section .service-card:nth-child(5),
  .services-section .service-card:nth-child(6),
  .services-section .service-card:nth-child(7),
  .services-section .service-card:last-child {
    grid-column: auto;
    width: 100%;
    justify-self: stretch;
  }
}


/* ===== Bereich 04 · Vertrauen & Entlastung ===== */
.trust-section {
  background:
    radial-gradient(circle at 88% 16%, rgba(184, 147, 81, .08), transparent 28%),
    linear-gradient(180deg, #fffdf9 0%, #faf6ef 100%);
}
.trust-layout {
  grid-template-columns: .92fr 1.08fr;
  gap: 72px;
}
.trust-photo {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  border: 1px solid rgba(184, 147, 81, .22);
  box-shadow: 0 32px 80px rgba(40, 31, 20, .14);
}
.trust-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(21, 19, 16, .52));
  pointer-events: none;
}
.trust-photo-badge {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 18px;
  background: rgba(18, 17, 15, .74);
  color: #fff;
  backdrop-filter: blur(14px);
}
.trust-photo-badge strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.7rem;
  font-weight: 500;
  line-height: 1;
  color: #e2c28b;
}
.trust-photo-badge span {
  max-width: 180px;
  font-size: .84rem;
  font-weight: 750;
  line-height: 1.35;
}
.trust-copy h2 {
  max-width: 720px;
}
.trust-intro {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.03rem;
}
.trust-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}
.trust-benefits article {
  position: relative;
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(184, 147, 81, .2);
  border-radius: 22px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 16px 40px rgba(40, 31, 20, .07);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.trust-benefits article:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 147, 81, .46);
  box-shadow: 0 22px 52px rgba(40, 31, 20, .11);
}
.trust-number {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 12px;
  background: linear-gradient(180deg, #f5ebdc, #ecdeca);
  color: var(--gold-deep);
  font-size: .72rem;
  font-weight: 900;
}
.trust-benefits h3 {
  margin: 0 0 8px;
  font-size: 1.02rem;
}
.trust-benefits p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.6;
}
.trust-environment {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-top: 18px;
  padding: 16px 18px;
  border-left: 3px solid #b89351;
  border-radius: 0 14px 14px 0;
  background: rgba(255, 255, 255, .72);
}
.trust-environment span {
  color: var(--gold-deep);
  font-size: 1rem;
}
.trust-environment p {
  margin: 0;
  color: #5e574f;
  font-size: .88rem;
}
@media (max-width: 1080px) {
  .trust-layout { grid-template-columns: 1fr; }
  .trust-photo { min-height: 540px; }
}
@media (max-width: 700px) {
  .trust-benefits { grid-template-columns: 1fr; }
  .trust-photo { min-height: 420px; }
  .trust-photo-badge { left: 18px; right: 18px; bottom: 18px; }
  .trust-benefits article { min-height: auto; }
}

/* ===== Bereich 04 · Psychologisch optimiertes Premium-Layout ===== */
.trust-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,253,249,.97), rgba(249,245,238,.94)),
    radial-gradient(circle at 15% 18%, rgba(184,147,81,.10), transparent 30%);
}
.trust-section::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -170px;
  top: -170px;
  border: 1px solid rgba(184,147,81,.14);
  border-radius: 50%;
  pointer-events: none;
}
.trust-layout {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0;
  align-items: center;
}
.trust-photo {
  grid-column: 1 / 8;
  grid-row: 1;
  min-height: 720px;
  border-radius: 34px;
  border: 1px solid rgba(184,147,81,.24);
  box-shadow: 0 34px 90px rgba(33,26,18,.16);
}
.trust-copy {
  position: relative;
  z-index: 3;
  grid-column: 6 / 13;
  grid-row: 1;
  margin: 54px 0;
  padding: clamp(36px, 4vw, 58px);
  border: 1px solid rgba(184,147,81,.22);
  border-radius: 30px;
  background: rgba(255,253,249,.96);
  box-shadow: 0 30px 80px rgba(38,30,20,.13);
  backdrop-filter: blur(18px);
}
.trust-copy::before {
  content: "";
  position: absolute;
  top: 0;
  left: 46px;
  width: 96px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #b89351, #dcc79f);
}
.trust-copy .eyebrow {
  margin-bottom: 14px;
}
.trust-copy h2 {
  max-width: 670px;
  font-size: clamp(2.55rem, 4vw, 4.45rem);
}
.trust-intro {
  max-width: 650px;
  margin-top: 20px;
  font-size: 1rem;
  line-height: 1.75;
}
.trust-benefits {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}
.trust-benefits article {
  min-height: 178px;
  padding: 23px 22px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(250,247,241,.96));
  box-shadow: 0 12px 30px rgba(42,33,23,.065);
}
.trust-benefits article:nth-child(2) {
  color: #fff;
  border-color: rgba(184,147,81,.45);
  background: linear-gradient(145deg, #1b1916, #2b2721);
  box-shadow: 0 18px 42px rgba(20,18,15,.18);
}
.trust-benefits article:nth-child(2) .trust-number {
  background: rgba(221,194,146,.14);
  color: #e3c691;
  border: 1px solid rgba(221,194,146,.24);
}
.trust-benefits article:nth-child(2) p {
  color: rgba(255,255,255,.72);
}
.trust-benefits article:nth-child(2) h3 {
  color: #fff;
}
.trust-number {
  margin-bottom: 15px;
  border: 1px solid rgba(184,147,81,.18);
  background: #f4eadb;
}
.trust-benefits h3 {
  font-size: 1rem;
  line-height: 1.35;
}
.trust-benefits p {
  font-size: .86rem;
  line-height: 1.58;
}
.trust-photo-badge {
  left: 30px;
  right: auto;
  bottom: 30px;
  max-width: 285px;
  padding: 19px 22px;
  border-color: rgba(255,255,255,.28);
  background: rgba(20,18,15,.82);
  box-shadow: 0 18px 42px rgba(0,0,0,.20);
}
.trust-photo-badge strong {
  font-size: 3rem;
}
.trust-environment {
  margin-top: 16px;
  padding: 15px 17px;
  border: 1px solid rgba(184,147,81,.18);
  border-left: 3px solid #b89351;
  border-radius: 14px;
  background: #faf6ef;
}
@media (max-width: 1180px) {
  .trust-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .trust-photo,
  .trust-copy {
    grid-column: 1;
    grid-row: auto;
  }
  .trust-photo {
    min-height: 560px;
  }
  .trust-copy {
    margin: -110px 34px 0;
  }
}
@media (max-width: 760px) {
  .trust-photo {
    min-height: 430px;
    border-radius: 24px;
  }
  .trust-copy {
    margin: -58px 12px 0;
    padding: 30px 22px;
    border-radius: 24px;
  }
  .trust-copy::before {
    left: 24px;
    width: 72px;
  }
  .trust-benefits {
    grid-template-columns: 1fr;
  }
  .trust-benefits article {
    min-height: auto;
  }
  .trust-photo-badge {
    left: 18px;
    right: 18px;
    bottom: 18px;
    max-width: none;
  }
}


/* ===== Bereich 04 · Finaler Vertrauensbereich V2 ===== */
.trust-section-v2 {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(184,147,81,.09), transparent 28%),
    linear-gradient(180deg, #fffdf9 0%, #f8f3eb 100%);
}
.trust-section-v2::before,
.trust-section-v2::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(184,147,81,.13);
  border-radius: 50%;
  pointer-events: none;
}
.trust-section-v2::before {
  width: 460px;
  height: 460px;
  top: -280px;
  right: -150px;
}
.trust-section-v2::after {
  width: 260px;
  height: 260px;
  left: -150px;
  bottom: -150px;
}
.trust-v2-shell {
  position: relative;
  z-index: 1;
}
.trust-v2-head {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .75fr);
  gap: 56px;
  align-items: end;
  margin-bottom: 42px;
}
.trust-v2-head h2 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 4.5vw, 5rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -.04em;
}
.trust-v2-head > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}
.trust-v2-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.trust-v2-card {
  position: relative;
  min-height: 330px;
  padding: 28px;
  border: 1px solid rgba(184,147,81,.19);
  border-radius: 24px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 18px 46px rgba(46,36,24,.08);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.trust-v2-card:hover {
  transform: translateY(-5px);
  border-color: rgba(184,147,81,.38);
  box-shadow: 0 28px 62px rgba(46,36,24,.13);
}
.trust-v2-index {
  position: absolute;
  top: 20px;
  right: 22px;
  color: #9d8766;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .14em;
}
.trust-v2-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 48px;
  border: 1px solid rgba(184,147,81,.2);
  border-radius: 16px;
  background: linear-gradient(180deg, #f7efe2, #efe1cc);
  color: var(--gold-deep);
  font-size: 1.15rem;
  font-weight: 900;
}
.trust-v2-card h3 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.34rem;
  line-height: 1.2;
}
.trust-v2-card p {
  margin: 0;
  color: var(--muted);
  font-size: .91rem;
  line-height: 1.65;
}
.trust-v2-card-featured {
  color: #fff;
  border-color: rgba(212,179,117,.46);
  background:
    radial-gradient(circle at 85% 12%, rgba(215,184,126,.18), transparent 26%),
    linear-gradient(145deg, #171512 0%, #2b2721 100%);
  box-shadow: 0 28px 70px rgba(23,21,18,.2);
}
.trust-v2-card-featured .trust-v2-index {
  color: #d8bc88;
}
.trust-v2-card-featured h3 {
  color: #fff;
}
.trust-v2-card-featured p {
  color: rgba(255,255,255,.72);
}
.trust-v2-stat {
  display: block;
  margin: 18px 0 34px;
  color: #dfc28e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 6vw, 6rem);
  font-weight: 500;
  line-height: .8;
  letter-spacing: -.055em;
}
.trust-v2-bottom {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 26px;
}
.trust-v2-bottom-environment {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.trust-v2-environment-hero {
  position: relative;
  padding: 34px 38px 36px;
  border: 1px solid rgba(184,147,81,.22);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 0%, rgba(184,147,81,.14), transparent 44%),
    linear-gradient(180deg, rgba(255,253,249,.98), rgba(251,246,237,.96));
  box-shadow: 0 18px 38px rgba(46,36,24,.08);
  overflow: hidden;
}
.trust-v2-environment-hero::after {
  content: "";
  position: absolute;
  inset: auto -60px -70px auto;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(184,147,81,.11), rgba(184,147,81,0) 68%);
  pointer-events: none;
}
.trust-v2-environment-title {
  position: relative;
  z-index: 1;
  margin: 0 0 28px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.25vw, 2.2rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -.025em;
  text-align: center;
}
.trust-v2-environment-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(160px, 210px) minmax(0, 1fr);
  align-items: center;
  gap: 30px;
}
.trust-v2-environment-visual {
  min-height: 176px;
  display: grid;
  place-items: center;
}
.trust-v2-environment-emblem {
  position: relative;
  width: 158px;
  height: 158px;
  display: grid;
  place-items: center;
  color: var(--gold-deep);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,251,243,.98), rgba(248,239,220,.94));
  border: 1px solid rgba(184,147,81,.30);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.82),
    0 18px 36px rgba(72,57,35,.11);
}
.trust-v2-environment-emblem::before {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: inherit;
  border: 1px solid rgba(184,147,81,.12);
}
.trust-v2-environment-emblem svg {
  width: 86px;
  height: 86px;
  display: block;
}
.trust-v2-environment-copy-large {
  display: block;
}
.trust-v2-environment-copy-large p {
  max-width: 800px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.9;
}

@media (max-width: 1100px) {
  .trust-v2-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .trust-v2-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 680px) {
  .trust-v2-grid,
  .trust-v2-bottom {
    grid-template-columns: 1fr;
  }
  .trust-v2-card {
    min-height: auto;
  }
  .trust-v2-transition {
    grid-column: auto;
  }
}

/* Bereich 05 · regionale Präsenz */
.location-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 9% 88%, rgba(201, 104, 44, .055), transparent 25%),
    radial-gradient(circle at 92% 10%, rgba(198, 161, 91, .10), transparent 24%),
    linear-gradient(180deg, #f8f3eb 0%, var(--ivory) 100%);
}
.location-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1180px, calc(100% - 40px));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(173, 132, 70, .42), transparent);
  transform: translateX(-50%);
}
.location-heading {
  position: relative;
  max-width: 980px;
  margin-bottom: 48px;
  padding-left: 0;
}
.location-heading-accent {
  color: var(--gold-deep);
}
.location-heading h2 { max-width: 900px; }
.location-heading p { max-width: 860px; }
.location-grid { gap: 20px; }
.location-card {
  min-width: 0;
  border-color: rgba(181, 157, 125, .34);
  box-shadow: 0 15px 42px rgba(50, 42, 34, .09);
}
.location-card:hover {
  transform: translateY(-6px);
  border-color: rgba(183, 145, 83, .52);
  box-shadow: 0 24px 54px rgba(50, 42, 34, .14);
}
.location-image { min-height: 230px; }
.location-body {
  min-height: 158px;
  padding: 23px 22px 25px;
}
.location-body h3 {
  margin-bottom: 9px;
  font-size: 1.25rem;
  line-height: 1.18;
}
.location-body p { line-height: 1.62; }

@media (max-width: 640px) {
  .location-image { min-height: 218px; }
  .location-body { min-height: 0; }
}


/* Bereich 04: reduced card chrome, approved March 2026 */
.trust-section-v2 .trust-v2-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.trust-section-v2 .trust-v2-card-featured {
  justify-content: flex-start;
}
.trust-section-v2 .trust-v2-card-featured .trust-v2-stat {
  margin-top: 8px;
}

/* Contact form redesign — scoped to #anfrage */
#anfrage .inquiry-head { align-items: start; }
#anfrage .inquiry-head h2 { max-width: 860px; }
#anfrage .wizard-progress { gap: 10px; }
#anfrage .wizard-step {
  position: relative;
  min-height: 44px;
  border: 1px solid transparent;
  background: transparent;
  color: #8b8177;
  text-align: center;
}
#anfrage .wizard-step::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: #ddd2c5;
}
#anfrage .wizard-step.active { background: transparent; color: var(--ink); }
#anfrage .wizard-step.active::after { background: var(--gold-deep); }
#anfrage .wizard-step b { font-size: .8rem; letter-spacing: .02em; }
#anfrage .form-trust { border-bottom: 0; padding-bottom: 8px; }
#anfrage .form-trust span::before { content: "✓"; margin-right: 6px; color: var(--gold-deep); }
#anfrage .form-reassurance {
  margin: 0;
  padding: 0 24px 18px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  color: var(--muted);
  font-size: .8rem;
  text-align: center;
}
#anfrage #leadForm { padding: 36px; }
#anfrage .step-heading { max-width: 760px; }
#anfrage .step-heading small { color: var(--gold-deep); }
#anfrage .choice-card { min-height: 150px; display: flex; flex-direction: column; justify-content: center; }
#anfrage .choice-card strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.45rem; font-weight: 600; }
#anfrage .choice-card small { max-width: 360px; font-size: .8rem; line-height: 1.55; }
#anfrage .customer-fields,
#anfrage .business-fields {
  margin-top: 20px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #faf6f0;
}
#anfrage .industry-panel {
  margin-top: 18px;
  padding: 19px;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,.5);
  border-radius: 15px;
}
#anfrage .industry-panel h4,
#anfrage .review-card h4 {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  font-weight: 600;
}
#anfrage .optional-label { color: var(--muted); font-size: .7rem; font-weight: 600; }
#anfrage .service-choice-grid { grid-template-columns: repeat(4, 1fr); }
#anfrage .service-choice-grid label { min-height: 112px; display: flex; align-items: flex-end; }
#anfrage .service-choice-grid strong { max-width: 180px; font-size: .9rem; }
#anfrage .service-choice-grid label:has(input:checked) { border-color: var(--gold); background: #fcf6ec; box-shadow: 0 0 0 4px rgba(198,161,91,.12); }
#anfrage .service-choice-grid label:has(input:checked)::after {
  content: "✓";
  position: absolute;
  top: 12px;
  right: 13px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--copper);
  color: white;
  font-size: .75rem;
}
#anfrage .selection-error,
#anfrage .contact-hint {
  margin: 12px 0 0;
  color: #8e3029;
  font-size: .78rem;
  font-weight: 750;
}
#anfrage .contact-hint.valid { color: #276c42; }
#anfrage .dynamic-panel { display: none; }
#anfrage .dynamic-panel.active { display: block; }
#anfrage .consultation-panel { min-height: 0; }
#anfrage .legal-note {
  margin: 18px 0 0;
  padding: 13px 15px;
  border-left: 3px solid var(--gold-deep);
  background: #fffaf2;
  color: #5f554c;
  font-size: .77rem;
  line-height: 1.55;
}
#anfrage .option-grid label:has(input:checked) { border-color: var(--gold); background: #fcf6ec; }
#anfrage .review-card {
  margin-top: 24px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #f8f4ee;
}
#anfrage .review-card > div:first-child p { margin: 0 0 16px; color: var(--muted); }
#anfrage .summary-box { margin: 0; padding: 0; border: 0; background: transparent; }
#anfrage .summary-box dl { grid-template-columns: minmax(150px, 200px) 1fr; }
#anfrage .summary-box dt { font-weight: 700; }
#anfrage input[type="file"] { padding: 11px; background: #fff; }
#anfrage input:invalid:focus,
#anfrage select:invalid:focus,
#anfrage textarea:invalid:focus { border-color: #b35a4d; box-shadow: 0 0 0 4px rgba(179,90,77,.12); }

@media (max-width: 980px) {
  #anfrage .service-choice-grid { grid-template-columns: repeat(2, 1fr); }
  #anfrage .wizard-support { display: none; }
}
@media (max-width: 680px) {
  #anfrage #leadForm { padding: 24px 18px; }
  #anfrage .wizard-top { padding: 14px 12px; }
  #anfrage .wizard-progress { gap: 2px; }
  #anfrage .wizard-step { padding: 8px 3px; min-height: 40px; }
  #anfrage .wizard-step b { font-size: .66rem; }
  #anfrage .form-trust { padding: 10px 10px 6px; }
  #anfrage .form-reassurance { padding: 0 14px 14px; }
  #anfrage .customer-type-grid,
  #anfrage .field-grid.two,
  #anfrage .service-choice-grid,
  #anfrage .option-grid { grid-template-columns: 1fr; }
  #anfrage .span-two { grid-column: auto; }
  #anfrage .choice-card { min-height: 125px; }
  #anfrage .customer-fields,
  #anfrage .business-fields { padding: 18px; }
  #anfrage .summary-box dl { grid-template-columns: 1fr; gap: 3px; }
  #anfrage .summary-box dd { margin: 0 0 10px; }
}

/* ===== Über uns Seite ===== */
.about-page { background: #fffdf9; }
.about-page .main-nav a[aria-current="page"] { color: var(--gold-deep); }
.about-page .main-nav a[aria-current="page"]::after { right: 0; }

.about-hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #171512;
}
.about-hero-image {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?auto=format&fit=crop&w=2200&q=90") center 55% / cover no-repeat;
  transform: scale(1.02);
}
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 13, 11, .84) 0%, rgba(15, 13, 11, .68) 44%, rgba(15, 13, 11, .25) 76%, rgba(15, 13, 11, .12) 100%),
    linear-gradient(0deg, rgba(15, 13, 11, .46), transparent 54%);
}
.about-hero-inner { position: relative; z-index: 2; padding: 120px 0 82px; }
.about-hero-copy { max-width: 900px; color: #fffdf9; }
.about-hero-copy h1 {
  margin: 0;
  max-width: 980px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 500;
  line-height: 1.01;
  letter-spacing: -.045em;
}
.about-hero-copy > p { max-width: 760px; margin: 28px 0 0; color: #eee5da; font-size: 1.08rem; }
.about-hero-trust { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.about-hero-trust span { padding: 10px 14px; border: 1px solid rgba(255,255,255,.25); border-radius: 999px; background: rgba(255,255,255,.08); backdrop-filter: blur(10px); color: #fff8ed; font-size: .82rem; font-weight: 750; }

.about-split { display: grid; grid-template-columns: .86fr 1.14fr; gap: 90px; align-items: start; }
.about-copy h2, .about-story-content h2, .about-network-copy h2, .about-audience-card h2, .about-quality-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.035em;
}
.about-copy h2 { font-size: clamp(2.3rem, 4vw, 4.7rem); }
.about-copy-body { padding-top: 46px; }
.about-copy-body p { margin: 0 0 22px; color: var(--ink-soft); font-size: 1.04rem; }

.about-story-section { background: linear-gradient(180deg, #f8f4ed, #fffdf9); }
.about-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-story-visual { min-height: 580px; border-radius: 34px; background: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.12)), url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=1400&q=88") center / cover no-repeat; box-shadow: var(--shadow-strong); }
.about-story-content h2 { font-size: clamp(2.5rem, 4.5vw, 5rem); }
.about-story-content p { color: var(--muted); font-size: 1.02rem; }
.about-story-content blockquote { margin: 32px 0 0; padding: 26px 28px; border-left: 3px solid var(--gold-deep); background: #fffaf3; font-family: Georgia, "Times New Roman", serif; font-size: 1.4rem; line-height: 1.35; }

.about-values-section { background: #fffdf9; }
.about-values-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.about-value-card { min-height: 230px; padding: 30px 26px; border: 1px solid var(--line); border-radius: 24px; background: #fff; box-shadow: 0 18px 42px rgba(34,27,20,.06); }
.about-value-card h3 { margin: 0 0 18px; font-family: Georgia, "Times New Roman", serif; font-size: 1.55rem; font-weight: 500; }
.about-value-card p { margin: 0; color: var(--muted); }

.about-network-section { background: var(--ink); color: #fffdf9; }
.about-network-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 82px; align-items: center; }
.about-network-number { display: grid; place-items: center; min-height: 440px; padding: 50px; border: 1px solid rgba(255,255,255,.14); border-radius: 36px; background: radial-gradient(circle at 50% 25%, rgba(198,161,91,.20), transparent 45%), rgba(255,255,255,.035); text-align: center; }
.about-network-number strong { color: #d2ad67; font-family: Georgia, "Times New Roman", serif; font-size: clamp(7rem, 15vw, 13rem); font-weight: 500; line-height: .8; }
.about-network-number span { max-width: 330px; margin-top: 30px; color: #eee3d3; font-size: 1.12rem; font-weight: 750; }
.about-network-copy h2 { font-size: clamp(2.5rem, 4.6vw, 5.2rem); }
.about-network-copy p { color: #d8d0c6; }
.about-network-note { margin-top: 28px; padding: 22px 24px; border: 1px solid rgba(255,255,255,.13); border-radius: 18px; background: rgba(255,255,255,.04); }

.about-audience-section { background: linear-gradient(180deg, #fffdf9, #f6efe6); }
.about-audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.about-audience-card { min-height: 560px; padding: 58px; border: 1px solid var(--line); border-radius: 32px; background: #fff; }
.about-audience-card h2 { font-size: clamp(2.2rem, 3.8vw, 4.2rem); }
.about-audience-card p, .about-audience-card li { color: var(--muted); }
.about-audience-card ul { display: grid; gap: 11px; margin: 30px 0 0; padding-left: 20px; }
.about-audience-card-dark { border-color: #2e2a25; background: var(--ink); color: #fffdf9; }
.about-audience-card-dark p, .about-audience-card-dark li { color: #d8d0c6; }

.about-services-section { background: #fffdf9; }
.about-service-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.about-service-links a { position: relative; padding: 23px 54px 23px 24px; border: 1px solid var(--line); border-radius: 18px; background: #fff; font-weight: 780; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.about-service-links a::after { content: "→"; position: absolute; right: 22px; color: var(--gold-deep); }
.about-service-links a:hover { transform: translateY(-3px); border-color: #cdb48d; box-shadow: 0 16px 36px rgba(34,27,20,.07); }

.about-process-section { background: #f8f4ed; }
.about-process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.about-process-card { min-height: 240px; padding: 32px 28px; border-top: 2px solid var(--gold-deep); background: #fff; box-shadow: 0 18px 45px rgba(34,27,20,.06); }
.about-process-card h3 { margin: 0 0 17px; font-family: Georgia, "Times New Roman", serif; font-size: 1.65rem; font-weight: 500; }
.about-process-card p { margin: 0; color: var(--muted); }

.about-quality-section { background: var(--ink); }
.about-quality-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 58px; align-items: stretch; }
.about-quality-copy { padding: 42px 0; color: #fffdf9; }
.about-quality-copy h2 { font-size: clamp(2.6rem, 4.7vw, 5.2rem); }
.about-quality-copy p { max-width: 720px; color: #d8d0c6; }
.about-regions-card { padding: 46px; border-radius: 30px; background: #fffdf9; }
.about-regions-card h3 { margin: 0 0 20px; font-family: Georgia, "Times New Roman", serif; font-size: 2.3rem; font-weight: 500; line-height: 1.12; }
.about-regions-card p { color: var(--muted); }
.about-regions-card a { display: inline-flex; gap: 10px; margin-top: 22px; color: var(--gold-deep); font-weight: 800; }

.about-final-cta .final-cta-inner { align-items: center; }

@media (max-width: 1050px) {
  .about-values-grid { grid-template-columns: repeat(3, 1fr); }
  .about-process-grid { grid-template-columns: repeat(2, 1fr); }
  .about-network-grid { grid-template-columns: 1fr; }
  .about-network-number { min-height: 330px; }
}
@media (max-width: 840px) {
  .about-hero { min-height: 650px; }
  .about-hero-inner { padding: 100px 0 58px; }
  .about-hero-copy h1 { font-size: clamp(2.55rem, 10vw, 4.5rem); }
  .about-split, .about-story-grid, .about-audience-grid, .about-quality-grid { grid-template-columns: 1fr; gap: 38px; }
  .about-copy-body { padding-top: 0; }
  .about-story-visual { min-height: 420px; }
  .about-audience-card { min-height: auto; padding: 38px 30px; }
  .about-service-links { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .about-hero { min-height: 600px; }
  .about-hero-copy > p { font-size: .98rem; }
  .about-hero-trust { display: grid; grid-template-columns: 1fr; max-width: 310px; }
  .about-values-grid, .about-process-grid { grid-template-columns: 1fr; }
  .about-value-card, .about-process-card { min-height: auto; }
  .about-network-number { min-height: 280px; padding: 34px 22px; }
  .about-network-number strong { font-size: 7.8rem; }
  .about-regions-card { padding: 34px 26px; }
}


/* ===== Rechtliche Seiten und Datenschutzhinweis ===== */
.legal-hero{padding:150px 0 72px;background:linear-gradient(180deg,#fbf7ef,#fffdf9);border-bottom:1px solid var(--line)}
.legal-hero h1{max-width:900px;margin:12px 0 12px;font-family:Georgia,"Times New Roman",serif;font-size:clamp(2.6rem,6vw,5.2rem);font-weight:500;line-height:1.02;color:var(--ink)}
.legal-hero p{margin:0;color:var(--muted)}
.legal-section{background:#fffdf9}
.legal-content{max-width:920px}
.legal-content h2{margin:42px 0 12px;font-family:Georgia,"Times New Roman",serif;font-size:clamp(1.45rem,3vw,2.1rem);font-weight:500;color:var(--ink)}
.legal-content p,.legal-content li{color:#514b45;line-height:1.78}
.legal-content a{color:var(--gold-deep);text-decoration:underline;text-underline-offset:3px}
.legal-note{padding:22px 24px;border:1px solid rgba(155,116,60,.28);border-radius:18px;background:#fbf7ef;margin-bottom:34px}
.legal-note-warning{border-color:rgba(144,91,38,.36);background:#fff8ed}
.legal-note strong{display:block;margin-bottom:7px;color:var(--ink)}
.legal-note p{margin:0}
.footer-link-button{display:block;padding:0;border:0;background:none;color:inherit;font:inherit;text-align:left;cursor:pointer}
.footer-link-button:hover{text-decoration:underline}
.cookie-banner{position:fixed;z-index:9999;left:18px;right:18px;bottom:18px}
.cookie-banner-inner{width:min(1100px,100%);margin:0 auto;display:flex;align-items:center;justify-content:space-between;gap:24px;padding:22px 24px;border:1px solid rgba(155,116,60,.28);border-radius:20px;background:rgba(255,253,249,.98);box-shadow:0 22px 70px rgba(28,22,17,.18);backdrop-filter:blur(14px)}
.cookie-banner strong{display:block;margin-bottom:5px;color:var(--ink)}
.cookie-banner p{max-width:700px;margin:0;color:#5d554d;line-height:1.55}
.cookie-banner-actions{display:flex;align-items:center;gap:10px;flex:0 0 auto}
.datenschutz-kurzhinweis{flex-basis:100%;margin:12px 0 0;font-size:.82rem;color:var(--muted)}
.datenschutz-kurzhinweis a{color:var(--gold-deep);text-decoration:underline}
@media(max-width:760px){.legal-hero{padding:115px 0 54px}.cookie-banner{left:10px;right:10px;bottom:10px}.cookie-banner-inner{align-items:stretch;flex-direction:column;padding:18px}.cookie-banner-actions{display:grid;grid-template-columns:1fr}.cookie-banner-actions .btn{width:100%;text-align:center}}

/* ===== Finale responsive Optimierung: Desktop ab 1181px unverändert ===== */
@media (min-width: 841px) and (max-width: 1180px) {
  .container { width: min(100% - 44px, 1120px); }
  .section { padding-top: 88px; padding-bottom: 88px; }
  .header-inner { gap: 18px; }
  .main-nav { gap: 18px; }
  .main-nav a { font-size: .9rem; }
  .logo-frame,
  .site-header.compact .logo-frame { width: 112px; height: 76px; }

  .hero.hero-minimal { min-height: 700px; }
  .hero.hero-minimal .hero-copy.hero-copy-minimal { width: min(900px, 92%); }
  .hero.hero-minimal .hero-copy.hero-copy-minimal h1 { font-size: clamp(3.4rem, 7vw, 5rem); }

  .services-section .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .services-section .service-card,
  .services-section .service-card:nth-child(n),
  .services-section .service-card:last-child { grid-column: auto; min-width: 0; }

  .trust-v2-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-v2-card { min-width: 0; }

  .location-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .location-card { min-width: 0; }

  #anfrage .request-shell,
  #anfrage .form-shell { width: 100%; }
  #anfrage .choice-grid,
  #anfrage .service-choice-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  #anfrage input,
  #anfrage select,
  #anfrage textarea { min-width: 0; }

  .faq-layout { grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr); gap: 46px; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px; }

  .about-split,
  .about-story-grid,
  .about-audience-grid,
  .about-quality-grid { gap: 44px; }
  .about-values-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .about-process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-audience-card { padding: 40px; }
  .about-network-grid { grid-template-columns: .85fr 1.15fr; gap: 44px; }

  .service-detail-layout,
  .detail-hero-grid,
  .detail-split { gap: 42px; }
}

@media (max-width: 840px) {
  html, body { max-width: 100%; overflow-x: clip; }
  img, svg, video, canvas { max-width: 100%; height: auto; }
  .container { width: calc(100% - 32px); }
  .section { padding-top: 72px; padding-bottom: 72px; }

  .site-header,
  .site-header.compact { min-height: 0; }
  .header-inner,
  .site-header.compact .header-inner { min-height: 68px; }
  .logo-frame,
  .site-header.compact .logo-frame { width: 94px; height: 64px; }
  .menu-toggle { min-width: 46px; min-height: 46px; }
  .main-nav {
    max-height: calc(100dvh - 82px);
    overflow-y: auto;
    overscroll-behavior: contain;
    box-shadow: 0 20px 48px rgba(34, 27, 20, .16);
  }
  .main-nav a { min-height: 44px; display: flex; align-items: center; }

  .hero.hero-minimal { min-height: 610px; }
  .hero.hero-minimal .hero-layout.hero-layout-centered { padding-inline: 18px; }
  .hero.hero-minimal .hero-copy.hero-copy-minimal { width: min(100%, 700px); }
  .hero.hero-minimal .hero-copy.hero-copy-minimal h1 {
    overflow-wrap: anywhere;
    text-wrap: balance;
  }
  .hero.hero-minimal .hero-subline-minimal { text-wrap: balance; }

  .section-heading { max-width: 100%; }
  .section-heading h2,
  .trust-v2-head h2,
  .location-section h2,
  .faq-copy h2 { text-wrap: balance; overflow-wrap: anywhere; }

  .services-section .services-grid,
  .trust-v2-grid,
  .location-grid,
  .about-values-grid,
  .about-process-grid,
  .about-service-links { grid-template-columns: 1fr; }
  .services-section .service-card,
  .services-section .service-card:nth-child(n),
  .services-section .service-card:last-child { grid-column: auto; width: 100%; }
  .service-card-body,
  .location-body,
  .trust-v2-card { min-width: 0; }

  .trust-v2-bottom { align-items: flex-start; }
  .trust-v2-transition { width: 100%; }

  .location-image { min-height: 220px; }
  .location-cta { align-items: flex-start; }

  #anfrage .form-progress { overflow-x: auto; scrollbar-width: none; justify-content: flex-start; }
  #anfrage .form-progress::-webkit-scrollbar { display: none; }
  #anfrage .progress-item { flex: 0 0 auto; }
  #anfrage .choice-grid,
  #anfrage .service-choice-grid,
  #anfrage .form-grid,
  #anfrage .field-grid,
  #anfrage .summary-grid { grid-template-columns: 1fr; }
  #anfrage .choice-card,
  #anfrage .service-choice,
  #anfrage label,
  #anfrage input,
  #anfrage select,
  #anfrage textarea,
  #anfrage button { min-width: 0; max-width: 100%; }
  #anfrage input,
  #anfrage select,
  #anfrage textarea { width: 100%; font-size: 16px; }
  #anfrage .form-actions { gap: 10px; }
  #anfrage .form-actions .btn { min-height: 48px; }
  #anfrage .form-trust { justify-content: flex-start; overflow-wrap: anywhere; }

  .faq-layout { grid-template-columns: 1fr; }
  .faq-item summary { min-height: 52px; padding-right: 48px; }
  .faq-item p { overflow-wrap: anywhere; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { gap: 14px; }

  .whatsapp-float {
    right: max(14px, env(safe-area-inset-right));
    bottom: max(52px, calc(env(safe-area-inset-bottom) + 16px));
    min-height: 48px;
    max-width: calc(100vw - 28px);
    white-space: nowrap;
  }

  .about-hero-copy,
  .about-copy,
  .about-story-content,
  .about-network-copy,
  .about-quality-copy { min-width: 0; }
  .about-network-grid,
  .about-split,
  .about-story-grid,
  .about-audience-grid,
  .about-quality-grid { grid-template-columns: 1fr; }
  .about-story-visual { min-height: 360px; }
  .about-audience-card { padding: 34px 26px; }
  .about-network-number { min-height: 270px; }
  .about-service-links a { overflow-wrap: anywhere; }

  .legal-content,
  .legal-content p,
  .legal-content li { overflow-wrap: anywhere; }
  .cookie-banner { max-height: calc(100dvh - 20px); overflow-y: auto; }

  .service-detail-page main,
  .service-detail-page section,
  .service-detail-page article { min-width: 0; }
  .service-detail-layout,
  .detail-hero-grid,
  .detail-split,
  .detail-grid,
  .service-detail-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 560px) {
  .container { width: calc(100% - 24px); }
  .section { padding-top: 60px; padding-bottom: 60px; }
  .header-inner,
  .site-header.compact .header-inner { min-height: 64px; }
  .logo-frame,
  .site-header.compact .logo-frame { width: 82px; height: 56px; }
  .main-nav { top: 64px; right: 10px; left: 10px; }

  .hero.hero-minimal { min-height: 540px; }
  .hero.hero-minimal .hero-layout.hero-layout-centered { padding-inline: 12px; }
  .hero.hero-minimal .hero-copy.hero-copy-minimal { transform: translateY(-14px); }
  .hero.hero-minimal .hero-copy.hero-copy-minimal h1 {
    font-size: clamp(2rem, 11vw, 3.05rem);
    line-height: 1.02;
    letter-spacing: -.04em;
  }
  .hero.hero-minimal .hero-subline-minimal { font-size: .93rem; line-height: 1.45; }

  .section-heading h2,
  .trust-v2-head h2,
  .location-section h2,
  .faq-copy h2 { font-size: clamp(2rem, 9vw, 3rem); }

  .service-card-image,
  .location-image { min-height: 200px; }
  .trust-v2-card,
  .location-body { padding-left: 22px; padding-right: 22px; }

  #anfrage .form-shell,
  #anfrage .request-shell,
  #anfrage .form-step { border-radius: 20px; }
  #anfrage .form-step { padding-left: 16px; padding-right: 16px; }
  #anfrage .form-trust { display: grid; grid-template-columns: 1fr 1fr; }
  #anfrage .form-trust span { margin: 0; }
  #anfrage .progress-label { font-size: .72rem; }
  #anfrage .btn { padding-left: 16px; padding-right: 16px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > * { min-width: 0; }
  .site-footer a,
  .site-footer p,
  .site-footer span { overflow-wrap: anywhere; }

  .about-hero { min-height: 560px; }
  .about-hero-inner { padding-top: 92px; }
  .about-hero-copy h1 { font-size: clamp(2.25rem, 12vw, 3.5rem); }
  .about-story-visual { min-height: 280px; border-radius: 24px; }
  .about-audience-card,
  .about-regions-card { padding: 28px 22px; }
  .about-network-number strong { font-size: 6.5rem; }

  .legal-hero { padding-top: 98px; }
  .legal-hero h1 { font-size: clamp(2.15rem, 11vw, 3.35rem); overflow-wrap: anywhere; }
  .legal-note { padding: 18px; }
  .cookie-banner-inner { border-radius: 16px; }

  .whatsapp-float { font-size: .92rem; padding: 13px 18px; }
}

@media (max-width: 380px) {
  .container { width: calc(100% - 18px); }
  .hero.hero-minimal .hero-copy.hero-copy-minimal h1 { font-size: 1.9rem; }
  #anfrage .form-trust { grid-template-columns: 1fr; }
  .whatsapp-float { right: 9px; max-width: calc(100vw - 18px); }
}

/* ===== Datenschutz- und Cookie-Auswahl ===== */
.consent-open { overflow: visible; }
.consent-backdrop { display: none !important; }
.consent-panel {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  color: var(--ink, #211b16);
}
.consent-panel__inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  background: rgba(255, 253, 249, .985);
  border: 1px solid rgba(155, 116, 60, .22);
  border-radius: 16px;
  box-shadow: 0 14px 38px rgba(34, 27, 20, .14);
}
.consent-panel__eyebrow {
  display: block;
  margin-bottom: 4px;
  color: #9b743c;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.consent-panel h2 {
  margin: 0 0 5px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.18rem, 1.7vw, 1.58rem);
  line-height: 1.16;
}
.consent-panel p {
  margin: 0;
  max-width: 760px;
  line-height: 1.48;
  color: #5f554a;
  font-size: .92rem;
}
.consent-panel__links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 15px;
  margin-top: 8px;
}
.consent-panel__links a,
.consent-details summary {
  color: #7f5d2f;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.consent-panel__actions {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.consent-panel__actions .btn {
  min-width: 154px;
  padding: 12px 16px;
  border: 1px solid #9b743c;
  border-radius: 12px;
  background: #9b743c;
  color: #fffdf9;
  box-shadow: none;
}
.consent-panel__actions .btn:hover,
.consent-panel__actions .btn:focus-visible {
  background: #86622f;
  border-color: #86622f;
  color: #fffdf9;
  transform: none;
}
.consent-panel__actions .btn:focus-visible {
  outline: 3px solid rgba(155, 116, 60, .25);
  outline-offset: 2px;
}
.consent-details { margin-top: 9px; }
.consent-details summary {
  width: fit-content;
  cursor: pointer;
  font-size: .88rem;
  font-weight: 750;
}
.consent-category {
  margin-top: 9px;
  padding: 11px 13px;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgba(155, 116, 60, .18);
  border-radius: 12px;
  background: #fff;
}
.consent-category p { margin-top: 3px; font-size: .84rem; }
.consent-required, .consent-off {
  white-space: nowrap;
  font-size: .74rem;
  font-weight: 800;
  color: #7f5d2f;
}
.consent-category.is-disabled { opacity: .74; }
.footer-link-button {
  border: 0;
  padding: 0;
  background: none;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.footer-link-button:hover,
.footer-link-button:focus-visible { color: #9b743c; }
@media (max-width: 900px) {
  .consent-panel__inner {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 14px;
  }
  .consent-panel__actions { justify-content: flex-start; }
}
@media (max-width: 760px) {
  .consent-panel { left: 9px; right: 9px; bottom: 9px; }
  .consent-panel__inner {
    padding: 16px;
    gap: 13px;
    max-height: calc(100dvh - 18px);
    overflow: auto;
    border-radius: 14px;
  }
  .consent-panel h2 { font-size: 1.22rem; }
  .consent-panel p { font-size: .88rem; }
  .consent-panel__actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .consent-panel__actions .btn {
    width: 100%;
    min-width: 0;
  }
  .consent-category {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }
}



/* ===== Cookie-Banner · professionell und deutlich präsent ===== */
.consent-panel {
  left: 22px;
  right: 22px;
  bottom: 22px;
}
.consent-panel__inner {
  width: min(1280px, 100%);
  padding: 30px 34px;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  border-radius: 22px;
  border-color: rgba(155, 116, 60, .32);
  box-shadow: 0 24px 70px rgba(34, 27, 20, .22);
}
.consent-panel__eyebrow {
  margin-bottom: 7px;
  font-size: .74rem;
  letter-spacing: .13em;
}
.consent-panel h2 {
  margin-bottom: 9px;
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
  line-height: 1.12;
}
.consent-panel p {
  max-width: 820px;
  font-size: 1rem;
  line-height: 1.58;
}
.consent-panel__links {
  margin-top: 13px;
  gap: 8px 20px;
}
.consent-panel__links a,
.consent-details summary {
  font-size: .94rem;
  font-weight: 700;
}
.consent-panel__actions {
  min-width: 360px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.consent-panel__actions .btn {
  min-width: 0;
  min-height: 58px;
  padding: 16px 20px;
  font-size: .98rem;
  font-weight: 800;
  border-radius: 14px;
}
.consent-details { margin-top: 13px; }
@media (max-width: 980px) {
  .consent-panel__inner {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 25px 26px;
  }
  .consent-panel__actions {
    min-width: 0;
    width: 100%;
  }
}
@media (max-width: 760px) {
  .consent-panel {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
  .consent-panel__inner {
    padding: 20px 18px;
    max-height: calc(100dvh - 20px);
    border-radius: 18px;
  }
  .consent-panel h2 { font-size: 1.45rem; }
  .consent-panel p { font-size: .94rem; }
  .consent-panel__actions {
    grid-template-columns: 1fr;
  }
  .consent-panel__actions .btn {
    min-height: 54px;
  }
}


/* ===== Cookie-Banner · langgezogener Milchglas-Quader ===== */
.consent-panel {
  left: clamp(10px, 1.6vw, 26px);
  right: clamp(10px, 1.6vw, 26px);
  bottom: clamp(10px, 1.6vw, 24px);
  pointer-events: none;
}
.consent-panel__inner {
  width: min(1540px, 100%);
  min-height: 188px;
  margin: 0 auto;
  padding: 30px clamp(24px, 3.1vw, 52px);
  grid-template-columns: minmax(0, 1fr) minmax(350px, 430px);
  gap: clamp(28px, 4vw, 66px);
  align-items: center;
  background: linear-gradient(135deg, rgba(255, 253, 249, .76), rgba(248, 241, 231, .66));
  border: 1px solid rgba(155, 116, 60, .38);
  border-radius: 10px;
  box-shadow: 0 26px 76px rgba(31, 24, 18, .24), inset 0 1px 0 rgba(255, 255, 255, .72);
  -webkit-backdrop-filter: blur(17px) saturate(118%);
  backdrop-filter: blur(17px) saturate(118%);
  pointer-events: auto;
}
.consent-panel__copy {
  max-width: 980px;
}
.consent-panel__eyebrow {
  margin-bottom: 8px;
  font-size: .73rem;
  letter-spacing: .14em;
}
.consent-panel h2 {
  margin: 0 0 11px;
  font-size: clamp(1.62rem, 2.35vw, 2.55rem);
  line-height: 1.08;
}
.consent-panel p {
  max-width: 980px;
  font-size: clamp(.94rem, 1vw, 1.04rem);
  line-height: 1.62;
  color: #51483f;
}
.consent-panel__links {
  margin-top: 15px;
  gap: 8px 22px;
}
.consent-panel__links a,
.consent-details summary {
  font-size: .91rem;
  font-weight: 750;
}
.consent-panel__actions {
  width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-self: stretch;
  align-content: center;
}
.consent-panel__actions .btn {
  width: 100%;
  min-height: 60px;
  padding: 16px 24px;
  border-radius: 8px;
  font-size: 1rem;
  letter-spacing: .01em;
}
.consent-details[open] {
  padding-top: 3px;
}
.consent-category {
  background: rgba(255,255,255,.66);
  border-radius: 8px;
}
@media (max-width: 1080px) {
  .consent-panel__inner {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 20px;
    padding: 26px 28px;
  }
  .consent-panel__actions {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 760px) {
  .consent-panel {
    left: 7px;
    right: 7px;
    bottom: 7px;
  }
  .consent-panel__inner {
    width: 100%;
    max-height: calc(100dvh - 14px);
    padding: 21px 18px 18px;
    gap: 17px;
    border-radius: 9px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: linear-gradient(145deg, rgba(255, 253, 249, .82), rgba(248, 241, 231, .74));
    -webkit-backdrop-filter: blur(15px) saturate(115%);
    backdrop-filter: blur(15px) saturate(115%);
  }
  .consent-panel h2 {
    font-size: clamp(1.42rem, 7vw, 1.8rem);
  }
  .consent-panel p {
    font-size: .91rem;
    line-height: 1.56;
  }
  .consent-panel__links {
    gap: 7px 16px;
  }
  .consent-panel__actions {
    grid-template-columns: 1fr;
    position: sticky;
    bottom: -1px;
    padding-top: 5px;
  }
  .consent-panel__actions .btn {
    min-height: 54px;
  }
}

@media (max-width: 780px) {
  .trust-v2-environment-hero { padding: 28px 22px 30px; }
  .trust-v2-environment-title { margin-bottom: 22px; }
  .trust-v2-environment-layout { grid-template-columns: 1fr; gap: 22px; }
  .trust-v2-environment-visual { min-height: 0; }
  .trust-v2-environment-emblem { width: 132px; height: 132px; }
  .trust-v2-environment-emblem svg { width: 70px; height: 70px; }
  .trust-v2-environment-copy-large p { text-align: center; font-size: .96rem; line-height: 1.78; }
}


/* ===== Leistungsdetailseiten – Feinschliff ===== */
.service-detail-page .site-header {
  box-shadow: 0 12px 34px rgba(34, 27, 20, .04);
}
.service-detail-page .service-detail-visual {
  min-height: clamp(500px, 62vw, 760px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  isolation: isolate;
}
.service-detail-page .service-detail-overlay {
  background: linear-gradient(180deg, rgba(16, 15, 13, .22) 0%, rgba(16, 15, 13, .42) 100%);
}
.service-detail-hero-content {
  position: relative;
  z-index: 2;
  max-width: 920px;
  padding: 48px 0 38px;
}
.service-detail-page .hero-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
}
.service-detail-page .hero-back:hover { background: rgba(255,255,255,.14); }
.service-detail-page .service-detail-kicker {
  display: inline-block;
  margin-bottom: 18px;
  color: #f0d79f;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.service-detail-page .service-detail-visual h1 {
  margin: 0 auto;
  max-width: 900px;
  color: #fff;
  text-align: center;
  text-shadow: 0 16px 34px rgba(0,0,0,.28);
}
.service-detail-hero-text {
  max-width: 760px;
  margin: 18px auto 0;
  color: rgba(255,255,255,.94);
  font-size: clamp(1.04rem, 1.7vw, 1.28rem);
  line-height: 1.8;
  text-shadow: 0 8px 20px rgba(0,0,0,.24);
}
.detail-redesign-section {
  padding-top: 0;
  padding-bottom: 100px;
  background: linear-gradient(180deg, #fffdf9 0%, #fbf7ef 100%);
}
.detail-redesign-container {
  margin-top: -72px;
  position: relative;
  z-index: 3;
}
.detail-overview-card,
.detail-card,
.detail-cta-panel {
  border: 1px solid rgba(181, 138, 58, .18);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(252,248,239,.96));
  box-shadow: 0 24px 70px rgba(48, 39, 27, .09), inset 0 1px 0 rgba(255,255,255,.88);
}
.detail-overview-card {
  padding: clamp(30px, 5vw, 54px);
  margin-bottom: 34px;
  text-align: center;
}
.detail-overview-card h2,
.detail-card h2,
.detail-values-section h2,
.detail-cta-panel h2 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 500;
  letter-spacing: -.03em;
  text-align: center;
}
.detail-overview-intro,
.detail-card p,
.detail-cta-panel p,
.detail-section-intro {
  max-width: 860px;
  margin: 16px auto 0;
  color: #595248;
  font-size: 1.02rem;
  line-height: 1.82;
  text-align: center;
}
.detail-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}
.detail-mini-card,
.detail-value-card {
  padding: 24px 22px;
  border: 1px solid rgba(181, 138, 58, .14);
  border-radius: 22px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 10px 28px rgba(48,39,27,.05);
}
.detail-mini-card h3,
.detail-value-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 700;
  text-align: center;
}
.detail-mini-card p,
.detail-value-card p {
  margin: 10px 0 0;
  color: #5c564c;
  font-size: .97rem;
  line-height: 1.72;
  text-align: center;
}
.detail-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, .85fr);
  gap: 24px;
  align-items: start;
}
.detail-card {
  padding: clamp(28px, 4vw, 46px);
}
.detail-services-card {
  min-height: 100%;
}
.service-detail-page .service-detail-list {
  margin-top: 28px;
}
.detail-side-column {
  display: grid;
  gap: 24px;
}
.detail-values-section {
  margin-top: 34px;
  text-align: center;
}
.detail-values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}
.detail-cta-panel {
  margin-top: 34px;
  padding: clamp(30px, 5vw, 54px);
  text-align: center;
}
.detail-cta-panel p {
  max-width: 740px;
}
.detail-cta-panel .service-detail-cta {
  margin-top: 28px;
  padding-top: 0;
}
.detail-cta-panel .service-detail-cta::before {
  display: none;
}
@media (max-width: 980px) {
  .detail-main-grid,
  .detail-mini-grid,
  .detail-values-grid {
    grid-template-columns: 1fr;
  }
  .detail-redesign-container {
    margin-top: -48px;
  }
}
@media (max-width: 760px) {
  .service-detail-page .service-detail-visual {
    min-height: 460px;
  }
  .service-detail-hero-content {
    padding: 32px 0 24px;
  }
  .detail-redesign-section {
    padding-bottom: 78px;
  }
  .detail-overview-card,
  .detail-card,
  .detail-cta-panel {
    border-radius: 24px;
  }
}


/* ===== Leistungsdetailseiten – Premium Vertrauen ===== */
.detail-redesign-section {
  position: relative;
  background:
    radial-gradient(circle at 12% 18%, rgba(198,161,91,.08), transparent 30%),
    linear-gradient(180deg, #fffdf9 0%, #f8f2e9 100%);
}
.detail-redesign-container { max-width: 1160px; }
.detail-overview-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(155,116,60,.22);
  box-shadow: 0 30px 90px rgba(39,31,22,.13);
}
.detail-overview-card::before {
  content:"";
  position:absolute;
  inset:0 auto 0 0;
  width:4px;
  background:linear-gradient(180deg, transparent, var(--gold-deep), transparent);
}
.detail-section-kicker {
  display:block;
  margin-bottom:12px;
  color:var(--gold-deep);
  font-size:.76rem;
  font-weight:850;
  letter-spacing:.2em;
  text-transform:uppercase;
  text-align:center;
}
.detail-process-section {
  margin: 34px 0;
  padding: clamp(34px,5vw,58px);
  border: 1px solid rgba(155,116,60,.18);
  border-radius: 30px;
  background: rgba(255,253,249,.88);
  box-shadow: 0 22px 64px rgba(48,39,27,.08);
  text-align:center;
}
.detail-process-section h2 {
  margin:0;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(2rem,3.4vw,3rem);
  font-weight:500;
  letter-spacing:-.035em;
}
.detail-process-intro {
  max-width:760px;
  margin:16px auto 0;
  color:#5a534a;
  font-size:1.02rem;
  line-height:1.8;
}
.detail-process-grid {
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
  margin-top:34px;
}
.detail-process-card {
  position:relative;
  min-height:240px;
  padding:28px 22px;
  border:1px solid rgba(155,116,60,.14);
  border-radius:22px;
  background:linear-gradient(180deg,#fff,#fbf7f0);
  box-shadow:0 12px 30px rgba(48,39,27,.055);
}
.detail-process-card span {
  display:inline-grid;
  place-items:center;
  width:46px;
  height:46px;
  margin-bottom:20px;
  border-radius:50%;
  border:1px solid rgba(155,116,60,.25);
  background:#fffaf1;
  color:var(--gold-deep);
  font-size:.78rem;
  font-weight:900;
  letter-spacing:.08em;
}
.detail-process-card h3 {
  margin:0;
  font-size:1.08rem;
  text-align:center;
}
.detail-process-card p {
  margin:12px 0 0;
  color:#5e574d;
  font-size:.94rem;
  line-height:1.72;
  text-align:center;
}
.detail-main-grid { gap:28px; }
.detail-card,
.detail-value-card,
.detail-mini-card {
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.detail-card:hover,
.detail-value-card:hover,
.detail-mini-card:hover {
  transform:translateY(-3px);
  border-color:rgba(155,116,60,.28);
  box-shadow:0 20px 44px rgba(48,39,27,.09);
}
.detail-services-card {
  background:
    radial-gradient(circle at 100% 0%, rgba(198,161,91,.10), transparent 28%),
    linear-gradient(180deg,rgba(255,255,255,.98),rgba(251,247,239,.97));
}
.detail-values-section {
  padding: 42px 0 4px;
}
.detail-trust-panel {
  display:grid;
  grid-template-columns:minmax(0,1.15fr) minmax(300px,.85fr);
  gap:32px;
  align-items:center;
  margin-top:38px;
  padding:clamp(34px,5vw,56px);
  border-radius:30px;
  color:#fff;
  background:
    radial-gradient(circle at 85% 20%, rgba(198,161,91,.18), transparent 34%),
    linear-gradient(135deg,#1f1c18,#0f0e0c);
  box-shadow:0 28px 72px rgba(20,18,15,.22);
}
.detail-trust-copy .detail-section-kicker { text-align:left; color:#e5c98e; }
.detail-trust-copy h2 {
  margin:0;
  color:#fff;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(2rem,3.2vw,3rem);
  font-weight:500;
  line-height:1.12;
  letter-spacing:-.035em;
}
.detail-trust-copy p {
  margin:18px 0 0;
  color:rgba(255,255,255,.76);
  line-height:1.82;
}
.detail-trust-points {
  display:grid;
  gap:12px;
}
.detail-trust-points span {
  display:flex;
  align-items:center;
  min-height:52px;
  padding:13px 16px 13px 46px;
  position:relative;
  border:1px solid rgba(255,255,255,.13);
  border-radius:15px;
  background:rgba(255,255,255,.055);
  color:#f7f1e8;
  font-weight:650;
}
.detail-trust-points span::before {
  content:"✓";
  position:absolute;
  left:16px;
  color:#dfc080;
  font-weight:900;
}
.detail-cta-panel {
  background:
    radial-gradient(circle at 50% -20%, rgba(198,161,91,.16), transparent 42%),
    linear-gradient(180deg,#fffdf9,#f8efe2);
  border-color:rgba(155,116,60,.26);
  box-shadow:0 26px 74px rgba(48,39,27,.12);
}
@media (max-width: 980px) {
  .detail-process-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .detail-trust-panel { grid-template-columns:1fr; text-align:center; }
  .detail-trust-copy .detail-section-kicker { text-align:center; }
}
@media (max-width: 620px) {
  .detail-process-grid { grid-template-columns:1fr; }
  .detail-process-card { min-height:0; }
  .detail-trust-panel { padding:30px 22px; }
}


/* ===== Leistungsdetailseiten – luxuriöser Feinschliff ===== */
.service-detail-page .service-detail-visual {
  position: relative;
  min-height: 700px;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
}
.service-detail-page .service-detail-overlay {
  background: linear-gradient(180deg, rgba(10,10,10,.16), rgba(10,10,10,.22));
  z-index: 1;
}
.service-detail-page .service-detail-soft-blur {
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  width: min(880px, 82vw);
  height: min(260px, 34vw);
  border-radius: 999px;
  background: radial-gradient(circle at center, rgba(255,255,255,.18), rgba(255,255,255,.08) 42%, rgba(255,255,255,0) 72%);
  -webkit-backdrop-filter: blur(16px) saturate(115%);
  backdrop-filter: blur(16px) saturate(115%);
  z-index: 2;
  pointer-events: none;
}
.service-detail-page .service-detail-hero-content {
  position: relative;
  z-index: 3;
  width: min(1080px, 100%);
  margin: 0 auto;
  padding: 0 18px;
  text-align: center;
  transform: translateY(-14px);
}
.service-detail-page .service-detail-hero-content h1 {
  max-width: none;
  margin: 0;
  color: #fffdf9;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.68rem, 5.61vw, 5.78rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -.035em;
  text-shadow: 0 12px 36px rgba(0, 0, 0, .28);
  display: inline-block;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,.18)) drop-shadow(0 10px 22px rgba(0,0,0,.12));
}
.service-detail-page .service-detail-hero-content .service-detail-hero-text,
.service-detail-page .service-detail-hero-content .hero-subline-minimal {
  max-width: 40rem;
  margin: 16px auto 0;
  color: #fffdf9;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(.96rem, 1.45vw, 1.12rem);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: .01em;
  text-shadow: 0 6px 22px rgba(0, 0, 0, .32);
  display: block;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,.18)) drop-shadow(0 10px 22px rgba(0,0,0,.12));
}
.detail-process-section .detail-section-kicker,
.detail-trust-copy .detail-section-kicker { text-align:center; }
.detail-trust-copy h2,
.detail-trust-copy p { text-align:center; }
.detail-trust-points { align-content:center; }
.detail-trust-points span { justify-content:center; text-align:center; padding:13px 18px; }
.detail-trust-points span::before { position:static; margin-right:10px; }
.detail-mini-card h3, .detail-value-card h3, .detail-process-card h3, .detail-card h2, .detail-card p, .detail-section-intro { text-align:center; }
/* unique hero images not reused from homepage */
.detail-hero-move { background-image: url("https://images.unsplash.com/photo-1484154218962-a197022b5858?auto=format&fit=crop&w=1800&q=92"); background-position: center center; }
.detail-hero-clearout { background-image: url("https://images.unsplash.com/photo-1494526585095-c41746248156?auto=format&fit=crop&w=1800&q=92"); background-position: center center; }
.detail-hero-renovation { background-image: url("https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?auto=format&fit=crop&w=1800&q=92"); background-position: center center; }
.detail-hero-construction { background-image: url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1800&q=92"); background-position: center center; }
.detail-hero-garden { background-image: url("https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&w=1800&q=92"); background-position: center center; }
.detail-hero-cleaning { background-image: url("https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=1800&q=92"); background-position: center center; }
.detail-hero-security { background-image: url("https://images.unsplash.com/photo-1558002038-1055907df827?auto=format&fit=crop&w=1800&q=92"); background-position: center center; }
@media (max-width: 840px) {
  .service-detail-page .service-detail-visual { min-height: 620px; }
  .service-detail-page .service-detail-hero-content { transform: translateY(-16px); }
  .service-detail-page .service-detail-hero-content h1 { font-size: clamp(2rem, 8.5vw, 3.53rem); line-height: 1.04; }
  .service-detail-page .service-detail-hero-content .service-detail-hero-text,
  .service-detail-page .service-detail-hero-content .hero-subline-minimal { font-size: .94rem; }
  .service-detail-page .service-detail-soft-blur { width: min(96vw, 760px); height: 220px; }
}
@media (max-width: 560px) {
  .service-detail-page .service-detail-visual { min-height: 560px; }
  .service-detail-page .service-detail-soft-blur { width: calc(100vw - 18px); height: 190px; }
}


/* ===== Detailseiten – Forschungsbasierter Premium-Feinschliff ===== */
.service-detail-page .service-detail-visual {
  min-height: 700px;
  overflow: hidden;
}
.service-detail-page .service-detail-overlay {
  background: linear-gradient(180deg, rgba(10, 10, 10, .14), rgba(10, 10, 10, .20));
}
.service-detail-page .service-detail-soft-blur {
  display: none !important;
}
.service-detail-page .service-detail-hero-content {
  width: min(1080px, 100%);
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  transform: translateY(-19px);
}
.service-detail-page .service-detail-hero-content h1 {
  max-width: none;
  margin: 0;
  color: #fffdf9;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.68rem, 5.61vw, 5.78rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -.035em;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.20), 0 10px 28px rgba(0, 0, 0, 0.18), 0 0 14px rgba(0, 0, 0, 0.10);
  display: inline-block;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.18)) drop-shadow(0 10px 22px rgba(0, 0, 0, 0.12));
}
.service-detail-page .service-detail-hero-content .service-detail-hero-text,
.service-detail-page .service-detail-hero-content .hero-subline-minimal {
  max-width: 34rem;
  margin: 14px auto 0;
  padding: 0 12px;
  color: #fffdf9;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(.96rem, 1.45vw, 1.12rem);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: .01em;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.18), 0 8px 18px rgba(0, 0, 0, 0.16), 0 0 10px rgba(0, 0, 0, 0.08);
  display: block;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.18)) drop-shadow(0 10px 22px rgba(0, 0, 0, 0.12));
}
.detail-overview-intro,
.detail-process-intro,
.detail-card p,
.detail-section-intro,
.detail-trust-copy p,
.detail-cta-panel p {
  max-width: 900px;
}
.detail-mini-card h3,
.detail-process-card h3,
.detail-value-card h3 {
  letter-spacing: -.01em;
}
.detail-process-card,
.detail-mini-card,
.detail-value-card,
.detail-card {
  box-shadow: 0 14px 36px rgba(48,39,27,.06);
}
.detail-trust-panel {
  background: radial-gradient(circle at 85% 20%, rgba(198,161,91,.18), transparent 34%), linear-gradient(135deg, #1d1915, #0d0c0b);
}
@media (max-width: 840px) {
  .service-detail-page .service-detail-visual { min-height: 620px; }
  .service-detail-page .service-detail-hero-content { transform: translateY(-16px); }
  .service-detail-page .service-detail-hero-content h1 { font-size: clamp(2rem, 8.5vw, 3.53rem); line-height: 1.04; }
  .service-detail-page .service-detail-hero-content .service-detail-hero-text,
  .service-detail-page .service-detail-hero-content .hero-subline-minimal { font-size: .94rem; }
}


/* ===== Leistungsdetailseiten – High-End-Vertriebsoptimierung ===== */
.service-detail-page .service-detail-visual {
  filter: none !important;
  background-size: cover;
  background-repeat: no-repeat;
  image-rendering: auto;
}
.detail-overview-card {
  position: relative;
  overflow: hidden;
}
.detail-overview-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(155,116,60,.78) 22%, rgba(218,190,132,.9) 50%, rgba(155,116,60,.78) 78%, transparent);
}
.detail-overview-card > h2,
.detail-process-section > h2,
.detail-experience-panel > h2,
.detail-cta-panel > h2 {
  text-wrap: balance;
}
.detail-overview-intro,
.detail-process-intro,
.detail-experience-panel > p,
.detail-cta-panel > p {
  text-wrap: pretty;
}
.detail-mini-card,
.detail-process-card,
.detail-card {
  border-color: rgba(155,116,60,.16);
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(252,248,240,.96));
}
.detail-mini-card::before {
  content: "";
  display: block;
  width: 42px;
  height: 1px;
  margin: 0 auto 18px;
  background: linear-gradient(90deg, transparent, rgba(155,116,60,.65), transparent);
}
.detail-conversion-row {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 28px;
  align-items: center;
  margin-top: 34px;
  padding: 24px 26px;
  border: 1px solid rgba(155,116,60,.20);
  border-radius: 22px;
  background:
    radial-gradient(circle at 10% 10%, rgba(198,161,91,.12), transparent 34%),
    linear-gradient(135deg, rgba(252,247,238,.96), rgba(255,255,255,.98));
  box-shadow: 0 16px 38px rgba(48,39,27,.07);
  text-align: left;
}
.detail-conversion-copy .detail-section-kicker {
  margin-bottom: 7px;
  text-align: left;
}
.detail-conversion-copy strong {
  display: block;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem,2.2vw,1.8rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -.025em;
}
.detail-conversion-copy p {
  max-width: 680px;
  margin: 9px 0 0;
  color: #5a5349;
  line-height: 1.7;
}
.detail-conversion-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}
.detail-conversion-actions .btn-primary {
  min-width: 166px;
  min-height: 50px;
  justify-content: center;
}
.detail-phone-link {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 19px;
  border: 1px solid rgba(155,116,60,.38);
  border-radius: 999px;
  color: #745525;
  background: rgba(255,253,249,.82);
  font-weight: 750;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.detail-phone-link:hover {
  transform: translateY(-1px);
  color: #fff;
  background: #9b743c;
}
.detail-experience-panel {
  position: relative;
  margin-top: 38px;
  padding: clamp(34px,5vw,54px);
  overflow: hidden;
  border: 1px solid rgba(155,116,60,.20);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% -30%, rgba(198,161,91,.18), transparent 44%),
    linear-gradient(180deg, #fffdf9, #f8f1e6);
  box-shadow: 0 24px 64px rgba(48,39,27,.09);
  text-align: center;
}
.detail-experience-panel::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(420px,70%);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(155,116,60,.5), transparent);
}
.detail-experience-panel h2 {
  max-width: 860px;
  margin: 0 auto;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem,3.2vw,2.9rem);
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: -.035em;
}
.detail-experience-panel > p {
  max-width: 820px;
  margin: 18px auto 0;
  color: #595248;
  font-size: 1.02rem;
  line-height: 1.82;
}
.detail-side-column .detail-card:first-child {
  border-color: rgba(155,116,60,.30);
  background:
    radial-gradient(circle at 100% 0%, rgba(198,161,91,.13), transparent 34%),
    linear-gradient(180deg, #fffdf9, #faf3e8);
}
.detail-trust-panel {
  margin-top: 38px;
}
.detail-trust-points span {
  min-height: 56px;
  background: rgba(255,255,255,.065);
}
.detail-cta-panel {
  position: relative;
  overflow: hidden;
}
.detail-cta-panel::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: min(540px,80%);
  height: 2px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(155,116,60,.75), transparent);
}
@media (max-width: 860px) {
  .detail-conversion-row {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .detail-conversion-copy .detail-section-kicker {
    text-align: center;
  }
  .detail-conversion-actions {
    justify-content: center;
  }
}
@media (max-width: 560px) {
  .detail-conversion-row {
    padding: 22px 18px;
  }
  .detail-conversion-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .detail-conversion-actions .btn-primary,
  .detail-phone-link {
    width: 100%;
  }
}


/* ===== Leistungsdetailseiten · Zurück-Navigation ===== */
.detail-back-navigation {
  display: flex;
  justify-content: flex-start;
  margin: 19px 0 20px;
}
.detail-back-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 11px 18px;
  border: 1px solid rgba(155, 116, 60, .24);
  border-radius: 999px;
  background: rgba(255, 253, 249, .94);
  color: #735526;
  font-size: .91rem;
  font-weight: 750;
  line-height: 1.2;
  box-shadow: 0 12px 30px rgba(48, 39, 27, .075);
  backdrop-filter: blur(10px);
  transition: transform .22s ease, border-color .22s ease, background-color .22s ease, box-shadow .22s ease;
}
.detail-back-button > span:first-child {
  font-size: 1.06rem;
  line-height: 1;
  transition: transform .22s ease;
}
.detail-back-button:hover,
.detail-back-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(155, 116, 60, .48);
  background: #fffdf9;
  box-shadow: 0 16px 36px rgba(48, 39, 27, .11);
}
.detail-back-button:hover > span:first-child,
.detail-back-button:focus-visible > span:first-child {
  transform: translateX(-3px);
}
.detail-back-button:focus-visible {
  outline: 2px solid rgba(155, 116, 60, .42);
  outline-offset: 3px;
}
@media (max-width: 620px) {
  .detail-back-navigation {
    justify-content: center;
    margin-top: 19px;
    margin-bottom: 16px;
  }
  .detail-back-button {
    width: 100%;
    max-width: 340px;
    min-height: 48px;
  }
}

/* ===== Zurück-Button · vollständig unterhalb des Titelbildes ===== */
/* Der Inhaltscontainer überlappt das Titelbild weiterhin optisch. Der gleiche
   Überlappungswert wird als Innenabstand ausgeglichen, sodass die Navigation
   erst 0,5 cm unter dem tatsächlichen Bildrand beginnt. */
.detail-redesign-container {
  padding-top: 72px;
}
.detail-back-navigation {
  margin-top: 0.5cm;
  margin-bottom: 20px;
}
@media (max-width: 980px) {
  .detail-redesign-container {
    padding-top: 48px;
  }
}


/* ===== Zielgruppen früh sichtbar · kompakter Premium-Aufbau ===== */
.detail-audience-section {
  margin: 0 0 28px;
  padding: clamp(30px, 4.5vw, 48px);
  border: 1px solid rgba(155,116,60,.19);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% -35%, rgba(198,161,91,.13), transparent 44%),
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(251,247,239,.96));
  box-shadow: 0 22px 64px rgba(48,39,27,.085);
  text-align: center;
}
.detail-audience-section > h2 {
  max-width: 780px;
  margin: 0 auto;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.2vw, 2.9rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -.035em;
}
.detail-audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}
.detail-audience-card {
  min-height: 210px;
  padding: 28px 26px;
  border: 1px solid rgba(155,116,60,.15);
  border-radius: 24px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 14px 34px rgba(48,39,27,.055);
  text-align: center;
}
.detail-audience-business {
  background:
    radial-gradient(circle at 100% 0%, rgba(198,161,91,.10), transparent 38%),
    rgba(255,255,255,.88);
}
.detail-audience-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 13px;
  border: 1px solid rgba(155,116,60,.22);
  border-radius: 999px;
  background: #fffaf1;
  color: var(--gold-deep);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.detail-audience-card h3 {
  margin: 17px 0 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.38rem, 2vw, 1.75rem);
  font-weight: 500;
  letter-spacing: -.025em;
}
.detail-audience-card p {
  max-width: 520px;
  margin: 12px auto 0;
  color: #5b544b;
  font-size: .97rem;
  line-height: 1.72;
}
.detail-services-wide {
  margin-top: 32px;
  width: 100%;
}
.detail-services-wide .service-detail-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.detail-confidence-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 36px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 30px;
  color: #fff;
  background: rgba(198,161,91,.22);
  box-shadow: 0 28px 72px rgba(20,18,15,.22);
}
.detail-confidence-column {
  padding: clamp(34px, 5vw, 54px);
  background:
    radial-gradient(circle at 85% 18%, rgba(198,161,91,.17), transparent 36%),
    linear-gradient(135deg,#211e19,#11100e);
  text-align: center;
}
.detail-confidence-trust {
  background:
    radial-gradient(circle at 15% 15%, rgba(198,161,91,.15), transparent 35%),
    linear-gradient(135deg,#171512,#0d0c0b);
}
.detail-confidence-column .detail-section-kicker { color: #e5c98e; }
.detail-confidence-column h2 {
  margin: 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 2.8vw, 2.65rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -.035em;
}
.detail-confidence-column p {
  max-width: 590px;
  margin: 17px auto 0;
  color: rgba(255,255,255,.76);
  line-height: 1.78;
}
.detail-confidence-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}
.detail-confidence-points span {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 14px;
  background: rgba(255,255,255,.055);
  color: #f7f1e8;
  font-size: .9rem;
  font-weight: 650;
  text-align: center;
}
@media (max-width: 980px) {
  .detail-services-wide .service-detail-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .detail-confidence-panel { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .detail-audience-grid,
  .detail-services-wide .service-detail-list,
  .detail-confidence-points { grid-template-columns: 1fr; }
  .detail-audience-card { min-height: 0; padding: 25px 21px; }
  .detail-audience-section { padding: 28px 20px; border-radius: 24px; }
  .detail-confidence-panel { border-radius: 24px; }
}


/* ===== Zielgruppenseiten Privat & Gewerbe ===== */
.main-nav a[aria-current="page"] { color: var(--gold-deep); }
.main-nav a[aria-current="page"]::after { right: 0; }
.audience-landing-page .audience-hero {
  min-height: clamp(560px, 62vw, 730px);
  background-size: cover;
  background-position: center;
}
.audience-hero-private {
  background-image: url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=2000&q=92");
}
.audience-hero-business {
  background-image: url("https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&w=2000&q=92");
}
.audience-landing-page .service-detail-overlay {
  background: linear-gradient(180deg, rgba(10,10,10,.14), rgba(10,10,10,.26));
}
.audience-page-section {
  padding: 0 0 108px;
  background: linear-gradient(180deg, #fffdf9 0%, #faf5ec 100%);
}
.audience-page-container {
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
  padding-top: 0;
}
.audience-back-navigation {
  margin: 0;
  padding: 28px 0 24px;
}
.audience-intro-panel,
.audience-services-panel,
.business-model-section {
  position: relative;
  margin-bottom: 34px;
  padding: clamp(36px, 5vw, 64px);
  border: 1px solid rgba(155,116,60,.18);
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% -30%, rgba(198,161,91,.13), transparent 44%),
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(251,247,239,.97));
  box-shadow: 0 24px 70px rgba(48,39,27,.085);
  text-align: center;
}
.audience-intro-business {
  background:
    radial-gradient(circle at 86% 0%, rgba(198,161,91,.15), transparent 40%),
    linear-gradient(180deg, rgba(255,255,255,.99), rgba(249,244,235,.98));
}
.audience-intro-panel h2,
.audience-section-heading h2,
.audience-assurance-copy h2,
.audience-final-cta h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -.035em;
}
.audience-intro-panel h2 { font-size: clamp(2.15rem, 3.8vw, 3.45rem); }
.audience-lead {
  max-width: 840px;
  margin: 20px auto 0;
  color: #575047;
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.82;
}
.audience-value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
  margin-top: 38px;
}
.audience-value-card {
  min-height: 238px;
  padding: 29px 24px;
  border: 1px solid rgba(155,116,60,.15);
  border-radius: 23px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 14px 34px rgba(48,39,27,.055);
  text-align: center;
}
.audience-value-card > span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(155,116,60,.23);
  border-radius: 50%;
  background: #fff9ef;
  color: var(--gold-deep);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .08em;
}
.audience-value-card h3,
.audience-situation-grid h3,
.business-object-grid h3,
.business-model-card h3 {
  margin: 18px 0 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.34rem;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -.02em;
}
.audience-value-card p,
.audience-situation-grid p,
.business-object-grid p,
.business-model-card p {
  margin: 12px 0 0;
  color: #5c554c;
  font-size: .95rem;
  line-height: 1.72;
}
.audience-situations-section {
  margin: 34px 0;
  padding: clamp(38px, 5vw, 62px) 0;
}
.audience-section-heading {
  max-width: 870px;
  margin: 0 auto;
  text-align: center;
}
.audience-section-heading h2 {
  font-size: clamp(2.05rem, 3.45vw, 3.15rem);
}
.audience-section-heading > p {
  max-width: 760px;
  margin: 17px auto 0;
  color: #5b544b;
  font-size: 1rem;
  line-height: 1.78;
}
.audience-situation-grid,
.business-object-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
  margin-top: 34px;
}
.audience-situation-grid article,
.business-object-grid article {
  min-height: 185px;
  padding: 29px 27px;
  border: 1px solid rgba(155,116,60,.15);
  border-radius: 23px;
  background: rgba(255,255,255,.8);
  box-shadow: 0 13px 32px rgba(48,39,27,.05);
  text-align: center;
}
.business-object-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
.business-object-grid article { min-height: 205px; }
.audience-services-panel { margin-top: 10px; }
.audience-service-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 13px;
  margin-top: 34px;
}
.audience-service-link {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 19px 21px;
  border: 1px solid rgba(155,116,60,.17);
  border-radius: 18px;
  background: rgba(255,255,255,.88);
  color: var(--ink);
  text-align: left;
  box-shadow: 0 10px 26px rgba(48,39,27,.045);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.audience-service-link:hover,
.audience-service-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(155,116,60,.42);
  box-shadow: 0 16px 34px rgba(48,39,27,.085);
}
.audience-service-link span { display: grid; gap: 6px; }
.audience-service-link strong { font-size: .98rem; }
.audience-service-link small { color: #665f56; font-size: .84rem; line-height: 1.45; }
.audience-service-link b { color: var(--gold-deep); font-size: 1.15rem; font-weight: 500; }
.audience-process-section { margin: 34px 0; }
.business-model-section { margin-top: 34px; }
.business-model-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
  margin-top: 34px;
}
.business-model-card {
  padding: clamp(30px, 4vw, 44px);
  border: 1px solid rgba(155,116,60,.16);
  border-radius: 25px;
  background: #fff;
  text-align: left;
}
.business-model-card > span {
  display: inline-flex;
  padding: 7px 12px;
  border: 1px solid rgba(155,116,60,.22);
  border-radius: 999px;
  color: var(--gold-deep);
  background: #fff9ef;
  font-size: .74rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.business-model-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}
.business-model-card li {
  position: relative;
  padding-left: 22px;
  color: #4f4941;
  line-height: 1.55;
}
.business-model-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #a07832;
  font-weight: 900;
}
.business-model-card-dark {
  border-color: rgba(255,255,255,.1);
  color: #fff;
  background:
    radial-gradient(circle at 90% 0%, rgba(198,161,91,.18), transparent 40%),
    linear-gradient(135deg,#211e19,#100f0d);
}
.business-model-card-dark > span { border-color: rgba(255,255,255,.18); color: #e4c784; background: rgba(255,255,255,.06); }
.business-model-card-dark h3 { color: #fff; }
.business-model-card-dark p,
.business-model-card-dark li { color: rgba(255,255,255,.76); }
.business-model-card-dark li::before { color: #e1c37e; }
.audience-assurance-panel {
  display: grid;
  grid-template-columns: minmax(0,1.12fr) minmax(310px,.88fr);
  gap: 34px;
  align-items: center;
  margin: 38px 0;
  padding: clamp(38px, 5vw, 60px);
  border-radius: 30px;
  color: #fff;
  background:
    radial-gradient(circle at 86% 14%, rgba(198,161,91,.19), transparent 36%),
    linear-gradient(135deg,#201d18,#0f0e0c);
  box-shadow: 0 28px 72px rgba(20,18,15,.22);
}
.audience-assurance-business {
  background:
    radial-gradient(circle at 12% 12%, rgba(198,161,91,.16), transparent 36%),
    linear-gradient(135deg,#171512,#0b0a09);
}
.audience-assurance-copy { text-align: center; }
.audience-assurance-copy .detail-section-kicker { color: #e6ca8c; }
.audience-assurance-copy h2 { color: #fff; font-size: clamp(2rem,3.2vw,3rem); }
.audience-assurance-copy p {
  max-width: 670px;
  margin: 18px auto 0;
  color: rgba(255,255,255,.76);
  line-height: 1.8;
}
.audience-assurance-points { display: grid; gap: 11px; }
.audience-assurance-points span {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 14px;
  background: rgba(255,255,255,.055);
  color: #f7f1e8;
  font-size: .92rem;
  font-weight: 650;
  text-align: center;
}
.audience-final-cta {
  margin-top: 38px;
  padding: clamp(42px, 5vw, 66px);
  text-align: center;
}
.audience-final-cta .detail-section-kicker { text-align: center; }
.audience-final-cta h2 { font-size: clamp(2rem, 3.4vw, 3.1rem); }
.audience-final-cta > p { max-width: 720px; margin: 17px auto 0; }
.audience-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
@media (max-width: 980px) {
  .audience-value-grid,
  .business-object-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .audience-assurance-panel { grid-template-columns: 1fr; }
  .audience-assurance-points { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 720px) {
  .audience-page-container { width: calc(100% - 28px); }
  .audience-intro-panel,
  .audience-services-panel,
  .business-model-section { padding: 30px 20px; border-radius: 24px; }
  .audience-value-grid,
  .audience-situation-grid,
  .business-object-grid,
  .audience-service-links,
  .business-model-grid,
  .audience-assurance-points { grid-template-columns: 1fr; }
  .audience-value-card,
  .audience-situation-grid article,
  .business-object-grid article { min-height: 0; }
  .audience-service-link { min-height: 0; }
  .audience-assurance-panel { padding: 34px 21px; border-radius: 24px; }
  .audience-cta-actions { display: grid; grid-template-columns: 1fr; }
  .audience-cta-actions .btn,
  .audience-cta-actions .detail-phone-link { width: 100%; }
}


/* Zielgruppenseiten: Karten ohne sichtbare Nummerierung */
.audience-value-card h3 { margin-top: 0; }
.audience-value-card { display: flex; flex-direction: column; justify-content: center; }


/* ===== Navigation – psychologisch optimierte Reihenfolge ===== */
.main-nav a { white-space: nowrap; }
@media (min-width: 901px) and (max-width: 1080px) {
  .main-nav { gap: 13px; font-size: .81rem; }
}

/* ===== Mobile Abschlussprüfung und Bildoptimierung 2026-07 ===== */
@media (max-width: 840px) {
  html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    scroll-padding-top: 76px;
  }
  body { overflow-x: hidden; }

  /* Header und Navigation */
  .site-header { padding-top: env(safe-area-inset-top); }
  .header-inner { padding-inline: max(0px, env(safe-area-inset-left)) max(0px, env(safe-area-inset-right)); }
  .main-nav {
    right: max(14px, env(safe-area-inset-right));
    left: max(14px, env(safe-area-inset-left));
    padding-bottom: max(15px, env(safe-area-inset-bottom));
  }
  .main-nav a {
    white-space: normal;
    overflow-wrap: anywhere;
    line-height: 1.3;
  }

  /* Bilder bleiben scharf und werden auf kleinen Displays sinnvoll beschnitten. */
  .hero-image,
  .about-hero-image {
    transform: none !important;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .hero.hero-minimal .hero-image {
    background-image: url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=1200&q=88");
    background-position: 62% center;
  }
  .featured-image,
  .location-image,
  .signature-photo,
  .about-story-visual,
  .service-detail-visual,
  .audience-hero {
    background-repeat: no-repeat;
    background-size: cover;
  }

  /* Leistungsbilder auf der Startseite */
  .services-section .featured-image {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }
  .services-section .image-move {
    background-image: url("https://images.unsplash.com/photo-1600518464441-9154a4dea21b?auto=format&fit=crop&w=1000&q=86");
    background-position: 54% center;
  }
  .services-section .image-clearout {
    background-image: url("https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?auto=format&fit=crop&w=1000&q=86");
    background-position: center 54%;
  }
  .services-section .image-renovation {
    background-image: url("https://images.unsplash.com/photo-1674485147314-17906eed126b?auto=format&fit=crop&fm=jpg&w=1000&q=86");
    background-position: 50% center;
  }
  .services-section .image-construction {
    background-image: url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1000&q=86");
    background-position: 52% center;
  }
  .services-section .image-garden { background-position: center 52%; }
  .services-section .image-cleaning {
    background-image: url("https://images.unsplash.com/photo-1527515637462-cff94eecc1ac?auto=format&fit=crop&w=1000&q=86");
    background-position: 56% center;
  }
  .services-section .image-security {
    background-image: url("https://images.unsplash.com/photo-1578328819058-b69f3a3b0f6b?auto=format&fit=crop&fm=jpg&w=1000&q=86");
    background-position: 50% center;
  }

  /* Standortbilder */
  .location-image {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }
  .location-munich { background-position: center 54%; }
  .location-augsburg { background-position: center 48%; }
  .location-nuremberg { background-position: center 52%; }
  .location-stuttgart { background-position: center 52%; }

  /* Über uns */
  .about-hero-image {
    background-image: url("https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?auto=format&fit=crop&w=1200&q=86");
    background-position: 58% 55%;
  }
  .about-story-visual {
    background-image: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.12)), url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=1000&q=84");
    background-position: center;
  }

  /* Leistungsdetailseiten: eigenes mobiles Fokusfeld je Motiv */
  .service-detail-page .service-detail-visual {
    min-height: min(620px, calc(100svh - 64px));
    background-size: cover;
  }
  .detail-hero-move {
    background-image: url("https://images.unsplash.com/photo-1484154218962-a197022b5858?auto=format&fit=crop&w=1200&q=88");
    background-position: 56% center;
  }
  .detail-hero-clearout {
    background-image: url("https://images.unsplash.com/photo-1494526585095-c41746248156?auto=format&fit=crop&w=1200&q=88");
    background-position: center 54%;
  }
  .detail-hero-renovation {
    background-image: url("https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?auto=format&fit=crop&w=1200&q=88");
    background-position: center 54%;
  }
  .detail-hero-construction {
    background-image: url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1200&q=88");
    background-position: 55% center;
  }
  .detail-hero-garden {
    background-image: url("https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&w=1200&q=88");
    background-position: center 52%;
  }
  .detail-hero-cleaning {
    background-image: url("https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=1200&q=88");
    background-position: 58% center;
  }
  .detail-hero-security {
    background-image: url("https://images.unsplash.com/photo-1558002038-1055907df827?auto=format&fit=crop&w=1200&q=88");
    background-position: 52% center;
  }

  /* Zielgruppenseiten */
  .audience-landing-page .audience-hero {
    min-height: min(580px, calc(100svh - 64px));
  }
  .audience-hero-private {
    background-image: url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1200&q=88");
    background-position: 58% center;
  }
  .audience-hero-business {
    background-image: url("https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&w=1200&q=88");
    background-position: 54% center;
  }

  /* Lesbarkeit und Berührungsflächen */
  .service-detail-hero-content,
  .audience-landing-page .service-detail-hero-content {
    width: min(100%, 720px);
    padding-inline: 18px;
  }
  .service-detail-hero-content h1 {
    overflow-wrap: normal;
    word-break: normal;
    hyphens: auto;
    text-wrap: balance;
  }
  .btn,
  .detail-phone-link,
  .service-link,
  .audience-service-link,
  .footer-link-button {
    min-height: 48px;
  }
  input,
  select,
  textarea { font-size: 16px; }
}

@media (max-width: 560px) {
  .hero.hero-minimal { min-height: min(560px, calc(100svh - 64px)); }
  .service-detail-page .service-detail-visual,
  .audience-landing-page .audience-hero { min-height: min(540px, calc(100svh - 64px)); }

  .service-detail-hero-content h1 {
    font-size: clamp(2rem, 10.4vw, 3rem);
    line-height: 1.05;
  }
  .service-detail-hero-content .service-detail-hero-text,
  .service-detail-hero-content .hero-subline-minimal {
    max-width: 32rem;
    padding-inline: 4px;
    font-size: .94rem;
    line-height: 1.5;
  }

  .detail-overview-card,
  .detail-process-section,
  .detail-trust-panel,
  .detail-cta-panel,
  .audience-intro-panel,
  .audience-services-panel,
  .business-model-section,
  .audience-assurance-panel,
  .audience-final-cta {
    border-radius: 22px;
  }
  .detail-process-card,
  .detail-mini-card,
  .detail-card,
  .detail-value-card,
  .audience-value-card,
  .audience-situation-grid article,
  .business-object-grid article,
  .business-model-card {
    padding-left: 20px;
    padding-right: 20px;
  }

  .audience-service-link {
    align-items: flex-start;
    gap: 12px;
    padding: 18px;
  }
  .audience-service-link b { flex: 0 0 auto; }

  .consent-panel {
    left: max(8px, env(safe-area-inset-left));
    right: max(8px, env(safe-area-inset-right));
    bottom: max(8px, env(safe-area-inset-bottom));
  }
  .consent-panel__inner {
    max-height: calc(100svh - 16px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
}

@media (max-width: 380px) {
  .service-detail-hero-content h1 { font-size: clamp(1.82rem, 9.6vw, 2.45rem); }
  .service-detail-hero-content .service-detail-hero-text,
  .service-detail-hero-content .hero-subline-minimal { font-size: .9rem; }
}

/* ===== Abschlusskorrektur: sehr schmale Smartphones ===== */
@media (max-width: 380px) {
  .about-audience-grid,
  .about-audience-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
  .about-audience-card h2,
  .about-audience-card p,
  .about-audience-card li {
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: normal;
  }
}


/* ===== Zielgruppenseiten: Angebot anfragen im Titelbild ===== */
.audience-landing-page .audience-hero-offer-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin: 26px auto 0;
  padding: 12px 27px;
  border: 1px solid rgba(255, 255, 255, .46);
  border-radius: 999px;
  background: var(--gold-deep);
  color: #fffdf9;
  font-size: .92rem;
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: .018em;
  text-align: center;
  box-shadow: 0 12px 30px rgba(22, 18, 13, .24);
  transition: transform .22s ease, background-color .22s ease, box-shadow .22s ease;
}
.audience-landing-page .audience-hero-offer-button:hover {
  background: #85602f;
  transform: translateY(-2px);
  box-shadow: 0 17px 36px rgba(22, 18, 13, .30);
}
.audience-landing-page .audience-hero-offer-button:focus-visible {
  outline: 3px solid rgba(255, 253, 249, .88);
  outline-offset: 4px;
}
@media (max-width: 560px) {
  .audience-landing-page .audience-hero-offer-button {
    min-width: 190px;
    min-height: 48px;
    margin-top: 22px;
    padding: 12px 24px;
    font-size: .91rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .audience-landing-page .audience-hero-offer-button {
    transition: none;
  }
}


/* ===== Startseite: Angebot-Button exakt mittig unter dem Untertitel ===== */
.hero.hero-minimal .hero-copy.hero-copy-minimal .home-hero-offer-button {
  display: flex;
  width: fit-content;
  min-width: 190px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin: 26px auto 0;
  padding: 12px 27px;
  border: 1px solid rgba(255, 255, 255, .46);
  border-radius: 999px;
  background: var(--gold-deep);
  color: #fffdf9;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: .92rem;
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: .018em;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(22, 18, 13, .24);
  transition: transform .22s ease, background-color .22s ease, box-shadow .22s ease;
}
.hero.hero-minimal .hero-copy.hero-copy-minimal .home-hero-offer-button:hover {
  background: #85602f;
  transform: translateY(-2px);
  box-shadow: 0 17px 36px rgba(22, 18, 13, .30);
}
.hero.hero-minimal .hero-copy.hero-copy-minimal .home-hero-offer-button:focus-visible {
  outline: 3px solid rgba(255, 253, 249, .88);
  outline-offset: 4px;
}
@media (max-width: 560px) {
  .hero.hero-minimal .hero-copy.hero-copy-minimal .home-hero-offer-button {
    min-width: 190px;
    min-height: 48px;
    margin-top: 22px;
    padding: 12px 24px;
    font-size: .91rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero.hero-minimal .hero-copy.hero-copy-minimal .home-hero-offer-button {
    transition: none;
  }
}


/* ===== Kompaktes Anfrageformular ===== */
#anfrage.inquiry-compact .inquiry-head { align-items:end; }
#anfrage.inquiry-compact .inquiry-head h2 { max-width:720px; }
#anfrage.inquiry-compact .inquiry-head > p { max-width:540px; }
#anfrage .compact-inquiry-shell { max-width:1120px; margin-inline:auto; }
#anfrage .compact-wizard-top { margin-bottom:18px; }
#anfrage .compact-progress { grid-template-columns:repeat(3,minmax(0,1fr)); }
#anfrage .compact-progress .wizard-step { min-width:0; }
#anfrage .compact-reassurance { margin:0 0 24px; text-align:center; }
#anfrage .compact-step-heading { max-width:760px; margin:0 auto 28px; text-align:center; }
#anfrage .compact-step-heading h3 { font-size:clamp(1.75rem,3.2vw,2.55rem); }
#anfrage .compact-fieldset { margin:0 0 26px; padding:0; border:0; }
#anfrage .compact-fieldset > legend { width:100%; margin:0 0 13px; color:var(--ink); font-weight:800; text-align:center; }
#anfrage .compact-choice-grid { max-width:760px; margin-inline:auto; gap:16px; }
#anfrage .compact-choice { min-height:118px; padding:20px; text-align:center; }
#anfrage .compact-choice strong { font-size:1.25rem; }
#anfrage .compact-choice small { margin-inline:auto; }
#anfrage .compact-conditional-card,
#anfrage .compact-detail-card { margin:0 0 26px; padding:24px; border:1px solid rgba(155,116,60,.18); border-radius:22px; background:rgba(255,253,249,.9); box-shadow:0 14px 36px rgba(48,39,27,.055); }
#anfrage .conditional-title { display:flex; align-items:baseline; justify-content:space-between; gap:16px; margin:0 0 18px; }
#anfrage .conditional-title strong { font-family:Georgia,"Times New Roman",serif; font-size:1.28rem; font-weight:600; }
#anfrage .conditional-title span { color:var(--muted); font-size:.8rem; }
#anfrage .compact-service-grid { grid-template-columns:repeat(4,minmax(0,1fr)); gap:12px; }
#anfrage .compact-service-grid label { min-height:94px; align-items:center; justify-content:center; padding:16px; text-align:center; }
#anfrage .compact-service-grid strong { max-width:none; font-size:.86rem; }
#anfrage .compact-other-field { max-width:620px; margin:16px auto 0; }
#anfrage .compact-main-fields { max-width:820px; margin-inline:auto; }
#anfrage .compact-date-field { max-width:400px; width:100%; justify-self:center; }
#anfrage .service-detail-panels { margin-bottom:24px; }
#anfrage .compact-dynamic-panel { margin:0; padding:24px; border:1px solid rgba(155,116,60,.2); border-radius:22px; background:linear-gradient(180deg,#fff,#fbf7f0); box-shadow:0 14px 36px rgba(48,39,27,.055); }
#anfrage .compact-dynamic-panel[hidden] { display:none !important; }
#anfrage .compact-dynamic-panel .panel-heading { margin-bottom:20px; text-align:center; }
#anfrage .compact-dynamic-panel .panel-heading span { font-family:Georgia,"Times New Roman",serif; font-size:1.45rem; }
#anfrage .compact-dynamic-panel .panel-heading p { max-width:580px; margin:8px auto 0; }
#anfrage .compact-message-card { display:grid; gap:20px; }
#anfrage .compact-message-card textarea { min-height:118px; }
#anfrage .compact-upload input[type="file"] { padding:14px; border:1px dashed rgba(155,116,60,.42); background:#fffaf2; }
#anfrage .compact-contact-fields { max-width:820px; margin-inline:auto; }
#anfrage .compact-review { margin-top:24px; }
#anfrage .compact-actions { margin-top:26px; }
#anfrage .compact-actions .btn { min-width:210px; }
#anfrage .compact-security-note { margin-top:15px; text-align:center; }
#anfrage input,
#anfrage select,
#anfrage textarea { font-size:16px; }
#anfrage label[hidden],
#anfrage div[hidden] { display:none !important; }
@media (max-width:900px) {
  #anfrage .compact-service-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (max-width:680px) {
  #anfrage .compact-wizard-top { display:block; }
  #anfrage .wizard-support { margin-top:14px; text-align:center; }
  #anfrage .compact-progress { gap:6px; }
  #anfrage .compact-progress .wizard-step { padding:12px 7px; font-size:.76rem; }
  #anfrage .compact-choice-grid,
  #anfrage .compact-service-grid,
  #anfrage .field-grid.two { grid-template-columns:1fr; }
  #anfrage .compact-choice { min-height:102px; }
  #anfrage .compact-service-grid label { min-height:72px; }
  #anfrage .compact-conditional-card,
  #anfrage .compact-detail-card,
  #anfrage .compact-dynamic-panel { padding:20px 16px; border-radius:18px; }
  #anfrage .conditional-title { display:block; text-align:center; }
  #anfrage .conditional-title span { display:block; margin-top:5px; }
  #anfrage .compact-actions { display:grid; grid-template-columns:1fr; gap:10px; }
  #anfrage .compact-actions > span { display:none; }
  #anfrage .compact-actions .btn { width:100%; min-width:0; }
}

/* ===== Anfrageformular – finaler Premium-Fragebogen ===== */
#anfrage.inquiry-premium {
  background:
    radial-gradient(circle at 8% 8%, rgba(198,161,91,.10), transparent 28%),
    linear-gradient(180deg,#fbf7ef 0%,#fffdf9 52%,#f8f1e7 100%);
}
#anfrage .premium-inquiry-shell {
  overflow: hidden;
  border: 1px solid rgba(155,116,60,.22);
  border-radius: 32px;
  background: rgba(255,255,255,.97);
  box-shadow: 0 34px 90px rgba(43,34,24,.13);
}
#anfrage .premium-wizard-top {
  padding: 24px 28px;
  border-bottom: 1px solid rgba(155,116,60,.14);
  background: linear-gradient(135deg,#1d1a16,#0f0e0c);
}
#anfrage .premium-progress {
  gap: 10px;
}
#anfrage .premium-progress .wizard-step {
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.05);
}
#anfrage .premium-progress .wizard-step.active {
  color: #1c1710;
  border-color: #dfc080;
  background: linear-gradient(180deg,#ebd39f,#c89c4c);
  box-shadow: 0 10px 26px rgba(198,161,91,.22);
}
#anfrage .premium-reassurance {
  margin: 0;
  padding: 18px 30px;
  border-bottom: 1px solid rgba(155,116,60,.12);
  color: #625a50;
  background: #fffaf2;
  text-align: center;
}
#anfrage .form-step {
  padding: clamp(30px,5vw,62px);
}
#anfrage .premium-step-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}
#anfrage .premium-step-heading small {
  display: block;
  margin-bottom: 10px;
  color: #9b742f;
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .18em;
  text-transform: uppercase;
}
#anfrage .premium-step-heading h3 {
  margin: 0;
  font-family: Georgia,"Times New Roman",serif;
  font-size: clamp(2rem,3.6vw,3.15rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.035em;
}
#anfrage .premium-step-heading p {
  max-width: 640px;
  margin: 15px auto 0;
  color: #625a50;
  line-height: 1.75;
}
#anfrage [hidden] { display: none !important; }
#anfrage .premium-fieldset,
#anfrage .premium-conditional-card,
#anfrage .premium-date-card,
#anfrage .premium-contact-card,
#anfrage .premium-detail-card {
  margin: 0 0 24px;
  padding: clamp(22px,3vw,32px);
  border: 1px solid rgba(155,116,60,.16);
  border-radius: 24px;
  background: linear-gradient(180deg,rgba(255,255,255,.99),rgba(252,248,241,.96));
  box-shadow: 0 16px 42px rgba(48,39,27,.065);
}
#anfrage .premium-fieldset > legend,
#anfrage .premium-topic-card > legend {
  width: 100%;
  margin: 0 0 16px;
  padding: 0;
  color: #211c16;
  font-family: Georgia,"Times New Roman",serif;
  font-size: 1.18rem;
  font-weight: 600;
}
#anfrage .fieldset-help {
  margin: -8px 0 18px;
  color: #746b60;
  font-size: .9rem;
}
#anfrage .premium-choice-grid {
  display: grid;
  gap: 14px;
}
#anfrage .two-choice-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
#anfrage .premium-choice,
#anfrage .premium-service-choice {
  position: relative;
  min-height: 74px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 18px 20px 18px 52px;
  border: 1px solid rgba(155,116,60,.18);
  border-radius: 18px;
  background: #fff;
  cursor: pointer;
  transition: transform .2s ease,border-color .2s ease,box-shadow .2s ease,background .2s ease;
}
#anfrage .premium-choice:hover,
#anfrage .premium-service-choice:hover {
  transform: translateY(-2px);
  border-color: rgba(155,116,60,.38);
  box-shadow: 0 14px 32px rgba(48,39,27,.08);
}
#anfrage .premium-choice input,
#anfrage .premium-service-choice input {
  position: absolute;
  left: 20px;
  top: 50%;
  width: 20px;
  height: 20px;
  margin: 0;
  transform: translateY(-50%);
  accent-color: #a77d32;
}
#anfrage .premium-choice:has(input:checked),
#anfrage .premium-service-choice:has(input:checked) {
  border-color: #b78a39;
  background: linear-gradient(180deg,#fffdf8,#fbf1df);
  box-shadow: 0 16px 38px rgba(155,116,60,.15);
}
#anfrage .premium-choice strong,
#anfrage .premium-service-choice strong { color:#241e17; }
#anfrage .premium-choice small { color:#72695e; line-height:1.45; }
#anfrage .premium-choice-large { min-height: 104px; }
#anfrage .premium-inline-field {
  display: block;
  max-width: 560px;
  margin: 20px auto 0;
}
#anfrage .premium-service-grid {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 12px;
}
#anfrage .premium-service-choice {
  min-height: 92px;
  padding: 18px 14px 18px 45px;
  text-align: left;
}
#anfrage .premium-service-choice input { left: 15px; }
#anfrage .premium-core-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
#anfrage .compact-choice-fieldset { margin-bottom: 24px; }
#anfrage .premium-pill-grid,
#anfrage .yes-no-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 10px;
}
#anfrage .premium-pill-grid label,
#anfrage .yes-no-grid label,
#anfrage .premium-option-list label {
  position: relative;
  cursor: pointer;
}
#anfrage .premium-pill-grid input,
#anfrage .yes-no-grid input,
#anfrage .premium-option-list input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
#anfrage .premium-pill-grid span,
#anfrage .yes-no-grid span,
#anfrage .premium-option-list span {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border: 1px solid rgba(155,116,60,.18);
  border-radius: 14px;
  background: #fff;
  color: #4d463e;
  text-align: center;
  transition: border-color .2s ease,background .2s ease,box-shadow .2s ease,transform .2s ease;
}
#anfrage .premium-pill-grid label:hover span,
#anfrage .yes-no-grid label:hover span,
#anfrage .premium-option-list label:hover span { transform:translateY(-1px); border-color:rgba(155,116,60,.36); }
#anfrage .premium-pill-grid input:checked + span,
#anfrage .yes-no-grid input:checked + span,
#anfrage .premium-option-list input:checked + span {
  border-color: #aa7e32;
  color: #2b2114;
  background: linear-gradient(180deg,#fffaf0,#f2dfb8);
  box-shadow: 0 9px 22px rgba(155,116,60,.13);
  font-weight: 750;
}
#anfrage .premium-date-card {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(340px,.8fr);
  gap: 24px;
  align-items: center;
}
#anfrage .premium-date-card > div:first-child strong,
#anfrage .conditional-title strong { display:block; font-family:Georgia,"Times New Roman",serif; font-size:1.2rem; }
#anfrage .premium-date-card > div:first-child span,
#anfrage .conditional-title span { display:block; margin-top:6px; color:#746b60; font-size:.9rem; }
#anfrage .date-choice-row { display:grid; gap:12px; }
#anfrage .date-input-label span { display:block; margin-bottom:7px; font-weight:700; }
#anfrage .unknown-date-choice {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border: 1px solid rgba(155,116,60,.18);
  border-radius: 14px;
  background:#fff;
  cursor:pointer;
}
#anfrage .unknown-date-choice input { width:19px; height:19px; accent-color:#a77d32; }
#anfrage .premium-dynamic-panel {
  margin-bottom: 28px;
  padding: clamp(22px,3vw,34px);
  border: 1px solid rgba(155,116,60,.22);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%,rgba(198,161,91,.10),transparent 28%),
    linear-gradient(180deg,#fff,#fcf8f1);
  box-shadow: 0 20px 54px rgba(48,39,27,.08);
}
#anfrage .premium-dynamic-panel .panel-heading {
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(155,116,60,.15);
  text-align: center;
}
#anfrage .premium-dynamic-panel .panel-heading span {
  display:block;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(1.45rem,2.6vw,2rem);
  color:#241e17;
}
#anfrage .premium-dynamic-panel .panel-heading p { margin:8px 0 0; color:#70675c; }
#anfrage .premium-topic-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 18px;
}
#anfrage .premium-topic-grid.three-topics { grid-template-columns: repeat(3,minmax(0,1fr)); }
#anfrage .premium-topic-card {
  min-width: 0;
  margin: 0;
  padding: 22px;
  border: 1px solid rgba(155,116,60,.14);
  border-radius: 20px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 12px 30px rgba(48,39,27,.045);
}
#anfrage .premium-topic-card h4 {
  margin: 0 0 16px;
  font-family:Georgia,"Times New Roman",serif;
  font-size:1.15rem;
}
#anfrage .premium-topic-wide { grid-column: 1 / -1; }
#anfrage .premium-option-list { display:grid; grid-template-columns:1fr; gap:8px; }
#anfrage .premium-option-list span { justify-content:flex-start; text-align:left; }
#anfrage .address-pair-grid,
#anfrage .access-grid {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
}
#anfrage .mini-address-card,
#anfrage .mini-access-card {
  padding:18px;
  border:1px solid rgba(155,116,60,.13);
  border-radius:16px;
  background:#fffaf2;
}
#anfrage .mini-address-card > strong,
#anfrage .mini-access-card > strong { display:block; margin-bottom:14px; color:#765722; }
#anfrage .mini-access-card fieldset { margin:14px 0 0; padding:0; border:0; }
#anfrage .mini-access-card legend { margin-bottom:9px; font-weight:700; }
#anfrage .premium-message-upload-grid {
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:20px;
  margin-top:26px;
}
#anfrage .upload-card p { margin:10px 0 0; color:#746b60; font-size:.9rem; line-height:1.6; }
#anfrage .premium-contact-card { margin-bottom:24px; }
#anfrage .premium-review {
  margin-top:24px;
  border-color:rgba(155,116,60,.25);
  background:linear-gradient(135deg,#1d1a16,#100f0d);
  color:#fff;
}
#anfrage .premium-review h4 { color:#fff; }
#anfrage .premium-review p { color:rgba(255,255,255,.7); }
#anfrage .premium-review .summary-box dt { color:#d9bb7e; }
#anfrage .premium-review .summary-box dd { color:#fff; }
#anfrage .premium-actions {
  margin-top:28px;
  align-items:center;
}
#anfrage input[type="text"],
#anfrage input[type="tel"],
#anfrage input[type="email"],
#anfrage input[type="date"],
#anfrage input[type="number"],
#anfrage select,
#anfrage textarea,
#anfrage input[type="file"] {
  min-height:52px;
  border:1px solid rgba(115,91,52,.22);
  border-radius:14px;
  background:#fff;
}
#anfrage textarea { min-height:132px; resize:vertical; }
#anfrage input:focus,
#anfrage select:focus,
#anfrage textarea:focus {
  outline:none;
  border-color:#aa7e32;
  box-shadow:0 0 0 4px rgba(170,126,50,.11);
}
@media (max-width: 1080px) {
  #anfrage .premium-service-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  #anfrage .premium-topic-grid.three-topics { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (max-width: 820px) {
  #anfrage .premium-wizard-top { padding:20px; }
  #anfrage .premium-progress { display:grid; grid-template-columns:1fr; }
  #anfrage .premium-progress .wizard-step { width:100%; }
  #anfrage .wizard-support { margin-top:14px; text-align:center; }
  #anfrage .premium-core-grid,
  #anfrage .premium-date-card,
  #anfrage .premium-message-upload-grid,
  #anfrage .premium-topic-grid,
  #anfrage .premium-topic-grid.three-topics,
  #anfrage .address-pair-grid,
  #anfrage .access-grid { grid-template-columns:1fr; }
  #anfrage .premium-topic-wide { grid-column:auto; }
}
@media (max-width: 620px) {
  #anfrage .form-step { padding:26px 16px; }
  #anfrage .premium-reassurance { padding:15px 16px; }
  #anfrage .two-choice-grid,
  #anfrage .premium-service-grid,
  #anfrage .premium-pill-grid,
  #anfrage .yes-no-grid { grid-template-columns:1fr; }
  #anfrage .premium-fieldset,
  #anfrage .premium-conditional-card,
  #anfrage .premium-date-card,
  #anfrage .premium-contact-card,
  #anfrage .premium-detail-card,
  #anfrage .premium-dynamic-panel { padding:19px 15px; border-radius:20px; }
  #anfrage .premium-topic-card { padding:17px 13px; }
  #anfrage .premium-choice,
  #anfrage .premium-service-choice { min-height:68px; padding-left:48px; }
  #anfrage .premium-actions { display:grid; grid-template-columns:1fr; gap:10px; }
  #anfrage .premium-actions .btn { width:100%; }
  #anfrage input,
  #anfrage select,
  #anfrage textarea { font-size:16px; }
}


/* ===== Anfrageformular – Upload- und Abschlussfeinschliff ===== */
#anfrage .upload-heading {
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:12px;
  margin-bottom:4px;
}
#anfrage .upload-heading strong {
  color:#241e17;
  font-family:Georgia,"Times New Roman",serif;
  font-size:1.17rem;
  font-weight:600;
}
#anfrage .premium-file-grid {
  display:grid;
  gap:10px;
  margin-top:16px;
}
#anfrage .premium-file-grid label {
  padding:13px 14px;
  border:1px solid rgba(155,116,60,.15);
  border-radius:15px;
  background:#fffaf2;
  color:#4e463d;
  font-size:.91rem;
  font-weight:700;
}
#anfrage .premium-file-grid input[type="file"] {
  width:100%;
  min-height:46px;
  margin-top:8px;
  padding:8px;
  background:#fff;
  font-weight:500;
}
#anfrage .upload-limit-note {
  min-height:1.4em;
  color:#746b60;
}
#anfrage .upload-limit-note.upload-error {
  color:#9a3229;
  font-weight:700;
}
#anfrage .premium-service-choice:has(input:focus-visible),
#anfrage .premium-choice:has(input:focus-visible),
#anfrage .premium-option-list label:has(input:focus-visible) span,
#anfrage .premium-pill-grid label:has(input:focus-visible) span,
#anfrage .yes-no-grid label:has(input:focus-visible) span {
  outline:3px solid rgba(170,126,50,.28);
  outline-offset:3px;
}
@media (max-width:620px) {
  #anfrage .upload-heading { align-items:flex-start; flex-direction:column; gap:2px; }
}

/* ===== Anfrageformular – großer Premium-Kalender (ca. 200 %) ===== */
#anfrage .large-date-trigger {
  width:100%;
  min-height:62px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:14px 18px;
  border:1px solid rgba(115,91,52,.25);
  border-radius:16px;
  color:#5f574d;
  background:linear-gradient(180deg,#fff,#fdf9f2);
  box-shadow:0 10px 26px rgba(48,39,27,.055);
  font:inherit;
  text-align:left;
  cursor:pointer;
  transition:border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
#anfrage .large-date-trigger:hover {
  transform:translateY(-1px);
  border-color:rgba(170,126,50,.48);
  box-shadow:0 14px 32px rgba(48,39,27,.09);
}
#anfrage .large-date-trigger:focus-visible {
  outline:none;
  border-color:#aa7e32;
  box-shadow:0 0 0 4px rgba(170,126,50,.12), 0 14px 32px rgba(48,39,27,.09);
}
#anfrage .large-date-trigger.has-value { color:#251e16; font-weight:750; }
#anfrage .large-date-trigger.has-error { border-color:#a43f35; box-shadow:0 0 0 4px rgba(164,63,53,.10); }
#anfrage .large-date-trigger:disabled { opacity:.5; cursor:not-allowed; transform:none; }
#anfrage .large-date-trigger-value { margin:0; color:inherit; font-size:1rem; }
#anfrage .large-date-trigger-icon {
  flex:0 0 auto;
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  border-radius:12px;
  color:#fff;
  background:linear-gradient(135deg,#b68c3f,#8e6829);
  box-shadow:0 8px 18px rgba(142,104,41,.22);
  font-size:1.25rem;
}
#anfrage .date-validation-message {
  min-height:1.35em;
  display:block;
  margin-top:7px;
  color:#96382f;
  font-size:.84rem;
  line-height:1.4;
}
.premium-calendar-dialog {
  width:min(720px,calc(100vw - 32px));
  max-width:none;
  max-height:calc(100vh - 32px);
  padding:0;
  border:1px solid rgba(213,177,105,.5);
  border-radius:30px;
  color:#211b15;
  background:#fffdf9;
  box-shadow:0 42px 120px rgba(17,13,9,.36);
  overflow:auto;
}
.premium-calendar-dialog::backdrop {
  background:rgba(15,12,9,.58);
  -webkit-backdrop-filter:blur(6px);
  backdrop-filter:blur(6px);
}
.premium-calendar-shell { padding:34px; }
.premium-calendar-heading {
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:24px;
  padding-bottom:24px;
  border-bottom:1px solid rgba(155,116,60,.18);
}
.premium-calendar-heading small {
  display:block;
  margin-bottom:7px;
  color:#9a742f;
  font-size:.76rem;
  font-weight:850;
  letter-spacing:.17em;
  text-transform:uppercase;
}
.premium-calendar-heading h4 {
  margin:0;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(1.9rem,4vw,2.7rem);
  font-weight:500;
  letter-spacing:-.035em;
}
.calendar-close,
.calendar-nav-button {
  flex:0 0 auto;
  display:grid;
  place-items:center;
  border:1px solid rgba(155,116,60,.22);
  color:#44382b;
  background:#fff;
  cursor:pointer;
  transition:background .2s ease,border-color .2s ease,transform .2s ease;
}
.calendar-close { width:48px;height:48px;border-radius:50%;font-size:2rem;line-height:1; }
.calendar-nav-button { width:56px;height:56px;border-radius:18px;font-size:2rem; }
.calendar-close:hover,
.calendar-nav-button:hover { transform:translateY(-1px);border-color:#b18436;background:#fff8eb; }
.premium-calendar-navigation {
  display:grid;
  grid-template-columns:56px 1fr 56px;
  align-items:center;
  gap:20px;
  margin:28px 0 22px;
}
.premium-calendar-navigation strong {
  text-align:center;
  font-family:Georgia,"Times New Roman",serif;
  font-size:1.65rem;
  font-weight:500;
  text-transform:capitalize;
}
.premium-calendar-weekdays,
.premium-calendar-days {
  display:grid;
  grid-template-columns:repeat(7,minmax(0,1fr));
  gap:9px;
}
.premium-calendar-weekdays { margin-bottom:10px; }
.premium-calendar-weekdays span {
  min-height:34px;
  display:grid;
  place-items:center;
  color:#887b6b;
  font-size:.82rem;
  font-weight:800;
  text-transform:uppercase;
}
.premium-calendar-day {
  min-width:0;
  aspect-ratio:1;
  min-height:70px;
  display:grid;
  place-items:center;
  border:1px solid rgba(155,116,60,.14);
  border-radius:18px;
  color:#30271d;
  background:#fff;
  font:700 1.08rem/1 Inter,ui-sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  cursor:pointer;
  transition:transform .16s ease,border-color .16s ease,background .16s ease,box-shadow .16s ease;
}
.premium-calendar-day:hover:not(:disabled) {
  transform:translateY(-2px);
  border-color:rgba(170,126,50,.55);
  background:#fff8e9;
  box-shadow:0 10px 24px rgba(73,55,27,.10);
}
.premium-calendar-day.outside-month { color:#aca397;background:#fbf8f3; }
.premium-calendar-day.past-day { opacity:.32;cursor:not-allowed; }
.premium-calendar-day.today { border-color:#ad8338;box-shadow:inset 0 0 0 2px rgba(173,131,56,.14); }
.premium-calendar-day.selected {
  border-color:#8e6829;
  color:#fff;
  background:linear-gradient(135deg,#bc9349,#8d6627);
  box-shadow:0 12px 26px rgba(142,104,41,.25);
}
.premium-calendar-day:focus-visible { outline:3px solid rgba(170,126,50,.28);outline-offset:2px; }
.premium-calendar-footer {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  margin-top:28px;
  padding-top:24px;
  border-top:1px solid rgba(155,116,60,.18);
}
.calendar-footer-actions { display:flex;gap:12px; }
.calendar-secondary-button,
.calendar-primary-button {
  min-height:52px;
  padding:0 21px;
  border-radius:999px;
  font:750 .94rem/1 Inter,ui-sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  cursor:pointer;
}
.calendar-secondary-button { border:1px solid rgba(155,116,60,.25);color:#574733;background:#fff; }
.calendar-primary-button { border:1px solid #936c2b;color:#fff;background:linear-gradient(135deg,#b68c3f,#8e6829);box-shadow:0 10px 24px rgba(142,104,41,.22); }
@media (max-width:720px) {
  .premium-calendar-dialog { width:calc(100vw - 18px);max-height:calc(100dvh - 18px);border-radius:24px; }
  .premium-calendar-shell { padding:22px 15px 18px; }
  .premium-calendar-heading { padding:0 3px 18px; }
  .calendar-close { width:44px;height:44px; }
  .premium-calendar-navigation { grid-template-columns:48px 1fr 48px;gap:10px;margin:20px 0 16px; }
  .calendar-nav-button { width:48px;height:48px;border-radius:15px; }
  .premium-calendar-navigation strong { font-size:1.35rem; }
  .premium-calendar-weekdays,
  .premium-calendar-days { gap:5px; }
  .premium-calendar-day { min-height:46px;border-radius:13px;font-size:.95rem; }
  .premium-calendar-footer { align-items:stretch;flex-direction:column;margin-top:20px;padding-top:18px; }
  .calendar-footer-actions { display:grid;grid-template-columns:1fr 1fr; }
  .calendar-secondary-button,
  .calendar-primary-button { width:100%;padding:0 14px; }
}
@media (max-width:390px) {
  .premium-calendar-shell { padding-inline:10px; }
  .premium-calendar-day { min-height:42px;border-radius:11px; }
  .premium-calendar-weekdays,
  .premium-calendar-days { gap:4px; }
}


/* ===== Standortseiten und anklickbare Regionen ===== */
.location-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}
.location-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.location-card-link:focus-visible {
  outline: 3px solid rgba(181,138,58,.45);
  outline-offset: 4px;
}
.location-card-primary {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0,1.55fr) minmax(320px,.75fr);
  min-height: 360px;
  border-color: rgba(181,138,58,.42);
  background: linear-gradient(135deg,#fffdf9,#f7efe2);
}
.location-card-primary .location-image { min-height: 360px; }
.location-card-primary .location-body {
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px,4vw,54px);
}
.location-card-primary .location-body h3 { font-size: clamp(1.75rem,3vw,2.65rem); }
.location-eyebrow {
  margin-bottom: 13px;
  color: var(--gold-deep);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.location-card-action {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 20px;
  color: var(--gold-deep);
  font-weight: 800;
}
.location-card-action b { transition: transform .25s ease; }
.location-card-link:hover .location-card-action b { transform: translateX(5px); }
.city-hero { min-height: 700px; }
.city-hero-munich { background-image:url("https://images.unsplash.com/photo-1577653993857-3718d1f1f997?auto=format&fit=crop&w=2200&q=94"); background-position:center 54%; }
.city-hero-augsburg { background-image:url("https://images.unsplash.com/photo-1591690765263-adc20a0c5907?auto=format&fit=crop&w=2200&q=94"); background-position:center 48%; }
.city-hero-nuremberg { background-image:url("https://images.unsplash.com/photo-1596037559554-9da56fcdae24?auto=format&fit=crop&w=2200&q=94"); background-position:center 52%; }
.city-hero-stuttgart { background-image:url("https://images.unsplash.com/photo-1559565866-9871f78ccd78?auto=format&fit=crop&w=2200&q=94"); background-position:center 52%; }
.city-main-label {
  display: table;
  margin: 0 auto 18px;
  padding: 9px 14px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 999px;
  background: rgba(20,18,15,.22);
  color:#fffdf9;
  font-size:.72rem;
  font-weight:850;
  letter-spacing:.14em;
  text-transform:uppercase;
  backdrop-filter: blur(8px);
}
.city-page-container { max-width: 1240px; }
.city-switcher {
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:10px;
  margin: 0 0 28px;
}
.city-switch-link {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:10px 17px;
  border:1px solid rgba(155,116,60,.22);
  border-radius:999px;
  background:#fffdf9;
  color:#4e463d;
  font-size:.88rem;
  font-weight:700;
  box-shadow:0 8px 24px rgba(48,39,27,.055);
}
.city-switch-link:hover,.city-switch-link.is-current {
  border-color:#ad8443;
  background:#ad8443;
  color:#fff;
}
.city-intro-panel { padding-bottom: clamp(36px,5vw,58px); }
.city-audience-grid {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:22px;
  margin-top:34px;
}
.city-audience-card {
  padding:clamp(28px,4vw,42px);
  border:1px solid rgba(155,116,60,.18);
  border-radius:26px;
  background:linear-gradient(180deg,#fff,#faf5ec);
  box-shadow:0 18px 48px rgba(48,39,27,.075);
  text-align:left;
}
.city-audience-card > span {
  display:inline-block;
  margin-bottom:14px;
  color:var(--gold-deep);
  font-size:.74rem;
  font-weight:850;
  letter-spacing:.16em;
  text-transform:uppercase;
}
.city-audience-card h3 { margin:0; font-family:Georgia,"Times New Roman",serif; font-size:clamp(1.45rem,2.5vw,2rem); font-weight:500; }
.city-audience-card p { margin:16px 0 0; color:#5d564d; line-height:1.75; }
.city-audience-card a { display:inline-flex; gap:9px; margin-top:20px; color:var(--gold-deep); font-weight:800; }
.city-audience-card-dark { color:#fff; background:linear-gradient(135deg,#1f1b17,#0e0d0b); }
.city-audience-card-dark > span { color:#e2c384; }
.city-audience-card-dark h3 { color:#fff; }
.city-audience-card-dark p { color:rgba(255,255,255,.76); }
.city-audience-card-dark a { color:#e2c384; }
.city-projects-section { padding: clamp(54px,7vw,82px) 0 6px; }
.city-project-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:20px; margin-top:32px; }
.city-project-card {
  min-height:280px;
  padding:30px 26px;
  border:1px solid rgba(155,116,60,.17);
  border-radius:24px;
  background:linear-gradient(180deg,#fffdf9,#f8f1e6);
  box-shadow:0 16px 42px rgba(48,39,27,.07);
}
.city-project-card span { display:inline-block; margin-bottom:18px; color:var(--gold-deep); font-size:.7rem; font-weight:850; letter-spacing:.15em; text-transform:uppercase; }
.city-project-card h3 { margin:0; font-family:Georgia,"Times New Roman",serif; font-size:1.38rem; font-weight:500; line-height:1.25; }
.city-project-card p { margin:16px 0 0; color:#5d564d; line-height:1.74; }
.city-assurance-panel { margin-top:46px; }
.city-final-cta { margin-top:36px; }
@media (max-width: 980px) {
  .location-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .location-card-primary { grid-column:1/-1; grid-template-columns:1fr 1fr; }
  .location-card:not(.location-card-primary):last-child { grid-column:1/-1; width:calc(50% - 10px); justify-self:center; }
  .city-project-grid { grid-template-columns:1fr; }
  .city-project-card { min-height:0; }
}
@media (max-width: 760px) {
  .location-grid { grid-template-columns:1fr; }
  .location-card-primary { grid-column:auto; display:block; min-height:0; }
  .location-card-primary .location-image { min-height:245px; }
  .location-card:not(.location-card-primary):last-child { grid-column:auto; width:100%; }
  .city-audience-grid { grid-template-columns:1fr; }
  .city-switcher { justify-content:flex-start; overflow-x:auto; flex-wrap:nowrap; padding:0 2px 8px; scrollbar-width:none; }
  .city-switcher::-webkit-scrollbar { display:none; }
  .city-switch-link { flex:0 0 auto; }
  .city-hero { min-height:620px; }
}
@media (max-width: 560px) {
  .city-hero { min-height:560px; }
  .city-audience-card,.city-project-card { padding:25px 21px; border-radius:21px; }
  .city-main-label { font-size:.65rem; }
}


/* ===== Standortseiten – individuell, kompakt und faktengestützt ===== */
.location-grid{
  display:grid;
  grid-template-columns:repeat(12,minmax(0,1fr));
  gap:22px;
}
.location-card-primary{grid-column:span 12;}
.location-card-secondary{grid-column:span 6;}
.location-card-established,.location-card-planned{grid-column:span 3;}
.location-card-secondary,.location-card-established,.location-card-planned{
  display:flex;
  flex-direction:column;
  min-width:0;
}
.location-card-secondary .location-image{min-height:300px;}
.location-card-established .location-image,.location-card-planned .location-image{min-height:240px;}
.location-card-established .location-body,.location-card-planned .location-body{padding:25px 22px;}
.location-card-established .location-body h3,.location-card-planned .location-body h3{font-size:1.55rem;}
.location-card-established .location-body p,.location-card-planned .location-body p{font-size:.92rem;line-height:1.65;}
.city-hero{
  min-height:clamp(590px,52vw,740px);
  background-repeat:no-repeat;
  background-size:cover;
  background-color:#17130f;
}
.city-hero-munich{background-position:center 58%;}
.city-hero-augsburg{background-position:center 44%;}
.city-hero-nuremberg{background-position:center 47%;}
.city-hero-stuttgart{background-position:center 46%;}
.city-intro-refined{padding:clamp(38px,5vw,60px);}
.city-intro-refined .audience-lead{max-width:880px;margin-inline:auto;}
.city-facts-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
  margin-top:32px;
}
.city-facts-grid.city-facts-main{grid-template-columns:repeat(4,minmax(0,1fr));}
.city-fact-card{
  min-height:145px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:24px 20px;
  border:1px solid rgba(155,116,60,.18);
  border-radius:20px;
  background:linear-gradient(180deg,#fff,#faf5ec);
  box-shadow:0 12px 32px rgba(48,39,27,.055);
  text-align:center;
}
.city-fact-card strong{
  display:block;
  color:#8d682a;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(1.65rem,3vw,2.35rem);
  font-weight:500;
  line-height:1.05;
}
.city-fact-card span{margin-top:10px;color:#5e574e;font-size:.86rem;line-height:1.45;}
.city-source-note{max-width:980px;margin:18px auto 0;color:#7a7167;font-size:.72rem;line-height:1.55;text-align:center;}
.city-source-note span{white-space:normal;}
.city-source-note a{color:#8c682e;text-decoration:underline;text-underline-offset:3px;}
.city-audience-refined{margin-top:28px;}
.city-services-refined{margin-top:46px;}
.city-services-refined .audience-service-links{grid-template-columns:repeat(2,minmax(0,1fr));}
.city-tier-main .city-services-refined .audience-service-link:last-child{grid-column:1/-1;width:calc(50% - 10px);justify-self:center;}
.city-process-refined{margin-top:42px;}
.city-process-grid-three{grid-template-columns:repeat(3,minmax(0,1fr));}
.city-process-grid-three .detail-process-card{min-height:220px;}
.city-projects-refined{padding-top:clamp(48px,6vw,72px);}
.city-project-grid-2{grid-template-columns:repeat(2,minmax(0,1fr));max-width:920px;margin-inline:auto;}
.city-project-grid-3{grid-template-columns:repeat(3,minmax(0,1fr));}
.city-project-card{min-height:0;}
.city-project-number{
  display:block;
  margin:0 0 14px;
  color:#8d682a;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(1.7rem,3vw,2.4rem);
  font-weight:500;
  line-height:1;
}
.city-assurance-refined{margin-top:42px;}
.city-final-refined{margin-top:30px;}
@media(max-width:1100px){
  .location-card-secondary{grid-column:span 12;}
  .location-card-established,.location-card-planned{grid-column:span 6;}
  .city-facts-grid.city-facts-main{grid-template-columns:repeat(2,minmax(0,1fr));}
}
@media(max-width:820px){
  .location-grid{grid-template-columns:1fr;}
  .location-card-primary,.location-card-secondary,.location-card-established,.location-card-planned{grid-column:auto;display:block;}
  .location-card-primary .location-image,.location-card-secondary .location-image,.location-card-established .location-image,.location-card-planned .location-image{min-height:250px;}
  .city-facts-grid,.city-facts-grid.city-facts-main{grid-template-columns:repeat(2,minmax(0,1fr));}
  .city-services-refined .audience-service-links{grid-template-columns:1fr;}
  .city-tier-main .city-services-refined .audience-service-link:last-child{grid-column:auto;width:100%;}
  .city-process-grid-three{grid-template-columns:1fr;}
  .city-process-grid-three .detail-process-card{min-height:0;}
  .city-project-grid-2,.city-project-grid-3{grid-template-columns:1fr;max-width:none;}
  .city-hero{min-height:620px;background-size:auto 100%;}
  .city-hero-munich{background-position:48% center;}
  .city-hero-augsburg{background-position:50% center;}
  .city-hero-nuremberg{background-position:50% center;}
  .city-hero-stuttgart{background-position:55% center;}
}
@media(max-width:560px){
  .city-hero{min-height:560px;background-size:cover;}
  .city-facts-grid,.city-facts-grid.city-facts-main{grid-template-columns:1fr;}
  .city-fact-card{min-height:112px;padding:20px 18px;}
  .city-intro-refined{padding:30px 20px;}
  .city-source-note{text-align:left;}
  .city-hero-munich{background-position:46% center;}
  .city-hero-augsburg{background-position:48% center;}
  .city-hero-nuremberg{background-position:48% center;}
  .city-hero-stuttgart{background-position:58% center;}
}


/* ===== Standortseiten – Unternehmensfakten und klare Gewichtung ===== */
.location-section .location-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.location-section .location-card-primary {
  grid-column: 1 / -1;
  min-height: 390px;
}
.location-section .location-card-regional {
  grid-column: auto;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.location-section .location-card-regional .location-image {
  min-height: 270px;
  background-size: cover;
  background-repeat: no-repeat;
}
.location-section .location-card-regional .location-body {
  flex: 1;
  padding: 28px 24px;
}
.location-section .location-card-regional .location-body h3 {
  font-size: clamp(1.5rem, 2.2vw, 1.9rem);
}
.city-company-note {
  max-width: 880px;
  color: #746b61;
  font-size: .78rem;
  line-height: 1.6;
}
.city-project-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.city-project-number {
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.15;
}
.city-hero,
.location-image {
  background-repeat: no-repeat;
  background-size: cover;
}
.city-hero-munich, .location-munich { background-position: center 58%; }
.city-hero-augsburg, .location-augsburg { background-position: center 46%; }
.city-hero-nuremberg, .location-nuremberg { background-position: center 48%; }
.city-hero-stuttgart, .location-stuttgart { background-position: center 47%; }
@media (max-width: 980px) {
  .location-section .location-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .location-section .location-card-primary { grid-column: 1 / -1; }
  .location-section .location-card-regional:last-child { grid-column: 1 / -1; width: calc(50% - 11px); justify-self: center; }
  .city-project-grid-3 { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .location-section .location-grid { grid-template-columns: 1fr; }
  .location-section .location-card-primary,
  .location-section .location-card-regional,
  .location-section .location-card-regional:last-child { grid-column: auto; width: 100%; display: block; }
  .location-section .location-card-primary .location-image,
  .location-section .location-card-regional .location-image { min-height: 245px; }
  .city-hero { background-size: cover; }
  .city-hero-munich, .location-munich { background-position: 46% center; }
  .city-hero-augsburg, .location-augsburg { background-position: 48% center; }
  .city-hero-nuremberg, .location-nuremberg { background-position: 49% center; }
  .city-hero-stuttgart, .location-stuttgart { background-position: 57% center; }
}
@media (max-width: 390px) {
  .city-hero-munich, .location-munich { background-position: 44% center; }
  .city-hero-augsburg, .location-augsburg { background-position: 47% center; }
  .city-hero-nuremberg, .location-nuremberg { background-position: 48% center; }
  .city-hero-stuttgart, .location-stuttgart { background-position: 60% center; }
}


/* =========================================================
   Region pages v4 – focused, premium, conversion-oriented
   ========================================================= */
.region-v4-page{background:#f7f3ec;color:#171715;}
.region-v4-page main{overflow:hidden;}
.region-v4-kicker{display:inline-flex;align-items:center;gap:.55rem;font-size:.78rem;font-weight:800;letter-spacing:.14em;text-transform:uppercase;color:#8b6830;}
.region-v4-kicker::before{content:"";width:1.65rem;height:1px;background:currentColor;opacity:.72;}
.region-v4-hero{padding:148px 0 86px;background:linear-gradient(135deg,#131310 0%,#24221d 58%,#3a3023 100%);color:#fff;}
.region-v4-hero-grid{display:grid;grid-template-columns:minmax(0,.95fr) minmax(440px,1.05fr);align-items:center;gap:clamp(42px,6vw,92px);}
.region-v4-hero-copy{max-width:720px;}
.region-v4-hero-copy .region-v4-kicker{color:#d7b56e;}
.region-v4-hero-copy h1{margin:20px 0 22px;font-size:clamp(2.85rem,5.1vw,5.55rem);line-height:.98;letter-spacing:-.052em;max-width:12ch;color:#fff;}
.region-v4-hero-copy p{max-width:650px;margin:0;color:rgba(255,255,255,.78);font-size:clamp(1.05rem,1.45vw,1.28rem);line-height:1.75;}
.region-v4-hero-actions{display:flex;align-items:center;gap:24px;flex-wrap:wrap;margin-top:34px;}
.region-v4-text-link{color:#fff;font-weight:750;text-decoration:none;border-bottom:1px solid rgba(255,255,255,.35);padding-bottom:5px;}
.region-v4-hero-visual{position:relative;margin:0;min-height:500px;padding:18px;border:1px solid rgba(255,255,255,.16);border-radius:34px;background:rgba(255,255,255,.06);box-shadow:0 32px 80px rgba(0,0,0,.36);overflow:hidden;}
.region-v4-hero-visual::before{content:"";position:absolute;inset:38px -20px -24px 48px;background:radial-gradient(circle at center,rgba(211,172,98,.26),transparent 70%);filter:blur(28px);}
.region-v4-hero-visual img{position:relative;z-index:1;display:block;width:100%;height:100%;min-height:464px;object-fit:contain;object-position:center;border-radius:23px;background:#d9d2c6;}
.region-v4-hero-visual figcaption{position:absolute;z-index:2;left:36px;bottom:34px;padding:10px 14px;border-radius:999px;background:rgba(14,14,12,.78);backdrop-filter:blur(12px);color:#fff;font-size:.82rem;font-weight:800;letter-spacing:.08em;text-transform:uppercase;}
.region-v4-main{padding-top:54px;}
.region-v4-shell{max-width:1240px;}
.region-v4-back a{display:inline-flex;align-items:center;gap:10px;text-decoration:none;color:#4e493f;font-weight:750;}
.region-v4-switcher{display:flex;gap:10px;flex-wrap:wrap;margin:22px 0 58px;padding-bottom:18px;border-bottom:1px solid rgba(32,29,24,.12);}
.region-v4-switcher a{padding:10px 14px;border-radius:999px;text-decoration:none;color:#615a4f;background:#eee7dc;font-size:.9rem;font-weight:750;}
.region-v4-switcher a.is-current{background:#1e1d19;color:#fff;}
.region-v4-section-head{max-width:850px;}
.region-v4-section-head h2,.region-v4-focus-copy h2,.region-v4-cta h2{margin:14px 0 16px;font-size:clamp(2.15rem,3.75vw,4rem);line-height:1.08;letter-spacing:-.04em;color:#1d1c18;}
.region-v4-section-head p,.region-v4-focus-copy p,.region-v4-cta p{font-size:1.08rem;line-height:1.82;color:#5f594f;}
.region-v4-intro{padding:44px 0 86px;}
.region-v4-metrics{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px;margin-top:40px;}
.region-v4-metrics article{min-height:160px;padding:28px 24px;border:1px solid rgba(54,46,32,.12);border-radius:24px;background:#fff;box-shadow:0 12px 34px rgba(41,33,20,.055);}
.region-v4-metrics strong{display:block;margin-bottom:14px;font-family:Georgia,serif;font-size:2.15rem;color:#9b7435;letter-spacing:-.04em;}
.region-v4-metrics span{display:block;color:#4f4a42;line-height:1.55;font-weight:650;}
.region-v4-focus{display:grid;grid-template-columns:minmax(0,.82fr) minmax(0,1.18fr);gap:58px;align-items:start;padding:80px 0;border-top:1px solid rgba(49,44,35,.11);}
.region-v4-focus-copy{position:sticky;top:120px;}
.region-v4-focus-grid{display:grid;gap:14px;}
.region-v4-focus-grid article{position:relative;padding:32px 34px 32px 92px;border-radius:26px;background:#1f1e1a;color:#fff;overflow:hidden;}
.region-v4-focus-grid article:nth-child(2){background:#2d2a24;}
.region-v4-focus-grid article:nth-child(3){background:#e9dfce;color:#201e1a;}
.region-v4-focus-grid article>span{position:absolute;left:30px;top:31px;font-family:Georgia,serif;font-size:1.3rem;color:#d5ad64;}
.region-v4-focus-grid h3{margin:0 0 10px;font-size:1.3rem;}
.region-v4-focus-grid p{margin:0;line-height:1.72;color:rgba(255,255,255,.72);}
.region-v4-focus-grid article:nth-child(3) p{color:#5b5448;}
.region-v4-projects{margin:36px -24px 0;padding:84px 24px 92px;border-radius:38px;background:#ece4d8;}
.region-v4-project-head{max-width:930px;}
.region-v4-project-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;margin-top:38px;}
.region-v4-project-card{display:flex;flex-direction:column;min-height:480px;padding:30px;border-radius:28px;background:#fff;border:1px solid rgba(55,45,30,.12);box-shadow:0 18px 45px rgba(44,33,18,.07);}
.region-v4-project-tag{font-size:.73rem;line-height:1.4;font-weight:850;letter-spacing:.11em;text-transform:uppercase;color:#8b6830;}
.region-v4-project-card h3{margin:18px 0 20px;font-size:1.56rem;line-height:1.28;letter-spacing:-.025em;color:#201f1b;}
.region-v4-project-facts{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:20px;}
.region-v4-project-facts strong{padding:9px 11px;border-radius:12px;background:#f1ebe1;color:#3d382f;font-size:.82rem;}
.region-v4-project-card p{margin:auto 0 0;color:#615b52;line-height:1.75;}
.region-v4-process{padding:92px 0 88px;}
.region-v4-process-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px;margin-top:38px;}
.region-v4-process-grid article{padding:30px;border-top:2px solid #b58a43;background:#fff;border-radius:0 0 24px 24px;box-shadow:0 12px 32px rgba(40,31,18,.055);}
.region-v4-process-grid article>span{display:grid;place-items:center;width:36px;height:36px;border-radius:50%;background:#1e1d19;color:#fff;font-weight:850;margin-bottom:20px;}
.region-v4-process-grid h3{margin:0 0 9px;font-size:1.22rem;}
.region-v4-process-grid p{margin:0;color:#655f56;line-height:1.72;}
.region-v4-cta{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:40px;align-items:end;margin-bottom:36px;padding:54px 58px;border-radius:34px;background:linear-gradient(135deg,#1a1916,#302b23);color:#fff;box-shadow:0 28px 70px rgba(31,25,17,.18);}
.region-v4-cta .region-v4-kicker{color:#d8b66f;}
.region-v4-cta h2{max-width:800px;color:#fff;}
.region-v4-cta p{max-width:760px;color:rgba(255,255,255,.72);}
.region-v4-cta-actions{display:flex;flex-direction:column;align-items:flex-start;gap:16px;min-width:245px;}
.region-v4-cta-actions span{font-size:.9rem;color:rgba(255,255,255,.68);}
.region-v4-cta-actions a:not(.btn){color:#fff;font-weight:750;}

/* Location hierarchy */
.region-v4-location{background:#f5f0e8;}
.region-v4-location-heading{max-width:940px;margin-bottom:42px;}
.region-v4-location-heading .region-v4-kicker{margin-bottom:15px;}
.region-v4-location-grid{display:grid;gap:22px;}
.region-v4-location-card{display:grid;grid-template-columns:1fr;overflow:hidden;border-radius:28px;background:#fff;color:inherit;text-decoration:none;border:1px solid rgba(49,42,31,.12);box-shadow:0 16px 45px rgba(42,33,19,.07);transition:transform .28s ease,box-shadow .28s ease;}
.region-v4-location-card:hover{transform:translateY(-5px);box-shadow:0 24px 58px rgba(42,33,19,.12);}
.region-v4-location-main{grid-template-columns:minmax(0,1.35fr) minmax(360px,.65fr);min-height:510px;background:#1f1e1a;color:#fff;}
.region-v4-location-media{display:grid;place-items:center;min-height:250px;background:#ddd5c9;overflow:hidden;}
.region-v4-location-media img{display:block;width:100%;height:100%;object-fit:contain;object-position:center;background:#ddd5c9;}
.region-v4-location-main .region-v4-location-media{min-height:510px;}
.region-v4-location-copy{padding:28px 28px 30px;display:flex;flex-direction:column;align-items:flex-start;}
.region-v4-location-main .region-v4-location-copy{justify-content:center;padding:48px;}
.region-v4-location-copy>span{font-size:.72rem;font-weight:850;letter-spacing:.12em;text-transform:uppercase;color:#9b7435;}
.region-v4-location-main .region-v4-location-copy>span{color:#d8b66f;}
.region-v4-location-copy h3{margin:12px 0 12px;font-size:1.6rem;letter-spacing:-.03em;}
.region-v4-location-main h3{font-size:clamp(2.5rem,4vw,4.2rem);line-height:1;}
.region-v4-location-copy p{margin:0 0 24px;color:#625c53;line-height:1.7;}
.region-v4-location-main p{color:rgba(255,255,255,.72);font-size:1.08rem;}
.region-v4-location-copy b{margin-top:auto;color:#26231e;}
.region-v4-location-main b{color:#fff;}
.region-v4-location-copy i{font-style:normal;margin-left:5px;}
.region-v4-location-subgrid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px;}
.region-v4-location-subgrid .region-v4-location-card{min-height:500px;}
.region-v4-location-cta{margin-top:28px;}

@media (max-width:1050px){
  .region-v4-hero-grid{grid-template-columns:1fr;}
  .region-v4-hero-copy h1{max-width:14ch;}
  .region-v4-hero-visual{min-height:430px;}
  .region-v4-hero-visual img{min-height:394px;}
  .region-v4-metrics{grid-template-columns:repeat(2,1fr);}
  .region-v4-focus{grid-template-columns:1fr;gap:34px;}
  .region-v4-focus-copy{position:static;}
  .region-v4-project-grid{grid-template-columns:1fr;}
  .region-v4-project-card{min-height:auto;}
  .region-v4-location-main{grid-template-columns:1fr;}
  .region-v4-location-main .region-v4-location-media{min-height:440px;}
  .region-v4-location-subgrid{grid-template-columns:1fr 1fr;}
  .region-v4-cta{grid-template-columns:1fr;align-items:start;}
}
@media (max-width:760px){
  .region-v4-hero{padding:112px 0 58px;}
  .region-v4-hero-grid{gap:34px;}
  .region-v4-hero-copy h1{font-size:clamp(2.45rem,12vw,4rem);}
  .region-v4-hero-visual{min-height:0;padding:10px;border-radius:24px;}
  .region-v4-hero-visual img{min-height:0;height:auto;aspect-ratio:4/3;object-fit:contain;border-radius:17px;}
  .region-v4-hero-visual figcaption{left:22px;bottom:22px;}
  .region-v4-main{padding-top:34px;}
  .region-v4-switcher{flex-wrap:nowrap;overflow-x:auto;padding-bottom:14px;margin-bottom:36px;scrollbar-width:none;}
  .region-v4-switcher::-webkit-scrollbar{display:none;}
  .region-v4-switcher a{white-space:nowrap;}
  .region-v4-intro{padding:30px 0 58px;}
  .region-v4-metrics{grid-template-columns:1fr;}
  .region-v4-metrics article{min-height:0;}
  .region-v4-focus{padding:58px 0;}
  .region-v4-focus-grid article{padding:28px 24px 28px 72px;}
  .region-v4-focus-grid article>span{left:24px;top:27px;}
  .region-v4-projects{margin-left:-14px;margin-right:-14px;padding:58px 14px 64px;border-radius:28px;}
  .region-v4-project-grid{gap:14px;}
  .region-v4-project-card{padding:25px;border-radius:22px;}
  .region-v4-process{padding:64px 0;}
  .region-v4-process-grid{grid-template-columns:1fr;}
  .region-v4-cta{padding:36px 25px;border-radius:26px;}
  .region-v4-location-subgrid{grid-template-columns:1fr;}
  .region-v4-location-main .region-v4-location-media{min-height:0;}
  .region-v4-location-media img{height:auto;aspect-ratio:4/3;object-fit:contain;}
  .region-v4-location-main .region-v4-location-copy{padding:34px 26px 38px;}
  .region-v4-location-subgrid .region-v4-location-card{min-height:0;}
}

/* ===== Standortseiten V5: großes Titelbild, zentrierte Ansprache, ruhige beige Karten ===== */
.region-v4-page .region-v4-kicker,
.region-v4-page .region-v4-project-tag {
  display: none !important;
}

.region-v4-page .region-v4-hero.region-v5-hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(650px, 76vh, 820px);
  padding: 0;
  overflow: hidden;
  background: #171612;
  color: #fff;
  isolation: isolate;
}
.region-v4-page .region-v4-hero.region-v5-hero .region-v4-hero-grid {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  max-width: none;
  min-height: inherit;
  padding: 0;
}
.region-v4-page .region-v4-hero.region-v5-hero .region-v4-hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #171612;
  box-shadow: none;
  overflow: hidden;
}
.region-v4-page .region-v4-hero.region-v5-hero .region-v4-hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(10, 9, 7, .24) 0%, rgba(10, 9, 7, .43) 62%, rgba(10, 9, 7, .56) 100%),
    radial-gradient(circle at center, rgba(10, 9, 7, .04) 0%, rgba(10, 9, 7, .18) 72%, rgba(10, 9, 7, .30) 100%);
  filter: none;
  pointer-events: none;
}
.region-v4-page .region-v4-hero.region-v5-hero .region-v4-hero-visual img {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: 0;
  object-fit: cover;
  object-position: center center;
  background: #171612;
  transform: none;
}
.region-v4-page.region-v4-munich .region-v4-hero-visual img { object-position: center 48%; }
.region-v4-page.region-v4-augsburg .region-v4-hero-visual img { object-position: center 52%; }
.region-v4-page.region-v4-nuernberg .region-v4-hero-visual img { object-position: center 48%; }
.region-v4-page.region-v4-stuttgart .region-v4-hero-visual img { object-position: center 50%; }

.region-v4-page .region-v4-hero.region-v5-hero .region-v4-hero-copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(1120px, calc(100% - 40px));
  max-width: none;
  margin: 0 auto;
  min-height: inherit;
  justify-content: center;
  box-sizing: border-box;
  padding: 110px 20px;
  text-align: center;
}
.region-v4-page .region-v4-hero.region-v5-hero .region-v4-hero-copy h1 {
  max-width: 18ch;
  margin: 0 auto;
  color: #fffdf9;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 5.55vw, 6rem);
  font-weight: 500;
  line-height: 1.01;
  letter-spacing: -.045em;
  text-align: center;
  text-shadow: 0 4px 12px rgba(0,0,0,.36), 0 18px 44px rgba(0,0,0,.30);
}
.region-v4-page .region-v4-hero.region-v5-hero .region-v4-hero-copy p {
  max-width: 720px;
  margin: 22px auto 0;
  color: rgba(255,255,255,.94);
  font-size: clamp(1.05rem, 1.45vw, 1.27rem);
  line-height: 1.72;
  text-align: center;
  text-shadow: 0 5px 18px rgba(0,0,0,.42);
}
.region-v4-page .region-v4-hero.region-v5-hero .region-v4-hero-actions {
  justify-content: center;
  margin-top: 31px;
}
.region-v4-page .region-v4-hero.region-v5-hero .region-v4-text-link {
  color: #fff;
  text-shadow: 0 4px 12px rgba(0,0,0,.35);
}

/* Keine unnötigen Kennzahlenboxen unter dem Titelbild. */
.region-v4-page .region-v4-intro {
  padding-bottom: 68px;
}

/* Alle inhaltlichen Karten einheitlich in einem ruhigen Beigeton. */
.region-v4-page .region-v4-focus-grid article,
.region-v4-page .region-v4-focus-grid article:nth-child(2),
.region-v4-page .region-v4-focus-grid article:nth-child(3),
.region-v4-page .region-v4-process-grid article,
.region-v4-page .region-v4-project-card {
  background: #eadfce;
  color: #201e1a;
  border: 1px solid rgba(61, 51, 36, .10);
  box-shadow: 0 14px 36px rgba(49, 38, 23, .065);
}
.region-v4-page .region-v4-focus-grid article {
  padding: 31px 34px;
}
.region-v4-page .region-v4-focus-grid h3,
.region-v4-page .region-v4-process-grid h3,
.region-v4-page .region-v4-project-card h3 {
  color: #201e1a;
}
.region-v4-page .region-v4-focus-grid p,
.region-v4-page .region-v4-focus-grid article:nth-child(3) p,
.region-v4-page .region-v4-process-grid p,
.region-v4-page .region-v4-project-card p {
  color: #5b5448;
}
.region-v4-page .region-v4-projects {
  background: #f5efe6;
}
.region-v4-page .region-v4-project-facts strong {
  background: #f8f3eb;
  color: #3d382f;
}
.region-v4-page .region-v4-process-grid article {
  border-top: 1px solid rgba(61, 51, 36, .10);
  border-radius: 24px;
}

/* Auch der Abschluss bleibt hell, ruhig und einheitlich. */
.region-v4-page .region-v4-cta {
  background: #eadfce;
  color: #201e1a;
  border: 1px solid rgba(61, 51, 36, .10);
  box-shadow: 0 18px 48px rgba(49, 38, 23, .09);
}
.region-v4-page .region-v4-cta h2 { color: #201e1a; }
.region-v4-page .region-v4-cta p { color: #5b5448; }
.region-v4-page .region-v4-cta-actions span { color: #655d51; }
.region-v4-page .region-v4-cta-actions a:not(.btn) { color: #2d2922; }

@media (max-width: 980px) {
  .region-v4-page .region-v4-hero.region-v5-hero {
    min-height: 690px;
  }
  .region-v4-page .region-v4-hero.region-v5-hero .region-v4-hero-copy {
    padding: 100px 20px;
  }
}

@media (max-width: 720px) {
  .region-v4-page .region-v4-hero.region-v5-hero {
    min-height: min(680px, calc(100svh - 8px));
  }
  .region-v4-page .region-v4-hero.region-v5-hero .region-v4-hero-copy {
    width: min(100% - 28px, 720px);
    padding: 88px 14px;
  }
  .region-v4-page .region-v4-hero.region-v5-hero .region-v4-hero-copy h1 {
    max-width: 16ch;
    font-size: clamp(2.4rem, 11.2vw, 4rem);
    line-height: 1.03;
  }
  .region-v4-page .region-v4-hero.region-v5-hero .region-v4-hero-copy p {
    max-width: 34rem;
    margin-top: 18px;
    font-size: .98rem;
    line-height: 1.68;
  }
  .region-v4-page .region-v4-hero.region-v5-hero .region-v4-hero-actions {
    gap: 18px;
    margin-top: 26px;
  }
  .region-v4-page .region-v4-focus-grid article {
    padding: 27px 24px;
  }
  .region-v4-page.region-v4-munich .region-v4-hero-visual img { object-position: 48% center; }
  .region-v4-page.region-v4-augsburg .region-v4-hero-visual img { object-position: 52% center; }
  .region-v4-page.region-v4-nuernberg .region-v4-hero-visual img { object-position: 50% center; }
  .region-v4-page.region-v4-stuttgart .region-v4-hero-visual img { object-position: 50% center; }
}

@media (max-width: 480px) {
  .region-v4-page .region-v4-hero.region-v5-hero .region-v4-hero-actions {
    flex-direction: column;
  }
  .region-v4-page .region-v4-hero.region-v5-hero .region-v4-hero-actions .btn {
    min-width: 210px;
  }
}


/* =========================================================
   Standortseiten V6: Hero exakt in der gesamten Bildmitte
   und transparente Projektwege vom Formular bis zum Ergebnis
   ========================================================= */
.region-v4-page .region-v4-hero.region-v5-hero {
  position: relative;
  display: block;
  min-height: clamp(650px, 76vh, 820px);
}
.region-v4-page .region-v4-hero.region-v5-hero .region-v4-hero-grid {
  position: static !important;
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}
.region-v4-page .region-v4-hero.region-v5-hero .region-v4-hero-copy {
  position: absolute !important;
  inset: 0 !important;
  z-index: 3;
  display: flex !important;
  flex-direction: column;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  max-width: none !important;
  min-height: 0 !important;
  height: 100%;
  margin: 0 !important;
  padding: 110px max(24px, 5vw) 72px !important;
  box-sizing: border-box;
  text-align: center !important;
}
.region-v4-page .region-v4-hero.region-v5-hero .region-v4-hero-copy h1,
.region-v4-page .region-v4-hero.region-v5-hero .region-v4-hero-copy p {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}
.region-v4-page .region-v4-hero.region-v5-hero .region-v4-hero-actions {
  display: flex;
  justify-content: center !important;
  align-items: center !important;
  width: 100%;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center;
}

.region-v4-page .region-v4-projects {
  padding-top: 78px;
  padding-bottom: 82px;
}
.region-v4-page .region-v6-project-grid {
  grid-template-columns: 1fr;
  gap: 22px;
}
.region-v4-page .region-v6-project-card {
  display: grid;
  grid-template-columns: minmax(250px, .72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 4vw, 58px);
  min-height: 0;
  padding: clamp(28px, 4vw, 46px);
  align-items: start;
}
.region-v6-project-overview {
  align-self: start;
}
.region-v6-project-label {
  display: inline-flex;
  margin-bottom: 14px;
  color: #6f624f;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.region-v4-page .region-v6-project-card h3 {
  margin: 0 0 16px;
  font-size: clamp(1.55rem, 2.25vw, 2.2rem);
  line-height: 1.18;
}
.region-v4-page .region-v6-project-card .region-v6-project-overview > p {
  margin: 0;
  line-height: 1.74;
}
.region-v6-project-services {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(61, 51, 36, .14);
  color: #3f392f;
  font-size: .91rem;
  font-weight: 760;
  line-height: 1.65;
}
.region-v6-project-path ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.region-v6-project-path li {
  position: relative;
  display: grid;
  grid-template-columns: minmax(130px, .34fr) minmax(0, 1fr);
  gap: 20px;
  padding: 17px 0 17px 22px;
  border-bottom: 1px solid rgba(61, 51, 36, .12);
}
.region-v6-project-path li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 25px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #9c7b48;
  box-shadow: 0 0 0 5px rgba(156, 123, 72, .10);
}
.region-v6-project-path li:first-child {
  padding-top: 2px;
}
.region-v6-project-path li:first-child::before {
  top: 10px;
}
.region-v6-project-path li strong {
  color: #28241e;
  font-size: .95rem;
}
.region-v6-project-path li span {
  color: #5b5448;
  line-height: 1.67;
}
.region-v6-project-result {
  margin-top: 22px;
  padding: 22px 24px;
  border-radius: 18px;
  background: #f8f3eb;
  border: 1px solid rgba(61, 51, 36, .10);
}
.region-v6-project-result strong {
  display: block;
  margin-bottom: 7px;
  color: #2c271f;
  font-size: .82rem;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.region-v4-page .region-v6-project-result p {
  margin: 0;
  color: #4d463b;
  line-height: 1.68;
}

@media (max-width: 860px) {
  .region-v4-page .region-v6-project-card {
    grid-template-columns: 1fr;
    gap: 26px;
  }
}
@media (max-width: 720px) {
  .region-v4-page .region-v4-hero.region-v5-hero .region-v4-hero-copy {
    padding: 94px 18px 58px !important;
  }
  .region-v4-page .region-v6-project-card {
    padding: 27px 23px;
  }
  .region-v6-project-path li {
    grid-template-columns: 1fr;
    gap: 6px;
    padding-left: 20px;
  }
}
@media (max-width: 480px) {
  .region-v4-page .region-v4-hero.region-v5-hero .region-v4-hero-actions {
    flex-direction: column;
  }
}


/* =========================================================
   Standortseiten V7: kompakter Premium-Einstieg für Kundengruppen
   ========================================================= */
.region-v4-page .region-v7-intro {
  padding: 34px 0 82px;
}
.region-v7-intro-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(24px, 3vw, 36px);
  overflow: hidden;
  padding: clamp(42px, 6vw, 72px);
  text-align: center;
  border: 1px solid rgba(67, 55, 37, .11);
  border-radius: 38px;
  background:
    radial-gradient(circle at 10% 12%, rgba(255,255,255,.72), transparent 32%),
    linear-gradient(135deg, #f1e9dd 0%, #e7dbc8 100%);
  box-shadow: 0 24px 60px rgba(52, 40, 23, .09);
}
.region-v7-intro-card::after {
  content: "";
  position: absolute;
  right: -115px;
  bottom: -155px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(83, 66, 41, .10);
  border-radius: 50%;
  box-shadow:
    0 0 0 46px rgba(255,255,255,.10),
    0 0 0 92px rgba(255,255,255,.07);
  pointer-events: none;
}
.region-v7-intro-title,
.region-v7-intro-content {
  position: relative;
  z-index: 1;
}
.region-v7-intro-title h2 {
  max-width: 22ch;
  margin: 0 auto;
  color: #211f1a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 4.1vw, 4.35rem);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -.045em;
}
.region-v7-intro-content {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
}
.region-v7-intro-content p {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  color: #554f46;
  font-size: clamp(1.03rem, 1.25vw, 1.16rem);
  line-height: 1.82;
}
.region-v7-audience-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}
.region-v7-audience-list li {
  padding: 10px 14px;
  border: 1px solid rgba(55, 46, 33, .11);
  border-radius: 999px;
  background: rgba(255,255,255,.52);
  color: #3e392f;
  font-size: .88rem;
  font-weight: 720;
  line-height: 1.25;
  box-shadow: 0 7px 18px rgba(56, 43, 26, .04);
}
.region-v7-intro-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 28px;
  color: #29261f;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid rgba(41, 38, 31, .36);
  padding-bottom: 5px;
  transition: gap .2s ease, border-color .2s ease;
}
.region-v7-intro-link:hover {
  gap: 13px;
  border-color: #29261f;
}

@media (max-width: 900px) {
  .region-v7-intro-card {
    gap: 28px;
    padding: 46px 38px;
  }
  .region-v7-intro-title h2 {
    max-width: 18ch;
  }
}

@media (max-width: 600px) {
  .region-v4-page .region-v7-intro {
    padding: 22px 0 58px;
  }
  .region-v7-intro-card {
    gap: 24px;
    padding: 34px 24px 36px;
    border-radius: 28px;
  }
  .region-v7-intro-title h2 {
    max-width: none;
    font-size: clamp(2rem, 10.2vw, 3rem);
  }
  .region-v7-intro-content p {
    font-size: 1rem;
    line-height: 1.72;
  }
  .region-v7-audience-list {
    gap: 8px;
    margin-top: 24px;
  }
  .region-v7-audience-list li {
    padding: 9px 12px;
    font-size: .82rem;
  }
  .region-v7-intro-link {
    margin-top: 24px;
  }
}

/* =========================================================
   Standortseiten V8: Kernaussage deutlich präsenter
   ========================================================= */
.region-v4-page .region-v4-focus {
  display: block;
  padding: clamp(72px, 8vw, 108px) 0;
}

.region-v4-page .region-v4-focus-copy {
  position: static;
  max-width: 1040px;
  margin: 0 auto clamp(38px, 5vw, 58px);
  text-align: center;
}

.region-v4-page .region-v4-focus-copy h2 {
  position: relative;
  max-width: 920px;
  margin: 0 auto 24px;
  padding-bottom: 24px;
  font-size: clamp(2.55rem, 5vw, 5.15rem);
  line-height: 1.02;
  letter-spacing: -.052em;
  text-wrap: balance;
}

.region-v4-page .region-v4-focus-copy h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 86px;
  height: 2px;
  transform: translateX(-50%);
  background: #b4935f;
}

.region-v4-page .region-v4-focus-copy p {
  max-width: 790px;
  margin: 0 auto;
  font-size: clamp(1.06rem, 1.45vw, 1.24rem);
  line-height: 1.82;
  text-align: center;
}

.region-v4-page .region-v4-focus-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.region-v4-page .region-v4-focus-grid article {
  height: 100%;
  padding: clamp(28px, 3vw, 38px);
  text-align: center;
}

.region-v4-page .region-v4-focus-grid h3 {
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
}

@media (max-width: 900px) {
  .region-v4-page .region-v4-focus-grid {
    grid-template-columns: 1fr;
    max-width: 760px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .region-v4-page .region-v4-focus {
    padding: 62px 0;
  }

  .region-v4-page .region-v4-focus-copy {
    margin-bottom: 34px;
  }

  .region-v4-page .region-v4-focus-copy h2 {
    max-width: 14ch;
    padding-bottom: 20px;
    font-size: clamp(2.15rem, 11vw, 3.25rem);
  }
}

/* Finaler Feinschliff: Danke-Seite zentriert, helle Premiumflaechen */
.thank-page .legal-hero .container {
  text-align: center;
}
.thank-page .legal-hero h1 {
  margin-right: auto;
  margin-left: auto;
}
.thank-page .legal-hero p {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}
.thank-page .legal-hero .hero-actions {
  justify-content: center;
}

/* Hauptstandortkarte: warme Beige-Flaeche statt Schwarz */
.region-v4-location-main {
  background: #e9dfce;
  color: #211e19;
}
.region-v4-location-main .region-v4-location-copy > span {
  color: #8b6830;
}
.region-v4-location-main .region-v4-location-copy h3 {
  color: #211e19;
}
.region-v4-location-main .region-v4-location-copy p {
  color: #5b5448;
}
.region-v4-location-main .region-v4-location-copy b {
  color: #211e19;
}

/* Anfragezusammenfassung: helle Premiumflaeche statt Schwarz */
#anfrage .premium-review {
  border-color: rgba(155,116,60,.24);
  background: linear-gradient(135deg,#f2eadf,#e9dfce);
  color: #211e19;
  box-shadow: 0 16px 42px rgba(63,48,27,.08);
}
#anfrage .premium-review h4 {
  color: #211e19;
}
#anfrage .premium-review p {
  color: #6b6257;
}
#anfrage .premium-review .summary-box dt {
  color: #8b6830;
}
#anfrage .premium-review .summary-box dd {
  color: #211e19;
}

/* ===== Mobile-Fix: Formularschritte sichtbar ===== */
@media (max-width: 820px) {
  #anfrage .premium-progress .wizard-step {
    font-size: .78rem;
    line-height: 1.25;
  }

  #anfrage .premium-progress .wizard-step b {
    display: block;
    font-size: .78rem;
    line-height: 1.25;
    white-space: normal;
  }
}

/* ===== Geräteübergreifende Abschlussoptimierung 2026-07-18 ===== */

/* Robuste Grundregeln gegen Überläufe und unlesbare Fokuszustände. */
:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid rgba(155, 116, 60, .42);
  outline-offset: 3px;
}
:where(h1, h2, h3, h4, p, a, span, strong, label, legend) {
  overflow-wrap: break-word;
}
input, select, textarea, button { min-width: 0; }
textarea { resize: vertical; }

/* Das aktuelle Premiumformular hat drei statt vier Schritte. Alte Linien- und
   Mobile-Regeln dürfen die neue Darstellung nicht mehr überlagern. */
#anfrage .premium-progress {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  counter-reset: inquiry-step;
}
#anfrage .premium-progress .wizard-step::after { display: none; }
#anfrage .premium-progress .wizard-step {
  isolation: isolate;
  min-width: 0;
  white-space: normal;
}
#anfrage .premium-progress .wizard-step b {
  display: block;
  min-width: 0;
  overflow-wrap: anywhere;
}

/* Tablet: Navigation, Karten und Formulare bleiben kompakt und gut bedienbar. */
@media (min-width: 841px) and (max-width: 900px) {
  .header-inner,
  .site-header.compact .header-inner { min-height: 74px; }
  .logo-frame,
  .site-header.compact .logo-frame { width: 104px; height: 70px; }
  .main-nav { top: 74px; }
}

@media (max-width: 840px) {
  .container { width: min(calc(100% - 32px), 760px); }
  .site-header { box-shadow: 0 8px 24px rgba(34, 27, 20, .06); }
  .menu-toggle { flex: 0 0 auto; }
  .main-nav {
    z-index: 20;
    max-height: calc(100dvh - 84px - env(safe-area-inset-bottom));
  }
  html.nav-open,
  html.nav-open body { overflow: hidden; }

  #anfrage .inquiry-head { margin-bottom: 28px; }
  #anfrage .inquiry-head h2 {
    max-width: 16ch;
    font-size: clamp(2.25rem, 9.7vw, 3rem);
    line-height: 1.04;
    text-wrap: balance;
  }
  #anfrage .premium-inquiry-shell { border-radius: 24px; }
  #anfrage .premium-wizard-top { padding: 14px; }
  #anfrage .premium-progress {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
  }
  #anfrage .premium-progress .wizard-step {
    width: 100%;
    min-height: 54px;
    padding: 8px 6px;
    border-radius: 15px;
    font-size: .72rem;
    line-height: 1.16;
  }
  #anfrage .premium-progress .wizard-step b {
    font-size: .72rem;
    line-height: 1.16;
  }
  #anfrage .premium-reassurance {
    padding: 14px 16px;
    font-size: .86rem;
    line-height: 1.55;
  }
  #anfrage .premium-step-heading { margin-bottom: 26px; }
  #anfrage .premium-step-heading h3 {
    font-size: clamp(2rem, 8.8vw, 2.65rem);
    line-height: 1.06;
    text-wrap: balance;
  }
  #anfrage .premium-step-heading p {
    margin-top: 12px;
    font-size: .98rem;
    line-height: 1.65;
  }
  #anfrage .premium-fieldset,
  #anfrage .premium-conditional-card,
  #anfrage .premium-date-card,
  #anfrage .premium-contact-card,
  #anfrage .premium-detail-card,
  #anfrage .premium-dynamic-panel { min-width: 0; }
  #anfrage input,
  #anfrage select,
  #anfrage textarea { width: 100%; max-width: 100%; }
  #anfrage .premium-choice,
  #anfrage .premium-service-choice,
  #anfrage .premium-option-list label,
  #anfrage .premium-pill-grid label,
  #anfrage .yes-no-grid label { -webkit-tap-highlight-color: transparent; }
  #anfrage .large-date-trigger { min-height: 56px; }

  /* Der feste Kontaktknopf soll auf kleinen Displays keine Formulartexte verdecken. */
  .whatsapp-float {
    width: 54px;
    height: 54px;
    min-width: 54px;
    min-height: 54px;
    right: max(12px, env(safe-area-inset-right));
    bottom: max(14px, calc(env(safe-area-inset-bottom) + 14px));
    display: grid;
    place-items: center;
    padding: 0;
    font-size: 0;
    line-height: 1;
  }
  .whatsapp-float::before {
    content: "☎";
    font-size: 1.35rem;
    line-height: 1;
  }
  .site-footer { padding-bottom: 96px; }
}

@media (max-width: 480px) {
  .container { width: calc(100% - 24px); }
  .section { padding-top: 64px; padding-bottom: 64px; }
  .header-inner,
  .site-header.compact .header-inner { min-height: 64px; }
  .logo-frame,
  .site-header.compact .logo-frame { width: 92px; height: 62px; }
  .main-nav { top: 64px; right: 10px; left: 10px; }

  #anfrage .premium-wizard-top { padding: 11px; }
  #anfrage .premium-progress { gap: 5px; }
  #anfrage .premium-progress .wizard-step {
    min-height: 48px;
    padding: 7px 4px;
    border-radius: 13px;
  }
  #anfrage .premium-progress .wizard-step b { display: none; }
  #anfrage .premium-progress .wizard-step::before {
    content: attr(data-short);
    display: block;
    font-size: .7rem;
    font-weight: 800;
    line-height: 1.12;
  }
  #anfrage .form-step { padding: 24px 13px; }
  #anfrage .premium-fieldset,
  #anfrage .premium-conditional-card,
  #anfrage .premium-date-card,
  #anfrage .premium-contact-card,
  #anfrage .premium-detail-card,
  #anfrage .premium-dynamic-panel { padding: 18px 13px; border-radius: 18px; }
  #anfrage .premium-choice,
  #anfrage .premium-service-choice { padding-right: 12px; }
  #anfrage .premium-actions { gap: 9px; }
  #anfrage .premium-actions .btn { min-height: 50px; }
  .premium-calendar-dialog {
    width: calc(100vw - 10px);
    max-height: calc(100dvh - 10px);
    border-radius: 20px;
  }
  .premium-calendar-shell { padding: 18px 8px 14px; }
  .premium-calendar-heading h4 { font-size: 1.75rem; }
  .premium-calendar-navigation { gap: 6px; }
  .premium-calendar-weekdays,
  .premium-calendar-days { gap: 3px; }
  .premium-calendar-day { min-height: 40px; border-radius: 10px; }
}

@media (max-width: 350px) {
  #anfrage .premium-progress .wizard-step::before { font-size: .64rem; }
  #anfrage .premium-step-heading h3 { font-size: 1.9rem; }
  .premium-calendar-day { min-height: 36px; font-size: .88rem; }
}

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

/* Lokale Kernbilder: zuverlässig, schnell und unabhängig von externen Bilddiensten. */
.services-section .image-clearout { background-image: url("assets/service-02-entruempelung.webp"); }
.services-section .image-renovation { background-image: url("assets/service-03-renovierung.webp"); }
.services-section .image-garden { background-image: url("assets/service-05-haus-garten.webp"); }
.services-section .image-security { background-image: url("assets/service-07-sicherheit.webp"); }
.detail-hero-clearout { background-image: url("assets/service-02-entruempelung.webp"); }
.detail-hero-renovation { background-image: url("assets/service-03-renovierung.webp"); }
.detail-hero-garden { background-image: url("assets/service-05-haus-garten.webp"); }
.detail-hero-security { background-image: url("assets/service-07-sicherheit.webp"); }

/* ===== Abschlussanpassung 2026-07-19: kompakter Datenschutz-/Cookie-Hinweis ===== */
/* Der Erstaufruf-Hinweis bleibt vollständig lesbar, nimmt aber auf allen Geräten
   deutlich weniger Fläche ein. Touch-Ziele bleiben mindestens 44 px hoch. */
.consent-panel {
  left: clamp(8px, 1vw, 16px);
  right: clamp(8px, 1vw, 16px);
  bottom: clamp(8px, 1vw, 16px);
}
.consent-panel__inner {
  width: min(1240px, 100%);
  min-height: 0;
  padding: 17px clamp(18px, 2vw, 28px);
  grid-template-columns: minmax(0, 1fr) minmax(290px, 350px);
  gap: clamp(18px, 2.4vw, 30px);
  border-radius: 10px;
}
.consent-panel__copy { max-width: 900px; }
.consent-panel__eyebrow {
  margin-bottom: 4px;
  font-size: .64rem;
  letter-spacing: .12em;
}
.consent-panel h2 {
  margin: 0 0 6px;
  font-size: clamp(1.22rem, 1.65vw, 1.68rem);
  line-height: 1.12;
}
.consent-panel p {
  max-width: 900px;
  font-size: .86rem;
  line-height: 1.48;
}
.consent-panel__links {
  margin-top: 8px;
  gap: 5px 16px;
}
.consent-panel__links a,
.consent-details summary {
  font-size: .8rem;
  font-weight: 700;
}
.consent-details { margin-top: 7px; }
.consent-category {
  margin-top: 7px;
  padding: 8px 10px;
  gap: 12px;
}
.consent-category p { font-size: .78rem; line-height: 1.4; }
.consent-required,
.consent-off { font-size: .7rem; }
.consent-panel__actions {
  gap: 8px;
}
.consent-panel__actions .btn {
  min-height: 48px;
  padding: 11px 15px;
  border-radius: 8px;
  font-size: .88rem;
}

/* Auch der rechtliche Zustimmungsblock im Anfrageformular wird dezenter. */
#anfrage .consent-box {
  gap: 8px;
  margin-top: 9px;
  padding: 10px 12px;
  border-radius: 11px;
  font-size: .86rem;
  font-weight: 600;
  line-height: 1.45;
}
#anfrage .consent-box input { margin-top: 2px; }

@media (max-width: 1080px) {
  .consent-panel__inner {
    grid-template-columns: 1fr;
    padding: 16px 18px;
    gap: 12px;
  }
  .consent-panel__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .consent-panel {
    left: max(6px, env(safe-area-inset-left));
    right: max(6px, env(safe-area-inset-right));
    bottom: max(6px, env(safe-area-inset-bottom));
  }
  .consent-panel__inner {
    max-height: calc(100svh - 12px);
    padding: 13px 13px 12px;
    gap: 10px;
    border-radius: 8px;
  }
  .consent-panel__eyebrow {
    margin-bottom: 3px;
    font-size: .58rem;
  }
  .consent-panel h2 {
    margin-bottom: 5px;
    font-size: clamp(1.08rem, 5.3vw, 1.28rem);
  }
  .consent-panel p {
    font-size: .79rem;
    line-height: 1.42;
  }
  .consent-panel__links {
    margin-top: 6px;
    gap: 4px 12px;
  }
  .consent-panel__links a,
  .consent-details summary { font-size: .74rem; }
  .consent-details { margin-top: 5px; }
  .consent-panel__actions {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    padding-top: 0;
  }
  .consent-panel__actions .btn {
    min-height: 44px;
    padding: 9px 8px;
    font-size: .78rem;
    line-height: 1.2;
  }
  #anfrage .consent-box {
    padding: 9px 10px;
    font-size: .8rem;
  }
}

@media (max-width: 350px) {
  .consent-panel__actions { grid-template-columns: 1fr; }
}
