/* ============================================================
   Schust Gartenbau — Layout + Cinematic Layer (site-custom.css)
   Loaded by EVERY page (deploy gate). Hero · sections · GaLaBau features.
   ============================================================ */

/* --- Scroll-progress bar --- */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 100;
  background: linear-gradient(90deg, var(--c-aqua), var(--c-aqua-glow));
  transform-origin: left center; transform: scaleX(0); pointer-events: none;
}

/* --- Image treatment: cinematic-cool --- */
.img-treated img, .gallery img, .ms-image img, .proj-tile img {
  filter: saturate(1.06) contrast(1.05) brightness(0.99);
  transition: filter .6s, transform .9s cubic-bezier(.2,.7,.2,1);
}
.img-treated:hover img { filter: saturate(1.12) contrast(1.04) brightness(1.02); }

/* ============================================================
   HERO — Cinematic crossfade + Ken Burns + water shimmer + dust
   ============================================================ */
.hero-cinematic {
  position: relative; min-height: 100vh;
  overflow: hidden; display: grid; place-items: center;
  background: var(--c-brand-deep); isolation: isolate;
}
.hero-cinematic.short { min-height: 64vh; }

.hero-cinematic > .bg {
  position: absolute; inset: -6%; z-index: 0;
  background-size: cover; background-position: center 55%;
  filter: saturate(1.04) contrast(1.06) brightness(0.82);
  opacity: 0;
  animation: kenburns 30s ease-in-out infinite alternate;
  will-change: transform, opacity;
}
.hero-cinematic > .bg.bg-1 { animation: kenburns 30s ease-in-out infinite alternate 0s, fade3-1 27s ease-in-out infinite; }
.hero-cinematic > .bg.bg-2 { animation: kenburns 30s ease-in-out infinite alternate -10s, fade3-2 27s ease-in-out infinite; }
.hero-cinematic > .bg.bg-3 { animation: kenburns 30s ease-in-out infinite alternate -20s, fade3-3 27s ease-in-out infinite; }
@keyframes kenburns {
  0%   { transform: scale(1.05) translate(0, 0); }
  100% { transform: scale(1.2) translate(-2.2%, -3%); }
}
@keyframes fade3-1 { 0%,28% {opacity:1;} 36%,92% {opacity:0;} 100% {opacity:1;} }
@keyframes fade3-2 { 0%,28% {opacity:0;} 36%,61% {opacity:1;} 69%,100% {opacity:0;} }
@keyframes fade3-3 { 0%,61% {opacity:0;} 69%,92% {opacity:1;} 100% {opacity:0;} }

/* water-caustics shimmer overlay */
.hero-cinematic > .shimmer {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(120% 60% at 20% 90%, rgba(111,199,212,0.16), transparent 55%),
    repeating-linear-gradient(98deg, rgba(255,255,255,0.04) 0 2px, transparent 2px 9px),
    repeating-linear-gradient(-82deg, rgba(111,199,212,0.05) 0 3px, transparent 3px 14px);
  mix-blend-mode: screen;
  animation: shimmer-drift 16s ease-in-out infinite alternate;
  opacity: 0.7;
}
@keyframes shimmer-drift {
  0% { transform: translate3d(0,0,0); opacity: 0.5; }
  100% { transform: translate3d(-2%, 1.5%, 0); opacity: 0.85; }
}

.hero-cinematic > .vignette {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    radial-gradient(90% 60% at 50% 28%, transparent 0%, rgba(8,28,32,0.08) 65%, rgba(8,28,32,0.32) 100%),
    linear-gradient(180deg, rgba(8,28,32,0.42) 0%, transparent 26%, rgba(8,28,32,0.28) 58%, rgba(8,28,32,0.86) 100%);
}
.hero-cinematic > .dust {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background-image:
    radial-gradient(circle 1.5px at 20% 30%, rgba(230,245,250,0.6), transparent),
    radial-gradient(circle 1px at 80% 20%, rgba(230,245,250,0.5), transparent),
    radial-gradient(circle 2px at 50% 72%, rgba(230,245,250,0.5), transparent),
    radial-gradient(circle 1.5px at 70% 82%, rgba(230,245,250,0.45), transparent),
    radial-gradient(circle 1px at 12% 62%, rgba(230,245,250,0.5), transparent),
    radial-gradient(circle 1.5px at 90% 52%, rgba(230,245,250,0.5), transparent),
    radial-gradient(circle 1px at 32% 88%, rgba(230,245,250,0.5), transparent),
    radial-gradient(circle 1.5px at 60% 14%, rgba(230,245,250,0.5), transparent);
  animation: dust-drift 28s linear infinite; opacity: 0.7;
}
@keyframes dust-drift {
  0% { transform: translateY(0) translateX(0); opacity: 0.25; }
  50% { transform: translateY(-16px) translateX(8px); opacity: 0.7; }
  100% { transform: translateY(-32px) translateX(-5px); opacity: 0.2; }
}
.hero-cinematic > .letterbox {
  position: absolute; left: 0; right: 0; z-index: 6; pointer-events: none; background: #050f12;
  transition: height 0.9s cubic-bezier(.4,.7,.2,1);
}
.hero-cinematic > .letterbox.top { top: 0; height: 0; }
.hero-cinematic > .letterbox.bottom { bottom: 0; height: 0; }
.hero-cinematic.in-view > .letterbox.top { height: 50px; }
.hero-cinematic.in-view > .letterbox.bottom { height: 50px; }

.hero-cinematic .hero-inner {
  position: relative; z-index: 5; color: var(--c-on-dark);
  text-align: center; padding: 0 var(--gap-md); max-width: 1000px;
  will-change: transform, opacity;
}
.hero-cinematic .hero-eyebrow {
  font-family: var(--f-ui); font-size: 0.78rem; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--c-aqua-glow); margin-bottom: var(--gap-md);
  opacity: 0; transform: translateY(-12px); transition: opacity 1.3s 0.3s, transform 1.3s 0.3s;
}
.hero-cinematic.in-view .hero-eyebrow { opacity: 1; transform: translateY(0); }
.hero-cinematic .hero-title {
  font-family: var(--f-display); font-weight: 500;
  font-size: var(--size-hero); line-height: 0.96; letter-spacing: -0.025em;
  color: #fff; text-shadow: 0 4px 40px rgba(0,0,0,0.4); margin: 0 0 var(--gap-md);
}
.hero-cinematic .hero-title em { color: var(--c-aqua-glow); font-style: italic; }
.hero-cinematic .hero-title .hw { display: inline-block; white-space: nowrap; }
.hero-cinematic .hero-title .hw-em { color: var(--c-aqua-glow); font-style: italic; }
.hero-cinematic .hero-title .char {
  display: inline-block; opacity: 0; transform: translateY(46px) rotateX(-32deg); filter: blur(10px);
  transition: opacity 1.4s cubic-bezier(.2,.7,.2,1), transform 1.4s cubic-bezier(.2,.7,.2,1), filter 1.4s;
}
.hero-cinematic.in-view .hero-title .char { opacity: 1; transform: translateY(0) rotateX(0); filter: blur(0); }
.hero-cinematic .hero-sub {
  font-family: var(--f-serif); font-style: italic; font-size: clamp(1.15rem, 1.9vw, 1.6rem);
  color: var(--c-on-dark-mute); max-width: 54ch; margin: 0 auto var(--gap-lg); line-height: 1.55;
  opacity: 0; transform: translateY(16px); transition: opacity 1.4s 0.8s, transform 1.4s 0.8s;
}
.hero-cinematic.in-view .hero-sub { opacity: 1; transform: translateY(0); }
.hero-cinematic .hero-actions {
  display: inline-flex; gap: 0.9rem; flex-wrap: wrap; justify-content: center;
  opacity: 0; transform: translateY(14px); transition: opacity 1.4s 1.1s, transform 1.4s 1.1s;
}
.hero-cinematic.in-view .hero-actions { opacity: 1; transform: translateY(0); }
.hero-cinematic .hero-meta {
  margin-top: var(--gap-lg);
  font-family: var(--f-ui); font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--c-on-dark-faint);
  display: inline-flex; align-items: center; gap: var(--gap-md); flex-wrap: wrap; justify-content: center;
  opacity: 0; transition: opacity 1.4s 1.4s;
}
.hero-cinematic.in-view .hero-meta { opacity: 1; }
.hero-cinematic .hero-meta .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--c-aqua); }
.scroll-cue {
  position: absolute; bottom: 78px; left: 50%; transform: translateX(-50%); z-index: 5;
  font-family: var(--f-ui); font-size: 0.66rem; letter-spacing: 0.36em; text-transform: uppercase;
  color: var(--c-on-dark-faint); animation: pulse-down 2.6s ease-in-out infinite;
}
.scroll-cue::after { content: " ↓"; }
@keyframes pulse-down { 0%,100% { transform: translate(-50%,0); opacity: 0.6; } 50% { transform: translate(-50%,8px); opacity: 1; } }

/* --- Sub-page hero (shorter, single image) --- */
.page-hero {
  position: relative; min-height: 58vh; display: grid; place-items: center;
  overflow: hidden; isolation: isolate; background: var(--c-brand-deep);
}
.page-hero > .bg {
  position: absolute; inset: -6%; z-index: 0; background-size: cover; background-position: center 50%;
  filter: saturate(1.04) contrast(1.05) brightness(0.74);
  animation: kenburns 32s ease-in-out infinite alternate; will-change: transform;
}
.page-hero > .vignette {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(8,28,32,0.55), transparent 40%, rgba(8,28,32,0.78));
}
.page-hero > .shimmer {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: repeating-linear-gradient(98deg, rgba(255,255,255,0.03) 0 2px, transparent 2px 10px);
  mix-blend-mode: screen; animation: shimmer-drift 18s ease-in-out infinite alternate;
}
.page-hero .ph-inner { position: relative; z-index: 3; text-align: center; color: var(--c-on-dark); padding: 6rem var(--gap-md) 4rem; max-width: 900px; }
.page-hero .ph-eyebrow { font-family: var(--f-ui); font-size: 0.74rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--c-aqua-glow); margin-bottom: var(--gap-sm); display: block; }
.page-hero h1 { font-family: var(--f-display); font-weight: 500; color: #fff; font-size: clamp(2.4rem, 6vw, 5rem); line-height: 1.02; text-shadow: 0 4px 40px rgba(0,0,0,0.4); margin: 0 0 var(--gap-md); letter-spacing: -0.02em; }
.page-hero h1 em { color: var(--c-aqua-glow); font-style: italic; }
.page-hero .ph-sub { font-family: var(--f-serif); font-style: italic; font-size: clamp(1.05rem, 1.7vw, 1.4rem); color: var(--c-on-dark-mute); max-width: 52ch; margin: 0 auto; }

/* ============================================================
   Intro statement
   ============================================================ */
.statement { text-align: center; padding: var(--gap-2xl) 0; }
.statement .quote {
  font-family: var(--f-display); font-style: italic; font-weight: 400;
  font-size: clamp(1.9rem, 4.4vw, 3.6rem); line-height: 1.18; color: var(--c-ink);
  max-width: 22ch; margin: 0 auto var(--gap-md); letter-spacing: -0.01em;
}
.statement .quote em { color: var(--c-brand-light); }
.statement .signature { font-family: var(--f-serif); font-style: italic; color: var(--c-brand-light); font-size: 1.4rem; margin-top: var(--gap-sm); }
.statement .signature span { display: block; font-family: var(--f-ui); font-style: normal; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--c-ink-faint); margin-top: 4px; }

/* ============================================================
   Services grid (GaLaBau)
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap-md); }
@media (max-width: 940px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }
.service-card {
  position: relative; overflow: hidden; border-radius: var(--radius);
  min-height: 320px; display: flex; flex-direction: column; justify-content: flex-end;
  padding: var(--gap-lg) var(--gap-md) var(--gap-md);
  color: var(--c-on-dark); isolation: isolate;
  box-shadow: var(--shadow-soft);
}
.service-card .sc-bg {
  position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center;
  transition: transform 1.1s cubic-bezier(.2,.7,.2,1); transform: scale(1.04);
  filter: saturate(1.05) brightness(0.9);
}
.service-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(8,28,32,0.12) 0%, rgba(8,28,32,0.4) 50%, rgba(8,28,32,0.9) 100%); }
.service-card:hover .sc-bg { transform: scale(1.12); }
.service-card .sc-num { font-family: var(--f-ui); font-size: 0.7rem; letter-spacing: 0.22em; color: var(--c-aqua-glow); margin-bottom: 0.4rem; }
.service-card h3 { font-family: var(--f-display); font-weight: 500; font-size: 1.55rem; color: #fff; margin: 0 0 0.4rem; }
.service-card p { font-family: var(--f-ui); font-size: 0.88rem; color: var(--c-on-dark-mute); margin: 0; line-height: 1.5; }
.service-card .sc-link { margin-top: var(--gap-sm); font-family: var(--f-ui); font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--c-aqua-glow); display: inline-flex; align-items: center; gap: 6px; }
.service-card .sc-link .arrow { transition: transform .25s; }
.service-card:hover .sc-link .arrow { transform: translateX(5px); }

/* Service list (leistungen page detail blocks) */
.svc-block { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap-xl); align-items: center; margin-bottom: var(--gap-2xl); }
.svc-block.reverse > .svc-text { order: 2; }
.svc-block .svc-img { position: relative; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.svc-block .svc-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transform: scale(1.06); transition: transform 1.5s cubic-bezier(.2,.7,.2,1); }
.svc-block.in-view .svc-img img { transform: scale(1); }
.svc-block .svc-text h3 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
.svc-block .svc-text .svc-sub { color: var(--c-ink-mute); }
.svc-block ul.svc-points { list-style: none; padding: 0; margin: var(--gap-md) 0 0; }
.svc-block ul.svc-points li { position: relative; padding-left: 1.6rem; margin-bottom: 0.6rem; font-family: var(--f-ui); font-size: 0.95rem; color: var(--c-slate); }
.svc-block ul.svc-points li::before { content: ""; position: absolute; left: 0; top: 0.55em; width: 8px; height: 8px; border-radius: 50%; background: var(--c-aqua); box-shadow: 0 0 0 4px var(--c-aqua-soft); }
@media (max-width: 880px) { .svc-block { grid-template-columns: 1fr; } .svc-block.reverse > .svc-text { order: 0; } }

/* ============================================================
   Magazine split
   ============================================================ */
.magazine-split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap-xl); align-items: center; margin-bottom: var(--gap-2xl); }
.magazine-split.reverse > .ms-text { order: 2; }
.magazine-split .ms-image { position: relative; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.magazine-split .ms-image img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 5/4; transform: scale(1.08); transition: transform 1.6s cubic-bezier(.2,.7,.2,1); }
.magazine-split.in-view .ms-image img { transform: scale(1); }
.magazine-split .ms-text .kicker { display: block; margin-bottom: var(--gap-sm); }
@media (max-width: 880px) { .magazine-split { grid-template-columns: 1fr; } .magazine-split.reverse > .ms-text { order: 0; } }

/* ============================================================
   Chapter card (full-bleed petrol between sections)
   ============================================================ */
.chapter-card { position: relative; min-height: 70vh; background: var(--c-brand-deep); color: var(--c-on-dark); display: grid; place-items: center; padding: var(--gap-2xl) 0; overflow: hidden; isolation: isolate; }
.chapter-card::before { content: ""; position: absolute; inset: 0; z-index: 0; background: radial-gradient(60% 50% at 50% 50%, rgba(63,163,179,0.2), transparent 70%), linear-gradient(180deg, #06181c 0%, #0b262b 50%, #06181c 100%); }
.chapter-card .chapter-inner { position: relative; z-index: 2; text-align: center; padding: 0 var(--gap-md); max-width: 900px; }
.chapter-card .chapter-big { font-family: var(--f-display); font-size: clamp(7rem, 20vw, 18rem); font-weight: 400; line-height: 0.85; color: #fff; opacity: 0.1; margin: 0; }
.chapter-card .chapter-tag { font-family: var(--f-ui); font-size: 0.76rem; letter-spacing: 0.34em; text-transform: uppercase; color: var(--c-aqua-glow); margin-bottom: var(--gap-md); }
.chapter-card .chapter-line { font-family: var(--f-display); font-style: italic; font-weight: 400; font-size: clamp(1.7rem, 3.4vw, 2.8rem); color: #fff; max-width: 26ch; margin: calc(-1 * clamp(3rem, 10vw, 10rem)) auto 0; line-height: 1.25; }

/* ============================================================
   Bleed strip (full-bleed image + statement)
   ============================================================ */
.bleed-strip { position: relative; min-height: 80vh; overflow: hidden; display: grid; place-items: center; isolation: isolate; }
.bleed-strip > img { position: absolute; inset: 0; width: 100%; height: 130%; object-fit: cover; z-index: -2; will-change: transform; filter: saturate(1.04) brightness(0.5) contrast(1.08); }
.bleed-strip::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(135deg, rgba(14,43,48,0.62), rgba(8,28,32,0.78)); }
.bleed-strip .bleed-inner { text-align: center; color: var(--c-on-dark); padding: 0 var(--gap-lg); max-width: 820px; }
.bleed-strip .bleed-inner .eyebrow { color: var(--c-aqua-glow); }
.bleed-strip .bleed-inner h2 { color: #fff; font-family: var(--f-display); font-style: italic; font-weight: 400; font-size: clamp(2.4rem, 5.5vw, 5rem); text-shadow: 0 2px 30px rgba(0,0,0,0.4); margin: 0 auto var(--gap-md); }
.bleed-strip .bleed-inner p { color: var(--c-on-dark-mute); font-size: 1.1rem; max-width: 52ch; margin: 0 auto var(--gap-md); }

/* ============================================================
   BEFORE/AFTER + WATER comparison slider (GaLaBau core feature)
   ============================================================ */
.ba-wrap { max-width: 1040px; margin: 0 auto; }
.ba-slider {
  position: relative; width: 100%; aspect-ratio: 16/10; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-soft); cursor: ew-resize; user-select: none;
  touch-action: none; background: var(--c-brand-deep);
}
.ba-slider .ba-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-slider .ba-after { z-index: 1; }
.ba-slider .ba-before-wrap { position: absolute; inset: 0; z-index: 2; width: 50%; overflow: hidden; border-right: 2px solid rgba(255,255,255,0.85); }
.ba-slider .ba-before-wrap .ba-img { width: 100vw; max-width: 1040px; }
.ba-slider .ba-label {
  position: absolute; top: 14px; z-index: 3; font-family: var(--f-ui); font-size: 0.68rem;
  letter-spacing: 0.16em; text-transform: uppercase; padding: 0.4rem 0.7rem; border-radius: 999px;
  background: rgba(8,28,32,0.72); color: var(--c-on-dark); backdrop-filter: blur(4px);
}
.ba-slider .ba-label.left { left: 14px; }
.ba-slider .ba-label.right { right: 14px; }
.ba-slider .ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%; z-index: 4; width: 2px;
  background: rgba(255,255,255,0.9); transform: translateX(-1px); pointer-events: none;
  box-shadow: 0 0 18px rgba(111,199,212,0.6);
}
.ba-slider .ba-knob {
  position: absolute; top: 50%; left: 50%; z-index: 5; width: 52px; height: 52px;
  transform: translate(-50%, -50%); border-radius: 50%;
  background: rgba(244,239,228,0.96); display: grid; place-items: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4); pointer-events: none; color: var(--c-brand);
  font-size: 1.1rem; letter-spacing: -3px;
}
.ba-caption { text-align: center; font-family: var(--f-ui); font-size: 0.8rem; color: var(--c-ink-mute); margin-top: var(--gap-md); letter-spacing: 0.04em; }

/* ============================================================
   PROJECT GALLERY — masonry / bento + lightbox
   ============================================================ */
.gallery-filters { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-bottom: var(--gap-xl); }
.gallery-filters button {
  font-family: var(--f-ui); font-size: 0.78rem; font-weight: 500; letter-spacing: 0.06em;
  padding: 0.5rem 1rem; border-radius: 999px; border: 1px solid var(--c-rule);
  background: transparent; color: var(--c-ink-mute); cursor: pointer; transition: all .25s;
}
.gallery-filters button:hover { border-color: var(--c-brand-light); color: var(--c-brand); }
.gallery-filters button.active { background: var(--c-brand); color: var(--c-cream); border-color: var(--c-brand); }

.proj-grid {
  columns: 3; column-gap: var(--gap-sm);
}
@media (max-width: 940px) { .proj-grid { columns: 2; } }
@media (max-width: 560px) { .proj-grid { columns: 1; } }
.proj-tile {
  break-inside: avoid; margin-bottom: var(--gap-sm); position: relative; overflow: hidden;
  border-radius: 10px; cursor: pointer; display: block; background: var(--c-cream-3);
  box-shadow: 0 10px 30px -20px rgba(8,28,32,0.5);
}
.proj-tile img { width: 100%; display: block; }
.proj-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(8,28,32,0.55)); opacity: 0; transition: opacity .4s; }
.proj-tile:hover::after { opacity: 1; }
.proj-tile:hover img { transform: scale(1.06); }
.proj-tile .pt-cap {
  position: absolute; left: 12px; bottom: 10px; z-index: 2; color: #fff;
  font-family: var(--f-ui); font-size: 0.74rem; letter-spacing: 0.08em; opacity: 0;
  transform: translateY(8px); transition: opacity .4s, transform .4s;
}
.proj-tile:hover .pt-cap { opacity: 1; transform: translateY(0); }
.proj-tile.hide { display: none; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(6,18,22,0.96); display: none; place-items: center; padding: 2rem; }
.lightbox.open { display: grid; }
.lightbox img { max-width: 92vw; max-height: 84vh; border-radius: 8px; box-shadow: 0 30px 90px rgba(0,0,0,0.6); }
.lightbox .lb-close { position: absolute; top: 20px; right: 24px; font-size: 2rem; color: var(--c-on-dark); cursor: pointer; line-height: 1; background: none; border: 0; }
.lightbox .lb-nav { position: absolute; top: 50%; transform: translateY(-50%); font-size: 2.4rem; color: var(--c-on-dark); cursor: pointer; background: none; border: 0; padding: 1rem; user-select: none; }
.lightbox .lb-prev { left: 8px; } .lightbox .lb-next { right: 8px; }
.lightbox .lb-cap { position: absolute; bottom: 22px; left: 0; right: 0; text-align: center; font-family: var(--f-ui); font-size: 0.82rem; color: var(--c-on-dark-mute); letter-spacing: 0.06em; }

/* ============================================================
   Stats / trust counters
   ============================================================ */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap-md); text-align: center; }
@media (max-width: 700px) { .stats-row { grid-template-columns: repeat(2, 1fr); gap: var(--gap-lg); } }
.stat .num { font-family: var(--f-display); font-weight: 500; font-size: clamp(2.6rem, 5vw, 4rem); color: var(--c-brand); line-height: 1; font-variant-numeric: tabular-nums; }
.stat .num .plus { color: var(--c-aqua); }
.stat .lbl { font-family: var(--f-ui); font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--c-ink-mute); margin-top: 0.5rem; }

/* ============================================================
   Process timeline (Beratung → Planung → Umsetzung)
   ============================================================ */
.process { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap-lg); counter-reset: step; }
@media (max-width: 760px) { .process { grid-template-columns: 1fr; } }
.process .step { position: relative; padding-top: var(--gap-md); }
.process .step .step-num { font-family: var(--f-display); font-size: 3rem; color: var(--c-aqua); opacity: 0.55; line-height: 1; }
.process .step h3 { font-size: 1.4rem; margin: 0.4rem 0 0.6rem; }
.process .step p { color: var(--c-ink-mute); font-size: 0.96rem; margin: 0; }

/* ============================================================
   Contact / forms
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap-xl); align-items: start; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card { background: #fff; border: 1px solid var(--c-rule); border-radius: var(--radius); padding: var(--gap-xl); box-shadow: var(--shadow-soft); }
.contact-card .field { margin-bottom: var(--gap-md); }
.contact-card .field label, .contact-card .field strong { display: block; font-family: var(--f-ui); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--c-ink-mute); margin-bottom: 6px; }
.contact-card input, .contact-card textarea {
  width: 100%; font-family: var(--f-body); font-size: 0.98rem; padding: 0.8rem 0.9rem;
  border: 1px solid var(--c-rule); border-radius: 10px; background: var(--c-cream); color: var(--c-ink);
}
.contact-card input:focus, .contact-card textarea:focus { outline: none; border-color: var(--c-aqua); box-shadow: 0 0 0 3px var(--c-aqua-soft); }
.contact-card .field a { color: var(--c-brand); border-bottom: 1px solid var(--c-rule); }
.contact-card .field a:hover { border-color: var(--c-aqua); }
.info-card { background: var(--c-brand-deep); color: var(--c-on-dark); border-radius: var(--radius); padding: var(--gap-xl); box-shadow: var(--shadow-soft); }
.info-card h3 { color: #fff; font-size: 1.7rem; }
.info-card .info-line { display: flex; gap: 0.9rem; align-items: flex-start; margin-bottom: var(--gap-md); }
.info-card .info-line .ic { width: 34px; height: 34px; flex-shrink: 0; border-radius: 50%; background: rgba(111,199,212,0.16); display: grid; place-items: center; color: var(--c-aqua-glow); }
.info-card .info-line strong { display: block; color: var(--c-cream); font-family: var(--f-ui); font-weight: 600; font-size: 0.95rem; }
.info-card .info-line span, .info-card .info-line a { color: var(--c-on-dark-mute); font-size: 0.92rem; }
.info-card .info-line a:hover { color: var(--c-cream); }
.info-card .region-pills { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: var(--gap-sm); }
.info-card .region-pills span { font-family: var(--f-ui); font-size: 0.74rem; padding: 0.3rem 0.7rem; border-radius: 999px; background: rgba(244,239,228,0.08); border: 1px solid rgba(233,224,204,0.18); color: var(--c-on-dark-mute); }

/* ============================================================
   Legal / prose
   ============================================================ */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: 1.5rem; margin-top: var(--gap-xl); }
.prose h3 { font-size: 1.15rem; margin-top: var(--gap-lg); }
.prose p, .prose li { color: var(--c-slate); font-size: 0.98rem; line-height: 1.75; }
.prose a { color: var(--c-brand); border-bottom: 1px solid var(--c-rule); }
.legal-banner { background: var(--c-aqua-soft); border: 1px solid rgba(63,163,179,0.3); border-radius: var(--radius); padding: var(--gap-md) var(--gap-lg); margin-bottom: var(--gap-xl); }
.legal-banner p { margin: 0; color: var(--c-brand); font-size: 0.92rem; }

/* ============================================================
   Mobile hero polish
   ============================================================ */
@media (max-width: 600px) {
  .hero-cinematic { min-height: 100vh; }
  .hero-cinematic .hero-eyebrow { font-size: 0.62rem; letter-spacing: 0.18em; margin-bottom: var(--gap-md); line-height: 1.5; }
  .hero-cinematic .hero-title { font-size: clamp(2.9rem, 14vw, 4.2rem); }
  .hero-cinematic .hero-sub { font-size: 1.02rem; }
  .hero-cinematic .hero-actions { flex-direction: column; width: 100%; }
  .hero-cinematic .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-cinematic .hero-meta { font-size: 0.68rem; gap: 0.6rem; }
  .scroll-cue { display: none; }
  .page-hero .ph-inner { padding-top: 4.5rem; }
}

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .hero-cinematic > .bg, .page-hero > .bg, .hero-cinematic > .shimmer, .hero-cinematic > .dust,
  .scroll-progress, .bleed-strip > img, .hero-cinematic .hero-title .char {
    animation: none !important; transition: none !important; transform: none !important;
  }
  .hero-cinematic > .bg.bg-1 { opacity: 1; }
  .hero-cinematic > .bg.bg-2, .hero-cinematic > .bg.bg-3 { opacity: 0; }
  .hero-cinematic .hero-title .char { opacity: 1; filter: none; }
  .reveal { opacity: 1; transform: none; }
}
