/* ─── Design Tokens ─────────────────────────────────────────── */
:root {
  /* Farben — Basis */
  --bg:          #f6f1ea;
  --bg-soft:     #faf6f0;
  --text:        #2f2a26;
  --muted:       #655a50;
  --line:        #cfc3b4;
  --input-border:#e4ddd9;
  --muted-ui:    #7a706c;
  --accent:      #c9a96e;
  --accent-dark: #8a6e2f;
  --accent-light: #f5ede0;
  --gold:        #ecb48f;
  --gold-deep:   #c8875a;
  --white:       #fffdfa;
  --dark:        #1a1614;

  /* Farben — Semantisch */
  --btn-text:    #3a2c24;
  --error:       #c0392b;
  --error-bg:    #fdf2f2;
  --error-border:#f0c4c4;
  --success:     #2d6a4a;
  --success-bg:  #eaf4ee;
  --star:        #fbbc04;

  /* Gradient — Buttons */
  --grad-gold:      linear-gradient(135deg, #f0ba94 0%, #c8875a 100%);
  --grad-gold-hover:linear-gradient(135deg, #dba97e 0%, #b36440 100%);
  --shadow-gold:    0 2px 10px rgba(200,135,90,.22);
  --shadow-gold-lg: 0 12px 36px rgba(200,135,90,.4);

  /* Radius — 5 Stufen */
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   16px;
  --radius-xl:   20px;
  --radius-full: 999px;

  /* Schatten — 5 Stufen */
  --shadow-xs:   0 1px 2px rgba(0,0,0,.05);
  --shadow-sm:   0 2px 8px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:   0 4px 16px rgba(0,0,0,.08), 0 1px 3px rgba(0,0,0,.05);
  --shadow-lg:   0 12px 32px rgba(0,0,0,.1), 0 2px 6px rgba(0,0,0,.04);
  --shadow-xl:   0 24px 56px rgba(0,0,0,.14), 0 4px 12px rgba(0,0,0,.05);

  /* Spacing — 8px Grid */
  --space-1: 4px;   --space-2: 8px;   --space-3: 12px;
  --space-4: 16px;  --space-5: 24px;  --space-6: 32px;
  --space-8: 48px;  --space-10: 64px; --space-12: 96px;
}

/* ─── Scroll-Fortschrittsleiste ─────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2.5px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold));
  z-index: 9999;
  transition: width .08s linear;
  pointer-events: none;
}


/* ─── Skip Link ─────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  background: var(--dark);
  color: var(--gold);
  padding: 12px 20px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 0 0 10px 10px;
  text-decoration: none;
  transition: top .15s;
}
.skip-link:focus { top: 0; }

/* ─── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: auto; overflow-x: hidden; }
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
p { margin: 0 0 14px; }
p:last-child { margin-bottom: 0; }
h1, h2, h3 { margin: 0 0 16px; }
address { font-style: normal; }

/* ─── Layout ─────────────────────────────────────────────────── */
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 120px 0; }
.section-alt { background: var(--bg-soft); }
.center { text-align: center; }
.section-intro {
  max-width: 660px;
  margin: 0 auto 56px;
  text-align: center;
  color: var(--muted);
  font-size: 17.5px;
  line-height: 1.8;
}

/* ─── Scroll Animations ─────────────────────────────────────── */
.section {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.82s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.82s cubic-bezier(0.16, 1, 0.3, 1);
}
.section.visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .section {
    opacity: 1;
    transform: none;
    transition: none;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ─── Focus Styles ──────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 3px;
}
.btn-primary:focus-visible,
.btn-ghost:focus-visible,
.btn-secondary:focus-visible,
.offer-btn:focus-visible,
.listing-cta:focus-visible,
.listing-expose-btn:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 3px;
}
.nav a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 3px;
}
.faq-item summary:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: -2px;
  border-radius: 14px;
}

/* ─── Typography ─────────────────────────────────────────────── */
.eyebrow,
.section-kicker {
  display: block;
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: 12.5px;
  color: var(--gold-deep);
  margin: 0 0 14px;
  font-weight: 700;
}
h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  letter-spacing: -.01em;
  font-optical-sizing: auto;
  text-rendering: optimizeLegibility;
}
h1 {
  font-size: clamp(48px, 6.5vw, 78px);
  line-height: .96;
  font-weight: 700;
  letter-spacing: -.025em;
}
h2 { font-size: clamp(38px, 4.5vw, 54px); line-height: 1.08; }
h2.center, .center > h2 { max-width: 540px; margin-left: auto; margin-right: auto; }
h3 { font-size: clamp(22px, 2.5vw, 28px); }
.lead {
  font-size: 18px;
  max-width: 510px;
  color: rgba(255,255,255,.88);
  line-height: 1.78;
}

/* ─── Buttons ─────────────────────────────────────────────────── */
.btn-primary,
.btn-ghost,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 28px;
  min-height: 44px;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: .03em;
  font-family: inherit;
  cursor: pointer;
  border: none;
  touch-action: manipulation;
  transition: transform .22s, box-shadow .22s, background .22s, border-color .22s, color .22s;
}
.btn-primary {
  background: var(--grad-gold);
  color: var(--btn-text);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  background: var(--grad-gold-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold-lg);
}
.btn-primary:active { transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,.88);
  border: 1.5px solid rgba(255,255,255,.28);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.75);
  transform: translateY(-3px);
}
.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  background: transparent;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-full);
  text-decoration: none;
  letter-spacing: .02em;
  cursor: pointer;
  transition: color .3s, border-color .3s, background .3s;
  font-family: inherit;
}
.btn-ghost-light:hover {
  color: white;
  border-color: rgba(201,169,110,.35);
  background: rgba(201,169,110,.06);
}
.btn-lg { padding: 18px 38px; font-size: 15.5px; }

/* ─── Header & Nav ─────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(22,18,16,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: box-shadow .3s;
}
.site-header.scrolled {
  box-shadow: 0 1px 0 rgba(255,255,255,.05), 0 4px 32px rgba(0,0,0,.4);
  border-bottom: 1px solid rgba(201,169,110,.18);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 14px 0;
  position: relative;
}
.brand { text-decoration: none; transition: opacity .25s; }
.brand img { height: 50px; width: auto; transition: filter .25s, opacity .25s; }
.brand:hover img { filter: brightness(1.15); }
.brand:hover { opacity: .88; }
.nav { display: none; gap: 26px; align-items: center; }
.nav a {
  color: rgba(255,255,255,.68);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .01em;
  position: relative;
  transition: color .2s;
}
.nav a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s;
}
.nav a:not(.nav-cta):hover { color: white; }
.nav a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  border: 1px solid rgba(236,180,143,.45);
  padding: 12px 20px;
  min-height: 44px;
  border-radius: var(--radius-md);
  color: var(--gold) !important;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  touch-action: manipulation;
  transition: background .2s, color .2s, border-color .2s, transform .2s;
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--btn-text) !important;
  border-color: var(--gold);
  transform: translateY(-1px);
}
.nav-cta::after { display: none !important; }

/* Mobile burger – standardmäßig versteckt, nur auf Mobile sichtbar */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  position: relative;
  z-index: 1001;
}
.nav-burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,.85);
  border-radius: 2px;
  transition: transform .22s, opacity .22s;
}
.nav-burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── Hero ─────────────────────────────────────────────────── */
.hero {
  background: var(--dark);
  color: white;
  padding: 80px 0;
  min-height: calc(100svh - 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  position: relative;
  z-index: 1;
  --parallax: 0px;
  /* immediately visible — no scroll animation */
  opacity: 1 !important;
  transform: none !important;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  transform: translateY(var(--parallax));
  will-change: transform;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(118,82,55,.24) 0%, transparent 58%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr .75fr;
  gap: 64px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}
.hero-copy { justify-content: center; }
.hero-copy { display: flex; flex-direction: column; }
.hero h1 {
  color: white;
  margin-bottom: 28px;
  line-height: .92;
}
.hero .eyebrow {
  color: var(--gold);
  letter-spacing: .24em;
  font-size: 11px;
  opacity: .9;
}
.hero-actions { display: flex; gap: 18px; margin-top: 38px; flex-wrap: wrap; }
.hero-contact-strip {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 44px;
  font-size: 12.5px;
  color: rgba(255,255,255,.38);
}
.hero-contact-strip a {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,.68);
  text-decoration: none;
  font-weight: 500;
  transition: color .2s;
}
.hero-contact-strip a:hover { color: var(--gold); }
.hero-contact-strip svg { width: 15px; height: 15px; flex-shrink: 0; }
.hero-dot { opacity: .28; }

/* Hero portrait */
.hero-portrait { position: relative; display: flex; justify-content: center; align-self: stretch; align-items: center; }
.hero-portrait-inner {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 44px 100px rgba(0,0,0,.55);
  max-width: 370px;
  width: 100%;
  height: 100%;
  min-height: 420px;
  max-height: 680px;
}
.hero-portrait-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
  display: block;
}

/* ─── Hero-Monogramm SVG-Animation ─────────────────────────── */

.hero-mark-wrap {
  position: relative;
  pointer-events: none;
  opacity: 0.82;
  align-self: center;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  transform: scale(0.9) translateX(12px);
}
.hero-mark {
  display: block;
  width: 100%;
  height: auto;
  max-height: calc(100svh - 72px - 200px);
}

/* Zeichenanimation */
@keyframes hero-draw {
  0%  { stroke-dashoffset: 1; opacity: 1; }
  to  { stroke-dashoffset: 0; opacity: 1; }
}
.hero-line {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  opacity: 0;
  animation: hero-draw 1.85s cubic-bezier(.22,.61,.36,1) forwards;
}
.hero-line.delay-0  { animation-delay: 0s; animation-duration: 2.6s; }
.hero-line.delay-1  { animation-delay: 0.15s; }
.hero-line.delay-2  { animation-delay: 0.35s; }
.hero-line.delay-3  { animation-delay: 0.55s; }
.hero-line.delay-4  { animation-delay: 0.70s; }
.hero-line.delay-5  { animation-delay: 0.95s; }
.hero-line.delay-6  { animation-delay: 1.10s; }
.hero-line.delay-7  { animation-delay: 1.25s; }

@media (prefers-reduced-motion: reduce) {
  .hero-line {
    stroke-dashoffset: 0;
    opacity: 1;
    animation: none;
  }
}
@media (max-width: 960px) {
  .hero-mark-wrap {
    margin-inline: auto;
    opacity: 0.85;
    transform: scale(0.9) translateX(0);
  }
  .hero-mark {
    max-width: min(72vw, 400px);
    max-height: 50vh;
  }
}

/* ─── Trust Bar ─────────────────────────────────────────────── */
/* ─── Trust Belt — schmaler Confidence-Streifen ────────────── */
.trust-bar {
  background: var(--dark);
  padding: 0 !important;
  position: relative;
  overflow: hidden;
}
.trust-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(118,82,55,.25) 0%, transparent 55%);
  pointer-events: none;
}
.trust-belt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  position: relative;
  z-index: 1;
}
.trust-belt-items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 28px;
}
.trust-belt-items li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255,255,255,.50);
  letter-spacing: .015em;
  white-space: nowrap;
}
.trust-belt-items li svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
  opacity: .45;
  flex-shrink: 0;
}
.trust-belt-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(201,169,110,.40);
  text-decoration: none;
  letter-spacing: .02em;
  white-space: nowrap;
  transition: color .3s;
}
.trust-belt-link svg {
  transition: transform .3s, color .3s;
}
.trust-belt-link:hover {
  color: var(--gold);
}
.trust-belt-link:hover svg {
  transform: translateX(3px);
}

/* ─── Shared Panel ──────────────────────────────────────────── */
.panel,
.hero-image-card,
.card,
.offer-placeholder {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-md);
}

/* ─── About ─────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: .5fr 1fr;
  gap: 64px;
  align-items: start;
  max-width: 1060px;
  margin: 0 auto;
}
.about-portrait {
  position: sticky;
  top: 120px;
}
.about-portrait img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 3 / 4;
  box-shadow:
    0 24px 64px rgba(0,0,0,.18),
    0 0 0 1px rgba(236,180,143,.10);
}
.about-content h2 { margin-bottom: 4px; }
.about-role {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gold-deep);
  margin: 0 0 36px;
}
.about-lead {
  font-size: 18.5px !important;
  line-height: 1.75 !important;
  color: var(--text) !important;
  margin-bottom: 24px !important;
}
.about-text p {
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.82;
  margin-bottom: 16px;
}
.about-text strong { color: var(--text); }
.about-quote {
  margin: 44px 0 0;
  padding: 32px 36px;
  background: linear-gradient(135deg, rgba(236,180,143,.12) 0%, rgba(200,135,90,.06) 100%);
  border-left: 3px solid var(--gold-deep);
  border-radius: 0 16px 16px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2.2vw, 26px);
  font-style: italic;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text);
}
.about-quote cite {
  display: block;
  margin-top: 20px;
  font-style: normal;
  font-size: 11px;
  font-family: inherit;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gold-deep);
}
@media (max-width: 760px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-portrait { position: static; max-width: 320px; margin: 0 auto; }
  .about-lead { font-size: 17px !important; }
}

/* ─── Service Cards ─────────────────────────────────────────── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: start;
  gap: 30px;
  margin-top: 52px;
}
.card {
  display: flex;
  flex-direction: column;
  cursor: default;
  background: var(--white) !important;
  border-top: 2px solid var(--gold) !important;
  border-left: 1px solid var(--line) !important;
  border-right: 1px solid var(--line) !important;
  border-bottom: 1px solid var(--line) !important;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg) !important;
  padding: 30px !important;
  box-shadow: var(--shadow-sm) !important;
  transition: transform .3s ease, box-shadow .3s ease, border-top-color .3s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl) !important;
  border-top-color: var(--gold-deep) !important;
}
.card h3 { margin: 0 0 12px; }
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(236,180,143,.12) 0%, rgba(200,135,90,.06) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  flex-shrink: 0;
  padding: 0;
}
.card-icon svg { width: 26px; height: 26px; color: var(--gold-deep); }
.card-desc { color: var(--muted); font-size: 15px; line-height: 1.72; margin-bottom: 0; }
.card-list {
  margin: 24px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.card-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.card-list li::before {
  content: '';
  width: 4px;
  height: 4px;
  min-width: 4px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 8px;
}

/* ─── VDIV ──────────────────────────────────────────────────── */
.vdiv-section { background: linear-gradient(180deg, transparent 0%, #f6f1ea 10%, #f6f1ea 90%, transparent 100%); }
.vdiv-grid {
  display: grid;
  grid-template-columns: .58fr 1.42fr;
  gap: 84px;
  align-items: center;
}
.vdiv-logo-wrap { display: flex; justify-content: center; }
.vdiv-logo-wrap a { display: inline-block; transition: transform .2s; }
.vdiv-logo-wrap a:hover { transform: translateY(-3px); }
.vdiv-logo-wrap img { max-width: 280px; width: 100%; height: auto; filter: drop-shadow(0 4px 16px rgba(0,0,0,.12)); }
.vdiv-logo-wrap a:hover img { filter: drop-shadow(0 8px 28px rgba(0,0,0,.18)); }
.vdiv-text .section-kicker { margin-bottom: 10px; }
.vdiv-text h2 { margin-bottom: 20px; }
.vdiv-text p { color: var(--muted); line-height: 1.82; margin-bottom: 16px; }

/* ─── CTA Band ──────────────────────────────────────────────── */
.cta-section {
  background: var(--dark);
  color: white;
  position: relative;
  overflow: hidden;
  padding: 64px 0 !important;
  box-shadow: 0 -48px 96px -24px rgba(26,22,20,.10), 0 48px 96px -24px rgba(26,22,20,.10);
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 65% 50%, rgba(107,84,72,.35) 0%, transparent 62%);
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.cta-inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cta-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 3.6vw, 38px);
  font-style: italic;
  font-weight: 500;
  color: rgba(255,255,255,.93);
  line-height: 1.32;
  margin: 0 0 14px;
  letter-spacing: -.015em;
}
.cta-name {
  font-size: 10.5px;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .16em;
  margin: 0 0 32px;
}

/* ─── Kaufangebote ──────────────────────────────────────────── */
.listings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 40px;
  min-height: 300px;
}
.listing-card {
  max-width: 420px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
  cursor: default;
}
.listing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.listing-img-wrap {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg-soft);
}
.listing-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.listing-img-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, #f0ebe7, var(--input-border)); }
.listing-card:hover .listing-img-wrap img { transform: scale(1.04); }
.listing-type-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--dark);
  color: rgba(255,255,255,.88);
  font-size: 11.5px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.listing-body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.listing-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 5vw, 22px);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 6px;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.listing-location {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--muted);
  font-size: 13.5px;
  margin: 0 0 14px;
}
.listing-location svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--accent); }
.listing-facts {
  display: flex;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0 0 0;
  flex-wrap: wrap;
}
.listing-facts li {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
}
.listing-facts svg { width: 14px; height: 14px; color: var(--accent); flex-shrink: 0; }

/* Schlagzeile / Subtitle */
.listing-objekt-nr {
  display: block;
  font-size: 11px;
  color: #9a8a7a;
  letter-spacing: .06em;
  margin: 2px 0 6px;
}
.listing-subtitle {
  font-size: 14.5px;
  color: var(--text-secondary, #6a5e58);
  line-height: 1.55;
  margin: 0 0 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Preis-Labels */
.listing-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 6vw, 30px);
  font-weight: 700;
  color: var(--accent-dark);
  margin: auto 0 20px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.listing-price-label {
  display: block;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-deep);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.listing-price-suffix {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 11px;
  color: var(--muted);
  font-weight: 400;
}

/* Sold-State */
.listing-card--sold { opacity: .7; }
.listing-sold-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #b91c1c;
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  letter-spacing: .04em;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
}

.listing-actions { display: flex; flex-direction: column; gap: 10px; }
.listing-cta {
  display: block;
  text-align: center;
  padding: 14px 20px;
  min-height: 44px;
  border-radius: var(--radius-md);
  background: var(--accent-dark);
  color: white;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: .02em;
  text-decoration: none;
  touch-action: manipulation;
  transition: background .2s, transform .15s, box-shadow .15s;
}
.listing-cta:hover {
  background: var(--dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.listing-expose-btn {
  display: block;
  text-align: center;
  padding: 8px 16px;
  min-height: auto;
  border-radius: var(--radius-md);
  border: none;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  transition: color .2s;
}
.listing-expose-btn:hover {
  color: var(--gold-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* Kontakt-Prefill-Banner */
.contact-prefill-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: linear-gradient(135deg, rgba(201,169,110,.10), rgba(201,169,110,.06));
  border: 1px solid rgba(201,169,110,.30);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-deep);
  line-height: 1.4;
}
.contact-prefill-banner button {
  flex-shrink: 0;
  background: none;
  border: none;
  font-size: 18px;
  color: var(--gold-deep);
  cursor: pointer;
  padding: 2px 6px;
  opacity: .6;
  transition: opacity .2s;
}
.contact-prefill-banner button:hover { opacity: 1; }

/* Leer-Zustand */
.listings-empty {
  text-align: center;
  padding: 64px 24px;
  max-width: 480px;
  margin: 0 auto;
}
.listings-empty-icon {
  width: 72px; height: 72px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.listings-empty-icon svg { width: 34px; height: 34px; color: var(--accent); }
.listings-empty-title { font-weight: 700; font-size: 18px; color: var(--text); margin: 0 0 10px; }
.listings-empty-sub { color: var(--muted); font-size: 15px; line-height: 1.7; margin: 0 0 28px; }

/* ─── FAQ ────────────────────────────────────────────────────── */
.faq-container { max-width: 760px; margin: 0 auto; }
.faq-list { margin-top: 42px; display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow .2s, border-color .2s, transform .2s;
}
.faq-item:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(200,135,90,.45);
  transform: translateY(-2px);
}
.faq-item[open] {
  border-color: rgba(200,135,90,.35);
  box-shadow:
    0 4px 16px rgba(200,135,90,.08),
    0 12px 40px rgba(0,0,0,.05);
}
.faq-item summary {
  padding: 20px 26px;
  font-weight: 600;
  font-size: 15.5px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
  color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform .22s;
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { border-bottom: 1px solid var(--line); }
.faq-item p { margin: 0; padding: 18px 26px; color: var(--muted); line-height: 1.75; font-size: 15px; }

/* ─── Formular-Fehlermeldung (kein alert) ────────────────────── */
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: none; }
}
.form-error-banner {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--error-bg);
  border: 1px solid var(--error-border);
  border-left: 3px solid var(--error);
  border-radius: var(--radius-md);
  padding: 13px 16px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #7d1f1f;
  line-height: 1.5;
  animation: slideDown .22s ease;
}
.form-error-banner svg { flex-shrink: 0; color: var(--error); margin-top: 1px; }
.form-error-banner span { flex: 1; }
.form-error-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--error);
  font-size: 15px;
  padding: 0 2px;
  opacity: .55;
  line-height: 1;
  flex-shrink: 0;
  transition: opacity .15s;
}
.form-error-close:hover { opacity: 1; }

/* ─── Pflichtfeld-Sternchen ──────────────────────────────────── */
.req {
  color: var(--gold-deep);
  margin-left: 2px;
  font-weight: 700;
}
/* Automatisch via CSS :has() für das Angebotsformular */
.offer-form-card label:has(input[required]) > span:first-child::after,
.offer-form-card label:has(select[required]) > span:first-child::after,
.offer-form-card label:has(textarea[required]) > span:first-child::after {
  content: ' *';
  color: var(--gold-deep);
  font-weight: 700;
}

/* ─── Offer Form ─────────────────────────────────────────────── */
/* ─── Offer zwei-spaltig ─────────────────────────────────────── */
.offer-layout {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 56px;
  align-items: start;
  margin-top: 16px;
}
.offer-intro-col {
  padding-top: 8px;
}
.offer-intro-col .section-kicker { margin-bottom: 24px; }
.offer-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.offer-steps li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.offer-step-num {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: var(--dark);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  margin-top: 2px;
}
.offer-steps li div { font-size: 15px; line-height: 1.6; color: var(--muted); }
.offer-steps li strong { color: var(--text); display: block; margin-bottom: 2px; }
.offer-promise {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--accent-dark);
  margin-bottom: 10px;
  background: rgba(200,135,90,.06);
  border: 1px solid rgba(200,135,90,.14);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
}
.offer-promise svg { color: var(--gold-deep); flex-shrink: 0; }

.offer-form-single { max-width: 100%; }
@media (max-width: 960px) {
  .offer-layout { grid-template-columns: 1fr; gap: 36px; }
}
.offer-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.form-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 24px;
  margin: 0 0 10px;
  color: var(--text);
  letter-spacing: -.01em;
}
/* ── Step-Indikator ────────────────────────────── */
.offer-step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 28px;
}
.offer-step-dot {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700;
  color: var(--muted);
  background: var(--white);
  transition: all .3s ease;
  flex-shrink: 0;
}
.offer-step-dot.active {
  border-color: var(--gold-deep);
  color: var(--gold-deep);
  background: rgba(200,135,90,.1);
  box-shadow: 0 0 0 4px rgba(200,135,90,.1);
}
.offer-step-dot.done {
  border-color: var(--gold-deep);
  background: var(--gold-deep);
  color: var(--white);
}
.offer-step-line {
  width: 52px; height: 2px;
  background: var(--line);
  transition: background .3s ease;
}
.offer-step-line.done {
  background: var(--gold-deep);
}
.offer-form-card,
.offer-preview-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 2.5px solid var(--gold-deep);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-6) var(--space-6);
  box-shadow: var(--shadow-md);
}
.field-grid { display: grid; gap: 12px; }
.field-grid.two      { grid-template-columns: 1fr 1fr; }
.field-grid.three    { grid-template-columns: .7fr 1fr 1fr; }
.field-grid.two-two  { grid-template-columns: .7fr 1.3fr; }
.offer-form-card label { display: block; margin-bottom: 18px; }
.offer-form-card label > span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .01em;
}
.offer-form-card input,
.offer-form-card select,
.offer-form-card textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--line);
  background: var(--bg-soft);
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  cursor: text;
  transition: border-color .18s, box-shadow .18s, background .18s, transform .18s;
}
.offer-form-card select { cursor: pointer; }
.offer-form-card input:hover,
.offer-form-card select:hover,
.offer-form-card textarea:hover {
  border-color: var(--accent);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}
/* Label-Reaktion beim Focus */
.offer-form-card label { transition: none; }
.offer-form-card label:focus-within > span:first-child {
  color: var(--gold-deep);
}
.offer-form-card label.field--filled > span:first-child {
  color: var(--accent-dark);
}

/* Input-Reaktion */
.offer-form-card input,
.offer-form-card select,
.offer-form-card textarea {
  position: relative;
}
.offer-form-card input:focus,
.offer-form-card select:focus,
.offer-form-card textarea:focus {
  outline: none;
  border-color: var(--gold-deep);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(200,135,90,.15), 0 2px 8px rgba(0,0,0,.04);
}
.offer-form-card input:focus-visible,
.offer-form-card select:focus-visible,
.offer-form-card textarea:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 1px;
  border-color: var(--gold-deep);
  box-shadow: 0 0 0 3px rgba(200,135,90,.15);
}

/* Filled State — grüner Rand + Häkchen als Unicode-Zeichen */
.offer-form-card input.field--valid,
.offer-form-card textarea.field--valid,
.offer-form-card input:-webkit-autofill,
.offer-form-card input:autofill {
  border-color: var(--success) !important;
}

.offer-form-card label.field--valid > span:first-child,
.offer-form-card label:has(input:-webkit-autofill) > span:first-child,
.offer-form-card label:has(input:autofill) > span:first-child {
  color: var(--accent-dark);
}

.offer-form-card label.field--valid {
  position: relative;
}
.offer-form-card label.field--valid::after {
  content: '✓';
  position: absolute;
  right: 14px;
  bottom: 10px;
  color: var(--success);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}

/* ── Step 3: Übersicht ─────────────────────────── */
.review-section {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  margin-bottom: 14px;
}
.review-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.review-section-title {
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.review-edit-link {
  background: none;
  border: none;
  color: var(--accent);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.review-edit-link:hover {
  color: var(--accent-dark);
}
.review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
}
.review-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.review-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.review-value {
  font-size: 15px;
  color: var(--text);
  word-break: break-word;
}
.review-note {
  font-size: 14px;
  color: var(--text);
  margin: 0;
  white-space: pre-wrap;
  line-height: 1.5;
}

/* ── Inline-Edit in Step 3 ─────────────────────── */
.review-inline-edit {
  padding-top: 10px;
  border-top: 1px solid var(--line);
  margin-top: 8px;
}
.review-inline-edit .field-section-label {
  display: none;
}
.review-done-btn {
  margin-top: 8px;
}

/* ── Step Navigation (Zurück / Weiter) ─────────── */
.offer-step-nav {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  margin-top: 12px;
}
.offer-step-nav .offer-btn.secondary {
  width: auto;
  min-width: 0;
}

/* Shake-Animation bei ungültigem Absenden */
@keyframes shake {
  0%, 100% { transform: none; }
  20%       { transform: translateX(-6px); }
  40%       { transform: translateX(6px); }
  60%       { transform: translateX(-4px); }
  80%       { transform: translateX(4px); }
}
.field--error input,
.field--error select,
.field--error textarea {
  border-color: var(--error) !important;
  box-shadow: 0 0 0 3px rgba(192,57,43,.12) !important;
  animation: shake .35s ease;
}
.field--error > span:first-child {
  color: var(--error) !important;
}
.offer-form-card .actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 12px; }
.offer-btn {
  width: 100%;
  padding: 14px 15px;
  min-height: 44px;
  border-radius: var(--radius-md);
  border: none;
  background: var(--accent-dark);
  color: white;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .02em;
  cursor: pointer;
  font-family: inherit;
  touch-action: manipulation;
  transition: transform .18s, box-shadow .18s, background .18s, opacity .18s;
}
.offer-btn:hover {
  background: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
}
.offer-btn:disabled { opacity: .55; cursor: not-allowed; transform: none; box-shadow: none; }
.offer-btn.secondary {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--line);
  box-shadow: none;
}
.offer-btn.secondary:hover {
  background: var(--bg-soft);
  border-color: var(--accent);
  color: var(--text);
  box-shadow: none;
  transform: none;
}
.hp-field { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.offer-checkbox { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; margin-bottom: 14px; }
.offer-checkbox input[type="checkbox"] { width: 17px; min-width: 17px; height: 17px; margin-top: 2px; accent-color: var(--gold-deep); cursor: pointer; }
.offer-checkbox span { font-size: 13px; color: var(--muted); line-height: 1.55; }
.offer-checkbox a { color: var(--gold-deep); text-decoration: underline; }
.offer-checkbox.field--error span { color: var(--error) !important; }
.offer-checkbox.field--error input[type="checkbox"] { outline: 2px solid var(--error); outline-offset: 2px; animation: shake .35s ease; }
.offer-hint { color: var(--muted); font-size: 13px; margin-top: 10px; display: flex; align-items: center; gap: 6px; }
.offer-hint svg { flex-shrink: 0; color: var(--gold-deep); }
.field-hint { display: block; font-size: 12px; color: var(--muted); margin-top: 5px; }
.field-section-label { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 600; margin: 4px 0 10px; }
.field-optional { font-weight: 400; color: var(--muted); font-size: 12px; }

/* ─── Address Fields ─────────────────────────────────────────── */
.field-grid.street-nr { grid-template-columns: 1fr 90px; }
.field-grid.plz-city  { grid-template-columns: 110px 1fr; }
.addr-spinner {
  display: none;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px; height: 15px;
  border: 2px solid var(--line);
  border-top-color: var(--gold-deep);
  border-radius: 50%;
  animation: addrSpin .65s linear infinite;
  pointer-events: none;
}
.addr-spinner.visible { display: block; }
@keyframes addrSpin { to { transform: translateY(-50%) rotate(360deg); } }

/* Button-Loading-State (Submit) */
.btn-loading {
  position: relative;
  color: transparent !important;
  pointer-events: none;
}
.btn-loading::after {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 20px;
  height: 20px;
  border: 2.5px solid rgba(255,255,255,.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: btnSpin .6s linear infinite;
}
@keyframes btnSpin { to { transform: rotate(360deg); } }
.address-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0; right: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  list-style: none;
  padding: 6px 0;
  margin: 0;
  z-index: 100;
  max-height: 220px;
  overflow-y: auto;
}
.address-dropdown li {
  padding: 11px 15px;
  cursor: pointer;
  font-size: 14px;
  color: var(--text);
  line-height: 1.4;
  transition: background .12s;
}
.address-dropdown li:hover { background: var(--bg-soft); }

/* ─── Testimonials ───────────────────────────────────────────── */
/* Hintergrund wird über section-alt gesteuert (keine feste Farbe) */

/* ─── Testimonials Dark ─────────────────────────────────────── */
.testimonials-dark {
  background: var(--dark);
  color: white;
  position: relative;
  overflow: hidden;
  padding: 64px 0 !important;
}
.testimonials-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(118,82,55,.35) 0%, transparent 55%);
  pointer-events: none;
}
.testimonials-dark::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.testimonials-dark > .container {
  position: relative;
  z-index: 1;
}

/* Placeholder (keine Bewertungen vorhanden) */
.reviews-placeholder {
  text-align: center;
  padding: 8px 0;
  max-width: 480px;
  margin: 0 auto;
}
.reviews-placeholder-kicker {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: rgba(201,169,110,.45);
  margin: 0 0 20px;
}
.reviews-placeholder-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 3.2vw, 30px);
  font-style: italic;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  margin: 0 0 12px;
}
.reviews-placeholder-sub {
  color: rgba(255,255,255,.40);
  font-size: 13.5px;
  line-height: 1.65;
  margin: 0 0 24px;
}

/* Echte Zitate — Kicker */
.testimonials-dark-kicker {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: rgba(201,169,110,.45);
  text-align: center;
  margin: 0 0 24px;
}

/* Horizontal-Track */
.testimonials-track {
  display: flex;
  justify-content: center;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 0 24px;
  padding: 4px 0 8px;
  scrollbar-width: none;
}
.testimonials-track::-webkit-scrollbar { display: none; }

/* Einzelne Karte */
.testimonial-card-dark {
  flex: 0 0 340px;
  min-width: 0;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  margin: 0;
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.03);
  display: flex;
  flex-direction: column;
  transition: opacity .4s ease, transform .4s cubic-bezier(.22,1,.36,1), border-color .3s;
}
.testimonial-card-dark-stars {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 2px;
  opacity: .55;
  margin-bottom: 16px;
}
.testimonial-card-dark blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-style: italic;
  font-weight: 500;
  color: rgba(255,255,255,.82);
  line-height: 1.45;
  margin: 0 0 18px;
  flex: 1;
}
.testimonial-card-dark figcaption {
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255,255,255,.50);
  letter-spacing: .02em;
}
.testimonial-card-dark figcaption span {
  display: block;
  font-weight: 400;
  color: rgba(255,255,255,.28);
  font-size: 11.5px;
  margin-top: 2px;
}

/* Desktop-Pfeile */
.testimonials-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}
.testimonials-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.10);
  background: transparent;
  color: rgba(255,255,255,.45);
  cursor: pointer;
  transition: border-color .3s, color .3s, background .3s;
}
.testimonials-arrow:hover:not(:disabled) {
  border-color: rgba(201,169,110,.30);
  color: white;
  background: rgba(201,169,110,.06);
}
.testimonials-arrow:disabled {
  opacity: .25;
  cursor: default;
}

/* Google-Rating-Bar */
.google-rating-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 32px 0 48px;
  padding: 20px 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.google-logo { width: 22px; height: 22px; flex-shrink: 0; }
.google-rating-score { font-size: 28px; font-weight: 700; color: var(--text); line-height: 1; }
.google-rating-stars { color: var(--star); font-size: 20px; letter-spacing: 2px; }
.google-rating-count { font-size: 13px; color: var(--muted); }
.google-review-btn {
  margin-left: auto;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  background: var(--white);
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color .15s, background .15s;
}
.google-review-btn:hover { border-color: var(--accent); background: var(--bg-soft); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  margin: 0;
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.testimonial-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: white;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-head strong { font-size: 14px; font-weight: 600; color: var(--text); display: block; }
.testimonial-stars { color: var(--star); font-size: 14px; letter-spacing: 1px; margin-top: 2px; }
.testimonial-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
  flex: 1;
  margin-bottom: 16px;
}
.testimonial-card footer { border-top: 1px solid var(--line); padding-top: 12px; }
.testimonial-card footer span { color: var(--muted); font-size: 12px; }

/* ─── Legal Pages (Datenschutz, Impressum) ───────────────────── */
.legal-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 10px;
  line-height: 1.3;
}
.legal-content p,
.legal-content li {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.85;
  margin: 0 0 12px;
}
.legal-content ul { padding-left: 20px; margin: 0 0 12px; }
.legal-content a { color: var(--accent-dark); }
.legal-content .btn-primary {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
}
.legal-content strong { color: var(--text); }
.legal-content > div {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.legal-content > div:last-child { border-bottom: none; padding-bottom: 0; }

/* ─── Servicegebiet: dunkle Section ─────────────────────────── */
#servicegebiet {
  background: var(--dark);
  color: white;
  position: relative;
  overflow: hidden;
}
#servicegebiet::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}
#servicegebiet::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(118,82,55,.35) 0%, transparent 55%);
  pointer-events: none;
}
#servicegebiet {
  padding: 72px 0 !important;
}
#servicegebiet > .container {
  max-width: 860px;
  position: relative;
  z-index: 1;
}
#servicegebiet .section-kicker {
  color: var(--gold);
}
#servicegebiet h2 {
  color: rgba(255,255,255,.95);
}
#servicegebiet .section-intro {
  color: rgba(255,255,255,.65);
}
/* ── Servicegebiet: Karte + Legende auf dunkel ── */
#servicegebiet .map-container {
  border-color: rgba(255,255,255,.08);
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
}
#servicegebiet .map-legend {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.08);
}
#servicegebiet .map-legend-title {
  color: rgba(255,255,255,.9);
}
#servicegebiet .map-legend-list li {
  color: rgba(255,255,255,.65);
}
#servicegebiet .map-legend-list em {
  color: rgba(255,255,255,.4);
}
#servicegebiet .map-dot {
  border-color: rgba(255,255,255,.15);
}
#servicegebiet .map-search {
  border-top-color: rgba(255,255,255,.08);
}
#servicegebiet .map-search-label {
  color: rgba(255,255,255,.85);
}
#servicegebiet .map-search-row input {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.1);
  color: white;
}
#servicegebiet .map-search-row input::placeholder {
  color: rgba(255,255,255,.35);
}
#servicegebiet .map-search-row input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(236,180,143,.15);
}
#servicegebiet .map-search-btn {
  background: var(--grad-gold);
  color: var(--btn-text);
}
#servicegebiet .map-privacy-hint {
  color: rgba(255,255,255,.3);
}
#servicegebiet .map-privacy-hint a {
  color: rgba(255,255,255,.45);
}
/* (Servicegebiet → nächste Section: Transition oben konsolidiert) */

/* ─── Servicegebiet-Karte ────────────────────────────────────── */
.map-wrap {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 24px;
  align-items: start;
  margin-top: 36px;
  min-width: 0;
}
.map-container {
  border-radius: 12px;
  border: 1px solid var(--line);
  overflow: hidden;
  min-width: 0;
  isolation: isolate;
}
#serviceMap {
  height: 340px;
  filter: brightness(.85) contrast(1.1) saturate(.3) sepia(.15);
}
.map-legend {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px 18px;
  min-width: 0;
}
.map-legend-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
}
.map-legend-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.map-legend-list li {
  font-size: 14px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.map-legend-list em { color: var(--muted); font-size: 12px; font-style: normal; }
.map-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #8a6e2f;
  border: 2px solid #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,.2);
  flex-shrink: 0;
}
.map-dot--main { width: 14px; height: 14px; background: #b8973e; }
.map-dot--area { background: transparent; border: 2px dashed #b8973e; }
.map-search {
  margin-top: 20px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.map-search-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin: 0 0 10px;
}
.map-search-row {
  display: flex;
  gap: 8px;
}
.map-search-row input {
  flex: 1;
  min-width: 0;
  padding: 10px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--bg-soft);
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color .18s, box-shadow .18s;
}
.map-search-row input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,151,62,.12); }
.map-search-btn {
  padding: 10px 18px;
  background: var(--grad-gold);
  color: var(--btn-text);
  border: none;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: var(--shadow-gold);
}
.map-search-btn:hover {
  background: var(--grad-gold-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold-lg);
}

/* ─── Listings Tab-Buttons ───────────────────────────────────── */
.listings-tabs {
  display: inline-flex;
  gap: 4px;
  background: #ede8e3;
  border-radius: var(--radius-md);
  padding: 4px;
}
.listings-tab-btn {
  padding: 9px 26px;
  border-radius: var(--radius-sm);
  border: none;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background .2s, color .2s, box-shadow .2s;
  background: transparent;
  color: var(--muted);
  letter-spacing: .02em;
}
.listings-tab-btn:hover {
  color: var(--text);
}
.listings-tab-btn.active {
  background: var(--grad-gold);
  color: var(--btn-text);
  box-shadow: var(--shadow-gold);
}
.map-search-result { margin-top: 10px; font-size: 14px; display: none; }
.map-privacy-hint {
  margin: 12px 0 0;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.6;
  opacity: 0.8;
}
.map-privacy-hint a { color: inherit; text-decoration: underline; }
@media (max-width: 760px) {
  .map-wrap { grid-template-columns: 1fr; }
  #serviceMap { height: clamp(240px, 55vw, 340px); }
  .map-container { border-radius: var(--radius-md); }
}

/* ─── Ratgeber ───────────────────────────────────────────────── */
.ratgeber-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.filter-tag {
  padding: 7px 16px;
  border: 1.5px solid var(--line);
  border-radius: 20px;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: border-color .2s, background .2s, color .2s;
}
.filter-tag:hover {
  border-color: var(--gold-deep, #8a6e2f);
  color: var(--gold-deep, #8a6e2f);
}
.filter-tag.active {
  background: var(--gold-deep, #8a6e2f);
  border-color: var(--gold-deep, #8a6e2f);
  color: white;
}
.ratgeber-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.ratgeber-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 24px;
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--text);
  position: relative;
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.ratgeber-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-5px);
  border-color: rgba(201,169,110,.45);
}
.ratgeber-card-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.ratgeber-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}
.ratgeber-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
  flex: 1;
}
.ratgeber-read-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-deep);
  margin-top: 4px;
}
.ratgeber-newsletter-hint {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  padding: 14px 20px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 14px;
  color: var(--muted);
}
.ratgeber-newsletter-hint svg { flex-shrink: 0; color: var(--gold-deep); }
.ratgeber-newsletter-hint a { color: var(--gold-deep); font-weight: 600; text-decoration: none; }
.ratgeber-newsletter-hint a:hover { text-decoration: underline; }

/* ─── Ratgeber-Übersicht: CTA-Panel am Seitenende ───────────── */
.ratgeber-cta.panel {
  margin-top: 48px;
  text-align: center;
  padding: 32px;
}
.ratgeber-cta h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  margin: 8px 0 12px;
}
.ratgeber-cta p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 20px;
}

/* ─── Glossar ────────────────────────────────────────────────── */
.glossar-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 28px;
}
.glossar-filter-btn {
  padding: 5px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: background .15s, border-color .15s, color .15s;
}
.glossar-filter-btn:hover,
.glossar-filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
.glossar-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.glossar-item {
  border-bottom: 1px solid var(--line);
}
.glossar-item:last-child { border-bottom: none; }
.glossar-term {
  width: 100%;
  text-align: left;
  background: var(--card-bg);
  border: none;
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background .15s;
}
.glossar-term::after {
  content: '+';
  font-size: 18px;
  color: var(--gold-deep);
  flex-shrink: 0;
  transition: transform .2s;
}
.glossar-item.open .glossar-term::after { transform: rotate(45deg); }
.glossar-term:hover { background: #faf6f0; }
.glossar-def {
  display: none;
  padding: 0 20px 16px;
  background: var(--card-bg);
}
.glossar-item.open .glossar-def { display: block; }
.glossar-def p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}
.glossar-def em { color: var(--gold-deep); font-style: italic; }

/* ─── Terminbuchung ──────────────────────────────────────────── */

/* Trust-Leiste */
.termin-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin: -20px auto 0;
  max-width: 700px;
}
.termin-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--accent-dark);
  white-space: nowrap;
}
.termin-trust-item svg {
  color: var(--gold-deep);
  flex-shrink: 0;
}

.termin-wrap {
  max-width: 920px;
  margin: 40px auto 0;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 44px 56px 48px;
  box-shadow: var(--shadow-xl);
}

/* ─── Custom Termin-Picker ───────────────────────────────────────── */
.termin-picker { padding: 0; }

.termin-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.termin-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: transparent;
  color: var(--text);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color .2s, background .2s, transform .15s;
}
.termin-nav-btn:hover:not(:disabled) {
  border-color: var(--gold-deep);
  background: #fdf0e4;
  transform: scale(1.08);
}
.termin-nav-btn:disabled { opacity: .25; cursor: not-allowed; }

.termin-week-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  text-align: center;
  flex: 1;
  padding: 0 16px;
}

.termin-days {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.termin-day {
  background: var(--white);
  border: none;
  border-radius: 18px;
  padding: 28px 8px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  position: relative;
  box-shadow: 0 2px 12px rgba(0,0,0,.06), 0 1px 3px rgba(0,0,0,.04);
  transition: box-shadow .22s, transform .2s, background .2s;
}
.termin-day:hover:not(.past):not(.selected) {
  box-shadow: 0 10px 36px rgba(200,135,90,.22), 0 2px 8px rgba(0,0,0,.06);
  transform: translateY(-5px);
}
.termin-day.today {
  box-shadow: 0 4px 20px rgba(200,135,90,.2), 0 1px 4px rgba(0,0,0,.06);
}
.termin-day.today::after {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--gold-deep);
  opacity: .8;
}
.termin-day.selected {
  background: var(--grad-gold);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.termin-day.past {
  opacity: .22;
  cursor: not-allowed;
  box-shadow: none;
}

.termin-day-name {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--muted);
}
.termin-day.selected .termin-day-name { color: rgba(58,44,36,.6); }

.termin-day-num {
  font-size: 40px;
  font-weight: 300;
  font-family: 'Cormorant Garamond', serif;
  color: var(--text);
  line-height: 1;
}
.termin-day.selected .termin-day-num { color: var(--btn-text); }

.termin-day-mon {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.termin-day.selected .termin-day-mon { color: rgba(58,44,36,.6); }

.termin-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  text-align: center;
}
.termin-selected-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}
.termin-cta-context {
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-dark);
  margin: -4px 0 4px;
  letter-spacing: .01em;
}
.termin-privacy-hint {
  font-size: 11px;
  color: var(--muted);
  max-width: 360px;
  line-height: 1.5;
  margin: 4px 0 0;
  opacity: 0.55;
}
.termin-privacy-hint a { color: inherit; text-decoration: underline; }

@media (max-width: 720px) {
  .termin-trust { gap: 12px 20px; margin-top: -12px; }
  .termin-trust-item { font-size: 12.5px; }
  .termin-wrap { padding: 32px 20px 36px; border-radius: 20px; }
  .termin-days { gap: 6px; }
  .termin-day { padding: 20px 4px 18px; border-radius: 14px; gap: 4px; }
  .termin-day-num { font-size: clamp(22px, 7vw, 34px); }
  .termin-day-name { font-size: 9px; letter-spacing: .1em; }
  .termin-day-mon { display: none; }
  .termin-day.today::after { bottom: 6px; }
  .termin-week-label { font-size: 17px; }
  .termin-nav-btn { width: 36px; height: 36px; font-size: 14px; }
  .termin-nav { padding-bottom: 20px; margin-bottom: 20px; }
  .termin-cta { margin-top: 28px; padding-top: 24px; }
}

/* ─── Calendly Popup: Close-Button überschreiben ─────────────── */
.calendly-overlay .calendly-popup-close {
  width: 48px !important;
  height: 48px !important;
  top: auto !important;
  bottom: calc(50% - min(350px, 45vh) - 28px) !important;
  right: 50% !important;
  transform: translateX(50%) !important;
  background-image: url(https://assets.calendly.com/assets/external/close-icon.svg) !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 18px !important;
  background-color: #2f2a26 !important;
  border-radius: 50% !important;
  box-shadow: 0 4px 16px rgba(0,0,0,.35) !important;
  transition: background-color .2s, transform .18s, box-shadow .2s !important;
}
.calendly-overlay .calendly-popup-close:hover {
  background-color: #c8875a !important;
  transform: translateX(50%) scale(1.12) !important;
  box-shadow: 0 6px 24px rgba(200,135,90,.5) !important;
}

.termin-fallback {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 56px 32px;
  gap: 12px;
}
.termin-fallback-icon svg {
  width: 48px;
  height: 48px;
  stroke: var(--gold);
}
.termin-fallback h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}
.termin-fallback p {
  color: var(--muted);
  font-size: 15px;
  max-width: 400px;
  margin: 0;
}

/* ─── Newsletter ─────────────────────────────────────────────── */
.newsletter-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}
.newsletter-text h2 { margin-bottom: 12px; }
.newsletter-text p { color: var(--muted); font-size: 15px; line-height: 1.7; }
.newsletter-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.newsletter-form input[type=text],
.newsletter-form input[type=email] {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  background: var(--card-bg);
  color: var(--text);
  transition: border-color .15s;
}
.newsletter-form input:focus { outline: none; border-color: var(--gold); }
.newsletter-form .offer-checkbox {
  background: rgba(200,135,90,.06);
  border: 1px solid rgba(200,135,90,.18);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  margin-top: 14px;
}
@media (max-width: 760px) {
  .newsletter-wrap { grid-template-columns: 1fr; gap: 28px; }
  .newsletter-fields { grid-template-columns: 1fr; }
}

/* ─── Cookie-Banner ──────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 720px;
  background: var(--dark);
  color: rgba(255,255,255,.9);
  border-radius: 16px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 16px 48px rgba(0,0,0,.35);
  z-index: 9000;
  opacity: 1;
  transition: opacity .35s;
}
.cookie-inner { display: flex; align-items: center; gap: 20px; width: 100%; flex-wrap: wrap; }
.cookie-text { flex: 1; min-width: 200px; }
.cookie-text strong { font-size: 14px; font-weight: 700; display: block; margin-bottom: 4px; }
.cookie-text p { font-size: 13px; color: rgba(255,255,255,.65); line-height: 1.5; }
.cookie-text a { color: var(--gold); text-decoration: none; }
.cookie-text a:hover { text-decoration: underline; }
.cookie-btn {
  padding: 10px 22px;
  border-radius: var(--radius-md);
  border: none;
  background: var(--gold-deep);
  color: white;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s;
}
.cookie-btn:hover { background: #b5763e; }

/* ─── Kontakt-Tabs ───────────────────────────────────────────── */
.contact-form-panel { padding: 0; overflow: hidden; border-top: 1.5px solid rgba(200,135,90,.35); }
.contact-tabs {
  display: flex;
  border-bottom: 1px solid var(--line);
}
.contact-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 16px 12px;
  background: none;
  border: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: color .15s, background .15s;
  font-family: inherit;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.contact-tab:hover { color: var(--text); background: var(--bg-soft); }
.contact-tab.active { color: var(--gold-deep); border-bottom-color: var(--gold-deep); background: var(--white); }
.contact-form-panel form { padding: 24px; }

/* ─── Preview Modal ─────────────────────────────────────────── */
.preview-modal {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.preview-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(22,18,16,.6);
  backdrop-filter: blur(6px);
}
.preview-modal-inner {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  max-width: 560px;
  width: 100%;
  box-shadow: var(--shadow-xl);
  max-height: 90vh;
  overflow-y: auto;
}
.preview-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.preview-modal-head h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}
.preview-modal-close {
  background: var(--bg-soft);
  border: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  transition: background .15s, color .15s;
}
.preview-modal-close:hover { background: var(--line); color: var(--text); }
.preview-modal-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}
.sum-box { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 14px; }
.sum-label { color: var(--muted); font-size: 11.5px; text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.sum-value { font-size: 26px; font-weight: 800; margin-top: 6px; color: var(--accent-dark); }
.sum-box--locked { border-style: dashed; }
.sum-value--locked { font-size: 16px; font-weight: 600; color: var(--muted); letter-spacing: .04em; }
.preview-modal-text {
  white-space: pre-wrap;
  line-height: 1.78;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
  font-size: 14px;
  margin-bottom: 20px;
}

/* ─── Success Overlay ───────────────────────────────────────── */
.success-banner {
  position: fixed;
  inset: 0;
  background: rgba(22,18,16,.65);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  padding: 24px;
  backdrop-filter: blur(6px);
}
.success-inner {
  background: var(--white);
  border-radius: 20px;
  padding: 52px 44px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: 0 32px 80px rgba(0,0,0,.2);
}
.success-icon {
  font-size: 34px;
  width: 76px;
  height: 76px;
  background: var(--success-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  color: var(--success);
  font-weight: 700;
}
.success-inner h2 { font-size: 28px; margin: 0 0 12px; }
.success-inner p { color: var(--muted); font-size: 15px; margin: 0 0 30px; line-height: 1.65; }
.success-inner .offer-btn { width: auto; padding: 14px 36px; }
.success-objekt-ref {
  background: rgba(201,169,110,.08);
  border: 1px solid rgba(201,169,110,.25);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  font-size: 13.5px;
  color: var(--gold-deep);
  font-weight: 600;
  line-height: 1.5;
  margin: 0 0 16px;
}
.success-expectation {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 24px;
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
}

/* ─── Contact ────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 26px;
  align-items: start;
  margin-top: 44px;
}
.contact-info-col { display: flex; flex-direction: column; }
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 2px 18px rgba(0,0,0,.05);
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.contact-block { display: flex; flex-direction: column; gap: 4px; }
.contact-label {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--gold-deep);
  margin: 0 0 7px;
}
.contact-block strong { font-weight: 600; font-size: 15px; }
.contact-block span { color: var(--muted); font-size: 15px; line-height: 1.65; }
.contact-block a {
  color: var(--accent-dark);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color .2s;
}
.contact-block a:hover { color: var(--text); text-decoration: underline; }
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 14.5px;
  padding: 7px 0;
  border-bottom: 1px solid var(--line);
}
.hours-row:last-child { border-bottom: none; }
.hours-row span { color: var(--muted); }
.hours-row strong { font-weight: 600; color: var(--text); }
.contact-status { margin-top: 16px; padding: 14px 18px; border-radius: var(--radius-md); font-size: 14px; display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; font-weight: 500; }
.contact-status.success { background: var(--success-bg); color: var(--success); border: 1px solid rgba(45,106,74,.15); }
.contact-status.error { background: var(--error-bg); color: var(--error); border: 1px solid rgba(192,57,43,.15); }

/* ─── Footer ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--dark);
  color: white;
  box-shadow: inset 0 1px 0 rgba(201,169,110,.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1.2fr 0.7fr 1fr;
  gap: 40px;
  padding: 24px 0 48px;
}
.footer-logo { height: 48px; width: auto; margin-bottom: 18px; }
.footer-brand-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  line-height: 1.35;
  letter-spacing: .02em;
  margin-bottom: 18px;
}
.footer-brand-col p {
  color: rgba(255,255,255,.46);
  font-size: 14px;
  line-height: 1.75;
  max-width: 280px;
}
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: border-color .2s, color .2s, background .2s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); background: rgba(236,180,143,.08); }
.footer-social svg { width: 15px; height: 15px; }
.footer-heading {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--gold);
  margin: 0 0 20px;
}
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { color: rgba(255,255,255,.5); text-decoration: none; font-size: 14px; transition: color .2s; }
.footer-nav a:hover { color: rgba(255,255,255,.9); }
.footer-address { color: rgba(255,255,255,.5); font-size: 14px; line-height: 1.78; }
.footer-address a {
  color: rgba(255,255,255,.5);
  text-decoration: none;
  display: block;
  transition: color .2s;
}
.footer-address a:hover { color: rgba(255,255,255,.88); }
.footer-hours { margin-top: 14px; font-size: 13px; color: rgba(255,255,255,.32); line-height: 1.75; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 22px 0;
  font-size: 12.5px;
  color: rgba(255,255,255,.28);
}
.footer-inner a { color: rgba(255,255,255,.4); text-decoration: none; transition: color .2s; }
.footer-inner a:hover { color: rgba(255,255,255,.9); }
.footer-inner .footer-social { margin-top: 0; }
@media (max-width: 600px) {
  .footer-inner { justify-content: center; text-align: center; }
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 22px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: rgba(255,255,255,.28);
}

.footer-bottom-links { display: inline-flex; align-items: center; gap: 8px; }
.footer-bottom-links a { color: rgba(255,255,255,.4); text-decoration: none; transition: color .2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,.9); }
.footer-bottom-sep { color: rgba(255,255,255,.2); }

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-mark-wrap { order: -1; }
  .hero-portrait { order: -1; align-self: auto; }
  .hero-portrait-inner { max-width: min(340px, 100%); margin: 0 auto; height: auto; aspect-ratio: 3/4; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .vdiv-grid { grid-template-columns: 1fr; gap: 44px; text-align: center; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .google-rating-bar { gap: 10px; }
  .google-review-btn { margin-left: 0; width: 100%; text-align: center; }
  .cookie-banner { bottom: 0; border-radius: 16px 16px 0 0; width: 100%; left: 0; transform: none; }
  .contact-tab { font-size: 13px; padding: 14px 8px; gap: 5px; }
  .vdiv-logo-wrap img { max-width: 260px; }
  .contact-grid { grid-template-columns: 1fr; }
  .offer-form-grid { grid-template-columns: 1fr; }
  .field-grid.two, .field-grid.three, .field-grid.two-two,
  .offer-form-card .actions, .summary-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; padding-top: 24px; }
  .footer-bottom .container { justify-content: center; text-align: center; }
  .trust-belt { flex-wrap: nowrap; gap: 16px; padding: 12px 0; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .trust-belt::-webkit-scrollbar { display: none; }
  .trust-belt-items { flex-wrap: nowrap; gap: 20px; flex-shrink: 0; }
  .trust-belt-link { flex-shrink: 0; }
}

@media (max-width: 500px) {
  .cards { grid-template-columns: 1fr; }
  .card  { padding: 22px 20px !important; }
  .review-grid { grid-template-columns: 1fr; }
}

/* ─── Desktop nav – standardmäßig sichtbar ───────────────────── */
.nav { display: flex; gap: 26px; align-items: center; }

/* ─── Mobile nav (unter 960px) ───────────────────────────────── */
@media (max-width: 959px) {
  /* backdrop-filter auf Mobile deaktivieren, damit es keinen
     Containing Block für die fixed-positionierte Nav erzeugt */
  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: var(--dark);
  }
  .nav-burger { display: flex !important; margin-left: auto; }
  .nav {
    display: none !important;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: fixed;
    left: 0; right: 0;
    background: var(--dark);
    padding: 12px 24px 22px;
    border-top: 1px solid rgba(255,255,255,.07);
    z-index: 9999;
  }
  .nav.nav-open { display: flex !important; }
  .nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
    font-size: 15px;
  }
  .nav a:last-child { border-bottom: none; }
  .nav-cta { margin-top: 8px; text-align: center; border-radius: var(--radius-md); }
}

/* ─── Mittelgröße (960–1100px): kleinere Nav-Links ───────────── */
@media (min-width: 960px) and (max-width: 1099px) {
  .nav { gap: 16px; }
  .nav a { font-size: 13px; }
}

@media (max-width: 768px) {
  .section { padding: 68px 0; }
  .hero { padding: 72px 0 64px; }
  .trust-belt { padding: 10px 0; gap: 12px; }
  .trust-belt-items { gap: 16px; }
  .trust-belt-items li { font-size: 11.5px; }
  .trust-belt-link { font-size: 10.5px; }
  .cta-section { padding: 48px 0 !important; }
  .testimonials-dark { padding: 48px 0 !important; }
  .section-newsletter { padding: 48px 0 !important; }
  #servicegebiet { padding: 52px 0 !important; }
  .cta-quote { font-size: clamp(22px, 6vw, 28px); }
  .hero-portrait::before, .hero-portrait::after { display: none; }
  .card::after { font-size: 48px; }
}

/* ═══════════════════════════════════════════════════════════
   POP & LEBEN — Animationen, Energie, Dynamik
   ═══════════════════════════════════════════════════════════ */

/* ─── Keyframes ──────────────────────────────────────────── */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}
@keyframes float {
  0%, 100% { transform: translateY(-14px) rotate(-1deg); }
  50%       { transform: translateY(-24px) rotate(1deg); }
}
@keyframes floatBase {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes pulseRing {
  0%   { box-shadow: 0 0 0 0 rgba(200,135,90,.5), 0 14px 36px rgba(200,135,90,.4); }
  65%  { box-shadow: 0 0 0 18px rgba(200,135,90,0), 0 14px 36px rgba(200,135,90,.4); }
  100% { box-shadow: 0 0 0 0 rgba(200,135,90,0), 0 14px 36px rgba(200,135,90,.4); }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(.9); }
  to   { opacity: 1; transform: none; }
}

/* ─── Hero: Gradient-Text Headline ──────────────────────── */
.hero h1 {
  background: linear-gradient(120deg, #ffffff 50%, rgba(236,180,143,.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Hero: Staggered Entry-Animation ───────────────────── */
.hero-copy .eyebrow      { animation: heroFadeUp .55s .0s  ease both; }
.hero-copy h1            { animation: heroFadeUp .65s .08s ease both; }
.hero-copy .lead         { animation: heroFadeUp .65s .18s ease both; }
.hero-actions            { animation: heroFadeUp .65s .28s ease both; }
.hero-contact-strip      { animation: heroFadeUp .65s .38s ease both; }
.hero-portrait           { animation: heroFadeUp .8s  .12s ease both; }

/* ─── Hero: Schwebende Dekoration hinter Portrait ────────── */
.hero-portrait { z-index: 1; }
.hero-portrait::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: rgba(236,180,143,.07);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}
.hero-portrait::after {
  content: '';
  position: absolute;
  width: 220px; height: 220px;
  border: 1px solid rgba(236,180,143,.2);
  border-radius: 50%;
  bottom: -30px; right: -30px;
  pointer-events: none;
  animation: spin 30s linear infinite;
  background: linear-gradient(transparent, transparent) padding-box,
              linear-gradient(180deg, rgba(236,180,143,.3), transparent) border-box;
  border: 1px solid transparent;
}
.hero-portrait-inner { position: relative; z-index: 1; }



/* ─── Nummerierte Cards ──────────────────────────────────── */
.cards { counter-reset: card-num; }
.card  { counter-increment: card-num; overflow: hidden; }
.card::after {
  content: "0" counter(card-num);
  position: absolute;
  top: 14px; right: 18px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
  color: var(--line);
  letter-spacing: -.04em;
  pointer-events: none;
  transition: color .35s ease, transform .35s ease;
}
.card:hover::after {
  color: rgba(236,180,143,.3);
  transform: translateY(-8px) scale(1.06);
}

/* ─── Card hover: warmer Hintergrund-Shift ───────────────── */
.card:hover {
  background: linear-gradient(160deg, #fffdfb 0%, #fdf4ec 100%) !important;
}

/* ─── CTA Quote ──────────────────────────────────────────── */
.cta-quote {
  position: relative;
  font-weight: 700;
}


/* ─── About: Dot-Grid im Hintergrund ────────────────────── */

/* (Trust-Bar: Hover-Logik konsolidiert im Basis-Block, Zeile ~471) */

/* ─── Listing-Card: dynamischerer Hover ─────────────────── */
.listing-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 8px 28px rgba(0,0,0,.11),
    0 28px 72px rgba(200,135,90,.14);
  border-color: rgba(201,169,110,.3);
}

/* ─── Footer Social: Bounce beim Hover ───────────────────── */
.footer-social a {
  transition: border-color .2s, color .2s, background .2s, transform .2s;
}
.footer-social a:hover { transform: translateY(-4px); }

/* ─── FAQ: Link-Feeling beim Hover ──────────────────────── */
.faq-item summary {
  transition: color .2s, background .2s;
}
.faq-item summary:hover {
  color: var(--accent-dark);
  background: var(--bg-soft);
}
.faq-item[open] summary {
  color: var(--text);
  background: transparent;
}

/* ─── Stats-Sektion ──────────────────────────────────────── */

/* ─── Aktiver Nav-Link ───────────────────────────────────── */
.nav a.nav-active:not(.nav-cta) {
  color: var(--gold);
  font-weight: 600;
}
.nav a.nav-active:not(.nav-cta)::after {
  width: 100%;
  background: var(--gold);
}

/* ─── Nav NEW-Badge ─────────────────────────────────────── */
.nav-new-badge {
  position: absolute;
  top: -14px;
  right: -14px;
  background: linear-gradient(135deg, #c0392b 0%, #c9a96e 100%);
  color: #fff;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 2px 5px;
  line-height: 1.4;
  box-shadow: 0 1px 4px rgba(192,57,43,.45);
  animation: badge-pulse 2s ease-in-out infinite;
  pointer-events: none;
}
@keyframes badge-pulse {
  0%, 100% { opacity: 1;   transform: scale(1); }
  50%       { opacity: .8; transform: scale(1.08); }
}

/* Im Footer und Mobile-Nav inline neben dem Linktext */
.footer-nav a .nav-new-badge {
  position: static;
  display: inline-block;
  vertical-align: middle;
  margin-left: 6px;
  top: auto;
  right: auto;
}
@media (max-width: 959px) {
  .nav a .nav-new-badge {
    position: static;
    display: inline-block;
    vertical-align: middle;
    margin-left: 8px;
    top: auto;
    right: auto;
  }
}

/* ─── Ratgeber-Karten NEW-Badge ─────────────────────────── */
.card-new-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(135deg, #c0392b 0%, #c9a96e 100%);
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 5px;
  padding: 3px 8px;
  line-height: 1.4;
  box-shadow: 0 2px 6px rgba(192,57,43,.4);
  animation: badge-pulse 2s ease-in-out infinite;
  pointer-events: none;
}

/* ─── prefers-reduced-motion: alles aus ─────────────────── */
@media (prefers-reduced-motion: reduce) {
  .hero h1 {
    -webkit-text-fill-color: white;
    background: none;
    color: white;
  }
  .hero-copy .eyebrow,
  .hero-copy h1,
  .hero-copy .lead,
  .hero-actions,
  .hero-contact-strip,
  .hero-portrait { animation: none; opacity: 1; transform: none; }
  .hero-portrait::after { animation: none; }
  .cta-inner .btn-primary { animation: none; box-shadow: 0 14px 36px rgba(200,135,90,.4); }
}

/* ─── Premium Feinschliff ────────────────────────────────────── */

/* Section-Kicker: redaktionelle Goldlinien */
.section-kicker {
  display: flex;
  align-items: center;
  gap: 11px;
}

/* Linksbündige Kicker: nur Linie davor (Prefix) */
.section-kicker::before {
  content: '';
  flex: 0 0 22px;
  height: 1px;
  background: var(--gold-deep);
  opacity: .65;
}

/* Zentrierte Kicker: symmetrisch, Linie links + rechts */
.section-kicker.center {
  justify-content: center;
}
.section-kicker.center::before {
  flex: 0 0 32px;
  background: linear-gradient(90deg, transparent, var(--gold-deep));
  opacity: .75;
}
.section-kicker.center::after {
  content: '';
  flex: 0 0 32px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-deep), transparent);
  opacity: .75;
}

/* Section-alt: weicher Übergang — oben und unten in Weiß auslaufend */
.section-alt { background: linear-gradient(180deg, transparent 0%, #f9f5ef 8%, #f7f2eb 50%, #f9f5ef 92%, transparent 100%); }
/* Aufeinanderfolgende section-alt: kein weißer Spalt dazwischen */
.section-alt + .section-alt { background: linear-gradient(180deg, #f7f2eb 0%, #f7f2eb 50%, #f9f5ef 92%, transparent 100%); }
.section-alt + .section-alt + .section-alt { background: #f7f2eb; }

/* Offer-Form: stärkerer Schatten — zentrales Conversion-Element */
.offer-form-card {
  box-shadow:
    0 1px 3px rgba(0,0,0,.05),
    0 6px 20px rgba(0,0,0,.07),
    0 20px 56px rgba(0,0,0,.07) !important;
}
/* Contact-Panel: mittlerer Schatten — sekundäres Formular */
.contact-form-panel {
  box-shadow:
    0 1px 2px rgba(0,0,0,.04),
    0 5px 16px rgba(0,0,0,.06),
    0 18px 52px rgba(0,0,0,.06) !important;
}

/* ─── 1. Gradient-Text ───────────────────────────────────────── */
.gold-text {
  font-style: inherit;
  background: linear-gradient(110deg, #e8c98a 0%, #c9a96e 40%, #f0d9a8 70%, #c9a96e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* Fallback für ältere Browser */
  color: var(--gold);
}

/* ─── 2. CTA-Button Glow-Pulse ───────────────────────────────── */
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 2px 10px rgba(200,135,90,.22), 0 0 0 0 rgba(200,135,90,0); }
  50%       { box-shadow: 0 2px 10px rgba(200,135,90,.22), 0 0 0 10px rgba(200,135,90,0); }
}
.cta-inner .btn-primary {
  animation: glow-pulse 2.8s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .cta-inner .btn-primary { animation: none; }
}

/* ─── 4. Individuelle Element-Animationen innerhalb Sections ─── */
.section h2,
.section .section-intro,
.section .section-kicker {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity .6s cubic-bezier(.25,.46,.45,.94),
    transform .6s cubic-bezier(.25,.46,.45,.94);
}
.section.visible h2       { opacity: 1; transform: none; transition-delay: 0ms; }
.section.visible .section-kicker { opacity: 1; transform: none; transition-delay: 0ms; }
.section.visible .section-intro  { opacity: 1; transform: none; transition-delay: 100ms; }
/* Elemente die sofort sichtbar sein sollen (Hero etc) */
.hero h2, .hero .section-intro, .hero .section-kicker,
.cta-inner h2, .cta-inner .section-intro { opacity: 1 !important; transform: none !important; transition: none !important; }
@media (prefers-reduced-motion: reduce) {
  .section h2,
  .section .section-intro,
  .section .section-kicker {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ─── 5. Footer Gold-Akzentlinie ────────────────────────────── */
.site-footer {
  border-top: none;
  background: linear-gradient(180deg, #2a221c 0%, #1a1614 80px, #1a1614 100%) !important;
  box-shadow: 0 -40px 60px -20px rgba(26,22,20,.12);
}

/* ─── 6. Testimonial-Cards – Premium-Upgrade ────────────────── */
.testimonial-card {
  background: linear-gradient(160deg, #fdfcfb 0%, #faf7f3 100%);
  padding: 30px 28px;
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 8px;
  right: 20px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 120px;
  line-height: 1;
  color: rgba(201,169,110,.1);
  pointer-events: none;
  user-select: none;
  font-weight: 700;
}
.testimonial-card p {
  font-size: 14.5px;
  line-height: 1.8;
  color: #5a5250;
}

/* ─── 7. Link-Hover Underline-Animation ─────────────────────── */
/* Footer-Nav */
.footer-nav a {
  position: relative;
  display: inline-block;
}
.footer-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}
.footer-nav a:hover::after { transform: scaleX(1); }
/* Inline-Textlinks im Body (nicht Buttons, nicht Nav-CTA) */
.section a:not([class]),
.about-links a,
.contact-form-panel a {
  position: relative;
  text-decoration: none;
  background-image: linear-gradient(var(--gold-deep), var(--gold-deep));
  background-size: 0% 1px;
  background-repeat: no-repeat;
  background-position: left bottom;
  transition: background-size .22s ease, color .2s;
}
.section a:not([class]):hover,
.about-links a:hover,
.contact-form-panel a:hover {
  background-size: 100% 1px;
}

/* Hero-Portrait: warmer Leuchtring */
.hero-portrait-inner {
  box-shadow:
    0 20px 60px rgba(0,0,0,.45),
    0 40px 100px rgba(0,0,0,.28),
    0 0 0 1px rgba(236,180,143,.12);
}

/* ─── Stagger-Animationen für Card-Grids ─────────────────────── */
/* Karten starten leicht unter ihrer Endposition und faden ein */
.cards .card,
.ratgeber-grid .ratgeber-card,
.listings-grid .listing-card {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity .55s cubic-bezier(.25,.46,.45,.94),
    transform .55s cubic-bezier(.25,.46,.45,.94),
    box-shadow .3s ease,
    border-top-color .3s ease;
}
.section.visible .cards .card,
.section.visible .ratgeber-grid .ratgeber-card,
.section.visible .listings-grid .listing-card {
  opacity: 1;
  transform: none;
}
/* Versatz: jede Karte kommt 90ms nach der vorherigen */
.cards .card:nth-child(1),
.ratgeber-grid .ratgeber-card:nth-child(1),
.listings-grid .listing-card:nth-child(1) { transition-delay: 0ms; }
.cards .card:nth-child(2),
.ratgeber-grid .ratgeber-card:nth-child(2),
.listings-grid .listing-card:nth-child(2) { transition-delay: 90ms; }
.cards .card:nth-child(3),
.ratgeber-grid .ratgeber-card:nth-child(3),
.listings-grid .listing-card:nth-child(3) { transition-delay: 180ms; }
.cards .card:nth-child(4),
.ratgeber-grid .ratgeber-card:nth-child(4),
.listings-grid .listing-card:nth-child(4) { transition-delay: 270ms; }
.cards .card:nth-child(5),
.ratgeber-grid .ratgeber-card:nth-child(5),
.listings-grid .listing-card:nth-child(5) { transition-delay: 360ms; }
.cards .card:nth-child(6),
.ratgeber-grid .ratgeber-card:nth-child(6),
.listings-grid .listing-card:nth-child(6) { transition-delay: 450ms; }

@media (prefers-reduced-motion: reduce) {
  .cards .card,
  .ratgeber-grid .ratgeber-card,
  .listings-grid .listing-card {
    opacity: 1;
    transform: none;
    transition: none;
    transition-delay: 0ms !important;
  }
}

/* ─── Mobile Nav – Vollbild-Overlay ──────────────────────────── */
@media (max-width: 959px) {
  .nav.nav-open {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    padding: 80px 28px 36px !important;
    background: rgba(20,16,13,.97) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    z-index: 999 !important;
    border-top: none !important;
    gap: 4px !important;
    overflow-y: auto;
  }
  .nav.nav-open a {
    font-size: 20px !important;
    padding: 16px 0 !important;
    border-bottom: 1px solid rgba(255,255,255,.08) !important;
    letter-spacing: .01em;
  }
  .nav.nav-open .nav-cta {
    margin-top: 12px !important;
    padding: 16px 0 !important;
    font-size: 20px !important;
    border: none !important;
    border-top: 1px solid rgba(236,180,143,.18) !important;
    border-bottom: none !important;
    border-radius: 0 !important;
    text-align: left;
    color: var(--gold) !important;
  }
}

/* ═══════════════════════════════════════════════════════════════
   EINHEITLICHES BUTTON-SYSTEM
   Alle primären Aktions-Buttons verwenden dieselbe visuelle DNA
   wie btn-primary: Pill-Form, warmer Gradient, identische Schatten.
   Alle sekundären Buttons: Pill-Form, konsistente Outline.
   ═══════════════════════════════════════════════════════════════ */

/* ── Gemeinsame Basis aller Buttons ───────────────────────────── */
.listing-cta,
.listing-expose-btn,
.offer-btn,
.cookie-btn {
  border-radius: var(--radius-md) !important;
  font-family: inherit;
  font-weight: 600;
  letter-spacing: .03em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  touch-action: manipulation;
  transition: transform .22s, box-shadow .22s, background .22s, border-color .22s, color .22s !important;
}

/* ── Primäre Aktions-Buttons: gleicher Gradient wie btn-primary ── */
.listing-cta,
.offer-btn,
.cookie-btn {
  background: var(--grad-gold) !important;
  color: var(--btn-text) !important;
  border: none !important;
  box-shadow: var(--shadow-gold) !important;
}
.listing-cta:hover,
.offer-btn:hover,
.cookie-btn:hover {
  background: var(--grad-gold-hover) !important;
  transform: translateY(-3px) !important;
  box-shadow: var(--shadow-gold-lg) !important;
  color: var(--btn-text) !important;
}

/* ── Sekundäre/Outline Buttons ───────────────────────────────── */
.listing-expose-btn,
.offer-btn.secondary {
  background: transparent !important;
  color: var(--gold-deep) !important;
  border: 1.5px solid rgba(138,110,47,.45) !important;
  box-shadow: none !important;
}
.listing-expose-btn:hover,
.offer-btn.secondary:hover {
  background: rgba(201,169,110,.08) !important;
  border-color: var(--gold) !important;
  color: var(--gold-deep) !important;
  transform: translateY(-2px) !important;
  box-shadow: none !important;
}

/* ── offer-btn disabled bleibt neutral ───────────────────────── */
.offer-btn:disabled {
  opacity: .5 !important;
  cursor: not-allowed !important;
  transform: none !important;
  box-shadow: none !important;
}

/* ── nav-cta: Uppercase entfernen, optisch an btn-primary angleichen */
.nav-cta {
  text-transform: none !important;
  letter-spacing: .02em !important;
  font-size: 14px !important;
}

/* ── btn-secondary: als konsistenter Outline-Button ─────────── */
.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-md);
}
.btn-secondary:hover {
  background: var(--bg-soft);
  border-color: var(--gold);
  color: var(--gold-deep);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════════
   BREATHING ROOM — Premium-Spacing-System
   Mehr Luft, samtiger Rhythmus, Bitpanda-Qualität
   ═══════════════════════════════════════════════════════════════ */

/* ── Hintergrundfarben wärmer & samtiger ──────────────────────── */
:root {
  --bg:      #f4ede3;
  --bg-soft: #faf6f0;
  --white:   #fffcf8;
}

/* ── Mehr Luft im Body-Text ───────────────────────────────────── */
body {
  font-size: 16.5px;
  line-height: 1.78;
}
p { margin: 0 0 20px; }
p:last-child { margin-bottom: 0; }

/* ── Heading-Abstände großzügiger ────────────────────────────── */
h1, h2, h3 { margin: 0 0 24px; }
h2 { margin-bottom: 28px; }

/* ── Section-Padding: deutlich mehr Luft ─────────────────────── */
.section { padding: 148px 0; }

/* ── Container: responsive Randabstand, mehr Luft auf Desktop ── */
.container {
  width: min(1160px, calc(100% - clamp(40px, 5vw, 80px)));
}

/* ── Section-Intro: weiter, größer, mehr Abstand nach unten ──── */
.section-intro {
  max-width: 720px;
  font-size: 18.5px;
  line-height: 1.85;
  margin-bottom: 72px;
  color: var(--muted);
}

/* (Trust-Bar Padding: konsolidiert in Basis-Block, Zeile ~468) */

/* ── Cards: großzügigeres Innen-Padding ──────────────────────── */
.card { padding: 36px !important; }

/* ── Testimonial-Cards: mehr Raum ────────────────────────────── */
.testimonial-card { padding: 36px 32px; }

/* ── Listing-Cards: mehr Innen-Padding ──────────────────────── */
.listing-body { padding: 24px 28px 28px; }

/* ── FAQ: mehr Luft pro Item ─────────────────────────────────── */
.faq-item summary { padding: 22px 26px; }
.faq-item p       { padding: 0 26px 22px; }

/* ── Heading-Abstände zum darunterliegenden Inhalt ───────────── */
.section-kicker { margin-bottom: 16px; }

/* ── Mobile: kleinere Korrektur damit nichts bricht ──────────── */
@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .hero     { padding: 72px 0 64px; }
  .section-intro { font-size: 17px; margin-bottom: 52px; }
  body { font-size: 16px; }
  .card { padding: 26px 22px !important; }
}
@media (max-width: 500px) {
  .card { padding: 22px 20px !important; }
}


/* ═══════════════════════════════════════════════════════════════
   EINHEITLICHE FORMULARFELDER
   border-radius: var(--radius-md) + starkes Focus-Gold überall
   ═══════════════════════════════════════════════════════════════ */
.offer-form-card input,
.offer-form-card select,
.offer-form-card textarea,
.newsletter-form input[type=text],
.newsletter-form input[type=email],
.contact-form-panel input,
.contact-form-panel select,
.contact-form-panel textarea {
  border-radius: var(--radius-md) !important;
  padding: 13px 18px !important;
  border: 1.5px solid var(--line) !important;
  transition: border-color .18s, box-shadow .18s, background .18s !important;
}
.offer-form-card input:focus,
.offer-form-card select:focus,
.offer-form-card textarea:focus,
.newsletter-form input:focus,
.contact-form-panel input:focus,
.contact-form-panel select:focus,
.contact-form-panel textarea:focus {
  outline: none !important;
  border-color: var(--gold-deep) !important;
  box-shadow:
    0 0 0 4px rgba(201,169,110,.18),
    0 2px 10px rgba(0,0,0,.05) !important;
  background: var(--white) !important;
}
/* Newsletter-Spezifik: dunkel + kompakt */
.section-newsletter .newsletter-form input[type=text],
.section-newsletter .newsletter-form input[type=email] {
  padding: 12px 16px !important;
  background: rgba(255,255,255,.05) !important;
  border-color: rgba(255,255,255,.10) !important;
  color: white !important;
}
.section-newsletter .newsletter-form input::placeholder {
  color: rgba(255,255,255,.30);
}
.section-newsletter .newsletter-form input:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(201,169,110,.15) !important;
  background: rgba(255,255,255,.08) !important;
}
.section-newsletter .newsletter-form .offer-checkbox {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.08);
}
.section-newsletter .newsletter-form .offer-checkbox label {
  color: rgba(255,255,255,.55);
}
.section-newsletter .newsletter-form .offer-checkbox a {
  color: var(--gold);
}

/* ═══════════════════════════════════════════════════════════════
   PREMIUM UI IMPROVEMENTS — 8 Items
   ═══════════════════════════════════════════════════════════════ */

/* ── 1. Custom Scrollbar: thin gold ──────────────────────────── */
::-webkit-scrollbar               { width: 6px; height: 6px; }
::-webkit-scrollbar-track         { background: transparent; }
::-webkit-scrollbar-thumb         {
  background: linear-gradient(180deg, var(--gold-deep), var(--gold));
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover   { background: var(--gold-deep); }

/* (Trust-Bar Premium-Werte: konsolidiert in Basis-Block, Zeile ~475) */

/* ── 3. Newsletter Section: dunkle Welt ────────────────────── */
.section-newsletter {
  background: var(--dark) !important;
  color: white;
  position: relative;
  overflow: hidden;
  padding: 64px 0 !important;
}
.section-newsletter::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 40% 50%, rgba(118,82,55,.30) 0%, transparent 55%);
  pointer-events: none;
}
.section-newsletter::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.section-newsletter .newsletter-wrap   { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.section-newsletter .section-kicker    { color: var(--gold); }
.section-newsletter .newsletter-text h2 { font-size: clamp(22px, 2.8vw, 30px); color: rgba(255,255,255,.93); }
.section-newsletter .newsletter-text p  { font-size: 15px; line-height: 1.78; color: rgba(255,255,255,.50); }

/* ── 4. Social Icons: spring-scale micro-animation ───────────── */
.footer-social a {
  transition:
    border-color .2s,
    color .2s,
    background .2s,
    transform .28s cubic-bezier(.34, 1.56, .64, 1) !important;
}
.footer-social a:hover {
  transform: scale(1.18) translateY(-2px) !important;
  border-color: var(--gold) !important;
  color: var(--gold) !important;
  background: rgba(201,169,110,.1) !important;
}
.footer-social svg { width: 17px; height: 17px; }

/* ── 5. Über-mich: more visual impact on quote ───────────────── */
.about-quote {
  padding: 44px 48px !important;
  background: linear-gradient(135deg,
    rgba(201,169,110,.13) 0%,
    rgba(200,135,90,.06) 100%) !important;
  border-left: 4px solid var(--gold-deep) !important;
  border-radius: 4px 24px 24px 4px !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.85),
    0 6px 32px rgba(0,0,0,.07) !important;
  font-size: clamp(22px, 2.6vw, 30px) !important;
  position: relative;
}
.about-text p {
  font-size: 16.5px !important;
  line-height: 1.85 !important;
}

/* ── 6. Ratgeber-Artikel: premium reading typography ─────────── */
.legal-content {
  font-size: 16.5px;
}
.legal-content h3 {
  font-size: 21px !important;
  font-weight: 700 !important;
  margin-top: 8px !important;
  margin-bottom: 14px !important;
  color: var(--text) !important;
  line-height: 1.35 !important;
}
.legal-content p,
.legal-content li {
  font-size: 16.5px !important;
  line-height: 1.9 !important;
  margin: 0 0 16px !important;
}
.legal-content ul {
  padding-left: 22px !important;
  margin: 0 0 16px !important;
}
.legal-content ul li { margin-bottom: 8px !important; }
.legal-content > div { padding-bottom: 32px !important; }

/* ── 7. Skeleton Loader: shimmer placeholder cards ───────────── */
@keyframes skeleton-shimmer {
  0%   { background-position: -600px 0; }
  100% { background-position: 600px 0; }
}
.listing-skeleton {
  border-radius: 18px;
  overflow: hidden;
  background: #ede8e3;
  border: 1px solid var(--line);
}
.listing-skeleton-img {
  height: 200px;
  background: linear-gradient(
    90deg,
    #e8e0d8 25%, #f2ede6 50%, #e8e0d8 75%
  );
  background-size: 1200px 100%;
  animation: skeleton-shimmer 1.5s infinite linear;
}
.listing-skeleton-body { padding: 20px; }
.listing-skeleton-line {
  height: 14px;
  border-radius: 7px;
  margin-bottom: 12px;
  background: linear-gradient(
    90deg,
    #e8e0d8 25%, #f2ede6 50%, #e8e0d8 75%
  );
  background-size: 1200px 100%;
  animation: skeleton-shimmer 1.5s infinite linear;
}
.listing-skeleton-line:nth-child(2) { animation-delay: .1s; }
.listing-skeleton-line:nth-child(3) { animation-delay: .2s; }
.listing-skeleton-line--short   { width: 65%; }
.listing-skeleton-line--shorter { width: 42%; }

/* ── 8. FAQ smooth animation: CSS side ───────────────────────── */
.faq-item > p {
  overflow: hidden;
  transition:
    max-height .34s cubic-bezier(.4, 0, .2, 1),
    opacity .28s ease,
    padding-top .34s,
    padding-bottom .34s;
}

/* ═══════════════════════════════════════════════════════════════
   PREMIUM ADDITIONS — Tilt, Toast, Blur-Up, Floating Labels
   ═══════════════════════════════════════════════════════════════ */

/* ── 3D Tilt: Card-Perspektive ───────────────────────────────── */
.cards .card {
  will-change: transform;
  transition: transform .18s ease, box-shadow .22s;
}
/* Tilt-Reset läuft über transition, Tracking über JS (kein transition) */

/* ── Toast Notifications ─────────────────────────────────────── */
@keyframes toastIn {
  from { opacity: 0; transform: translateX(24px) scale(.95); }
  to   { opacity: 1; transform: none; }
}
@keyframes toastOut {
  from { opacity: 1; transform: none; }
  to   { opacity: 0; transform: translateX(12px) scale(.97); }
}
#toastContainer {
  position: fixed;
  bottom: 80px; right: 20px;
  z-index: 8500;
  display: flex;
  flex-direction: column-reverse;
  gap: 10px;
  pointer-events: none;
  align-items: flex-end;
}
.toast {
  pointer-events: all;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px 14px 18px;
  border-radius: 16px;
  min-width: 260px;
  max-width: 340px;
  box-shadow:
    0 8px 32px rgba(0,0,0,.16),
    0 2px 8px rgba(0,0,0,.08);
  font-size: 13.5px;
  line-height: 1.55;
  animation: toastIn .3s cubic-bezier(.34, 1.56, .64, 1) both;
}
.toast--success {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border: 1px solid #86efac;
  color: #166534;
}
.toast--error {
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  border: 1px solid #fca5a5;
  color: #991b1b;
}
.toast-icon   { flex-shrink: 0; font-size: 18px; line-height: 1.2; }
.toast-body   { flex: 1; }
.toast-close  {
  background: none; border: none; cursor: pointer;
  opacity: .45; font-size: 15px; padding: 2px 0 0 4px; line-height: 1;
  flex-shrink: 0;
  transition: opacity .15s;
  color: inherit;
}
.toast-close:hover { opacity: 1; }
.toast.toast--leaving { animation: toastOut .22s ease forwards; }

/* ── Blur-Up Image Loading ───────────────────────────────────── */
.listing-img-wrap { overflow: hidden; }
.listing-img-blur-up {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: blur(14px);
  transform: scale(1.05);
  transition: filter .55s ease, transform .55s ease;
}
.listing-img-blur-up.listing-img--loaded {
  filter: none;
  transform: scale(1);
}

/* ── Floating Labels ─────────────────────────────────────────── */
.float-label {
  position: relative !important;
  margin-bottom: 14px !important;
}
.float-label input,
.float-label textarea {
  padding-top: 24px !important;
  padding-bottom: 8px !important;
}
.float-label__text {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  transition:
    top .2s ease, transform .2s ease,
    font-size .2s ease, color .2s ease,
    letter-spacing .15s ease, font-weight .15s;
  pointer-events: none;
  color: var(--muted);
  font-size: 14.5px;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: calc(100% - 36px);
  display: block !important;
  margin-bottom: 0 !important;
}
/* Textarea: Label startet oben */
.float-label:has(textarea) .float-label__text {
  top: 18px;
  transform: none;
}
/* Floated state — Fokus oder ausgefüllt */
.float-label input:focus ~ .float-label__text,
.float-label input:not(:placeholder-shown) ~ .float-label__text,
.float-label textarea:focus ~ .float-label__text,
.float-label textarea:not(:placeholder-shown) ~ .float-label__text {
  top: 8px;
  transform: none;
  font-size: 10.5px !important;
  font-weight: 700 !important;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--gold-deep) !important;
}
@media (max-width: 600px) {
  #toastContainer { bottom: 16px; right: 12px; left: 12px; align-items: stretch; }
  .toast { max-width: 100%; }
}

/* ═══════════════════════════════════════════════════════════════
   PHASE 2 — Komponenten vereinheitlichen
   Konsistente Designsprache, diversifizierte Hover, Spacing-Rhythmus
   ═══════════════════════════════════════════════════════════════ */

/* ── 2.1 Buttons: kompakter, moderner, einheitliches Active-Feedback ── */
.btn-primary,
.btn-ghost,
.btn-secondary {
  padding: 14px 26px;
  font-size: 15px;
  letter-spacing: .02em;
  gap: var(--space-2);
}
.btn-primary:active,
.btn-ghost:active,
.btn-secondary:active {
  transform: scale(.97) !important;
}
.btn-lg {
  padding: 16px 36px;
  font-size: 16px;
}

/* Ghost: Border-Glow statt translateY */
.btn-ghost:hover {
  transform: none;
  border-color: rgba(255,255,255,.85);
  box-shadow: 0 0 0 1px rgba(255,255,255,.15), var(--shadow-sm);
}

/* Secondary: subtiler Background-Shift statt translateY */
.btn-secondary:hover {
  transform: none;
  background: var(--bg-soft);
  border-color: var(--accent);
  color: var(--accent-dark);
  box-shadow: var(--shadow-xs);
}

/* Outline-Buttons: kein translateY, subtilerer Hover */
.listing-expose-btn:hover,
.offer-btn.secondary:hover {
  transform: none !important;
  box-shadow: var(--shadow-xs) !important;
}

/* Primary-Buttons: translateY etwas reduzieren */
.btn-primary:hover,
.listing-cta:hover,
.offer-btn:hover,
.cookie-btn:hover {
  transform: translateY(-2px) !important;
}

/* ── 2.2 Cards: gemeinsame Sprache, differenzierte Hover ─────── */

/* Service-Cards: volle Rundung, linker Gold-Akzent statt top-border */
.card {
  border-top: none !important;
  border-left: 3px solid var(--gold) !important;
  border-radius: var(--radius-lg) !important;
  padding: var(--space-6) !important;
}
/* Service-Cards Hover: Border-Akzent + Schatten, gedämpfter Lift */
.card:hover {
  transform: translateY(-3px);
  border-left-color: var(--gold-deep) !important;
  box-shadow: var(--shadow-lg) !important;
}

/* Listing-Cards Hover: subtiler Scale statt starker translateY */
.listing-card:hover {
  transform: scale(1.015);
  box-shadow: var(--shadow-lg);
}
.listing-card:hover .listing-img-wrap img {
  transform: scale(1.06);
}

/* Testimonial-Cards Hover: nur Schatten-Lift, kein translateY */
.testimonial-card:hover {
  transform: none;
  box-shadow: var(--shadow-lg);
  border-color: rgba(200,135,90,.3);
}

/* Ratgeber-Cards Hover: Border-Glow + moderater Lift */
.ratgeber-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200,135,90,.4);
}

/* FAQ-Item Hover: kein translateY, nur Border + Schatten */
.faq-item:hover {
  transform: none;
  box-shadow: var(--shadow-sm);
  border-color: rgba(200,135,90,.35);
}

/* Cards-Grid Spacing einheitlich */
.cards         { gap: var(--space-5); }
.listings-grid { gap: var(--space-5); }
.testimonials-grid { gap: var(--space-5); }
.ratgeber-grid { gap: var(--space-5); }
.faq-list      { gap: var(--space-2); }

/* Card-Icon Abstand */
.card-icon     { margin-bottom: var(--space-5); }
.card h3       { margin: 0 0 var(--space-3); }
.card-desc     { margin-bottom: 0; }
.card-list     { margin: var(--space-5) 0 0; padding-top: var(--space-4); border-top: 1px solid var(--line); }

/* Listing-Body Padding konsistent */
.listing-body  { padding: var(--space-5) var(--space-5) var(--space-5); }

/* Testimonial Spacing */
.testimonial-head  { margin-bottom: var(--space-4); }
.testimonial-card p { margin-bottom: var(--space-4); }
.testimonial-card footer { padding-top: var(--space-3); }

/* ── 2.3 Inputs & Formulare: ruhiger, kein translateY ────────── */

/* Input-Hover: kein Lift, nur subtile Border-Reaktion */
.offer-form-card input:hover,
.offer-form-card select:hover,
.offer-form-card textarea:hover {
  transform: none;
  box-shadow: var(--shadow-xs);
}

/* Fokus-Ring: klarer und kompakter */
.offer-form-card input:focus,
.offer-form-card select:focus,
.offer-form-card textarea:focus,
.newsletter-form input:focus,
.contact-form-panel input:focus,
.contact-form-panel select:focus,
.contact-form-panel textarea:focus {
  box-shadow:
    0 0 0 3px rgba(200,135,90,.15),
    var(--shadow-xs) !important;
}

/* Form-Grid Spacing */
.field-grid { gap: var(--space-3); }
.offer-form-card .actions { gap: var(--space-3); margin-top: var(--space-4); }
.offer-form-card label { margin-bottom: var(--space-4); }

/* ── 2.4 Spacing-Tokens: breitere Anwendung ─────────────────── */

/* Section-Intros */
.section-intro { margin-bottom: var(--space-10); }

/* Formular-Card Padding */
.offer-form-card,
.offer-preview-card { padding: var(--space-8) var(--space-6) var(--space-6) !important; }

/* Contact-Form: konsistentes Padding (Tabs übernehmen den Top-Bereich) */
.contact-form-panel form { padding: var(--space-5) var(--space-6) var(--space-6); }

/* Preview-Modal */
.preview-modal-inner { padding: var(--space-6); }
.preview-modal-head  { margin-bottom: var(--space-5); }
.preview-modal-meta  { gap: var(--space-3); margin-bottom: var(--space-5); }

/* FAQ Spacing */
.faq-item summary { padding: var(--space-5) var(--space-5); }
.faq-item p       { padding: var(--space-4) var(--space-5) var(--space-5); }

/* Mobile: gedämpftes Hover (kein Scale/Translate auf Touch) */
@media (hover: none) {
  .card:hover,
  .listing-card:hover,
  .testimonial-card:hover,
  .ratgeber-card:hover,
  .faq-item:hover {
    transform: none !important;
  }
}

/* Mobile Spacing-Korrekturen */
@media (max-width: 768px) {
  .card { padding: var(--space-5) !important; }
  .listing-body { padding: var(--space-4) var(--space-4) var(--space-5); }
  .offer-form-card,
  .offer-preview-card { padding: var(--space-5) !important; }
  .faq-item summary { padding: var(--space-4) var(--space-4); }
  .faq-item p       { padding: var(--space-3) var(--space-4) var(--space-4); }
  .contact-form-panel form { padding: var(--space-4); }
}
@media (max-width: 500px) {
  .card { padding: var(--space-4) !important; }
}

/* ═══════════════════════════════════════════════════════════════
   PHASE 3 — Visueller Feinschliff
   Typografie-Hierarchie, Hero-Verfeinerung, CTA-Tiefe,
   Footer-Qualität, Atmosphäre
   ═══════════════════════════════════════════════════════════════ */

/* ── 3.1 Typografie-Hierarchie schärfen ────────────────────────── */

/* H2: etwas engere line-height für elegantere Wirkung */
h2 {
  line-height: 1.05;
  letter-spacing: -.02em;
}

/* H3: explizite line-height + leicht reduziert für klarere Stufe */
h3 {
  line-height: 1.22;
  letter-spacing: -.005em;
  font-weight: 650;
}

/* Section-Intro: leicht weiter gesetzt für Premium-Lesekomfort */
.section-intro {
  letter-spacing: .006em;
  font-weight: 400;
}

/* ── 3.3 CTA-Section vertiefen ─────────────────────────────────── */

/* Zweiter Lichtpunkt unten-links für räumliche Tiefe */
.cta-section {
  position: relative;
}
.cta-section::before {
  background:
    radial-gradient(ellipse at 65% 40%, rgba(107,84,72,.35) 0%, transparent 58%),
    radial-gradient(ellipse at 20% 85%, rgba(200,135,90,.12) 0%, transparent 50%);
}

/* Quote: elegantere Proportionen */
.cta-quote {
  line-height: 1.26;
  letter-spacing: -.02em;
}

/* CTA-Name: etwas mehr Abstand */
.cta-name {
  margin-top: 20px;
  letter-spacing: .22em;
}

/* CTA-Subtitle: bessere Lesbarkeit */
.cta-subtitle {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,.62);
  margin-bottom: 36px;
}


/* ── 3.4 Footer professioneller ────────────────────────────────── */

/* Footer-Grid: 4 Spalten in einer Reihe, Inhalt nah am oberen Rand */
.footer-grid {
  padding: 24px 0 52px;
}

/* Brand-Description besser lesbar */
.footer-brand-col p {
  color: rgba(255,255,255,.54);
  line-height: 1.8;
}

/* Footer-Nav Links besser lesbar */
.footer-nav a {
  color: rgba(255,255,255,.58);
  font-size: 14.5px;
}

/* Footer-Adresse besser lesbar */
.footer-address {
  color: rgba(255,255,255,.58);
}
.footer-address a {
  color: rgba(255,255,255,.58);
}

/* Footer-Öffnungszeiten lesbar */
.footer-hours {
  color: rgba(255,255,255,.4);
}

/* Footer-Bottom: stärkere Trennlinie */
.footer-bottom {
  border-top: 1px solid rgba(201,169,110,.12);
  padding: 26px 0;
}
.footer-bottom .container {
  color: rgba(255,255,255,.34);
}

/* Footer-Heading: etwas größer */
.footer-heading {
  font-size: 11px;
  letter-spacing: .2em;
  margin-bottom: 24px;
}

/* ── 3.5 Atmosphäre & Tiefe ────────────────────────────────────── */

/* Hauchfeine Noise-Textur auf hellen Sektionen */
.section:not(.cta-section):not(.section-newsletter):not(.testimonials-dark):not(.trust-bar):not(#servicegebiet) {
  position: relative;
}
.section:not(.cta-section):not(.section-newsletter):not(.testimonials-dark):not(.trust-bar):not(#servicegebiet)::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .018;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}
.section:not(.cta-section):not(.section-newsletter):not(.testimonials-dark):not(.trust-bar):not(#servicegebiet) > * {
  position: relative;
  z-index: 1;
}

/* Dezenter Gold-Lichtfleck auf section-alt */
.section-alt { overflow: hidden; }
.section-alt::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -100px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(201,169,110,.045) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

/* Dezenter Lichtfleck auf der Service-Section */
.section.services-section { overflow: hidden; }
.section.services-section::before {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -60px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(200,135,90,.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ── 3.6 Mobile-Korrekturen ────────────────────────────────────── */
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding: 24px 0 40px; }
  .footer-heading { margin-bottom: 18px; }
  h2 { line-height: 1.1; }
}

/* ─── Ratgeber-Artikel ───────────────────────────────────────────────────── */
.legal-content {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.glossar-link {
  color: var(--accent-dark);
  text-decoration: none;
  border-bottom: 1px dotted var(--gold-deep);
  font-weight: 600;
}
.glossar-link:hover {
  border-bottom-style: solid;
}


/* ═══════════════════════════════════════════════════════════════
   PREMIUM REFINEMENTS — Souveränität & visuelle Qualität
   ═══════════════════════════════════════════════════════════════ */

/* ── 3. Überschriften: optisch verfeinert ─────────────────────── */
h2 {
  letter-spacing: -.02em;
  line-height: 1.06;
}
h3 {
  letter-spacing: -.013em;
}

/* ── 4. Section-Kicker: luftiger, feiner ─────────────────────── */
.section-kicker,
.eyebrow {
  font-size: 11px;
  letter-spacing: .3em;
  margin-bottom: 18px;
}

/* ── 5. CTA-Section: mehr Zeremoniell, stärkere Aura ─────────── */
.cta-section {
  border-top: none;
  border-bottom: none;
}
.cta-section::before {
  background: radial-gradient(ellipse at 62% 50%, rgba(118,82,55,.48) 0%, transparent 56%);
}
.cta-quote {
  letter-spacing: -.01em;
  line-height: 1.3;
}

/* ── 6. Footer: großzügigeres Staging, klarere Hierarchie ─────── */
.footer-grid {
  padding-top: 80px;
  padding-bottom: 72px;
}
.footer-brand-col p {
  color: rgba(255,255,255,.54);
  line-height: 1.82;
}
.footer-heading {
  margin-bottom: 26px;
}
.footer-bottom {
  border-top: 1px solid rgba(201,169,110,.14);
}

/* ── 7. Leistungskarten: edlere Hover-Elevation ──────────────── */
.card {
  transition:
    transform .48s cubic-bezier(.16, 1, .3, 1),
    box-shadow .48s cubic-bezier(.16, 1, .3, 1),
    border-top-color .32s ease !important;
}
.card:hover {
  transform: translateY(-4px) !important;
  box-shadow:
    0 28px 64px rgba(0,0,0,.09),
    0 6px 18px rgba(0,0,0,.04) !important;
}

/* Erste Leistungskarte: sichtbare Priorisierung */
.cards > .card:first-child {
  box-shadow:
    0 8px 32px rgba(0,0,0,.10),
    0 2px 8px rgba(0,0,0,.05);
  border-color: rgba(200,135,90,.28);
  background: linear-gradient(168deg, var(--white) 60%, rgba(248,238,224,.45));
}
.cards > .card:first-child:hover {
  transform: translateY(-8px) !important;
  box-shadow:
    0 36px 80px rgba(0,0,0,.14),
    0 10px 28px rgba(0,0,0,.06) !important;
}

/* ── Services-Sektion: kompaktere Abstände ────────────────────── */
#services { padding-top: 112px; padding-bottom: 112px; }
#services h2 { margin-bottom: 18px; }
#services .section-intro { margin-bottom: 36px; }
#services .cards { margin-top: 0; }

/* ── Immobilien-Sektion: kompaktere Abstände ──────────────────── */
#immobilien { padding-top: 112px; padding-bottom: 112px; }
#immobilien h2 { margin-bottom: 18px; }
#immobilien .section-intro { margin-bottom: 28px; }
#immobilien .listings-grid { margin-top: 0; }

/* ── 8. Service-Cards: Expand-Interaktion ────────────────────── */

/* Collapsed state: Bulletpoints + CTA versteckt */
.card--expandable .card-list {
  max-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
  border-top-color: transparent;
  opacity: 0;
  transition: max-height .45s cubic-bezier(.22,1,.36,1),
              opacity .3s ease,
              margin .4s cubic-bezier(.22,1,.36,1),
              padding .35s ease,
              border-top-color .3s ease;
}
.card--expandable.card--open .card-list {
  max-height: 500px;
  opacity: 1;
  margin: var(--space-5) 0 0;
  padding-top: var(--space-4);
  border-top-color: var(--line);
}

/* Staggered li reveal */
.card--expandable .card-list li {
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity .28s ease, transform .28s ease;
}
.card--expandable.card--open .card-list li {
  opacity: 1;
  transform: translateX(0);
}
.card--expandable.card--open .card-list li:nth-child(1) { transition-delay: .05s; }
.card--expandable.card--open .card-list li:nth-child(2) { transition-delay: .12s; }
.card--expandable.card--open .card-list li:nth-child(3) { transition-delay: .19s; }
.card--expandable.card--open .card-list li:nth-child(4) { transition-delay: .26s; }
.card--expandable.card--open .card-list li:nth-child(5) { transition-delay: .33s; }
.card--expandable.card--open .card-list li:nth-child(6) { transition-delay: .40s; }

/* Cursor */
.card--expandable { cursor: pointer; user-select: none; }

/* Active state */
.card--expandable.card--open {
  border-left-color: var(--gold-deep) !important;
  box-shadow: var(--shadow-lg) !important;
  transform: scale(1.012);
  background: var(--bg-soft);
}

/* Chevron */
.card-chevron {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: auto;
  padding-top: 18px;
  color: var(--gold-deep);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
  transition: color .25s ease;
}
.card-chevron svg {
  width: 20px;
  height: 20px;
  padding: 2px;
  border-radius: 50%;
  background: rgba(200,135,90,.10);
  transition: transform .35s cubic-bezier(.22,1,.36,1), background .25s ease;
}
.card--expandable:hover .card-chevron svg {
  background: rgba(200,135,90,.15);
}
.card--open .card-chevron svg { transform: rotate(180deg); background: rgba(200,135,90,.12); }
.card--open .card-chevron { color: var(--gold-deep); }

/* CTA link */
.card-cta {
  display: block;
  margin-top: var(--space-4);
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-dark);
  text-decoration: none;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .3s ease .15s, transform .3s ease .15s, color .2s ease;
  pointer-events: none;
}
.card--open .card-cta {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.card-cta:hover { color: var(--gold-deep); }

/* ── 9. Section-Intro: feiner Track, luftigere Zeilen ────────── */
.section-intro {
  letter-spacing: -.004em;
  line-height: 1.88;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION TRANSITIONS — Samtweiche Übergänge
   ═══════════════════════════════════════════════════════════════ */

/* ── Hero → Trust: nahtloser dunkler Anschluss ── */
.hero + .trust-bar {
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
}

/* ── Dunkel → Hell: warmer Schatten ── */
.trust-bar + .section,
.cta-section + .section,
.testimonials-dark + .section,
.section-newsletter + .section,
#servicegebiet + .section {
  box-shadow:
    inset 0 12px 48px -12px rgba(26,22,20,.08),
    inset 0 1px 0 rgba(201,169,110,.08);
}

/* ── Hell → Hell: hauchfeiner Gold-Schimmer ── */
.section + .section {
  box-shadow:
    inset 0 1px 0 rgba(201,169,110,.12),
    inset 0 4px 20px -8px rgba(201,169,110,.04);
}

/* ── Hell → Dunkel: sanfter Auslauf ── */
.section + .cta-section,
.section + .testimonials-dark,
.section + .section-newsletter,
.section + #servicegebiet {
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}

/* ════════════════════════════��════════════════════════════���═════
   HEADER LAYOUT FIX — Nav folgt Logo natürlich, CTA rechts verankert
   ═══════════════════════════════════════════════════════════════ */

/* space-between durch flex-start ersetzen:
   Nav-Punkte folgen dem Logo mit normalem Gap, kein aufgerissener Abstand */
.header-inner {
  justify-content: flex-start;
}

/* Nav nimmt verbleibenden Raum ein (nur wenn sichtbar auf Desktop) */
.nav {
  flex: 1;
}

/* CTA-Button verankert sich am rechten Rand der Nav */
.nav-cta {
  margin-left: auto;
}

/* ════════════════════════════════════════════════════════════════
   UNTERSEITEN — Panel-in-Panel entschärfen
   ════════════════════════════════════════════════════════════════ */

/* Impressum, Datenschutz, Ratgeber-Artikel: Inhalt direkt in der Section,
   kein weißes Dokument-auf-Beige mehr */
.panel.legal-content {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

/* ════════════════════════════════════════════════════════════════
   UNTERSEITEN — Wiederverwendbare Typografie-Klassen
   ════════════════════════════════════════════════════════════════ */

/* Einleitungstext unter dem Seitentitel (ratgeber.html, glossar.html) */
.page-subtitle {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 36px;
}

/* Meta-Zeile in Ratgeber-Artikeln: Autor · Datum · Lesezeit */
.article-meta {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 28px;
}

/* Wrapper-Absatz für Rück-Links ("← Zurück zum Ratgeber") */
.back-link-wrap {
  margin-top: 28px;
}

/* Rück-Link selbst ("← Zurück zum Ratgeber / zur Startseite") */
.back-link {
  color: var(--accent-dark);
  text-decoration: none;
  font-weight: 600;
}

/* Glossar-Eintrags-Hinweis: "→ Weiterführender Artikel" */
.glossar-hint {
  margin-top: 10px;
  font-size: 13px;
  color: var(--accent-dark);
}

/* ════════════════════════════════════════════════════════════════
   ARTIKEL-ABSCHLUSS
   ════════════════════════════════════════════════════════════════ */

/* Abschluss-Zone nach dem Artikel-Inhalt: Trennlinie + Newsletter-Nudge + Rücklink */
.article-footer {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Newsletter-Hint direkt im article-footer: kein extra Abstand oben */
.article-footer .ratgeber-newsletter-hint {
  margin-top: 0;
}

/* Rücklink im article-footer: kein extra Abstand (gap übernimmt) */
.article-footer .back-link-wrap {
  margin-top: 0;
}

/* ════════════════════════════════════════════════════════════════
   RATGEBER — Related Articles + CTA (SEO)
   ════════════════════════════════════════════════════════════════ */

.related-articles {
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.related-articles h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
}
.related-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.related-item {
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line, #e8e2de);
  border-radius: 16px;
  background: #fff;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.related-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,.08);
}
.related-category {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--gold-deep, #8a6e2f);
  margin-bottom: 8px;
}
.related-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text, #2a2522);
  margin: 0 0 10px;
}
.related-desc {
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted, #6f6762);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.related-link {
  display: inline-block;
  margin-top: auto;
  padding-top: 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-deep, #8a6e2f);
  text-decoration: none;
  transition: gap .2s;
}
.related-link:hover { text-decoration: underline; }

.article-cta-box {
  margin-top: 40px;
  padding: 32px;
  background: linear-gradient(135deg, #faf6ef 0%, #f5f0e8 100%);
  border: 1px solid var(--line);
  border-radius: 16px;
  text-align: center;
}
.article-cta-box h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.article-cta-box p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.5;
}
.article-cta-box .btn-primary {
  display: inline-flex;
}

/* Breadcrumb im Ratgeber-Artikel (visuell, dezent) */
.article-breadcrumb {
  font-size: 13px;
  color: var(--muted, #9b9189);
  margin-bottom: 12px;
  opacity: .8;
}
.article-breadcrumb a {
  color: inherit;
  text-decoration: none;
}
.article-breadcrumb a:hover {
  text-decoration: underline;
}
.article-breadcrumb .sep {
  margin: 0 5px;
  color: var(--line);
}

/* Artikel-Header: Kategorie + H1-Titel */
.article-header {
  margin-bottom: 32px;
}
.article-category {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-deep, #8a6e2f);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 8px;
}
.article-title {
  font-size: clamp(26px, 4vw, 34px);
  line-height: 1.2;
  font-weight: 600;
  color: var(--text, #2a2522);
  margin: 0;
}

@media (max-width: 600px) {
  .related-list { grid-template-columns: 1fr; gap: 16px; }
  .article-cta-box { padding: 24px 20px; }
}

/* ════════════════════════════════════════════════════════════════
   KUNDENPORTAL — Feature-Liste und Coming-soon-Badge
   ════════════════════════════════════════════════════════════════ */

.portal-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
}

.portal-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.portal-feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-dark);
}

.portal-feature-icon svg {
  width: 20px;
  height: 20px;
}

.portal-feature-text strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
}

.portal-feature-text span {
  font-size: 14px;
  color: var(--muted);
}

.portal-coming-soon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-light);
  color: var(--accent-dark);
  border: 1.5px solid var(--accent);
  border-radius: 999px;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  cursor: default;
  opacity: 0.75;
  margin-top: 8px;
}

.portal-coming-soon svg {
  width: 18px;
  height: 18px;
}

/* Breadcrumb-Links in .section-kicker ("Ratgeber · WEG-Verwaltung") */
.section-kicker a {
  color: inherit;
  text-decoration: none;
}

/* Artikel-Container: Lesbreite 720 px */
.article-width {
  max-width: 720px;
}

/* Ratgeber-Übersicht: Kartenraster-Breite 860 px */
.ratgeber-width {
  max-width: 860px;
}

/* Glossar-Übersicht: Listenbreite 800 px */
.glossar-width {
  max-width: 800px;
}

/* CTA-Button am Ende eines Ratgeber-Artikels */
.legal-content .btn-primary {
  display: inline-block;
  margin-top: 8px;
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE SWIPE — Leistungskarten horizontal swipebar
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  /* Services-Section: overflow für Swipe freigeben */
  #services.section-alt { overflow: visible; }
  #services.section-alt::before { display: none; }

  .cards {
    display: flex !important;
    grid-template-columns: none !important;
    align-items: stretch !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-padding: 0 8%;
    gap: 12px !important;
    margin-top: 36px !important;
    padding: 8px 8% 8px;
    scrollbar-width: none;
  }
  .cards::-webkit-scrollbar { display: none; }

  .cards > .card {
    flex: 0 0 86%;
    min-width: 0;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    padding: 20px 18px !important;
    transition:
      transform .45s cubic-bezier(.22, 1, .36, 1),
      opacity .4s ease,
      box-shadow .38s cubic-bezier(.22, 1, .36, 1) !important;
  }
  .cards > .card .card-icon { width: 44px; height: 44px; border-radius: 12px; margin-bottom: 16px; }
  .cards > .card h3 { font-size: 17px; margin-bottom: 8px; }
  .cards > .card .card-desc { font-size: 14px; line-height: 1.6; }
  .cards > .card:not(.card--snapped) {
    transform: scale(0.93) !important;
    opacity: 0.5;
  }
  .cards > .card.card--snapped {
    transform: scale(1) !important;
    opacity: 1;
    box-shadow: var(--shadow-lg) !important;
  }

  /* ── Mobile: Karten immer offen — kein Expand/Collapse ────── */
  .cards > .card.card--expandable {
    cursor: default;
    user-select: auto;
  }
  .cards > .card .card-list {
    max-height: none !important;
    opacity: 1 !important;
    overflow: visible !important;
    margin: 12px 0 0 !important;
    padding-top: 12px !important;
    border-top-color: var(--line) !important;
    gap: 6px;
  }
  .cards > .card .card-list li {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    font-size: 13px;
    line-height: 1.45;
  }
  .cards > .card .card-chevron {
    display: none !important;
  }
  .cards > .card .card-cta {
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
    margin-top: auto;
    padding-top: 12px;
  }
  /* Kein Open-State-Styling auf Mobile */
  .cards > .card.card--open {
    border-left-color: var(--line) !important;
    transform: scale(1) !important;
  }
  .cards > .card.card--open:not(.card--snapped) {
    transform: scale(0.93) !important;
  }

  /* Scroll-Indikator-Dots */
  .swipe-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
  }
  .swipe-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--gold);
    opacity: .25;
    transition: opacity .3s ease, transform .3s ease;
  }
  .swipe-dot.active {
    opacity: 1;
    transform: scale(1.25);
  }
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE SWIPE — Ratgeber-Artikelübersicht
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .ratgeber-grid {
    display: flex !important;
    grid-template-columns: none !important;
    align-items: stretch !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-padding: 0 8%;
    gap: 12px !important;
    padding: 8px 8% 8px;
    scrollbar-width: none;
  }
  .ratgeber-grid::-webkit-scrollbar { display: none; }

  .ratgeber-grid > .ratgeber-card {
    flex: 0 0 82%;
    min-width: 0;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    padding: 22px 20px;
    transition:
      transform .45s cubic-bezier(.22, 1, .36, 1),
      opacity .4s ease,
      box-shadow .38s cubic-bezier(.22, 1, .36, 1) !important;
  }
  .ratgeber-grid > .ratgeber-card:not(.card--snapped) {
    transform: scale(0.93) !important;
    opacity: 0.5;
  }
  .ratgeber-grid > .ratgeber-card.card--snapped {
    transform: scale(1) !important;
    opacity: 1;
    box-shadow: var(--shadow-lg) !important;
  }
  .ratgeber-grid > .ratgeber-card h3 { font-size: 18px; }
  .ratgeber-grid > .ratgeber-card p  { font-size: 13px; line-height: 1.6; }
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE SWIPE — Immobilien-Angebote
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  /* Section-overflow freigeben */
  #immobilien.section-alt { overflow: visible; }
  #immobilien.section-alt::before { display: none; }

  .listings-grid {
    display: flex !important;
    grid-template-columns: none !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-padding: 0 8%;
    gap: 12px !important;
    margin-top: 28px;
    padding: 8px 8% 8px;
    min-height: auto !important;
    scrollbar-width: none;
  }
  .listings-grid::-webkit-scrollbar { display: none; }

  .listings-grid > .listing-skeleton {
    flex: 0 0 84% !important;
    min-width: 0;
  }
  .listings-grid > .listing-card {
    flex: 0 0 84% !important;
    min-width: 0;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    transition:
      transform .45s cubic-bezier(.22, 1, .36, 1),
      opacity .4s ease,
      box-shadow .38s cubic-bezier(.22, 1, .36, 1) !important;
  }
  .listings-grid > .listing-card:not(.card--snapped) {
    transform: scale(0.93) !important;
    opacity: 0.5;
  }
  .listings-grid > .listing-card.card--snapped {
    transform: scale(1) !important;
    opacity: 1;
    box-shadow: var(--shadow-lg) !important;
  }
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE — Kontakt-Sektion kompakt
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  /* Formular oben, Info-Karte darunter */
  .contact-form-panel { order: -1; }

  /* Info-Karte kompakter */
  .contact-card { padding: 20px; gap: 0; }

  /* Alle Blöcke standardmäßig ausblenden, Quick-Links sichtbar */
  .contact-info-col .contact-block { display: none; }
  .contact-info-col .contact-block.contact-block--quick { display: flex; }

  /* Aufklapp-Button */
  .contact-details-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    margin-top: 14px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--bg-soft);
    color: var(--muted);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: color .2s, border-color .2s;
  }
  .contact-details-toggle:hover { color: var(--text); border-color: var(--gold); }
  .contact-details-toggle svg { transition: transform .3s; }
  .contact-details-toggle.is-open svg { transform: rotate(180deg); }

  .contact-details-wrap {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .35s ease;
  }
  .contact-details-wrap.is-open { grid-template-rows: 1fr; }
  .contact-details-inner {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .contact-details-inner .contact-block { display: flex; padding-top: 20px; }
  .contact-details-inner .contact-block:first-child { padding-top: 16px; }
}

/* Desktop: Accordion-Elemente ausblenden */
@media (min-width: 961px) {
  .contact-details-toggle { display: none; }
  .contact-details-wrap { display: contents; }
  .contact-details-inner { display: contents; }
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE SWIPE — Kundenstimmen
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .testimonials-dark { overflow: visible; }
  .testimonials-track {
    justify-content: flex-start;
    scroll-padding: 0 8%;
    padding: 8px 8% 8px;
    gap: 12px;
  }
  .testimonial-card-dark {
    flex: 0 0 86%;
  }
  .testimonial-card-dark:not(.card--snapped) {
    transform: scale(0.93);
    opacity: 0.45;
  }
  .testimonial-card-dark.card--snapped {
    transform: scale(1);
    opacity: 1;
    border-color: rgba(255,255,255,.10);
  }
  /* Pfeile auf Mobile ausblenden — Swipe reicht */
  .testimonials-nav { display: none; }
  /* Dots auf Mobile anzeigen */
  #testimonialDots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
  }
  #testimonialDots .swipe-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--gold);
    opacity: .25;
    transition: opacity .3s, transform .3s;
  }
  #testimonialDots .swipe-dot.active {
    opacity: 1;
    transform: scale(1.25);
  }
}

/* Desktop: Dots ausblenden */
@media (min-width: 961px) {
  .swipe-dots { display: none; }
}
