/* ==========================================================================
   MZ Rheinland — Stylesheet
   Editorial / Premium · Blau & Gold
   ========================================================================== */

:root {
  --navy-900: #0b1f3a;
  --navy-800: #102a4c;
  --navy-700: #1a3766;
  --navy-600: #2c4a7f;
  --navy-100: #e7ecf3;
  --navy-050: #f3f6fb;

  --gold-700: #a6822a;
  --gold-600: #c89a3a;
  --gold-500: #d9b15c;
  --gold-400: #e6c787;
  --gold-100: #f6ebd1;

  --ink: #1a1d24;
  --ink-soft: #4a5161;
  --ink-mute: #7c8395;
  --paper: #fbfaf6;
  --paper-2: #f5f1e8;
  --line: #e3dfd3;
  --line-strong: #c8c1ad;

  --green: #2d6a4f;
  --red:   #b54a3a;
  --amber: #c08a3a;

  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans:  'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius: 2px;
  --shadow-soft: 0 20px 60px -30px rgba(11,31,58,.25);
  --shadow-mid:  0 30px 80px -40px rgba(11,31,58,.45);
  --shadow-strong: 0 40px 120px -50px rgba(11,31,58,.55);
}

* { box-sizing: border-box; }
html { scroll-behavior: auto; scroll-padding-top: 128px; }
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }

.container { width: min(1200px, 92%); margin: 0 auto; }

/* ================ Typography ================ */
.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: 1.25rem;
  position: relative;
  padding-left: 2.25rem;
}
.eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 1.5rem; height: 1px;
  background: var(--gold-600);
}
.eyebrow--light { color: var(--gold-400); }
.eyebrow--light::before { background: var(--gold-400); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--navy-900);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 .5em;
}
h1 em, h2 em, h3 em {
  font-style: italic;
  color: var(--gold-700);
  font-weight: 500;
}
p { margin: 0 0 1em; color: var(--ink-soft); }

/* ================ Buttons ================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: 1.05rem 1.8rem;
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: all .35s cubic-bezier(.2,.7,.2,1);
  position: relative;
  overflow: hidden;
}
.btn--primary {
  background: var(--navy-900);
  color: var(--paper);
  border-color: var(--navy-900);
}
.btn--primary::after {
  content: '→';
  font-family: var(--serif);
  font-size: 1.1rem;
  transition: transform .35s ease;
}
.btn--primary:hover { background: var(--navy-700); transform: translateY(-1px); }
.btn--primary:hover::after { transform: translateX(4px); }
.btn--ghost {
  background: transparent;
  color: var(--navy-900);
  border-color: var(--line-strong);
}
.btn--ghost:hover {
  border-color: var(--navy-900);
  background: var(--navy-900);
  color: var(--paper);
}
.btn--full { width: 100%; }

/* ================ NAV ================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(251, 250, 246, .85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.nav.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(251, 250, 246, .94);
}
.nav__inner {
  width: min(1200px, 92%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
}
.brand { display: flex; align-items: center; gap: .85rem; }
.brand__logo { height: 46px; width: auto; max-width: 200px; flex: 0 0 auto; display: block; }
.brand__mark {
  display: inline-grid;
  place-items: center;
  width: 42px; height: 42px;
  background: var(--navy-900);
  color: var(--gold-500);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -.02em;
  border-radius: 1px;
}
.brand__name { display: flex; flex-direction: column; line-height: 1; }
.brand__line1 {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy-900);
}
.brand__line2 {
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin-top: 3px;
}
.nav__links { display: flex; gap: 1.6rem; align-items: center; }
.nav__links a {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--ink);
  position: relative;
  padding: .5rem 0;
  transition: color .25s;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold-600);
  transition: width .3s ease;
}
.nav__links a:hover { color: var(--navy-900); }
.nav__links a:hover::after { width: 100%; }
.nav__cta {
  padding: .6rem 1.2rem !important;
  border: 1px solid var(--navy-900);
  border-radius: 1px;
  color: var(--navy-900) !important;
}
.nav__cta::after { display: none; }
.nav__cta:hover { background: var(--navy-900); color: var(--paper) !important; }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
}
.nav__burger span { width: 24px; height: 1.5px; background: var(--navy-900); transition: transform .3s, opacity .3s; }

/* ================ HERO ================ */
.hero {
  position: relative;
  padding: 9rem 0 5rem;
  background: var(--paper);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 85% 15%, rgba(214,177,92,.10), transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(11,31,58,.05), transparent 55%),
    linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
  pointer-events: none;
}
.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(11,31,58,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,31,58,.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,.5), transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,.5), transparent 70%);
}
.hero__inner {
  width: min(1200px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__copy { animation: fadeUp .9s ease-out both; }
.hero__title {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  margin-bottom: 1.5rem;
}
.hero__lede {
  font-size: 1.12rem;
  line-height: 1.7;
  max-width: 34rem;
  color: var(--ink-soft);
  margin-bottom: 2.2rem;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}
.hero__signature {
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  max-width: 34rem;
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.hero__signature-name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy-900);
  line-height: 1.2;
}
.hero__signature-role {
  font-size: .85rem;
  letter-spacing: .04em;
  color: var(--ink-mute);
}

.hero__photo--real img.hero__photo-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}

.hero__visual { animation: fadeIn 1.2s ease-out both; position: relative; }
.hero__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  background: var(--navy-100);
}
/* Schöner Fallback: Doppel-Portrait Block für Michael & Michael */
.hero__duo {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(214,177,92,.25), transparent 55%),
    radial-gradient(ellipse at 70% 80%, rgba(11,31,58,.5), transparent 60%),
    linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 50%, var(--navy-800) 100%);
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  overflow: hidden;
}
.hero__duo-bg {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, rgba(214,177,92,.04) 0 1px, transparent 1px 18px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,.02) 0 1px, transparent 1px 24px);
  pointer-events: none;
}
.hero__duo-grid {
  position: relative;
  z-index: 1;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: center;
}
.hero__duo-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(214,177,92,.18);
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .6rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero__duo-initials {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 2.6rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  margin-bottom: .4rem;
  box-shadow: 0 10px 25px rgba(0,0,0,.3), inset 0 2px 0 rgba(255,255,255,.15);
}
.hero__duo-card--mm .hero__duo-initials {
  background: radial-gradient(circle at 30% 25%, #2c4a7f, #0b1f3a 80%);
  color: var(--gold-400);
  border: 2px solid rgba(214,177,92,.4);
}
.hero__duo-card--mw .hero__duo-initials {
  background: radial-gradient(circle at 30% 25%, var(--gold-400), var(--gold-700) 80%);
  color: var(--navy-900);
  border: 2px solid rgba(255,255,255,.2);
}
.hero__duo-name {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--paper);
  line-height: 1.2;
}
.hero__duo-role {
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(214,177,92,.85);
  font-weight: 600;
  line-height: 1.3;
}
.hero__duo-amp {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  font-family: var(--serif);
  font-style: italic;
  font-size: 4.5rem;
  font-weight: 400;
  color: var(--gold-500);
  z-index: 2;
  text-shadow: 0 4px 16px rgba(0,0,0,.4);
  pointer-events: none;
  line-height: 1;
}
.hero__duo-meta {
  position: relative;
  z-index: 1;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(214,177,92,.25);
  display: flex;
  flex-direction: column;
  gap: .25rem;
  text-align: center;
}
.hero__duo-meta span {
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-500);
  font-weight: 600;
}
.hero__duo-meta strong {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--paper);
  font-weight: 500;
}
.hero__photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11,31,58,.25) 100%);
  pointer-events: none;
}
.hero__photo-badge--lemonade {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1rem 1.3rem;
  background: rgba(251,250,246,.97);
  border-left: 3px solid var(--gold-500);
  box-shadow: 0 10px 30px rgba(11,31,58,.18);
}
.rating-stars {
  position: relative;
  font-size: 1.15rem;
  letter-spacing: .12em;
  line-height: 1;
  flex-shrink: 0;
}
.rating-stars__empty {
  color: rgba(11,31,58,.15);
  display: inline-block;
}
.rating-stars__filled {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  white-space: nowrap;
  color: var(--gold-600);
}
.rating-info { display: flex; flex-direction: column; gap: .15rem; line-height: 1.25; }
.rating-info__score {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy-900);
}
.rating-info__src {
  font-size: .72rem;
  color: var(--ink-mute);
  letter-spacing: .03em;
}

.hero__rib {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .7rem 1rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold-600);
}
.hero__rib-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy-900);
  flex-shrink: 0;
}
.hero__rib-text {
  font-size: .82rem;
  color: var(--ink-soft);
  line-height: 1.4;
}

.hero__scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  font-size: .7rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.hero__scroll i {
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, var(--ink-mute), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .3; transform: scaleY(.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ================ TRUST BAR ================ */
.trustbar {
  padding: 4.5rem 0 5rem;
  background: linear-gradient(135deg, var(--navy-900) 0%, #060f1d 100%);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.trustbar::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 50%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(214,177,92,.12), transparent 70%);
  pointer-events: none;
}
.trustbar__head {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}
.trustbar__head .eyebrow {
  padding-left: 0;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.trustbar__head .eyebrow::before { display: none; }
.trustbar__intro {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: rgba(251,250,246,.85);
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.5;
}
.trustbar__intro strong {
  color: var(--gold-400);
  font-weight: 600;
}
.trustbar__strip {
  position: relative;
  z-index: 1;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  padding: .4rem 0;
}
.trustbar__strip::before,
.trustbar__strip::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.trustbar__strip::before {
  left: 0;
  background: linear-gradient(90deg, var(--navy-900) 0%, transparent 100%);
}
.trustbar__strip::after {
  right: 0;
  background: linear-gradient(-90deg, var(--navy-900) 0%, transparent 100%);
}
.trustbar__track {
  display: flex;
  gap: 1.2rem;
  width: max-content;
  animation: trustbarScroll 70s linear infinite;
}
.trustbar__strip:hover .trustbar__track {
  animation-play-state: paused;
}
@keyframes trustbarScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.trustbar__seals {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(135px, 1fr));
  gap: 1rem;
  position: relative;
  z-index: 1;
}
.trustbar__seal-wrap {
  flex-shrink: 0;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(214,177,92,.18);
  padding: .8rem .65rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-width: 110px;
  height: 130px;
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
  text-decoration: none;
  color: inherit;
}
.trustbar__seal-wrap:hover {
  transform: translateY(-3px);
  border-color: var(--gold-500);
  background: rgba(214,177,92,.08);
}
.trustbar__seal-wrap--highlight {
  background: rgba(214,177,92,.10);
  border-color: rgba(214,177,92,.4);
}

/* Echte Bilder: Hintergrund hell genug machen damit weiße Badges nicht verschwinden */
.trustbar__seal-img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  background: white;
  border-radius: 50%;
  padding: 3px;
  box-shadow: 0 3px 8px rgba(0,0,0,.2);
  flex-shrink: 0;
}

/* Premium Badge als CSS - immer sichtbar, auch ohne externes Bild */
.seal-badge {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  flex-shrink: 0;
  transition: transform .3s ease;
}
.seal-badge::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--gold-400), var(--gold-700), var(--gold-400), var(--gold-700), var(--gold-400));
  z-index: -1;
}
.seal-badge::after {
  content: attr(data-year);
  position: absolute;
  bottom: -6px;
  background: var(--navy-900);
  color: var(--gold-400);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .12em;
  padding: 2px 8px;
  border-radius: 8px;
  border: 1px solid var(--gold-500);
  white-space: nowrap;
}
.seal-badge--premium {
  background: radial-gradient(circle at 30% 30%, var(--gold-300, #ecd5a0), var(--gold-600) 70%, var(--gold-700) 100%);
  box-shadow: 0 8px 20px rgba(168,130,42,.45), inset 0 3px 0 rgba(255,255,255,.35), inset 0 -3px 6px rgba(0,0,0,.15);
}
.seal-badge--expert {
  background: radial-gradient(circle at 30% 30%, #f4e5b8, #c89a3a 65%, #8a6620 100%);
  box-shadow: 0 10px 24px rgba(168,130,42,.55), inset 0 3px 0 rgba(255,255,255,.4), inset 0 -3px 6px rgba(0,0,0,.2);
}
.seal-badge__top {
  font-size: .42rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(11,31,58,.85);
  line-height: 1;
  margin-top: 14px;
}
.seal-badge__big {
  font-family: var(--serif);
  font-style: italic;
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1;
  margin: 2px 0;
}
.seal-badge__bot {
  font-size: .42rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(11,31,58,.85);
  line-height: 1;
  margin-bottom: 14px;
}
.trustbar__seal-wrap:hover .seal-badge {
  transform: scale(1.08) rotate(-3deg);
}

.trustbar__seal {
  width: 88px;
  height: 88px;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.35));
  transition: transform .3s ease;
}
.trustbar__seal-wrap:hover .trustbar__seal {
  transform: scale(1.05) rotate(-2deg);
}
.trustbar__seal-year {
  font-size: .58rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-400);
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
  margin-top: .2rem;
}

/* Nr.1 Makler Badge — angepasst an kleinere Strip */
.trustbar__seal-wrap--platz1 {
  background: linear-gradient(135deg, rgba(214,177,92,.25) 0%, rgba(214,177,92,.10) 100%);
  border-color: var(--gold-500);
  cursor: pointer;
}
.trustbar__seal-wrap--platz1:hover {
  background: linear-gradient(135deg, rgba(214,177,92,.35) 0%, rgba(214,177,92,.15) 100%);
}
.platz1-badge {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--gold-400), var(--gold-700));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 6px 16px rgba(168,130,42,.5), inset 0 2px 0 rgba(255,255,255,.35);
  text-align: center;
}
.platz1-badge__crown {
  position: absolute;
  top: -7px;
  font-size: .75rem;
  color: var(--gold-400);
  background: var(--navy-900);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1.5px solid var(--gold-500);
}
.platz1-badge__num {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1;
  margin-top: 6px;
}
.platz1-badge__txt {
  display: block;
  font-size: .42rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--navy-900);
  margin-top: 2px;
  line-height: 1.15;
}

/* ================ SECTIONS ================ */
.section { padding: 7rem 0; position: relative; }
.section__head { max-width: 50rem; margin-bottom: 4.5rem; }
.section__head--center { max-width: 50rem; margin-left: auto; margin-right: auto; text-align: center; }
.section__head--center .eyebrow { padding-left: 0; }
.section__head--center .eyebrow::before { display: none; }
.section__title { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 1.2rem; }
.section__intro { font-size: 1.08rem; line-height: 1.7; max-width: 42rem; }
.section__head--center .section__intro { margin-left: auto; margin-right: auto; }

/* ================ ANSATZ — Premium Pillars mit Live-Visuals ================ */
.section--ansatz { background: var(--paper); }
.pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
  position: relative;
}
.pillar {
  background: white;
  border: 1px solid var(--line);
  padding: 0;
  position: relative;
  transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-700));
  transition: width .6s ease;
  z-index: 5;
}
.pillar:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-mid);
  border-color: rgba(214,177,92,.4);
}
.pillar:hover::before { width: 100%; }

.pillar__num {
  position: absolute;
  top: 1.4rem;
  right: 1.6rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--gold-700);
  letter-spacing: .02em;
  font-weight: 500;
  z-index: 3;
  opacity: .85;
}

.pillar__visual {
  width: 100%;
  height: 160px;
  background: linear-gradient(180deg, var(--paper-2) 0%, var(--paper) 100%);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.pillar__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(214,177,92,.08), transparent 70%),
    radial-gradient(circle at 70% 80%, rgba(11,31,58,.06), transparent 60%);
  pointer-events: none;
}
.pillar__visual svg {
  width: 100%;
  height: 100%;
  max-width: 240px;
  position: relative;
  z-index: 2;
}

.pillar h3 {
  font-size: 1.5rem;
  margin: 1.8rem 1.8rem .8rem;
  line-height: 1.2;
}
.pillar p {
  font-size: .98rem;
  line-height: 1.65;
  margin: 0 1.8rem 1.8rem;
}
.pillar p strong {
  color: var(--navy-900);
  font-weight: 600;
}

/* ====== Pillar 01: Bestpreis — Wachstums-Säulen ====== */
.pv-bar--priv {
  transform-origin: bottom center;
  transform-box: fill-box;
  animation: pvBarGrowPriv 4s ease-in-out infinite;
}
.pv-bar--mz {
  transform-origin: bottom center;
  transform-box: fill-box;
  animation: pvBarGrowMz 4s ease-in-out infinite;
}
@keyframes pvBarGrowPriv {
  0%, 100% { transform: scaleY(.3); }
  50% { transform: scaleY(1); }
}
@keyframes pvBarGrowMz {
  0%, 100% { transform: scaleY(.3); }
  50% { transform: scaleY(1); }
}
.pv-arrow {
  transform-origin: 145px 70px;
  transform-box: view-box;
  animation: pvArrowBob 4s ease-in-out infinite;
  opacity: 0;
}
@keyframes pvArrowBob {
  0%, 35% { opacity: 0; transform: translateY(8px); }
  50%, 75% { opacity: 1; transform: translateY(0); }
  90%, 100% { opacity: 0; transform: translateY(-4px); }
}
.pillar--price:hover .pv-bar--priv {
  animation-duration: 2s;
}
.pillar--price:hover .pv-bar--mz {
  animation-duration: 2s;
}

/* ====== Pillar 02: Sichtbarkeit — Pulskreise ====== */
.pv-pulse {
  transform-origin: 110px 70px;
  transform-box: view-box;
  animation: pvPulse 3s ease-out infinite;
}
.pv-pulse--1 { animation-delay: 0s; }
.pv-pulse--2 { animation-delay: 1s; }
.pv-pulse--3 { animation-delay: 2s; }
@keyframes pvPulse {
  0% { transform: scale(.4); opacity: .8; }
  100% { transform: scale(3.2); opacity: 0; }
}
.pv-nodes circle {
  animation: pvNodeFlash 4s ease-in-out infinite;
  transform-origin: center;
  transform-box: fill-box;
}
.pv-nodes circle:nth-child(1) { animation-delay: 0s; }
.pv-nodes circle:nth-child(2) { animation-delay: .3s; }
.pv-nodes circle:nth-child(3) { animation-delay: .6s; }
.pv-nodes circle:nth-child(4) { animation-delay: .9s; }
.pv-nodes circle:nth-child(5) { animation-delay: 1.2s; }
.pv-nodes circle:nth-child(6) { animation-delay: 1.5s; }
.pv-nodes circle:nth-child(7) { animation-delay: 1.8s; }
.pv-nodes circle:nth-child(8) { animation-delay: 2.1s; }
@keyframes pvNodeFlash {
  0%, 90%, 100% { transform: scale(1); opacity: .85; }
  45%, 55% { transform: scale(1.6); opacity: 1; }
}
.pillar--reach:hover .pv-pulse { animation-duration: 1.8s; }

/* ====== Pillar 03: Erreichbarkeit — Icon mit Pulse ====== */
.pv-personal { width: 100%; height: 100%; }
.pv-ring {
  animation: pvCallRing 2.8s ease-out infinite;
  transform-origin: center;
  transform-box: fill-box;
}
.pv-ring--2 { animation-delay: 1.4s; }
@keyframes pvCallRing {
  0%   { transform: scale(.55); opacity: 0; }
  20%  { opacity: .65; }
  100% { transform: scale(1.8); opacity: 0; }
}
.pv-online-pulse {
  animation: pvOnlinePulse 2s ease-out infinite;
  transform-origin: center;
  transform-box: fill-box;
}
@keyframes pvOnlinePulse {
  0%   { transform: scale(1); opacity: .9; }
  100% { transform: scale(2.4); opacity: 0; }
}

/* ====== Pillar 04: Transparenz — Document mit Checks ====== */
.pv-check-row {
  opacity: 0;
  animation: pvCheckAppear 4s ease-out infinite;
}
.pv-check-row--1 { animation-delay: .3s; }
.pv-check-row--2 { animation-delay: 1.0s; }
.pv-check-row--3 { animation-delay: 1.7s; }
@keyframes pvCheckAppear {
  0%, 5% { opacity: 0; transform: translateX(-6px); }
  15%, 75% { opacity: 1; transform: translateX(0); }
  85%, 100% { opacity: 0; transform: translateX(0); }
}
.pv-stamp {
  opacity: 0;
  transform-origin: 170px 100px;
  transform-box: view-box;
  animation: pvStampDrop 4s ease-out infinite;
}
@keyframes pvStampDrop {
  0%, 50% { opacity: 0; transform: scale(2) rotate(-15deg); }
  60%, 75% { opacity: 1; transform: scale(1.1) rotate(-8deg); }
  85%, 100% { opacity: 1; transform: scale(1) rotate(-12deg); }
}
.pv-doc {
  filter: drop-shadow(0 4px 12px rgba(11,31,58,.08));
}

/* Energie-Strom-Linie unter allen Karten */
.pillars__flow {
  grid-column: 1 / -1;
  width: 100%;
  height: 8px;
  margin-top: 1rem;
}
.pillars__flow-line {
  stroke-dasharray: 200 1000;
  stroke-dashoffset: 200;
  animation: pillarsFlow 5s linear infinite;
}
@keyframes pillarsFlow {
  to { stroke-dashoffset: -1200; }
}

@media (max-width: 720px) {
  .pillars { grid-template-columns: 1fr; gap: 1.2rem; }
}

/* ================ MEHRWERT: Confluence — Zwei Welten ================ */
.section--mehrwert {
  background: linear-gradient(180deg, var(--paper-2) 0%, var(--paper) 100%);
  position: relative;
  overflow: hidden;
}

/* ===== Drei Spalten: Discount / Modern / Klassisch ===== */
.confluence-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-bottom: 4rem;
}
.confluence-col {
  background: white;
  border: 1px solid var(--line);
  padding: 2rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: .8rem;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
}
.confluence-col:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -16px rgba(11,31,58,.18);
}
.confluence-col::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 32px;
  background: var(--ink-mute);
}
.confluence-col--discount::before { background: #b54a3a; }
.confluence-col--modern::before { background: #4a6a8a; }
.confluence-col--classic::before { background: #8a7042; }

.confluence-col__tag {
  font-size: .65rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 700;
}
.confluence-col h3 {
  font-size: 1.3rem;
  font-family: var(--serif);
  font-weight: 600;
  color: var(--navy-800);
  margin: 0;
  line-height: 1.2;
}
.confluence-col__lede {
  font-size: .85rem;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0 0 .8rem 0;
  font-style: italic;
}
.confluence-col__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}
.confluence-col__list li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .88rem;
  line-height: 1.4;
  color: var(--ink);
}
.cf-mark {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  margin-top: 2px;
  background-size: 60% 60%;
  background-position: center;
  background-repeat: no-repeat;
}
.cf-mark--check {
  background-color: rgba(45, 106, 79, 0.85);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M5 12l5 5L20 7' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}
.cf-mark--cross {
  background-color: rgba(181, 74, 58, 0.85);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M6 6l12 12M18 6L6 18' fill='none' stroke='white' stroke-width='3' stroke-linecap='round'/></svg>");
}

/* ===== Synthesis Banner — kein Liniengewirr mehr ===== */
.synthesis {
  position: relative;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(214,177,92,.18), transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(214,177,92,.08), transparent 55%),
    linear-gradient(135deg, var(--navy-900) 0%, #060f1d 100%);
  color: var(--paper);
  padding: 4rem 3rem;
  box-shadow: 0 30px 70px -30px rgba(11,31,58,.6);
  overflow: hidden;
}
.synthesis::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}
.synthesis__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.synthesis__mark {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 45%, rgba(214,177,92,.16) 0%, rgba(214,177,92,.05) 55%, transparent 72%);
  display: grid;
  place-items: center;
  position: relative;
}
.synthesis__icon {
  width: 118px;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 22px rgba(0,0,0,.35));
  position: relative;
  z-index: 1;
}
.synthesis__mark::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(214,177,92,.4);
  border-radius: 50%;
  animation: synthPulse 3s ease-out infinite;
}
.synthesis__mark::after {
  content: '';
  position: absolute;
  inset: -16px;
  border: 1px solid rgba(214,177,92,.25);
  border-radius: 50%;
  animation: synthPulse 3s ease-out infinite 1.5s;
}
@keyframes synthPulse {
  0% { transform: scale(.95); opacity: .9; }
  100% { transform: scale(1.4); opacity: 0; }
}

.synthesis__text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.synthesis__eyebrow {
  font-size: .7rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-400);
  font-weight: 700;
}
.synthesis__text h3 {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 500;
  font-style: italic;
  color: var(--gold-400);
  line-height: 1.15;
  margin: 0;
}
.synthesis__text p {
  color: rgba(251,250,246,.95);
  font-size: 1.02rem;
  line-height: 1.6;
  margin: 0;
}
.synthesis__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(214,177,92,.25);
}
.synthesis__pillar {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.synthesis__pillar strong {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--gold-400);
  font-weight: 600;
  font-style: italic;
}
.synthesis__pillar span {
  font-size: .82rem;
  color: rgba(251,250,246,.7);
  line-height: 1.4;
}

@media (max-width: 900px) {
  .confluence-grid { grid-template-columns: 1fr; gap: 1rem; }
  .synthesis { padding: 2.5rem 1.5rem; }
  .synthesis__inner { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; }
  .synthesis__mark { margin: 0 auto; width: 130px; height: 130px; font-size: 3.4rem; }
  .synthesis__pillars { grid-template-columns: 1fr; gap: 1rem; text-align: left; }
}

/* ================ VORHER/NACHHER SLIDER ================ */
.section--vn { background: var(--paper); }
.slider {
  position: relative;
  aspect-ratio: 16 / 9;
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: var(--shadow-strong);
  border: 1px solid var(--line-strong);
  user-select: none;
  -webkit-user-select: none;
  background: var(--paper-2);
  --pos: 50%;
  touch-action: none;
}
.slider__pane {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
/* Fallback wenn Bild nicht lädt — auf null gesetzt, weil wir lokale SVGs haben */
.slider__fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: none;
}
.slider__pane img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
  z-index: 1;
}
.slider__pane--before { z-index: 1; }
.slider__pane--before img { /* echtes Foto, kein Filter */ }
.slider__pane--after {
  z-index: 2;
  clip-path: inset(0 0 0 var(--pos));
  -webkit-clip-path: inset(0 0 0 var(--pos));
}
.slider__pane-label {
  position: absolute;
  top: 1.2rem;
  z-index: 3;
  padding: .5rem 1rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.slider__pane--before .slider__pane-label {
  left: 1.2rem;
  background: rgba(40, 30, 20, .85);
  color: white;
}
.slider__pane--after .slider__pane-label {
  right: 1.2rem;
  background: rgba(11,31,58,.92);
  color: var(--gold-400);
}
.slider__handle {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--pos);
  width: 3px;
  background: rgba(255,255,255,.92);
  transform: translateX(-50%);
  z-index: 5;
  box-shadow: 0 0 16px rgba(0,0,0,.35);
  cursor: ew-resize;
  border: 0;
  padding: 0;
  outline: none;
}
.slider__handle::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 40px;
  transform: translateX(-50%);
  cursor: ew-resize;
}
.slider__handle-icon {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  display: grid;
  place-items: center;
  background: var(--paper);
  color: var(--navy-900);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
  border: 1px solid var(--line-strong);
  pointer-events: none;
  transition: transform .2s ease;
}
.slider__handle:hover .slider__handle-icon,
.slider__handle:focus-visible .slider__handle-icon {
  transform: translate(-50%, -50%) scale(1.08);
}

/* ================ LEISTUNGEN ================ */
.section--svc { background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%); }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 5rem;
}
.svc {
  background: white;
  border: 1px solid var(--line);
  padding: 2.5rem;
  display: flex;
  gap: 1.8rem;
  transition: transform .35s, box-shadow .35s, border-color .35s;
  position: relative;
  overflow: hidden;
}
.svc::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s ease;
}
.svc:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-mid);
  border-color: var(--line-strong);
}
.svc:hover::before { transform: scaleX(1); }

/* Premium animierte Icons */
.svc__icon {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  border-radius: 2px;
  color: var(--gold-500);
  box-shadow: 0 8px 20px rgba(11,31,58,.2), inset 0 1px 0 rgba(255,255,255,.05);
  position: relative;
  overflow: hidden;
  transition: transform .4s cubic-bezier(.2,.7,.2,1);
}
.svc__icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(214,177,92,.18), transparent 60%);
  pointer-events: none;
}
.svc:hover .svc__icon {
  transform: scale(1.05) rotate(-2deg);
}
.ai-icon {
  width: 42px;
  height: 42px;
  overflow: visible;
}
.ai-stroke {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  transition: stroke-dashoffset .8s ease, opacity .3s ease;
}
.svc.is-visible .ai-stroke {
  stroke-dashoffset: 0;
}
.svc.is-visible .ai-stroke:nth-child(2) { transition-delay: .15s; }
.svc.is-visible .ai-stroke:nth-child(3) { transition-delay: .3s; }
.svc.is-visible .ai-stroke:nth-child(4) { transition-delay: .45s; }
.svc.is-visible .ai-dot { opacity: 1; }

.svc__body { flex: 1; }
.svc__tag {
  display: inline-block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: .6rem;
  padding: .25rem .6rem;
  background: var(--gold-100);
  border-radius: 1px;
}
.svc h3 { font-size: 1.55rem; margin-bottom: .7rem; }
.svc p {
  font-size: .98rem;
  line-height: 1.65;
  margin-bottom: 1.2rem;
}
.svc ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.svc li {
  font-size: .88rem;
  color: var(--ink);
  padding-left: 1.2rem;
  position: relative;
}
.svc li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: .55rem; height: 1px;
  background: var(--gold-600);
}

/* SVC Icon Container - kontinuierlich subtile Animation */
.svc__icon {
  animation: iconFloat 4s ease-in-out infinite;
  position: relative;
}
.svc__icon::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(214,177,92,.5), transparent 50%);
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}
.svc:hover .svc__icon::after { opacity: 1; }
@keyframes iconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

/* Offensichtlichere Icon-Animationen */
.ai-icon {
  width: 42px;
  height: 42px;
  overflow: visible;
}
/* Persistente Pulse-Animation für die Punkte (auch ohne Hover) */
.ai-pulse {
  transform-origin: center;
  transform-box: fill-box;
  animation: aiPulseLoop 2.5s ease-in-out infinite;
}
@keyframes aiPulseLoop {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
}

/* Dot pulse on every card */
.ai-dot {
  transform-origin: center;
  transform-box: fill-box;
  animation: aiDotPulse 3s ease-in-out infinite;
}
@keyframes aiDotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

/* Orbit rotiert kontinuierlich */
.ai-orbit {
  transform-origin: 20px 20px;
  transform-box: view-box;
  animation: aiOrbitLoop 5s linear infinite;
}
@keyframes aiOrbitLoop {
  to { transform: rotate(360deg); }
}

/* Rotate-Element (3D-Rundgang) */
.ai-rotate {
  transform-origin: center;
  transform-box: fill-box;
  animation: aiRotateLoop 8s linear infinite;
}
@keyframes aiRotateLoop {
  to { transform: rotate(360deg); }
}

/* Check icon (Anfragenmanagement) - regelmäßiges "Bestätigen"-Tick */
.ai-check-bg {
  transform-origin: center;
  transform-box: fill-box;
  animation: aiCheckPulse 2s ease-in-out infinite;
}
@keyframes aiCheckPulse {
  0%, 60%, 100% { transform: scale(1); }
  80% { transform: scale(1.2); }
}

/* Stroke draw beim Scroll-in - das bestehende behalten wir */
.ai-stroke {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  transition: stroke-dashoffset 1s ease;
}
.svc.is-visible .ai-stroke {
  stroke-dashoffset: 0;
}
.svc.is-visible .ai-stroke:nth-child(2) { transition-delay: .15s; }
.svc.is-visible .ai-stroke:nth-child(3) { transition-delay: .3s; }
.svc.is-visible .ai-stroke:nth-child(4) { transition-delay: .45s; }

/* Ref-Stats */
.ref__stats {
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.ref__stat {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.ref__stat-val {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold-700);
  line-height: 1;
}
.ref__stat-lbl {
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
}

.commission {
  background: var(--navy-900);
  color: var(--paper);
  padding: 4rem;
  position: relative;
  overflow: hidden;
}
.commission::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 50%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(214,177,92,.15), transparent 70%);
}
.commission__inner { max-width: 42rem; position: relative; z-index: 1; }
.commission h3 {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  color: var(--paper);
  margin-bottom: 1rem;
}
.commission p {
  color: rgba(251,250,246,.82);
  font-size: 1.02rem;
  margin: 0;
}

/* ================ REGION — Echte Karte mit animierten Häuschen ================ */
.section--region {
  background: var(--paper);
  position: relative;
  overflow: hidden;
}
.region-wrap {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.region-map {
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 6;
  background: linear-gradient(135deg, #f7f4ed 0%, #ede7d4 100%);
  border: 1px solid rgba(214,177,92,.25);
  box-shadow: 0 30px 60px -30px rgba(11,31,58,.25);
  overflow: hidden;
}
.region-map__bg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  opacity: 0.92;
  filter: saturate(0.85) contrast(1.02);
}

/* HQ-Marker (Bergheim) */
.region-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  z-index: 5;
}
.region-pin--hq .region-pin__mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, var(--gold-400) 0%, var(--gold-600) 70%);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-900);
  box-shadow:
    0 0 0 4px rgba(214,177,92,.25),
    0 0 0 8px rgba(214,177,92,.12),
    0 6px 18px rgba(168,130,42,.45);
  position: relative;
  animation: hqMarkerPulse 2.5s ease-in-out infinite;
}
.region-pin__mark::after {
  content: '';
  position: absolute;
  inset: -8px;
  border: 2px solid var(--gold-500);
  border-radius: 50%;
  opacity: 0;
  animation: hqRingExpand 2.5s ease-out infinite;
}
@keyframes hqMarkerPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}
@keyframes hqRingExpand {
  0% { transform: scale(.8); opacity: .7; }
  100% { transform: scale(2); opacity: 0; }
}
.region-pin__label {
  background: var(--navy-900);
  color: var(--gold-400);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .25rem .6rem;
  border-radius: 2px;
  white-space: nowrap;
  border: 1px solid rgba(214,177,92,.4);
}

/* Animierte Häuschen über der Karte */
.region-house {
  position: absolute;
  transform: translate(-50%, -50%);
  font-size: 1.4rem;
  color: var(--gold-600);
  text-shadow: 0 1px 3px rgba(0,0,0,.3);
  opacity: 0;
  animation: houseAppear 6s ease-in-out infinite;
  animation-delay: var(--d, 0s);
  font-weight: 700;
  pointer-events: none;
  z-index: 3;
  filter: drop-shadow(0 2px 4px rgba(168,130,42,.4));
}
@keyframes houseAppear {
  0%, 10% { opacity: 0; transform: translate(-50%, -50%) scale(0); }
  20% { opacity: 1; transform: translate(-50%, -50%) scale(1.3); }
  25% { transform: translate(-50%, -50%) scale(1); }
  80% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  90% { opacity: 0; transform: translate(-50%, -50%) scale(.5); }
  100% { opacity: 0; }
}

/* Legende unter der Karte */
.region-legend {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
  padding: .8rem 1.5rem;
  background: white;
  border: 1px solid var(--line);
  flex-wrap: wrap;
}
.region-legend__row {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .82rem;
  color: var(--ink);
  font-weight: 500;
}
.region-legend__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold-500);
  flex-shrink: 0;
}
.region-legend__dot--hq {
  width: 14px;
  height: 14px;
  background: radial-gradient(circle at 30% 25%, var(--gold-400), var(--gold-700));
  box-shadow: 0 0 0 2px rgba(214,177,92,.3);
}

@media (max-width: 720px) {
  .region-pin__label { font-size: .55rem; }
  .region-pin--hq .region-pin__mark { width: 36px; height: 36px; font-size: .9rem; }
  .region-house { font-size: 1.1rem; }
  .region-legend { gap: 1rem; }
}

/* ================ MAKLER-RECHNER ================ */
.section--calculator {
  background:
    radial-gradient(ellipse at 20% 20%, rgba(214,177,92,.06), transparent 60%),
    var(--paper-2);
  position: relative;
  overflow: hidden;
}

/* === Studien-Fakten === */
.calc__facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  max-width: 1100px;
  margin: 0 auto 3.5rem;
}
.calc__fact {
  background: white;
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold-500);
  padding: 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  text-align: left;
  transition: transform .3s ease, box-shadow .3s ease;
}
.calc__fact:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px -12px rgba(11,31,58,.15);
}
.calc__fact strong {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy-900);
  letter-spacing: -0.01em;
  line-height: 1;
}
.calc__fact span {
  font-size: .88rem;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.3;
}
.calc__fact em {
  font-style: italic;
  font-size: .75rem;
  color: var(--gold-700);
  font-weight: 500;
  margin-top: .2rem;
}
.calc__fact--highlight {
  background: linear-gradient(180deg, #fffbf0 0%, #fdf5e3 100%);
  border-top-color: var(--gold-700, #a6822a);
  border-top-width: 4px;
  box-shadow: 0 8px 24px -10px rgba(168,130,42,.25);
}
.calc__fact--highlight strong {
  color: var(--gold-700, #a6822a);
  font-size: 2rem;
}
.calc__fact--highlight em {
  color: var(--ink-mute);
}

.calc {
  max-width: 1100px;
  margin: 0 auto;
}

/* === Slider === */
.calc__slider-wrap {
  background: white;
  border: 1px solid var(--line);
  padding: 2.5rem 3rem;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px -15px rgba(11,31,58,.15);
  position: relative;
}
.calc__slider-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}
.calc__slider-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1.5rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.calc__slider-label > span {
  font-size: .75rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink-mute);
}
.calc__slider-label strong {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--navy-900);
  letter-spacing: -0.01em;
  line-height: 1;
}

.calc__slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, var(--gold-500) 0%, var(--gold-500) var(--fill, 19%), var(--line-strong) var(--fill, 19%), var(--line-strong) 100%);
  outline: none;
  border-radius: 4px;
  cursor: pointer;
  margin-bottom: .8rem;
}
.calc__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px;
  height: 28px;
  background: var(--navy-900);
  border: 3px solid var(--gold-500);
  border-radius: 50%;
  cursor: grab;
  box-shadow: 0 4px 12px rgba(11,31,58,.4);
  transition: transform .2s ease, box-shadow .2s ease;
}
.calc__slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 6px 18px rgba(168,130,42,.5);
}
.calc__slider::-moz-range-thumb {
  width: 28px;
  height: 28px;
  background: var(--navy-900);
  border: 3px solid var(--gold-500);
  border-radius: 50%;
  cursor: grab;
  box-shadow: 0 4px 12px rgba(11,31,58,.4);
}
.calc__slider-marks {
  display: flex;
  justify-content: space-between;
  font-size: .72rem;
  color: var(--ink-mute);
  font-weight: 600;
  letter-spacing: .08em;
}

/* === Compare Layout — saubere 2-Spalten === */
.calc__compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  align-items: stretch;
  margin-bottom: 1.5rem;
}

.calc__col {
  padding: 2.5rem 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  background: white;
  border: 1px solid var(--line);
  position: relative;
}
.calc__col--private {
  background: linear-gradient(180deg, var(--paper-2) 0%, #f0ebe0 100%);
}
.calc__col--private::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: #b54a3a;
  opacity: 0.6;
}
.calc__col--mz {
  background:
    radial-gradient(ellipse at 30% 20%, rgba(214,177,92,.15), transparent 60%),
    linear-gradient(135deg, var(--navy-900) 0%, #060f1d 100%);
  color: var(--paper);
  border-color: rgba(214,177,92,.3);
  box-shadow: 0 20px 50px -20px rgba(11,31,58,.5);
}
.calc__col--mz::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-500);
}

.calc__col-head { display: flex; flex-direction: column; gap: .5rem; }
.calc__col-tag {
  font-size: .65rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink-mute);
}
.calc__col-tag--gold { color: var(--gold-400); }
.calc__col h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy-900);
  margin: 0;
}
.calc__col--mz h3 { color: var(--paper); }
.calc__col-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: .9rem;
  color: var(--ink-mute);
  margin: 0;
}
.calc__col--mz .calc__col-sub { color: var(--gold-400); }

.calc__metric--main {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  padding: 1.2rem 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}
.calc__col--mz .calc__metric--main {
  border-top-color: rgba(214,177,92,.25);
  border-bottom-color: rgba(214,177,92,.25);
}
.calc__metric-label {
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink-mute);
}
.calc__col--mz .calc__metric-label { color: var(--gold-400); }
.calc__metric-value {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--navy-900);
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.calc__col--mz .calc__metric-value { color: var(--paper); }
.calc__metric-sub {
  font-size: .78rem;
  color: var(--ink-mute);
}
.calc__col--mz .calc__metric-sub { color: rgba(251,250,246,.6); }

.calc__details {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.calc__details li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  font-size: .9rem;
  padding: .35rem 0;
  border-bottom: 1px dashed var(--line);
}
.calc__col--mz .calc__details li {
  border-bottom-color: rgba(214,177,92,.12);
}
.calc__details-label {
  color: var(--ink-soft);
  font-size: .85rem;
}
.calc__col--mz .calc__details-label { color: rgba(251,250,246,.7); }
.calc__details-value {
  color: var(--navy-900);
  font-weight: 600;
  font-size: .9rem;
  text-align: right;
}
.calc__col--mz .calc__details-value { color: var(--paper); }

/* === Differenz-Banner unter beiden Spalten === */
.calc__delta {
  margin-bottom: 1.5rem;
}
.calc__delta-inner {
  background:
    radial-gradient(ellipse at 30% 50%, rgba(214,177,92,.25), transparent 60%),
    linear-gradient(135deg, var(--gold-600) 0%, var(--gold-700) 100%);
  border: 2px solid var(--gold-500);
  padding: 1.8rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  box-shadow:
    0 25px 50px -20px rgba(168,130,42,.4),
    inset 0 1px 0 rgba(255,255,255,.3);
  position: relative;
  overflow: hidden;
}
.calc__delta-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 6px;
  height: 100%;
  background: var(--navy-900);
}
.calc__delta-arrow {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy-900);
  display: grid;
  place-items: center;
  color: var(--gold-400);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(11,31,58,.4);
}
.calc__delta-text {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  flex: 1;
}
.calc__delta-label {
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--navy-900);
  opacity: 0.8;
}
.calc__delta-value {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy-900);
  letter-spacing: -0.01em;
  line-height: 1;
}
.calc__delta-sub {
  font-size: .92rem;
  color: var(--navy-900);
  font-weight: 600;
  opacity: 0.85;
}

.calc__disclaimer {
  font-size: .78rem;
  line-height: 1.5;
  color: var(--ink-mute);
  font-style: italic;
  text-align: center;
  max-width: 50rem;
  margin: 0 auto 4rem;
  padding: 1rem;
}

/* === Fallstricke === */
.calc__pitfalls {
  margin-top: 3rem;
}
.calc__pitfalls-title {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--navy-900);
  text-align: center;
  margin: 0 0 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
}
.calc__pitfalls-eyebrow {
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold-700);
}

.calc__pitfall-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-bottom: 3rem;
}
.calc__pitfall {
  background: white;
  border: 1px solid var(--line);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: .7rem;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.calc__pitfall:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -16px rgba(11,31,58,.2);
  border-color: rgba(214,177,92,.3);
}
.calc__pitfall-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold-700);
  font-weight: 600;
  letter-spacing: .05em;
}
.calc__pitfall h4 {
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--navy-900);
  margin: 0;
  line-height: 1.2;
}
.calc__pitfall p {
  font-size: .9rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}
.calc__pitfall--summary {
  background:
    radial-gradient(ellipse at 30% 20%, rgba(214,177,92,.12), transparent 60%),
    linear-gradient(135deg, var(--navy-900) 0%, #060f1d 100%);
  color: var(--paper);
  border-color: rgba(214,177,92,.3);
}
.calc__pitfall--summary .calc__pitfall-num { color: var(--gold-400); }
.calc__pitfall--summary h4 { color: var(--paper); }
.calc__pitfall--summary p { color: rgba(251,250,246,.85); }
.calc__pitfall--summary strong { color: var(--gold-400); font-weight: 700; }

.calc__cta {
  text-align: center;
  padding-top: 1rem;
}
.calc__cta-note {
  font-size: .82rem;
  color: var(--ink-mute);
  font-style: italic;
  margin: 1rem 0 0;
}

@media (max-width: 980px) {
  .calc__facts { grid-template-columns: 1fr 1fr; }
  .calc__compare {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .calc__pitfall-grid { grid-template-columns: 1fr 1fr; }
  .calc__delta-inner { padding: 1.4rem 1.8rem; gap: 1.2rem; }
  .calc__delta-value { font-size: 2rem; }
}
@media (max-width: 620px) {
  .calc__facts { grid-template-columns: 1fr; }
  .calc__slider-wrap { padding: 1.8rem 1.5rem; }
  .calc__slider-label strong { font-size: 2.2rem; }
  .calc__col { padding: 2rem 1.5rem; }
  .calc__metric-value { font-size: 1.9rem; }
  .calc__pitfall-grid { grid-template-columns: 1fr; }
  .calc__delta-inner { flex-direction: column; text-align: center; padding: 1.4rem 1.2rem; }
  .calc__delta-inner::before { display: none; }
  .calc__delta-value { font-size: 1.8rem; }
}

/* ================ DIGITALES HAUS ================ */
.section--digital {
  background:
    radial-gradient(ellipse at 20% 30%, rgba(44, 74, 127, .85), transparent 60%),
    radial-gradient(ellipse at 80% 70%, rgba(11, 31, 58, .6), transparent 60%),
    linear-gradient(180deg, #1a3766 0%, #0b1f3a 40%, #060f1d 100%);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.section--digital::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 30%, rgba(214,177,92,.18), transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(11,31,58,.4), transparent 60%);
  pointer-events: none;
}
.digital-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.digital-copy .eyebrow { color: var(--gold-400); }
.digital-copy .eyebrow::before { background: var(--gold-400); }
.digital-copy .section__title {
  color: var(--paper);
}
.digital-copy p {
  color: var(--paper);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}
.digital-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.digital-points li {
  font-size: .95rem;
  color: var(--paper);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}
.digital-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .55em;
  width: .75rem;
  height: .75rem;
  border: 1px solid var(--gold-500);
  transform: rotate(45deg);
}
.digital-points strong {
  color: var(--gold-400);
  font-weight: 700;
}

/* Vermarktungs-Kanäle (regional, überregional, off-market) */
.digital-channels {
  margin-top: 2.4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(214,177,92,.2);
}
.digital-channels__label {
  display: block;
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold-400);
  margin-bottom: 1.6rem;
}
.digital-channels__group {
  margin-bottom: 1.4rem;
}
.digital-channels__group-title {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(251,250,246,.85);
  margin-bottom: .65rem;
  font-weight: 500;
}
.digital-channels__items {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}
.digital-chip {
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .04em;
  padding: .4rem .85rem;
  background: rgba(251,250,246,.06);
  border: 1px solid rgba(214,177,92,.25);
  color: rgba(251,250,246,.92);
  border-radius: 999px;
  transition: all .25s ease;
}
.digital-chip:hover {
  background: rgba(214,177,92,.15);
  border-color: var(--gold-500);
  color: var(--paper);
}
.digital-chip--region {
  border-color: rgba(214,177,92,.4);
  background: rgba(214,177,92,.06);
}
.digital-chip--offmarket {
  background: rgba(11,31,58,.55);
  border-color: rgba(214,177,92,.35);
  color: var(--gold-400);
  font-weight: 600;
}
.digital-channels__note {
  margin: 1.6rem 0 0;
  font-size: .85rem;
  line-height: 1.55;
  color: rgba(251,250,246,.6);
  font-style: italic;
  font-family: var(--serif);
}

.digital-visual {
  position: relative;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
}
.digital-svg {
  width: 100%;
  height: auto;
  display: block;
}
.digital-svg .dl {
  fill: rgba(251,250,246,.88);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .04em;
}

/* ================ TEAM ================ */
.section--team {
  background: var(--paper);
}
.team-grid {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
}
.member {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 3.5rem;
  align-items: center;
}
.member--reverse {
  grid-template-columns: 7fr 5fr;
}
.member--reverse .member__portrait { order: 2; }
.member--reverse .member__body { order: 1; }

.member__portrait {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--paper-2);
  border: 1px solid var(--line);
}
.member__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.portrait-placeholder {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(214,177,92,.18), transparent 65%),
    linear-gradient(135deg, var(--navy-900) 0%, #060f1d 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  color: var(--gold-400);
}
.pp-initials {
  font-family: var(--serif);
  font-style: italic;
  font-size: 5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
}
.pp-note {
  font-size: .68rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(214,177,92,.7);
}

.member__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.member__role {
  font-size: .68rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold-700);
}
.member__body h3 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 500;
  color: var(--navy-900);
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.member__lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0 0 .5rem;
}
.member__body p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  margin: 0;
}
.member__badges {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: .5rem;
}
.badge {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold-700);
  border: 1px solid rgba(214,177,92,.4);
  background: rgba(214,177,92,.08);
  padding: .4rem .8rem;
  border-radius: 2px;
}
.member__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: .5rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}
.member__contact a {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy-900);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-500);
  padding-bottom: 2px;
  transition: color .25s ease, border-color .25s ease;
}
.member__contact a:hover {
  color: var(--gold-700);
  border-color: var(--gold-700);
}

/* ================ REFERENZEN ================ */
.section--ref {
  background: var(--paper-2);
}
.ref-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.ref-card {
  background: white;
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  cursor: pointer;
  font: inherit;
  text-align: left;
  padding: 0;
  width: 100%;
}
.ref-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(214,177,92,.3);
}
.ref-card__visual {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  background: var(--paper-2);
}
.ref-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s ease;
  position: relative;
  z-index: 2;
}
.ref-card:hover .ref-card__visual img {
  transform: scale(1.05);
}
/* SVG-Art im Hintergrund — wird nur sichtbar wenn Foto fehlt */
.ref-card__art {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 1;
  color: var(--navy-900);
  opacity: .25;
  padding: 1.5rem;
}
.ref-card__art svg { width: 65%; height: auto; }
.ref-card__visual--art {
  background: var(--paper-2);
}
.ref-card__visual--art .ref-card__art {
  opacity: 1;
  color: var(--navy-700);
}

.ref-card__sold {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold-500);
  color: var(--navy-900);
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  padding: .35rem .75rem;
  border-radius: var(--radius);
  z-index: 3;
  box-shadow: 0 4px 14px -4px rgba(11,31,58,.4);
}
.ref-card__view {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(11,31,58,.92);
  color: var(--paper);
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  padding: .5rem .85rem;
  z-index: 3;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s ease, transform .3s ease;
  border-radius: var(--radius);
}
.ref-card:hover .ref-card__view {
  opacity: 1;
  transform: translateY(0);
}
.ref-card__body {
  padding: 1.5rem 1.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  flex: 1;
}
.ref-card__location {
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold-700);
}
.ref-card__title {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy-900);
  margin: 0;
  line-height: 1.25;
  letter-spacing: -0.005em;
}
.ref-card__facts {
  font-size: .9rem;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.5;
}
.ref-card__perf {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  margin-top: auto;
  padding-top: .9rem;
  border-top: 1px solid var(--line);
}
.ref-card__perf strong {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--navy-900);
  font-weight: 600;
}
.ref-card__perf span {
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
}
.ref__note {
  text-align: center;
  margin-top: 2.5rem;
  font-size: .88rem;
  color: var(--ink-mute);
  font-style: italic;
  font-family: var(--serif);
}

/* ================ VOICES (Kundenstimmen) ================ */
.section--voices {
  background: var(--paper);
}
.voices {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.voice {
  background: white;
  border: 1px solid var(--line);
  padding: 2.1rem 2rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.voice::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold-500), var(--gold-700));
  opacity: 0;
  transition: opacity .35s ease;
}
.voice:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-mid);
  border-color: rgba(214,177,92,.4);
}
.voice:hover::before { opacity: 1; }
.voice__stars {
  color: var(--gold-600);
  font-size: 1.1rem;
  letter-spacing: .15em;
  line-height: 1;
}
.voice blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.55;
  color: var(--navy-900);
  letter-spacing: -0.005em;
  position: relative;
}
.voice blockquote::before {
  content: '\201C';
  position: absolute;
  top: -0.4em; left: -0.4em;
  font-size: 3rem;
  color: var(--gold-500);
  opacity: .25;
  font-family: var(--serif);
  line-height: 1;
}
.voice figcaption {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  padding-top: .8rem;
  border-top: 1px solid var(--line);
}
.voice figcaption strong {
  font-family: var(--sans);
  font-size: .92rem;
  font-weight: 700;
  color: var(--navy-900);
  letter-spacing: 0;
}
.voice figcaption span {
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
}
.voice--highlight {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
  border-color: rgba(214,177,92,.3);
}
.voice--highlight::before { opacity: 1; }
.voice--highlight .voice__stars { color: var(--gold-400); }
.voice--highlight blockquote { color: var(--paper); }
.voice--highlight blockquote::before { color: var(--gold-400); opacity: .35; }
.voice--highlight figcaption { border-color: rgba(214,177,92,.15); }
.voice--highlight figcaption strong { color: var(--gold-400); }
.voice--highlight figcaption span { color: rgba(251,250,246,.55); }

.voices__source {
  text-align: center;
  margin: 2.5rem auto 0;
  font-size: .92rem;
  color: var(--ink-soft);
  max-width: 600px;
}
.voices__source strong {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold-700);
  font-weight: 600;
}

/* ================ FAQ ================ */
.section--faq {
  background: var(--paper);
  padding: 6rem 0 7rem;
}
.faq {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .8rem;
}
.faq__item {
  background: var(--paper-2, #f7f3e9);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold-500);
  transition: box-shadow .25s ease, border-color .25s ease;
}
.faq__item[open] {
  box-shadow: 0 8px 28px rgba(11,31,58,.08);
  border-left-color: var(--gold-700, #a6822a);
  background: white;
}
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.4rem 1.8rem;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy-900);
  line-height: 1.35;
  user-select: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--gold-700, #a6822a); }
.faq__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  display: block;
}
.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background: var(--gold-600, #c89a3a);
  top: 50%;
  left: 50%;
  transition: transform .3s ease;
}
.faq__icon::before {
  width: 14px;
  height: 2px;
  transform: translate(-50%, -50%);
}
.faq__icon::after {
  width: 2px;
  height: 14px;
  transform: translate(-50%, -50%);
}
.faq__item[open] .faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.faq__a {
  padding: 0 1.8rem 1.6rem;
}
.faq__a p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

/* ================ CONTACT ================ */
.section--contact {
  background: linear-gradient(180deg, var(--paper-2) 0%, var(--paper) 100%);
  padding: 6rem 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-copy {
  padding-right: 1rem;
}
.contact-copy h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 1.2rem;
}
.contact-copy > p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 2rem;
  max-width: 460px;
}
.contact-portrait {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  padding: 1.2rem;
  background: white;
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold-500);
  box-shadow: var(--shadow-soft);
  margin: .5rem 0 2rem;
  max-width: 460px;
}
.contact-portrait img {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(11,31,58,.15);
}
.contact-portrait__meta {
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.contact-portrait__meta strong {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy-900);
  line-height: 1.2;
}
.contact-portrait__meta span {
  font-size: .8rem;
  letter-spacing: .04em;
  color: var(--ink-mute);
}
.contact-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
  margin-top: 2rem;
}
.cb {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  padding-left: 1rem;
  border-left: 1px solid var(--gold-500);
}
.cb__label {
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold-700);
}
.cb__value {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy-900);
  line-height: 1.2;
  transition: color .25s ease;
}
a.cb__value:hover { color: var(--gold-700); }

.contact-form {
  background: white;
  padding: 2.5rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.field {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.field label {
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--navy-900);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: .95rem 1.1rem;
  background: var(--paper);
  border: 1px solid var(--line-strong);
  font-family: inherit;
  font-size: .98rem;
  color: var(--ink);
  outline: none;
  transition: border-color .25s ease, background .25s ease;
  border-radius: var(--radius);
}
.field textarea {
  resize: vertical;
  min-height: 110px;
  font-family: inherit;
  line-height: 1.5;
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg viewBox='0 0 24 24' fill='none' stroke='%230b1f3a' stroke-width='1.5' xmlns='http://www.w3.org/2000/svg'%3e%3cpolyline points='6 9 12 15 18 9'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 14px 14px;
  padding-right: 2.5rem;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--navy-900);
  background: white;
}
.check {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .85rem;
  color: var(--ink-soft);
  line-height: 1.4;
  cursor: pointer;
  margin-top: .3rem;
}
.check input {
  margin-top: .15rem;
  flex-shrink: 0;
  accent-color: var(--navy-900);
}
.check a {
  color: var(--gold-700);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.check a:hover { color: var(--navy-900); }
.form-msg {
  margin: 0;
  padding: .9rem 1.1rem;
  background: rgba(45,106,79,.08);
  border-left: 3px solid var(--green);
  color: var(--green);
  font-size: .9rem;
  font-weight: 600;
  font-family: var(--sans);
}
.form-msg--error {
  background: rgba(178,34,34,.07);
  border-left-color: #b22222;
  color: #b22222;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* ================ MODAL (Referenz-Detail) ================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.modal.is-open { display: flex; animation: modalFade .35s ease-out; }
@keyframes modalFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11,31,58,.7);
  backdrop-filter: blur(6px);
}
.modal__panel {
  position: relative;
  background: var(--paper);
  width: min(960px, 100%);
  max-height: 88vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  box-shadow: var(--shadow-strong);
  animation: modalSlide .4s cubic-bezier(.2,.7,.2,1);
}
@keyframes modalSlide {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.modal__close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 38px; height: 38px;
  background: white;
  border: 1px solid var(--line);
  font-size: 1.4rem;
  line-height: 1;
  color: var(--navy-900);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  z-index: 10;
  transition: all .25s ease;
}
.modal__close:hover {
  background: var(--navy-900);
  color: var(--paper);
  border-color: var(--navy-900);
}
.modal__visual {
  background: var(--paper-2);
  position: relative;
  overflow: hidden;
  min-height: 100%;
}
.modal__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.modal__visual-art {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 3rem;
  color: var(--navy-900);
  opacity: .15;
  z-index: 0;
}
.modal__visual-art svg { width: 60%; height: auto; }
.modal__visual-meta {
  position: absolute;
  bottom: 1.2rem; left: 1.2rem;
  z-index: 2;
}
.modal__visual-sold {
  background: var(--gold-500);
  color: var(--navy-900);
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
  padding: .4rem .8rem;
  border-radius: var(--radius);
}
.modal__body {
  padding: 2.8rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.modal__status {
  display: inline-block;
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold-700);
  padding: .3rem .7rem;
  background: rgba(214,177,92,.12);
  border-radius: var(--radius);
  width: max-content;
  margin-bottom: .25rem;
}
.modal__loc {
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-mute);
}
.modal__body h3 {
  font-size: 1.7rem;
  margin: 0;
  line-height: 1.2;
}
.modal__facts {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold-700);
  margin: 0 0 .5rem;
  font-weight: 500;
}
.modal__desc {
  font-size: .95rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 1rem;
}
.modal__services {
  background: var(--paper-2);
  padding: 1.4rem 1.4rem 1.6rem;
  border-left: 3px solid var(--gold-500);
  margin-top: auto;
}
.modal__services h4 {
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold-700);
  margin: 0 0 .8rem;
}
.modal__services ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.modal__services li {
  position: relative;
  padding-left: 1.4rem;
  font-size: .88rem;
  color: var(--navy-900);
  line-height: 1.45;
}
.modal__services li::before {
  content: '';
  position: absolute;
  left: 0; top: .55em;
  width: 8px; height: 8px;
  border-bottom: 1.5px solid var(--gold-600);
  border-right: 1.5px solid var(--gold-600);
  transform: rotate(45deg) translateY(-2px);
}

@media (max-width: 980px) {
  .member, .member--reverse {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .member--reverse .member__portrait { order: 0; }
  .member--reverse .member__body { order: 0; }
  .member__portrait { aspect-ratio: 16/12; max-width: 360px; }
  .ref-grid { grid-template-columns: repeat(2, 1fr); }
  .voices { grid-template-columns: 1fr; gap: 1.2rem; }
}

/* ================ REGION MARQUEE ================ */
.region-marquee {
  background: linear-gradient(180deg, var(--navy-900) 0%, #060f1d 100%);
  padding: 1.6rem 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(214,177,92,.15);
  border-bottom: 1px solid rgba(214,177,92,.15);
}
.region-marquee::before,
.region-marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.region-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--navy-900), transparent);
}
.region-marquee::after {
  right: 0;
  background: linear-gradient(-90deg, var(--navy-900), transparent);
}
.region-marquee__track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marqueeScroll 80s linear infinite;
}
.region-marquee__inner {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding-right: 1.2rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.region-marquee__inner span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  font-weight: 500;
  color: rgba(251,250,246,.9);
  letter-spacing: -0.01em;
}
.region-marquee__inner span:nth-child(even) {
  color: var(--gold-400);
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 300;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ================ FOOTER — Premium ================ */
.footer {
  background: linear-gradient(180deg, var(--navy-900) 0%, #060f1d 100%);
  color: rgba(251,250,246,.7);
  border-top: 1px solid rgba(214,177,92,.2);
}
.footer__top {
  padding: 5rem 0 3.5rem;
  border-bottom: 1px solid rgba(214,177,92,.12);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1.1fr 1.4fr;
  gap: 4rem;
}
.footer__brand-col { display: flex; flex-direction: column; gap: 1.5rem; }
.footer__brand-logo { height: 56px; width: auto; display: block; }
.footer__brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer__brand-mark {
  width: 56px;
  height: 56px;
  background: var(--navy-900);
  border: 1px solid var(--gold-500);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold-400);
  flex-shrink: 0;
}
.footer__brand-text {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.footer__brand-text strong {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--paper);
  line-height: 1;
}
.footer__brand-text em {
  font-family: var(--sans);
  font-size: .68rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-500);
  font-style: normal;
  font-weight: 600;
}
.footer__tagline {
  font-size: .9rem;
  line-height: 1.6;
  color: rgba(251,250,246,.65);
  margin: 0;
  max-width: 30rem;
}
.footer__signature {
  border-top: 1px solid rgba(214,177,92,.12);
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.footer__signature-label {
  font-size: .65rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-400);
  font-weight: 700;
}
.footer__signature-name {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--paper);
  font-style: italic;
}
.footer__signature-reg {
  font-size: .72rem;
  color: rgba(251,250,246,.5);
  line-height: 1.5;
}

.footer__contact-col {
  display: flex;
  flex-direction: column;
  gap: .8rem;
}
.footer__col-title {
  font-size: .65rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold-400);
  font-weight: 700;
  margin-bottom: .8rem;
}
.footer__contact-row {
  display: flex;
  align-items: center;
  gap: .9rem;
  text-decoration: none;
  color: inherit;
  padding: .35rem 0;
  transition: color .25s ease, transform .25s ease;
}
.footer__contact-row:hover {
  color: var(--gold-400);
  transform: translateX(3px);
}
.footer__contact-row--static {
  cursor: default;
}
.footer__contact-row--static:hover {
  color: inherit;
  transform: none;
}
.footer__contact-icon {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(214,177,92,.25);
  display: grid;
  place-items: center;
  color: var(--gold-400);
  flex-shrink: 0;
  border-radius: 2px;
}
.footer__contact-text {
  display: flex;
  flex-direction: column;
  gap: .1rem;
}
.footer__contact-label {
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(214,177,92,.7);
  font-weight: 600;
}
.footer__contact-value {
  font-size: .9rem;
  color: var(--paper);
  font-weight: 500;
}
.footer__hours {
  border-top: 1px solid rgba(214,177,92,.12);
  margin-top: .8rem;
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.footer__hours-label {
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-400);
  font-weight: 700;
}
.footer__hours-text {
  font-size: .82rem;
  color: rgba(251,250,246,.7);
}

.footer__nav-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
.footer__nav-block {
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.footer__nav-block a {
  text-decoration: none;
  font-size: .88rem;
  color: rgba(251,250,246,.75);
  transition: color .25s ease, padding-left .25s ease;
}
.footer__nav-block a:hover {
  color: var(--gold-400);
  padding-left: 4px;
}

.footer__partners {
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(214,177,92,.12);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer__partners-label {
  font-size: .65rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-400);
  font-weight: 700;
}
.footer__partners-list {
  display: flex;
  align-items: center;
  gap: .8rem;
  flex-wrap: wrap;
}
.footer__partner {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(251,250,246,.85);
}
.footer__partner-divider {
  color: var(--gold-500);
  font-size: 1rem;
  opacity: .7;
}

.footer__bottom {
  padding: 1.5rem 0;
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer__legal {
  display: flex;
  align-items: center;
  gap: .8rem;
  font-size: .78rem;
  color: rgba(251,250,246,.5);
  flex-wrap: wrap;
}
.footer__legal a {
  color: rgba(251,250,246,.6);
  text-decoration: none;
  transition: color .25s ease;
}
.footer__legal a:hover { color: var(--gold-400); }
.footer__legal-sep {
  color: rgba(214,177,92,.3);
}
.footer__social {
  display: flex;
  gap: .6rem;
}
.footer__social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(214,177,92,.25);
  display: grid;
  place-items: center;
  color: rgba(214,177,92,.7);
  text-decoration: none;
  transition: all .25s ease;
  border-radius: 2px;
}
.footer__social a:hover {
  background: var(--gold-500);
  color: var(--navy-900);
  border-color: var(--gold-500);
}

@media (max-width: 980px) {
  .footer__grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer__nav-col { grid-template-columns: 1fr 1fr; }
  .footer__partners { flex-direction: column; align-items: flex-start; }
  .footer__bottom-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
}
@media (max-width: 560px) {
  .footer__nav-col { grid-template-columns: 1fr; gap: 2rem; }
  .region-marquee__inner span { font-size: 1.1rem; }
  .region-marquee__inner span:nth-child(even) { font-size: 1.3rem; }
}

/* ================ Animations ================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s ease-out, transform .9s ease-out;
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ================ Responsive ================ */
@media (max-width: 1024px) {
  .nav__links { gap: 1.1rem; }
  .nav__links a { font-size: .75rem; }
  .ref-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero { padding-top: 7rem; }
  .hero__scroll { display: none; }
  .trustbar__seal-img { width: 48px; height: 48px; }
  .platz1-badge { width: 48px; height: 48px; }
  .platz1-badge__num { font-size: .85rem; margin-top: 4px; }
  .trustbar__seal-wrap { min-width: 78px; padding: .7rem .5rem; }
  .section { padding: 5rem 0; }
  .section__head { margin-bottom: 3rem; }
  .pillars { grid-template-columns: 1fr; gap: 1.5rem; }
  .pillar { padding: 2rem; }
  .confluence { grid-template-columns: 1fr; }
  .confluence__col--left { border-right: 1px solid var(--line); border-bottom: 0; text-align: left; }
  .confluence__col--left .confluence__list li { flex-direction: row; }
  .confluence__col--right { border-left: 1px solid var(--line); }
  .confluence__merge { width: 100%; height: 180px; padding: 1rem 0; }
  .confluence__svg { display: none; }
  .confluence-result { flex-direction: column; padding: 2rem; text-align: center; }
  .svc-grid { grid-template-columns: 1fr; }
  .svc { padding: 2rem; flex-direction: column; gap: 1.2rem; }
  .commission { padding: 2.5rem; }
  .leaflet-map { height: 420px; }
  .region-stats { grid-template-columns: 1fr; gap: 2rem; }
  .digital-grid { grid-template-columns: 1fr; gap: 3rem; }
  .digital-visual { max-width: 480px; margin: 0 auto; }
  .member, .member--reverse { grid-template-columns: 1fr; gap: 2rem; }
  .member--reverse .member__portrait { order: 0; }
  .member--reverse .member__body { order: 0; }
  .member__portrait { aspect-ratio: 16/12; }
  .ref-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .voices { grid-template-columns: 1fr; gap: 1.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-blocks { grid-template-columns: 1fr; gap: 1.3rem; }
  .contact-portrait { padding: 1rem; gap: 1rem; }
  .contact-portrait img { width: 72px; height: 72px; }
  .contact-portrait__meta strong { font-size: 1.15rem; }
  .faq__q { padding: 1.1rem 1.3rem; font-size: 1rem; gap: 1rem; }
  .faq__a { padding: 0 1.3rem 1.2rem; }
  .faq__a p { font-size: .95rem; }
  .contact-form { padding: 1.8rem; }
  .form-row { grid-template-columns: 1fr; gap: 1.1rem; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer__meta { text-align: left; }
  .modal__panel { grid-template-columns: 1fr; max-height: 95vh; }
  .modal__visual { min-height: 220px; aspect-ratio: 16/10; }
  .modal__body { padding: 1.8rem; }
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__burger.is-open span:nth-child(2) { opacity: 0; }
  .nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav__links.is-open {
    display: flex;
    position: fixed;
    top: 70px;
    left: 0; right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
  }
  .nav__links.is-open a {
    padding: 1rem 4%;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 560px) {
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; }
  .leaflet-map { height: 360px; }
}

/* ================ WERTERMITTLUNG ================ */
.section--wert { background: var(--paper-2); }
.wert {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 3.5rem;
  align-items: center;
}
.wert__copy { display: flex; flex-direction: column; gap: 1rem; }
.wert__copy .section__title { margin-bottom: .3rem; }
.wert__lede { font-size: 1.12rem; color: var(--ink); line-height: 1.65; }
.wert__copy p { color: var(--ink-soft); line-height: 1.72; margin: 0; }
.wert__accent {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.4;
  color: var(--navy-900) !important;
  border-left: 3px solid var(--gold-500);
  padding-left: 1.1rem;
  margin-top: .5rem !important;
}
.wert__card {
  background: linear-gradient(160deg, var(--navy-800), var(--navy-900));
  padding: 2.6rem;
  border: 1px solid var(--gold-700);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.wert__card-eyebrow {
  font-size: .7rem; letter-spacing: .22em; text-transform: uppercase;
  font-weight: 700; color: var(--gold-400);
}
.wert__card-title {
  font-family: var(--serif); font-size: 1.55rem; font-weight: 600;
  line-height: 1.25; color: var(--paper); margin: 0;
}
.wert__card p { color: rgba(251,250,246,.82); line-height: 1.65; font-size: .98rem; margin: 0; }
.wert__card .btn--primary {
  margin-top: .4rem;
  background: var(--gold-600);
  border-color: var(--gold-600);
  color: var(--navy-900);
}
.wert__card .btn--primary:hover { background: var(--gold-500); border-color: var(--gold-500); }
.wert__card-note {
  font-size: .76rem; color: var(--gold-400); opacity: .85;
  text-align: center; letter-spacing: .02em;
}

/* ================ KONTAKT-FOTO ================ */
.contact-photo {
  margin: 2rem 0 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(214,177,92,.25);
  box-shadow: 0 24px 60px -34px rgba(0,0,0,.55);
}
.contact-photo img { width: 100%; height: auto; display: block; }
.contact-photo figcaption {
  font-size: .82rem;
  color: rgba(251,250,246,.85);
  padding: .85rem 1.1rem;
  background: var(--navy-900);
  font-family: var(--sans);
}

/* ================ RESPONSIVE (neue Komponenten) ================ */
@media (max-width: 860px) {
  .wert { grid-template-columns: 1fr; gap: 2.2rem; }
  .brand__logo { height: 38px; }
  .footer__brand-logo { height: 48px; }
  .synthesis__icon { width: 96px; }
}

/* ================ KI-STAGING HINWEIS ================ */
.slider__note {
  max-width: 680px;
  margin: 1.4rem auto 0;
  text-align: center;
  font-size: .85rem;
  line-height: 1.6;
  color: var(--ink-mute);
}
.slider__note strong { color: var(--ink-soft); font-weight: 600; }

/* ================ EXPERTEN-NETZWERK (Marquee) ================ */
.experts { margin-top: 5rem; }
.experts__head { text-align: center; max-width: 680px; margin: 0 auto 2.8rem; }
.experts__title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 600;
  color: var(--navy-900);
  margin: .4rem 0 .8rem;
}
.experts__intro { color: var(--ink-soft); line-height: 1.7; margin: 0; }

.expert-marquee {
  position: relative;
  overflow: hidden;
  padding: .5rem 0 1rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.expert-track {
  display: flex;
  width: max-content;
  animation: expertScroll 34s linear infinite;
}
.expert-marquee:hover .expert-track { animation-play-state: paused; }
@keyframes expertScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.expert {
  flex: 0 0 auto;
  width: 236px;
  margin-right: 1.5rem;            /* Abstand "gehört" zur Karte -> nahtloser Loop */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.4rem 1.6rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 20px 48px -34px rgba(11,31,58,.45);
  transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}
.expert:hover {
  border-color: var(--gold-500);
  transform: translateY(-4px);
  box-shadow: 0 28px 60px -30px rgba(11,31,58,.5);
}
.expert__avatar {
  width: 96px; height: 96px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.1rem;
  background: var(--paper-2);
  box-shadow: 0 0 0 1px var(--line), 0 0 0 6px rgba(214,177,92,.14);
}
.expert__avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.expert__name {
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--navy-900);
  margin: 0 0 .2rem;
  line-height: 1.2;
}
.expert__role {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: .7rem;
}
.expert__cred {
  font-size: .82rem;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0 0 1rem;
  min-height: 2.4em;
}
.expert__langs { display: flex; gap: .35rem; justify-content: center; margin-top: auto; }
.expert__langs span {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--navy-700);
  background: var(--navy-100);
  padding: .2rem .45rem;
  border-radius: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .expert-track { animation: none; overflow-x: auto; padding-bottom: 1rem; }
}
@media (max-width: 860px) {
  .experts { margin-top: 3.2rem; }
  .expert { width: 210px; margin-right: 1.1rem; }
}

/* ================ TRUSTBAR — PARTNER-LOGOS (rechteckig) ================ */
.trustbar__seal-wrap--logo { min-width: 132px; }
.trustbar__seal-img--logo {
  width: auto;
  height: 50px;
  max-width: 150px;
  border-radius: 6px;
  /* erbt weißen Hintergrund, Schatten & padding von .trustbar__seal-img,
     überschreibt aber Kreisform und feste Maße */
}
@media (max-width: 960px) {
  .trustbar__seal-img--logo { height: 42px; max-width: 120px; }
  .trustbar__seal-wrap--logo { min-width: 104px; }
}

/* ================ KONTAKT-TOPBAR über der Navigation ================ */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1001;
  height: 38px; background: var(--navy-900); color: var(--paper);
  display: flex; align-items: center;
}
.topbar__inner {
  width: min(1200px, 92%); margin: 0 auto;
  display: flex; align-items: center; justify-content: flex-end; gap: 1.1rem;
  font-family: var(--sans); font-size: .8rem;
}
.topbar__label { margin-right: auto; color: rgba(251,250,246,.55); letter-spacing: .03em; }
.topbar__phone { display: inline-flex; align-items: center; gap: .45rem; color: var(--paper); transition: color .2s ease; white-space: nowrap; }
.topbar__phone:hover { color: var(--gold-400); }
.topbar__phone svg { color: var(--gold-500); flex-shrink: 0; }
.topbar__phone strong { color: var(--gold-400); font-weight: 600; margin-right: .35rem; }
.topbar__sep { color: rgba(214,177,92,.35); }
/* Navigation rückt unter die Topbar */
.nav { top: 38px; }
@media (max-width: 640px) {
  .topbar { height: 34px; }
  .topbar__inner { justify-content: center; gap: .9rem; font-size: .72rem; }
  .topbar__label { display: none; }
  .topbar__phone strong { display: none; }
  .nav { top: 34px; }
}
