﻿/*
Theme Name: Wohnreal Child
Theme URI: https://wohnreal.net
Description: Child-Theme von Hello Elementor für Wohnreal – Prototyp-Design als Code, inkl. JSON-LD-Schema, Google-Bewertungen und DSGVO-2-Klick-Embed (BOTTIMMO). CI: Blau #0B4A7B, Rot #E11F26.
Author: Wohnreal
Template: hello-elementor
Version: 1.1.0
Text Domain: wohnreal-child
*/
/* ==========================================================================
   Wohnreal – Design System (Rebuild Prototype)
   CI: Primärblau #0B4A7B · Signalrot #E11F26 · Text #3F4448
   Fonts: Montserrat (Headlines) · Be Vietnam Pro (Fließtext)
   ========================================================================== */

:root {
  /* Brand */
  --blue:        #0B4A7B;
  --blue-dark:   #08395f;
  --blue-light:  #BDE4F9;
  --blue-tint:   #EAF4FB;
  --red:         #E11F26;
  --red-dark:    #c4151c;

  /* Neutrals */
  --ink:         #1f2933;
  --text:        #3F4448;
  --muted:       #838282;
  --line:        #e6e9ec;
  --bg:          #ffffff;
  --bg-soft:     #F7F7F7;
  --bg-blue:     #0B4A7B;

  /* System */
  --radius:      14px;
  --radius-sm:   10px;
  --shadow:      0 1px 2px rgba(16,33,52,.04), 0 10px 30px rgba(16,33,52,.07);
  --shadow-lg:   0 20px 50px rgba(11,74,123,.18);
  --container:   1200px;
  --ease:        cubic-bezier(.22,.61,.36,1);

  --font-head:   'Montserrat', system-ui, sans-serif;
  --font-body:   'Be Vietnam Pro', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

/* Reset ------------------------------------------------------------------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1,h2,h3,h4 { font-family: var(--font-head); color: var(--blue); line-height: 1.15; font-weight: 700; letter-spacing: -.01em; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }

/* Utility / section rhythm ------------------------------------------------ */
.section { padding: 92px 0; }
.section--soft { background: var(--bg-soft); }
.section--blue { background: var(--blue); color: #fff; }
.section--blue h1,.section--blue h2,.section--blue h3 { color: #fff; }
.eyebrow {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 14px;
  display: inline-block;
}
.section--blue .eyebrow { color: var(--blue-light); }
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 42px); }
.section-head p { color: var(--muted); margin-top: 16px; font-size: 18px; }
.section--blue .section-head p { color: #cfe2f1; }

/* Buttons ----------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: 15.5px;
  padding: 14px 28px; border-radius: 999px; border: 2px solid transparent;
  transition: transform .2s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--red); color: #fff; box-shadow: 0 8px 22px rgba(225,31,38,.28); }
.btn--primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(225,31,38,.36); }
.btn--blue { background: var(--blue); color: #fff; }
.btn--blue:hover { background: var(--blue-dark); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--blue); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--blue); background: var(--blue-tint); }
.btn--white { background:#fff; color: var(--blue); }
.btn--white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--lg { padding: 17px 36px; font-size: 17px; }

/* Header ------------------------------------------------------------------ */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.9);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
  padding: 0; /* Hello-Elementor-Default-Padding entfernen (weißer Streifen über der Topbar) */
}
.topbar { background: var(--blue); color: #fff; font-size: 13.5px; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; height: 38px; }
.topbar a { color: #fff; opacity: .92; display: inline-flex; align-items: center; gap: 7px; }
.topbar a:hover { opacity: 1; }
.topbar svg { width: 14px; height: 14px; }
.topbar .topbar-meta { display: flex; gap: 22px; }
.nav { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.brand img { height: 38px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; padding: 0; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  font-family: var(--font-head); font-weight: 500; font-size: 15px; color: var(--ink);
  padding: 10px 15px; border-radius: 8px; display: inline-flex; align-items: center; gap: 6px;
  transition: color .18s, background .18s;
}
.nav-links > li > a:hover,
.nav-links > li.active > a { color: var(--blue); background: var(--blue-tint); }
.nav-links .caret { width: 10px; height: 10px; opacity: .55; }
.submenu {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 240px;
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  box-shadow: var(--shadow); padding: 8px; list-style: none;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all .2s var(--ease);
}
.nav-links > li:hover .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.submenu a { display: block; padding: 10px 14px; border-radius: 8px; font-size: 14.5px; color: var(--text); }
.submenu a:hover { background: var(--blue-tint); color: var(--blue); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.burger { display: none; background: none; border: 0; padding: 8px; color: var(--blue); }
.burger svg { width: 26px; height: 26px; }

/* Hero -------------------------------------------------------------------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(120% 120% at 85% 0%, rgba(189,228,249,.55) 0%, rgba(189,228,249,0) 55%),
    linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
  padding: 74px 0 84px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--line); color: var(--blue);
  font-family: var(--font-head); font-weight: 600; font-size: 13px;
  padding: 7px 15px; border-radius: 999px; box-shadow: var(--shadow);
}
.hero-eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: #21a45d; }
.hero h1 { font-size: clamp(34px, 4.6vw, 56px); margin: 22px 0 0; }
.hero h1 .accent { color: var(--red); }
.hero .lead { font-size: 19px; color: var(--text); margin-top: 20px; max-width: 520px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-trust { display: flex; gap: 28px; margin-top: 38px; flex-wrap: wrap; }
.hero-trust .stat .num { font-family: var(--font-head); font-weight: 700; font-size: 26px; color: var(--blue); }
.hero-trust .stat .lbl { font-size: 13.5px; color: var(--muted); }

/* Valuation iframe card --------------------------------------------------- */
.valuation-card {
  background: #fff; border-radius: 20px; box-shadow: var(--shadow-lg);
  border: 1px solid var(--line); overflow: hidden;
}
.valuation-card .vc-head {
  background: var(--blue); color: #fff; padding: 18px 24px;
  display: flex; align-items: center; gap: 12px;
}
.valuation-card .vc-head svg { width: 22px; height: 22px; }
.valuation-card .vc-head h3 { color: #fff; font-size: 18px; }
.valuation-card .vc-head p { font-size: 13px; color: #cfe2f1; margin-top: 2px; }
.iframe-slot {
  aspect-ratio: 4 / 3.4; min-height: 380px;
  display: flex; align-items: center; justify-content: center;
  background:
    repeating-linear-gradient(45deg, #fafcfe 0 14px, #f2f7fb 14px 28px);
  position: relative;
}
.iframe-slot .placeholder { text-align: center; padding: 30px; max-width: 360px; }
.iframe-slot .placeholder .ic {
  width: 64px; height: 64px; border-radius: 16px; background: var(--blue-tint);
  display: grid; place-items: center; margin: 0 auto 16px; color: var(--blue);
}
.iframe-slot .placeholder .ic svg { width: 32px; height: 32px; }
.iframe-slot .placeholder h4 { font-family: var(--font-head); color: var(--blue); font-size: 17px; }
.iframe-slot .placeholder p { font-size: 14px; color: var(--muted); margin-top: 8px; }
.iframe-slot code { background: #eef3f7; padding: 2px 7px; border-radius: 6px; font-size: 12.5px; color: var(--blue); }
.iframe-slot iframe { width: 100%; height: 100%; border: 0; position: absolute; inset: 0; }

/* Why / feature cards ----------------------------------------------------- */
.cards-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.feature {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 36px 30px; transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .2s;
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.feature .ficon {
  width: 58px; height: 58px; border-radius: 14px; display: grid; place-items: center;
  background: var(--blue-tint); color: var(--blue); margin-bottom: 20px;
}
.feature .ficon svg { width: 28px; height: 28px; }
.feature h3 { font-size: 20px; margin-bottom: 10px; }
.feature p { color: var(--muted); font-size: 15.5px; }

/* Stats band -------------------------------------------------------------- */
.stats-band { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; text-align: center; }
.stats-band .s .n { font-family: var(--font-head); font-weight: 700; font-size: clamp(30px,4vw,46px); color: #fff; }
.stats-band .s .l { color: #bcd6e9; font-size: 14px; text-transform: uppercase; letter-spacing: .08em; }

/* Property cards ---------------------------------------------------------- */
.toolbar {
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between;
  margin-bottom: 34px;
}
.filters { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  font-family: var(--font-head); font-weight: 600; font-size: 14px;
  padding: 9px 18px; border-radius: 999px; border: 1.5px solid var(--line);
  background: #fff; color: var(--text); transition: all .18s;
}
.chip:hover { border-color: var(--blue); color: var(--blue); }
.chip.active { background: var(--blue); border-color: var(--blue); color: #fff; }
.result-count { color: var(--muted); font-size: 14.5px; }

.grid-props { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.prop {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .2s;
}
.prop:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.prop-media { position: relative; aspect-ratio: 16/11; overflow: hidden; }
.prop-media .ph { width: 100%; height: 100%; }
.prop-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.prop:hover .prop-media img { transform: scale(1.06); }
.prop-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-family: var(--font-head); font-weight: 700; font-size: 11.5px; letter-spacing: .05em;
  text-transform: uppercase; padding: 6px 12px; border-radius: 999px; color: #fff;
}
.prop-badge.kauf { background: var(--blue); }
.prop-badge.miete { background: #1a9e6a; }
.prop-fav {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.92);
  display: grid; place-items: center; color: var(--blue); border: 0; padding: 0;
}
.prop-fav svg { width: 18px; height: 18px; }
.prop-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.prop-type { font-size: 13px; color: var(--red); font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.prop h3 { font-size: 19px; margin: 8px 0 6px; color: var(--ink); line-height: 1.25; }
.prop .loc { color: var(--muted); font-size: 14.5px; display: flex; align-items: center; gap: 6px; }
.prop .loc svg { width: 15px; height: 15px; color: var(--blue); }
.prop-specs { display: flex; gap: 18px; margin: 18px 0; padding: 16px 0; border-block: 1px solid var(--line); }
.prop-specs .sp { font-size: 13.5px; color: var(--text); display: flex; align-items: center; gap: 7px; }
.prop-specs .sp svg { width: 17px; height: 17px; color: var(--blue); }
.prop-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.prop-price { font-family: var(--font-head); font-weight: 700; font-size: 22px; color: var(--blue); }
.prop-price small { display: block; font-weight: 500; font-size: 12px; color: var(--muted); letter-spacing: .02em; }
.prop-link { color: var(--blue); font-family: var(--font-head); font-weight: 600; font-size: 14.5px; display: inline-flex; align-items: center; gap: 6px; }
.prop-link svg { width: 16px; height: 16px; transition: transform .2s; }
.prop:hover .prop-link svg { transform: translateX(4px); }

/* SVG placeholder gradients for property media */
.ph-grad { background: linear-gradient(135deg,#dfeaf3,#b9d4e8); position: relative; }
.ph-grad.alt { background: linear-gradient(135deg,#e7eef0,#cfe0d8); }
.ph-grad.alt2 { background: linear-gradient(135deg,#f0e9df,#e3d8c6); }
.ph-grad .ph-ic { position: absolute; inset: 0; display: grid; place-items: center; color: rgba(11,74,123,.35); }
.ph-grad .ph-ic svg { width: 64px; height: 64px; }

/* Process (rundum-sorglos) ------------------------------------------------ */
.process { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.step {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 28px;
  position: relative;
}
.step .step-n {
  font-family: var(--font-head); font-weight: 800; font-size: 15px; color: #fff;
  width: 38px; height: 38px; border-radius: 11px; background: var(--red);
  display: grid; place-items: center; margin-bottom: 18px;
}
.step h3 { font-size: 19px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 15px; }

/* CTA banner -------------------------------------------------------------- */
.cta {
  background: linear-gradient(120deg, var(--blue) 0%, var(--blue-dark) 100%);
  border-radius: 24px; padding: 60px; color: #fff; position: relative; overflow: hidden;
}
.cta::after {
  content:''; position: absolute; right: -80px; top: -80px; width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(189,228,249,.25), transparent 70%); border-radius: 50%;
}
.cta-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 40px; align-items: center; position: relative; z-index: 2; }
.cta h2 { color: #fff; font-size: clamp(26px,3vw,38px); }
.cta p { color: #cfe2f1; margin-top: 14px; font-size: 18px; }
.cta-actions { display: flex; flex-direction: column; gap: 14px; }
.cta-actions .btn { justify-content: center; }

/* Footer ------------------------------------------------------------------ */
.site-footer { background: #0a2c47; color: #b6c6d4; padding-top: 70px; font-size: 15px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; }
.site-footer img.flogo { height: 42px; margin-bottom: 20px; }
.site-footer p { color: #9fb3c4; }
.footer-badges { display: flex; gap: 14px; margin-top: 22px; align-items: center; }
.footer-badges img { height: 64px; width: auto; background: #fff; border-radius: 8px; padding: 4px; }
.site-footer h4 { color: #fff; font-family: var(--font-head); font-size: 15px; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 18px; }
.footer-links { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-links a:hover { color: #fff; }
.footer-contact div { display: flex; gap: 11px; margin-bottom: 14px; }
.footer-contact svg { width: 18px; height: 18px; color: var(--blue-light); flex: none; margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13.5px; color: #8aa0b2; }
.footer-bottom a { color: #8aa0b2; }
.footer-bottom a:hover { color: #fff; }

/* Page hero (interior) ---------------------------------------------------- */
.page-hero { background: linear-gradient(180deg, var(--blue-tint), #fff); padding: 56px 0 48px; border-bottom: 1px solid var(--line); }
.breadcrumb { font-size: 13.5px; color: var(--muted); margin-bottom: 14px; }
.breadcrumb a:hover { color: var(--blue); }
.page-hero h1 { font-size: clamp(30px,4vw,46px); }
.page-hero p { color: var(--muted); margin-top: 12px; max-width: 640px; font-size: 18px; }

/* Detail page ------------------------------------------------------------- */
.detail-grid { display: grid; grid-template-columns: 1.6fr .9fr; gap: 44px; align-items: start; }
.detail-grid > * { min-width: 0; } /* erlaubt Schrumpfen der Spalte → Thumbnail-Strip scrollt statt Layout zu sprengen */
.gallery-main { border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/10; box-shadow: var(--shadow); }
.gallery-main .ph-grad { height: 100%; }
.gallery-thumbs { display: flex; gap: 10px; margin-top: 12px; overflow-x: auto; scroll-behavior: smooth; padding-bottom: 6px; scrollbar-width: thin; scrollbar-color: rgba(10,44,71,.35) transparent; -webkit-overflow-scrolling: touch; }
.gallery-thumbs .ph-grad { aspect-ratio: 4/3; border-radius: 10px; overflow: hidden; }
.detail-facts { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin: 28px 0; }
.fact { background: var(--bg-soft); border-radius: 12px; padding: 16px 18px; }
.fact .k { font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
.fact .v { font-family: var(--font-head); font-weight: 600; color: var(--blue); font-size: 18px; margin-top: 3px; }
.detail-aside {
  position: sticky; top: 130px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow); padding: 28px;
}
.aside-price { font-family: var(--font-head); font-weight: 700; font-size: 30px; color: var(--blue); }
.aside-price small { display: block; font-size: 13px; color: var(--muted); font-weight: 500; }
.agent { display: flex; gap: 14px; align-items: center; margin: 22px 0; padding-top: 22px; border-top: 1px solid var(--line); }
.agent .avatar { width: 56px; height: 56px; border-radius: 50%; background: var(--blue-tint); display: grid; place-items: center; color: var(--blue); font-family: var(--font-head); font-weight: 700; font-size: 20px; }
.agent .name { font-family: var(--font-head); font-weight: 600; color: var(--ink); }
.agent .role { font-size: 13.5px; color: var(--muted); }
.form-field { margin-bottom: 14px; }
.form-field label { font-size: 13.5px; font-family: var(--font-head); font-weight: 600; color: var(--text); display: block; margin-bottom: 6px; }
.form-field input, .form-field textarea {
  width: 100%; border: 1.5px solid var(--line); border-radius: 10px; padding: 12px 14px;
  font-family: var(--font-body); font-size: 15px; color: var(--ink); transition: border-color .18s;
}
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--blue); }

/* About ------------------------------------------------------------------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.about-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.values { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.value { display: flex; gap: 16px; }
.value .vic { width: 46px; height: 46px; border-radius: 12px; background: var(--blue-tint); color: var(--blue); display: grid; place-items: center; flex: none; }
.value .vic svg { width: 24px; height: 24px; }
.value h4 { font-family: var(--font-head); color: var(--blue); font-size: 17px; margin-bottom: 4px; }
.value p { font-size: 14.5px; color: var(--muted); }
.quote {
  border-left: 4px solid var(--red); padding: 6px 0 6px 26px; margin: 8px 0;
  font-family: var(--font-head); font-style: italic; font-size: 22px; color: var(--blue); line-height: 1.4;
}
.quote cite { display: block; font-size: 14px; color: var(--muted); font-style: normal; margin-top: 10px; }
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 26px; }
.member { text-align: center; }
.member .pic { aspect-ratio: 1; border-radius: 18px; background: linear-gradient(135deg,var(--blue-tint),#d4e7f5); display: grid; place-items: center; color: var(--blue); margin-bottom: 16px; }
.member .pic span { font-family: var(--font-head); font-weight: 700; font-size: 34px; }
.member h4 { font-family: var(--font-head); color: var(--ink); font-size: 18px; }
.member .role { color: var(--red); font-size: 14px; font-family: var(--font-head); font-weight: 600; }
.member .mail { color: var(--muted); font-size: 13.5px; margin-top: 4px; }

/* FAQ --------------------------------------------------------------------- */
.faq-item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 4px 24px; margin-bottom: 14px; transition: box-shadow .2s, border-color .2s;
}
.faq-item[open] { box-shadow: var(--shadow); border-color: transparent; }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 20px 0;
  font-family: var(--font-head); font-weight: 600; font-size: 17.5px; color: var(--blue);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 26px; font-weight: 400; color: var(--red); flex: none;
  transition: transform .25s var(--ease); line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--text); padding: 0 0 22px; font-size: 16px; }

/* Blog / Artikel ---------------------------------------------------------- */
.posts-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.post {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .2s;
}
.post:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.post-media { position: relative; aspect-ratio: 16/10; overflow: hidden; display: block; }
.post-media .ph-grad { width: 100%; height: 100%; }
.post-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.post:hover .post-media img { transform: scale(1.04); }
.post-cat {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-family: var(--font-head); font-weight: 700; font-size: 11.5px; letter-spacing: .05em;
  text-transform: uppercase; padding: 6px 12px; border-radius: 999px; color: #fff; background: var(--red);
}
.post-body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.post-meta { font-size: 12.5px; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 6px; }
.post-meta .post-cat-text { color: var(--red); font-weight: 700; }
.post-meta { font-size: 13px; color: var(--muted); font-family: var(--font-head); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.post h3 { font-size: 20px; margin: 8px 0 10px; color: var(--ink); line-height: 1.3; }
.post h3 a:hover { color: var(--blue); }
.post p { color: var(--muted); font-size: 15px; margin-bottom: 16px; }
.post .prop-link { margin-top: auto; }

/* Article (single) -------------------------------------------------------- */
.article { max-width: 760px; margin: 0 auto; }
.article-hero-media { border-radius: var(--radius); overflow: hidden; aspect-ratio: 21/9; box-shadow: var(--shadow); margin-bottom: 36px; }
.article-hero-media .ph-grad { height: 100%; }
.article-cat { font-size: 13px; color: var(--red); font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.article h1 { font-size: clamp(28px,3.6vw,42px); margin: 8px 0 12px; }
.article-meta { color: var(--muted); font-size: 14.5px; margin-bottom: 8px; }
.article-body { font-size: 17.5px; color: var(--text); }
.article-body p { margin-bottom: 20px; }
.article-body h2 { font-size: 24px; margin: 36px 0 14px; }

/* Contact ----------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 32px; }
.contact-info { display: grid; gap: 22px; }
.contact-info .ci { display: flex; gap: 16px; align-items: flex-start; }
.contact-info .ci .ic { width: 48px; height: 48px; border-radius: 12px; background: var(--blue-tint); color: var(--blue); display: grid; place-items: center; flex: none; }
.contact-info .ci .ic svg { width: 22px; height: 22px; }
.contact-info .ci .k { font-family: var(--font-head); font-weight: 600; color: var(--ink); font-size: 16px; }
.contact-info .ci .v { color: var(--muted); font-size: 15.5px; }
.map-embed { border-radius: var(--radius); overflow: hidden; margin-top: 28px; aspect-ratio: 16/7; border: 1px solid var(--line); }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* Lead-Magnet (Ratgeber-Download) ----------------------------------------- */
.lead-magnet {
  background: var(--blue-tint); border: 1px solid var(--blue-light); border-radius: var(--radius);
  padding: 40px; margin: 48px 0; display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; align-items: center;
}
.lead-cover {
  position: relative; aspect-ratio: 3/4; border-radius: 12px; box-shadow: var(--shadow-lg);
  background: linear-gradient(150deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff; padding: 30px 26px; display: flex; flex-direction: column; overflow: hidden;
}
.lead-cover::after { content:''; position: absolute; right: -50px; bottom: -50px; width: 180px; height: 180px; background: radial-gradient(circle, rgba(189,228,249,.22), transparent 70%); border-radius: 50%; }
.lead-cover .lc-tag { font-family: var(--font-head); font-weight: 700; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--blue-light); }
.lead-cover .lc-title { font-family: var(--font-head); font-weight: 700; font-size: 24px; line-height: 1.2; margin-top: 12px; color: #fff; }
.lead-cover .lc-foot { margin-top: auto; display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: #cfe2f1; }
.lead-cover .lc-foot svg { width: 26px; height: 26px; }
.lead-points { list-style: none; padding: 0; margin: 16px 0 0; display: grid; gap: 10px; }
.lead-points li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; color: var(--text); }
.lead-points .ck { color: var(--blue); flex: none; margin-top: 2px; font-weight: 700; }
.lead-form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 30px; }
.lead-form-card h3 { font-size: 21px; margin-bottom: 4px; }
.lead-form-card .sub { color: var(--muted); font-size: 14.5px; margin-bottom: 20px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.phone-row { display: flex; gap: 8px; }
.phone-row select { flex: 0 0 92px; }
.lead-consent { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--muted); margin: 6px 0 16px; }
.lead-consent input { margin-top: 4px; width: auto; flex: none; }
.lead-success { display: none; text-align: center; padding: 10px 0; }
.lead-success .ic { width: 60px; height: 60px; border-radius: 50%; background: #e7f6ee; color: #1a9e6a; display: grid; place-items: center; margin: 0 auto 14px; }
.lead-success .ic svg { width: 30px; height: 30px; }
.lead-success h3 { color: var(--blue); margin-bottom: 6px; }
.lead-success p { color: var(--muted); font-size: 14.5px; margin-bottom: 18px; }

/* Region landing (Local-SEO) ---------------------------------------------- */
.region-places { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.region-chip {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--blue-tint); color: var(--blue); border: 1px solid var(--blue-light);
  font-family: var(--font-head); font-weight: 600; font-size: 13.5px;
  padding: 8px 14px; border-radius: 999px;
}
.region-chip svg { width: 14px; height: 14px; }
.region-intro { display: grid; grid-template-columns: 1.3fr .7fr; gap: 48px; align-items: start; }
.region-aside { background: var(--bg-soft); border-radius: var(--radius); padding: 28px; }
.region-aside h3 { font-size: 18px; margin-bottom: 14px; }
.region-aside .ra-row { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; font-size: 15px; color: var(--text); }
.region-aside .ra-row svg { width: 18px; height: 18px; color: var(--blue); flex: none; margin-top: 3px; }
.region-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 12px; }
.region-link-card {
  display: flex; flex-direction: column; gap: 6px; padding: 24px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .2s;
}
.region-link-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.region-link-card .rl-ic { width: 46px; height: 46px; border-radius: 12px; background: var(--blue-tint); color: var(--blue); display: grid; place-items: center; margin-bottom: 8px; }
.region-link-card .rl-ic svg { width: 24px; height: 24px; }
.region-link-card h3 { font-size: 19px; }
.region-link-card .rl-sub { color: var(--muted); font-size: 14px; }
.region-link-card .rl-go { color: var(--blue); font-family: var(--font-head); font-weight: 600; font-size: 14.5px; margin-top: 6px; display: inline-flex; align-items: center; gap: 6px; }

/* Google-Bewertungen ------------------------------------------------------ */
.reviews-summary { display: flex; flex-direction: column; align-items: center; gap: 8px; margin-bottom: 40px; }
.g-rating { display: inline-flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 10px 22px; box-shadow: var(--shadow); }
.g-rating .g-logo { font-family: var(--font-head); font-weight: 700; font-size: 18px; color: var(--blue); }
.g-rating .g-val { font-family: var(--font-head); font-weight: 700; font-size: 18px; color: var(--ink); }
.stars { color: #f5b50a; letter-spacing: 2px; font-size: 16px; line-height: 1; }
.g-rating .g-count { color: var(--muted); font-size: 13.5px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.review { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 26px 24px; display: flex; flex-direction: column; }
.review-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.review .avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--blue-tint); color: var(--blue); display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; font-size: 16px; flex: none; }
.review .rv-name { font-family: var(--font-head); font-weight: 600; color: var(--ink); font-size: 15.5px; }
.review .rv-src { font-size: 12.5px; color: var(--muted); }
.review .stars { margin-bottom: 10px; }
.review p { color: var(--text); font-size: 15px; flex: 1; }
.review .rv-date { color: var(--muted); font-size: 13px; margin-top: 14px; }

/* Detail – Ausstattung & Energieausweis ----------------------------------- */
.detail-section { margin-top: 36px; }
.detail-section > h2 { font-size: 22px; margin-bottom: 14px; }
.features { display: flex; flex-wrap: wrap; gap: 10px; }
.feature-tag {
  display: inline-flex; align-items: center; gap: 8px; background: var(--blue-tint); color: var(--blue);
  border: 1px solid var(--blue-light); border-radius: 999px; padding: 9px 16px; font-size: 14.5px; font-weight: 500;
}
.feature-tag svg { width: 16px; height: 16px; flex: none; }
.energy-scale { display: flex; gap: 4px; margin: 6px 0 20px; }
.energy-bar {
  flex: 1; text-align: center; padding: 12px 0; border-radius: 7px;
  font-family: var(--font-head); font-weight: 700; font-size: 13px; color: #fff;
  background: var(--ec); opacity: .4; text-shadow: 0 1px 2px rgba(0,0,0,.3); transition: .2s;
}
.energy-bar.active { opacity: 1; transform: scale(1.14); box-shadow: var(--shadow); }
.energy-values { display: flex; gap: 32px; flex-wrap: wrap; }
.energy-values .ev-k { display: block; font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }
.energy-values .ev-v { font-family: var(--font-head); font-weight: 700; color: var(--blue); font-size: 19px; margin-top: 3px; }
.detail-objektnr { font-size: 13px; color: var(--muted); margin-top: 6px; }
.aside-note { font-size: 13px; color: var(--muted); margin-top: 10px; line-height: 1.5; }

/* Objektliste – Steuerelemente -------------------------------------------- */
.list-controls { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.list-controls select, .list-controls input {
  border: 1.5px solid var(--line); border-radius: 999px; padding: 9px 16px;
  font-family: var(--font-body); font-size: 14px; color: var(--ink); background: #fff; transition: border-color .18s;
  width: auto; flex: 0 0 auto; max-width: 240px;
}
.list-controls select { font-family: var(--font-head); font-weight: 600; cursor: pointer; }
.list-controls input { min-width: 150px; }
.list-controls select:focus, .list-controls input:focus { outline: none; border-color: var(--blue); }

/* Galerie + Lightbox ------------------------------------------------------ */
.gallery-main { position: relative; cursor: zoom-in; }
.gallery-label { position: absolute; left: 16px; bottom: 16px; background: rgba(10,44,71,.85); color: #fff; font-family: var(--font-head); font-weight: 600; font-size: 13px; padding: 6px 14px; border-radius: 999px; }
.gallery-counter { position: absolute; right: 16px; bottom: 16px; background: rgba(10,44,71,.85); color: #fff; font-family: var(--font-head); font-weight: 600; font-size: 13px; padding: 6px 12px; border-radius: 999px; }
.gallery-zoom { position: absolute; top: 16px; right: 16px; width: 40px; height: 40px; border-radius: 50%; background: var(--blue); color: #fff; border: 0; padding: 0; line-height: 0; display: grid; place-items: center; cursor: pointer; z-index: 3; box-shadow: 0 2px 12px rgba(0,0,0,.25); transition: background .18s, transform .18s; }
.gallery-zoom:hover { background: var(--red); transform: scale(1.06); }
.gallery-zoom svg { width: 18px; height: 18px; display: block; }
.gallery-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; background: var(--blue); color: #fff; border: 0; padding: 0; line-height: 0; cursor: pointer; display: grid; place-items: center; z-index: 3; box-shadow: 0 2px 12px rgba(0,0,0,.25); transition: background .18s, transform .18s; }
.gallery-nav svg { width: 22px; height: 22px; display: block; }
.gallery-nav:hover { background: var(--red); transform: translateY(-50%) scale(1.06); }
.gallery-prev { left: 14px; }
.gallery-next { right: 14px; }
.gallery-thumbs .thumb { flex: 0 0 92px; width: 92px; cursor: pointer; border: 2px solid transparent; border-radius: 10px; overflow: hidden; padding: 0; background: none; opacity: .68; transition: opacity .15s; }
.gallery-thumbs .thumb:hover { opacity: 1; }
.gallery-thumbs .thumb.active { border-color: var(--blue); opacity: 1; }
.gallery-thumbs .thumb .ph-grad { aspect-ratio: 4/3; }
.gallery-thumbs::-webkit-scrollbar { height: 6px; }
.gallery-thumbs::-webkit-scrollbar-thumb { background: rgba(10,44,71,.3); border-radius: 3px; }
.gallery-thumbs::-webkit-scrollbar-track { background: transparent; }
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(8,33,53,.94); display: none; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lb-stage { width: min(86vw, 1000px); aspect-ratio: 16/10; border-radius: 12px; overflow: hidden; position: relative; }
.lb-stage .ph-grad { width: 100%; height: 100%; }
.lb-stage .gallery-label { font-size: 15px; }
.lb-close, .lb-prev, .lb-next { position: absolute; background: rgba(255,255,255,.15); color: #fff; border: 0; border-radius: 50%; width: 52px; height: 52px; font-size: 30px; line-height: 1; cursor: pointer; display: grid; place-items: center; transition: background .2s; }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,.3); }
.lb-close { top: 24px; right: 28px; width: 46px; height: 46px; }
.lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lb-counter { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); color: #fff; font-family: var(--font-head); font-weight: 600; font-size: 15px; }

/* Rechtstexte (Impressum / Datenschutz) ----------------------------------- */
.legal { max-width: 820px; margin: 0 auto; font-size: 16px; color: var(--text); }
.legal h2 { font-size: 22px; margin: 36px 0 12px; }
.legal h3 { font-size: 17px; margin: 24px 0 8px; color: var(--ink); font-family: var(--font-head); }
.legal p { margin-bottom: 14px; }
.legal ul { margin: 0 0 16px 22px; }
.legal li { margin-bottom: 6px; }
.legal a { color: var(--blue); }
.legal a:hover { text-decoration: underline; }
.legal .ph-note { background: var(--blue-tint); border: 1px solid var(--blue-light); border-radius: 10px; padding: 14px 18px; font-size: 14px; color: var(--blue); margin-bottom: 28px; }
.legal .ph { background: #fff4d6; color: #7a5b00; padding: 1px 7px; border-radius: 5px; font-size: 14px; }
.legal table.legal-data { width: 100%; border-collapse: collapse; margin: 8px 0 20px; }
.legal table.legal-data td { padding: 8px 0; border-bottom: 1px solid var(--line); vertical-align: top; font-size: 15px; }
.legal table.legal-data td:first-child { color: var(--muted); width: 210px; }

/* Reveal animation -------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* Mobile nav – Fullscreen-Overlay --------------------------------------- */
.drawer {
  position: fixed; inset: 0; width: 100%; max-width: none; height: 100%; height: 100dvh;
  background: #fff; z-index: 200; padding: 0; overflow-y: auto;
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .35s var(--ease);
  will-change: transform; visibility: hidden;
}
.drawer.open { transform: translateX(0); visibility: visible; }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 16px 22px; border-bottom: 1px solid var(--line); }
.drawer-brand img { height: 34px; width: auto; display: block; }
.drawer .close { background: none; border: 0; color: var(--blue); padding: 6px; line-height: 0; }
.drawer .close svg { width: 30px; height: 30px; }
.drawer-nav { flex: 1; display: flex; flex-direction: column; justify-content: center; gap: 2px; padding: 24px 26px; }
.drawer-nav a { font-family: var(--font-head); font-weight: 700; font-size: clamp(24px, 7vw, 32px); color: var(--blue); padding: 11px 0; letter-spacing: -.01em; transition: color .15s; }
.drawer-nav a:active, .drawer-nav a:hover { color: var(--red); }
.drawer-foot { padding: 20px 26px calc(22px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 12px; }
.drawer-foot .drawer-bewerten { width: 100%; text-align: center; }
.drawer-contact { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.dc-btn { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 14px; border-radius: 12px; font-family: var(--font-head); font-weight: 600; font-size: 15px; }
.dc-btn svg { width: 18px; height: 18px; flex: none; }
.dc-call { background: var(--red); color: #fff; }
.dc-mail { background: #fff; color: var(--blue); border: 1.5px solid var(--blue); }
body.menu-open { overflow: hidden; }

/* Ratgeber-Artikel -------------------------------------------------------- */
.rg-meta { display: flex; flex-wrap: wrap; gap: 6px 14px; color: var(--muted); font-size: 14px; margin-top: 14px; }
.rg-banner img { width: 100%; aspect-ratio: 1200/360; object-fit: cover; object-position: left center; border-radius: 18px; display: block; box-shadow: var(--shadow); }
@media (max-width: 600px) { .rg-banner img { aspect-ratio: 1200/460; border-radius: 12px; } }
.rg-body { max-width: 760px; }
.rg-answer { background: var(--blue-tint); border-left: 4px solid var(--blue); border-radius: 14px; padding: 20px 24px; margin: 0 0 28px; }
.rg-answer strong { display: block; color: var(--blue); font-family: var(--font-head); font-size: 13px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 6px; }
.rg-answer p { margin: 0; line-height: 1.65; }
.rg-lead { font-size: 18px; line-height: 1.7; color: var(--ink); margin-bottom: 8px; }
.rg-body h2 { font-family: var(--font-head); font-size: 23px; color: var(--blue); margin: 34px 0 12px; }
.rg-body p { margin-bottom: 14px; line-height: 1.7; }
.rg-body ul, .rg-body ol { margin: 0 0 16px; padding-left: 22px; }
.rg-body li { margin-bottom: 8px; line-height: 1.6; }
.rg-body table.legal-data { margin: 10px 0 16px; }
.rg-body .aside-note { font-size: 13px; color: var(--muted); margin-top: -6px; }
.rg-takeaways { background: var(--bg-soft); border-radius: 16px; padding: 22px 26px; margin: 30px 0 0; }
.rg-takeaways h2 { font-size: 18px; margin: 0 0 14px; }
.rg-takeaways ul { list-style: none; margin: 0; padding: 0; }
.rg-takeaways li { position: relative; padding-left: 28px; margin-bottom: 10px; line-height: 1.55; }
.rg-takeaways li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--blue); font-weight: 700; }
.rg-foreword { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 24px 26px; margin: 0 0 26px; font-size: 15px; line-height: 1.7; box-shadow: var(--shadow); }
.rg-foreword p { margin-bottom: 12px; }
.rg-sign { margin: 16px 0 0 !important; }
.rg-sign-name { display: block; font-family: var(--font-head); font-weight: 700; color: var(--blue); font-size: 19px; margin-top: 4px; letter-spacing: .3px; }
.rg-sign-role { display: block; font-size: 13px; color: var(--muted); }
.rg-body h3 { font-family: var(--font-head); font-size: 18px; color: var(--ink); margin: 22px 0 8px; }
.rg-profi { background: var(--blue-tint); border-radius: 14px; padding: 18px 20px; margin: 18px 0; }
.rg-profi strong { display: block; color: var(--blue); font-family: var(--font-head); font-size: 12.5px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 6px; }
.rg-profi p { margin: 0; line-height: 1.6; font-size: 14.5px; }
.rg-frage { background: var(--bg-soft); border-left: 3px solid var(--blue); border-radius: 0 12px 12px 0; padding: 16px 20px; margin: 18px 0; }
.rg-frage > strong { display: block; margin-bottom: 8px; color: var(--ink); }
.rg-frage ul { margin: 0; }
.rg-disclaimer { font-size: 13px; color: var(--muted); border-top: 1px solid var(--line); margin-top: 28px; padding-top: 14px; }
.rg-aside { position: sticky; top: 90px; display: grid; gap: 18px; }
.rg-magnet { background: linear-gradient(135deg, var(--blue), #0a3a61); color: #fff; border-radius: 18px; padding: 26px; box-shadow: var(--shadow); }
.rg-magnet h3 { color: #fff; font-size: 19px; margin: 0 0 6px; }
.rg-magnet p { font-size: 14px; color: rgba(255,255,255,.85); margin: 0 0 16px; line-height: 1.55; }
.rg-form { display: grid; gap: 10px; }
.rg-form input[type=text], .rg-form input[type=email] { width: 100%; padding: 12px 14px; border: 0; border-radius: 10px; font-family: inherit; font-size: 15px; }
.rg-consent { display: flex; gap: 9px; align-items: flex-start; font-size: 12.5px; color: rgba(255,255,255,.85); line-height: 1.45; }
.rg-consent input { margin-top: 3px; width: auto; flex: none; }
.rg-consent a { color: #fff; text-decoration: underline; }
.rg-aside-cta { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 24px; box-shadow: var(--shadow); }
.rg-aside-cta h3 { font-size: 18px; margin: 0 0 6px; }
.rg-aside-cta p { font-size: 14px; color: var(--muted); margin: 0 0 16px; line-height: 1.55; }
@media (max-width: 1024px) { .rg-aside { position: static; } .rg-body { max-width: none; } }
/* Finanzierungsrechner */
.fin-rechner { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 18px; padding: 26px; margin: 28px 0; }
.fin-rechner h3 { font-size: 21px; color: var(--blue); margin: 0 0 4px; }
.fin-sub { font-size: 13.5px; color: var(--muted); margin: 0 0 18px; line-height: 1.5; }
.fin-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fin-grid label { display: flex; flex-direction: column; gap: 6px; font-size: 12px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .03em; }
.fin-inp { display: flex; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 9px 12px; }
.fin-inp input { border: 0; outline: 0; font-family: inherit; font-size: 16px; font-weight: 700; color: var(--ink); width: 100%; min-width: 0; -moz-appearance: textfield; }
.fin-inp input::-webkit-outer-spin-button, .fin-inp input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.fin-inp i { color: var(--muted); font-style: normal; font-weight: 600; padding-left: 8px; flex: none; }
.fin-check { display: flex; gap: 9px; align-items: flex-start; font-size: 13.5px; color: var(--text); margin: 14px 0 0; }
.fin-check input { margin-top: 3px; width: auto; flex: none; }
.fin-result { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 18px 20px; margin-top: 16px; }
.fin-rate { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; border-bottom: 1px solid var(--line); padding-bottom: 12px; margin-bottom: 12px; }
.fin-rate span { color: var(--muted); font-size: 14px; }
.fin-rate strong { color: var(--blue); font-family: var(--font-head); font-size: 30px; font-weight: 800; white-space: nowrap; }
.fin-rows { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 22px; }
.fin-rows div { display: flex; justify-content: space-between; gap: 10px; font-size: 14px; }
.fin-rows span { color: var(--muted); }
.fin-rows b { color: var(--ink); white-space: nowrap; }
.fin-hint { font-size: 13px; color: var(--red); margin: 12px 0 0; display: none; }
.fin-disclaimer { font-size: 12px; color: var(--muted); margin: 14px 0 12px; line-height: 1.5; }
@media (max-width: 600px) { .fin-grid, .fin-rows { grid-template-columns: 1fr; } }

/* Responsive -------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-grid, .cta-grid, .about-grid, .detail-grid, .contact-grid, .lead-magnet, .region-intro { grid-template-columns: 1fr; }
  .lead-magnet .lead-cover { max-width: 300px; }
  .region-cards { grid-template-columns: repeat(2,1fr); }
  .cards-3, .grid-props, .process, .team-grid, .posts-grid, .reviews-grid { grid-template-columns: repeat(2,1fr); }
  .stats-band { grid-template-columns: repeat(2,1fr); gap: 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .detail-aside { position: static; }
}
@media (max-width: 760px) {
  body { font-size: 16px; overflow-x: hidden; }
  .section { padding: 64px 0; }
  .nav-links, .topbar .topbar-meta .hide-sm { display: none; }
  .topbar { font-size: 12px; }
  .topbar .container { gap: 10px; }
  .topbar .topbar-meta { gap: 14px; }
  .topbar svg { width: 13px; height: 13px; }
  .burger { display: inline-flex; }
  .nav-cta .btn--ghost { display: none; }
  .cards-3, .grid-props, .process, .team-grid, .values, .detail-facts, .posts-grid, .region-cards, .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .cta { padding: 38px 26px; }
  .gallery-thumbs .thumb { flex-basis: 88px; width: 88px; }
}
@media (max-width: 600px) {
  /* Header: CTA-Button raus (im Menü + Hero vorhanden) → Logo + Burger ohne Overflow */
  .nav-cta .btn--primary { display: none; }
  .nav { height: 64px; }
  .brand img { height: 34px; }

  /* Hero: Buttons volle Breite, kompaktere Abstände */
  .hero-grid { padding: 40px 0 48px; gap: 32px; }
  .hero h1 { font-size: clamp(30px, 8.4vw, 40px); }
  .hero .lead { font-size: 17px; }
  .hero-actions { gap: 12px; margin-top: 24px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-trust { gap: 18px 28px; margin-top: 26px; }

  /* Filter-Toolbar: Steuerelemente gestapelt, volle Breite */
  .toolbar { gap: 12px; margin-bottom: 24px; }
  .list-controls { width: 100%; flex-direction: column; align-items: stretch; }
  .list-controls select, .list-controls input { width: 100%; max-width: none; }
  .result-count { text-align: left; }

  /* Detailseite: kompakte Eckdaten, engere Abstände */
  .detail-grid { gap: 32px; }
  .detail-facts { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .fact { padding: 13px 14px; }
  .energy-scale { gap: 2px; }
  .energy-bar { font-size: 11px; padding: 10px 0; }
  .gallery-thumbs .thumb { flex-basis: 76px; width: 76px; }
  .gallery-nav { width: 38px; height: 38px; }
  .gallery-nav svg { width: 19px; height: 19px; }
  .gallery-prev { left: 10px; }
  .gallery-next { right: 10px; }

  /* Allgemeine Abstände / Überschriften */
  .section { padding: 52px 0; }
  .page-hero { padding: 40px 0 36px; }
  .page-hero h1 { font-size: clamp(28px, 7.6vw, 38px); }
  .section-head { margin-bottom: 40px; }
  .cta { padding: 34px 22px; }
}

/* ==========================================================================
   Hello-Elementor-Overrides – Header & Footer über volle Breite
   ========================================================================== */
.site-header, .site-footer {
  max-width: 100% !important;
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  display: block !important;
}
.topbar { width: 100%; }
.site-header > .container, .site-footer > .container { max-width: var(--container); }
