/* ============================================================
   GARAGENPARK POLCH · Im Gohl · 56751 Polch
   Tier-1 capital GmbH — Corporate Design
   Farben: Mint #36dfb5 · Türkis #00c5cd · Lime #a7e76f
           Dunkelgrün #044131 · Tinte #021612 · Papier #f7f9f6
           Anthrazit (Tore) #2b3230
   Struktur & Komponenten adaptiert von portocolom.tier1capital.de
   ============================================================ */

:root {
  --mint: #36dfb5;
  --cyan: #00c5cd;
  --lime: #a7e76f;
  --deep: #044131;
  --ink: #021612;
  --graphite: #2b3230;
  --paper: #f7f9f6;
  --grey: #f3f4f6;
  --text: #1d2b27;
  --muted: #5d6f69;
  --white: #ffffff;
  --maxw: 1280px;
  --radius: 18px;
  --shadow: 0 30px 80px -20px rgba(2, 22, 18, .35);
  --ease: cubic-bezier(.22, .8, .24, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--paper);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, video { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

::selection { background: var(--mint); color: var(--ink); }

/* ---------- Preloader ---------- */
#preloader {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--ink);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 28px;
  transition: opacity .8s var(--ease), visibility .8s;
}
#preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }
#preloader img { width: 150px; opacity: .95; animation: pulse 2.2s ease-in-out infinite; }
#preloader .bar {
  width: 180px; height: 2px; background: rgba(255,255,255,.14); overflow: hidden; border-radius: 2px;
}
#preloader .bar i {
  display: block; height: 100%; width: 40%; background: var(--mint);
  animation: load 1.4s ease-in-out infinite;
}
@keyframes load { 0% { transform: translateX(-120%); } 100% { transform: translateX(320%); } }
@keyframes pulse { 0%, 100% { opacity: .95; } 50% { opacity: .55; } }

/* ---------- Header ---------- */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px clamp(20px, 4vw, 56px);
  transition: background .5s var(--ease), padding .5s var(--ease), box-shadow .5s;
}
header .logo img { height: 44px; transition: height .5s var(--ease); }
header .logo .logo-dark { display: none; }
header.scrolled {
  background: rgba(247, 249, 246, .82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 12px clamp(20px, 4vw, 56px);
  box-shadow: 0 1px 0 rgba(2, 22, 18, .07);
}
header.scrolled .logo img { height: 36px; }
header.scrolled .logo .logo-white { display: none; }
header.scrolled .logo .logo-dark { display: block; }
nav { display: flex; gap: clamp(10px, 1.4vw, 20px); align-items: center; }
nav a {
  font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--white); opacity: .85; transition: opacity .3s, color .3s;
  position: relative;
}
nav a::after {
  content: ''; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--mint); transition: width .35s var(--ease);
}
nav a:hover { opacity: 1; }
nav a:hover::after { width: 100%; }
header.scrolled nav a { color: var(--ink); }
nav a.cta {
  border: 1px solid var(--mint); color: var(--mint); padding: 10px 22px; border-radius: 99px;
  transition: background .35s, color .35s;
}
nav a.cta:hover { background: var(--mint); color: var(--ink); }
nav a.cta::after { display: none; }
header.scrolled nav a.cta { color: var(--deep); border-color: var(--deep); }
header.scrolled nav a.cta:hover { background: var(--deep); color: var(--white); }
#nav-toggle { display: none; }

.header-right { display: flex; align-items: center; gap: clamp(14px, 2.4vw, 30px); }

/* ---------- Hero ---------- */
#hero {
  position: relative; height: 100svh; min-height: 620px; overflow: hidden;
  background: var(--ink);
}
#hero .media { position: absolute; inset: 0; will-change: transform; }
#hero video, #hero .media img { width: 100%; height: 100%; object-fit: cover; }
#hero .media img { position: absolute; inset: 0; animation: kenburns 20s var(--ease) infinite alternate; }
@keyframes kenburns { 0% { transform: scale(1); } 100% { transform: scale(1.12); } }
#hero .veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(2,22,18,.46) 0%, rgba(2,22,18,.08) 38%, rgba(2,22,18,.20) 62%, rgba(2,22,18,.76) 100%);
}
#hero .inner {
  position: relative; z-index: 2; height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 clamp(20px, 5vw, 72px) clamp(72px, 11vh, 130px);
  color: var(--white);
}
.kicker {
  font-size: 13px; font-weight: 700; letter-spacing: .34em; text-transform: uppercase;
  color: var(--mint); margin-bottom: 18px;
}
#hero h1 {
  font-size: clamp(44px, 7.4vw, 110px);
  font-weight: 300; line-height: 1.02; letter-spacing: .01em;
  max-width: 20ch;
}
#hero h1 strong { font-weight: 800; white-space: nowrap; }
#hero .sub {
  margin-top: 22px; font-size: clamp(15px, 1.4vw, 19px); font-weight: 400;
  color: rgba(255,255,255,.85); max-width: 60ch;
}
#hero .hero-meta { display: flex; gap: clamp(18px, 3vw, 44px); margin-top: 34px; flex-wrap: wrap; }
#hero .hero-meta span {
  font-size: 13px; letter-spacing: .18em; text-transform: uppercase; font-weight: 600;
  color: rgba(255,255,255,.75);
  display: flex; align-items: center; gap: 10px;
}
#hero .hero-meta span::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--mint); }
.scroll-hint {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.7); font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
}
.scroll-hint i {
  width: 1px; height: 44px; background: linear-gradient(180deg, var(--mint), transparent);
  display: block; animation: drip 1.8s ease-in-out infinite;
}
@keyframes drip { 0% { transform: scaleY(0); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: top; } 56% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ---------- Allgemeine Sektionen ---------- */
section { position: relative; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }
.section-pad { padding: clamp(80px, 12vh, 150px) 0; }

.label {
  font-size: 12px; font-weight: 700; letter-spacing: .32em; text-transform: uppercase;
  color: var(--cyan); display: flex; align-items: center; gap: 14px; margin-bottom: 22px;
}
.label::before { content: ''; width: 38px; height: 1px; background: var(--mint); }
.dark .label { color: var(--mint); }

h2 {
  font-size: clamp(32px, 4.6vw, 62px); font-weight: 300; line-height: 1.08;
  color: var(--ink); letter-spacing: -.01em; max-width: 22ch;
}
h2 strong { font-weight: 800; }
.dark h2 { color: var(--white); }
.lead { font-size: clamp(16px, 1.5vw, 20px); color: var(--muted); max-width: 62ch; margin-top: 24px; }
.dark .lead { color: rgba(255,255,255,.72); }

/* Reveal-Animationen */
.reveal { opacity: 0; transform: translateY(48px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-img { overflow: hidden; }
.reveal-img img { transform: scale(1.12); transition: transform 1.6s var(--ease); }
.reveal-img.in img { transform: scale(1); }
[data-delay="1"] { transition-delay: .12s; }
[data-delay="2"] { transition-delay: .24s; }
[data-delay="3"] { transition-delay: .36s; }
[data-delay="4"] { transition-delay: .48s; }

/* ---------- Scroll-Fortschritt ---------- */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 100%; z-index: 960;
  background: linear-gradient(90deg, var(--cyan), var(--mint), var(--lime));
  transform-origin: 0 50%; transform: scaleX(0); pointer-events: none;
}

/* ---------- Stats / Intro ---------- */
#intro { background: var(--paper); }
#intro .statement { max-width: 900px; }
.tr-track { height: 220vh; }
.tr-sticky { position: sticky; top: 0; min-height: 100vh; display: flex; align-items: center; width: 100%; }
[data-words] .w { opacity: .13; transition: opacity .12s linear; }
.static-mode [data-words] .w { opacity: 1 !important; }
@media (max-width: 680px), (prefers-reduced-motion: reduce) {
  .tr-track { height: auto; }
  .tr-sticky { position: static; min-height: 0; display: block; padding: 0; }
  [data-words] .w { opacity: 1; }
}
.stat-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1px; background: rgba(2,22,18,.08); border-radius: var(--radius); overflow: hidden;
  margin-top: clamp(48px, 7vh, 80px);
  box-shadow: 0 20px 60px -30px rgba(2,22,18,.18);
}
.stat { background: var(--white); padding: 36px 28px; display: flex; flex-direction: column; gap: 6px; transition: background .4s; }
.stat:hover { background: #effaf6; }
.stat b { font-size: clamp(30px, 3.2vw, 44px); font-weight: 800; color: var(--deep); line-height: 1; font-variant-numeric: tabular-nums; }
.stat b small { font-size: .45em; font-weight: 700; color: var(--cyan); margin-left: 4px; }
.stat span { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.stat em { font-style: normal; font-size: .5em; font-weight: 700; color: var(--cyan); }

/* ---------- Konzept (Panels) ---------- */
#konzept { background: var(--white); }
.panel {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 80px);
  align-items: center; margin-top: clamp(70px, 10vh, 120px);
}
.panel:nth-child(even) .panel-text { order: -1; }
.panel-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); position: relative; aspect-ratio: 4 / 3; }
.panel-img.tall { aspect-ratio: 3 / 4; }
.panel-img img { width: 100%; height: 118%; object-fit: cover; will-change: transform; }
.panel-text h3 { font-size: clamp(24px, 2.6vw, 36px); font-weight: 700; color: var(--ink); line-height: 1.15; margin-bottom: 16px; }
.panel-text p { color: var(--muted); max-width: 46ch; }
.panel-text .num {
  font-size: 76px; font-weight: 200; color: transparent;
  -webkit-text-stroke: 1px rgba(0, 197, 205, .5);
  line-height: 1; margin-bottom: 12px; display: block;
}

/* ---------- Einheiten: Horizontal-Scroll ---------- */
#einheiten { background: var(--white); }
.hs-track { position: relative; }
.hs-sticky {
  position: sticky; top: 0; height: 100vh; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center; gap: 30px;
  padding: 90px 0 30px; box-sizing: border-box;
}
.hs-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; width: 100%; }
.hs-note { font-size: 14px; color: var(--muted); max-width: 34ch; text-align: right; }
.hs-row { display: flex; gap: clamp(16px, 2vw, 28px); align-items: stretch; padding: 0 clamp(20px, 4vw, 48px); will-change: transform; width: max-content; }
.hs-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  height: min(58vh, 560px); flex-shrink: 0;
  box-shadow: 0 26px 60px -28px rgba(2, 22, 18, .35);
  background: var(--grey); cursor: zoom-in;
}
.hs-card img { height: 100%; width: auto; object-fit: cover; display: block; }
.hs-card.tall img { max-width: 38vw; }
.hs-card figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 44px 22px 18px;
  background: linear-gradient(0deg, rgba(2,22,18,.62), transparent);
  color: var(--white); font-size: 12.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
}
.hs-progress { margin: 0 clamp(20px, 4vw, 48px); height: 2px; background: rgba(2,22,18,.1); border-radius: 2px; overflow: hidden; max-width: 320px; }
.hs-progress i { display: block; height: 100%; width: 100%; background: linear-gradient(90deg, var(--cyan), var(--mint)); transform-origin: 0 50%; transform: scaleX(0); }
.hs-native .hs-track { height: auto !important; }
.hs-native .hs-sticky { position: static; height: auto; padding: clamp(80px, 12vh, 150px) 0 60px; }
.hs-native .hs-row { overflow-x: auto; width: auto; -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory; scrollbar-width: none; }
.hs-native .hs-row::-webkit-scrollbar { display: none; }
.hs-native .hs-card { scroll-snap-align: center; height: min(52vh, 460px); }
.hs-native .hs-progress { display: none; }
.static-mode .hs-track { height: auto !important; }
.static-mode .hs-sticky { position: static; height: auto; padding: 60px 0; }
@media (max-width: 680px) {
  .hs-head { flex-direction: column; align-items: flex-start; }
  .hs-note { text-align: left; }
  .hs-card { height: 46vh; }
}

/* ---------- 360° Sektion ---------- */
#erlebnis360 { background: var(--ink); color: var(--white); }
#erlebnis360 .head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 40px; }
.pano-stage {
  position: relative; border-radius: var(--radius); overflow: hidden;
  height: clamp(420px, 72vh, 760px); background: #0a1311;
  box-shadow: 0 40px 120px -30px rgba(0,0,0,.6);
}
#panorama { width: 100%; height: 100%; }
#panovideo { position: absolute; inset: 0; display: none; cursor: grab; touch-action: none; }
#panovideo.an { display: block; }
#panovideo:active { cursor: grabbing; }
#panovideo canvas { width: 100% !important; height: 100% !important; display: block; }
.video-badge {
  position: absolute; top: 18px; left: 18px; z-index: 5;
  background: rgba(2,22,18,.62); backdrop-filter: blur(8px);
  border: 1px solid rgba(54,223,181,.4); color: var(--mint);
  font-size: 11.5px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  padding: 8px 16px; border-radius: 99px; pointer-events: none;
  display: none; align-items: center; gap: 8px;
}
.video-badge::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: #ff5b5b; animation: pulse 1.6s ease-in-out infinite; }
.pano-stage.video-mode .video-badge { display: flex; }
.pano-stage .pnlm-container { background: #0a1311 !important; }
.pano-hint {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); z-index: 5;
  background: rgba(2,22,18,.62); backdrop-filter: blur(8px);
  color: rgba(255,255,255,.92); border: 1px solid rgba(54,223,181,.35);
  font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; font-weight: 600;
  padding: 10px 20px; border-radius: 99px; pointer-events: none;
  display: flex; gap: 10px; align-items: center; transition: opacity .6s;
}
.pano-hint.hidden { opacity: 0; }
.pano-hint svg { width: 17px; height: 17px; }
.scene-bar { display: flex; flex-wrap: wrap; gap: 10px; }
.scene-bar button {
  font-family: inherit; font-size: 12.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  background: transparent; color: rgba(255,255,255,.75);
  border: 1px solid rgba(255,255,255,.22); border-radius: 99px;
  padding: 11px 20px; cursor: pointer; transition: all .35s var(--ease);
}
.scene-bar button:hover { border-color: var(--mint); color: var(--mint); }
.scene-bar button.active { background: var(--mint); border-color: var(--mint); color: var(--ink); }

/* ---------- Investment / Kapitalanlage (Vollbild-Parallax) ---------- */
#investment { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; }
#investment .bg { position: absolute; inset: -14% 0; z-index: 0; will-change: transform; }
#investment .bg img { width: 100%; height: 100%; object-fit: cover; }
#investment .tint { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(2,22,18,.84) 0%, rgba(2,22,18,.48) 55%, rgba(2,22,18,.16) 100%); }
#investment .wrap { position: relative; z-index: 2; color: var(--white); }
#investment h2 { color: var(--white); }
#investment .lead { color: rgba(255,255,255,.82); }
.invest-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(36px, 6vw, 90px); align-items: center; }
.invest-points { display: flex; flex-direction: column; gap: 0; margin-top: 44px; max-width: 560px; }
.invest-points .pt { display: flex; gap: 20px; align-items: flex-start; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.16); }
.invest-points .pt:last-child { border-bottom: 1px solid rgba(255,255,255,.16); }
.invest-points .pt svg { width: 26px; height: 26px; color: var(--mint); flex-shrink: 0; margin-top: 2px; }
.invest-points .pt b { display: block; font-size: 16px; font-weight: 700; }
.invest-points .pt span { font-size: 14.5px; color: rgba(255,255,255,.72); }
.invest-media {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 40px 100px -25px rgba(0,0,0,.6);
  aspect-ratio: 3 / 4; max-width: 400px; justify-self: end;
  border: 1px solid rgba(255,255,255,.18);
}
.invest-media img { width: 100%; height: 100%; object-fit: cover; }
.invest-media-cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 40px 20px 16px;
  background: linear-gradient(0deg, rgba(2,22,18,.74), transparent);
  color: rgba(255,255,255,.92); font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
}

/* ---------- Ausstattung ---------- */
#ausstattung { background: var(--white); }
.amenity-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: clamp(16px, 2vw, 26px); margin-top: 54px; }
.amenity {
  border: 1px solid rgba(2,22,18,.1); border-radius: var(--radius);
  padding: 30px 26px; background: var(--paper);
  transition: transform .45s var(--ease), box-shadow .45s, border-color .45s;
  position: relative; overflow: hidden;
}
.amenity:hover { transform: translateY(-6px); border-color: var(--mint); box-shadow: 0 24px 50px -24px rgba(4, 65, 49, .35); }
.amenity::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 50%), rgba(54, 223, 181, .16), transparent 65%);
  opacity: 0; transition: opacity .4s; pointer-events: none;
}
.amenity:hover::before { opacity: 1; }
.amenity > * { position: relative; }
.amenity svg { width: 30px; height: 30px; color: var(--cyan); margin-bottom: 18px; }
.amenity b { display: block; font-size: 16.5px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.amenity span { font-size: 14px; color: var(--muted); }

/* ---------- Grundrisse / Lageplan ---------- */
#grundrisse { background: var(--paper); }
.plan-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 40px; }
.plan-tabs button {
  font-family: inherit; font-size: 12.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  background: transparent; color: var(--muted);
  border: 1px solid rgba(2, 22, 18, .18); border-radius: 99px;
  padding: 11px 20px; cursor: pointer; transition: all .35s var(--ease);
}
.plan-tabs button:hover { border-color: var(--cyan); color: var(--deep); }
.plan-tabs button.active { background: var(--deep); border-color: var(--deep); color: var(--white); }
.plan-stage {
  position: relative; margin-top: 26px; border-radius: var(--radius);
  background: var(--white); border: 1px solid rgba(2, 22, 18, .08);
  box-shadow: 0 30px 70px -40px rgba(2, 22, 18, .3);
  padding: clamp(16px, 2.5vw, 36px);
}
.plan-stage img { width: 100%; height: auto; border-radius: 6px; }
.plan-stage figcaption { padding: 18px 4px 2px; font-size: 13px; letter-spacing: .08em; color: var(--muted); text-transform: uppercase; font-weight: 600; }
.plan-zoom {
  position: absolute; top: 18px; right: 18px; width: 46px; height: 46px; border-radius: 50%;
  background: var(--deep); color: var(--white); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px -8px rgba(4, 65, 49, .5); transition: transform .3s, background .3s;
}
.plan-zoom:hover { transform: scale(1.1); background: var(--ink); }
.plan-zoom svg { width: 21px; height: 21px; }

/* ---------- Standort Polch ---------- */
#standort { background: var(--deep); color: var(--white); overflow: hidden; }
#standort .grid2 { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
#standort .fakten-img { border-radius: var(--radius); overflow: hidden; box-shadow: 0 40px 100px -30px rgba(0,0,0,.55); position: sticky; top: 110px; }
#standort .fakten-img img { width: 100%; height: auto; display: block; }
#standort .fakten-img figcaption { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.55); padding: 14px 4px 0; }
.fact-list { display: flex; flex-direction: column; margin-top: 30px; }
.fact { padding: 26px 0; border-top: 1px solid rgba(255,255,255,.14); display: grid; grid-template-columns: 54px 1fr; gap: 18px; align-items: flex-start; }
.fact:last-child { border-bottom: 1px solid rgba(255,255,255,.14); }
.fact .ico { width: 46px; height: 46px; border-radius: 12px; background: rgba(54,223,181,.1); border: 1px solid rgba(54,223,181,.3); display: flex; align-items: center; justify-content: center; }
.fact .ico svg { width: 22px; height: 22px; color: var(--mint); }
.fact b { display: block; font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.fact p { font-size: 14.5px; color: rgba(255,255,255,.72); max-width: 52ch; }

.distanz-band { margin-top: clamp(60px, 9vh, 100px); }
.distanz-band h3 { font-size: 13px; font-weight: 700; letter-spacing: .3em; text-transform: uppercase; color: var(--mint); margin-bottom: 26px; }
.distanz-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1px; background: rgba(255,255,255,.14); border-radius: var(--radius); overflow: hidden; }
.distanz { background: var(--deep); padding: 26px 22px; transition: background .35s; }
.distanz:hover { background: #055741; }
.distanz b { display: block; font-size: 26px; font-weight: 800; color: var(--white); line-height: 1.1; font-variant-numeric: tabular-nums; }
.distanz b small { font-size: .55em; font-weight: 700; color: var(--mint); margin-left: 3px; }
.distanz span { font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.6); font-weight: 600; }

/* ---------- Mosaik-Galerie ---------- */
#galerie { background: var(--paper); }
.mosaic { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(12px, 1.6vw, 22px); margin-top: 54px; perspective: 1200px; }
.mosaic figure {
  position: relative; border-radius: calc(var(--radius) - 4px); overflow: hidden;
  cursor: zoom-in; background: var(--grey); transform-style: preserve-3d;
  transition: transform .35s var(--ease), box-shadow .35s;
}
.mosaic figure.tilting { transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) scale(1.015); box-shadow: 0 30px 60px -28px rgba(2, 22, 18, .45); transition: box-shadow .35s; }
.mosaic figure .glare {
  content: ''; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: radial-gradient(420px circle at var(--gx, 50%) var(--gy, 50%), rgba(255, 255, 255, .22), transparent 60%);
  opacity: 0; transition: opacity .35s;
}
.mosaic figure.tilting .glare { opacity: 1; }
.mosaic figure img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease), filter .6s; }
.mosaic figure:hover img { transform: scale(1.06); }
.mosaic figcaption {
  position: absolute; inset: auto 0 0 0; padding: 40px 20px 16px;
  background: linear-gradient(0deg, rgba(2,22,18,.66), transparent);
  color: var(--white); font-size: 12.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  opacity: 0; transform: translateY(8px); transition: opacity .45s, transform .45s;
}
.mosaic figure:hover figcaption { opacity: 1; transform: none; }
.m-6 { grid-column: span 6; aspect-ratio: 4 / 3; }
.m-4 { grid-column: span 4; aspect-ratio: 3 / 3.4; }
.m-8 { grid-column: span 8; aspect-ratio: 16 / 9.2; }
.m-3 { grid-column: span 3; aspect-ratio: 3 / 4; }
.m-12 { grid-column: span 12; aspect-ratio: 21 / 9; }

/* ---------- Lightbox ---------- */
#lightbox {
  position: fixed; inset: 0; z-index: 990; background: rgba(2, 22, 18, .94);
  backdrop-filter: blur(14px); display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity .45s, visibility .45s;
}
#lightbox.open { opacity: 1; visibility: visible; }
#lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 10px; box-shadow: 0 40px 120px rgba(0,0,0,.6); transform: scale(.94); transition: transform .45s var(--ease); }
#lightbox.open img { transform: scale(1); }
#lightbox .lb-cap { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.75); font-size: 13px; letter-spacing: .16em; text-transform: uppercase; }
#lightbox button {
  position: absolute; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.22);
  color: var(--white); width: 52px; height: 52px; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-size: 20px; transition: background .3s, border-color .3s;
}
#lightbox button:hover { background: rgba(54,223,181,.18); border-color: var(--mint); }
#lightbox .lb-close { top: 26px; right: 26px; }
#lightbox.no-nav .lb-prev, #lightbox.no-nav .lb-next { display: none; }
#lightbox .lb-prev { left: 26px; top: 50%; transform: translateY(-50%); }
#lightbox .lb-next { right: 26px; top: 50%; transform: translateY(-50%); }

/* ---------- Marquee ---------- */
.marquee { background: var(--ink); border-top: 1px solid rgba(255,255,255,.08); overflow: hidden; padding: 30px 0; position: relative; }
.marquee::before, .marquee::after { content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none; }
.marquee::before { left: 0; background: linear-gradient(90deg, var(--ink), transparent); }
.marquee::after { right: 0; background: linear-gradient(-90deg, var(--ink), transparent); }
.marquee-track { display: flex; align-items: center; gap: 38px; width: max-content; animation: marquee 46s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { font-size: 14px; font-weight: 700; letter-spacing: .3em; text-transform: uppercase; color: rgba(255,255,255,.55); white-space: nowrap; }
.marquee-track i { width: 7px; height: 7px; border-radius: 50%; background: var(--mint); flex-shrink: 0; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.static-mode .marquee-track, .static-mode .btn-solid::after { animation: none !important; }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } .mosaic figure.tilting { transform: none; } }

/* ---------- Kontakt / CTA ---------- */
#kontakt { background: var(--ink); color: var(--white); position: relative; overflow: hidden; }
#kontakt .glow { position: absolute; width: 720px; height: 720px; border-radius: 50%; background: radial-gradient(circle, rgba(54,223,181,.16), transparent 65%); top: -260px; right: -160px; pointer-events: none; }
#kontakt .inner { position: relative; z-index: 2; text-align: center; max-width: 760px; margin: 0 auto; }
#kontakt h2 { color: var(--white); margin: 0 auto; }
#kontakt .lead { margin-left: auto; margin-right: auto; }
.cta-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 44px; }
.btn { display: inline-flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; padding: 18px 38px; border-radius: 99px; transition: all .35s var(--ease); }
.btn-solid { background: var(--mint); color: var(--ink); position: relative; overflow: hidden; }
.btn-solid:hover { background: var(--lime); transform: translateY(-3px); box-shadow: 0 18px 40px -12px rgba(54,223,181,.5); }
.btn-solid::after {
  content: ''; position: absolute; top: 0; bottom: 0; left: -80%; width: 50%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-20deg); animation: shine 3.8s var(--ease) infinite; pointer-events: none;
}
@keyframes shine { 0% { left: -80%; } 38% { left: 130%; } 100% { left: 130%; } }
.btn-ghost { border: 1px solid rgba(255,255,255,.35); color: var(--white); }
.btn-ghost:hover { border-color: var(--mint); color: var(--mint); transform: translateY(-3px); }
#kontakt .contact-meta { margin-top: 54px; display: flex; gap: clamp(24px, 5vw, 70px); justify-content: center; flex-wrap: wrap; color: rgba(255,255,255,.72); font-size: 15px; }
#kontakt .contact-meta div b { display: block; font-size: 13px; letter-spacing: .22em; text-transform: uppercase; margin-bottom: 6px; color: var(--mint); }

/* Exposé-Download */
.expose-download { margin-top: 56px; padding-top: 44px; border-top: 1px solid rgba(255,255,255,.1); }
.expose-label { font-size: 13px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--mint); margin-bottom: 22px; }
.expose-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.expose-btn {
  display: inline-flex; align-items: center; gap: 12px; padding: 16px 30px; border-radius: 99px;
  border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.03);
  color: var(--white); font-size: 14px; font-weight: 600; letter-spacing: .03em; transition: all .35s var(--ease);
}
.expose-btn svg { width: 17px; height: 17px; opacity: .65; transition: all .35s var(--ease); }
.expose-btn:hover { border-color: var(--mint); color: var(--mint); background: rgba(54,223,181,.07); transform: translateY(-3px); }
.expose-btn:hover svg { opacity: 1; transform: translateY(2px); }
.expose-note { margin-top: 18px; font-size: 12px; letter-spacing: .04em; color: rgba(255,255,255,.4); }

/* Team-Foto */
.team-feature { max-width: 520px; margin: 46px auto 4px; }
.team-feature img { width: 100%; height: auto; display: block; border-radius: 16px; border: 1px solid rgba(255,255,255,.14); box-shadow: 0 34px 80px -34px rgba(0,0,0,.75); }
.team-feature figcaption { margin-top: 16px; text-align: center; font-size: 13px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--mint); }
@media (max-width: 560px) { .team-feature { max-width: 100%; } .expose-row { flex-direction: column; align-items: stretch; } .expose-btn { justify-content: center; } }

footer {
  background: var(--ink); border-top: 1px solid rgba(255,255,255,.1);
  padding: 34px clamp(20px, 4vw, 56px);
  display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  color: rgba(255,255,255,.55); font-size: 13.5px;
}
footer img { height: 30px; opacity: .9; }
footer .links { display: flex; gap: 26px; }
footer a { transition: color .3s; }
footer a:hover { color: var(--mint); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .panel { grid-template-columns: 1fr; }
  .panel:nth-child(even) .panel-text { order: 0; }
  #standort .grid2 { grid-template-columns: 1fr; }
  #standort .fakten-img { position: relative; top: 0; }
  .invest-grid { grid-template-columns: 1fr; }
  .invest-media { justify-self: start; max-width: 340px; }
  .m-6, .m-4, .m-8, .m-3 { grid-column: span 6; }
}
@media (max-width: 1024px) {
  nav { display: none; }
  nav.open { display: flex; position: fixed; inset: 0; background: rgba(2,22,18,.96); backdrop-filter: blur(16px); flex-direction: column; align-items: center; justify-content: center; gap: 34px; }
  nav.open a { color: var(--white) !important; font-size: 17px; }
  #nav-toggle { display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; z-index: 950; padding: 8px; }
  #nav-toggle i { width: 26px; height: 2px; background: currentColor; display: block; transition: all .35s; border-radius: 2px; }
  header #nav-toggle { color: var(--white); }
  header.scrolled #nav-toggle { color: var(--ink); }
  body.nav-open #nav-toggle { color: var(--white) !important; }
  body.nav-open #nav-toggle i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.nav-open #nav-toggle i:nth-child(2) { opacity: 0; }
  body.nav-open #nav-toggle i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}
@media (max-width: 680px) {
  .m-6, .m-4, .m-8, .m-3, .m-12 { grid-column: span 12; aspect-ratio: 4 / 3; }
  .stat { padding: 26px 20px; }
  #hero .hero-meta { gap: 14px; }
  .pano-stage { height: 70vh; }
}

/* Reduzierte Bewegung */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal-img img { transition: none; opacity: 1; transform: none; }
  #hero .media img { animation: none; }
}

/* Statischer Modus (?static=1) — für Tests/Screenshots */
.static-mode { scroll-behavior: auto; }
.static-mode .reveal, .static-mode .reveal-img { opacity: 1 !important; transform: none !important; transition: none !important; }
.static-mode .reveal-img img { transform: none !important; transition: none !important; }
.static-mode #hero .media img { animation: none; }
.static-mode #preloader { display: none; }
.static-mode #hero { height: 860px; min-height: 0; }
.static-mode #investment { min-height: 900px; }
.static-mode .pano-stage { height: 700px; }
.static-mode .tr-track { height: auto; }
.static-mode .tr-sticky { position: static; min-height: 0; display: block; }


/* ============================================================
   ERGÄNZUNGEN v=20260621b — Vermietung / Lead-Formular / Hallentypen
   (überschreiben gezielt frühere Regeln; QA-Fixes a11y/Fokus/Touch)
   ============================================================ */

/* Sichtbarer Tastatur-Fokus (a11y) */
:focus-visible { outline: 2px solid var(--mint); outline-offset: 2px; border-radius: 4px; }
.btn:focus-visible, .typ-cta:focus-visible, .scene-bar button:focus-visible, .plan-tabs button:focus-visible,
nav a:focus-visible, .lf-callback:focus-visible, .header-tel:focus-visible, .expose-btn:focus-visible,
#lightbox button:focus-visible, .plan-zoom:focus-visible { outline: 2px solid var(--mint); outline-offset: 3px; }
#lead-form input:focus-visible, #lead-form select:focus-visible, #lead-form textarea:focus-visible { outline: none; }

/* Touch-Targets >= ~44px (a11y) */
.scene-bar button, .plan-tabs button { min-height: 44px; }

/* Header-Telefon */
.header-tel { display: inline-flex; align-items: center; gap: 8px; color: var(--white); font-size: 13px; font-weight: 700; letter-spacing: .04em; white-space: nowrap; transition: color .3s; }
.header-tel svg { width: 18px; height: 18px; color: var(--mint); }
header.scrolled .header-tel { color: var(--ink); }
.header-tel:hover { color: var(--mint); }
@media (max-width: 620px) { .header-tel span { display: none; } }

/* Hero: zweispaltig mit Anfrage-Formular */
#hero { min-height: 100svh; height: auto; }
#hero .inner {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 4vw, 60px);
  align-items: center;
  padding: clamp(110px, 16vh, 160px) clamp(20px, 5vw, 72px) clamp(60px, 9vh, 110px);
  height: auto; min-height: 100svh;
}
#hero .hero-content { align-self: center; }
#hero h1 { font-size: clamp(40px, 6vw, 84px); }
#hero .sub { max-width: 46ch; }
#hero .sub strong { color: var(--white); font-weight: 700; }

/* Lead-Form-Card */
.lead-form-card {
  background: rgba(255,255,255,.97); color: var(--text);
  border-radius: var(--radius); padding: clamp(22px, 2.4vw, 34px);
  box-shadow: 0 40px 100px -28px rgba(2,22,18,.6); justify-self: end;
  width: 100%; max-width: 440px; border: 1px solid rgba(255,255,255,.5);
}
.lf-head h2 { font-size: clamp(22px, 2vw, 27px); font-weight: 800; color: var(--ink); max-width: none; line-height: 1.15; }
.lf-head p { font-size: 13px; color: var(--muted); margin-top: 6px; margin-bottom: 18px; }
#lead-form .lf-row { margin-bottom: 12px; }
#lead-form .lf-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
#lead-form label { display: block; font-size: 12.5px; font-weight: 700; letter-spacing: .04em; color: var(--deep); }
#lead-form .lf-opt { font-weight: 400; color: var(--muted); text-transform: none; letter-spacing: 0; }
#lead-form input, #lead-form select, #lead-form textarea {
  width: 100%; margin-top: 6px; font-family: inherit; font-size: 14px; color: var(--text);
  background: #fff; border: 1px solid rgba(2,22,18,.18); border-radius: 10px; padding: 11px 13px;
  transition: border-color .25s, box-shadow .25s;
}
#lead-form textarea { resize: vertical; }
#lead-form input:focus, #lead-form select:focus, #lead-form textarea:focus {
  outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(0,197,205,.15);
}
.lf-consent { display: flex; gap: 10px; align-items: flex-start; margin: 6px 0 16px; }
.lf-consent input { width: auto; margin-top: 3px; flex-shrink: 0; }
.lf-consent span { font-size: 12px; color: var(--muted); line-height: 1.45; font-weight: 400; }
.lf-consent a { color: var(--deep); text-decoration: underline; }
.lf-submit { width: 100%; justify-content: center; padding: 16px 24px; }
.lf-alt { margin-top: 12px; text-align: center; }
.lf-callback {
  background: none; border: none; cursor: pointer; font-family: inherit;
  display: inline-flex; align-items: center; gap: 8px; color: var(--deep);
  font-size: 13px; font-weight: 700; padding: 8px; transition: color .25s;
}
.lf-callback svg { width: 17px; height: 17px; }
.lf-callback:hover { color: var(--cyan); }
.lf-success { text-align: center; padding: 24px 8px; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.lf-success svg { width: 48px; height: 48px; color: var(--mint); }
.lf-success b { font-size: 20px; color: var(--ink); }
.lf-success span { font-size: 14px; color: var(--muted); max-width: 34ch; }
#kontakt .cta-row .lf-callback { color: var(--white); border: 1px solid rgba(255,255,255,.35); }
#kontakt .cta-row .lf-callback:hover { color: var(--mint); border-color: var(--mint); }

@media (max-width: 900px) {
  #hero .inner { grid-template-columns: 1fr; align-items: start; gap: 26px; }
  .lead-form-card { justify-self: stretch; max-width: 560px; }
  .scroll-hint { display: none; }
}

/* ---------- Mieten-Sektion (Vollbild-Parallax, ehem. #investment) ---------- */
#mieten { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; }
#mieten .bg { position: absolute; inset: -14% 0; z-index: 0; will-change: transform; }
#mieten .bg img { width: 100%; height: 100%; object-fit: cover; }
#mieten .tint { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(2,22,18,.85) 0%, rgba(2,22,18,.5) 55%, rgba(2,22,18,.16) 100%); }
#mieten .wrap { position: relative; z-index: 2; color: var(--white); }
#mieten h2 { color: var(--white); }
#mieten .lead { color: rgba(255,255,255,.82); }
.static-mode #mieten { min-height: 900px; }

/* ---------- Hallentypen ---------- */
.typ-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: clamp(16px, 2vw, 26px); margin-top: 54px; }
.typ {
  position: relative; border: 1px solid rgba(2,22,18,.1); border-radius: var(--radius);
  padding: 30px 26px 26px; background: var(--paper); overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s, border-color .4s;
}
.typ:hover { transform: translateY(-6px); border-color: var(--mint); box-shadow: 0 24px 50px -24px rgba(4,65,49,.35); }
.typ-letter { position: absolute; top: 16px; right: 22px; font-size: 54px; font-weight: 800; line-height: 1; color: transparent; -webkit-text-stroke: 1.5px rgba(0,197,205,.4); }
.typ-individual .typ-letter { -webkit-text-stroke: 1.5px rgba(54,223,181,.55); }
.typ-size { font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--cyan); margin-bottom: 8px; }
.typ h3 { font-size: 22px; font-weight: 800; color: var(--ink); margin-bottom: 8px; }
.typ p { font-size: 14px; color: var(--muted); margin-bottom: 20px; max-width: 32ch; }
.typ-cta { background: none; border: none; cursor: pointer; font-family: inherit; padding: 0; font-size: 13px; font-weight: 700; letter-spacing: .06em; color: var(--deep); transition: color .25s; }
.typ-cta:hover { color: var(--cyan); }
.typ-note { margin-top: 32px; font-size: 13px; color: var(--muted); }
.typ-note em { color: var(--cyan); font-style: normal; }

/* Distanz-Hinweis */
.distanz-hinweis { font-size: 11px; font-weight: 600; letter-spacing: .08em; color: rgba(255,255,255,.45); text-transform: none; }

/* Static-Mode: Hero auto-Höhe für Screenshots */
.static-mode #hero { height: auto; min-height: 0; }
.static-mode #hero .inner { min-height: 0; padding-top: 120px; }

/* ============================================================
   FIX v=20260622a — Stat-Kacheln & Hallentyp-Preise
   ============================================================ */

/* BUGFIX Zahlen-Kacheln: die generische Regel `.stat span` (13px, uppercase,
   muted) traf auch die Zähler-Spans INNERHALB von <b> — dadurch waren
   Bindestrich und m²/%-Zeichen größer als die Zahlen selbst.
   Zähler-Spans erben jetzt wieder die große Schrift von <b>. */
.stat b span {
  font-size: inherit; font-weight: inherit; color: inherit;
  letter-spacing: normal; text-transform: none;
}
.stat b { display: flex; align-items: baseline; flex-wrap: nowrap; gap: 1px; white-space: nowrap; }
.stat b small { align-self: baseline; }

/* Hallentyp-Karten: Preiszeile */
.typ-preis {
  font-size: 21px; font-weight: 800; color: var(--deep);
  margin: -6px 0 16px; font-variant-numeric: tabular-nums;
}
.typ-preis::after { content: ''; display: block; width: 34px; height: 2px; background: var(--mint); margin-top: 8px; }
.typ-individual .typ-preis { font-size: 17px; font-weight: 700; color: var(--muted); }

/* ============================================================
   FIX v=20260714b — Hero-Lesbarkeit auf hellem Luftbild
   ============================================================ */
#hero .veil {
  background: linear-gradient(180deg, rgba(2,22,18,.55) 0%, rgba(2,22,18,.30) 38%,
              rgba(2,22,18,.38) 62%, rgba(2,22,18,.72) 100%);
}
#hero .kicker {
  display: inline-flex; align-items: center;
  background: rgba(2,22,18,.6); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(54,223,181,.35);
  padding: 9px 18px; border-radius: 99px;
}
#hero h1 { text-shadow: 0 2px 22px rgba(2,22,18,.6), 0 1px 3px rgba(2,22,18,.55); }
#hero .sub { text-shadow: 0 1px 14px rgba(2,22,18,.65), 0 1px 2px rgba(2,22,18,.6); color: rgba(255,255,255,.95); }
#hero .hero-meta { gap: 10px; }
#hero .hero-meta span {
  background: rgba(2,22,18,.55); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.14);
  padding: 8px 14px; border-radius: 99px; color: rgba(255,255,255,.92);
}

/* ============================================================
   v=20260716a — Verfügbarkeits-Badge im Hero
   ============================================================ */
.avail-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--mint); color: var(--ink);
  font-size: 13.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  padding: 11px 20px; border-radius: 99px; margin-bottom: 18px;
  box-shadow: 0 14px 34px -10px rgba(54,223,181,.6);
}
.avail-badge i {
  width: 9px; height: 9px; border-radius: 50%; background: var(--ink);
  animation: pulse 1.6s ease-in-out infinite; flex-shrink: 0;
}
#hero .kicker { margin-bottom: 14px; }
@media (max-width: 480px) { .avail-badge { font-size: 12px; padding: 9px 14px; } }

/* ============================================================
   v=20260716b — Formular: Honeypot & Fehlerbox
   ============================================================ */
.lf-hp { position: absolute !important; left: -9999px !important; top: -9999px !important; height: 1px; width: 1px; opacity: 0; pointer-events: none; }
.lf-error {
  margin-top: 14px; padding: 12px 16px; border-radius: 10px;
  background: rgba(176, 74, 58, .09); border: 1px solid rgba(176, 74, 58, .35);
  color: #8c3a2e; font-size: 13px; line-height: 1.5;
}
.lf-error a { color: #8c3a2e; font-weight: 700; text-decoration: underline; }
.lf-submit:disabled { opacity: .65; cursor: wait; transform: none; }

/* ============================================================
   v=20260716c — Mieterstimmen-Laufband & Prozess-Schritte
   ============================================================ */
#stimmen { overflow: hidden; }
.stimmen-band { margin-top: 48px; display: flex; flex-direction: column; gap: 22px; }
.stimmen-row { display: flex; gap: 22px; width: max-content; animation: marquee 150s linear infinite; }
.stimmen-row.rev { animation-direction: reverse; }
.stimmen-band:hover .stimmen-row { animation-play-state: paused; }
.stimme {
  width: min(400px, 82vw); flex-shrink: 0;
  background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 24px 26px;
}
.stimme .sterne { color: var(--mint); letter-spacing: 4px; font-size: 15px; margin-bottom: 12px; }
.stimme p { font-size: 14.5px; line-height: 1.6; color: rgba(255,255,255,.86); }
.stimme .wer { margin-top: 14px; font-size: 11.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.5); }
@media (prefers-reduced-motion: reduce) {
  .stimmen-row { animation: none; }
  .stimmen-band { overflow-x: auto; }
}
.static-mode .stimmen-row { animation: none; }

/* So einfach geht's — Schritte im Kontaktbereich */
.steps { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 40px; }
.step {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.14);
  border-radius: 99px; padding: 9px 18px 9px 9px;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,.85);
}
.step i {
  font-style: normal; width: 28px; height: 28px; border-radius: 50%;
  background: var(--mint); color: var(--ink); font-weight: 800; font-size: 13px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* ============================================================
   v=20260717a — Ansprechpartner-Karte & FAQ
   ============================================================ */
.ansprechpartner {
  display: flex; align-items: center; gap: clamp(20px, 3vw, 34px);
  max-width: 640px; margin: 46px auto 8px; text-align: left;
  background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius); padding: clamp(18px, 2.5vw, 28px);
}
.ansprechpartner img {
  width: clamp(120px, 16vw, 170px); height: auto; border-radius: 14px;
  border: 1px solid rgba(255,255,255,.16); flex-shrink: 0;
}
.ap-name { font-size: clamp(20px, 2vw, 24px); font-weight: 800; color: var(--white); }
.ap-rolle { font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--mint); margin-top: 4px; }
.ap-zitat { font-size: 14.5px; color: rgba(255,255,255,.82); margin-top: 12px; line-height: 1.55; }
.ap-kontakt { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 10px; font-size: 14px; font-weight: 700; }
.ap-kontakt a { color: var(--mint); }
.ap-kontakt a:hover { text-decoration: underline; }
.ap-kontakt span { color: rgba(255,255,255,.35); }
@media (max-width: 560px) {
  .ansprechpartner { flex-direction: column; text-align: center; }
  .ap-kontakt { justify-content: center; }
}

/* FAQ (Akkordeon, natives details/summary) */
#faq { background: var(--white); }
.faq-list { margin-top: 44px; max-width: 860px; }
.faq-list details {
  border: 1px solid rgba(2,22,18,.12); border-radius: 14px;
  background: var(--paper); margin-bottom: 12px; overflow: hidden;
}
.faq-list summary {
  list-style: none; cursor: pointer; position: relative;
  padding: 18px 56px 18px 22px;
  font-size: 16px; font-weight: 700; color: var(--ink);
  transition: color .25s;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary:hover { color: var(--deep); }
.faq-list summary i {
  position: absolute; right: 18px; top: 50%; width: 26px; height: 26px;
  transform: translateY(-50%); border-radius: 50%;
  border: 1px solid rgba(2,22,18,.2);
}
.faq-list summary i::before, .faq-list summary i::after {
  content: ''; position: absolute; background: var(--deep);
  top: 50%; left: 50%; transition: transform .25s var(--ease);
}
.faq-list summary i::before { width: 12px; height: 2px; transform: translate(-50%,-50%); }
.faq-list summary i::after { width: 2px; height: 12px; transform: translate(-50%,-50%); }
.faq-list details[open] summary i::after { transform: translate(-50%,-50%) scaleY(0); }
.faq-list details[open] summary { color: var(--deep); }
.faq-list details p { padding: 0 22px 20px; font-size: 14.5px; color: var(--muted); max-width: 72ch; }

/* ============================================================
   v=20260717b — Mieterstimmen: kompaktes, LESBARES Band
   (Fix: dunkler Hintergrund fehlte — weiß auf weiß) 
   ============================================================ */
#stimmen {
  background: var(--ink); color: var(--white);
  padding: clamp(40px, 6vh, 64px) 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.07);
}
.stimmen-head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 22px; }
.stimmen-head .label { margin-bottom: 0; color: var(--mint); }
#stimmen h2 { font-size: clamp(20px, 2.4vw, 30px); font-weight: 300; color: var(--white); max-width: none; }
#stimmen h2 strong { font-weight: 800; }
.stimmen-sub { font-size: 12.5px; color: rgba(255,255,255,.55); flex-basis: 100%; }
.stimmen-band { margin-top: 26px; }
.stimme {
  width: min(330px, 78vw);
  padding: 16px 20px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.13);
}
.stimme .sterne { font-size: 12px; letter-spacing: 3px; margin-bottom: 8px; }
.stimme p { font-size: 13px; line-height: 1.5; color: rgba(255,255,255,.88); }
.stimme .wer { font-size: 10.5px; margin-top: 10px; color: rgba(255,255,255,.5); }

/* v=20260717c — Zeit-/Risikohinweis unter den Prozess-Schritten */
.steps-note { margin-top: 16px; font-size: 13px; color: rgba(255,255,255,.6); max-width: 60ch; margin-left: auto; margin-right: auto; }

/* v=20260717d — Persoenlicher Ansprechpartner-Kopf im Anfrage-Formular */
.ap-mini {
  display: flex; align-items: center; gap: 14px;
  padding-bottom: 16px; margin-bottom: 16px;
  border-bottom: 1px solid rgba(2,22,18,.09);
}
.ap-mini img {
  width: 56px; height: 56px; border-radius: 50%; object-fit: cover; flex-shrink: 0;
  box-shadow: 0 4px 14px -4px rgba(2,22,18,.35); border: 2px solid var(--white);
}
.ap-mini b { display: block; font-size: 15px; font-weight: 800; color: var(--ink); line-height: 1.25; }
.ap-mini span { display: block; font-size: 11.5px; color: var(--muted); }
.ap-mini a { display: inline-block; margin-top: 2px; font-size: 12.5px; font-weight: 700; color: var(--deep); }
.ap-mini a:hover { color: var(--cyan); }

/* ============================================================
   v=20260718a — Film-Sektion (Kino-Schwenks aus den 360°-Flügen)
   ============================================================ */
#film { background: var(--ink); color: var(--white); }
#film .wrap-wide { max-width: 1500px; margin: 0 auto; padding: 0 clamp(16px, 3vw, 40px); }
.film-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(14px, 2vw, 26px); margin-top: 48px; }
.film-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: #0a1311;
}
.film-card video { width: 100%; height: 100%; object-fit: cover; opacity: .94; transition: opacity .5s, transform 1.2s var(--ease); }
.film-card:hover video { opacity: 1; transform: scale(1.03); }
.film-card .cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 26px 26px 20px;
  background: linear-gradient(0deg, rgba(2,22,18,.78), transparent);
  font-size: 13px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.92);
  display: flex; align-items: center; gap: 10px;
}
.film-card .cap::before { content: ''; width: 22px; height: 1px; background: var(--mint); flex-shrink: 0; }
.film-card.big { grid-column: span 12; aspect-ratio: 21 / 9; }
.film-card.half { grid-column: span 6; aspect-ratio: 16 / 9; }
@media (max-width: 760px) {
  .film-card.half { grid-column: span 12; }
  .film-card.big { aspect-ratio: 16 / 9; }
}

/* ============================================================
   v=20260811a — WhatsApp-Kontakt (Header-Pill + großer Button
   im Anfrage-Formular) · wa.me/4917642845763
   ============================================================ */
.header-wa {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25d366; color: var(--white);
  font-size: 13px; font-weight: 800; letter-spacing: .03em; white-space: nowrap;
  padding: 9px 16px; border-radius: 999px;
  box-shadow: 0 6px 18px -6px rgba(37,211,102,.55);
  transition: background .3s, transform .3s;
}
.header-wa svg { width: 17px; height: 17px; fill: currentColor; flex-shrink: 0; }
.header-wa:hover { background: #1fb959; transform: translateY(-1px); color: var(--white); }
header.scrolled .header-wa { color: var(--white); }
@media (max-width: 620px) {
  .header-wa span { display: none; }
  .header-wa { padding: 9px 11px; }
}

.lf-whatsapp {
  display: flex; align-items: center; gap: 13px;
  background: #25d366; color: var(--white);
  border-radius: 14px; padding: 13px 16px; margin-bottom: 14px;
  line-height: 1.3;
  box-shadow: 0 10px 24px -8px rgba(37,211,102,.55);
  transition: background .3s, transform .25s;
}
.lf-whatsapp svg { width: 30px; height: 30px; fill: currentColor; flex-shrink: 0; }
.lf-whatsapp b { display: block; font-size: 15.5px; font-weight: 800; }
.lf-whatsapp small { display: block; font-size: 12px; font-weight: 600; opacity: .92; }
.lf-whatsapp:hover { background: #1fb959; transform: translateY(-1px); color: var(--white); }
.lf-or {
  display: flex; align-items: center; gap: 10px; margin-bottom: 12px;
  color: var(--muted); font-size: 11px; font-weight: 700;
  letter-spacing: .09em; text-transform: uppercase;
}
.lf-or::before, .lf-or::after { content: ''; flex: 1; height: 1px; background: rgba(2,22,18,.12); }
.header-wa:focus-visible, .lf-whatsapp:focus-visible { outline: 2px solid var(--deep); outline-offset: 2px; border-radius: 14px; }

/* ============================================================
   v=20260811b — FIX: [hidden] muss IMMER gewinnen.
   .lf-success hat display:flex — Author-CSS schlägt den Browser-
   Default von [hidden], dadurch war „Anfrage versendet!" seit dem
   ersten Build auf jedem frischen Seitenaufruf sichtbar (fiel nur
   nicht auf, weil die Box ganz unten in der Karte stand).
   ============================================================ */
[hidden] { display: none !important; }
