/* ============================================================
   RHEINGLANZ — Gebäudeservice Düsseldorf
   Brand system: Rhine Forest · polished gold · warm paper
   Display: Spectral (serif) · UI/Body: Hanken Grotesk
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Spectral:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&family=Hanken+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --paper:      #F4EFE6;
  --paper-2:    #FBF8F1;
  --card:       #FFFFFF;
  --forest:     #0B3428;
  --forest-700: #14503C;
  --forest-500: #2C6B54;
  --forest-300: #6E9384;
  --ink:        #16231D;
  --muted:      #586A60;
  --muted-2:    #6B7B73;
  --gold:       #D9B86C;
  --gold-600:   #B89345;
  --gold-soft:  #EAD8A8;
  --line:       rgba(14, 59, 45, 0.12);
  --line-soft:  rgba(14, 59, 45, 0.07);

  --shadow-sm:  0 1px 2px rgba(14,59,45,.06), 0 2px 8px rgba(14,59,45,.05);
  --shadow-md:  0 4px 14px rgba(14,59,45,.08), 0 14px 40px rgba(14,59,45,.07);
  --shadow-lg:  0 10px 30px rgba(14,59,45,.10), 0 30px 80px rgba(14,59,45,.12);

  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 36px;

  --container: 1200px;
  --ease: cubic-bezier(.22,.61,.36,1);

  --font-display: 'Spectral', Georgia, serif;
  --font-sans: 'Hanken Grotesk', system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: clip; }

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--paper);
  color: var(--ink);
  font-size: 18px;
  line-height: 1.6;
  overflow-x: clip;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* selection */
::selection { background: var(--gold-soft); color: var(--forest); }

/* ---------- layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 28px; }
.section { padding: clamp(64px, 9vw, 130px) 0; overflow: clip; }
.section--tight { padding: clamp(48px, 6vw, 84px) 0; overflow: clip; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-sans);
  font-size: 13px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-600);
}
.eyebrow::before {
  content: ""; width: 26px; height: 1.5px; background: var(--gold); display: inline-block;
}
.eyebrow--center::before { display: none; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.06; letter-spacing: -.01em; margin: 0; color: var(--forest); }
h1 { font-size: clamp(40px, 6.2vw, 78px); }
h2 { font-size: clamp(30px, 4.2vw, 52px); }
h3 { font-size: clamp(22px, 2.4vw, 30px); }
p { margin: 0; text-wrap: pretty; }

.lead { font-size: clamp(18px, 1.5vw, 22px); color: var(--muted); line-height: 1.55; }

.section-head { max-width: 680px; }
.section-head h2 { margin: 18px 0 0; }
.section-head .lead { margin-top: 18px; }
.section-head--center { margin-inline: auto; text-align: center; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-sans); font-weight: 600; font-size: 16px;
  padding: 15px 26px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--forest); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--forest-700); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--gold { background: var(--gold); color: var(--forest); }
.btn--gold:hover { background: var(--gold-600); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--forest); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--forest); transform: translateY(-2px); }
.btn--lg { padding: 18px 32px; font-size: 17px; }
.btn--block { width: 100%; }

.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--forest); }
.link-arrow svg { width: 18px; height: 18px; transition: transform .25s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: saturate(1.3) blur(14px);
  background: color-mix(in srgb, var(--paper) 78%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.site-header.is-scrolled { border-color: var(--line-soft); background: color-mix(in srgb, var(--paper) 90%, transparent); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 84px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark {
  width: 46px; height: 46px; border-radius: 14px;
  background:
    radial-gradient(circle at 76% 18%, rgba(234,216,168,.22), transparent 28%),
    linear-gradient(145deg, var(--forest), #06251D);
  color: var(--gold);
  display: grid; place-items: center; flex: 0 0 auto;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08), 0 10px 22px rgba(11,52,40,.16);
}
.brand__mark svg { width: 31px; height: 31px; }
.brand__name { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name b { font-family: var(--font-display); font-weight: 600; font-size: 21px; color: var(--forest); letter-spacing: -.015em; }
.brand__name span { font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted-2); font-weight: 700; }

.nav__links { display: flex; align-items: center; gap: 6px; }
.nav__links a {
  padding: 10px 16px; border-radius: 999px; font-weight: 500; font-size: 16px; color: var(--ink);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.nav__links a:hover { background: rgba(14,59,45,.06); }
.nav__links a.is-active { color: var(--forest); background: rgba(14,59,45,.08); font-weight: 600; }
.nav__cta { display: flex; align-items: center; gap: 14px; }
@media (max-width: 1180px) { .nav__links a { padding: 9px 12px; } }
.nav__phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 15px; color: var(--forest); }
.nav__phone svg { width: 16px; height: 16px; color: var(--gold-600); }

.nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; color: var(--forest); }
.nav__toggle svg { width: 28px; height: 28px; }

/* mobile drawer */
.mobile-menu {
  position: fixed; inset: 84px 0 0; z-index: 99;
  background: var(--paper); padding: 28px;
  transform: translateY(-12px); opacity: 0; pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
  display: flex; flex-direction: column; gap: 6px;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.mobile-menu.is-open { opacity: 1; transform: none; pointer-events: auto; }
.mobile-menu a { padding: 16px 8px; font-size: 22px; font-family: var(--font-display); color: var(--forest); border-bottom: 1px solid var(--line-soft); }
.mobile-menu a.btn {
  min-height: 64px;
  justify-content: center;
  border-bottom: 0;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0;
}
.mobile-menu a.btn--primary {
  color: #fff;
  background: var(--forest);
}
.mobile-menu a.btn--primary:hover {
  color: #fff;
  background: var(--forest-700);
}
.mobile-menu .btn { margin-top: 18px; }

@media (max-width: 1180px) {
  .nav {
    height: 72px;
    gap: 10px;
  }
  .brand {
    min-width: 0;
    gap: 10px;
  }
  .brand__mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }
  .brand__mark svg {
    width: 28px;
    height: 28px;
  }
  .brand__name {
    min-width: 0;
  }
  .brand__name b {
    font-size: clamp(19px, 5vw, 24px);
    white-space: nowrap;
  }
  .brand__name span {
    font-size: 9px;
    letter-spacing: .18em;
    white-space: nowrap;
  }
  .nav__links {
    display: none;
  }
  .nav__cta {
    margin-left: auto;
    gap: 8px;
    flex: 0 0 auto;
  }
  .nav__cta .btn {
    display: none;
  }
  .nav__phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 0;
    background: rgba(255,255,255,.94);
    color: var(--gold-600);
    font-size: 0;
    line-height: 0;
    box-shadow: 0 3px 6px rgba(11,52,40,.14), 0 10px 20px rgba(11,52,40,.12);
    transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease), color .18s var(--ease);
  }
  .nav__phone svg {
    width: 16px;
    height: 16px;
    display: block;
    color: currentColor;
    transform: translate(.5px, .5px);
  }
  .nav__toggle svg {
    width: 22px;
    height: 22px;
    display: block;
  }
  .nav__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    padding: 0;
    flex: 0 0 auto;
    border-radius: 50%;
    border: 0;
    background: rgba(255,255,255,.92);
    line-height: 0;
    box-shadow: 0 3px 6px rgba(11,52,40,.14), 0 10px 20px rgba(11,52,40,.12);
    transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease);
  }
  .nav__phone:hover,
  .nav__toggle:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(11,52,40,.18), 0 14px 24px rgba(11,52,40,.14);
  }
  .nav__phone:active,
  .nav__toggle:active {
    transform: translateY(1px) scale(.97);
    box-shadow: 0 1px 3px rgba(11,52,40,.18), 0 5px 12px rgba(11,52,40,.12);
  }
  .mobile-menu {
    top: 72px;
    min-height: calc(100dvh - 72px);
  }
  body.home .site-header:not(.is-scrolled) .nav__phone,
  body.home .site-header:not(.is-scrolled) .nav__toggle {
    color: var(--forest);
    border-color: transparent;
  }
  body.home .site-header:not(.is-scrolled) .nav__phone {
    background: rgba(255,255,255,.94);
    color: var(--gold-600);
  }
  body.home .site-header:not(.is-scrolled) .nav__toggle {
    background: rgba(255,255,255,.94);
  }
  body.home .site-header:not(.is-scrolled) .nav__phone svg {
    color: currentColor;
  }
}

/* ---------- badge / chip ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px; font-size: 13px; font-weight: 600;
  background: rgba(14,59,45,.06); color: var(--forest-700);
}
.badge svg { width: 15px; height: 15px; color: var(--gold-600); }

/* ---------- cards ---------- */
.card { background: var(--card); border-radius: var(--r-lg); border: 1px solid var(--line-soft); }

/* ---------- footer ---------- */
.site-footer { background: var(--forest); color: rgba(255,255,255,.78); }
.footer-cta {
  background: var(--forest); color: #fff; text-align: center;
  border-radius: var(--r-xl); padding: clamp(48px, 7vw, 88px) 32px;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.footer-cta h2 { color: #fff; max-width: 24ch; margin-inline: auto; text-wrap: balance; }
.footer-cta .lead { color: rgba(255,255,255,.7); margin: 20px auto 32px; max-width: 52ch; }
.footer-cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.footer-cta__glow { position: absolute; width: 520px; height: 520px; border-radius: 50%; filter: blur(80px); opacity: .5; }
.footer-cta__glow--a { background: rgba(190,154,78,.5); top: -240px; right: -120px; }
.footer-cta__glow--b { background: rgba(44,107,84,.7); bottom: -260px; left: -120px; }

.footer-main { padding: 80px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-brand .brand__name b, .footer-brand .brand__name { color: #fff; }
.footer-brand .brand__name b { color: #fff; }
.footer-brand p { color: rgba(255,255,255,.6); margin-top: 18px; max-width: 32ch; font-size: 15px; }
.footer-col h4 { color: #fff; font-family: var(--font-sans); font-size: 13px; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; margin-bottom: 18px; }
.footer-col a, .footer-col p { display: block; color: rgba(255,255,255,.7); padding: 7px 0; font-size: 15px; transition: color .2s var(--ease); }
.footer-col a:hover { color: var(--gold-soft); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 56px; padding: 26px 0; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 14px; color: rgba(255,255,255,.55); }
.footer-bottom a:hover { color: var(--gold-soft); }
.footer-brand .brand__mark {
  background:
    radial-gradient(circle at 76% 18%, rgba(234,216,168,.2), transparent 28%),
    linear-gradient(145deg, #06251D, var(--forest));
  color: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.1);
}
.footer-service-areas {
  margin-top: 56px;
  padding: 34px 0 0;
  border-top: 1px solid rgba(255,255,255,.14);
}
.footer-service-areas__head { display: grid; grid-template-columns: 1fr; gap: 8px; margin-bottom: 22px; }
.footer-service-areas__head span { font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-soft); }
.footer-service-areas__head b { color: #fff; font-family: var(--font-display); font-size: clamp(22px, 2.4vw, 34px); font-weight: 500; line-height: 1.08; }
.footer-service-areas__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer-service-areas__grid > div {
  min-width: 0;
  padding: 0 0 0 18px;
  border-left: 1px solid rgba(255,255,255,.14);
}
.footer-service-areas h4 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 800;
}
.footer-service-areas__sub {
  margin: 14px 0 7px;
  color: var(--gold-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.footer-service-areas h4 + .footer-service-areas__sub { margin-top: 0; }
.footer-service-areas a {
  display: block;
  margin: 0;
  padding: 5px 0;
  color: rgba(255,255,255,.78);
  font-size: 13.5px;
  line-height: 1.2;
  transition: color .2s var(--ease), transform .2s var(--ease);
}
.footer-service-areas a:hover { color: var(--gold-soft); transform: translateX(3px); }

/* ---------- utility ---------- */
.grid { display: grid; gap: 28px; }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
.text-center { text-align: center; }
.mt-s { margin-top: 16px; } .mt-m { margin-top: 28px; } .mt-l { margin-top: 48px; }

image-slot { display: block; background: linear-gradient(135deg, #ECE6D8, #E2DACB); }
/* The component's shadow :host sets display:inline-block AND height:160px, which
   defeats author aspect-ratio. Outer rules override the host, so force block +
   height:auto and let aspect-ratio (set per-class) compute the real height. */
image-slot.hero__img,
image-slot.page-hero__img,
image-slot.svc-detail__media,
image-slot.about-lead__media,
image-slot.team-card__photo { display: block; height: auto; }
image-slot.hero-full__bg { display: block; height: auto; }

/* Motion: no JS reveal. Content is visible by default; the home hero gets
   a short load-in and supported browsers get CSS scroll-linked motion. */
.reveal { opacity: 1; transform: none; }
@keyframes hero-load {
  from { opacity: 0; transform: translateY(18px); filter: blur(8px); }
  to { opacity: 1; transform: none; filter: blur(0); }
}
body.home .hero-full .reveal {
  opacity: 0;
  animation: hero-load .7s var(--ease) forwards;
}
body.home .hero-full .reveal[data-delay="1"] { animation-delay: .08s; }
body.home .hero-full .reveal[data-delay="2"] { animation-delay: .16s; }
body.home .hero-full .reveal[data-delay="3"] { animation-delay: .24s; }
body.home .hero-full .reveal[data-delay="4"] { animation-delay: .32s; }
@keyframes scroll-hero-depth {
  from { transform: scale(1); filter: saturate(1) brightness(1); }
  to { transform: scale(1.08); filter: saturate(1.08) brightness(.82); }
}
@keyframes scroll-hero-cue {
  from { opacity: 1; transform: translate(-50%, 0); }
  to { opacity: 0; transform: translate(-50%, 22px); }
}
@keyframes scroll-logo-strip {
  from { opacity: .35; letter-spacing: .06em; transform: translateY(16px); }
  to { opacity: 1; letter-spacing: 0; transform: none; }
}
@keyframes scroll-section-kicker {
  from { opacity: .2; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
@keyframes scroll-stats-band {
  from { opacity: .65; clip-path: inset(0 50% 0 50% round var(--r-lg)); transform: translateY(18px); }
  to { opacity: 1; clip-path: inset(0 0 0 0 round var(--r-lg)); transform: none; }
}
@keyframes scroll-stat-number {
  from { opacity: .25; transform: translateY(24px) scale(.78); filter: blur(5px); }
  to { opacity: 1; transform: none; filter: blur(0); }
}
@keyframes scroll-stat-label {
  from { opacity: .1; transform: translateY(-8px); }
  to { opacity: 1; transform: none; }
}
@keyframes scroll-heading-wipe {
  from { opacity: .35; clip-path: inset(0 100% 0 0); transform: translateX(-26px); }
  to { opacity: 1; clip-path: inset(0 0 0 0); transform: none; }
}
@keyframes scroll-area-drift {
  from { opacity: .3; transform: translateX(34px); filter: blur(4px); }
  to { opacity: 1; transform: none; filter: blur(0); }
}
@keyframes scroll-service-left {
  from { opacity: .2; transform: translateX(-48px) rotate(-3deg); }
  to { opacity: 1; transform: none; }
}
@keyframes scroll-service-up {
  from { opacity: .2; transform: translateY(44px) scale(.96); }
  to { opacity: 1; transform: none; }
}
@keyframes scroll-service-right {
  from { opacity: .2; transform: translateX(48px) rotate(3deg); }
  to { opacity: 1; transform: none; }
}
@keyframes scroll-service-icon {
  from { opacity: .35; transform: rotate(-18deg) scale(.72); }
  to { opacity: 1; transform: none; }
}
@keyframes scroll-link-draw {
  from { opacity: .3; transform: translateX(-18px); }
  to { opacity: 1; transform: none; }
}
@keyframes scroll-check-wipe {
  from { opacity: .1; clip-path: inset(0 100% 0 0); transform: translateX(-18px); }
  to { opacity: 1; clip-path: inset(0 0 0 0); transform: none; }
}
@keyframes scroll-ba-image {
  from { opacity: .45; transform: translateX(64px) scale(.94); filter: saturate(.8); }
  to { opacity: 1; transform: none; filter: saturate(1); }
}
@keyframes scroll-ba-handle {
  from { opacity: .35; transform: translateX(-50%) scale(.86); filter: blur(3px); }
  to { opacity: 1; transform: translateX(-50%) scale(1); filter: blur(0); }
}
@keyframes scroll-process-step {
  from { opacity: .18; transform: translateY(58px); border-color: rgba(228,210,166,.02); }
  to { opacity: 1; transform: none; border-color: rgba(255,255,255,.09); }
}
@keyframes scroll-process-card-fill {
  from {
    background: rgba(255,255,255,.02);
    border-color: rgba(255,255,255,.04);
    box-shadow: inset 0 0 0 0 rgba(228,210,166,0);
  }
  to {
    background: rgba(255,255,255,.055);
    border-color: rgba(228,210,166,.22);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
  }
}
@keyframes scroll-process-num {
  from { opacity: .2; transform: translateY(18px) scale(.82); filter: blur(4px); }
  to { opacity: 1; transform: none; filter: blur(0); }
}
@keyframes scroll-process-title {
  from { opacity: .15; transform: translateX(-24px); clip-path: inset(0 100% 0 0); }
  to { opacity: 1; transform: none; clip-path: inset(0 0 0 0); }
}
@keyframes scroll-process-copy {
  from { opacity: .18; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}
@keyframes scroll-testimonial-tilt {
  from { opacity: .18; transform: perspective(900px) rotateX(12deg) translateY(34px); }
  to { opacity: 1; transform: none; }
}
@keyframes scroll-testimonial-meta {
  from { opacity: .15; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}
@keyframes scroll-map-zoom {
  from { opacity: .35; transform: scale(.86); filter: blur(3px); }
  to { opacity: 1; transform: scale(1); filter: blur(0); }
}
@keyframes scroll-map-ring {
  from { opacity: .05; transform: scale(.62); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes scroll-map-pin {
  from { opacity: .2; transform: translate(-50%,-20%) scale(.7); }
  to { opacity: 1; transform: translate(-50%,-50%) scale(1); }
}
@keyframes scroll-chip-pop {
  from { opacity: 0; transform: translateY(14px) scale(.86); }
  to { opacity: 1; transform: none; }
}
@keyframes scroll-cta-expand {
  from { opacity: .45; transform: scale(.94); clip-path: inset(14% 10% round var(--r-xl)); }
  to { opacity: 1; transform: scale(1); clip-path: inset(0 0 round var(--r-xl)); }
}
@keyframes scroll-glow-drift-a {
  from { transform: translate(60px, -30px) scale(.72); opacity: .12; }
  to { transform: translate(0, 0) scale(1); opacity: .5; }
}
@keyframes scroll-glow-drift-b {
  from { transform: translate(-70px, 40px) scale(.7); opacity: .12; }
  to { transform: translate(0, 0) scale(1); opacity: .5; }
}
@keyframes scroll-footer-column {
  from { opacity: .2; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}
@keyframes scroll-footer-line {
  from { opacity: .1; clip-path: inset(0 100% 0 0); }
  to { opacity: 1; clip-path: inset(0 0 0 0); }
}
@keyframes scroll-footer-service-area {
  from { opacity: .28; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}
@keyframes scroll-page-hero-copy {
  from { opacity: .18; transform: translateY(34px); filter: blur(6px); }
  to { opacity: 1; transform: none; filter: blur(0); }
}
@keyframes scroll-page-hero-orbit {
  from { opacity: .18; transform: translate(80px, -40px) scale(.7); }
  to { opacity: 1; transform: translate(0, 0) scale(1); }
}
@keyframes scroll-page-media {
  from { opacity: .25; transform: translateX(56px) rotate(2deg) scale(.94); filter: saturate(.75); }
  to { opacity: 1; transform: none; filter: saturate(1); }
}
@keyframes scroll-page-stat {
  from { opacity: .15; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
@keyframes scroll-service-media-left {
  from { opacity: .22; transform: translateX(-54px) scale(.95); filter: saturate(.75); }
  to { opacity: 1; transform: none; filter: saturate(1); }
}
@keyframes scroll-service-media-right {
  from { opacity: .22; transform: translateX(54px) scale(.95); filter: saturate(.75); }
  to { opacity: 1; transform: none; filter: saturate(1); }
}
@keyframes scroll-service-copy {
  from { opacity: .15; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}
@keyframes scroll-city-aside {
  from { opacity: .22; transform: translateX(44px) scale(.96); box-shadow: none; }
  to { opacity: 1; transform: none; box-shadow: var(--shadow-md); }
}
@keyframes scroll-feature-card {
  from { opacity: .18; transform: translateY(38px) scale(.96); border-color: rgba(14,59,45,0); }
  to { opacity: 1; transform: none; border-color: var(--line-soft); }
}
@keyframes scroll-about-media {
  from { opacity: .25; transform: rotate(-2deg) scale(.92); filter: saturate(.75); }
  to { opacity: 1; transform: none; filter: saturate(1); }
}
@keyframes scroll-value-card {
  from { opacity: .18; transform: translateX(-32px); }
  to { opacity: 1; transform: none; }
}
@keyframes scroll-timeline-row {
  from { opacity: .12; clip-path: inset(0 0 0 100%); transform: translateX(-24px); }
  to { opacity: 1; clip-path: inset(0 0 0 0); transform: none; }
}
@keyframes scroll-team-photo {
  from { opacity: .2; transform: translateY(34px) scale(.9); filter: grayscale(.8); }
  to { opacity: 1; transform: none; filter: grayscale(0); }
}
@keyframes scroll-faq-row {
  from { opacity: .18; transform: translateX(-26px); border-color: rgba(14,59,45,0); }
  to { opacity: 1; transform: none; border-color: var(--line); }
}
@keyframes scroll-contact-info {
  from { opacity: .18; transform: translateY(32px); }
  to { opacity: 1; transform: none; }
}
@keyframes scroll-contact-icon {
  from { opacity: .3; transform: rotate(-14deg) scale(.75); }
  to { opacity: 1; transform: none; }
}
@keyframes scroll-form-card {
  from { opacity: .24; transform: translateX(44px) scale(.97); box-shadow: none; }
  to { opacity: 1; transform: none; box-shadow: var(--shadow-md); }
}
@keyframes scroll-brand-rule-do {
  from { opacity: .18; transform: translateX(-62px) rotate(-1.6deg) scale(.96); filter: blur(5px); }
  to { opacity: 1; transform: none; filter: blur(0); }
}
@keyframes scroll-brand-rule-dont {
  from { opacity: .18; transform: translateX(62px) rotate(1.6deg) scale(.96); filter: blur(5px); }
  to { opacity: 1; transform: none; filter: blur(0); }
}
@keyframes scroll-brand-rule-icon {
  from { opacity: .1; transform: rotate(-26deg) scale(.44); filter: blur(3px); }
  55% { opacity: .9; transform: rotate(8deg) scale(1.14); filter: blur(0); }
  to { opacity: 1; transform: none; }
}
@keyframes scroll-brand-rule-text {
  from { opacity: .12; transform: translateX(-24px); clip-path: inset(0 100% 0 0); }
  to { opacity: 1; transform: none; clip-path: inset(0 0 0 0); }
}
@keyframes scroll-brand-rule-text-dont {
  from { opacity: .12; transform: translateX(24px); clip-path: inset(0 0 0 100%); }
  to { opacity: 1; transform: none; }
}
@keyframes scroll-brand-hero-panel {
  from { opacity: .2; transform: translateX(54px) rotate(1.4deg) scale(.95); filter: blur(6px); }
  to { opacity: 1; transform: none; filter: blur(0); }
}
@keyframes scroll-brand-intro-copy {
  from { opacity: .15; transform: translateY(30px); filter: blur(5px); }
  to { opacity: 1; transform: none; filter: blur(0); }
}
@keyframes scroll-brand-logo-card {
  from { opacity: .2; transform: translateY(42px) scale(.94); box-shadow: none; }
  to { opacity: 1; transform: none; box-shadow: var(--shadow-sm); }
}
@keyframes scroll-brand-logo-asset {
  from { opacity: .2; transform: scale(.82) rotate(-2deg); filter: blur(5px); }
  to { opacity: 1; transform: none; filter: blur(0); }
}
@keyframes scroll-brand-meaning {
  from { opacity: .12; transform: translateY(30px); border-color: rgba(11,52,40,0); }
  to { opacity: 1; transform: none; border-color: var(--line-soft); }
}
@keyframes scroll-brand-color {
  from { opacity: .2; transform: translateY(34px) scale(.92); clip-path: inset(18% 18% round var(--r-lg)); }
  to { opacity: 1; transform: none; clip-path: inset(0 0 round var(--r-lg)); }
}
@keyframes scroll-brand-type-card {
  from { opacity: .16; transform: translateY(38px) skewY(1.5deg); }
  to { opacity: 1; transform: none; }
}
@keyframes scroll-brand-type-word {
  from { opacity: .12; transform: translateX(-24px); letter-spacing: .08em; }
  to { opacity: 1; transform: none; }
}
@supports (animation-timeline: view()) {
  .page-hero::after {
    animation: scroll-page-hero-orbit linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 46%;
  }

  .page-hero__copy,
  .page-hero > .container > .section-head,
  .page-hero .eyebrow,
  .page-hero h1,
  .page-hero .lead,
  .page-hero__crumbs {
    animation: scroll-page-hero-copy linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 34%;
  }

  .page-hero h1 { animation-range: entry 6% cover 38%; }
  .page-hero .lead { animation-range: entry 12% cover 44%; }

  .page-hero__media {
    animation: scroll-page-media linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 42%;
    transform-origin: center;
  }

  .page-hero__stats div {
    animation: scroll-page-stat linear both;
    animation-timeline: view();
    animation-range: entry 8% cover 34%;
  }

  .page-hero__stats div:nth-child(2) { animation-range: entry 14% cover 40%; }
  .page-hero__stats div:nth-child(3) { animation-range: entry 20% cover 46%; }

  .brand-hero__panel {
    animation: scroll-brand-hero-panel linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 44%;
    transform-origin: center;
  }

  .brand-hero__tags span {
    animation: scroll-chip-pop linear both;
    animation-timeline: view();
    animation-range: entry 12% cover 34%;
  }

  .brand-hero__tags span:nth-child(2) { animation-range: entry 18% cover 40%; }
  .brand-hero__tags span:nth-child(3) { animation-range: entry 24% cover 46%; }

  .brand-intro .section-head {
    animation: scroll-heading-wipe linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 34%;
  }

  .brand-intro > p {
    animation: scroll-brand-intro-copy linear both;
    animation-timeline: view();
    animation-range: entry 8% cover 42%;
  }

  .brand-logo-card {
    animation: scroll-brand-logo-card linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 36%;
    transform-origin: center bottom;
  }

  .brand-logo-card:nth-child(2) { animation-range: entry 8% cover 44%; }

  .brand-logo-card img {
    animation: scroll-brand-logo-asset linear both;
    animation-timeline: view();
    animation-range: entry 10% cover 38%;
    transform-origin: center;
  }

  .brand-logo-card h3,
  .brand-logo-card p {
    animation: scroll-service-copy linear both;
    animation-timeline: view();
    animation-range: entry 18% cover 46%;
  }

  .brand-meaning div {
    animation: scroll-brand-meaning linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
  }

  .brand-meaning div:nth-child(2) { animation-range: entry 6% cover 36%; }
  .brand-meaning div:nth-child(3) { animation-range: entry 12% cover 42%; }
  .brand-meaning div:nth-child(4) { animation-range: entry 18% cover 48%; }

  .brand-color {
    animation: scroll-brand-color linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 32%;
    transform-origin: center bottom;
  }

  .brand-color:nth-child(2),
  .brand-color:nth-child(5) { animation-range: entry 7% cover 38%; }
  .brand-color:nth-child(3),
  .brand-color:nth-child(6) { animation-range: entry 14% cover 44%; }

  .brand-type-grid > div:first-child {
    animation: scroll-heading-wipe linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 34%;
  }

  .brand-type-card {
    animation: scroll-brand-type-card linear both;
    animation-timeline: view();
    animation-range: entry 8% cover 42%;
  }

  .brand-type-card:nth-child(3) { animation-range: entry 16% cover 50%; }

  .brand-type-card strong {
    animation: scroll-brand-type-word linear both;
    animation-timeline: view();
    animation-range: entry 14% cover 44%;
  }

  .section-head .eyebrow {
    animation: scroll-section-kicker linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 24%;
  }

  .logos-strip .hero__logos-row em {
    animation: scroll-logo-strip linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
  }

  .stats {
    animation: scroll-stats-band linear both;
    animation-timeline: view();
    animation-range: entry 4% cover 30%;
  }

  .stat b {
    animation: scroll-stat-number linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 26%;
    transform-origin: center bottom;
  }

  .stat span {
    animation: scroll-stat-label linear both;
    animation-timeline: view();
    animation-range: entry 12% cover 34%;
  }

  .stat:nth-child(2) b,
  .stat:nth-child(2) span { animation-range-start: entry 6%; }
  .stat:nth-child(3) b,
  .stat:nth-child(3) span { animation-range-start: entry 12%; }
  .stat:nth-child(4) b,
  .stat:nth-child(4) span { animation-range-start: entry 18%; }

  #leistungen .section-head {
    animation: scroll-heading-wipe linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 34%;
  }

  .service-card:nth-child(1) {
    animation: scroll-service-left linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 34%;
  }

  .service-card:nth-child(2) {
    animation: scroll-service-up linear both;
    animation-timeline: view();
    animation-range: entry 8% cover 38%;
  }

  .service-card:nth-child(3) {
    animation: scroll-service-right linear both;
    animation-timeline: view();
    animation-range: entry 14% cover 42%;
  }

  .service-card__ic {
    animation: scroll-service-icon linear both;
    animation-timeline: view();
    animation-range: entry 4% cover 28%;
    transform-origin: 50% 50%;
  }

  .service-card .link-arrow {
    animation: scroll-link-draw linear both;
    animation-timeline: view();
    animation-range: entry 18% cover 44%;
  }

  .ba-grid__copy .eyebrow,
  .ba-grid__copy h2,
  .ba-grid__copy .lead,
  .ba-grid__list li {
    animation: scroll-check-wipe linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 34%;
  }

  .ba-grid__list li:nth-child(2) { animation-range: entry 6% cover 38%; }
  .ba-grid__list li:nth-child(3) { animation-range: entry 12% cover 42%; }

  .ba {
    animation: scroll-ba-image linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 42%;
  }

  .ba__handle {
    animation: scroll-ba-handle linear both;
    animation-timeline: view();
    animation-range: entry 8% cover 38%;
  }

  .process-step {
    animation: scroll-process-card-fill linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 42%;
  }

  .process-step__num {
    animation: scroll-process-num linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 24%;
    transform-origin: left center;
  }

  .process-step h3 {
    animation: scroll-process-title linear both;
    animation-timeline: view();
    animation-range: entry 8% cover 32%;
  }

  .process-step p {
    animation: scroll-process-copy linear both;
    animation-timeline: view();
    animation-range: entry 18% cover 44%;
  }

  .process-step:nth-child(2),
  .process-step:nth-child(2) .process-step__num { animation-range-start: entry 5%; }
  .process-step:nth-child(2) h3 { animation-range: entry 13% cover 36%; }
  .process-step:nth-child(2) p { animation-range: entry 23% cover 48%; }

  .process-step:nth-child(3),
  .process-step:nth-child(3) .process-step__num { animation-range-start: entry 10%; }
  .process-step:nth-child(3) h3 { animation-range: entry 18% cover 40%; }
  .process-step:nth-child(3) p { animation-range: entry 28% cover 52%; }

  .process-step:nth-child(4),
  .process-step:nth-child(4) .process-step__num { animation-range-start: entry 15%; }
  .process-step:nth-child(4) h3 { animation-range: entry 23% cover 44%; }
  .process-step:nth-child(4) p { animation-range: entry 33% cover 56%; }

  .testi-card {
    animation: scroll-testimonial-tilt linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 34%;
    transform-origin: center top;
  }

  .testi-card:nth-child(2) { animation-range: entry 7% cover 38%; }
  .testi-card:nth-child(3) { animation-range: entry 14% cover 42%; }

  .testi-card__top,
  .testi-card figcaption {
    animation: scroll-testimonial-meta linear both;
    animation-timeline: view();
    animation-range: entry 10% cover 36%;
  }

  .testi-card figcaption { animation-range: entry 22% cover 50%; }

  .area-grid__copy {
    animation: scroll-area-drift linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 34%;
  }

  .area-grid__districts span {
    animation: scroll-chip-pop linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
  }

  .city-local-seo__grid > div:first-child {
    animation: scroll-area-drift linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 36%;
  }

  .city-local-seo__areas {
    animation: scroll-service-right linear both;
    animation-timeline: view();
    animation-range: entry 8% cover 42%;
  }

  .city-local-seo__areas span {
    animation: scroll-chip-pop linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 26%;
  }

  .area-map {
    animation: scroll-map-zoom linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 42%;
    transform-origin: center;
  }

  .area-map__rings span {
    animation: scroll-map-ring linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
    transform-origin: center;
  }

  .area-map__rings span:nth-child(2) { animation-range: entry 8% cover 48%; }
  .area-map__rings span:nth-child(3) { animation-range: entry 16% cover 56%; }

  body.home .hero-full__bg {
    animation: scroll-hero-depth linear both;
    animation-timeline: scroll(root);
    animation-range: 0 70vh;
    transform-origin: center;
  }

  body.home .hero-full__overlay {
    animation: scroll-hero-depth linear both;
    animation-timeline: scroll(root);
    animation-range: 0 70vh;
  }

  body.home .hero-full__scroll {
    animation: scroll-hero-cue linear both;
    animation-timeline: scroll(root);
    animation-range: 0 34vh;
  }

  .area-pin {
    animation: scroll-map-pin linear both;
    animation-timeline: view();
    animation-range: entry 8% cover 36%;
  }

  .area-pin:nth-of-type(2) { animation-range: entry 12% cover 40%; }
  .area-pin:nth-of-type(3) { animation-range: entry 16% cover 44%; }
  .area-pin:nth-of-type(4) { animation-range: entry 20% cover 48%; }
  .area-pin:nth-of-type(5) { animation-range: entry 24% cover 52%; }
  .area-pin:nth-of-type(6) { animation-range: entry 28% cover 56%; }

  .footer-cta {
    animation: scroll-cta-expand linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 44%;
  }

  .footer-cta__glow--a {
    animation: scroll-glow-drift-a linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 54%;
  }

  .footer-cta__glow--b {
    animation: scroll-glow-drift-b linear both;
    animation-timeline: view();
    animation-range: entry 8% cover 62%;
  }

  .footer-brand,
  .footer-col {
    animation: scroll-footer-column linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 34%;
  }

  .footer-col:nth-child(2) { animation-range: entry 6% cover 38%; }
  .footer-col:nth-child(3) { animation-range: entry 12% cover 42%; }
  .footer-col:nth-child(4) { animation-range: entry 18% cover 46%; }

  .footer-bottom {
    animation: scroll-footer-line linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 28%;
  }

  .footer-service-areas {
    animation: scroll-footer-service-area linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 34%;
  }

  .footer-service-areas__grid > div {
    animation: scroll-footer-column linear both;
    animation-timeline: view();
    animation-range: entry 6% cover 34%;
  }

  .footer-service-areas__grid > div:nth-child(2) { animation-range: entry 12% cover 40%; }
  .footer-service-areas__grid > div:nth-child(3) { animation-range: entry 18% cover 46%; }

  .svc-detail__media {
    animation: scroll-service-media-left linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
    transform-origin: center;
  }

  .svc-detail--rev .svc-detail__media {
    animation-name: scroll-service-media-right;
  }

  .svc-detail > div {
    animation: scroll-service-copy linear both;
    animation-timeline: view();
    animation-range: entry 8% cover 42%;
  }

  .city-page__grid > div:first-child {
    animation: scroll-service-copy linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 38%;
  }

  .city-page__aside {
    animation: scroll-city-aside linear both;
    animation-timeline: view();
    animation-range: entry 8% cover 44%;
  }

  .checklist li {
    animation: scroll-check-wipe linear both;
    animation-timeline: view();
    animation-range: entry 14% cover 36%;
  }

  .checklist li:nth-child(2),
  .checklist li:nth-child(4) { animation-range: entry 20% cover 42%; }

  .feature {
    animation: scroll-feature-card linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 32%;
  }

  .feature:nth-child(2),
  .feature:nth-child(5) { animation-range: entry 7% cover 38%; }
  .feature:nth-child(3),
  .feature:nth-child(6) { animation-range: entry 14% cover 44%; }
  .feature__ic {
    animation: scroll-service-icon linear both;
    animation-timeline: view();
    animation-range: entry 6% cover 28%;
  }

  .about-lead__media {
    animation: scroll-about-media linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 42%;
    transform-origin: center;
  }

  .about-lead > div {
    animation: scroll-service-copy linear both;
    animation-timeline: view();
    animation-range: entry 8% cover 42%;
  }

  .value {
    animation: scroll-value-card linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 34%;
  }

  .value:nth-child(2),
  .value:nth-child(4) { animation-range: entry 10% cover 42%; }

  .value__ic {
    animation: scroll-service-icon linear both;
    animation-timeline: view();
    animation-range: entry 6% cover 28%;
  }

  .timeline__row {
    animation: scroll-timeline-row linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 32%;
  }

  .timeline__row:nth-child(2) { animation-range: entry 5% cover 36%; }
  .timeline__row:nth-child(3) { animation-range: entry 10% cover 40%; }
  .timeline__row:nth-child(4) { animation-range: entry 15% cover 44%; }
  .timeline__row:nth-child(5) { animation-range: entry 20% cover 48%; }

  .team-card__photo {
    animation: scroll-team-photo linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 34%;
  }

  .team-card:nth-child(2) .team-card__photo { animation-range: entry 7% cover 38%; }
  .team-card:nth-child(3) .team-card__photo { animation-range: entry 14% cover 42%; }
  .team-card:nth-child(4) .team-card__photo { animation-range: entry 21% cover 46%; }

  .team-card b,
  .team-card span {
    animation: scroll-testimonial-meta linear both;
    animation-timeline: view();
    animation-range: entry 14% cover 42%;
  }

  .faq-item {
    animation: scroll-faq-row linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 26%;
  }

  .faq-item:nth-child(2n) { animation-range: entry 8% cover 34%; }

  .faq-cats span {
    animation: scroll-chip-pop linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
  }

  .contact-info {
    animation: scroll-contact-info linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 38%;
  }

  .contact-list__ic {
    animation: scroll-contact-icon linear both;
    animation-timeline: view();
    animation-range: entry 8% cover 30%;
    transform-origin: center;
  }

  .contact-list li:nth-child(2) .contact-list__ic { animation-range: entry 14% cover 36%; }
  .contact-list li:nth-child(3) .contact-list__ic { animation-range: entry 20% cover 42%; }
  .contact-list li:nth-child(4) .contact-list__ic { animation-range: entry 26% cover 48%; }

  .form-card {
    animation: scroll-form-card linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 44%;
  }

  .field,
  .chips,
  .form-note {
    animation: scroll-service-copy linear both;
    animation-timeline: view();
    animation-range: entry 10% cover 34%;
  }

  .brand-rule {
    animation: scroll-brand-rule-do linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 42%;
    transform-origin: center;
  }

  .brand-rule--dont {
    animation-name: scroll-brand-rule-dont;
    animation-range: entry 8% cover 48%;
  }

  .brand-rule h3::before,
  .brand-rule li::before {
    animation: scroll-brand-rule-icon linear both;
    animation-timeline: view();
    animation-range: entry 6% cover 30%;
    transform-origin: center;
  }

  .brand-rule h3 {
    animation: scroll-brand-rule-text linear both;
    animation-timeline: view();
    animation-range: entry 4% cover 28%;
  }

  .brand-rule li {
    animation: scroll-brand-rule-text linear both;
    animation-timeline: view();
    animation-range: entry 12% cover 38%;
  }

  .brand-rule--dont h3,
  .brand-rule--dont li {
    animation-name: scroll-brand-rule-text-dont;
  }

  .brand-rule li:nth-child(2) { animation-range: entry 20% cover 46%; }
  .brand-rule li:nth-child(3) { animation-range: entry 28% cover 54%; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  body.home .hero-full .reveal { opacity: 1; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: clamp(40px, 6vw, 76px) 0 clamp(40px, 5vw, 64px); position: relative; }
.hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero__copy h1 { margin: 20px 0 0; }
.hero__copy h1 em { font-style: italic; font-weight: 400; color: var(--forest-500); }
.hero__copy .lead { margin-top: 22px; max-width: 52ch; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.hero__trust { display: flex; align-items: center; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.hero__stars { display: inline-flex; gap: 2px; color: var(--gold); }
.hero__stars svg { width: 18px; height: 18px; }
.hero__trust p { font-size: 14.5px; color: var(--muted); }
.hero__trust b { color: var(--ink); }
.hero__trust span { color: var(--muted-2); }

.hero__media { position: relative; }
.hero__img { width: 100%; aspect-ratio: 4 / 5; box-shadow: var(--shadow-lg); }
.hero__chip {
  position: absolute; display: flex; align-items: center; gap: 12px;
  background: var(--card); border-radius: 16px; padding: 13px 17px; box-shadow: var(--shadow-md);
  border: 1px solid var(--line-soft);
}
.hero__chip-ic { width: 38px; height: 38px; border-radius: 10px; background: rgba(14,59,45,.07); color: var(--forest); display: grid; place-items: center; flex: 0 0 auto; }
.hero__chip-ic svg { width: 20px; height: 20px; }
.hero__chip b { display: block; font-size: 14.5px; color: var(--ink); }
.hero__chip span { font-size: 12.5px; color: var(--muted-2); }
.hero__chip--a { top: 28px; left: -26px; }
.hero__chip--b { bottom: 30px; right: -22px; }

.hero__logos { margin-top: clamp(48px, 6vw, 80px); display: flex; flex-direction: column; gap: 18px; align-items: center; text-align: center; }
.hero__logos > span { font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); font-weight: 600; }
.hero__logos-row { display: flex; flex-wrap: wrap; gap: clamp(20px, 4vw, 52px); justify-content: center; }
.hero__logos-row em { font-family: var(--font-display); font-style: normal; font-size: clamp(17px, 2vw, 22px); font-weight: 500; color: var(--forest); opacity: .45; }

/* ============================================================
   HERO — full screen variant
   ============================================================ */
.hero-full { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; isolation: isolate; }
.hero-full__bg { position: absolute; inset: 0; z-index: -2; width: 100%; }
.hero-full__overlay { position: absolute; inset: 0; z-index: -1; background:
  linear-gradient(174deg, rgba(11,40,30,.60) 0%, rgba(11,40,30,.26) 36%, rgba(8,30,22,.92) 100%); }
.hero-full__inner { padding-block: clamp(132px, 18vh, 220px) clamp(60px, 11vh, 120px); }
.hero-full__copy { max-width: 840px; }
.hero-full .eyebrow { color: var(--gold-soft); }
.hero-full h1 { color: #fff; font-size: clamp(44px, 7vw, 94px); margin-top: 22px; }
.hero-full h1 em { font-style: italic; font-weight: 400; color: var(--gold-soft); }
.hero-full .lead { color: rgba(255,255,255,.84); max-width: 54ch; margin-top: 24px; }
.hero-full__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 38px; }
.hero-full .btn--ghost { color: #fff; border-color: rgba(255,255,255,.42); }
.hero-full .btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.hero-full__trust { display: flex; align-items: center; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero-full__trust .hero__stars svg { width: 18px; height: 18px; }
.hero-full__trust p { color: rgba(255,255,255,.82); font-size: 14.5px; }
.hero-full__trust b { color: #fff; }
.hero-full__scroll { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 9px; color: rgba(255,255,255,.7); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; font-weight: 600; transition: color .2s var(--ease); }
.hero-full__scroll:hover { color: #fff; }
.hero-full__scroll svg { width: 22px; height: 22px; }

/* logos strip (after full hero) */
.logos-strip { padding: clamp(36px, 5vw, 56px) 0; border-bottom: 1px solid var(--line-soft); overflow: clip; }
.logos-strip .hero__logos { margin-top: 0; }

/* transparent header over the home hero */
body.home .site-header { position: fixed; top: 0; left: 0; right: 0; background: transparent; backdrop-filter: none; border-bottom-color: transparent; }
body.menu-open .site-header {
  background: color-mix(in srgb, var(--paper) 96%, transparent);
  backdrop-filter: saturate(1.3) blur(14px);
  border-bottom-color: var(--line-soft);
}
body.home .site-header.is-scrolled { background: color-mix(in srgb, var(--paper) 90%, transparent); backdrop-filter: saturate(1.3) blur(14px); border-bottom-color: var(--line-soft); }
body.home .site-header:not(.is-scrolled) .brand__name b { color: #fff; }
body.home .site-header:not(.is-scrolled) .brand__name span { color: rgba(255,255,255,.66); }
body.home.menu-open .site-header .brand__name b { color: var(--forest); }
body.home.menu-open .site-header .brand__name span { color: var(--muted-2); }
body.home .site-header:not(.is-scrolled) .nav__links a { color: rgba(255,255,255,.92); }
body.home .site-header:not(.is-scrolled) .nav__links a:hover { background: rgba(255,255,255,.12); }
body.home .site-header:not(.is-scrolled) .nav__links a.is-active { background: rgba(255,255,255,.18); color: #fff; }
body.home .site-header:not(.is-scrolled) .nav__phone { color: #fff; }
body.home .site-header:not(.is-scrolled) .nav__phone svg { color: var(--gold-soft); }
body.home .site-header:not(.is-scrolled) .brand__mark {
  background:
    radial-gradient(circle at 76% 18%, rgba(234,216,168,.24), transparent 28%),
    linear-gradient(145deg, rgba(11,52,40,.96), rgba(6,37,29,.9));
  color: var(--gold-soft);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12), 0 12px 28px rgba(0,0,0,.22);
}
body.home .site-header:not(.is-scrolled) .nav__toggle { color: #fff; }
body.home .site-header:not(.is-scrolled) .nav__cta .btn--primary { background: var(--gold); color: var(--forest); }
@media (max-width: 1180px) {
  body.home .site-header:not(.is-scrolled) .nav__phone,
  body.home .site-header:not(.is-scrolled) .nav__toggle {
    color: var(--forest);
    border-color: rgba(11,52,40,.12);
  }
  body.home .site-header:not(.is-scrolled) .nav__phone {
    background: rgba(255,255,255,.94);
    color: var(--gold-600);
  }
  body.home .site-header:not(.is-scrolled) .nav__toggle {
    background: rgba(255,255,255,.94);
  }
  body.home .site-header:not(.is-scrolled) .nav__phone svg {
    color: currentColor;
  }
}

/* ============================================================
   STATS
   ============================================================ */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--r-lg); padding: clamp(28px, 4vw, 48px); box-shadow: var(--shadow-sm); }
.stat { text-align: center; border-right: 1px solid var(--line-soft); }
.stat:last-child { border-right: 0; }
.stat b { display: block; font-family: var(--font-display); font-weight: 500; font-size: clamp(34px, 4vw, 52px); color: var(--forest); line-height: 1; }
.stat span { display: block; margin-top: 10px; font-size: 14.5px; color: var(--muted); }

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.service-card { background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--r-lg); padding: 36px 32px; display: flex; flex-direction: column; align-items: flex-start; gap: 16px; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold-soft); }
.service-card__ic { width: 56px; height: 56px; border-radius: 15px; background: var(--forest); color: var(--gold); display: grid; place-items: center; }
.service-card__ic svg { width: 28px; height: 28px; }
.service-card p { color: var(--muted); }
.service-card .link-arrow { margin-top: auto; padding-top: 6px; }

/* ============================================================
   BEFORE / AFTER
   ============================================================ */
.ba-section { background: var(--paper-2); }
.ba-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.ba-grid__list { list-style: none; padding: 0; margin: 30px 0 0; display: grid; gap: 14px; }
.ba-grid__list li { display: flex; align-items: flex-start; gap: 12px; font-weight: 500; color: var(--ink); }
.ba-grid__list svg { width: 22px; height: 22px; color: var(--forest-500); flex: 0 0 auto; margin-top: 2px; }

.ba { position: relative; aspect-ratio: 4 / 3; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-lg); user-select: none; }
.ba__before, .ba__after-img { position: absolute; inset: 0; width: 100%; height: 100%; }
.ba__before { filter: none; }
.ba__after { position: absolute; inset: 0; clip-path: inset(0 0 0 50%); }
.ba__handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: #fff; transform: translateX(-50%); pointer-events: none; box-shadow: 0 0 0 1px rgba(0,0,0,.08); }
.ba__handle svg { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 26px; height: 26px; padding: 9px; box-sizing: content-box; background: #fff; border-radius: 50%; color: var(--forest); box-shadow: var(--shadow-md); }
.ba__range { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; margin: 0; }
.ba__tag { position: absolute; bottom: 16px; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; background: rgba(22,35,29,.7); color: #fff; backdrop-filter: blur(4px); pointer-events: none; }
.ba__tag--before { left: 16px; }
.ba__tag--after { right: 16px; background: var(--gold); color: var(--forest); }

/* ============================================================
   PROCESS
   ============================================================ */
.process-section { background: var(--forest); color: #fff; }
.process-section .eyebrow { color: var(--gold-soft); }
.process-section h2 { color: #fff; }
.process { counter-reset: step; }
.process-step { padding: 28px 24px; border-radius: var(--r-md); background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09); }
.process-step__num { font-family: var(--font-display); font-size: 40px; color: var(--gold); font-weight: 500; }
.process-step h3 { color: #fff; margin: 14px 0 10px; font-size: 22px; }
.process-step p { color: rgba(255,255,255,.66); font-size: 15.5px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.quote-card { background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--r-lg); padding: 34px 30px; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); }
.quote-card__stars { color: var(--gold); letter-spacing: 3px; font-size: 16px; }
.quote-card blockquote { margin: 18px 0 24px; font-family: var(--font-display); font-size: 20px; line-height: 1.45; color: var(--ink); font-weight: 400; }
.quote-card figcaption { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.quote-card__av { width: 50px; height: 50px; flex: 0 0 auto; }
.quote-card figcaption b { display: block; color: var(--forest); font-size: 15.5px; }
.quote-card figcaption span { font-size: 13.5px; color: var(--muted-2); }

/* ---- redesigned testimonials ---- */
.testi-section { background: var(--paper-2); overflow: clip; }
.testi-grid { display: grid; grid-template-columns: 1.18fr .92fr .92fr; gap: 24px; align-items: stretch; }
.testi-card {
  position: relative; overflow: hidden;
  min-width: 0;
  min-height: 360px;
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.88)),
    radial-gradient(circle at 18% 0%, rgba(228,210,166,.44), transparent 34%);
  border: 1px solid var(--line-soft); border-radius: var(--r-lg);
  padding: clamp(26px, 3vw, 34px);
  display: flex; flex-direction: column; justify-content: space-between; gap: 28px;
  box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.testi-card:first-child {
  background:
    linear-gradient(145deg, rgba(14,59,45,.98), rgba(20,80,60,.94)),
    radial-gradient(circle at 90% 0%, rgba(228,210,166,.3), transparent 36%);
  color: #fff;
}
.testi-card::before {
  content: ""; position: absolute; top: 24px; right: 28px; width: 62px; height: 50px; opacity: .13;
  background: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 70 54'%3E%3Cpath fill='%23BE9A4E' d='M0 54 18 0h16L23 54H0Zm36 0 18-54h16L59 54H36Z'/%3E%3C/svg%3E");
}
.testi-card::after { content: ""; position: absolute; inset: auto 28px 0; height: 4px; background: linear-gradient(90deg, var(--gold), transparent); transform: scaleX(.28); transform-origin: left; transition: transform .35s var(--ease); }
.testi-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--gold-soft); }
.testi-card:hover::after { transform: scaleX(1); }
.testi-card__top { display: flex; align-items: center; gap: 14px; position: relative; z-index: 1; max-width: calc(100% - 66px); }
.testi-card__av {
  width: 54px; height: 54px; flex: 0 0 auto; border-radius: 16px;
  background: var(--forest); color: var(--gold-soft);
  display: grid; place-items: center; font-weight: 700; font-size: 17px; letter-spacing: .03em;
  font-family: var(--font-sans); box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
}
.testi-card:first-child .testi-card__av { background: var(--gold-soft); color: var(--forest); }
.testi-card__top b { display: block; color: var(--forest); font-size: 16px; line-height: 1.2; }
.testi-card__top span { display: block; margin-top: 4px; font-size: 13.5px; color: var(--muted-2); line-height: 1.35; }
.testi-card:first-child .testi-card__top b { color: #fff; }
.testi-card:first-child .testi-card__top span { color: rgba(255,255,255,.65); }
.testi-card blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.25;
  color: var(--ink);
  font-weight: 400;
  position: relative;
  z-index: 1;
}
.testi-card:not(:first-child) blockquote { font-size: clamp(20px, 1.7vw, 25px); line-height: 1.36; }
.testi-card:first-child blockquote { color: #fff; max-width: none; }
.testi-card figcaption {
  position: relative; z-index: 1;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding-top: 18px; border-top: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 600;
}
.testi-card:first-child figcaption { border-top-color: rgba(255,255,255,.14); color: rgba(255,255,255,.68); }
.testi-card__stars { color: var(--gold); letter-spacing: 2px; font-size: 14px; white-space: nowrap; }

/* ============================================================
   SERVICE AREA MAP
   ============================================================ */
.area-section { background: var(--paper-2); }
.area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 5vw, 80px); align-items: center; }
.area-grid__districts { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.area-grid__districts span { padding: 8px 15px; border-radius: 999px; background: var(--card); border: 1px solid var(--line); font-size: 14px; font-weight: 500; color: var(--forest-700); }
.area-map { position: relative; aspect-ratio: 1 / 1; max-width: 480px; margin-inline: auto; width: 100%; background: radial-gradient(circle at 50% 50%, var(--card), var(--paper)); border: 1px solid var(--line); border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-md); }
.area-map__rings { position: absolute; inset: 0; display: grid; place-items: center; }
.area-map__rings span { position: absolute; border: 1.5px dashed var(--line); border-radius: 50%; }
.area-map__rings span:nth-child(1) { width: 32%; height: 32%; }
.area-map__rings span:nth-child(2) { width: 60%; height: 60%; border-style: solid; border-color: var(--line-soft); }
.area-map__rings span:nth-child(3) { width: 88%; height: 88%; }
.area-map__center { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--forest); z-index: 2; }
.area-map__center svg { width: 34px; height: 34px; }
.area-map__center b { font-family: var(--font-display); font-size: 18px; }
.area-pin { position: absolute; transform: translate(-50%,-50%); padding: 6px 12px; background: var(--forest); color: #fff; font-size: 12.5px; font-weight: 600; border-radius: 999px; white-space: nowrap; box-shadow: var(--shadow-sm); }
.area-pin::after { content: ""; position: absolute; bottom: -4px; left: 50%; transform: translateX(-50%) rotate(45deg); width: 7px; height: 7px; background: var(--forest); }

/* ============================================================
   INNER PAGE HERO
   ============================================================ */
.page-hero { background: var(--forest); color: #fff; padding: clamp(54px, 7vw, 96px) 0 clamp(60px, 8vw, 104px); position: relative; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; width: 560px; height: 560px; border-radius: 50%; background: radial-gradient(circle, rgba(190,154,78,.28), transparent 65%); top: -220px; right: -160px; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow { color: var(--gold-soft); }
.page-hero h1 { color: #fff; margin-top: 18px; max-width: 16ch; }
.page-hero .lead { color: rgba(255,255,255,.74); margin-top: 22px; max-width: 56ch; }
.page-hero__crumbs { display: flex; gap: 8px; align-items: center; font-size: 14px; color: rgba(255,255,255,.55); margin-bottom: 6px; white-space: nowrap; }
.page-hero__crumbs a:hover { color: var(--gold-soft); }
.page-hero__stats { display: flex; gap: clamp(24px, 4vw, 56px); margin-top: 44px; flex-wrap: wrap; }
.page-hero__stats div b { font-family: var(--font-display); font-size: 34px; color: #fff; display: block; line-height: 1; }
.page-hero__stats div span { font-size: 14px; color: rgba(255,255,255,.6); }
/* two-column hero with media */
.page-hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.page-hero__media { position: relative; }
.page-hero__img { width: 100%; aspect-ratio: 4 / 3.4; box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.12); }
.page-hero__badge { position: absolute; bottom: 22px; left: -22px; display: flex; align-items: center; gap: 12px; background: var(--card); border-radius: 16px; padding: 13px 17px; box-shadow: var(--shadow-md); }
.page-hero__badge span.ic { width: 38px; height: 38px; border-radius: 10px; background: rgba(14,59,45,.08); color: var(--forest); display: grid; place-items: center; flex: 0 0 auto; }
.page-hero__badge span.ic svg { width: 20px; height: 20px; }
.page-hero__badge b { display: block; font-size: 14.5px; color: var(--ink); }
.page-hero__badge em { font-style: normal; font-size: 12.5px; color: var(--muted-2); }
.city-hero h1 { max-width: 14ch; }
.city-page__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(36px, 5vw, 76px); align-items: start; }
.city-page p { color: var(--muted); margin-top: 18px; }
.city-page__aside {
  position: sticky;
  top: 112px;
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 42px);
  box-shadow: var(--shadow-md);
}
.city-page__aside b { display: block; font-family: var(--font-display); color: var(--forest); font-size: clamp(34px, 4vw, 52px); line-height: 1; }
.city-page__aside span { display: inline-flex; margin-top: 12px; color: var(--gold-600); font-weight: 700; font-size: 14px; letter-spacing: .04em; text-transform: uppercase; }
.city-checklist { margin-top: 28px; }
@media (max-width: 880px) {
  .page-hero__grid { grid-template-columns: 1fr; }
  .page-hero__media { max-width: 480px; }
  .page-hero__img { aspect-ratio: 16 / 10; }
  .city-page__grid { grid-template-columns: 1fr; }
  .city-page__aside { position: static; }
}

/* ============================================================
   SERVICE DETAIL ROWS
   ============================================================ */
.svc-detail { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 80px); align-items: center; padding: clamp(48px, 7vw, 96px) 0; border-bottom: 1px solid var(--line-soft); scroll-margin-top: 100px; }
.svc-detail:last-child { border-bottom: 0; }
.svc-detail--rev .svc-detail__media { order: 2; }
.svc-detail__num { font-family: var(--font-display); font-size: 18px; color: var(--gold-600); font-weight: 600; letter-spacing: .04em; }
.svc-detail h2 { margin: 12px 0 18px; }
.svc-detail p { color: var(--muted); }
.svc-detail__media { width: 100%; aspect-ratio: 5 / 4; box-shadow: var(--shadow-lg); }
.checklist { list-style: none; padding: 0; margin: 26px 0 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; }
.checklist li { display: flex; gap: 10px; align-items: flex-start; font-size: 15.5px; font-weight: 500; color: var(--ink); }
.checklist svg { width: 20px; height: 20px; color: var(--forest-500); flex: 0 0 auto; margin-top: 1px; }

/* ============================================================
   FEATURE GRID (Warum wir)
   ============================================================ */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; }
.feature { background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--r-md); padding: 30px 28px; }
.feature__ic { width: 48px; height: 48px; border-radius: 13px; background: rgba(14,59,45,.07); color: var(--forest); display: grid; place-items: center; margin-bottom: 18px; }
.feature__ic svg { width: 24px; height: 24px; }
.feature h3 { font-size: 21px; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: 15.5px; }

/* ============================================================
   ABOUT — values + team + timeline
   ============================================================ */
.about-lead { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.about-lead__media { width: 100%; aspect-ratio: 4 / 3; box-shadow: var(--shadow-lg); }
.about-lead p + p { margin-top: 18px; }
.values { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 48px; }
.value { display: flex; gap: 18px; padding: 28px; background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--r-md); }
.value__ic { width: 46px; height: 46px; border-radius: 12px; background: var(--forest); color: var(--gold); display: grid; place-items: center; flex: 0 0 auto; }
.value__ic svg { width: 23px; height: 23px; }
.value h3 { font-size: 20px; margin-bottom: 6px; }
.value p { color: var(--muted); font-size: 15.5px; }

.timeline { margin-top: 52px; display: grid; gap: 0; }
.timeline__row { display: grid; grid-template-columns: 140px 1fr; gap: 32px; padding: 28px 0; border-top: 1px solid var(--line-soft); }
.timeline__row:last-child { border-bottom: 1px solid var(--line-soft); }
.timeline__year { font-family: var(--font-display); font-size: 30px; color: var(--forest); font-weight: 500; }
.timeline__row h3 { font-size: 21px; margin-bottom: 8px; }
.timeline__row p { color: var(--muted); }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.team-card__photo { width: 100%; aspect-ratio: 1 / 1; box-shadow: var(--shadow-sm); margin-bottom: 16px; }
.team-card b { display: block; color: var(--forest); font-size: 18px; font-family: var(--font-display); }
.team-card span { font-size: 14px; color: var(--muted-2); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(36px, 5vw, 72px); align-items: start; }
.contact-info { position: sticky; top: 110px; }
.contact-info h2 { margin-bottom: 18px; }
.contact-list { list-style: none; padding: 0; margin: 32px 0 0; display: grid; gap: 4px; }
.contact-list li { display: flex; gap: 16px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid var(--line-soft); }
.contact-list li:last-child { border-bottom: 0; }
.contact-list__ic { width: 44px; height: 44px; border-radius: 12px; background: rgba(14,59,45,.06); color: var(--forest); display: grid; place-items: center; flex: 0 0 auto; }
.contact-list__ic svg { width: 21px; height: 21px; }
.contact-list b { display: block; color: var(--ink); font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
.contact-list a, .contact-list span { color: var(--muted); font-size: 17px; }
.contact-list a:hover { color: var(--forest); }

.form-card { background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--r-lg); padding: clamp(28px, 4vw, 44px); box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.field label { font-size: 14px; font-weight: 600; color: var(--forest-700); }
.field input, .field select, .field textarea {
  font-family: var(--font-sans); font-size: 16px; color: var(--ink);
  padding: 14px 16px; border-radius: 12px; border: 1.5px solid var(--line); background: var(--paper-2);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease); width: 100%;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--forest-500); box-shadow: 0 0 0 4px rgba(44,107,84,.12); background: #fff; }
.form-note { font-size: 13px; color: var(--muted-2); margin-top: 8px; display: flex; gap: 8px; align-items: flex-start; }
.form-note svg { width: 16px; height: 16px; color: var(--forest-500); flex: 0 0 auto; margin-top: 1px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip-radio { position: relative; }
.chip-radio input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.chip-radio span { display: block; padding: 11px 18px; border-radius: 999px; border: 1.5px solid var(--line); font-size: 15px; font-weight: 500; color: var(--muted); cursor: pointer; transition: all .2s var(--ease); }
.chip-radio input:checked + span { border-color: var(--forest); background: var(--forest); color: #fff; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 820px; margin: 48px auto 0; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 26px 56px 26px 0; position: relative; font-family: var(--font-display); font-size: clamp(19px, 2vw, 23px); color: var(--forest); font-weight: 500; }
.faq-q::after { content: ""; position: absolute; right: 6px; top: 50%; width: 14px; height: 14px; transform: translateY(-50%); background: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230E3B2D' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E"); transition: transform .3s var(--ease); }
.faq-item.is-open .faq-q::after { transform: translateY(-50%) rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-item.is-open .faq-a { max-height: 320px; }
.faq-a p { padding: 0 56px 28px 0; color: var(--muted); }

.faq-cats { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 38px; }
.faq-cats span { padding: 9px 18px; border-radius: 999px; background: var(--card); border: 1px solid var(--line); font-size: 14px; font-weight: 600; color: var(--forest-700); }

/* ============================================================
   BRAND IDENTITY
   ============================================================ */
.brand-hero__grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(36px, 6vw, 88px); align-items: center; }
.brand-hero h1 { max-width: 11ch; }
.brand-hero__panel {
  background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(244,239,230,.92));
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--r-xl);
  padding: clamp(28px, 5vw, 58px);
  box-shadow: 0 24px 80px rgba(0,0,0,.18);
}
.brand-hero__panel img { width: min(100%, 420px); margin-inline: auto; }
.brand-hero__tags { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 30px; justify-content: center; }
.brand-hero__tags span { padding: 8px 13px; border-radius: 999px; background: rgba(11,52,40,.08); color: var(--forest); font-size: 13px; font-weight: 700; }
.brand-intro { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(36px, 5vw, 78px); align-items: start; }
.brand-intro > p { color: var(--muted); font-size: clamp(20px, 2vw, 28px); line-height: 1.45; font-family: var(--font-display); }
.brand-section-soft { background: var(--paper-2); }
.brand-logo-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 24px; align-items: stretch; }
.brand-logo-card {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.brand-logo-card img { max-height: 160px; object-fit: contain; margin-inline: auto; }
.brand-logo-card--dark { background: var(--forest); color: #fff; }
.brand-logo-card--dark h3 { color: #fff; }
.brand-logo-card--dark p { color: rgba(255,255,255,.68); }
.brand-logo-card h3 { font-size: 26px; }
.brand-logo-card p { color: var(--muted); }
.brand-meaning { margin-top: 28px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.brand-meaning div { background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--r-md); padding: 22px; }
.brand-meaning b { display: block; color: var(--forest); font-family: var(--font-display); font-size: 24px; margin-bottom: 6px; }
.brand-meaning span { color: var(--muted); font-size: 15px; }
.brand-color-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.brand-color {
  min-height: 190px;
  border-radius: var(--r-lg);
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-sm);
}
.brand-color span { font-size: 13px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.brand-color b { margin-top: 4px; font-size: 20px; font-family: var(--font-display); }
.brand-color--forest { background: #0B3428; color: #fff; }
.brand-color--emerald { background: #14503C; color: #fff; }
.brand-color--gold { background: #D9B86C; color: var(--forest); }
.brand-color--paper { background: #F4EFE6; color: var(--forest); }
.brand-color--pearl { background: #FBF8F1; color: var(--forest); }
.brand-color--ink { background: #16231D; color: #fff; }
.brand-type-grid { display: grid; grid-template-columns: 1.25fr .75fr .75fr; gap: 24px; align-items: stretch; }
.brand-type-card { background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--r-lg); padding: 30px; box-shadow: var(--shadow-sm); }
.brand-type-card span { display: block; font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-600); margin-bottom: 12px; }
.brand-type-card strong { display: block; color: var(--forest); line-height: 1; margin-bottom: 18px; }
.brand-type-display { font-family: var(--font-display); font-size: clamp(42px, 5vw, 64px); font-weight: 600; }
.brand-type-sans { font-family: var(--font-sans); font-size: clamp(34px, 4vw, 48px); font-weight: 700; letter-spacing: -.02em; }
.brand-type-card p { color: var(--muted); }
.brand-rules { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.brand-rules article { background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--r-lg); padding: clamp(28px, 4vw, 42px); box-shadow: var(--shadow-sm); }
.brand-rules h3 { display: flex; align-items: center; gap: 12px; font-size: 30px; margin-bottom: 20px; }
.brand-rules h3::before {
  content: "";
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  background: rgba(32,126,82,.11);
  color: #207E52;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23207E52' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
}
.brand-rule--dont h3::before {
  background-color: rgba(183,61,56,.11);
  color: #B73D38;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B73D38' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M6 6l12 12M18 6 6 18'/%3E%3C/svg%3E");
}
.brand-rules ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.brand-rules li { color: var(--muted); padding-left: 38px; position: relative; }
.brand-rules li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .15em;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(32,126,82,.12) no-repeat center / 14px 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23207E52' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
}
.brand-rule--dont li::before {
  background-color: rgba(183,61,56,.12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B73D38' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M6 6l12 12M18 6 6 18'/%3E%3C/svg%3E");
}
.brand-rules article.brand-rule--do { border-color: rgba(32,126,82,.2); }
.brand-rules article.brand-rule--dont { border-color: rgba(183,61,56,.2); }

.city-local-seo {
  background: var(--cream);
}
.city-local-seo__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .75fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
}
.city-local-seo__grid h2 {
  max-width: 760px;
}
.city-local-seo__grid p {
  color: var(--muted);
  max-width: 780px;
}
.city-local-seo__areas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding-left: 24px;
  border-left: 1px solid rgba(11,52,40,.16);
}
.city-local-seo__areas span {
  color: var(--green);
  font-weight: 800;
  padding: 12px 0;
  border-bottom: 1px solid rgba(11,52,40,.1);
}

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-service-areas__grid { grid-template-columns: 1fr; gap: 18px; }
  .cols-4 { grid-template-columns: repeat(2, 1fr); }
  .hero__grid, .ba-grid, .area-grid { grid-template-columns: 1fr; }
  .hero__media { max-width: 460px; margin-inline: auto; }
  .hero__img { aspect-ratio: 16 / 11; }
  .area-grid__copy { order: 2; }
  .svc-detail, .about-lead, .contact-grid, .brand-hero__grid, .brand-intro, .brand-type-grid, .city-local-seo__grid { grid-template-columns: 1fr; }
  .svc-detail--rev .svc-detail__media { order: 0; }
  .feature-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-logo-grid, .brand-rules { grid-template-columns: 1fr; }
  .brand-meaning, .brand-color-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .testi-card:first-child { grid-column: 1 / -1; min-height: 310px; }
  .testi-card:first-child blockquote { max-width: 22ch; }
  .contact-info { position: static; }
}
@media (max-width: 820px) {
  body { font-size: 17px; }
  .nav__links { display: none; }
  .cols-2, .cols-3 { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .testi-card,
  .testi-card:first-child { min-height: 0; }
  .testi-card { padding: 26px 22px; gap: 24px; }
  .testi-card blockquote,
  .testi-card:not(:first-child) blockquote { font-size: clamp(20px, 6vw, 24px); }
  .testi-card:first-child blockquote { max-width: none; }
  .stats { grid-template-columns: 1fr 1fr; gap: 0; }
  .stat { padding: 18px 0; border-right: 0; border-bottom: 1px solid var(--line-soft); }
  .stat:nth-child(odd) { border-right: 1px solid var(--line-soft); }
  .stat:nth-last-child(-n+2) { border-bottom: 0; }
  .process { grid-template-columns: 1fr 1fr; }
  .values, .form-row, .checklist { grid-template-columns: 1fr; }
  .timeline__row { grid-template-columns: 1fr; gap: 8px; }
  @supports (animation-timeline: view()) {
    .testi-card {
      animation-name: scroll-service-up;
      animation-range: entry 0% cover 30%;
    }
  }
}
@media (max-width: 560px) {
  .container { padding-inline: 20px; }
  .nav {
    height: 68px;
  }
  .brand__mark {
    width: 38px;
    height: 38px;
    border-radius: 11px;
  }
  .brand__mark svg {
    width: 25px;
    height: 25px;
  }
  .brand__name b {
    font-size: clamp(18px, 6.2vw, 22px);
  }
  .brand__name span {
    font-size: 8px;
    letter-spacing: .14em;
  }
  .nav__phone,
  .nav__toggle {
    width: 42px;
    height: 42px;
  }
  .nav__phone svg {
    width: 16px;
    height: 16px;
  }
  .nav__toggle svg {
    width: 20px;
    height: 20px;
  }
  .mobile-menu {
    top: 68px;
    min-height: calc(100dvh - 68px);
  }
  .footer-grid { grid-template-columns: 1fr; }
  .cols-4, .feature-grid, .team-grid, .process, .brand-meaning, .brand-color-grid { grid-template-columns: 1fr; }
  .testi-card__top { max-width: none; }
  .testi-card::before { width: 44px; height: 36px; top: 20px; right: 20px; }
  .brand-hero__panel, .brand-logo-card, .brand-type-card, .brand-rules article { padding: 24px; }
  .brand-color { min-height: 150px; }
  .city-local-seo__areas {
    grid-template-columns: 1fr;
    padding-left: 16px;
  }
}
