/* Schädlingswache – kompletter Redesign 2026
   Konzept: Field Lab / Tactical Editorial */
:root {
  --ink: #07120e;
  --ink-2: #0d1c16;
  --ink-3: #14271e;
  --paper: #f2f4ee;
  --paper-2: #e8ece4;
  --white: #ffffff;
  --acid: #c8ff4d;
  --acid-2: #a9e834;
  --mint: #8ee0bd;
  --line: rgba(7, 18, 14, .14);
  --line-light: rgba(255, 255, 255, .16);
  --muted: #617066;
  --danger: #ff735c;
  --shadow: 0 28px 90px rgba(7, 18, 14, .14);
  --shadow-soft: 0 18px 50px rgba(7, 18, 14, .09);
  --radius: 28px;
  --radius-sm: 18px;
  --container: 1320px;
  --scroll-progress: 0;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.68;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
::selection { color: var(--ink); background: var(--acid); }

.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}
.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

/* global progress */
.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 10000;
  width: calc(var(--scroll-progress) * 100%);
  height: 3px;
  background: var(--acid);
  box-shadow: 0 0 20px rgba(200, 255, 77, .8);
  pointer-events: none;
}

/* header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  color: var(--white);
  pointer-events: none;
}
.signal-bar {
  height: 32px;
  background: var(--acid);
  color: var(--ink);
  border-bottom: 1px solid rgba(7, 18, 14, .25);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .12em;
  line-height: 32px;
  text-transform: uppercase;
  transition: transform .35s ease, opacity .35s ease;
  pointer-events: auto;
}
.signal-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.signal-bar .container > span:first-child::before {
  content: "";
  display: inline-block;
  width: 7px; height: 7px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 0 4px rgba(7, 18, 14, .12);
  animation: signalPulse 2s ease-in-out infinite;
}
@keyframes signalPulse { 50% { box-shadow: 0 0 0 8px rgba(7,18,14,0); } }
.nav-wrap {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 82px;
  margin-top: 14px;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 24px;
  background: rgba(7, 18, 14, .86);
  box-shadow: 0 18px 55px rgba(0, 0, 0, .22);
  backdrop-filter: blur(20px) saturate(130%);
  -webkit-backdrop-filter: blur(20px) saturate(130%);
  transition: min-height .35s ease, margin .35s ease, border-radius .35s ease, background .35s ease;
  pointer-events: auto;
}
.site-header.is-scrolled .signal-bar { transform: translateY(-100%); opacity: 0; }
.site-header.is-scrolled .nav-wrap {
  min-height: 66px;
  margin-top: -22px;
  border-radius: 20px;
  background: rgba(7, 18, 14, .94);
}
.brand { display: flex; align-items: center; text-decoration: none; }
.brand img { width: 214px; height: auto; }
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.main-nav a {
  position: relative;
  padding: 12px 13px;
  border-radius: 12px;
  color: rgba(255,255,255,.7);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .025em;
  text-decoration: none;
  transition: color .25s ease, background .25s ease, transform .25s ease;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 7px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--acid);
  transition: transform .25s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--white); background: rgba(255,255,255,.06); }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); transform-origin: left; }
.header-call {
  display: grid;
  min-width: 172px;
  padding: 10px 16px;
  border-radius: 15px;
  background: var(--acid);
  color: var(--ink);
  text-decoration: none;
  line-height: 1.15;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}
.header-call:hover { transform: translateY(-2px); background: #d5ff73; box-shadow: 0 10px 35px rgba(200,255,77,.22); }
.header-call small { font-size: 9px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; opacity: .7; }
.header-call strong { margin-top: 3px; font-size: 14px; }
.menu-toggle { display: none; }

/* breadcrumbs */
.breadcrumbs {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
  padding-top: 154px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .03em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.breadcrumbs a { text-decoration: none; color: var(--ink); }
.breadcrumbs a:hover { color: #397d5f; }
.breadcrumbs > span[aria-hidden="true"] { display: none; }
.breadcrumbs .sep { margin: 0 10px; opacity: .35; }

/* hero */
.hero {
  position: relative;
  min-height: 100svh;
  padding: 152px 0 58px;
  color: var(--white);
  background:
    radial-gradient(circle at 74% 28%, rgba(200,255,77,.17), transparent 24%),
    radial-gradient(circle at 92% 80%, rgba(142,224,189,.12), transparent 27%),
    var(--ink);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000, transparent 92%);
}
.hero::after {
  content: "SCAN / IDENTIFY / CONTROL";
  position: absolute;
  right: -3vw;
  bottom: -2vw;
  z-index: -1;
  color: rgba(255,255,255,.025);
  font-size: clamp(4rem, 11vw, 12rem);
  font-weight: 950;
  line-height: .8;
  letter-spacing: -.07em;
  white-space: nowrap;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(420px, .94fr);
  align-items: center;
  gap: clamp(44px, 7vw, 110px);
  min-height: calc(100svh - 210px);
}
.hero-copy { position: relative; z-index: 3; transform: translateY(var(--hero-copy-y, 0)); opacity: var(--hero-copy-opacity, 1); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: #4d6659;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
  line-height: 1.4;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 34px; height: 1px;
  background: currentColor;
}
.hero .eyebrow, .section-dark .eyebrow, .contact-band .eyebrow { color: var(--acid); }
.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(4.35rem, 8vw, 8.6rem);
  font-weight: 900;
  letter-spacing: -.075em;
  line-height: .82;
  text-wrap: balance;
}
.hero h1 em {
  display: inline-block;
  color: var(--acid);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.065em;
  transform: translateX(.17em);
}
.hero-copy > p:not(.eyebrow) {
  max-width: 660px;
  margin: 30px 0 0;
  color: rgba(255,255,255,.68);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.75;
}
.actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 30px; }
.button {
  --btn-bg: var(--ink);
  --btn-color: var(--white);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 14px;
  overflow: hidden;
  background: var(--btn-bg);
  color: var(--btn-color);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .035em;
  text-decoration: none;
  isolation: isolate;
  transition: transform .25s ease, border-color .25s ease, color .25s ease, box-shadow .25s ease;
}
.button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: translateX(-103%);
  background: var(--acid);
  transition: transform .38s cubic-bezier(.65,0,.35,1);
}
.button::after { content: "↗"; margin-left: 12px; font-size: 16px; transition: transform .25s ease; }
.button:hover { color: var(--ink); transform: translateY(-2px); box-shadow: 0 14px 35px rgba(7,18,14,.16); }
.button:hover::before { transform: translateX(0); }
.button:hover::after { transform: translate(3px,-3px); }
.button-dark { --btn-bg: var(--ink); --btn-color: var(--white); }
.hero .button-dark, .section-dark .button-dark { --btn-bg: var(--acid); --btn-color: var(--ink); }
.hero .button-dark::before, .section-dark .button-dark::before { background: var(--white); }
.button-outline {
  --btn-bg: transparent;
  --btn-color: var(--ink);
  border-color: rgba(7,18,14,.35);
}
.hero .button-outline, .section-dark .button-outline { --btn-color: var(--white); border-color: rgba(255,255,255,.3); }
.button-light { --btn-bg: var(--white); --btn-color: var(--ink); }
.button-amber { --btn-bg: var(--acid); --btn-color: var(--ink); }
.trust-row { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 26px; }
.trust-row span {
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  color: rgba(255,255,255,.72);
  background: rgba(255,255,255,.04);
  font-size: 11px;
  font-weight: 750;
}
.hero-art {
  --hero-art-y: 0px;
  --hero-art-scale: 1;
  --hero-art-rx: 0deg;
  --hero-art-ry: 0deg;
  position: relative;
  z-index: 2;
  min-height: 610px;
  perspective: 1200px;
  transform: translateY(var(--hero-art-y)) scale(var(--hero-art-scale));
  transform-style: preserve-3d;
}
.hero-art::before, .hero-art::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-art::before {
  width: 170px; height: 170px;
  left: -28px; top: 18px;
  border: 1px solid rgba(200,255,77,.45);
  box-shadow: inset 0 0 0 32px rgba(200,255,77,.025), 0 0 0 32px rgba(200,255,77,.025);
  animation: orbitSpin 18s linear infinite;
}
.hero-art::after {
  width: 16px; height: 16px;
  right: 1%; top: 18%;
  background: var(--acid);
  box-shadow: -42px 174px 0 4px rgba(142,224,189,.65), -420px 380px 0 2px rgba(255,255,255,.3);
  animation: floatDots 5s ease-in-out infinite;
}
@keyframes orbitSpin { to { transform: rotate(360deg); } }
@keyframes floatDots { 50% { transform: translateY(-15px); } }
.hero-art img {
  position: absolute;
  inset: 6% 0 auto auto;
  width: 94%;
  height: auto;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 42px;
  box-shadow: 0 60px 120px rgba(0,0,0,.38);
  transform: rotateX(var(--hero-art-rx)) rotateY(var(--hero-art-ry)) rotate(2deg);
  filter: saturate(.9) contrast(1.04);
}
.hero-badge {
  position: absolute;
  left: -28px;
  bottom: 8%;
  display: grid;
  place-content: center;
  width: 164px; height: 164px;
  padding: 16px;
  border-radius: 50%;
  background: var(--acid);
  color: var(--ink);
  text-align: center;
  box-shadow: 0 25px 70px rgba(0,0,0,.32);
  transform: translateY(var(--hero-badge-y,0)) rotate(var(--hero-badge-rotate,-8deg)) scale(var(--hero-badge-scale,1));
}
.hero-badge::before { content: ""; position: absolute; inset: 8px; border: 1px dashed rgba(7,18,14,.45); border-radius: 50%; }
.hero-badge strong { font-size: 3.2rem; line-height: .95; letter-spacing: -.08em; }
.hero-badge span { max-width: 100px; margin: 6px auto 0; font-size: 10px; font-weight: 900; letter-spacing: .1em; line-height: 1.3; text-transform: uppercase; }
.scroll-cue {
  position: absolute;
  left: 50%; bottom: 24px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.45);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .18em;
  text-transform: uppercase;
  transform: translateX(-50%) rotate(-90deg) translateX(50%);
  transform-origin: center;
}
.scroll-cue::before { content: ""; width: 58px; height: 1px; background: linear-gradient(90deg, var(--acid), transparent); animation: cueMove 1.8s ease-in-out infinite; }
@keyframes cueMove { 50% { transform: scaleX(.55); transform-origin: right; } }

/* page hero */
.page-hero {
  position: relative;
  margin-top: 26px;
  padding: clamp(70px, 9vw, 125px) 0 clamp(62px, 8vw, 108px);
  overflow: hidden;
  background: var(--paper);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(7,18,14,.05) 50%, transparent 50.1%),
    radial-gradient(circle at 86% 20%, rgba(200,255,77,.55), transparent 18%);
  pointer-events: none;
}
.page-hero::after {
  content: "";
  position: absolute;
  right: max(24px, calc((100vw - var(--container))/2));
  top: 14%;
  width: clamp(120px, 16vw, 240px);
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: inset 0 0 0 28px rgba(7,18,14,.02), inset 0 0 0 58px rgba(7,18,14,.02);
  opacity: .8;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  max-width: 1040px;
  margin: 0;
  font-size: clamp(3.2rem, 6.2vw, 7.2rem);
  font-weight: 900;
  letter-spacing: -.068em;
  line-height: .93;
  text-wrap: balance;
}
.page-hero .lead {
  max-width: 760px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 1.55vw, 1.35rem);
  line-height: 1.65;
}
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.tag-list span {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.45);
  color: #35463d;
  font-size: 11px;
  font-weight: 800;
}

/* sections */
.section { position: relative; padding: clamp(84px, 10vw, 150px) 0; }
.section + .section { border-top: 1px solid var(--line); }
.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, .36fr) minmax(0, 1.1fr) minmax(260px, .56fr);
  align-items: end;
  gap: 34px;
  margin-bottom: clamp(42px, 6vw, 76px);
}
.section-heading .eyebrow { align-self: start; padding-top: 11px; }
.section-heading h2, .split h2, .contact-layout h2 {
  margin: 0;
  font-size: clamp(2.65rem, 5vw, 5.7rem) !important;
  font-family: inherit !important;
  font-weight: 900;
  letter-spacing: -.065em;
  line-height: .93 !important;
  text-wrap: balance;
}
.section-heading > p:last-child { margin: 0 0 4px; color: var(--muted); font-size: 15px; line-height: 1.75; }
.section-dark {
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(200,255,77,.07), transparent 36%),
    var(--ink);
  border-top: 0 !important;
  overflow: hidden;
}
.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .15;
  background-image: radial-gradient(rgba(255,255,255,.8) .8px, transparent .8px);
  background-size: 24px 24px;
  mask-image: linear-gradient(90deg, transparent, #000 40%, #000 70%, transparent);
  pointer-events: none;
}
.section-dark p { color: rgba(255,255,255,.66); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-sand { background: var(--white); }
.section-moss {
  color: var(--ink);
  background: var(--acid);
  border: 0 !important;
}

.split {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, .84fr);
  align-items: center;
  gap: clamp(56px, 8vw, 120px);
}
.split.reverse { grid-template-columns: minmax(380px, .84fr) minmax(0, 1fr); }
.split.reverse > :first-child { order: 2; }
.split.reverse > :last-child { order: 1; }
.split > div > p:not(.eyebrow), .split > div > ul { max-width: 700px; }
.illustration-frame {
  position: relative;
  padding: 10px;
  border: 1px solid rgba(7,18,14,.16);
  border-radius: 40px;
  background: rgba(255,255,255,.35);
  box-shadow: var(--shadow-soft);
  transform: rotate(-2deg);
}
.section-dark .illustration-frame { border-color: rgba(255,255,255,.16); background: rgba(255,255,255,.04); box-shadow: 0 45px 100px rgba(0,0,0,.35); transform: rotate(2deg); }
.illustration-frame::before {
  content: "FIELD NOTE  /  01";
  position: absolute;
  left: 26px; top: 25px;
  z-index: 2;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--acid);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .16em;
}
.illustration-frame img { width: 100%; border-radius: 31px; }

/* cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  counter-reset: card;
}
.card-grid > * { counter-increment: card; }
.service-card, .article-card, .city-card, .info-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --glow-x: 50%;
  --glow-y: 50%;
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.58);
  box-shadow: 0 1px 0 rgba(255,255,255,.8) inset;
  text-decoration: none;
  transform: perspective(1000px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition: transform .35s cubic-bezier(.2,.75,.2,1), border-color .35s ease, background .35s ease, box-shadow .35s ease;
}
.service-card::before, .article-card::before, .city-card::before, .info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(200,255,77,.38), transparent 33%);
  transition: opacity .35s ease;
  pointer-events: none;
}
.service-card:hover, .article-card:hover, .city-card:hover, .info-card:hover {
  border-color: rgba(7,18,14,.34);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transform: perspective(1000px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(-7px);
}
.service-card:hover::before, .article-card:hover::before, .city-card:hover::before, .info-card:hover::before { opacity: 1; }
.service-card {
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  min-height: 410px;
  padding: 30px;
}
.service-card:nth-child(1), .service-card:nth-child(5) { grid-column: span 5; }
.service-card:nth-child(2), .service-card:nth-child(6) { grid-column: span 4; }
.service-card:nth-child(3), .service-card:nth-child(4) { grid-column: span 3; }
.service-card:nth-child(7) { grid-column: span 3; }
.service-card::after {
  content: counter(card, decimal-leading-zero);
  position: absolute;
  right: 22px; top: 18px;
  color: rgba(7,18,14,.25);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
}
.card-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 104px; height: 104px;
  margin-bottom: auto;
  border-radius: 50%;
  color: var(--ink);
  background: var(--acid);
  box-shadow: inset 0 0 0 1px rgba(7,18,14,.12), 0 14px 40px rgba(128,170,34,.16);
  transition: transform .5s cubic-bezier(.2,.75,.2,1);
}
.card-icon::after { content: ""; position: absolute; inset: -8px; border: 1px dashed rgba(7,18,14,.2); border-radius: 50%; animation: orbitSpin 16s linear infinite; }
.card-icon .icon { width: 56px; height: 56px; }
.service-card:hover .card-icon, .article-card:hover .card-icon { transform: rotate(-7deg) scale(1.07); }
.card-kicker {
  display: block;
  margin: 28px 0 10px;
  color: #52705f;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.service-card h3, .article-card h3, .city-card h3, .info-card h3 {
  position: relative;
  margin: 0;
  font-size: clamp(1.5rem, 2.2vw, 2.25rem);
  font-weight: 850;
  letter-spacing: -.045em;
  line-height: 1.05;
}
.service-card p, .article-card p, .city-card p, .info-card p { position: relative; margin: 16px 0 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  padding-top: 24px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .025em;
}
.text-link > span { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: var(--ink); color: var(--white); transition: transform .25s ease, background .25s ease; }
*:hover > .text-link > span { transform: rotate(-45deg); background: #356c54; }

.card-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.article-card {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 26px;
  align-items: center;
  min-height: 260px;
  padding: 28px;
}
.article-card .card-icon { width: 94px; height: 94px; margin: 0; }
.article-card .card-kicker { margin-top: 0; }
.article-card h3 { font-size: clamp(1.3rem, 2vw, 1.9rem); line-height: 1.12; }
.meta { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px; color: #718078; font-size: 10px; font-weight: 750; text-transform: uppercase; letter-spacing: .08em; }
.city-card, .info-card {
  grid-column: span 4;
  min-height: 260px;
  padding: 28px;
}
.city-card::after { content: "↗"; position: absolute; right: 24px; top: 22px; display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 50%; transition: transform .25s ease, background .25s ease; }
.city-card:hover::after { transform: rotate(45deg); background: var(--acid); }
.city-card .card-kicker, .info-card .card-kicker { margin-top: 0; }

/* process */
.number-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  counter-reset: step;
  border-top: 1px solid var(--line);
}
.step {
  position: relative;
  min-height: 300px;
  padding: 38px 28px 28px 0;
  counter-increment: step;
  border-right: 1px solid var(--line);
}
.step:not(:first-child) { padding-left: 28px; }
.step:last-child { border-right: 0; }
.step::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  margin-bottom: 70px;
  color: #668072;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
}
.step::after {
  content: "";
  position: absolute;
  left: 0; top: -4px;
  width: var(--step-progress, 0%); height: 7px;
  border-radius: 99px;
  background: var(--acid);
  transition: width 1s cubic-bezier(.2,.8,.2,1);
}
.step h3 { margin: 0; font-size: 1.65rem; letter-spacing: -.04em; line-height: 1.1; }
.step p { margin: 15px 0 0; color: var(--muted); font-size: 14px; }

/* lists and notices */
.check-list, .plain-list { padding: 0; margin: 30px 0; list-style: none; }
.check-list li, .plain-list li {
  position: relative;
  padding: 15px 0 15px 38px;
  border-bottom: 1px solid rgba(255,255,255,.13);
}
.plain-list li { border-color: var(--line); }
.check-list li::before, .plain-list li::before {
  content: "↳";
  position: absolute;
  left: 0; top: 14px;
  color: var(--acid);
  font-weight: 900;
}
.plain-list li::before { color: #4c7b62; }
.notice {
  position: relative;
  margin: 30px 0;
  padding: 24px 24px 24px 30px;
  border: 1px solid rgba(7,18,14,.16);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: rgba(200,255,77,.15);
  color: #324238;
  font-size: 14px;
}
.notice::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 5px; background: var(--acid-2); }
.notice strong { display: block; margin-bottom: 7px; color: var(--ink); font-size: 11px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.section-dark .notice { border-color: rgba(255,255,255,.16); background: rgba(200,255,77,.08); color: rgba(255,255,255,.68); }
.section-dark .notice strong { color: var(--acid); }
.warning { background: rgba(255,115,92,.12); }
.warning::before { background: var(--danger); }

/* city cloud */
.city-cloud { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
.city-cloud a {
  position: relative;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255,255,255,.48);
  color: #34473c;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  transition: color .25s ease, transform .25s ease, border-color .25s ease;
}
.city-cloud a::before { content: ""; position: absolute; inset: 0; z-index: -1; transform: translateY(105%); background: var(--ink); transition: transform .25s ease; }
.city-cloud a:hover { color: var(--white); border-color: var(--ink); transform: translateY(-2px); }
.city-cloud a:hover::before { transform: translateY(0); }

/* stats */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); }
.stat { position: relative; min-height: 240px; padding: 36px; border-right: 1px solid rgba(7,18,14,.25); }
.stat:last-child { border-right: 0; }
.stat strong { display: block; font-size: clamp(4.5rem, 9vw, 9rem); font-weight: 950; letter-spacing: -.09em; line-height: .8; }
.stat span { display: block; margin-top: 26px; font-size: 12px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.stat::after { content: ""; position: absolute; right: 28px; bottom: 30px; width: 44px; height: 44px; border: 1px solid rgba(7,18,14,.28); border-radius: 50%; box-shadow: inset 0 0 0 9px rgba(7,18,14,.04); }

/* content/articles */
.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: start;
  gap: clamp(50px, 8vw, 120px);
}
.article-body { min-width: 0; max-width: 840px; }
.article-body > p:first-child { margin-top: 0; font-size: 1.22rem; line-height: 1.8; color: #34443a; }
.article-body h2 {
  scroll-margin-top: 120px;
  margin: 84px 0 22px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: 1.03;
}
.article-body h3 { margin: 48px 0 14px; font-size: 1.42rem; letter-spacing: -.03em; line-height: 1.2; }
.article-body p { margin: 0 0 22px; color: #35463d; }
.article-body ul, .article-body ol { margin: 24px 0 32px; padding-left: 22px; }
.article-body li { margin: 10px 0; padding-left: 7px; color: #34443a; }
.article-body li::marker { color: #3e7259; font-weight: 900; }
.article-body a { color: #2c694d; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.article-figure {
  position: relative;
  margin: 48px 0 72px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}
.article-figure img { width: 100%; border-radius: 24px; }
.article-figure figcaption { padding: 14px 8px 5px; color: var(--muted); font-size: 11px; font-weight: 700; }
.article-aside { position: sticky; top: 112px; }
.aside-box {
  margin-bottom: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.55);
}
.aside-box h2, .aside-box h3 { margin: 0 0 16px; font-size: 1rem; letter-spacing: -.02em; }
.aside-box p { color: var(--muted); font-size: 13px; }
.aside-box .button { width: 100%; min-height: 48px; padding-inline: 14px; }
.toc a {
  display: block;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  color: #405348;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}
.toc a:hover { color: #2f7454; }
.author-box { display: grid; grid-template-columns: 48px 1fr; gap: 13px; align-items: center; }
.author-mark { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; background: var(--acid); color: var(--ink); font-size: 13px; font-weight: 950; }

/* FAQ */
.faq-list { max-width: 980px; margin-inline: auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button {
  display: grid;
  grid-template-columns: 1fr 44px;
  align-items: center;
  width: 100%;
  padding: 26px 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -.025em;
}
.faq-item button::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 22px;
  font-weight: 400;
  transition: transform .35s ease, background .35s ease;
}
.faq-item.open button::after { transform: rotate(45deg); background: var(--acid); color: var(--ink); }
.faq-answer { display: grid; grid-template-rows: 0fr; opacity: 0; transition: grid-template-rows .4s ease, opacity .35s ease; }
.faq-answer > * { overflow: hidden; }
.faq-item.open .faq-answer { grid-template-rows: 1fr; opacity: 1; }
.faq-answer p { max-width: 800px; margin: 0 0 28px; color: var(--muted); }

/* contact */
.contact-layout { display: grid; grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr); gap: clamp(50px, 8vw, 110px); align-items: start; }
.contact-panel {
  position: sticky;
  top: 120px;
  padding: 32px;
  border-radius: 28px;
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--shadow);
}
.contact-panel h2 { font-size: clamp(2.3rem, 4vw, 4rem) !important; }
.contact-panel p { color: rgba(255,255,255,.66); }
.contact-row { padding: 18px 0; border-top: 1px solid rgba(255,255,255,.14); }
.contact-row strong { display: block; color: var(--acid); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.contact-row a { color: var(--white); text-decoration: none; }
.contact-form {
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
.contact-form label { display: block; margin-bottom: 7px; color: #33443a; font-size: 11px; font-weight: 850; letter-spacing: .04em; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%;
  min-height: 54px;
  padding: 13px 15px;
  border: 1px solid rgba(7,18,14,.18);
  border-radius: 12px;
  outline: 0;
  background: var(--paper);
  color: var(--ink);
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.contact-form textarea { min-height: 160px; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: #5b9939; background: var(--white); box-shadow: 0 0 0 4px rgba(200,255,77,.25); }
.form-note { color: var(--muted); font-size: 12px; }
.check { display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; }
.check input { width: 18px; min-height: 18px; margin-top: 4px; }
.honeypot { position: absolute !important; left: -9999px !important; }

/* contact CTA */
.contact-band {
  position: relative;
  padding: clamp(70px, 8vw, 110px) 0;
  overflow: hidden;
  color: var(--white);
  background: var(--ink-2);
}
.contact-band::before {
  content: "";
  position: absolute;
  width: 480px; height: 480px;
  right: -120px; top: 50%;
  border: 1px solid rgba(200,255,77,.22);
  border-radius: 50%;
  box-shadow: inset 0 0 0 70px rgba(200,255,77,.035), inset 0 0 0 140px rgba(200,255,77,.025);
  transform: translateY(-50%);
}
.contact-band .container { position: relative; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px; }
.contact-band h2 { margin: 0; color: var(--white); font-size: clamp(3rem, 6vw, 6.5rem); font-weight: 900; letter-spacing: -.07em; line-height: .9; }
.contact-band p { max-width: 700px; margin: 20px 0 0; color: rgba(255,255,255,.62); }
.contact-band .button-dark { --btn-bg: var(--acid); --btn-color: var(--ink); min-width: 210px; }
.contact-band .button-dark::before { background: var(--white); }

/* error */
.error-page { min-height: 100svh; display: grid; place-items: center; padding: 170px 24px 90px; text-align: center; background: radial-gradient(circle at 50% 40%, rgba(200,255,77,.35), transparent 25%), var(--paper); }
.error-page > div { max-width: 800px; }
.error-page > div > strong { display: block; color: var(--ink); font-size: clamp(7rem, 20vw, 18rem); font-weight: 950; letter-spacing: -.12em; line-height: .7; }
.error-page h1 { margin: 45px 0 15px; font-size: clamp(2.5rem, 6vw, 5rem); line-height: .95; letter-spacing: -.06em; }
.error-page p { color: var(--muted); }

/* footer */
.site-footer { position: relative; padding: 90px 0 28px; color: rgba(255,255,255,.65); background: #030806; }
.site-footer::before { content: ""; position: absolute; inset: 0 0 auto; height: 1px; background: linear-gradient(90deg, transparent, var(--acid), transparent); opacity: .5; }
.footer-grid { display: grid; grid-template-columns: 1.55fr 1fr 1fr 1fr; gap: clamp(34px, 5vw, 80px); }
.footer-brand img { width: 220px; height: auto; }
.footer-brand p { max-width: 430px; margin: 22px 0; }
.site-footer h2 { margin: 3px 0 20px; color: var(--white); font-size: 11px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.site-footer a { display: block; width: fit-content; margin: 10px 0; color: rgba(255,255,255,.62); font-size: 13px; text-decoration: none; transition: color .2s ease, transform .2s ease; }
.site-footer a:hover { color: var(--acid); transform: translateX(3px); }
.site-footer .button { display: inline-flex; margin-top: 8px; color: var(--ink); }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 70px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); font-size: 11px; font-weight: 700; letter-spacing: .05em; }
.mobile-call { display: none; }

/* reveal animation system */
.motion-ready .word { display: inline-block; overflow: hidden; vertical-align: bottom; }
.motion-ready .word-inner { display: inline-block; transform: translateY(115%) rotate(2deg); opacity: 0; filter: blur(6px); }
.page-loaded .word-inner { animation: wordIn .85s cubic-bezier(.16,1,.3,1) var(--word-delay,0ms) forwards; }
@keyframes wordIn { to { transform: translateY(0) rotate(0); opacity: 1; filter: blur(0); } }
.hero-intro { opacity: 0; transform: translateY(22px); }
.page-loaded .hero-intro { animation: introIn .8s cubic-bezier(.2,.8,.2,1) var(--intro-delay,0ms) forwards; }
@keyframes introIn { to { opacity: 1; transform: translateY(0); } }
.reveal-item, .reveal-heading, .reveal-card { opacity: 0; transition: opacity .8s ease var(--reveal-delay,0ms), transform .9s cubic-bezier(.16,1,.3,1) var(--reveal-delay,0ms), clip-path 1s cubic-bezier(.16,1,.3,1) var(--reveal-delay,0ms), filter .8s ease var(--reveal-delay,0ms); }
.reveal-item { transform: translateY(36px); filter: blur(7px); }
.reveal-heading { transform: translateY(50px); clip-path: inset(0 0 100% 0); }
.reveal-card { transform: translateY(58px) scale(.96); }
.reveal-item.is-visible, .reveal-heading.is-visible, .reveal-card.is-visible { opacity: 1; transform: none; clip-path: inset(0); filter: none; }

/* responsive */
@media (max-width: 1180px) {
  .main-nav a { padding-inline: 9px; font-size: 12px; }
  .header-call { min-width: 154px; padding-inline: 12px; }
  .hero-grid { grid-template-columns: 1fr .82fr; gap: 40px; }
  .hero-art { min-height: 520px; }
  .section-heading { grid-template-columns: .34fr 1fr; }
  .section-heading > p:last-child { grid-column: 2; }
  .service-card { grid-column: span 6 !important; }
  .service-card:nth-child(7) { grid-column: span 12 !important; min-height: 300px; }
  .city-card, .info-card { grid-column: span 6; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > :last-child { grid-column: 2 / -1; }
}

@media (max-width: 920px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .signal-note { display: none; }
  .nav-wrap { grid-template-columns: 1fr auto; min-height: 70px; padding: 9px 10px 9px 14px; border-radius: 20px; }
  .site-header.is-scrolled .nav-wrap { min-height: 62px; }
  .brand img { width: 190px; }
  .header-call { display: none; }
  .menu-toggle {
    position: relative;
    z-index: 1002;
    display: grid;
    place-content: center;
    width: 48px; height: 48px;
    padding: 0;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 14px;
    background: rgba(255,255,255,.06);
    cursor: pointer;
  }
  .menu-toggle > span:not(.sr-only) { display: block; width: 20px; height: 2px; margin: 3px 0; background: var(--white); transition: transform .3s ease, opacity .3s ease; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 3px;
    padding: 110px 28px 70px;
    background: var(--ink);
    transform: translateY(-105%);
    visibility: hidden;
    transition: transform .55s cubic-bezier(.16,1,.3,1), visibility .55s;
  }
  .main-nav::before { content: "NAVIGATION"; position: absolute; top: 46px; left: 28px; color: var(--acid); font-size: 10px; font-weight: 900; letter-spacing: .2em; }
  .main-nav.open { transform: translateY(0); visibility: visible; }
  .main-nav a { padding: 10px 0; border-radius: 0; color: rgba(255,255,255,.82); background: transparent !important; font-size: clamp(2rem, 7vw, 3.5rem); font-weight: 900; letter-spacing: -.05em; line-height: 1; transform: translateY(-20px); opacity: 0; transition: transform .45s ease calc(var(--nav-index)*45ms + 120ms), opacity .45s ease calc(var(--nav-index)*45ms + 120ms), color .2s ease; }
  .main-nav.open a { transform: translateY(0); opacity: 1; }
  .main-nav a::after { display: none; }
  .breadcrumbs { width: min(calc(100% - 32px), var(--container)); padding-top: 132px; }
  .hero { padding-top: 132px; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { padding-top: 26px; }
  .hero h1 { font-size: clamp(4rem, 15vw, 7rem); }
  .hero-art { min-height: 520px; margin-top: -10px; }
  .hero-art img { width: min(92%, 640px); right: 0; }
  .hero-badge { left: 5%; bottom: 2%; }
  .scroll-cue { display: none; }
  .page-hero { margin-top: 14px; }
  .section-heading { grid-template-columns: 1fr; gap: 16px; }
  .section-heading .eyebrow { padding-top: 0; }
  .section-heading > p:last-child { grid-column: auto; max-width: 650px; }
  .split, .split.reverse { grid-template-columns: 1fr; gap: 50px; }
  .split.reverse > :first-child, .split.reverse > :last-child { order: initial; }
  .number-steps { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(2) { border-right: 0; }
  .step:nth-child(n+3) { border-top: 1px solid var(--line); }
  .card-grid.two { grid-template-columns: 1fr; }
  .content-layout { grid-template-columns: 1fr; }
  .article-body { max-width: none; }
  .article-aside { position: static; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-panel { position: static; }
  .contact-band .container { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .stat { min-height: 180px; border-right: 0; border-bottom: 1px solid rgba(7,18,14,.25); }
  .stat:last-child { border-bottom: 0; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid > :last-child { grid-column: auto; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .container { width: min(calc(100% - 24px), var(--container)); }
  .signal-bar { height: 28px; line-height: 28px; font-size: 9px; }
  .nav-wrap { min-height: 62px; margin-top: 8px; }
  .brand img { width: 166px; }
  .menu-toggle { width: 44px; height: 44px; }
  .site-header.is-scrolled .nav-wrap { margin-top: -21px; }
  .breadcrumbs { width: min(calc(100% - 24px), var(--container)); padding-top: 112px; font-size: 10px; }
  .hero { min-height: auto; padding: 112px 0 54px; }
  .hero h1 { font-size: clamp(3.6rem, 18vw, 5.5rem); }
  .hero h1 em { transform: none; }
  .hero-copy > p:not(.eyebrow) { margin-top: 24px; }
  .actions { align-items: stretch; }
  .actions .button { flex: 1 1 100%; }
  .trust-row span { font-size: 9px; }
  .hero-art { min-height: 390px; margin-top: 10px; }
  .hero-art img { inset: 5% 0 auto auto; width: 96%; border-radius: 28px; }
  .hero-art::before { width: 110px; height: 110px; left: -5px; }
  .hero-badge { width: 118px; height: 118px; left: 0; bottom: 0; }
  .hero-badge strong { font-size: 2.25rem; }
  .hero-badge span { font-size: 8px; }
  .page-hero { padding: 58px 0 64px; }
  .page-hero h1 { font-size: clamp(2.75rem, 13vw, 4.6rem); }
  .page-hero::after { width: 110px; right: -35px; }
  .page-hero .lead { margin-top: 22px; font-size: 1rem; }
  .tag-list span { font-size: 9px; }
  .section { padding: 76px 0; }
  .section-heading { margin-bottom: 36px; }
  .section-heading h2, .split h2, .contact-layout h2 { font-size: clamp(2.45rem, 12vw, 4rem) !important; }
  .service-card, .service-card:nth-child(n), .city-card, .info-card { grid-column: 1 / -1 !important; }
  .service-card { min-height: 340px; padding: 24px; }
  .card-icon { width: 88px; height: 88px; }
  .card-icon .icon { width: 47px; height: 47px; }
  .article-card { grid-template-columns: 1fr; min-height: auto; padding: 24px; }
  .article-card .card-icon { width: 80px; height: 80px; }
  .number-steps { grid-template-columns: 1fr; }
  .step, .step:not(:first-child) { min-height: 240px; padding: 30px 0; border-right: 0; border-top: 1px solid var(--line); }
  .step:first-child { border-top: 0; }
  .step::before { margin-bottom: 42px; }
  .illustration-frame { border-radius: 28px; }
  .illustration-frame img { border-radius: 21px; }
  .article-body h2 { margin-top: 64px; font-size: 2.25rem; }
  .article-figure { margin: 35px 0 55px; border-radius: 24px; }
  .article-figure img { border-radius: 17px; }
  .article-aside { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .full { grid-column: auto; }
  .contact-form { padding: 22px; }
  .faq-item button { grid-template-columns: 1fr 38px; gap: 14px; padding: 20px 0; }
  .faq-item button::after { width: 36px; height: 36px; }
  .contact-band .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; margin-top: 45px; }
  .mobile-call {
    position: fixed;
    left: 12px; right: 12px; bottom: 12px;
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    border: 1px solid rgba(7,18,14,.2);
    border-radius: 15px;
    background: var(--acid);
    color: var(--ink);
    box-shadow: 0 14px 45px rgba(0,0,0,.25);
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
  }
  .site-footer { padding-bottom: 95px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .word-inner, .hero-intro, .reveal-item, .reveal-heading, .reveal-card { opacity: 1 !important; transform: none !important; clip-path: none !important; filter: none !important; }
}
.error-page .actions { justify-content: center; }
@media (max-width: 920px) {
  .nav-wrap { backdrop-filter: none; -webkit-backdrop-filter: none; }
}
.card-grid.four .info-card { grid-column: span 3; }
@media (max-width: 1180px) { .card-grid.four .info-card { grid-column: span 6; } }
@media (max-width: 640px) { .card-grid.four .info-card { grid-column: 1 / -1; } }

/* v1.3 compact density pass */
:root { --container: 1260px; }

/* More content above the fold without sacrificing the visual language */
.hero { min-height: 760px; padding: 132px 0 44px; }
.hero-grid { min-height: 590px; gap: clamp(36px, 5vw, 70px); }
.hero-art { min-height: 500px; }
.hero-art img { width: 90%; }
.hero-copy > p:not(.eyebrow) { margin-top: 22px; }
.actions { margin-top: 24px; }
.trust-row { margin-top: 20px; }
.scroll-cue { bottom: 12px; }

.page-hero { padding: clamp(52px, 6vw, 78px) 0 clamp(48px, 5vw, 70px); }
.page-hero h1 { font-size: clamp(3rem, 5.35vw, 6.2rem); }
.page-hero .lead { margin-top: 20px; }
.tag-list { margin-top: 20px; }

.section { padding: clamp(66px, 7vw, 96px) 0; }
.section-heading { gap: 26px; margin-bottom: clamp(32px, 4vw, 50px); }
.section-heading h2, .split h2, .contact-layout h2 { font-size: clamp(2.45rem, 4.25vw, 4.8rem) !important; }
.split { gap: clamp(40px, 5vw, 72px); }

.service-card { min-height: 335px; padding: 25px; }
.card-icon { width: 86px; height: 86px; }
.card-icon .icon { width: 47px; height: 47px; }
.card-kicker { margin-top: 20px; }
.service-card p, .article-card p, .city-card p, .info-card p { margin-top: 12px; }
.text-link { padding-top: 18px; }
.article-card { min-height: 215px; padding: 24px; gap: 20px; }
.article-card .card-icon { width: 80px; height: 80px; }
.city-card, .info-card { min-height: 215px; padding: 24px; }

.step { min-height: 220px; padding-top: 28px; padding-bottom: 22px; }
.step::before { margin-bottom: 34px; }
.step p { margin-top: 11px; }

.stat { min-height: 170px; padding: 28px; }
.stat strong { font-size: clamp(4rem, 7vw, 7.2rem); }
.stat span { margin-top: 18px; }
.stat::after { right: 22px; bottom: 22px; }

.content-layout { gap: clamp(38px, 5vw, 72px); }
.article-body h2 { margin-top: 58px; padding-top: 20px; }
.article-body h3 { margin-top: 36px; }
.article-body p { margin-bottom: 18px; }
.article-body ul, .article-body ol { margin: 20px 0 26px; }
.article-figure { margin: 32px 0 46px; }
.notice { margin: 24px 0; }
.aside-box { padding: 20px; }

.contact-layout { gap: clamp(38px, 5vw, 72px); }
.contact-panel { padding: 28px; }
.contact-form { padding: clamp(26px, 3vw, 38px); }
.contact-band { padding: clamp(54px, 6vw, 76px) 0; }
.contact-band h2 { font-size: clamp(2.8rem, 5vw, 5.3rem); }
.site-footer { padding-top: 64px; }
.footer-grid { gap: clamp(28px, 4vw, 58px); }
.footer-bottom { margin-top: 48px; }

@media (max-width: 1180px) {
  .hero { min-height: 700px; }
  .hero-art { min-height: 440px; }
  .service-card:nth-child(7) { min-height: 260px; }
}

@media (max-width: 920px) {
  .hero { min-height: auto; padding-bottom: 38px; }
  .hero-art { min-height: 390px; margin-top: -18px; }
  .split, .split.reverse { gap: 38px; }
  .stat { min-height: 142px; }
}

@media (max-width: 640px) {
  .hero { padding: 104px 0 34px; }
  .hero-copy { padding-top: 14px; }
  .hero-copy > p:not(.eyebrow) { margin-top: 18px; line-height: 1.62; }
  .actions { margin-top: 20px; }
  .trust-row { margin-top: 16px; }
  .hero-art { min-height: 305px; margin-top: 0; }
  .hero-art img { width: 92%; }
  .hero-badge { width: 104px; height: 104px; }
  .hero-badge strong { font-size: 2rem; }
  .page-hero { padding: 42px 0 48px; }
  .page-hero .lead { margin-top: 18px; }
  .section { padding: 54px 0; }
  .section-heading { margin-bottom: 28px; }
  .split, .split.reverse { gap: 30px; }
  .service-card { min-height: 285px; padding: 22px; }
  .city-card, .info-card { min-height: 185px; padding: 22px; }
  .article-card { padding: 22px; }
  .step, .step:not(:first-child) { min-height: auto; padding: 24px 0; }
  .step::before { margin-bottom: 22px; }
  .stat { min-height: 126px; padding: 24px; }
  .stat span { margin-top: 14px; }
  .article-body h2 { margin-top: 48px; }
  .article-body h3 { margin-top: 32px; }
  .article-figure { margin: 28px 0 40px; }
  .contact-band { padding: 48px 0; }
  .site-footer { padding-top: 54px; }
  .footer-bottom { margin-top: 36px; }
}

/* Reveal headings must retain a measurable painted box for IntersectionObserver. */
.reveal-heading { clip-path: none; filter: blur(6px); }
.reveal-heading.is-visible { clip-path: none; filter: none; }


/* =========================================================
   v1.4.0 Editorial Sage redesign overrides
   Komplett neues visuelles System mit neutralem Grün
   ========================================================= */
:root {
  --ink: #1f2521;
  --ink-2: #28302b;
  --ink-3: #344039;
  --paper: #f6f3ee;
  --paper-2: #efebe5;
  --white: #ffffff;
  --acid: #7d8f7a;
  --acid-2: #667863;
  --mint: #b8c3b2;
  --line: rgba(31, 37, 33, .12);
  --line-light: rgba(255, 255, 255, .16);
  --muted: #667267;
  --danger: #c56552;
  --shadow: 0 26px 80px rgba(29, 34, 30, .09);
  --shadow-soft: 0 16px 42px rgba(29, 34, 30, .07);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1240px;
}
html { background: var(--paper); }
body {
  background:
    radial-gradient(circle at top left, rgba(125,143,122,.08), transparent 30%),
    linear-gradient(180deg, #faf8f4 0%, var(--paper) 42%, #f4f0eb 100%);
  color: var(--ink);
}
::selection { color: var(--white); background: var(--acid-2); }
.scroll-progress {
  height: 3px;
  background: linear-gradient(90deg, var(--acid), var(--acid-2));
  box-shadow: none;
}
.container { width: min(calc(100% - 48px), var(--container)); }

.site-header { color: var(--ink); }
.signal-bar {
  height: 36px;
  background: rgba(255,255,255,.72);
  color: var(--muted);
  border-bottom: 1px solid rgba(31,37,33,.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 10px;
  font-weight: 800;
}
.signal-bar .container > span:first-child::before {
  background: var(--acid);
  box-shadow: 0 0 0 4px rgba(125,143,122,.14);
}
.nav-wrap {
  min-height: 74px;
  margin-top: 14px;
  padding: 8px 10px 8px 14px;
  border: 1px solid rgba(31,37,33,.08);
  border-radius: 22px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 12px 42px rgba(20,24,21,.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.site-header.is-scrolled .nav-wrap {
  min-height: 64px;
  margin-top: -24px;
  border-radius: 18px;
  background: rgba(255,255,255,.92);
}
.main-nav a {
  color: #566359;
  font-size: 13px;
  font-weight: 760;
  letter-spacing: .02em;
}
.main-nav a::after {
  left: 12px; right: 12px; bottom: 8px;
  height: 2px;
  background: var(--acid);
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--ink);
  background: rgba(125,143,122,.09);
}
.header-call {
  min-width: 174px;
  background: var(--ink);
  color: var(--white);
  border-radius: 14px;
}
.header-call:hover { background: var(--acid-2); box-shadow: 0 10px 28px rgba(102,120,99,.22); }
.header-call small { opacity: .7; }
.brand img { width: 214px; }

.breadcrumbs { padding-top: 150px; color: #7b857c; }
.breadcrumbs a { color: #5a665c; }
.breadcrumbs a:hover { color: var(--acid-2); }

.hero {
  min-height: auto;
  padding: 164px 0 78px;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 16%, rgba(125,143,122,.14), transparent 34%),
    radial-gradient(circle at 84% 18%, rgba(184,195,178,.24), transparent 26%),
    linear-gradient(180deg, #fbfaf7 0%, #f4efe8 100%);
  overflow: hidden;
}
.hero::before {
  inset: auto -6% -14% auto;
  width: min(640px, 62vw);
  height: min(640px, 62vw);
  border-radius: 46% 54% 54% 46% / 44% 46% 54% 56%;
  opacity: .75;
  background: linear-gradient(180deg, rgba(125,143,122,.12), rgba(125,143,122,0));
  filter: blur(12px);
  mask-image: none;
}
.hero::after { content: none; }
.hero-grid {
  grid-template-columns: minmax(0,1.04fr) minmax(360px,.96fr);
  gap: clamp(32px, 5vw, 68px);
  min-height: auto;
  align-items: center;
}
.eyebrow {
  color: #6e7b71;
  font-size: 10px;
  letter-spacing: .18em;
}
.eyebrow::before { width: 28px; background: currentColor; }
.hero .eyebrow,
.section-dark .eyebrow,
.contact-band .eyebrow { color: var(--acid-2); }
.hero h1 {
  max-width: 760px;
  font-size: clamp(3.6rem, 6.7vw, 6.3rem);
  line-height: .92;
  letter-spacing: -.06em;
}
.hero h1 em {
  color: var(--acid-2);
  font-style: normal;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  transform: none;
}
.hero-copy > p:not(.eyebrow) {
  max-width: 640px;
  margin-top: 24px;
  color: #526056;
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.76;
}
.actions { gap: 12px; margin-top: 26px; }
.button {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .06em;
}
.button-dark,
.hero .button-dark,
.section-dark .button-dark,
.contact-band .button-dark,
.button-amber {
  --btn-bg: var(--acid-2);
  --btn-color: var(--white);
}
.button-dark::before,
.hero .button-dark::before,
.section-dark .button-dark::before,
.contact-band .button-dark::before,
.button-amber::before {
  background: var(--ink);
}
.button-outline {
  --btn-bg: transparent;
  --btn-color: var(--ink);
  border-color: rgba(31,37,33,.14);
  background: rgba(255,255,255,.5);
}
.hero .button-outline,
.section-dark .button-outline {
  --btn-color: var(--ink);
  border-color: rgba(31,37,33,.14);
}
.button-light {
  --btn-bg: rgba(255,255,255,.94);
  --btn-color: var(--ink);
}
.trust-row { gap: 10px; margin-top: 22px; }
.trust-row span {
  padding: 8px 12px;
  border: 1px solid rgba(31,37,33,.08);
  border-radius: 999px;
  background: rgba(255,255,255,.64);
  color: #59665d;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .07em;
}
.hero-art {
  position: relative;
  min-height: 520px;
  border: 1px solid rgba(31,37,33,.08);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(247,244,239,.96));
  box-shadow: var(--shadow);
  overflow: hidden;
  transform:
    translateY(var(--hero-art-y, 0))
    scale(var(--hero-art-scale, 1))
    rotateX(var(--hero-art-rx, 0))
    rotateY(var(--hero-art-ry, 0));
}
.hero-art::before,
.hero-art::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-art::before {
  width: 220px; height: 220px;
  left: -50px; top: -45px;
  background: radial-gradient(circle, rgba(125,143,122,.18) 0%, rgba(125,143,122,0) 68%);
}
.hero-art::after {
  width: 180px; height: 180px;
  right: -44px; bottom: -44px;
  background: radial-gradient(circle, rgba(184,195,178,.38) 0%, rgba(184,195,178,0) 70%);
  animation: none;
}
.hero-art img {
  position: absolute;
  inset: 42px 32px 42px 32px;
  width: calc(100% - 64px);
  height: calc(100% - 84px);
  object-fit: contain;
  border-radius: 24px;
  background: linear-gradient(180deg, #f6f4ef, #ece8e1);
  box-shadow: inset 0 0 0 1px rgba(31,37,33,.05);
}
.hero-badge {
  left: 28px;
  bottom: 28px;
  width: auto;
  height: auto;
  padding: 18px 20px;
  border: 1px solid rgba(31,37,33,.08);
  border-radius: 18px;
  background: rgba(255,255,255,.94);
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(20,24,21,.08);
  transform: translateY(var(--hero-badge-y,0)) rotate(var(--hero-badge-rotate,0)) scale(var(--hero-badge-scale,1));
}
.hero-badge::before { display: none; }
.hero-badge strong { font-size: 2.55rem; line-height: .9; letter-spacing: -.07em; }
.hero-badge span {
  max-width: 140px;
  margin-top: 7px;
  color: #667267;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .16em;
}
.scroll-cue { color: #6e7b71; bottom: 24px; }
.scroll-cue::before { background: linear-gradient(90deg, var(--acid), transparent); }

.page-hero {
  padding: 86px 0 76px;
  margin-top: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 86% 16%, rgba(184,195,178,.28), transparent 24%),
    linear-gradient(180deg, #faf8f4 0%, #f2ede7 100%);
}
.page-hero::before {
  opacity: .45;
  background-image: linear-gradient(rgba(31,37,33,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(31,37,33,.05) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.75), transparent 88%);
}
.page-hero::after {
  width: 180px;
  height: 180px;
  right: -40px;
  bottom: -34px;
  border-width: 18px;
  border-color: rgba(125,143,122,.15);
}
.page-hero h1 {
  max-width: 880px;
  font-size: clamp(3rem, 6vw, 5.3rem);
  line-height: .96;
  letter-spacing: -.055em;
}
.page-hero .lead { max-width: 860px; color: #56645a; font-size: 1.06rem; }
.tag-list span {
  border: 1px solid rgba(31,37,33,.1);
  background: rgba(255,255,255,.72);
  color: #5f6c62;
}

.section { padding: clamp(70px, 7.8vw, 102px) 0; }
.section + .section { border-top: 1px solid rgba(31,37,33,.06); }
.section-heading { margin-bottom: 40px; align-items: end; }
.section-heading h2,
.split h2,
.contact-layout h2 {
  font-size: clamp(2.55rem, 4.9vw, 4.3rem) !important;
  line-height: .98;
  letter-spacing: -.055em;
}
.section-heading > p:last-child { color: #647066; }
.section-sand { background: #fbfaf8; }
.section-moss {
  background: linear-gradient(180deg, #f0ede7 0%, #ebe8e1 100%);
}
.section-dark {
  color: rgba(255,255,255,.82);
  background: linear-gradient(180deg, #272f2b 0%, #1e2521 100%);
}
.section-dark::before {
  opacity: .12;
  background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 38px 38px;
}
.section-dark p { color: rgba(255,255,255,.7); }
.split { gap: clamp(36px, 5vw, 62px); }
.illustration-frame {
  border: 1px solid rgba(31,37,33,.07);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(247,244,239,.96));
  box-shadow: var(--shadow);
}
.illustration-frame::before {
  inset: 18px auto auto 20px;
  width: 72px; height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(125,143,122,.22), rgba(125,143,122,.06));
}
.illustration-frame img { border-radius: 24px; }
.section-dark .illustration-frame {
  border-color: rgba(255,255,255,.1);
  background: rgba(255,255,255,.05);
  box-shadow: 0 20px 46px rgba(0,0,0,.22);
  transform: none;
}

.card-grid { gap: 20px; }
.service-card,
.article-card,
.city-card,
.info-card {
  border: 1px solid rgba(31,37,33,.08);
  border-radius: 24px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 10px 28px rgba(20,24,21,.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.service-card::before,
.article-card::before,
.city-card::before,
.info-card::before {
  opacity: 0;
  background: radial-gradient(circle at var(--glow-x,50%) var(--glow-y,50%), rgba(125,143,122,.14), transparent 58%);
}
.service-card:hover,
.article-card:hover,
.city-card:hover,
.info-card:hover {
  transform: translateY(-6px) rotateX(var(--tilt-x,0)) rotateY(var(--tilt-y,0));
  border-color: rgba(125,143,122,.24);
  box-shadow: 0 18px 42px rgba(20,24,21,.08);
}
.service-card {
  min-height: 0;
  padding: 26px;
  grid-column: span 4;
}
.service-card:nth-child(1),
.service-card:nth-child(2),
.service-card:nth-child(6),
.service-card:nth-child(7) { grid-column: span 6; }
.service-card:nth-child(3),
.service-card:nth-child(4),
.service-card:nth-child(5) { grid-column: span 4; }
.service-card::after {
  content: "";
  position: absolute;
  left: 24px; right: 24px; top: 0;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--acid), rgba(125,143,122,.08));
}
.card-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(125,143,122,.12), rgba(125,143,122,.04));
  color: var(--acid-2);
}
.card-icon::after {
  inset: -5px;
  border: 1px dashed rgba(125,143,122,.2);
  animation: none;
}
.card-icon .icon { width: 42px; height: 42px; }
.card-kicker { color: #7c877e; font-size: 10px; letter-spacing: .16em; }
.service-card h3,
.article-card h3,
.city-card h3,
.info-card h3 { font-size: clamp(1.35rem, 2vw, 1.9rem); line-height: 1.08; }
.service-card p,
.article-card p,
.city-card p,
.info-card p { color: #617066; font-size: 14px; }
.text-link { color: var(--ink); font-size: 12px; }
.text-link > span { background: var(--acid-2); color: var(--white); }
.article-card {
  grid-template-columns: 90px 1fr;
  min-height: 0;
  padding: 28px;
}
.article-card .card-icon {
  width: 76px;
  height: 76px;
  border-radius: 18px;
}
.meta { color: #839086; }
.city-card,
.info-card { padding: 24px; min-height: 0; }
.city-card::after {
  right: 22px; top: 20px;
  border-color: rgba(31,37,33,.1);
  color: var(--acid-2);
}
.city-card:hover::after { background: rgba(125,143,122,.12); }

.number-steps {
  gap: 0;
  border: 1px solid rgba(31,37,33,.08);
  border-radius: 26px;
  overflow: hidden;
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow-soft);
}
.step {
  min-height: 270px;
  padding: 32px 28px;
  border-right: 1px solid rgba(31,37,33,.08);
}
.step::before { color: rgba(125,143,122,.55); font-size: 12px; letter-spacing: .16em; }
.step::after { background: linear-gradient(90deg, rgba(125,143,122,.22), rgba(125,143,122,.04)); }
.step h3 { font-size: 1.45rem; }
.step p { color: #667267; }

.check-list li,
.plain-list li { border-color: rgba(31,37,33,.08); }
.check-list li::before,
.plain-list li::before { color: var(--acid-2); }
.notice {
  border: 1px solid rgba(31,37,33,.08);
  border-radius: 18px;
  background: rgba(255,255,255,.88);
}
.notice::before { background: var(--acid); }
.warning { background: rgba(197,101,82,.08); }
.warning::before { background: var(--danger); }
.city-cloud a {
  border-color: rgba(31,37,33,.09);
  border-radius: 999px;
  background: rgba(255,255,255,.7);
  color: #5f6c62;
}
.city-cloud a::before { background: var(--acid-2); }
.city-cloud a:hover { border-color: var(--acid-2); }

.stats { gap: 18px; grid-template-columns: repeat(3, minmax(0,1fr)); }
.stat {
  min-height: 0;
  padding: 28px;
  border: 1px solid rgba(31,37,33,.08);
  border-radius: 24px;
  background: rgba(255,255,255,.86);
  box-shadow: var(--shadow-soft);
}
.stat:last-child { border-right: 1px solid rgba(31,37,33,.08); }
.stat strong { font-size: clamp(3rem, 5vw, 4.8rem); color: var(--ink); }
.stat span { margin-top: 14px; color: #6d7970; letter-spacing: .12em; }
.stat::after { right: 22px; bottom: 22px; width: 34px; height: 34px; border-color: rgba(125,143,122,.25); box-shadow: inset 0 0 0 7px rgba(125,143,122,.05); }

.content-layout { gap: clamp(28px, 4vw, 56px); align-items: start; }
.article-body {
  max-width: none;
  padding: clamp(28px, 3vw, 38px);
  border: 1px solid rgba(31,37,33,.08);
  border-radius: 28px;
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow-soft);
}
.article-body > p:first-child { color: #48564d; font-size: 1.12rem; }
.article-body h2 {
  margin-top: 62px;
  padding-top: 18px;
  border-top: 1px solid rgba(31,37,33,.07);
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.02;
}
.article-body h3 { margin-top: 40px; font-size: 1.32rem; }
.article-body p,
.article-body li { color: #415046; }
.article-body li::marker,
.article-body a { color: var(--acid-2); }
.article-figure {
  margin: 34px 0 42px;
  border: 1px solid rgba(31,37,33,.08);
  border-radius: 26px;
  background: rgba(247,244,239,.95);
}
.article-figure img { border-radius: 20px; }
.article-aside { top: 108px; }
.aside-box {
  border: 1px solid rgba(31,37,33,.08);
  border-radius: 22px;
  background: rgba(255,255,255,.84);
  box-shadow: var(--shadow-soft);
}
.toc a:hover { color: var(--acid-2); }
.author-mark { background: rgba(125,143,122,.16); color: var(--acid-2); }

.faq-list { border-top-color: rgba(31,37,33,.08); }
.faq-item { border-bottom-color: rgba(31,37,33,.08); }
.faq-item button { padding: 24px 0; font-size: clamp(1.18rem, 2vw, 1.55rem); }
.faq-item button::after {
  border-color: rgba(31,37,33,.1);
  background: rgba(255,255,255,.75);
  color: var(--acid-2);
}
.faq-item.open button::after { background: rgba(125,143,122,.14); color: var(--acid-2); }
.faq-answer p { color: #667267; }

.contact-layout { gap: clamp(34px, 5vw, 62px); }
.contact-panel {
  position: sticky;
  top: 110px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 28px;
  background: linear-gradient(180deg, #2d3731 0%, #222923 100%);
}
.contact-row strong { color: #b4c0ae; }
.contact-form {
  border: 1px solid rgba(31,37,33,.08);
  border-radius: 28px;
  background: rgba(255,255,255,.9);
  box-shadow: var(--shadow);
}
.contact-form label { color: #5d695f; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  border-color: rgba(31,37,33,.11);
  border-radius: 16px;
  background: #fbfaf8;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--acid);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(125,143,122,.18);
}
.contact-band {
  background: linear-gradient(135deg, #2a322d 0%, #202621 100%);
}
.contact-band::before {
  opacity: .12;
  background-image: linear-gradient(rgba(255,255,255,.14) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.14) 1px, transparent 1px);
  background-size: 34px 34px;
}
.contact-band h2 { color: var(--white); font-size: clamp(2.6rem, 5vw, 4.8rem); }
.contact-band p { color: rgba(255,255,255,.68); }
.contact-band .button-dark { min-width: 200px; }

.error-page {
  background: radial-gradient(circle at 50% 35%, rgba(125,143,122,.22), transparent 25%), var(--paper);
}
.site-footer {
  color: rgba(255,255,255,.68);
  background: #1c211d;
}
.site-footer::before {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,195,178,.38), transparent);
}
.site-footer h2 { color: rgba(255,255,255,.75); }
.site-footer a:hover { color: #d9e2d5; }
.footer-bottom { border-top-color: rgba(255,255,255,.1); }
.mobile-call {
  border-color: rgba(31,37,33,.12);
  background: var(--ink);
  color: var(--white);
}

@media (max-width: 1180px) {
  .hero-grid { grid-template-columns: 1fr .9fr; gap: 30px; }
  .service-card:nth-child(n) { grid-column: span 6; }
  .service-card:nth-child(7) { grid-column: span 12; }
  .card-grid.four .info-card { grid-column: span 6; }
}

@media (max-width: 920px) {
  .signal-bar {
    background: rgba(255,255,255,.86);
    color: #758077;
  }
  .nav-wrap {
    grid-template-columns: 1fr auto;
    min-height: 68px;
    border-radius: 20px;
    background: rgba(255,255,255,.88);
  }
  .menu-toggle {
    border-color: rgba(31,37,33,.1);
    background: rgba(125,143,122,.08);
  }
  .menu-toggle > span:not(.sr-only) { background: var(--ink); }
  .main-nav {
    background: rgba(249,247,242,.98);
  }
  .main-nav::before { color: #7b867d; }
  .main-nav a {
    color: var(--ink);
    font-size: clamp(1.9rem, 7vw, 3.2rem);
  }
  .main-nav a:hover,
  .main-nav a.active { color: var(--acid-2); }
  .hero {
    padding-top: 136px;
    padding-bottom: 56px;
  }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding-top: 8px; }
  .hero-art { min-height: 430px; }
  .hero-art img { inset: 30px 22px 30px 22px; width: calc(100% - 44px); height: calc(100% - 60px); }
  .stats { grid-template-columns: 1fr; }
  .stat:last-child { border-right: 1px solid rgba(31,37,33,.08); }
  .article-aside { grid-template-columns: 1fr 1fr; }
  .contact-panel { position: static; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .signal-bar { height: 30px; line-height: 30px; font-size: 9px; }
  .nav-wrap { margin-top: 8px; }
  .brand img { width: 176px; }
  .site-header.is-scrolled .nav-wrap { margin-top: -22px; }
  .breadcrumbs { padding-top: 110px; }
  .hero { padding: 112px 0 48px; }
  .hero h1 { font-size: clamp(3rem, 16vw, 4.7rem); }
  .hero-copy > p:not(.eyebrow) { font-size: 1rem; }
  .trust-row { gap: 8px; }
  .hero-art { min-height: 318px; border-radius: 24px; }
  .hero-art img { inset: 24px 18px 24px 18px; width: calc(100% - 36px); height: calc(100% - 48px); border-radius: 16px; }
  .hero-badge {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 12px 14px;
    border-radius: 14px;
  }
  .hero-badge strong { font-size: 1.75rem; }
  .hero-badge span { max-width: none; font-size: 8px; }
  .page-hero { padding: 56px 0 56px; }
  .section { padding: 64px 0; }
  .section-heading { margin-bottom: 32px; }
  .service-card,
  .service-card:nth-child(n),
  .city-card,
  .info-card,
  .card-grid.four .info-card { grid-column: 1 / -1 !important; }
  .service-card { padding: 22px; }
  .article-card { grid-template-columns: 1fr; padding: 22px; }
  .number-steps { border-radius: 22px; }
  .step,
  .step:not(:first-child) {
    min-height: 0;
    padding: 26px 22px;
    border-top: 1px solid rgba(31,37,33,.08);
  }
  .step:first-child { border-top: 0; }
  .article-body {
    padding: 22px;
    border-radius: 22px;
  }
  .article-body h2 { margin-top: 48px; font-size: 1.95rem; }
  .article-figure { border-radius: 22px; }
  .article-figure img { border-radius: 16px; }
  .article-aside { grid-template-columns: 1fr; }
  .contact-panel,
  .contact-form { border-radius: 22px; }
  .contact-form { padding: 22px; }
  .mobile-call {
    left: 12px; right: 12px; bottom: 12px;
    min-height: 54px;
    border-radius: 16px;
    background: var(--acid-2);
    box-shadow: 0 16px 36px rgba(20,24,21,.18);
  }
}


/* =========================================================
   v1.4.1 Muted tone-down overrides
   Weniger grell, dunkler, gedämpfter
   ========================================================= */
:root {
  --ink: #242925;
  --ink-2: #2d332e;
  --ink-3: #39413b;
  --paper: #ebe6de;
  --paper-2: #dfd9cf;
  --white: #f7f4ef;
  --acid: #7b8578;
  --acid-2: #667062;
  --mint: #aeb6a9;
  --line: rgba(36, 41, 37, .12);
  --line-light: rgba(255,255,255,.12);
  --muted: #666f68;
  --shadow: 0 22px 60px rgba(22, 24, 22, .09);
  --shadow-soft: 0 14px 34px rgba(22, 24, 22, .07);
}
html { background: #e7e1d8; }
body {
  background:
    radial-gradient(circle at top left, rgba(123,133,120,.05), transparent 26%),
    linear-gradient(180deg, #ede8e0 0%, #e6e0d7 48%, #e2dcd2 100%);
}
.signal-bar {
  background: rgba(231,226,218,.84);
  color: #697269;
  border-bottom-color: rgba(36,41,37,.08);
}
.nav-wrap {
  background: rgba(236,232,226,.82);
  border-color: rgba(36,41,37,.08);
  box-shadow: 0 10px 28px rgba(22,24,22,.07);
}
.site-header.is-scrolled .nav-wrap { background: rgba(232,228,222,.92); }
.main-nav a { color: #59635c; }
.main-nav a:hover,
.main-nav a.active { background: rgba(123,133,120,.08); }
.header-call { background: #333932; }
.header-call:hover { background: #4a5348; }

.hero {
  background:
    radial-gradient(circle at 18% 16%, rgba(123,133,120,.08), transparent 32%),
    radial-gradient(circle at 84% 18%, rgba(174,182,169,.14), transparent 24%),
    linear-gradient(180deg, #ece7df 0%, #e5dfd6 100%);
}
.hero::before { opacity: .55; }
.hero-copy > p:not(.eyebrow) { color: #556058; }
.trust-row span {
  background: rgba(240,236,230,.68);
  border-color: rgba(36,41,37,.06);
  color: #5f6962;
}
.hero-art {
  background: linear-gradient(180deg, rgba(235,231,225,.94), rgba(226,220,212,.96));
  border-color: rgba(36,41,37,.08);
  box-shadow: 0 14px 36px rgba(22,24,22,.08);
}
.hero-art img {
  background: linear-gradient(180deg, #ece7df, #e1dbd2);
}
.hero-badge {
  background: rgba(236,232,226,.94);
  border-color: rgba(36,41,37,.07);
  box-shadow: 0 10px 26px rgba(22,24,22,.08);
}

.page-hero {
  background:
    radial-gradient(circle at 86% 16%, rgba(174,182,169,.16), transparent 22%),
    linear-gradient(180deg, #ede8e1 0%, #e4ddd4 100%);
}
.tag-list span {
  background: rgba(237,233,227,.78);
  border-color: rgba(36,41,37,.08);
}
.section-sand { background: #ece8e1; }
.section-moss { background: linear-gradient(180deg, #e4ded5 0%, #ddd7cd 100%); }
.section-dark { background: linear-gradient(180deg, #2c322d 0%, #242925 100%); }
.illustration-frame {
  background: linear-gradient(180deg, rgba(235,231,225,.94), rgba(228,223,215,.96));
  box-shadow: 0 14px 38px rgba(22,24,22,.07);
}
.service-card,
.article-card,
.city-card,
.info-card,
.stat,
.article-body,
.aside-box,
.contact-form,
.notice,
.number-steps {
  background: rgba(239,235,229,.78);
  border-color: rgba(36,41,37,.08);
  box-shadow: 0 10px 24px rgba(22,24,22,.05);
}
.service-card p,
.article-card p,
.city-card p,
.info-card p,
.article-body p,
.article-body li,
.faq-answer p { color: #4d5850; }
.card-icon {
  background: linear-gradient(180deg, rgba(123,133,120,.10), rgba(123,133,120,.035));
  color: #5f6a5c;
}
.city-cloud a,
.tag-list span {
  color: #58635b;
}
.city-cloud a { background: rgba(237,233,227,.74); }
.number-steps { background: rgba(236,232,226,.78); }
.stat span { color: #667068; }
.article-figure { background: rgba(229,224,216,.94); }
.contact-panel {
  background: linear-gradient(180deg, #343a35 0%, #292e29 100%);
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  background: rgba(247,244,239,.78);
}
.contact-band { background: linear-gradient(135deg, #323833 0%, #272c27 100%); }
.site-footer { background: #232823; }
.mobile-call { background: #4c554a; }

@media (max-width: 920px) {
  .signal-bar { background: rgba(231,226,218,.9); }
  .nav-wrap { background: rgba(236,232,226,.9); }
  .main-nav { background: rgba(230,225,218,.98); }
}


/* =========================================================
   v1.4.2 Cohesive stone & sage palette
   Klare Farbharmonie statt matschiger Graugrün-Mischung
   ========================================================= */
:root {
  --ink: #27302b;
  --ink-2: #313b35;
  --ink-3: #3b4740;
  --paper: #f0ede7;
  --paper-2: #e5e0d8;
  --white: #faf8f4;
  --acid: #748578;
  --acid-2: #5f7164;
  --mint: #aeb9ae;
  --terracotta: #b36f59;
  --line: rgba(39,48,43,.11);
  --line-light: rgba(255,255,255,.14);
  --muted: #68736c;
  --danger: #b75f4d;
  --shadow: 0 24px 64px rgba(31,37,33,.10);
  --shadow-soft: 0 14px 36px rgba(31,37,33,.075);
}
html { background: #ebe7e0; }
body {
  background: linear-gradient(180deg, #f1eee8 0%, #ece8e1 54%, #e8e3dc 100%);
  color: var(--ink);
}
.scroll-progress { background: var(--terracotta); }
.signal-bar {
  background: #2f3933;
  color: rgba(250,248,244,.78);
  border-bottom-color: rgba(255,255,255,.08);
}
.signal-bar .container > span:first-child::before {
  background: #b8c3b8;
  box-shadow: 0 0 0 4px rgba(184,195,184,.14);
}
.nav-wrap {
  background: rgba(249,247,243,.90);
  border-color: rgba(39,48,43,.09);
  box-shadow: 0 12px 34px rgba(31,37,33,.08);
}
.site-header.is-scrolled .nav-wrap { background: rgba(249,247,243,.96); }
.main-nav a { color: #59665e; }
.main-nav a:hover,
.main-nav a.active {
  color: var(--ink);
  background: rgba(116,133,120,.10);
}
.main-nav a::after { background: var(--terracotta); }
.header-call { background: var(--ink); color: #fff; }
.header-call:hover { background: var(--acid-2); }

.hero {
  color: #f7f4ef;
  background:
    radial-gradient(circle at 78% 24%, rgba(116,133,120,.24), transparent 28%),
    radial-gradient(circle at 22% 80%, rgba(179,111,89,.10), transparent 30%),
    linear-gradient(135deg, #2b342f 0%, #232a26 100%);
}
.hero::before {
  opacity: .38;
  background: radial-gradient(circle, rgba(174,185,174,.22) 0%, rgba(174,185,174,0) 70%);
}
.hero .eyebrow { color: #c9d1c8; }
.hero h1 { color: #faf8f4; }
.hero h1 em { color: #b9c5b9; }
.hero-copy > p:not(.eyebrow) { color: rgba(247,244,239,.72); }
.hero .button-dark {
  --btn-bg: #f3efe8;
  --btn-color: var(--ink);
}
.hero .button-dark::before { background: var(--terracotta); }
.hero .button-outline {
  --btn-color: #f7f4ef;
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.04);
}
.hero .button-outline::before { background: rgba(255,255,255,.92); }
.hero .button-outline:hover { color: var(--ink); }
.trust-row span {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.10);
  color: rgba(247,244,239,.76);
}
.hero-art {
  background: #ebe6de;
  border-color: rgba(255,255,255,.10);
  box-shadow: 0 22px 54px rgba(0,0,0,.20);
}
.hero-art img {
  background: #e6e0d8;
  box-shadow: inset 0 0 0 1px rgba(39,48,43,.06);
}
.hero-badge {
  background: rgba(249,247,243,.96);
  color: var(--ink);
  border-color: rgba(39,48,43,.08);
}
.hero-badge span { color: #6c786f; }
.scroll-cue { color: rgba(247,244,239,.62); }
.scroll-cue::before { background: linear-gradient(90deg, #b9c5b9, transparent); }

.page-hero {
  color: var(--ink);
  background:
    radial-gradient(circle at 84% 18%, rgba(116,133,120,.16), transparent 24%),
    linear-gradient(180deg, #f0ede7 0%, #e8e3dc 100%);
}
.page-hero::before { opacity: .32; }
.page-hero::after { border-color: rgba(179,111,89,.16); }
.page-hero .lead { color: #59665e; }
.tag-list span {
  background: rgba(250,248,244,.82);
  border-color: rgba(39,48,43,.09);
  color: #5c6961;
}

.section-sand { background: #f7f4ef; }
.section-moss { background: linear-gradient(180deg, #e6e1d9 0%, #ddd7ce 100%); }
.section-dark { background: linear-gradient(180deg, #303a34 0%, #252d28 100%); }
.section-dark .eyebrow { color: #bec9bd; }
.section-dark p { color: rgba(247,244,239,.72); }

.illustration-frame {
  background: #f7f4ef;
  border-color: rgba(39,48,43,.08);
  box-shadow: var(--shadow-soft);
}
.illustration-frame::before {
  background: linear-gradient(90deg, rgba(116,133,120,.26), rgba(179,111,89,.08));
}
.service-card,
.article-card,
.city-card,
.info-card,
.stat,
.article-body,
.aside-box,
.contact-form,
.notice,
.number-steps {
  background: rgba(250,248,244,.91);
  border-color: rgba(39,48,43,.085);
  box-shadow: 0 10px 28px rgba(31,37,33,.055);
}
.service-card:hover,
.article-card:hover,
.city-card:hover,
.info-card:hover {
  border-color: rgba(116,133,120,.28);
  box-shadow: 0 18px 42px rgba(31,37,33,.085);
}
.service-card::after {
  background: linear-gradient(90deg, var(--terracotta), rgba(179,111,89,.05));
}
.card-icon {
  color: var(--acid-2);
  background: linear-gradient(180deg, rgba(116,133,120,.14), rgba(116,133,120,.045));
}
.card-icon::after { border-color: rgba(116,133,120,.22); }
.card-kicker { color: #7a867e; }
.service-card p,
.article-card p,
.city-card p,
.info-card p { color: #647168; }
.text-link > span { background: var(--terracotta); }
.city-card::after { color: var(--terracotta); }
.city-card:hover::after { background: rgba(179,111,89,.10); }

.number-steps { background: rgba(250,248,244,.88); }
.step::before { color: rgba(179,111,89,.65); }
.step::after { background: linear-gradient(90deg, rgba(179,111,89,.24), rgba(179,111,89,.04)); }
.step p { color: #66736b; }
.check-list li::before,
.plain-list li::before { color: var(--terracotta); }
.notice::before { background: var(--terracotta); }
.city-cloud a {
  background: rgba(250,248,244,.82);
  color: #5c6861;
  border-color: rgba(39,48,43,.09);
}
.city-cloud a::before { background: var(--acid-2); }

.stat { background: rgba(250,248,244,.90); }
.stat strong { color: var(--ink); }
.stat span { color: #68756d; }
.stat::after { border-color: rgba(179,111,89,.30); box-shadow: inset 0 0 0 7px rgba(179,111,89,.05); }

.article-body > p:first-child { color: #4c5a52; }
.article-body p,
.article-body li { color: #455249; }
.article-body li::marker,
.article-body a { color: var(--terracotta); }
.article-figure { background: #e7e1d8; }
.toc a:hover { color: var(--terracotta); }
.author-mark { background: rgba(179,111,89,.12); color: #945743; }
.faq-item button::after { color: var(--terracotta); }
.faq-item.open button::after { background: rgba(179,111,89,.12); color: #945743; }

.contact-panel {
  background: linear-gradient(180deg, #354039 0%, #29312c 100%);
}
.contact-row strong { color: #c6d0c4; }
.contact-form input,
.contact-form textarea,
.contact-form select { background: #f7f4ef; }
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--acid);
  box-shadow: 0 0 0 4px rgba(116,133,120,.16);
}
.contact-band {
  background:
    radial-gradient(circle at 85% 25%, rgba(179,111,89,.11), transparent 26%),
    linear-gradient(135deg, #303a34 0%, #252d28 100%);
}
.contact-band .button-dark {
  --btn-bg: #f2eee7;
  --btn-color: var(--ink);
}
.contact-band .button-dark::before { background: var(--terracotta); }
.site-footer { background: #222925; }
.site-footer a:hover { color: #d7dfd6; }
.mobile-call { background: var(--terracotta); color: #fff; }

@media (max-width: 920px) {
  .signal-bar { background: #303a34; color: rgba(250,248,244,.80); }
  .nav-wrap { background: rgba(249,247,243,.94); }
  .main-nav { background: rgba(240,237,231,.99); }
  .main-nav a:hover,
  .main-nav a.active { color: var(--terracotta); }
}


/* =========================================================
   v1.6.0 – echte Ratgeberbilder und responsive Vorschauen
   ========================================================= */
.article-picture,
.article-picture source,
.article-picture img,
.article-card-media picture,
.article-card-media source,
.article-card-media img {
  display: block;
}
.article-title-figure img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.article-inline-figure img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.article-title-figure {
  margin-top: 30px;
}
.article-inline-figure {
  margin-top: 34px;
  margin-bottom: 54px;
}
.article-card.article-card-with-image {
  grid-template-columns: minmax(170px, 205px) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  min-height: 250px;
  padding: 0;
  overflow: hidden;
}
.article-card-media {
  min-height: 100%;
  background: #ddd8cf;
  overflow: hidden;
}
.article-card-media picture,
.article-card-media img {
  width: 100%;
  height: 100%;
}
.article-card-media img {
  object-fit: cover;
  transition: transform .45s cubic-bezier(.2,.7,.2,1);
}
.article-card-with-image:hover .article-card-media img {
  transform: scale(1.035);
}
.article-card-content {
  align-self: center;
  padding: 25px 26px 25px 24px;
}
@media (max-width: 1180px) {
  .article-card.article-card-with-image {
    grid-template-columns: minmax(155px, 185px) minmax(0, 1fr);
  }
}
@media (max-width: 640px) {
  .article-card.article-card-with-image {
    grid-template-columns: 1fr;
  }
  .article-card-media {
    min-height: auto;
    aspect-ratio: 16 / 10;
  }
  .article-card-content {
    padding: 22px;
  }
  .article-inline-figure {
    margin-top: 28px;
    margin-bottom: 44px;
  }
}


/* =========================================================
   v1.7.4 – echte Seiten- und Leistungsbilder S01–S05
   ========================================================= */
.site-picture { display: block; width: 100%; }
.site-picture img { display: block; width: 100%; height: auto; }
.hero-art .site-picture { display: contents; }
.illustration-frame.photo-frame { padding: 8px; overflow: hidden; transform: none; }
.section-dark .illustration-frame.photo-frame { transform: none; }
.illustration-frame.photo-frame::before { display: none; }
.illustration-frame.photo-frame img { aspect-ratio: 4 / 3; object-fit: cover; border-radius: 24px; }
.illustration-frame.photo-frame.photo-wide img { aspect-ratio: 16 / 9; }
.content-media {
  width: min(100%, 900px);
  margin: 0 auto clamp(34px, 5vw, 58px);
  padding: 8px;
  overflow: hidden;
  border: 1px solid rgba(39,48,43,.085);
  border-radius: 30px;
  background: rgba(250,248,244,.92);
  box-shadow: 0 16px 38px rgba(31,37,33,.08);
}
.content-media img { aspect-ratio: 4 / 3; object-fit: cover; border-radius: 22px; }
.content-media-wide { width: min(100%, 1120px); }
.content-media-centered { width: min(100%, 820px); }
.section-media-only { padding-top: clamp(34px, 5vw, 64px); padding-bottom: 0; }
.section-media-only .content-media { margin-bottom: 0; }
.service-region-media { margin-top: clamp(34px, 5vw, 58px); margin-bottom: 0; }
.article-content-media { margin: 28px 0 42px; }
.contact-band .container.has-media { grid-template-columns: minmax(0,1fr) minmax(220px,340px) auto; }
.contact-band-media { padding: 6px; border: 1px solid rgba(255,255,255,.13); border-radius: 24px; background: rgba(255,255,255,.055); }
.contact-band-media img { aspect-ratio: 4 / 3; object-fit: cover; border-radius: 18px; }
.contact-panel-media { margin: 22px 0 28px; padding: 5px; border: 1px solid rgba(255,255,255,.14); border-radius: 22px; background: rgba(255,255,255,.055); }
.contact-panel-media img { aspect-ratio: 4 / 3; object-fit: cover; border-radius: 17px; }
@media (max-width: 1080px) {
  .contact-band .container.has-media { grid-template-columns: minmax(0,1fr) minmax(200px,280px); }
  .contact-band .container.has-media > .button { grid-column: 1 / -1; justify-self: start; }
}
@media (max-width: 920px) {
  .contact-band .container.has-media { grid-template-columns: 1fr; }
  .contact-band-media { width: min(100%, 520px); }
  .content-media { border-radius: 24px; padding: 6px; }
  .content-media img { border-radius: 18px; }
}
