/*
Theme Name: Aurum Immobilien
Theme URI: https://www.aurumimmobilien.immo
Author: Aurum Immobilien
Description: Modernes Theme für AURUM IMMOBILIEN – mit Bewertungstool (Sofort-Spanne), KI-Berater, Unterlagencheck & Suchauftrag und Propstack-Anbindung (Auto-Sync + ImmoScout-Übergangsmodus).
Version: 1.3.1
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aurum
Tags: real-estate, business, custom-colors, custom-menu, responsive
*/

/* ============================================================
   AURUM IMMOBILIEN – Modernes Website-Design (Prototyp)
   Stil: modern & klar mit dezentem Gold-Akzent
   ============================================================ */

:root {
  /* Farben */
  --color-bg: #ffffff;
  --color-bg-alt: #f6f5f2;
  --color-ink: #1a1c20;          /* fast-schwarz, warm */
  --color-ink-soft: #4b4f57;
  --color-muted: #8a8f98;
  --color-line: #e6e4df;
  --color-gold: #b8924a;         /* Aurum / Gold */
  --color-gold-dark: #9a7838;
  --color-gold-soft: #f4eede;
  --color-dark: #15171c;         /* Footer / Header solid */

  /* Typografie */
  --font-display: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Maße */
  --container: 1200px;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 10px rgba(20, 23, 28, 0.06);
  --shadow-md: 0 18px 50px rgba(20, 23, 28, 0.10);
  --header-h: 84px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset / Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-bg);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
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-display); font-weight: 600; line-height: 1.1; margin: 0; letter-spacing: 0.2px; }

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

/* ---------- Hilfsklassen ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--color-gold-dark);
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--color-gold); display: inline-block; }

.section { padding: 110px 0; }
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3.1rem); margin: 18px 0 16px; }
.section-head p { color: var(--color-ink-soft); font-size: 1.08rem; margin: 0; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px; border-radius: 999px; border: 1px solid transparent;
  font-weight: 600; font-size: 0.95rem; letter-spacing: 0.02em;
  transition: transform .3s var(--ease), background .3s, color .3s, box-shadow .3s;
}
.btn svg { width: 18px; height: 18px; }
.btn-gold { background: var(--color-gold); color: #fff; }
.btn-gold:hover { background: var(--color-gold-dark); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(184,146,74,.35); }
.btn-ghost { background: transparent; color: var(--color-ink); border-color: var(--color-line); }
.btn-ghost:hover { border-color: var(--color-ink); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--color-ink); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-outline-light:hover { background: #fff; color: var(--color-ink); }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background .4s var(--ease), box-shadow .4s, height .4s;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; }

/* Dezenter dunkler Verlauf hinter der transparenten Leiste – sorgt für Lesbarkeit von Logo & Menü über hellen Bildbereichen */
.site-header::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 200%;
  background: linear-gradient(180deg, rgba(10,12,16,.55) 0%, rgba(10,12,16,0) 100%);
  z-index: -1; pointer-events: none; opacity: 1; transition: opacity .4s var(--ease);
}
.site-header.scrolled::before { opacity: 0; }

.brand { display: flex; align-items: center; gap: 4px; line-height: 1; }

/* Echtes Logo (Bilddatei) */
.brand-logo, .custom-logo { display: block; height: 52px; width: auto; transition: height .4s var(--ease); }
.custom-logo-link { display: block; line-height: 0; }
.site-header.scrolled .brand-logo, .site-header.scrolled .custom-logo { height: 46px; }
@media (max-width: 680px) { .brand-logo, .custom-logo { height: 40px; } .site-header.scrolled .brand-logo, .site-header.scrolled .custom-logo { height: 38px; } }
.brand .mark { font-family: var(--font-display); font-size: 1.65rem; font-weight: 600; letter-spacing: 0.06em; color: #fff; transition: color .4s; }
.brand .mark b { color: var(--color-gold); font-weight: 600; }
.brand .sub { display: block; font-size: 0.6rem; letter-spacing: 0.32em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-top: 4px; transition: color .4s; }

.nav { display: flex; align-items: center; gap: 34px; }
.nav a { font-size: 0.95rem; font-weight: 500; color: rgba(255,255,255,.85); transition: color .3s; position: relative; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0; background: var(--color-gold); transition: width .3s var(--ease); }
.nav a:hover { color: #fff; }
.nav a:hover::after { width: 100%; }
.nav .btn { padding: 11px 22px; }

/* Header-Zustand nach Scroll */
.site-header.scrolled { background: rgba(255,255,255,.97); box-shadow: var(--shadow-sm); height: 72px; backdrop-filter: blur(8px); }
.site-header.scrolled .brand .mark { color: var(--color-ink); }
.site-header.scrolled .brand .sub { color: var(--color-muted); }
.site-header.scrolled .nav a { color: var(--color-ink-soft); }
.site-header.scrolled .nav a:hover { color: var(--color-ink); }
.site-header.scrolled .nav .btn-outline-light { border-color: var(--color-line); color: var(--color-ink); }
.site-header.scrolled .nav .btn-outline-light:hover { background: var(--color-gold); border-color: var(--color-gold); color: #fff; }

/* Mobile Burger */
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px; }
.burger span { width: 26px; height: 2px; background: #fff; transition: background .3s, transform .3s, opacity .3s; }
.site-header.scrolled .burger span { background: var(--color-ink); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  color: #fff; overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(180deg, rgba(16,11,4,.74) 0%, rgba(16,11,4,.50) 42%, rgba(12,8,4,.88) 100%),
                    var(--hero-img, url("https://images.unsplash.com/photo-1570129477492-45c003edd2be?auto=format&fit=crop&w=2000&q=80"));
  background-size: cover; background-position: center;
  transform: scale(1.05); z-index: -1;
}
.hero-inner { padding: 140px 0 80px; max-width: 760px; }
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.8rem); font-weight: 600; margin: 22px 0; }
.hero h1 em { color: var(--color-gold); font-style: normal; }
.hero .lead { font-size: 1.2rem; color: rgba(255,255,255,.88); max-width: 560px; margin: 0 0 38px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero .eyebrow { color: var(--color-gold); }
.hero .eyebrow::before { background: var(--color-gold); }
.hero-region { display: inline-flex; align-items: center; gap: 10px; margin: 30px 0 0; font-size: .95rem; color: rgba(255,255,255,.82); }
.hero-region svg { width: 18px; height: 18px; color: var(--color-gold); flex: none; }
.hero-region b { color: #fff; font-weight: 600; }

/* Slogan-Leiste / Vertrauen */
.trust-bar {
  position: relative; z-index: 2;
  margin-top: -60px;
}
.trust-card {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-md);
  display: grid; grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}
.trust-card .item { padding: 34px 30px; border-right: 1px solid var(--color-line); }
.trust-card .item:last-child { border-right: none; }
.trust-card .num { font-family: var(--font-display); font-size: 2.4rem; color: var(--color-ink); line-height: 1; }
.trust-card .num span { color: var(--color-gold); }
.trust-card .lbl { font-size: 0.92rem; color: var(--color-ink-soft); margin-top: 8px; }

/* ============================================================
   ÜBER UNS / DAS SIND WIR
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-media { position: relative; }
.about-media img { border-radius: var(--radius); box-shadow: var(--shadow-md); width: 100%; height: 560px; object-fit: cover; }
.about-media .badge {
  position: absolute; bottom: -28px; left: -28px;
  background: var(--color-gold); color: #fff; border-radius: var(--radius);
  padding: 26px 30px; box-shadow: var(--shadow-md); max-width: 230px;
}
.about-media .badge .big { font-family: var(--font-display); font-size: 2.6rem; line-height: 1; }
.about-media .badge .small { font-size: .9rem; opacity: .9; margin-top: 6px; }
.about-text h2 { font-size: clamp(2rem, 4vw, 3rem); margin: 18px 0 22px; }
.about-text p { color: var(--color-ink-soft); margin: 0 0 18px; }
.values { list-style: none; padding: 0; margin: 30px 0 0; display: grid; gap: 14px; }
.values li { display: flex; gap: 14px; align-items: flex-start; }
.values .tick { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--color-gold-soft); color: var(--color-gold-dark); display: grid; place-items: center; }
.values .tick svg { width: 14px; height: 14px; }
.values b { display: block; }

/* ============================================================
   DIENSTLEISTUNGEN
   ============================================================ */
.services { background: var(--color-bg-alt); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service-card {
  background: #fff; border: 1px solid var(--color-line); border-radius: var(--radius);
  padding: 38px 32px; transition: transform .35s var(--ease), box-shadow .35s, border-color .35s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card .ico {
  width: 58px; height: 58px; border-radius: 14px; background: var(--color-gold-soft);
  display: grid; place-items: center; color: var(--color-gold-dark); margin-bottom: 24px;
}
.service-card .ico svg { width: 28px; height: 28px; }
.service-card h3 { font-size: 1.4rem; margin-bottom: 12px; }
.service-card p { color: var(--color-ink-soft); font-size: 0.98rem; margin: 0; }

/* ============================================================
   PORTFOLIO / IMMOBILIEN
   ============================================================ */
.portfolio-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 24px; margin-bottom: 44px; }
.tabs { display: inline-flex; background: var(--color-bg-alt); border-radius: 999px; padding: 6px; }
.tab {
  border: none; background: transparent; padding: 12px 26px; border-radius: 999px;
  font-weight: 600; font-size: .95rem; color: var(--color-ink-soft); transition: all .3s;
}
.tab.active { background: var(--color-ink); color: #fff; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.property {
  border-radius: var(--radius); overflow: hidden; background: #fff;
  border: 1px solid var(--color-line); box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s; display: flex; flex-direction: column;
}
.property:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.property .media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.property .media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.property:hover .media img { transform: scale(1.07); }
.property .status {
  position: absolute; top: 14px; left: 14px; padding: 6px 14px; border-radius: 999px;
  font-size: .75rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: #fff;
}
.status.kauf { background: var(--color-gold); }
.status.miete { background: #2f6f5b; }
.property .price {
  position: absolute; bottom: 14px; left: 14px; background: rgba(21,23,28,.85);
  color: #fff; padding: 8px 16px; border-radius: 999px; font-weight: 700; backdrop-filter: blur(4px);
}
.property .body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.property .loc { font-size: .85rem; color: var(--color-gold-dark); font-weight: 600; letter-spacing: .04em; }
.property h3 { font-size: 1.35rem; margin: 8px 0 18px; }
.property .facts { display: flex; gap: 18px; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--color-line); color: var(--color-ink-soft); font-size: .9rem; }
.property .facts span { display: inline-flex; align-items: center; gap: 6px; }
.property .facts svg { width: 16px; height: 16px; color: var(--color-gold); }

.portfolio-note {
  margin-top: 44px; text-align: center; color: var(--color-muted); font-size: .92rem;
}

/* ============================================================
   WARUM AURUM / PROZESS
   ============================================================ */
.process { background: var(--color-dark); color: #fff; }
.process .section-head h2 { color: #fff; }
.process .section-head p { color: rgba(255,255,255,.7); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.step { padding: 32px 26px; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); transition: background .35s, border-color .35s; }
.step:hover { background: rgba(255,255,255,.04); border-color: var(--color-gold); }
.step .n { font-family: var(--font-display); font-size: 2.4rem; color: var(--color-gold); line-height: 1; }
.step h3 { font-size: 1.25rem; margin: 16px 0 10px; }
.step p { color: rgba(255,255,255,.65); font-size: .95rem; margin: 0; }

/* ============================================================
   TEAM
   ============================================================ */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.member { text-align: center; }
.member .photo {
  aspect-ratio: 3/4; border-radius: var(--radius); overflow: hidden; margin-bottom: 18px;
  position: relative; background: var(--color-bg-alt);
}
.member .photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.member:hover .photo img { transform: scale(1.05); }
.member .photo .ph {
  position: absolute; inset: 0; display: grid; place-items: center;
  font-family: var(--font-display); font-size: 3.4rem; color: var(--color-gold); background: var(--color-gold-soft);
}
.member h3 { font-size: 1.3rem; }
.member .role { color: var(--color-gold-dark); font-weight: 600; font-size: .9rem; letter-spacing: .04em; margin-top: 4px; }

/* ============================================================
   KONTAKT
   ============================================================ */
.contact { background: var(--color-bg-alt); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: start; }
.contact-info h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin: 16px 0 20px; }
.contact-info > p { color: var(--color-ink-soft); margin-bottom: 34px; }
.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 22px; }
.contact-list li { display: flex; gap: 18px; align-items: flex-start; }
.contact-list .ico { flex: none; width: 50px; height: 50px; border-radius: 12px; background: #fff; box-shadow: var(--shadow-sm); display: grid; place-items: center; color: var(--color-gold-dark); }
.contact-list .ico svg { width: 22px; height: 22px; }
.contact-list .lbl { font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; color: var(--color-muted); }
.contact-list .val { font-size: 1.1rem; font-weight: 600; color: var(--color-ink); }

.contact-form {
  background: #fff; border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-md);
}
.contact-form h3 { font-size: 1.6rem; margin-bottom: 8px; }
.contact-form .hint { color: var(--color-ink-soft); font-size: .95rem; margin: 0 0 26px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: 7px; color: var(--color-ink); }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 16px; border: 1px solid var(--color-line); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 1rem; color: var(--color-ink); background: #fdfdfc; transition: border-color .3s, box-shadow .3s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--color-gold); box-shadow: 0 0 0 3px var(--color-gold-soft); }
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.checkbox { display: flex; gap: 10px; align-items: flex-start; font-size: .85rem; color: var(--color-ink-soft); margin: 6px 0 22px; }
.checkbox input { margin-top: 3px; }
.form-note { font-size: .8rem; color: var(--color-muted); text-align: center; margin-top: 16px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--color-dark); color: rgba(255,255,255,.7); padding: 80px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand .mark { font-family: var(--font-display); font-size: 1.8rem; color: #fff; }
.footer-brand .mark b { color: var(--color-gold); }
.footer-brand p { margin: 18px 0 0; font-size: .95rem; max-width: 300px; }
.footer-col h4 { color: #fff; font-family: var(--font-body); font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 20px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer-col a { font-size: .95rem; transition: color .3s; }
.footer-col a:hover { color: var(--color-gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; padding-top: 26px; font-size: .95rem; }
.footer-bottom .slogan { color: var(--color-gold); letter-spacing: .14em; font-size: .8rem; }

/* ============================================================
   SCROLL-ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   IMPRESSUM / TEXTSEITEN
   ============================================================ */
.page-hero { background: var(--color-dark); color: #fff; padding: calc(var(--header-h) + 70px) 0 70px; }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
.page-hero .eyebrow { color: var(--color-gold); }
.page-hero .eyebrow::before { background: var(--color-gold); }
.legal { padding: 80px 0; }
.legal .container { max-width: 820px; }
.legal h2 { font-size: 1.6rem; margin: 40px 0 14px; }
.legal h2:first-child { margin-top: 0; }
.legal p { color: var(--color-ink-soft); margin: 0 0 14px; }
.legal a { color: var(--color-gold-dark); text-decoration: underline; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-media .badge { left: 20px; bottom: 20px; }
  .services-grid, .cards, .steps, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-card { grid-template-columns: repeat(2, 1fr); }
  .trust-card .item:nth-child(2) { border-right: none; }
  .trust-card .item:nth-child(1), .trust-card .item:nth-child(2) { border-bottom: 1px solid var(--color-line); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  .section { padding: 76px 0; }
  .nav { position: fixed; inset: 0 0 0 auto; width: min(80vw, 340px); background: #fff; flex-direction: column; align-items: flex-start; justify-content: center; padding: 40px; gap: 22px; transform: translateX(100%); transition: transform .4s var(--ease); box-shadow: var(--shadow-md); }
  .nav.open { transform: none; }
  .nav a { color: var(--color-ink) !important; font-size: 1.1rem; }
  .nav .btn { width: 100%; justify-content: center; }
  .burger { display: flex; z-index: 110; }
  .nav-open .burger span { background: var(--color-ink); }
  .services-grid, .cards, .steps, .team-grid, .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .contact-form { padding: 28px; }
  .about-media img { height: 420px; }
}

/* ============================================================
   ZIELGRUPPEN (Familien / Investoren)
   ============================================================ */
.audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.audience-card {
  border-radius: var(--radius); overflow: hidden; background: #fff;
  border: 1px solid var(--color-line); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; transition: transform .35s var(--ease), box-shadow .35s;
}
.audience-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.audience-card .media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.audience-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.audience-card:hover .media img { transform: scale(1.06); }
.audience-card .tag {
  position: absolute; top: 16px; left: 16px; padding: 7px 15px; border-radius: 999px;
  font-size: .76rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  color: #fff; backdrop-filter: blur(4px);
}
.audience-card .tag.fam { background: var(--color-gold); }
.audience-card .tag.inv { background: #2f6f5b; }
.audience-card .inner { padding: 34px 32px 36px; display: flex; flex-direction: column; flex: 1; }
.audience-card h3 { font-size: 1.75rem; margin-bottom: 12px; }
.audience-card .inner > p { color: var(--color-ink-soft); margin: 0 0 22px; }
.audience-list { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 13px; }
.audience-list li { display: flex; gap: 12px; align-items: flex-start; font-size: .98rem; }
.audience-list .tick { flex: none; width: 24px; height: 24px; border-radius: 50%; background: var(--color-gold-soft); color: var(--color-gold-dark); display: grid; place-items: center; }
.audience-list .tick svg { width: 13px; height: 13px; }
.audience-card .cta { margin-top: auto; }
.audience-card .cta a { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; color: var(--color-gold-dark); }
.audience-card .cta svg { width: 17px; height: 17px; transition: transform .3s var(--ease); }
.audience-card .cta a:hover svg { transform: translateX(5px); }
@media (max-width: 760px) { .audience-grid { grid-template-columns: 1fr; } }

/* ============================================================
   BEWERTUNGSTOOL / WIZARD
   ============================================================ */
.valuation { background: linear-gradient(180deg, #ffffff 0%, var(--color-gold-soft) 100%); }
.wizard { max-width: 760px; margin: 48px auto 0; background: #fff; border: 1px solid var(--color-line); border-radius: var(--radius); box-shadow: var(--shadow-md); overflow: hidden; }
.wizard-top { padding: 30px 40px 4px; }
.wizard-progress { display: flex; align-items: center; }
.wizard-progress .pstep { display: flex; align-items: center; gap: 12px; }
.wizard-progress .pstep:not(:last-child) { flex: 1; }
.wizard-progress .dot { width: 34px; height: 34px; border-radius: 50%; flex: none; display: grid; place-items: center; font-weight: 700; font-size: .9rem; background: var(--color-bg-alt); color: var(--color-muted); border: 2px solid var(--color-line); transition: .3s; }
.wizard-progress .line { height: 2px; background: var(--color-line); flex: 1; margin: 0 12px; transition: .3s; }
.wizard-progress .pstep.done .dot, .wizard-progress .pstep.active .dot { background: var(--color-gold); border-color: var(--color-gold); color: #fff; }
.wizard-progress .pstep.done .line { background: var(--color-gold); }
.wizard-progress .plabel { font-size: .82rem; font-weight: 600; color: var(--color-muted); white-space: nowrap; }
.wizard-progress .pstep.active .plabel, .wizard-progress .pstep.done .plabel { color: var(--color-ink); }
.wizard-body { padding: 18px 40px 36px; }
.wizard-step { display: none; }
.wizard-step.active { display: block; animation: wizfade .4s var(--ease); }
@keyframes wizfade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.wizard-step > h3 { font-size: 1.5rem; margin-bottom: 6px; }
.wizard-step .step-hint { color: var(--color-ink-soft); font-size: .95rem; margin: 0 0 22px; }
.option-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-bottom: 22px; }
.option { position: relative; border: 1.5px solid var(--color-line); border-radius: var(--radius-sm); padding: 18px; cursor: pointer; display: flex; align-items: center; gap: 14px; transition: border-color .25s, background .25s, box-shadow .25s; }
.option:hover { border-color: var(--color-gold); }
.option input { position: absolute; opacity: 0; pointer-events: none; }
.option .o-ico { width: 42px; height: 42px; flex: none; border-radius: 10px; background: var(--color-gold-soft); color: var(--color-gold-dark); display: grid; place-items: center; }
.option .o-ico svg { width: 22px; height: 22px; }
.option .o-label { font-weight: 600; }
.option:has(input:checked) { border-color: var(--color-gold); background: var(--color-gold-soft); box-shadow: 0 0 0 3px var(--color-gold-soft); }
.wizard-nav { display: flex; justify-content: space-between; gap: 14px; margin-top: 6px; }
.wizard-nav .spacer { flex: 1; }
.wiz-error { color: #c0392b; font-size: .9rem; font-weight: 600; margin: 0 0 16px; }
.wizard .invalid { border-color: #c0392b !important; box-shadow: 0 0 0 3px rgba(192,57,43,.12) !important; }
.option-grid.invalid { outline: 2px solid rgba(192,57,43,.4); outline-offset: 6px; border-radius: var(--radius-sm); }
.wizard-success { padding: 56px 40px; text-align: center; display: none; }
.wizard-success.show { display: block; animation: wizfade .5s var(--ease); }
.wizard-success .big-ico { width: 76px; height: 76px; border-radius: 50%; background: var(--color-gold-soft); color: var(--color-gold-dark); display: grid; place-items: center; margin: 0 auto 24px; }
.wizard-success .big-ico svg { width: 38px; height: 38px; }
.wizard-success h3 { font-size: 2rem; margin-bottom: 14px; }
.wizard-success p { color: var(--color-ink-soft); max-width: 480px; margin: 0 auto; }
.wizard-note { text-align: center; font-size: .82rem; color: var(--color-muted); margin-top: 18px; }
@media (max-width: 680px) {
  .wizard-top, .wizard-body { padding-left: 24px; padding-right: 24px; }
  .option-grid { grid-template-columns: 1fr; }
  .wizard-progress .plabel { display: none; }
}

/* Sofort-Spanne im Bewertungs-Erfolg */
.range-box { background: var(--color-gold-soft); border: 1px solid #e7d8b8; border-radius: var(--radius); padding: 26px 24px; margin: 20px auto 26px; max-width: 420px; }
.range-label { font-size: .82rem; color: var(--color-gold-dark); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.range-value { font-family: var(--font-display); font-size: 2.5rem; color: var(--color-ink); margin: 8px 0; line-height: 1.05; }
.range-note { font-size: .8rem; color: var(--color-muted); }
.wizard-success .eyebrow { color: var(--color-gold-dark); margin-bottom: 4px; }

/* ============================================================
   KI-IMMOBILIENBERATER / CHAT-WIDGET
   ============================================================ */
.chat-launcher { position: fixed; right: 24px; bottom: 24px; z-index: 200; display: inline-flex; align-items: center; gap: 10px; background: var(--color-gold); color: #fff; border: none; padding: 14px 20px 14px 16px; border-radius: 999px; box-shadow: 0 10px 30px rgba(184,146,74,.45); cursor: pointer; font-weight: 600; transition: transform .25s var(--ease), background .25s; }
.chat-launcher:hover { transform: translateY(-2px); background: var(--color-gold-dark); }
.chat-launcher svg { width: 22px; height: 22px; }
.chat-panel { position: fixed; right: 24px; bottom: 24px; z-index: 201; width: min(380px, calc(100vw - 32px)); height: min(580px, calc(100vh - 48px)); background: #fff; border-radius: 18px; box-shadow: 0 30px 70px rgba(20,23,28,.28); display: flex; flex-direction: column; overflow: hidden; opacity: 0; transform: translateY(20px) scale(.98); pointer-events: none; transition: opacity .3s var(--ease), transform .3s var(--ease); }
.chat-panel.open { opacity: 1; transform: none; pointer-events: auto; }
.chat-head { background: var(--color-dark); color: #fff; padding: 16px 18px; display: flex; align-items: center; justify-content: space-between; flex: none; }
.chat-id { display: flex; align-items: center; gap: 12px; }
.chat-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--color-gold); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; }
.chat-name { font-weight: 600; font-size: .98rem; }
.chat-status { font-size: .76rem; color: rgba(255,255,255,.6); }
.chat-status::before { content: ""; display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: #46c37b; margin-right: 6px; vertical-align: middle; }
.chat-close { background: none; border: none; color: rgba(255,255,255,.7); font-size: 1.7rem; line-height: 1; cursor: pointer; padding: 0 4px; }
.chat-close:hover { color: #fff; }
.chat-msgs { flex: 1; overflow-y: auto; padding: 18px; display: flex; flex-direction: column; gap: 12px; background: var(--color-bg-alt); }
.msg { max-width: 86%; padding: 11px 15px; border-radius: 14px; font-size: .92rem; line-height: 1.55; }
.msg.bot { background: #fff; border: 1px solid var(--color-line); border-bottom-left-radius: 4px; align-self: flex-start; }
.msg.user { background: var(--color-gold); color: #fff; border-bottom-right-radius: 4px; align-self: flex-end; }
.msg-cta { display: inline-flex; align-items: center; gap: 6px; margin-top: 10px; padding: 8px 14px; background: var(--color-gold-soft); color: var(--color-gold-dark); border-radius: 999px; font-weight: 600; font-size: .85rem; cursor: pointer; border: none; }
.msg-cta:hover { background: var(--color-gold); color: #fff; }
.chat-quick { padding: 10px 14px; display: flex; flex-wrap: wrap; gap: 8px; border-top: 1px solid var(--color-line); background: #fff; flex: none; }
.chat-quick button { background: var(--color-bg-alt); border: 1px solid var(--color-line); border-radius: 999px; padding: 7px 12px; font-size: .8rem; cursor: pointer; color: var(--color-ink); transition: .2s; font-family: inherit; }
.chat-quick button:hover { border-color: var(--color-gold); color: var(--color-gold-dark); }
.chat-input { display: flex; gap: 8px; padding: 12px 14px; border-top: 1px solid var(--color-line); background: #fff; flex: none; }
.chat-input input { flex: 1; border: 1px solid var(--color-line); border-radius: 999px; padding: 10px 16px; font-family: inherit; font-size: .9rem; }
.chat-input input:focus { outline: none; border-color: var(--color-gold); }
.chat-input button { background: var(--color-gold); color: #fff; border: none; width: 42px; height: 42px; border-radius: 50%; cursor: pointer; flex: none; font-size: 1.1rem; }
.chat-input button:hover { background: var(--color-gold-dark); }
@media (max-width: 680px) { .chat-launcher .cl-label { display: none; } .chat-launcher { padding: 14px; } }

/* ============================================================
   BESICHTIGUNG ONLINE BUCHEN
   ============================================================ */
.booking { background: var(--color-bg-alt); }
.booking-card { max-width: 960px; margin: 48px auto 0; background: #fff; border: 1px solid var(--color-line); border-radius: var(--radius); box-shadow: var(--shadow-md); padding: 38px 40px; }
.booking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.booking-left h3, .booking-right h3 { font-size: 1.25rem; margin-bottom: 18px; }
.slots { display: flex; flex-direction: column; gap: 16px; }
.slot-day .day-label { font-weight: 600; font-size: .9rem; color: var(--color-ink); margin-bottom: 8px; }
.slot-day .day-label span { color: var(--color-muted); font-weight: 400; }
.slot-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.slot-chip { border: 1.5px solid var(--color-line); border-radius: 10px; padding: 8px 14px; cursor: pointer; font-size: .9rem; background: #fff; transition: .2s; font-family: inherit; }
.slot-chip:hover { border-color: var(--color-gold); }
.slot-chip.selected { background: var(--color-gold); color: #fff; border-color: var(--color-gold); }
.booking-success { display: none; text-align: center; padding: 30px 10px 6px; }
.booking-success.show { display: block; }
.booking-success .big-ico { width: 64px; height: 64px; border-radius: 50%; background: var(--color-gold-soft); color: var(--color-gold-dark); display: grid; place-items: center; margin: 0 auto 18px; }
.booking-success .big-ico svg { width: 32px; height: 32px; }
.booking-success h3 { font-size: 1.7rem; margin-bottom: 10px; }
.booking-success p { color: var(--color-ink-soft); max-width: 460px; margin: 0 auto; }
@media (max-width: 760px) { .booking-grid { grid-template-columns: 1fr; gap: 28px; } .booking-card { padding: 28px 24px; } }

/* ============================================================
   UNTERLAGENCHECK (Verkäufer-Seite)
   ============================================================ */
.tool-page { padding: 80px 0 100px; }
.check-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: start; }
.check-list { display: grid; gap: 12px; }
.check-list h3, .check-result h3 { font-size: 1.3rem; margin-bottom: 4px; }
.check-intro { color: var(--color-ink-soft); margin: 0 0 20px; }
.check-item { position: relative; display: flex; align-items: flex-start; gap: 14px; padding: 16px 18px; border: 1px solid var(--color-line); border-radius: var(--radius-sm); cursor: pointer; transition: .2s; background: #fff; }
.check-item:hover { border-color: var(--color-gold); }
.check-item input { position: absolute; opacity: 0; pointer-events: none; }
.check-box { width: 24px; height: 24px; border-radius: 6px; border: 2px solid var(--color-line); flex: none; display: grid; place-items: center; transition: .2s; margin-top: 1px; }
.check-box svg { width: 14px; height: 14px; color: #fff; opacity: 0; transition: .2s; }
.check-item:has(input:checked) { border-color: var(--color-gold); background: var(--color-gold-soft); }
.check-item:has(input:checked) .check-box { background: var(--color-gold); border-color: var(--color-gold); }
.check-item:has(input:checked) .check-box svg { opacity: 1; }
.check-item .ci-title { font-weight: 600; display: block; }
.check-item .ci-hint { font-size: .85rem; color: var(--color-muted); display: block; margin-top: 2px; }
.check-result { position: sticky; top: 100px; background: #fff; border: 1px solid var(--color-line); border-radius: var(--radius); box-shadow: var(--shadow-md); padding: 30px 28px; }
.cr-score { font-family: var(--font-display); font-size: 3rem; color: var(--color-gold-dark); line-height: 1; }
.cr-score small { font-size: 1rem; color: var(--color-muted); font-family: var(--font-body); }
.cr-bar { height: 10px; background: var(--color-bg-alt); border-radius: 999px; overflow: hidden; margin: 14px 0; }
.cr-bar > span { display: block; height: 100%; width: 0; background: var(--color-gold); transition: width .5s var(--ease); border-radius: 999px; }
.cr-status { font-weight: 600; margin-bottom: 10px; }
.cr-missing { font-size: .9rem; color: var(--color-ink-soft); margin: 0 0 20px; }
.cr-missing b { color: var(--color-ink); }
.cr-form { border-top: 1px solid var(--color-line); padding-top: 18px; }
.cr-success { display: none; text-align: center; padding: 10px 0; }
.cr-success.show { display: block; }
.cr-success .big-ico { width: 56px; height: 56px; border-radius: 50%; background: var(--color-gold-soft); color: var(--color-gold-dark); display: grid; place-items: center; margin: 0 auto 14px; }
.cr-success .big-ico svg { width: 28px; height: 28px; }
@media (max-width: 860px) { .check-grid { grid-template-columns: 1fr; } .check-result { position: static; } }

/* Kriterien-Auswahl (Käufer-Suchauftrag) */
.crit-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 8px; }
.crit { position: relative; display: flex; align-items: center; gap: 10px; padding: 11px 14px; border: 1.5px solid var(--color-line); border-radius: 10px; cursor: pointer; font-size: .92rem; transition: .2s; }
.crit:hover { border-color: var(--color-gold); }
.crit input { position: absolute; opacity: 0; pointer-events: none; }
.crit:has(input:checked) { border-color: var(--color-gold); background: var(--color-gold-soft); font-weight: 600; }
@media (max-width: 680px) { .crit-grid { grid-template-columns: 1fr; } }

/* Rechtslinks im Footer deutlicher hervorheben */
.footer-bottom a, .footer-bottom .legal-link { color: var(--color-gold); text-decoration: underline; font-weight: 600; }
.footer-bottom a:hover, .footer-bottom .legal-link:hover { color: #fff; }

/* ImmoScout-Verweis (Übergangs-Modus für den Immobilien-Bereich) */
.immoscout-cta { max-width: 640px; margin: 24px auto 0; text-align: center; background: #fff; border: 1px solid var(--color-line); border-radius: var(--radius); box-shadow: var(--shadow-md); padding: 50px 40px; }
.immoscout-cta .ico { width: 64px; height: 64px; border-radius: 16px; background: var(--color-gold-soft); color: var(--color-gold-dark); display: grid; place-items: center; margin: 0 auto 22px; }
.immoscout-cta .ico svg { width: 32px; height: 32px; }
.immoscout-cta h3 { font-size: 1.9rem; margin-bottom: 12px; }
.immoscout-cta p { color: var(--color-ink-soft); margin: 0 0 28px; }
