/* ===================================================================
   PAUSCHENWEIN BAU — Stylesheet (Layout & Scroll-Animation im Stil
   von findrealestate.com, CI der Pauschenwein Gruppe beibehalten:
   Poppins · Dark/Sand/White · dunkle Navbar · Gruppen-Footer)
   =================================================================== */

:root {
  --color-dark: #0e1213;
  --color-dark-2: #1a2324;
  --color-white: #ffffff;
  --color-sand: #f5f5f5;
  --color-sand-dark: #e8e8e8;
  --color-muted: #666666;
  --color-secondary: #758696;
  --color-border: rgba(255, 255, 255, 0.12);
  --font: 'Poppins', sans-serif;
  --nav-h: 80px;
  --radius: 0px;
  --transition: 0.3s ease;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; -webkit-font-smoothing: antialiased; }
/* Lenis */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  font-family: var(--font);
  background: var(--color-white);
  color: var(--color-dark);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── UTILITY ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-label {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--color-muted); margin-bottom: 16px;
}
.section-label.light { color: rgba(255, 255, 255, 0.5); }
.section-title {
  font-size: clamp(2rem, 4.4vw, 3.2rem); font-weight: 700; line-height: 1.12; letter-spacing: -0.02em;
}
.section-title span { color: var(--color-muted); }
.section-body { font-size: 1.05rem; line-height: 1.7; color: var(--color-muted); max-width: 640px; }
.section-body.light { color: rgba(255, 255, 255, 0.65); }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 0.85rem 1.9rem; font-family: var(--font); font-size: 0.82rem;
  font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  border: 1px solid var(--color-dark); background: var(--color-dark); color: var(--color-white);
  cursor: pointer; transition: var(--transition); border-radius: 999px;
}
.btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; transition: transform 0.3s var(--ease-out); }
.btn:hover { background: transparent; color: var(--color-dark); }
.btn:hover svg { transform: translateX(5px); }
.btn.btn-light { border-color: var(--color-white); background: var(--color-white); color: var(--color-dark); }
.btn.btn-light:hover { background: transparent; color: var(--color-white); }
.btn.btn-outline { background: transparent; color: var(--color-white); border-color: rgba(255, 255, 255, 0.5); }
.btn.btn-outline:hover { background: var(--color-white); color: var(--color-dark); border-color: var(--color-white); }

/* ===================================================================
   SCROLL-ANIMATIONS (Reveal-System im findrealestate-Stil)
   =================================================================== */
/* 1 · Masked line/word reveal — slides up from below an overflow-hidden mask */
.reveal-line { display: block; overflow: hidden; }
.reveal-line > span {
  display: block; transform: translateY(115%);
  transition: transform 0.9s var(--ease-out);
  will-change: transform;
}
.reveal-line.in > span { transform: translateY(0); }
/* stagger for multi-line headings */
.reveal-line:nth-child(2) > span { transition-delay: 0.08s; }
.reveal-line:nth-child(3) > span { transition-delay: 0.16s; }
.reveal-line:nth-child(4) > span { transition-delay: 0.24s; }

/* 2 · Fade-up reveal */
.reveal {
  opacity: 0; transform: translateY(42px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }
.reveal[data-delay="5"] { transition-delay: 0.5s; }

/* 3 · Image clip reveal + slow zoom */
.img-reveal { overflow: hidden; }
.img-reveal img { transform: scale(1.18); transition: transform 1.3s var(--ease-out); will-change: transform; }
.img-reveal.in img { transform: scale(1); }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-line > span, .img-reveal img { transition: none !important; transform: none !important; opacity: 1 !important; }
}

/* ── NAVBAR ── (CI beibehalten: dunkel) */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.4s var(--ease-out), box-shadow var(--transition), border-color 0.4s ease;
}
.navbar.scrolled {
  background: var(--color-dark);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.3);
}
.navbar .container { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-logo { flex-shrink: 0; display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 50px; width: auto; }
.nav-menu { display: flex; align-items: center; gap: 28px; }
.nav-menu a {
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.78); transition: color var(--transition); white-space: nowrap;
}
.nav-menu a:hover { color: var(--color-white); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0.6rem 1.4rem; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  background: var(--color-white); color: var(--color-dark); border-radius: 999px;
  transition: var(--transition); border: 1px solid var(--color-white);
}
.nav-cta:hover { background: transparent; color: var(--color-white); }
.nav-desktop { display: flex; align-items: center; gap: 28px; }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--color-white); transition: var(--transition); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU ── */
@keyframes menuSlideIn { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes menuItemFadeIn { from { opacity: 0; transform: translateX(-8px); } to { opacity: 1; transform: translateX(0); } }
.mobile-menu {
  position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--color-dark); z-index: 99; padding: 40px 24px;
  flex-direction: column; overflow-y: auto; display: flex;
  visibility: hidden; opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.mobile-menu.open { visibility: visible; opacity: 1; pointer-events: auto; animation: menuSlideIn 0.28s var(--ease-out) both; }
.mobile-menu.open .mobile-menu-links a { animation: menuItemFadeIn 0.3s ease both; }
.mobile-menu.open .mobile-menu-links a:nth-child(1) { animation-delay: 0.05s; }
.mobile-menu.open .mobile-menu-links a:nth-child(2) { animation-delay: 0.10s; }
.mobile-menu.open .mobile-menu-links a:nth-child(3) { animation-delay: 0.15s; }
.mobile-menu.open .mobile-menu-links a:nth-child(4) { animation-delay: 0.18s; }
.mobile-menu.open .mobile-menu-links a:nth-child(5) { animation-delay: 0.21s; }
.mobile-menu.open .mobile-menu-links a:nth-child(6) { animation-delay: 0.24s; }
.mobile-menu-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 8px; }
.mobile-menu-links { display: flex; flex-direction: column; gap: 0; margin-bottom: 40px; }
.mobile-menu-links a {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 1.1rem; font-weight: 500; color: rgba(255, 255, 255, 0.8);
  padding: 16px 0; border-bottom: 1px solid var(--color-border); transition: color var(--transition);
}
.mobile-menu-links a:hover { color: var(--color-white); }
.mobile-menu-links a svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; opacity: 0.4; flex-shrink: 0; }
.mobile-menu-cta { margin-top: auto; }
.mobile-menu-cta .btn { width: 100%; justify-content: center; font-size: 0.85rem; padding: 1rem; }

/* ===================================================================
   HERO · pinned/parallax scene (findrealestate-Mechanik)
   =================================================================== */
#hero { position: relative; height: 230vh; background: var(--color-dark); }
.hero-sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; }
/* sky gradient backdrop: hellblau oben -> warm/orange unten (wie Referenz) */
.hero-sky {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, #a9cfe8 0%, #cfe1ea 42%, #f3d9b6 78%, #f7c596 100%);
}
.hero-sky::before { /* echtes Himmel-Foto dezent darübergelegt (reduzierte Deckkraft) */
  content: ''; position: absolute; inset: 0;
  background: url('assets/hero-sky.jpg') center top / cover no-repeat;
  opacity: 0.32; mix-blend-mode: soft-light;
}
.hero-sky::after { /* sanfter Aufhellung unten, damit Headline & Gebäude sauber sitzen */
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0) 45%, rgba(250,244,236,0.55) 100%);
}
/* building image that rises from bottom as you scroll */
.hero-building {
  /* darf auf breiten Screens bewusst über die Standard-Boxbreite hinaus –
     skaliert mit dem Viewport, gedeckelt damit es nicht absurd groß wird.
     z-index 4 => liegt VOR den Textelementen (hero-content = 3), wie Referenz. */
  position: absolute; left: 50%; bottom: 0;
  width: clamp(940px, 94vw, 2200px); z-index: 4;
  transform: translate(-50%, 0); will-change: transform;
}
.hero-building img {
  width: 100%; height: auto; display: block;
  /* freigestelltes PNG (transparenter Himmel) – nur die obere Schnittkante (Dächer/Bäume)
     ganz dezent ausblenden, damit der Übergang in den Himmel weich wirkt */
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 2.5%, #000 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 2.5%, #000 100%);
}
/* drifting clouds (echte freigestellte PNGs) */
.hero-cloud { position: absolute; will-change: transform; pointer-events: none; z-index: 1; }
.hero-cloud img { width: 100%; height: auto; display: block; }
/* gestaffelte Tiefe: vordere Wolken größer & kräftiger, hintere kleiner & blasser
   + generell dezenter (reduzierte Deckkraft, wie Referenz) */
.hero-cloud.c1 { top: 12%;  left: -10%; width: 46%; opacity: 0.82; }
.hero-cloud.c2 { top: 30%;  right: -12%; width: 40%; opacity: 0.78; }
.hero-cloud.c3 { top: 4%;   left: 40%;  width: 30%; opacity: 0.68;  filter: blur(1px); }
.hero-cloud.c4 { top: 52%;  left: 6%;   width: 26%; opacity: 0.74; }
.hero-cloud.c5 { top: 2%;   right: 22%; width: 22%; opacity: 0.56;  filter: blur(2px); }
/* zwei Wolken im Vordergrund: liegen ÜBER der Headline (z-index > .hero-content)
   und verdecken sie leicht – wie in der Referenz */
.hero-cloud.c1 { z-index: 5; opacity: 0.68; }
.hero-cloud.c4 { z-index: 5; top: 40%; left: -4%; width: 34%; opacity: 0.64; }

.hero-content {
  position: absolute; inset: 0; z-index: 3;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding-top: 22vh; will-change: transform, opacity;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(14,18,19,0.65); margin-bottom: 22px;
}
.hero-eyebrow::before, .hero-eyebrow::after { content: ''; width: 26px; height: 1px; background: rgba(14,18,19,0.4); }
.hero-title {
  font-size: clamp(2rem, 6.4vw, 5.8rem); font-weight: 800; color: var(--color-dark);
  line-height: 1.0; letter-spacing: -0.03em; margin: 0 0 22px; max-width: 20ch;
  padding: 0 5vw; box-sizing: border-box;
}
.hero-title span { color: var(--color-dark); }
/* kein nowrap -> Zeilen können bei schmalen Viewports sauber umbrechen statt rechts abzuschneiden */
.hero-title .reveal-line { padding-bottom: 0.14em; text-wrap: balance; }
.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.25rem); color: rgba(14,18,19,0.7);
  max-width: 600px; line-height: 1.6; margin: 0 auto 34px; font-weight: 500;
}
.hero-scroll-hint {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 4;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(14,18,19,0.5); animation: bounce 2s infinite;
}
.hero-scroll-hint svg { width: 18px; height: 18px; stroke: rgba(14,18,19,0.5); fill: none; stroke-width: 1.6; }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* trust strip directly under hero */
.hero-trust-band { background: var(--color-dark); padding: 30px 0; position: relative; z-index: 5; }
.hero-trust-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 26px 44px; }
.hero-trust-row .label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.hero-trust-row img { height: 64px; width: auto; object-fit: contain; opacity: 0.9; transition: opacity 0.25s, transform 0.25s; }
.hero-trust-row img:hover { opacity: 1; transform: translateY(-3px); }

/* ===================================================================
   WHY-US / GU-PLUS  (großes Statement + Grid)
   =================================================================== */
#gu-plus { background: var(--color-sand); padding: 130px 0; }
.statement {
  font-size: clamp(1.6rem, 3.4vw, 2.8rem); font-weight: 600; line-height: 1.25;
  letter-spacing: -0.02em; max-width: 18ch; margin-bottom: 16px;
}
.statement .mute { color: var(--color-muted); }
.guplus-head { max-width: 760px; margin: 0 auto 64px; text-align: center; }
.guplus-plus-mark {
  display: inline-block; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--color-dark); border: 1px solid var(--color-dark);
  padding: 6px 16px; margin-bottom: 26px; border-radius: 999px;
}
.guplus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--color-sand-dark); }
.guplus-item { background: var(--color-dark); padding: 44px 38px; display: flex; flex-direction: column; gap: 16px; transition: background var(--transition); }
.guplus-item:hover { background: var(--color-dark-2); }
.guplus-item-icon { width: 46px; height: 46px; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.guplus-item-icon svg { width: 22px; height: 22px; stroke: rgba(255,255,255,0.75); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.guplus-item-title { font-size: 1.1rem; font-weight: 700; color: var(--color-white); line-height: 1.25; }
.guplus-item-body { font-size: 0.85rem; line-height: 1.6; color: rgba(255,255,255,0.5); }

/* ===================================================================
   STATS · animierte Counter (findrealestate "numbers" feel)
   =================================================================== */
#stats { background: var(--color-dark); padding: 90px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.stat { padding: 30px 24px; text-align: center; }
.stat .num { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 800; color: var(--color-white); letter-spacing: -0.03em; line-height: 1; }
.stat .num .suffix { color: rgba(255,255,255,0.4); }
.stat .cap { display: block; margin-top: 12px; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.45); }

/* ===================================================================
   PROCESS · 3 große Schritte mit Sticky-Pinning
   =================================================================== */
#ablauf { background: var(--color-white); padding: 130px 0; }
.ablauf-intro { max-width: 720px; margin-bottom: 80px; }
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: grid; grid-template-columns: 120px 1fr 1fr; gap: 48px; align-items: center;
  padding: 56px 0; border-top: 1px solid var(--color-sand-dark);
}
.step:last-child { border-bottom: 1px solid var(--color-sand-dark); }
.step-num { font-size: clamp(2.6rem, 5vw, 4rem); font-weight: 800; color: var(--color-sand-dark); letter-spacing: -0.03em; line-height: 1; }
.step:hover .step-num { color: var(--color-dark); transition: color 0.4s var(--ease-out); }
.step-title { font-size: clamp(1.4rem, 2.6vw, 2rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.01em; }
.step-body { font-size: 0.98rem; line-height: 1.7; color: var(--color-muted); }

/* ===================================================================
   SERVICES · große Bildkarten mit Hover-Zoom + Reveal
   =================================================================== */
#leistungen { background: var(--color-sand); padding: 130px 0; }
.leistungen-header { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 60px; flex-wrap: wrap; }
.leistungen-header .section-title { max-width: 620px; }
.leistungen-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.leistung-card {
  position: relative; display: flex; flex-direction: column; background: var(--color-white);
  overflow: hidden; transition: transform var(--transition), box-shadow var(--transition);
}
.leistung-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(0,0,0,0.12); }
.leistung-card-img { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--color-dark); }
.leistung-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease-out); }
.leistung-card:hover .leistung-card-img img { transform: scale(1.07); }
.leistung-card-num { position: absolute; top: 16px; left: 16px; z-index: 2; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; color: var(--color-white); background: rgba(14,18,19,0.86); padding: 5px 11px; border-radius: 999px; }
.leistung-card-body { padding: 30px 30px 32px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.leistung-card-title { font-size: 1.2rem; font-weight: 700; line-height: 1.25; }
.leistung-card-desc { font-size: 0.86rem; color: var(--color-muted); line-height: 1.6; flex: 1; }
.leistung-card-link { display: inline-flex; align-items: center; gap: 8px; font-size: 0.74rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-dark); margin-top: 4px; }
.leistung-card-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; transition: transform 0.2s; }
.leistung-card:hover .leistung-card-link svg { transform: translateX(4px); }

/* ===================================================================
   PROJEKTTYPEN · große Split-Bildflächen mit Parallax
   =================================================================== */
#projekttypen { background: var(--color-white); padding: 130px 0; }
.typen-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 56px; }
.typ-card { position: relative; min-height: 440px; overflow: hidden; display: flex; align-items: flex-end; }
.typ-card-bg { position: absolute; inset: -10% 0; background-size: cover; background-position: center; will-change: transform; }
.typ-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(14,18,19,0.92) 0%, rgba(14,18,19,0.3) 55%, rgba(14,18,19,0.08) 100%); }
.typ-card-content { position: relative; z-index: 1; padding: 44px; }
.typ-card-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-bottom: 10px; }
.typ-card-title { font-size: 1.6rem; font-weight: 700; color: var(--color-white); line-height: 1.2; margin-bottom: 12px; }
.typ-card-desc { font-size: 0.9rem; color: rgba(255,255,255,0.75); line-height: 1.6; max-width: 440px; }

/* ===================================================================
   TESTIMONIALS / STIMMEN · Swiper-Carousel (findrealestate-Mechanik)
   =================================================================== */
#stimmen { background: var(--color-dark); padding: 130px 0; overflow: hidden; }
#stimmen .section-title { color: var(--color-white); }
.stimmen-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 56px; flex-wrap: wrap; }
.swiper { overflow: visible; }
.stimme-card { background: rgba(255,255,255,0.04); border: 1px solid var(--color-border); padding: 44px 40px; min-height: 320px; display: flex; flex-direction: column; height: auto; }
.stimme-quote-mark { font-size: 3.5rem; line-height: 0.6; font-weight: 800; color: rgba(255,255,255,0.18); margin-bottom: 20px; }
.stimme-text { font-size: 1.05rem; line-height: 1.6; color: rgba(255,255,255,0.85); font-weight: 500; flex: 1; }
.stimme-author { margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--color-border); }
.stimme-author strong { display: block; color: var(--color-white); font-size: 0.95rem; font-weight: 600; }
.stimme-author span { font-size: 0.78rem; color: rgba(255,255,255,0.45); letter-spacing: 0.04em; }
.swiper-controls { display: flex; gap: 12px; }
.swiper-btn { width: 52px; height: 52px; border-radius: 50%; border: 1px solid var(--color-border); background: transparent; color: var(--color-white); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.swiper-btn:hover { background: var(--color-white); color: var(--color-dark); border-color: var(--color-white); }
.swiper-btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ===================================================================
   REFERENZEN · alternierende große Projektzeilen mit Bild-Reveal
   =================================================================== */
#referenzen { background: var(--color-white); padding: 130px 0; }
.ref-intro { margin-bottom: 72px; max-width: 720px; }
.ref-row { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-bottom: 110px; }
.ref-row:last-child { margin-bottom: 0; }
.ref-row:nth-child(even) .ref-row-media { order: 2; }
.ref-row-media { aspect-ratio: 4 / 3; }
.ref-row-media img { width: 100%; height: 100%; object-fit: cover; }
.ref-tag { display: inline-block; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-muted); background: var(--color-sand); padding: 6px 13px; margin-bottom: 18px; border-radius: 999px; }
.ref-name { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; line-height: 1.18; letter-spacing: -0.01em; margin-bottom: 16px; }
.ref-desc { font-size: 1rem; color: var(--color-muted); line-height: 1.7; max-width: 480px; }

/* ===================================================================
   FAQ
   =================================================================== */
#faq { background: var(--color-sand); padding: 130px 0; }
.faq-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--color-sand-dark); }
.faq-q { width: 100%; background: none; border: none; cursor: pointer; font-family: var(--font); display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 28px 0; text-align: left; font-size: 1.08rem; font-weight: 600; color: var(--color-dark); }
.faq-q-icon { flex-shrink: 0; width: 22px; height: 22px; position: relative; }
.faq-q-icon::before, .faq-q-icon::after { content: ''; position: absolute; background: var(--color-dark); transition: transform var(--transition); }
.faq-q-icon::before { top: 50%; left: 0; right: 0; height: 2px; transform: translateY(-50%); }
.faq-q-icon::after { left: 50%; top: 0; bottom: 0; width: 2px; transform: translateX(-50%); }
.faq-item.open .faq-q-icon::after { transform: translateX(-50%) scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease-out); }
.faq-a-inner { padding: 0 0 28px; font-size: 0.96rem; line-height: 1.7; color: var(--color-muted); max-width: 700px; }

/* ===================================================================
   OUTRO / KONTAKT CTA  (findrealestate "outro" Stil)
   =================================================================== */
#kontakt { background: var(--color-dark); padding: 130px 0; }
#kontakt .section-title { color: var(--color-white); margin-bottom: 16px; }
.kontakt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-top: 56px; align-items: start; }
.kontakt-info .section-body { margin-bottom: 40px; }
.kontakt-items { display: flex; flex-direction: column; gap: 20px; }
.kontakt-item { display: flex; gap: 16px; align-items: flex-start; }
.kontakt-item-icon { width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.kontakt-item-icon svg { width: 16px; height: 16px; stroke: rgba(255,255,255,0.6); fill: none; stroke-width: 1.5; }
.kontakt-item-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 4px; }
.kontakt-item-value { font-size: 0.92rem; color: rgba(255,255,255,0.8); line-height: 1.5; }
.kontakt-item-value a { color: rgba(255,255,255,0.8); }
.kontakt-item-value a:hover { color: var(--color-white); }
.kontakt-form { background: rgba(255,255,255,0.04); padding: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form-group label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.form-group input, .form-group select, .form-group textarea {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  color: var(--color-white); padding: 12px 16px; font-family: var(--font); font-size: 0.9rem;
  outline: none; transition: border-color var(--transition);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: rgba(255,255,255,0.4); }
.form-group select option { background: var(--color-dark); }
.form-group textarea { resize: vertical; min-height: 110px; }

/* ===================================================================
   GROUP FOOTER (unverändert übernommen)
   =================================================================== */
.pwfooter { background: #080d0e; color: rgba(255,255,255,0.6); position: relative; }
.pwfooter a { transition: color var(--transition); }
.pw-group-link { display: inline-flex; align-items: center; gap: 9px; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.02em; color: rgba(255,255,255,0.85); border: 1px solid rgba(255,255,255,0.18); padding: 9px 16px; border-radius: 999px; }
.pw-group-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; transition: transform 0.25s; }
.pw-group-link:hover { color: var(--color-white); border-color: rgba(255,255,255,0.5); }
.pw-group-link:hover svg { transform: translateX(3px); }
.pw-legal { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.pw-legal a { font-size: 0.78rem; color: rgba(255,255,255,0.45); }
.pw-legal a:hover { color: var(--color-white); }
.pw-social { display: flex; align-items: center; gap: 12px; }
.pw-social a { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,0.16); border-radius: 50%; color: rgba(255,255,255,0.6); }
.pw-social a:hover { color: var(--color-dark); background: var(--color-white); border-color: var(--color-white); }
.pw-social svg { width: 16px; height: 16px; fill: currentColor; }
.pw-credit { display: inline-flex; align-items: center; gap: 10px; font-size: 0.76rem; color: rgba(255,255,255,0.4); white-space: nowrap; }
.pw-credit img { height: 22px; width: auto; opacity: 0.7; transition: opacity var(--transition); display: inline-block; }
.pw-credit a:hover img { opacity: 1; }
.pw-col h4 { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 18px; }
.pw-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pw-col ul li a { font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.pw-col ul li a:hover { color: var(--color-white); }
/* ── FOOTER im findrealestate.com-Stil (Wortmarke "PAUSCHENWEIN") ── */
.pwfooter--fre { padding: 90px 0 34px; border-top: 1px solid rgba(255,255,255,0.06); overflow: hidden; }

/* Reihe 1: Newsletter | Navigation | Social */
.pwfooter--fre .fre-top { display: grid; grid-template-columns: 1.6fr 1fr 0.7fr; gap: 56px; align-items: start; }
.pwfooter--fre .fre-news h3 { font-size: clamp(1.4rem, 2.2vw, 1.9rem); font-weight: 600; color: var(--color-white); letter-spacing: -0.01em; margin-bottom: 30px; }
.pwfooter--fre .fre-news-form { display: flex; align-items: center; gap: 16px; max-width: 420px; border-bottom: 1px solid rgba(255,255,255,0.3); padding-bottom: 12px; }
.pwfooter--fre .fre-news-form input { flex: 1; background: none; border: none; outline: none; color: var(--color-white); font-family: var(--font); font-size: 0.95rem; }
.pwfooter--fre .fre-news-form input::placeholder { color: rgba(255,255,255,0.4); }
.pwfooter--fre .fre-news-form button { background: none; border: none; cursor: pointer; color: var(--color-white); display: flex; padding: 0; }
.pwfooter--fre .fre-news-form button svg { width: 26px; height: 26px; stroke: currentColor; fill: none; stroke-width: 1.6; transition: transform 0.25s; }
.pwfooter--fre .fre-news-form button:hover svg { transform: translateX(4px); }

.pwfooter--fre .fre-nav { display: flex; flex-direction: column; gap: 12px; }
.pwfooter--fre .fre-nav a { font-size: 1.35rem; font-weight: 500; color: var(--color-white); letter-spacing: -0.01em; }
.pwfooter--fre .fre-nav a:hover { color: rgba(255,255,255,0.55); }
.pwfooter--fre .fre-social-col { display: flex; flex-direction: column; gap: 12px; }
.pwfooter--fre .fre-social-col a { font-size: 0.92rem; color: rgba(255,255,255,0.6); }
.pwfooter--fre .fre-social-col a:hover { color: var(--color-white); }

/* Reihe 2: Kontaktblöcke */
.pwfooter--fre .fre-contact { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 64px; max-width: 760px; }
.pwfooter--fre .fre-label { display: block; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 12px; }
.pwfooter--fre .fre-contact-item a { font-size: 0.92rem; color: rgba(255,255,255,0.8); line-height: 1.6; }
.pwfooter--fre .fre-contact-item a:hover { color: var(--color-white); }

/* Reihe 3: Riesen-Wortmarke (Poppins, wie "FIND" im Original) */
.pwfooter--fre .fre-wordmark { font-family: var(--font); font-weight: 800; color: var(--color-white); font-size: min(8.7rem, 11.5vw); line-height: 0.82; letter-spacing: -0.035em; margin: 56px 0 40px; white-space: nowrap; }

/* Reihe 4: Rechtliches */
.pwfooter--fre .fre-bottom { padding-top: 26px; border-top: 1px solid rgba(255,255,255,0.07); display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 24px; }
.pwfooter--fre .fre-legal { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.pwfooter--fre .fre-legal a { font-size: 0.78rem; color: rgba(255,255,255,0.45); }
.pwfooter--fre .fre-legal a:hover { color: var(--color-white); }
.pwfooter--fre .fre-name { font-size: 0.8rem; color: rgba(255,255,255,0.6); white-space: nowrap; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .nav-desktop { display: none; }
  .burger { display: flex; }
  .navbar { background: var(--color-dark); border-bottom: 1px solid var(--color-border); }
  .guplus-grid { grid-template-columns: repeat(2, 1fr); }
  .leistungen-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .pwfooter--fre .fre-top { grid-template-columns: 1.4fr 1fr; gap: 40px; }
  .pwfooter--fre .fre-social-col { grid-column: 2; margin-top: 18px; }
}
@media (max-width: 768px) {
  :root { --nav-h: 68px; }
  #hero { height: 180vh; }
  .hero-building { width: 116vw; }
  .hero-title { font-size: clamp(1.9rem, 9.5vw, 3.4rem); max-width: 100%; padding: 0 6vw; }
  .leistungen-grid { grid-template-columns: 1fr; }
  .guplus-grid { grid-template-columns: 1fr; }
  .typen-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .step { grid-template-columns: 1fr; gap: 16px; padding: 40px 0; }
  .ref-row { grid-template-columns: 1fr; gap: 28px; margin-bottom: 70px; }
  .ref-row:nth-child(even) .ref-row-media { order: 0; }
  .kontakt-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .pwfooter--fre { padding: 64px 0 28px; }
  .pwfooter--fre .fre-top { grid-template-columns: 1fr; gap: 40px; }
  .pwfooter--fre .fre-social-col { grid-column: 1; flex-direction: row; gap: 20px; margin-top: 0; }
  .pwfooter--fre .fre-contact { grid-template-columns: 1fr; gap: 26px; margin-top: 48px; }
  .pwfooter--fre .fre-wordmark { margin: 44px 0 32px; }
  .pwfooter--fre .fre-bottom { grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 18px; }
  .pwfooter--fre .fre-legal { justify-content: center; }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .btn { justify-content: center; }
}
