/* Betcher Design — 52 Immobilien · 2026 */

@font-face { font-family: 'Cormorant Garamond'; font-style: normal; font-weight: 500 700; font-display: swap; src: url('../fonts/cormorant-normal-ext.woff2') format('woff2'); unicode-range: U+0100-02AF,U+0304,U+0308,U+0329,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF; }
@font-face { font-family: 'Cormorant Garamond'; font-style: normal; font-weight: 500 700; font-display: swap; src: url('../fonts/cormorant-normal.woff2') format('woff2'); unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD; }
@font-face { font-family: 'Cormorant Garamond'; font-style: italic; font-weight: 500 600; font-display: swap; src: url('../fonts/cormorant-italic-ext.woff2') format('woff2'); unicode-range: U+0100-02AF,U+0304,U+0308,U+0329,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF; }
@font-face { font-family: 'Cormorant Garamond'; font-style: italic; font-weight: 500 600; font-display: swap; src: url('../fonts/cormorant-italic.woff2') format('woff2'); unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD; }
@font-face { font-family: 'Outfit'; font-style: normal; font-weight: 300 600; font-display: swap; src: url('../fonts/outfit-ext.woff2') format('woff2'); unicode-range: U+0100-02AF,U+0304,U+0308,U+0329,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF; }
@font-face { font-family: 'Outfit'; font-style: normal; font-weight: 300 600; font-display: swap; src: url('../fonts/outfit.woff2') format('woff2'); unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD; }

:root {
  --primary: #141D2B;
  --secondary: #B8934A;
  --accent: #B8934A;
  --bg: #F7F5F0;
  --bg-alt: #FFFFFF;
  --text: #141D2B;
  --text-muted: #706B62;
  --serif: 'Cormorant Garamond', serif;
  --sans: 'Outfit', sans-serif;
  --transition: opacity 0.3s ease, transform 0.3s ease;
  --radius: 6px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--bg); color: var(--text); overflow-x: hidden; line-height: 1.6; font-weight: 400; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

.container { width: 90%; max-width: 1200px; margin: 0 auto; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .9rem 2rem;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  transition: var(--transition), background-color .3s ease, color .3s ease;
}
.btn-gold { background: var(--secondary); color: #fff; }
.btn-gold:hover { opacity: .88; transform: translateY(-2px); }
.btn-outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.3); }
.btn-outline:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.55); }
.btn-primary-dark { background: var(--primary); color: #fff; }
.btn-primary-dark:hover { opacity: .88; transform: translateY(-2px); }

.section-tag {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.section-tag::before { content: ''; display: block; width: 28px; height: 1px; background: var(--secondary); flex-shrink: 0; }

.section-headline {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.12;
  margin-bottom: 1rem;
}
.section-sub { color: var(--text-muted); font-size: 1rem; line-height: 1.8; max-width: 520px; margin-bottom: 3.5rem; font-weight: 300; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s cubic-bezier(.16,1,.3,1); }
.reveal.in { opacity: 1; transform: translateY(0); }

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 400;
  padding: 1.5rem 0;
  transition: background .4s ease, box-shadow .4s ease, padding .4s ease;
}
.nav.scrolled { background: var(--bg-alt); box-shadow: 0 1px 24px rgba(0,0,0,.07); padding: 1rem 0; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }

.nav-logo { font-family: var(--serif); font-size: 1.55rem; font-weight: 700; color: #fff; letter-spacing: .02em; transition: color .4s ease; }
.nav-logo .logo-slash { color: var(--secondary); font-style: italic; }
.nav-logo .logo-immo { font-family: var(--sans); font-size: .85em; font-weight: 300; letter-spacing: .06em; }
.nav.scrolled .nav-logo { color: var(--text); }

.nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.nav-links a { font-size: .78rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.7); transition: color .3s ease; }
.nav-links a:hover { color: #fff; }
.nav.scrolled .nav-links a { color: var(--text-muted); }
.nav.scrolled .nav-links a:hover { color: var(--text); }

.nav-cta { font-family: var(--sans); font-size: .75rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; padding: .65rem 1.4rem; background: var(--secondary); color: #fff; border-radius: var(--radius); transition: var(--transition), background .3s ease; }
.nav-cta:hover { opacity: .88; transform: translateY(-1px); }

.nav-burger { display: none; flex-direction: column; gap: 6px; cursor: pointer; background: none; border: none; padding: 4px; z-index: 201; position: relative; }
.nav-burger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: transform .4s cubic-bezier(.16,1,.3,1), opacity .25s ease, background .4s ease; transform-origin: center; }
.nav.scrolled .nav-burger span { background: var(--text); }
.nav-burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.nav-burger.open span { background: #fff !important; }

.nav.scrolled:has(.nav-burger.open) { background: var(--primary); box-shadow: none; }
.nav.scrolled:has(.nav-burger.open) .nav-logo { color: #fff; }
.nav.scrolled:has(.nav-burger.open) .nav-links a { color: rgba(255,255,255,.7); }

.mobile-nav {
  position: fixed; inset: 0;
  background: var(--primary);
  z-index: 300;
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 2rem;
  opacity: 0; pointer-events: none;
  transform: translateX(100%);
  transition: transform .55s cubic-bezier(.16,1,.3,1), opacity .3s ease;
}
.mobile-nav.open { opacity: 1; pointer-events: all; transform: translateX(0); }
.mobile-nav a { font-family: var(--serif); font-size: 2.4rem; font-weight: 600; color: #fff; opacity: 0; transform: translateX(40px); transition: opacity .45s ease, transform .45s cubic-bezier(.16,1,.3,1); }
.mobile-nav a:hover { color: var(--secondary); }
.mobile-nav.open a:nth-child(1) { opacity: 1; transform: translateX(0); transition-delay: .18s; }
.mobile-nav.open a:nth-child(2) { opacity: 1; transform: translateX(0); transition-delay: .25s; }
.mobile-nav.open a:nth-child(3) { opacity: 1; transform: translateX(0); transition-delay: .32s; }
.mobile-nav.open a:nth-child(4) { opacity: 1; transform: translateX(0); transition-delay: .39s; }
.mobile-nav .mob-cta { font-family: var(--sans); font-size: .82rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; padding: .9rem 2rem; background: var(--secondary); color: #fff; border-radius: var(--radius); margin-top: 1rem; opacity: 0; transform: translateX(40px); transition: opacity .45s ease, transform .45s cubic-bezier(.16,1,.3,1); }
.mobile-nav.open .mob-cta { opacity: 1; transform: translateX(0); transition-delay: .46s; }
.mobile-close { position: absolute; top: 1.5rem; right: 5%; background: none; border: none; color: rgba(255,255,255,.4); font-size: 1.5rem; cursor: pointer; line-height: 1; transition: color .3s ease; z-index: 210; }
.mobile-close:hover { color: #fff; }

.stage {
  height: 100vh;
  min-height: 700px;
  display: grid;
  grid-template-columns: 58% 42%;
  position: relative;
}
.stage > .stage-gold-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--secondary) 35%, var(--secondary) 65%, transparent 100%);
  z-index: 10;
}

.stage-left {
  background: var(--primary);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 5% 4rem max(5%, calc((100vw - 1200px) / 2 + 5%));
  position: relative;
  overflow: hidden;
}

.stage-left::before {
  content: '5/2';
  position: absolute;
  font-family: var(--serif);
  font-size: clamp(16rem, 28vw, 32rem);
  font-weight: 700;
  color: rgba(255,255,255,.025);
  line-height: 1;
  right: -1rem;
  bottom: -2rem;
  pointer-events: none;
  user-select: none;
}

.stage-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
  pointer-events: none;
}


.stage-tag-wrap { position: relative; z-index: 1; }
.stage-tag { color: var(--secondary); margin-bottom: 2rem; }
.stage-tag::before { background: var(--secondary); }

.stage-headline {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 4.5vw, 5rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 2.25rem;
  position: relative;
  z-index: 1;
}
.stage-headline em { color: var(--secondary); font-style: italic; display: block; }

.stage-cycle { display: block; position: relative; height: 1.15em; overflow: visible; }
.stage-cycle-item {
  position: absolute;
  left: 0;
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .65s cubic-bezier(.16,1,.3,1), transform .65s cubic-bezier(.16,1,.3,1);
  white-space: nowrap;
}
.stage-cycle-item.active { opacity: 1; transform: translateY(0); }
.stage-cycle-item.exit { opacity: 0; transform: translateY(-28px); transition: opacity .5s ease, transform .5s ease; }

.stage-sub { font-size: 1rem; color: rgba(255,255,255,.5); line-height: 1.8; max-width: 420px; margin-bottom: 3rem; font-weight: 300; position: relative; z-index: 1; }

.stage-actions { display: flex; gap: 1rem; flex-wrap: wrap; position: relative; z-index: 1; }

.stage-right { position: relative; overflow: hidden; }
.stage-right img { width: 100%; height: 100%; object-fit: cover; transition: transform 9s ease; }
.stage-right:hover img { transform: scale(1.05); }
.stage-right::before { content: ''; position: absolute; inset: 0; background: rgba(14,22,40,.45); z-index: 1; }
.stage-right::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, rgba(20,29,43,.7) 0%, rgba(20,29,43,.1) 55%, transparent 100%); z-index: 2; }

.leistungen { padding: 7rem 0; background: var(--bg); }

.dienst-reihe { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.5rem; }
.dienst-karte { grid-column: span 2; }
.dienst-karte:nth-child(4) { grid-column: 2 / span 2; }
.dienst-karte:nth-child(5) { grid-column: 4 / span 2; }

.zusatz-wrap { margin-top: 3rem; padding-top: 2.5rem; border-top: 1px solid rgba(20,29,43,.08); }
.zusatz-label { font-size: .7rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1.25rem; text-align: center; }
.zusatz-reihe { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; max-width: 820px; margin: 0 auto; }
.zusatz-item { display: flex; gap: 1rem; align-items: flex-start; background: transparent; border: 1px solid rgba(20,29,43,.1); border-radius: 8px; padding: 1.25rem 1.5rem; }
.zusatz-icon { width: 32px; height: 32px; min-width: 32px; border-radius: 6px; background: rgba(184,147,74,.08); display: flex; align-items: center; justify-content: center; color: var(--secondary); }
.zusatz-item h4 { font-size: .88rem; font-weight: 600; color: var(--text); margin-bottom: .2rem; }
.zusatz-item p { font-size: .82rem; color: var(--text-muted); line-height: 1.65; font-weight: 300; }

.dienst-karte {
  background: var(--bg-alt);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(20,29,43,.07);
  transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s ease;
  position: relative;
  cursor: pointer;
}

.dienst-link::after { content: ""; position: absolute; inset: 0; z-index: 10; }
.dienst-karte:hover { transform: translateY(-7px); box-shadow: 0 24px 60px rgba(20,29,43,.1); }

.dienst-karte-accent { height: 3px; background: linear-gradient(90deg, var(--secondary), rgba(184,147,74,.4)); }
.dienst-karte-body { padding: 2rem 1.75rem 1.75rem; flex: 1; display: flex; flex-direction: column; }

.dienst-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: rgba(184,147,74,.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

.dienst-karte h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: var(--text); margin-bottom: .75rem; line-height: 1.15; }
.dienst-karte p { font-size: .9rem; color: var(--text-muted); line-height: 1.8; flex: 1; font-weight: 300; margin-bottom: 1.75rem; }
.dienst-link { font-size: .75rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--secondary); display: flex; align-items: center; gap: .5rem; transition: gap .3s ease; }
.dienst-karte:hover .dienst-link { gap: .9rem; }

.ansatz { background: var(--primary); padding: 7rem 0; position: relative; overflow: hidden; }
.ansatz::before { content: ''; position: absolute; width: 700px; height: 700px; border-radius: 50%; background: radial-gradient(circle, rgba(184,147,74,.07) 0%, transparent 70%); top: -250px; right: -200px; pointer-events: none; }
.ansatz::after { content: ''; position: absolute; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(184,147,74,.05) 0%, transparent 70%); bottom: -150px; left: -100px; pointer-events: none; }

.ansatz-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; position: relative; z-index: 1; }

.ansatz-copy .section-tag { color: rgba(184,147,74,.9); }
.ansatz-copy .section-tag::before { background: var(--secondary); }
.ansatz-copy .section-headline { color: #fff; }
.ansatz-copy .section-sub { color: rgba(255,255,255,.45); margin-bottom: 0; }

.ansatz-pillars { display: flex; flex-direction: column; gap: 2rem; }

.pfeiler { display: flex; gap: 1.5rem; align-items: flex-start; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,.06); }
.pfeiler:last-child { border-bottom: none; padding-bottom: 0; }

.pfeiler-nr { font-family: var(--serif); font-size: 2.8rem; font-weight: 700; color: var(--secondary); line-height: 1; min-width: 2.5rem; opacity: .4; }
.pfeiler-body h4 { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; color: #fff; margin-bottom: .4rem; }
.pfeiler-body p { font-size: .88rem; color: rgba(255,255,255,.4); line-height: 1.75; font-weight: 300; }

.person { padding: 7rem 0; background: var(--bg-alt); }
.person-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }

.person-bild {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #1c2d45 0%, #2a3f5c 100%);
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.person-bild img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.person-bild::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 45%; background: linear-gradient(to top, rgba(20,29,43,.25), transparent); pointer-events: none; }
.person-initialen { font-family: var(--serif); font-size: 6rem; font-weight: 700; color: rgba(255,255,255,.1); user-select: none; }

.person-zitat {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
  font-style: italic;
  color: var(--text);
  line-height: 1.5;
  border-left: 3px solid var(--secondary);
  padding-left: 1.5rem;
  margin: 2rem 0;
}
.person-copy p { font-size: .92rem; color: var(--text-muted); line-height: 1.85; font-weight: 300; margin-bottom: .875rem; }
.person-meta { margin-top: 2.25rem; display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.person-name-block strong { font-family: var(--serif); font-size: 1.15rem; font-weight: 600; display: block; }
.person-name-block span { font-size: .78rem; color: var(--text-muted); letter-spacing: .08em; text-transform: uppercase; }

.kennzahlen { padding: 5.5rem 0; background: var(--bg); border-top: 1px solid rgba(20,29,43,.06); border-bottom: 1px solid rgba(20,29,43,.06); }
.kenn-reihe { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.kenn-item { text-align: center; }
.kenn-zahl { font-family: var(--serif); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; color: var(--text); line-height: 1; margin-bottom: .5rem; }
.kenn-zahl sup { color: var(--secondary); font-size: .5em; vertical-align: super; }
.kenn-label { font-size: .78rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); }

.anfrage { padding: 7rem 0; background: var(--primary); position: relative; overflow: hidden; }
.anfrage::before { content: ''; position: absolute; right: -140px; top: 50%; transform: translateY(-50%); width: 560px; height: 560px; border-radius: 50%; border: 1px solid rgba(184,147,74,.09); pointer-events: none; }
.anfrage::after { content: ''; position: absolute; right: -80px; top: 50%; transform: translateY(-50%); width: 380px; height: 380px; border-radius: 50%; border: 1px solid rgba(184,147,74,.14); pointer-events: none; }
.anfrage-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: start; position: relative; z-index: 1; }

.anfrage-info .section-tag { color: var(--secondary); }
.anfrage-info .section-tag::before { background: var(--secondary); }
.anfrage-info .section-headline { color: #fff; }
.anfrage-info .section-sub { color: rgba(255,255,255,.4); font-size: .95rem; }

.anfrage-kontakt { margin-top: 3rem; display: flex; flex-direction: column; gap: 1.25rem; }
.kontakt-zeile { display: flex; align-items: center; gap: .875rem; font-size: .9rem; color: rgba(255,255,255,.55); font-weight: 300; }
.kontakt-zeile svg { color: var(--secondary); flex-shrink: 0; }
.kontakt-zeile a { color: rgba(255,255,255,.55); transition: color .3s ease; }
.kontakt-zeile a:hover { color: #fff; }

.anfrage-formular { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 12px; padding: 2.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-feld { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.form-feld.voll { grid-column: 1 / -1; }
.form-feld label { font-size: .72rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.4); }
.form-feld input, .form-feld textarea, .form-feld select { font-family: var(--sans); font-size: .9rem; color: #fff; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: .875rem 1rem; outline: none; width: 100%; transition: border-color .3s ease, background .3s ease; }
.form-feld input::placeholder, .form-feld textarea::placeholder { color: rgba(255,255,255,.22); }
.form-feld input:focus, .form-feld textarea:focus { border-color: var(--secondary); background: rgba(255,255,255,.09); }
.form-feld textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.form-send { margin-top: .5rem; }
.form-send .btn { width: 100%; justify-content: center; }

.footer { background: #0d1520; padding: 4.5rem 0 2rem; }
.footer-raster { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.06); }
.footer-logo { font-family: var(--serif); font-size: 1.6rem; font-weight: 700; color: #fff; margin-bottom: .875rem; }
.footer-logo .logo-slash { color: var(--secondary); font-style: italic; }
.footer-desc { font-size: .87rem; color: rgba(255,255,255,.32); line-height: 1.8; font-weight: 300; max-width: 280px; margin-bottom: 1.5rem; }
.footer-craft { font-size: .75rem; color: rgba(255,255,255,.2); }
.footer-craft a { color: rgba(255,255,255,.3); transition: color .3s ease; }
.footer-craft a:hover { color: rgba(255,255,255,.6); }
.footer-col h4 { font-size: .7rem; font-weight: 500; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul li a { font-size: .87rem; color: rgba(255,255,255,.4); transition: color .3s ease; font-weight: 300; }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; gap: 1rem; flex-wrap: wrap; }
.footer-copy { font-size: .78rem; color: rgba(255,255,255,.22); font-weight: 300; }

.sub-stage { background: var(--primary); padding: 9rem 0 5rem; position: relative; overflow: hidden; }
.sub-stage::before { content: ''; position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E"); pointer-events: none; }
.sub-stage::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, transparent, var(--secondary), transparent); }

.sub-crumb { font-size: .75rem; color: rgba(255,255,255,.3); display: flex; align-items: center; gap: .5rem; margin-bottom: 1.75rem; }
.sub-crumb a { color: rgba(255,255,255,.3); transition: color .3s ease; }
.sub-crumb a:hover { color: rgba(255,255,255,.65); }
.sub-crumb svg { flex-shrink: 0; }

.sub-stage h1 { font-family: var(--serif); font-size: clamp(2.6rem, 5vw, 4.2rem); font-weight: 600; color: #fff; line-height: 1.08; margin-bottom: 1.25rem; position: relative; z-index: 1; }
.sub-stage h1 em { color: var(--secondary); font-style: italic; }
.sub-stage > .container > p { font-size: 1.05rem; color: rgba(255,255,255,.5); max-width: 600px; line-height: 1.8; font-weight: 300; position: relative; z-index: 1; }
.sub-stage-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2.5rem; position: relative; z-index: 1; }

.sub-inhalt { padding: 6rem 0; background: var(--bg); }
.sub-inhalt-raster { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.sub-inhalt h2 { font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 600; color: var(--text); margin-bottom: 1.25rem; line-height: 1.15; }
.sub-inhalt p { font-size: .93rem; color: var(--text-muted); line-height: 1.85; font-weight: 300; margin-bottom: .875rem; }
.sub-inhalt ul { list-style: none; padding: 0; margin-top: 1.5rem; display: flex; flex-direction: column; gap: .6rem; }
.sub-inhalt ul li { display: flex; align-items: center; gap: .75rem; font-size: .9rem; color: var(--text-muted); font-weight: 300; }
.sub-inhalt ul li::before { content: ''; display: block; width: 18px; height: 18px; min-width: 18px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23B8934A' stroke-width='2.5'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-size: contain; }

.umfang { padding: 6rem 0; background: var(--bg-alt); }
.umfang-raster { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.umfang-punkt { display: flex; gap: 1rem; align-items: flex-start; }
.umfang-icon { width: 38px; height: 38px; min-width: 38px; border-radius: 8px; background: rgba(184,147,74,.1); display: flex; align-items: center; justify-content: center; color: var(--secondary); margin-top: 2px; }
.umfang-punkt h4 { font-weight: 600; font-size: .9rem; color: var(--text); margin-bottom: .25rem; }
.umfang-punkt p { font-size: .83rem; color: var(--text-muted); line-height: 1.65; font-weight: 300; }

.ablauf { padding: 6rem 0; background: var(--bg); }
.ablauf-schritte { display: flex; flex-direction: column; gap: 0; margin-top: 3rem; max-width: 760px; }
.schritt { display: flex; gap: 2rem; position: relative; padding-bottom: 2.5rem; }
.schritt:last-child { padding-bottom: 0; }
.schritt::before { content: ''; position: absolute; left: 19px; top: 42px; bottom: 0; width: 1px; background: rgba(20,29,43,.08); }
.schritt:last-child::before { display: none; }
.schritt-nr { width: 40px; height: 40px; min-width: 40px; border-radius: 50%; border: 1.5px solid var(--secondary); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 1rem; font-weight: 600; color: var(--secondary); background: var(--bg); position: relative; z-index: 1; flex-shrink: 0; }
.schritt-body h4 { font-family: var(--serif); font-size: 1.25rem; font-weight: 600; color: var(--text); margin-bottom: .35rem; margin-top: .5rem; }
.schritt-body p { font-size: .88rem; color: var(--text-muted); line-height: 1.8; font-weight: 300; }

.faq { padding: 6rem 0; background: var(--bg-alt); text-align: center; }
.faq .section-tag { justify-content: center; }
.faq .section-tag::before { display: none; }
.faq-liste { margin: 3rem auto 0; max-width: 760px; display: flex; flex-direction: column; gap: .75rem; }
.faq-punkt { border: 1px solid rgba(20,29,43,.08); border-radius: var(--radius); overflow: hidden; background: var(--bg); }
.faq-frage { width: 100%; background: none; border: none; padding: 1.2rem 1.5rem; font-family: var(--sans); font-size: .93rem; font-weight: 500; color: var(--text); text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; transition: color .3s ease; }
.faq-frage:hover { color: var(--secondary); }
.faq-frage svg { flex-shrink: 0; transition: transform .35s ease; }
.faq-punkt.open .faq-frage svg { transform: rotate(45deg); }
.faq-antwort { 
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s cubic-bezier(.16,1,.3,1);
  overflow: hidden;
}
.faq-punkt.open .faq-antwort { grid-template-rows: 1fr; }
.faq-antwort p { 
  padding: 0 1.5rem 1.25rem; 
  font-size: .88rem; 
  color: var(--text-muted); 
  line-height: 1.8; 
  font-weight: 300; 
  min-height: 0;
}

.sub-cta { background: var(--primary); padding: 5.5rem 0; text-align: center; position: relative; overflow: hidden; }
.sub-cta::before { content: ''; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 600px; height: 600px; border-radius: 50%; border: 1px solid rgba(184,147,74,.08); pointer-events: none; }
.sub-cta::after { content: ''; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 400px; height: 400px; border-radius: 50%; border: 1px solid rgba(184,147,74,.13); pointer-events: none; }
.sub-cta h2 { font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 600; color: #fff; margin-bottom: 1rem; position: relative; z-index: 1; }
.sub-cta p { font-size: .95rem; color: rgba(255,255,255,.4); margin-bottom: 2.5rem; font-weight: 300; max-width: 460px; margin-left: auto; margin-right: auto; line-height: 1.8; position: relative; z-index: 1; }
.sub-cta-actions { position: relative; z-index: 1; display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

@media (max-width: 1200px) {
  .ansatz-inner { gap: 3.5rem; }
  .person-inner { gap: 3.5rem; }
  .anfrage-inner { gap: 3rem; }
}

@media (max-width: 1024px) {
  .stage { grid-template-columns: 1fr; }
  .stage-right { display: none; }
  .stage-left { padding: 9rem 5% 5rem; min-height: 90vh; }
  .dienst-reihe { grid-template-columns: repeat(2, 1fr); }
  .dienst-karte { grid-column: span 1; }
  .dienst-karte:nth-child(4), .dienst-karte:nth-child(5) { grid-column: span 1; }
  .ansatz-inner { grid-template-columns: 1fr; }
  .person-inner { grid-template-columns: 1fr; }
  .person-bild { aspect-ratio: 16/9; }
  .kenn-reihe { grid-template-columns: repeat(2, 1fr); }
  .anfrage-inner { grid-template-columns: 1fr; }
  .footer-raster { grid-template-columns: 1fr 1fr; }
  .sub-inhalt-raster { grid-template-columns: 1fr; gap: 2.5rem; }
  .umfang-raster { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .dienst-reihe { grid-template-columns: 1fr; }
  .zusatz-reihe { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-raster { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .umfang-raster { grid-template-columns: 1fr; }
  .person-meta { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

@media (max-width: 480px) {
  .kenn-reihe { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .stage-actions { flex-direction: column; }
  .sub-cta-actions { flex-direction: column; align-items: center; }
}
