:root {
  --ink: #1a1d24;
  --ink-soft: #2c3038;
  --paper: #f4f1ec;
  --paper-warm: #ebe6dc;
  --brass: #a87f4e;
  --brass-deep: #7d5d39;
  --line: rgba(26, 29, 36, 0.12);
  --line-light: rgba(26, 29, 36, 0.06);
  --muted: rgba(26, 29, 36, 0.6);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--paper); color: var(--ink);
  font-weight: 300; line-height: 1.6; overflow-x: hidden;
}
.serif { font-family: 'Cormorant Garamond', Georgia, serif; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  padding: 22px 56px;
  display: flex; justify-content: space-between; align-items: center;
  z-index: 100;
  backdrop-filter: blur(20px);
  background: rgba(244, 241, 236, 0.88);
  border-bottom: 1px solid var(--line);
}
.logo-mark { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.logo-mark svg { width: 30px; height: 30px; }
.logo-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 26px; font-weight: 500; letter-spacing: -0.5px; line-height: 1;
}
.logo-text span { color: var(--brass); font-style: italic; }
nav ul { display: flex; gap: 32px; list-style: none; font-size: 13px; letter-spacing: 0.6px; align-items: center; }
nav a {
  color: var(--ink); text-decoration: none;
  position: relative; padding-bottom: 4px; transition: color 0.3s;
}
nav a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--brass);
  transition: width 0.4s ease;
}
nav a:hover::after, nav a.current::after { width: 100%; }
nav a:hover, nav a.current { color: var(--brass-deep); }
.lang-toggle {
  display: flex; gap: 4px;
  border: 1px solid var(--line); padding: 4px;
  border-radius: 100px; font-size: 11px; letter-spacing: 1px;
}
.lang-toggle a, .lang-toggle button {
  border: none; background: transparent; cursor: pointer;
  padding: 4px 10px; border-radius: 100px;
  font: inherit; color: var(--muted); text-transform: uppercase;
  transition: all 0.3s;
  text-decoration: none; line-height: 1.4;
}
.lang-toggle a::after { display: none; }
.lang-toggle a.active, .lang-toggle button.active { background: var(--ink); color: var(--paper); }
.lang-toggle a.active::after, .lang-toggle button.active::after { display: none; }
.lang-toggle a:hover { color: var(--ink); }

/* MOBILE NAV TOGGLE */
.nav-toggle {
  display: none;
  background: transparent; border: none; cursor: pointer;
  width: 32px; height: 32px; padding: 0;
  position: relative; z-index: 200;
}
.nav-toggle span {
  display: block; position: absolute; left: 4px; right: 4px;
  height: 1.5px; background: var(--ink); transition: all 0.35s ease;
}
.nav-toggle span:nth-child(1) { top: 10px; }
.nav-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-toggle span:nth-child(3) { bottom: 10px; }
body.nav-open .nav-toggle span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* HERO */
.hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: center;
  padding: 0 56px;
  background:
    linear-gradient(135deg, rgba(26,29,36,0.88) 0%, rgba(26,29,36,0.45) 55%, rgba(26,29,36,0.75) 100%),
    url('https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=2400&q=85') center/cover;
  color: var(--paper); overflow: hidden;
}
.hero.subhero { min-height: 60vh; padding-top: 100px; }
.hero.beteiligungen-bg { background:
    linear-gradient(135deg, rgba(26,29,36,0.92) 0%, rgba(26,29,36,0.6) 55%, rgba(26,29,36,0.85) 100%),
    url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=2400&q=85') center/cover; }
.hero.beratung-bg { background:
    linear-gradient(135deg, rgba(26,29,36,0.92) 0%, rgba(26,29,36,0.6) 55%, rgba(26,29,36,0.85) 100%),
    url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?w=2400&q=85') center/cover; }
.hero.immobilien-bg { background:
    linear-gradient(135deg, rgba(26,29,36,0.92) 0%, rgba(26,29,36,0.55) 55%, rgba(26,29,36,0.8) 100%),
    url('https://images.unsplash.com/photo-1448630360428-65456885c650?w=2400&q=85') center/cover; }
.hero.profil-bg { background:
    linear-gradient(135deg, rgba(26,29,36,0.92) 0%, rgba(26,29,36,0.6) 55%, rgba(26,29,36,0.85) 100%),
    url('https://images.unsplash.com/photo-1551983048-83c0a6c33e83?w=2400&q=85') center/cover; }
.hero.kontakt-bg { background:
    linear-gradient(135deg, rgba(26,29,36,0.92) 0%, rgba(26,29,36,0.6) 55%, rgba(26,29,36,0.85) 100%),
    url('https://images.unsplash.com/photo-1497366811353-6870744d04b2?w=2400&q=85') center/cover; }
.hero::before {
  content: ''; position: absolute;
  top: 50%; right: -10%; transform: translateY(-50%);
  width: 60vw; height: 60vw;
  background: radial-gradient(circle, rgba(168,127,78,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner { max-width: 1100px; position: relative; z-index: 2; animation: fadeUp 1.4s ease-out; }
.eyebrow {
  font-size: 12px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--brass); margin-bottom: 28px; font-weight: 500;
  display: flex; align-items: center; gap: 14px;
}
.eyebrow::before { content: ''; width: 36px; height: 1px; background: var(--brass); }
.hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(52px, 7.5vw, 112px);
  font-weight: 400; line-height: 0.98;
  letter-spacing: -1.5px; margin-bottom: 32px;
}
.hero.subhero h1 { font-size: clamp(44px, 6vw, 86px); }
.hero h1 em { font-style: italic; color: var(--brass); font-weight: 400; }
.hero .lead {
  font-size: 19px; max-width: 620px; line-height: 1.7;
  color: rgba(244, 241, 236, 0.85); font-weight: 300;
}
.hero-cta { margin-top: 44px; display: flex; gap: 20px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 30px; font-size: 13px; letter-spacing: 1.2px;
  text-transform: uppercase; text-decoration: none;
  border: 1px solid; transition: all 0.4s ease;
  font-weight: 500; cursor: pointer; background: transparent;
  font-family: inherit;
}
.btn-primary { background: var(--brass); color: var(--ink); border-color: var(--brass); }
.btn-primary:hover { background: var(--brass-deep); border-color: var(--brass-deep); color: var(--paper); transform: translateY(-2px); }
.btn-ghost { color: var(--paper); border-color: rgba(244,241,236,0.4); }
.btn-ghost:hover { border-color: var(--brass); color: var(--brass); }
.btn-dark { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn-dark:hover { background: var(--brass); border-color: var(--brass); color: var(--ink); }
.btn .arrow { transition: transform 0.3s; }
.btn:hover .arrow { transform: translateX(6px); }

.scroll-hint {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  color: rgba(244,241,236,0.6); font-size: 10px; letter-spacing: 3px;
  text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.scroll-hint::after {
  content: ''; width: 1px; height: 48px;
  background: rgba(244,241,236,0.4);
  animation: scrollLine 2.4s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(0.3); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }

section { padding: 140px 56px; position: relative; }
.container { max-width: 1280px; margin: 0 auto; }
.narrow { max-width: 1080px; margin: 0 auto; }

.section-head {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 80px; margin-bottom: 80px; align-items: end;
}
.section-eyebrow {
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--brass); margin-bottom: 16px;
  display: flex; align-items: center; gap: 14px;
}
.section-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--brass); }
.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 400; line-height: 1.05; letter-spacing: -1px;
}
.section-title em { font-style: italic; color: var(--brass-deep); }
.section-lede { font-size: 18px; line-height: 1.7; color: var(--muted); max-width: 560px; }

.intro-strip {
  background: var(--paper); padding: 96px 56px;
  border-bottom: 1px solid var(--line);
}
.intro-strip .container {
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: center;
}
.intro-strip h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400; line-height: 1.1; letter-spacing: -0.5px;
}
.intro-strip h2 em { font-style: italic; color: var(--brass-deep); }
.intro-strip p { font-size: 17px; line-height: 1.8; color: var(--ink-soft); }
.intro-strip p + p { margin-top: 20px; }

.pillars { background: var(--paper); border-top: 1px solid var(--line); }
.pillar-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; border-top: 1px solid var(--line);
}
.pillar {
  padding: 64px 44px; border-right: 1px solid var(--line);
  transition: background 0.5s ease;
  position: relative; overflow: hidden;
  text-decoration: none; color: inherit; display: block;
}
.pillar:last-child { border-right: none; }
.pillar::before {
  content: ''; position: absolute;
  top: 0; left: 0; width: 100%; height: 0;
  background: var(--ink); transition: height 0.5s ease; z-index: 0;
}
.pillar:hover::before { height: 100%; }
.pillar:hover { color: var(--paper); }
.pillar:hover .pillar-num { color: var(--brass); }
.pillar > * { position: relative; z-index: 1; }
.pillar-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 13px; color: var(--brass); font-style: italic;
  margin-bottom: 28px; letter-spacing: 2px; transition: color 0.5s;
}
.pillar h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 34px; font-weight: 400;
  margin-bottom: 20px; line-height: 1.1;
}
.pillar p { font-size: 15px; line-height: 1.7; margin-bottom: 28px; opacity: 0.85; }
.pillar-link {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: inherit;
  border-bottom: 1px solid currentColor; padding-bottom: 4px;
  display: inline-flex; gap: 8px; transition: gap 0.3s;
}
.pillar:hover .pillar-link { gap: 14px; }

.detail-section { padding: 140px 56px; border-top: 1px solid var(--line); }
.detail-section.alt { background: var(--paper-warm); }

.two-col {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 100px;
  margin-bottom: 80px; align-items: start;
}
.two-col h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 400; line-height: 1.05; letter-spacing: -1px;
  margin-bottom: 24px;
}
.two-col h2 em { font-style: italic; color: var(--brass-deep); }
.two-col .body p { font-size: 17px; line-height: 1.8; color: var(--ink-soft); }
.two-col .body p + p { margin-top: 20px; }

.criteria-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line); margin-bottom: 60px;
}
.criteria { background: var(--paper); padding: 36px 32px; }
.detail-section.alt .criteria { background: var(--paper-warm); }
.criteria .num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic; color: var(--brass);
  font-size: 14px; letter-spacing: 2px; margin-bottom: 16px;
}
.criteria h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 24px; font-weight: 500; margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.criteria p { font-size: 14.5px; color: var(--muted); line-height: 1.7; }

.process {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px; padding: 56px 0; border-top: 1px solid var(--line);
}
.step .step-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 56px; font-style: italic; color: var(--brass);
  line-height: 1; margin-bottom: 16px; font-weight: 400;
}
.step h5 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px; font-weight: 500; margin-bottom: 10px;
}
.step p { font-size: 14px; line-height: 1.6; color: var(--muted); }

.tag-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.tag {
  padding: 8px 16px; border: 1px solid var(--line);
  border-radius: 100px; font-size: 12.5px; letter-spacing: 0.3px;
  color: var(--ink-soft); background: var(--paper);
}
.detail-section.alt .tag { background: var(--paper-warm); }

.manifest {
  background: var(--ink); color: var(--paper);
  padding: 180px 56px; text-align: center;
  position: relative; overflow: hidden;
}
.manifest::before, .manifest::after {
  content: ''; position: absolute;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(168,127,78,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.manifest::before { top: -250px; left: -250px; }
.manifest::after { bottom: -250px; right: -250px; }
.manifest-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic; font-size: clamp(30px, 4vw, 52px);
  font-weight: 400; line-height: 1.3;
  max-width: 1000px; margin: 0 auto;
  position: relative; z-index: 1;
}
.manifest-quote em { font-style: normal; color: var(--brass); }
.manifest-source {
  margin-top: 48px; font-size: 11px; letter-spacing: 4px;
  text-transform: uppercase; color: rgba(244,241,236,0.5);
  position: relative; z-index: 1;
}

.cta-inline {
  margin-top: 80px; padding: 56px;
  border-left: 2px solid var(--brass);
  background: var(--paper);
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 60px; align-items: center;
}
.detail-section.alt .cta-inline { background: var(--paper); }
.cta-inline .cta-eyebrow {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--brass); margin-bottom: 14px;
}
.cta-inline h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 400; line-height: 1.3;
  letter-spacing: -0.3px; margin-bottom: 14px;
}
.cta-inline h3 em { font-style: italic; color: var(--brass-deep); }
.cta-inline p {
  font-size: 15.5px; line-height: 1.65;
  color: var(--ink-soft); max-width: 540px;
}
.cta-inline .btn { white-space: nowrap; }

.signature {
  margin-top: 56px; padding-top: 40px;
  border-top: 1px solid var(--line);
  display: flex; gap: 40px; align-items: flex-start;
}
.signature .sig-mark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic; font-size: 56px;
  color: var(--brass-deep); line-height: 1; flex-shrink: 0;
}
.signature .sig-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic; font-size: 22px;
  line-height: 1.55; color: var(--ink-soft); max-width: 720px;
}
.signature .sig-name {
  margin-top: 18px; font-family: 'Inter', sans-serif;
  font-style: normal; font-size: 12px;
  letter-spacing: 3px; text-transform: uppercase; color: var(--muted);
}

.netzwerk {
  background: var(--ink); color: var(--paper);
  padding: 110px 56px;
}
.netzwerk h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(34px, 4.4vw, 56px);
  font-weight: 400; letter-spacing: -1px; margin-bottom: 20px;
  max-width: 900px; line-height: 1.1;
}
.netzwerk h2 em { font-style: italic; color: var(--brass); }
.netzwerk > .container > p {
  color: rgba(244,241,236,0.7); font-size: 17px;
  max-width: 720px; line-height: 1.7;
}
.netzwerk-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; margin-top: 60px;
  background: rgba(244,241,236,0.12);
  border: 1px solid rgba(244,241,236,0.12);
}
.net-item {
  background: var(--ink); padding: 32px 28px;
  transition: background 0.4s;
}
.net-item:hover { background: rgba(168,127,78,0.1); }
.net-item .net-num {
  color: var(--brass); font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic; font-size: 13px; letter-spacing: 2px; margin-bottom: 14px;
}
.net-item h5 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px; font-weight: 500; margin-bottom: 8px;
}
.net-item p { font-size: 13.5px; color: rgba(244,241,236,0.65); line-height: 1.55; }

.ankauf { background: var(--paper-warm); padding: 160px 56px; border-top: 1px solid var(--line); }
.ankauf-hero {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 80px; align-items: center; margin-bottom: 100px;
}
.ankauf-hero h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 400; line-height: 1;
  letter-spacing: -1.5px; margin-bottom: 28px;
}
.ankauf-hero h2 em { font-style: italic; color: var(--brass-deep); }
.ankauf-hero p {
  font-size: 19px; line-height: 1.7;
  color: var(--ink-soft); max-width: 480px;
}
.ankauf-hero p + p { margin-top: 16px; font-size: 16px; color: var(--muted); }
.ankauf-image {
  aspect-ratio: 4/5; position: relative;
  background:
    linear-gradient(180deg, transparent 55%, rgba(26,29,36,0.55) 100%),
    url('https://images.unsplash.com/photo-1448630360428-65456885c650?w=1200&q=85') center/cover;
  box-shadow: 0 30px 80px rgba(26,29,36,0.2);
}
.ankauf-image::before {
  content: 'Diskret. Schnell. Kompetent.';
  position: absolute; bottom: 32px; left: 32px;
  color: var(--paper);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic; font-size: 22px;
  letter-spacing: 0.5px; max-width: 280px; line-height: 1.3;
}

.profil-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; margin-bottom: 56px;
}
.profil-card {
  background: var(--paper); padding: 48px 36px;
  border: 1px solid var(--line);
  transition: all 0.4s ease; position: relative;
}
.profil-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(26,29,36,0.12);
  border-color: var(--brass);
}
.profil-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--brass); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px; color: var(--brass);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px; font-style: italic;
}
.profil-card h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 26px; font-weight: 500;
  margin-bottom: 18px; letter-spacing: -0.3px;
}
.profil-card .big {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 30px; font-style: italic;
  color: var(--brass-deep); margin: 10px 0;
  letter-spacing: -0.5px;
}
.profil-card ul { list-style: none; margin-top: 12px; }
.profil-card li {
  font-size: 14px; color: var(--ink-soft);
  padding: 9px 0; border-bottom: 1px solid var(--line-light);
}
.profil-card li:last-child { border-bottom: none; }

.usp-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; padding: 56px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 80px;
}
.usp { text-align: center; }
.usp .check {
  width: 32px; height: 32px; margin: 0 auto 16px;
  border: 1px solid var(--brass); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--brass); font-size: 14px;
}
.usp h5 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px; font-weight: 500; margin-bottom: 8px;
}
.usp p { font-size: 13px; color: var(--muted); line-height: 1.5; }

.map-section {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  background: var(--paper); padding: 80px 48px;
  border: 1px solid var(--line); margin-bottom: 60px;
}
.map-svg { width: 100%; height: auto; }
.map-svg path { transition: fill 0.4s ease; cursor: pointer; }
.map-svg path { fill: var(--line-light); stroke: var(--line); stroke-width: 0.5; }
.map-svg path.fokus { fill: var(--brass); }
.map-svg path.fokus:hover { fill: var(--brass-deep); }
.map-legend h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 32px; font-weight: 500; margin-bottom: 16px;
}
.map-legend p { font-size: 15px; line-height: 1.7; color: var(--muted); margin-bottom: 24px; }
.map-legend ul { list-style: none; }
.map-legend li {
  font-size: 14px; padding: 10px 0;
  border-bottom: 1px solid var(--line-light);
  display: flex; justify-content: space-between; align-items: center;
}
.map-legend li::before {
  content: ''; width: 8px; height: 8px;
  background: var(--brass); border-radius: 50%; margin-right: 12px;
}
.map-legend li span:last-child { color: var(--brass-deep); font-style: italic; font-family: 'Cormorant Garamond', Georgia, serif; font-size: 16px; }

.ankauf-process {
  background: var(--paper); padding: 56px 48px;
  border: 1px solid var(--line); margin-bottom: 60px;
}
.ankauf-process h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 32px; font-weight: 500; margin-bottom: 12px;
}
.ankauf-process > p { color: var(--muted); margin-bottom: 32px; font-size: 15px; }

.anti-list {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; padding: 56px 48px;
  background: var(--paper); border: 1px solid var(--line);
  margin-bottom: 60px;
}
.anti-list h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 26px; font-weight: 500; margin-bottom: 16px;
}
.anti-list ul { list-style: none; }
.anti-list li {
  font-size: 14.5px; padding: 10px 0;
  border-bottom: 1px solid var(--line-light);
  color: var(--ink-soft);
  display: flex; align-items: center; gap: 12px;
}
.anti-list li:last-child { border-bottom: none; }
.anti-list.do li::before { content: '✓'; color: var(--brass); font-weight: 600; }
.anti-list.dont li::before { content: '×'; color: var(--muted); font-size: 18px; }

.cta-band {
  background: var(--ink); color: var(--paper);
  padding: 96px 56px; text-align: center;
  margin: 0 -56px;
}
.cta-band h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400; margin-bottom: 16px;
}
.cta-band h3 em { font-style: italic; color: var(--brass); }
.cta-band p { color: rgba(244,241,236,0.7); margin-bottom: 36px; }

.funnel-section {
  background: var(--paper-warm); padding: 140px 56px;
  border-top: 1px solid var(--line);
}
.funnel-card {
  background: var(--paper); border: 1px solid var(--line);
  max-width: 820px; margin: 0 auto;
  padding: 56px 64px;
  box-shadow: 0 30px 80px rgba(26,29,36,0.08);
}
.funnel-progress { display: flex; gap: 12px; margin-bottom: 40px; }
.funnel-progress .pip { flex: 1; height: 3px; background: var(--line); transition: background 0.4s; }
.funnel-progress .pip.active { background: var(--brass); }
.funnel-progress .pip.done { background: var(--brass-deep); }
.funnel-step { display: none; }
.funnel-step.active { display: block; animation: fadeUp 0.5s ease-out; }
.funnel-step .step-eyebrow {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--brass); margin-bottom: 14px;
}
.funnel-step h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 32px; font-weight: 400; line-height: 1.2;
  margin-bottom: 10px; letter-spacing: -0.5px;
}
.funnel-step h3 em { font-style: italic; color: var(--brass-deep); }
.funnel-step > p { color: var(--muted); margin-bottom: 32px; font-size: 15px; }
.funnel-options {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 12px; margin-bottom: 32px;
}
.funnel-option {
  padding: 18px 20px; border: 1px solid var(--line);
  background: var(--paper); cursor: pointer;
  transition: all 0.3s; font: inherit;
  text-align: left;
  font-size: 14.5px; color: var(--ink); position: relative;
}
.funnel-option:hover { border-color: var(--brass); background: var(--paper-warm); }
.funnel-option.selected { border-color: var(--brass); background: var(--brass); color: var(--ink); font-weight: 500; }
.funnel-option.selected::after {
  content: '✓'; position: absolute; right: 18px; top: 50%; transform: translateY(-50%);
  color: var(--ink); font-weight: 700;
}
.funnel-step input, .funnel-step select, .funnel-step textarea {
  width: 100%; padding: 14px 0;
  border: none; border-bottom: 1px solid var(--line);
  background: transparent; font: inherit; font-size: 15px;
  color: var(--ink); margin-bottom: 24px;
}
.funnel-step input:focus, .funnel-step textarea:focus { outline: none; border-bottom-color: var(--brass); }
.file-upload {
  display: block; padding: 24px; margin-bottom: 24px;
  border: 1px dashed var(--line); cursor: pointer;
  transition: all 0.3s; text-align: center;
  background: var(--paper-warm);
}
.file-upload:hover { border-color: var(--brass); background: var(--paper); }
.file-upload .file-label {
  display: block; font-size: 13px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--brass);
  font-weight: 500; margin-bottom: 6px;
}
.file-upload .file-hint { display: block; font-size: 12px; color: var(--muted); }
.file-upload input[type="file"] {
  display: block; width: 100%; padding: 14px 0 0; margin: 0;
  border-bottom: none; font-size: 13px; color: var(--ink-soft);
}
.funnel-actions {
  display: flex; justify-content: space-between;
  margin-top: 32px; padding-top: 32px;
  border-top: 1px solid var(--line);
}
.funnel-back {
  background: transparent; border: none; cursor: pointer;
  font: inherit; font-size: 12px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--muted);
  transition: color 0.3s;
}
.funnel-back:hover { color: var(--ink); }
.funnel-success { text-align: center; padding: 40px 0; }
.funnel-success .check-circle {
  width: 64px; height: 64px; margin: 0 auto 24px;
  border: 1px solid var(--brass); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: var(--brass);
}

.trust {
  background: var(--ink); color: var(--paper);
  padding: 140px 56px;
  border-top: 1px solid rgba(244,241,236,0.08);
}
.trust .section-eyebrow { color: var(--brass); }
.trust .section-title { color: var(--paper); }
.trust .section-title em { color: var(--brass); }
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 40px; margin-top: 60px;
}
.trust-item {
  border-top: 1px solid rgba(244,241,236,0.15);
  padding-top: 32px;
}
.trust-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 64px; font-weight: 400;
  color: var(--brass); line-height: 1;
  letter-spacing: -2px; margin-bottom: 16px;
}
.trust-item p {
  font-size: 14px; color: rgba(244,241,236,0.75); line-height: 1.6;
}

.booking-section {
  background: var(--paper); padding: 140px 56px;
  border-top: 1px solid var(--line);
}
.booking-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 80px; align-items: center;
}
.booking-info h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 400; line-height: 1.05;
  letter-spacing: -1px; margin-bottom: 24px;
}
.booking-info h2 em { font-style: italic; color: var(--brass-deep); }
.booking-info p { font-size: 17px; color: var(--ink-soft); line-height: 1.7; margin-bottom: 24px; }
.booking-info ul { list-style: none; margin-bottom: 32px; }
.booking-info li {
  font-size: 15px; padding: 10px 0;
  border-bottom: 1px solid var(--line-light);
  display: flex; align-items: center; gap: 14px;
}
.booking-info li::before {
  content: ''; width: 6px; height: 6px;
  background: var(--brass); border-radius: 50%;
}
.booking-embed {
  background: var(--ink); color: var(--paper);
  padding: 48px; min-height: 380px;
  display: flex; flex-direction: column; justify-content: center;
  text-align: center; position: relative; overflow: hidden;
}
.booking-embed::before {
  content: ''; position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168,127,78,0.15) 0%, transparent 70%);
}
.booking-embed h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 32px; font-weight: 500; margin-bottom: 14px;
  position: relative;
}
.booking-embed p { color: rgba(244,241,236,0.7); margin-bottom: 28px; position: relative; }
.booking-embed .btn { margin: 0 auto; position: relative; }
.booking-note {
  margin-top: 18px; font-size: 12px;
  color: rgba(244,241,236,0.5);
  position: relative;
}

.kontakt { background: var(--paper); padding: 140px 56px; }
.kontakt-grid {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 100px;
}
.kontakt-info h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 400; line-height: 1.05;
  letter-spacing: -1px; margin-bottom: 24px;
}
.kontakt-info h2 em { font-style: italic; color: var(--brass-deep); }
.kontakt-info > p {
  font-size: 17px; line-height: 1.7;
  color: var(--ink-soft); margin-bottom: 40px;
}
.kontakt-detail {
  padding: 20px 0; border-top: 1px solid var(--line);
  display: flex; gap: 24px;
}
.kontakt-detail:last-child { border-bottom: 1px solid var(--line); }
.kontakt-label {
  font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--brass);
  width: 100px; flex-shrink: 0; padding-top: 4px;
}
.kontakt-value { font-size: 16px; }
.kontakt-value a { color: var(--ink); text-decoration: none; }
.kontakt-value a:hover { color: var(--brass-deep); }

form { display: grid; gap: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field label {
  font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--brass);
  margin-bottom: 8px; display: block;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 0;
  border: none; border-bottom: 1px solid var(--line);
  background: transparent; font: inherit; font-size: 15px;
  color: var(--ink); transition: border-color 0.3s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-bottom-color: var(--brass);
}
.field textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: 12px; color: var(--muted); margin-top: 8px; }

footer {
  background: var(--ink); color: var(--paper);
  padding: 80px 56px 40px;
  border-top: 1px solid rgba(244,241,236,0.1);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px; margin-bottom: 60px;
}
footer h6 {
  font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--brass);
  margin-bottom: 20px; font-weight: 500;
}
footer .footer-logo {
  display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
}
footer .footer-logo svg { width: 30px; height: 30px; }
footer .footer-logo .logo-text { color: var(--paper); }
footer .footer-logo .logo-text span { color: var(--brass); }
footer p, footer a {
  font-size: 14px; color: rgba(244,241,236,0.7);
  text-decoration: none; line-height: 1.9; display: block;
}
footer a:hover { color: var(--brass); }
.footer-bottom {
  border-top: 1px solid rgba(244,241,236,0.1);
  padding-top: 24px; display: flex;
  justify-content: space-between; font-size: 12px;
  color: rgba(244,241,236,0.4);
}

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 1s ease, transform 1s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

@media (max-width: 1000px) {
  .section-head, .two-col, .ankauf-hero, .intro-strip .container, .kontakt-grid, .booking-grid, .map-section { grid-template-columns: 1fr; gap: 40px; }
  .pillar-grid, .profil-grid, .trust-grid, .footer-grid, .netzwerk-grid { grid-template-columns: 1fr 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid var(--line); }
  .criteria-grid, .anti-list, .form-row, .funnel-options { grid-template-columns: 1fr; }
  .process, .usp-row { grid-template-columns: 1fr 1fr; }
  nav { padding: 14px 20px; }
  nav ul { gap: 14px; font-size: 11px; }
  section, .hero, .ankauf, .trust, .kontakt, .intro-strip, .detail-section, .funnel-section, .booking-section, .netzwerk, footer { padding-left: 24px; padding-right: 24px; }
  .cta-band, .cta-inline { padding: 40px 24px; }
  .cta-band { margin: 0 -24px; }
  .cta-inline { grid-template-columns: 1fr; gap: 30px; }
  .funnel-card { padding: 40px 28px; }
}

@media (max-width: 800px) {
  .nav-toggle { display: block; }
  nav ul {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    width: 100%; height: 100vh;
    background: var(--paper);
    flex-direction: column;
    justify-content: center; align-items: center;
    gap: 28px;
    padding: 80px 24px 40px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 150;
  }
  body.nav-open nav ul { transform: translateX(0); }
  body.nav-open { overflow: hidden; }
  nav ul li {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 28px;
    font-weight: 400;
    letter-spacing: -0.5px;
  }
  nav ul a { font-size: inherit; padding-bottom: 6px; }
  nav ul .lang-toggle { font-size: 11px; }
  .signature { flex-direction: column; gap: 16px; }
  .pillar-grid, .profil-grid, .trust-grid, .footer-grid, .netzwerk-grid { grid-template-columns: 1fr; }
  .anti-list { padding: 32px 24px; }
  .ankauf-process { padding: 32px 24px; }
  .funnel-card { padding: 32px 20px; }
  .hero h1 { font-size: clamp(40px, 11vw, 64px); }
  .hero.subhero h1 { font-size: clamp(36px, 9vw, 56px); }
}

@media (max-width: 480px) {
  .funnel-actions { flex-direction: column; gap: 16px; align-items: stretch; }
  .funnel-actions .btn { justify-content: center; }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
}
