:root {
  --cream: #e3e8d5;
  --white: #eef1e5;
  --charcoal: #262420;
  --ink: #5a5850;
  --terra: #a2573c;
  --terra2: #c9973f;
  --olive: #74845a;
  --champagne: #eee4d2;
  --line: #d6ddc6;
  --e: cubic-bezier(.22, .85, .32, 1);
  --e2: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: 'Inter', sans-serif; color: var(--charcoal); background: var(--white); line-height: 1.7; font-weight: 300; overflow-x: hidden; }
h1, h2, h3 { font-family: 'Playfair Display', serif; font-weight: 500; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.section { padding: 110px 0; }
.eyebrow { display: block; text-transform: uppercase; letter-spacing: 3px; font-size: 11px; color: var(--terra); font-weight: 500; margin-bottom: 16px; }
h2 { font-size: clamp(28px, 3.4vw, 44px); font-weight: 500; margin-bottom: 20px; }
p { font-size: 16px; color: var(--ink); font-weight: 300; }
.center { text-align: center; }

/* ── PROGRESS BAR ── */
.progress-bar { position: fixed; top: 0; left: 0; height: 3px; width: 100%; transform: scaleX(0); transform-origin: 0 0; will-change: transform; background: linear-gradient(90deg, var(--terra), var(--terra2), var(--olive)); z-index: 300; }

/* ── REVEAL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .85s var(--e2), transform .85s var(--e2); }
.reveal.v { opacity: 1; transform: none; }
.reveal-l { opacity: 0; transform: translateX(-34px); transition: opacity .85s var(--e2), transform .85s var(--e2); }
.reveal-l.v { opacity: 1; transform: none; }
.reveal-r { opacity: 0; transform: translateX(34px); transition: opacity .85s var(--e2), transform .85s var(--e2); }
.reveal-r.v { opacity: 1; transform: none; }
.reveal-s { opacity: 0; transform: scale(.92); transition: opacity .8s var(--e2), transform .8s var(--e2); }
.reveal-s.v { opacity: 1; transform: none; }

/* ── KEYFRAMES ── */
@keyframes kb { 0% { transform: scale(1) translate(0, 0) } 100% { transform: scale(1.18) translate(-3%, -2%) } }
@keyframes pr { 0% { box-shadow: 0 0 0 0 rgba(162,87,60,.45) } 70% { box-shadow: 0 0 0 16px rgba(162,87,60,0) } 100% { box-shadow: 0 0 0 0 rgba(162,87,60,0) } }
@keyframes fup { from { opacity: 0; transform: translateY(24px) } to { opacity: 1; transform: none } }
@keyframes lg { from { width: 0 } to { width: 120px } }
@keyframes sh { 0% { background-position: -300% center } 100% { background-position: 300% center } }
@keyframes stick { 0% { transform: scaleY(0); transform-origin: top } 50% { transform: scaleY(1); transform-origin: top } 51% { transform-origin: bottom } 100% { transform: scaleY(0); transform-origin: bottom } }
@keyframes orb { 0%, 100% { transform: translate(0,0) scale(1) } 40% { transform: translate(30px,-25px) scale(1.1) } 70% { transform: translate(-18px,18px) scale(.92) } }
@keyframes draw { to { stroke-dashoffset: 0 } }
@keyframes rfill { from { fill-opacity: 0 } to { fill-opacity: .15 } }

/* ── HEADER / NAV ── */
.logo-mark { display: inline-flex; align-items: center; padding: 8px 16px; border-radius: 999px; background: rgba(255,255,255,.9); box-shadow: 0 4px 18px rgba(0,0,0,.1); transition: all .35s var(--e); }
.logo-mark img { height: 34px; width: auto; }
#hdr.sc .logo-mark { background: transparent; box-shadow: none; padding: 0; }

.btn { position: relative; display: inline-block; overflow: hidden; border: 1px solid var(--charcoal); color: var(--charcoal); padding: 14px 32px; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; font-weight: 500; transition: color .3s var(--e), transform .3s var(--e); cursor: pointer; }
.btn::before { content: ""; position: absolute; inset: 0; background: var(--charcoal); transform: scaleX(0); transform-origin: right; transition: transform .35s var(--e); z-index: 0; }
.btn:hover::before { transform: scaleX(1); transform-origin: left; }
.btn span { position: relative; z-index: 1; }
.btn:hover { color: #fff; transform: translateY(-2px); }
.btn-f { background: var(--terra); border-color: var(--terra); color: #fff; }
.btn-f::before { background: var(--terra2); }
.btn-f:hover { color: #fff; }
.btn-p { animation: pr 2.2s infinite; }

#hdr { position: fixed; top: 0; left: 0; right: 0; z-index: 200; padding: 22px 0; transition: padding .35s var(--e), background .35s var(--e), box-shadow .35s var(--e); }
#hdr.sc { background: rgba(255,255,255,.97); backdrop-filter: blur(10px); padding: 12px 0; box-shadow: 0 6px 24px rgba(38,36,32,.07); }
nav { display: flex; align-items: center; justify-content: space-between; max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.nl { display: flex; gap: 28px; align-items: center; }
.nl a:not(.btn) { position: relative; font-size: 11px; letter-spacing: 1.6px; text-transform: uppercase; font-weight: 500; color: #fff; opacity: .9; padding-bottom: 4px; transition: color .3s, opacity .2s; }
.nl a:not(.btn)::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: var(--terra2); transition: width .35s var(--e); }
.nl a:not(.btn):hover::after { width: 100%; }
#hdr.sc .nl a:not(.btn) { color: var(--charcoal); }
.nl a:not(.btn):hover { opacity: 1; color: var(--terra2); }
.nc { border-color: #fff; color: #fff; padding: 10px 22px; }
#hdr.sc .nc { border-color: var(--charcoal); color: var(--charcoal); }
#hdr.sc .nc::before { background: var(--terra); }
#hdr.sc .nc:hover { border-color: var(--terra); }
.lang-switch { font-size: 11px !important; letter-spacing: 1.6px; opacity: .75; }
.lang-switch:hover { opacity: 1 !important; }
footer .lang-switch { display: inline-block; color: #b9b6ac; margin-top: 4px; }
footer .lang-switch:hover { color: var(--terra2); }
.burger { display: none; background: none; border: none; font-size: 22px; color: #fff; cursor: pointer; }
#hdr.sc .burger { color: var(--charcoal); }

/* ── HERO ── */
.hero { position: relative; height: 100vh; min-height: 640px; display: flex; align-items: center; justify-content: center; text-align: center; color: #fff; overflow: hidden; }
.hero-still { position: absolute; inset: -4%; background: url('hausansicht-front.jpg') center 42% / cover no-repeat; transition: transform .6s var(--e2); will-change: transform; }
.hero-ov { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,6,4,.32) 0%, rgba(8,6,4,.42) 55%, rgba(8,6,4,.72) 100%); }
.hero-c { position: relative; z-index: 2; padding: 0 24px; will-change: transform, opacity; }
.h-ey { display: inline-block; font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: #e3d9a8; margin-bottom: 20px; text-shadow: 0 1px 12px rgba(8,6,4,.65); opacity: 0; animation: fup .9s var(--e2) .3s forwards; }
.hero h1 { font-size: clamp(52px, 8vw, 100px); font-weight: 400; letter-spacing: -.5px; line-height: 1.04; text-shadow: 0 2px 22px rgba(8,6,4,.55); opacity: 0; animation: fup 1s var(--e2) .6s forwards; }
.h-sub { font-size: clamp(13px, 1.3vw, 16px); color: rgba(255,255,255,.88); margin-top: 18px; letter-spacing: .5px; text-shadow: 0 1px 14px rgba(8,6,4,.6); opacity: 0; animation: fup .9s var(--e2) .9s forwards; }
.h-cta { margin-top: 36px; opacity: 0; animation: fup .9s var(--e2) 1.1s forwards; }
.h-line { width: 0; height: 1px; background: rgba(255,255,255,.3); margin: 28px auto 0; animation: lg 1.2s var(--e2) 1.4s forwards; }
.scroll-cue { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,.65); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.scroll-cue .st { width: 1px; height: 32px; background: rgba(255,255,255,.45); animation: stick 2.2s ease-in-out infinite; }

/* ── STATS ── */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--charcoal); position: relative; overflow: hidden; }
.stats::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(255,255,255,.04), transparent); background-size: 300% 100%; animation: sh 6s linear infinite; }
.sc-cell { padding: 42px 20px; text-align: center; color: #fff; border-right: 1px solid rgba(255,255,255,.08); }
.sc-cell:last-child { border-right: none; }
.sc-num { font-family: 'Playfair Display', serif; font-size: 40px; color: var(--terra2); font-weight: 600; line-height: 1; }
.sc-cell:nth-child(even) .sc-num { color: var(--olive); }
.sc-lbl { font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(207,205,196,.65); margin-top: 8px; }

/* ── PRESENTATION ── */
.pres { max-width: 760px; margin: 0 auto; text-align: center; }
.more-text { max-height: 0; overflow: hidden; transition: max-height .7s var(--e2); }
.more-text.open { max-height: 400px; }
.toggle-lnk { display: inline-block; margin-top: 18px; font-size: 11px; letter-spacing: 1.6px; text-transform: uppercase; color: var(--terra); border-bottom: 1px solid var(--terra); cursor: pointer; padding-bottom: 2px; transition: opacity .2s; }
.toggle-lnk:hover { opacity: .65; }
.pres-img { margin-top: 70px; overflow: hidden; cursor: pointer; }
.pres-img img { width: 100%; height: 560px; object-fit: cover; transition: transform 1.4s var(--e2); }
.pres-img:hover img { transform: scale(1.05); }

/* ── VIRTUAL TOUR ── */
.tour-sec { background: var(--charcoal); }
.tour-head { padding: 80px 0 40px; }
.tour-wrap { position: relative; height: 560px; overflow: hidden; cursor: grab; user-select: none; }
.tour-wrap.drag { cursor: grabbing; }
.tour-stage { display: flex; height: 100%; will-change: transform; transition: transform .85s var(--e2); }
.ts { flex: none; width: 100%; height: 100%; position: relative; overflow: hidden; }
.ts img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; transition: transform .6s var(--e2); }
.ts:hover img { transform: scale(1.06); }
.ts-ov { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,6,4,.78) 0%, rgba(8,6,4,.3) 40%, transparent 62%); }
.ts-info { position: absolute; bottom: 44px; left: 48px; right: 160px; color: #fff; transform: translateY(6px); transition: transform .5s var(--e2), opacity .5s; opacity: 0; }
.ts.active .ts-info { transform: none; opacity: 1; }
.ts-info h3 { font-family: 'Playfair Display', serif; font-size: 30px; font-weight: 400; margin-bottom: 6px; text-shadow: 0 1px 16px rgba(8,6,4,.6); }
.ts-info p { font-size: 13px; color: rgba(255,255,255,.85); letter-spacing: .5px; line-height: 1.6; text-shadow: 0 1px 10px rgba(8,6,4,.65); }
.tour-nav { position: absolute; bottom: 44px; right: 48px; display: flex; gap: 10px; z-index: 3; }
.t-btn { width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,.12); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.22); color: #fff; font-size: 22px; cursor: pointer; transition: background .25s, transform .2s; display: flex; align-items: center; justify-content: center; }
.t-btn:hover { background: rgba(255,255,255,.28); transform: scale(1.08); }
.tour-dots { position: absolute; top: 24px; right: 48px; display: flex; gap: 8px; z-index: 3; }
.t-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.35); cursor: pointer; transition: background .25s, transform .25s; }
.t-dot.on { background: #fff; transform: scale(1.35); }

/* ── GALLERY ── */
.vi { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.vi .iw { overflow: hidden; }
.vi img { width: 100%; height: 520px; object-fit: cover; transition: transform 1.1s var(--e2); }
.vi .iw:hover img { transform: scale(1.07); }
.fw-gallery { position: relative; height: 640px; margin-top: 90px; overflow: hidden; }
.fw-img { width: 100%; height: 100%; object-fit: cover; display: block; background: var(--charcoal); transition: opacity .28s var(--e2); }
.fw-img.contain { object-fit: contain; }
.fw-img.out { opacity: 0; }
.fw-ov { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(18,14,10,.68) 0%, transparent 34%, transparent 58%, rgba(18,14,10,.82) 100%); pointer-events: none; }
.fw-caption { position: absolute; left: 48px; top: 44px; max-width: 380px; z-index: 2; color: #fff; }
.fw-caption h3 { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 500; margin-bottom: 10px; color: #fff; text-shadow: 0 1px 14px rgba(8,6,4,.6); }
.fw-caption p { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,.9); margin-bottom: 12px; text-shadow: 0 1px 10px rgba(8,6,4,.65); }
.fw-caption .fw-dist { display: inline-block; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: #ecc06a; text-shadow: 0 1px 8px rgba(8,6,4,.7); }
.fw-labels { position: absolute; left: 48px; bottom: 44px; display: flex; flex-direction: column; gap: 9px; z-index: 2; }
.fw-label { font-family: 'Playfair Display', serif; font-size: 19px; color: rgba(255,255,255,.75); cursor: pointer; width: fit-content; text-shadow: 0 1px 10px rgba(8,6,4,.7); transition: color .25s var(--e); }
.fw-label:hover { color: rgba(255,255,255,.95); }
.fw-label.on { color: #fff; font-weight: 500; }

/* ── LIGHTBOX ── */
#lb { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.94); z-index: 500; align-items: center; justify-content: center; flex-direction: column; }
#lb.on { display: flex; }
#lb img { max-width: 88vw; max-height: 82vh; object-fit: contain; transition: opacity .3s var(--e2), transform .3s var(--e2); }
#lb img.out { opacity: 0; transform: scale(.94); }
#lb .lbx { position: absolute; top: 20px; right: 24px; font-size: 28px; color: #fff; cursor: pointer; opacity: .65; transition: opacity .2s; z-index: 1; }
#lb .lbx:hover { opacity: 1; }
#lb .lba { position: absolute; top: 50%; transform: translateY(-50%); font-size: 32px; color: #fff; cursor: pointer; opacity: .55; background: rgba(255,255,255,.08); width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: opacity .2s, background .2s; }
#lb .lba:hover { opacity: 1; background: rgba(255,255,255,.16); }
#lb .lb-prev { left: 16px; }
#lb .lb-next { right: 16px; }
#lb.single .lba { display: none; }
#lb .lb-meta { color: rgba(255,255,255,.5); font-size: 12px; letter-spacing: 2px; margin-top: 16px; text-align: center; }

/* ── SVG GRUNDRISS ── */
.floor-tabs { display: flex; gap: 2px; margin-bottom: 36px; }
.ftab { padding: 12px 28px; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; border: 1px solid var(--line); background: #fff; transition: background .2s, color .2s; font-weight: 500; }
.ftab.on { background: var(--charcoal); color: #fff; border-color: var(--charcoal); }
.floor-plan { display: none; position: relative; }
.floor-plan.on { display: block; }
.floor-plan::before { content: ""; position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .16; pointer-events: none; z-index: 0; }
#fp0::before { background-image: url('eingang-og.jpg'); }
#fp1::before { background-image: url('eingang-ug.jpg'); }
.fp-svg { position: relative; z-index: 1; width: 100%; max-width: 720px; margin: 0 auto; display: block; }
.fp-room { stroke: var(--charcoal); stroke-width: 1.5; fill-opacity: 0; stroke-dasharray: 2000; stroke-dashoffset: 2000; cursor: pointer; transition: fill-opacity .3s; }
.fp-room.pool { fill: #4a90b8; }
.fp-room.garden { fill: var(--olive); }
.fp-room.sauna { fill: #8B4513; }
.fp-room.room { fill: var(--terra); }
.fp-room.drawn { animation: draw 1.4s var(--e2) forwards, rfill 1.6s var(--e2) .6s forwards; }
.fp-room:hover { fill-opacity: .26; }
.fp-room.no-click { cursor: default; }
.fp-lbl { font-size: 10px; fill: var(--charcoal); letter-spacing: .8px; text-transform: uppercase; pointer-events: none; font-family: 'Inter', sans-serif; }
.fp-dim { font-size: 8.5px; fill: var(--ink); pointer-events: none; font-family: 'Inter', sans-serif; opacity: .7; }

/* ── MOMENTE / LIFESTYLE ── */
.life-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 56px; }
.life-item { position: relative; overflow: hidden; aspect-ratio: 3 / 4; cursor: pointer; }
.life-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--e2); }
.life-item:hover img { transform: scale(1.08); }
.life-item .cap { position: absolute; inset: 0; display: flex; align-items: flex-end; padding: 16px; background: linear-gradient(0deg, rgba(18,14,10,.82) 0%, transparent 55%); color: #fff; font-size: 12px; line-height: 1.35; font-weight: 500; text-shadow: 0 1px 8px rgba(8,6,4,.7); opacity: 0; transform: translateY(6px); transition: transform .35s var(--e2), opacity .35s var(--e2); }
.life-item:hover .cap { opacity: 1; transform: none; }

/* ── VIDEO TOUR / PHONE FRAME ── */
.vt { display: grid; grid-template-columns: .85fr 1fr; gap: 80px; align-items: center; }
.pf { position: relative; width: 264px; height: 550px; margin: 0 auto; background: #0e0e0e; border-radius: 38px; padding: 15px; box-shadow: 0 40px 80px rgba(0,0,0,.36), 0 0 0 1px rgba(255,255,255,.06); }
.pf::before { content: ""; position: absolute; top: 15px; left: 50%; transform: translateX(-50%); width: 88px; height: 18px; background: #0e0e0e; border-radius: 0 0 14px 14px; z-index: 3; }
.pf video { width: 100%; height: 100%; object-fit: cover; border-radius: 26px; display: block; }
.pb { display: inline-flex; align-items: center; gap: 10px; margin-top: 22px; font-size: 11px; letter-spacing: 1.8px; text-transform: uppercase; color: var(--ink); }
.pb .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--terra); animation: pr 2s infinite; }
.torb { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .13; pointer-events: none; animation: orb 14s ease-in-out infinite; }

/* ── QUOTE / PARALLAX BANNER ── */
.qb { position: relative; height: 88vh; min-height: 620px; display: flex; align-items: center; justify-content: center; overflow: hidden; color: #fff; text-align: center; }
.qb-bg { position: absolute; inset: -10%; background: url('gartenbereich.jpg') 55% 62% / cover no-repeat; will-change: transform; }
.qb-ov { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(30,34,18,.66) 0%, rgba(16,12,8,.6) 100%); }
.qb blockquote { position: relative; z-index: 2; font-family: 'Playfair Display', serif; font-style: italic; font-size: clamp(22px, 3.2vw, 44px); font-weight: 400; max-width: 860px; padding: 0 32px; line-height: 1.5; text-shadow: 0 2px 18px rgba(8,6,4,.5); }
.qb cite { display: block; margin-top: 20px; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-style: normal; color: rgba(255,255,255,.5); }

/* ── GÄSTESTIMMEN ── */
.rating-badge { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; font-size: 14px; color: var(--ink); }
.rating-badge .stars { color: var(--terra2); letter-spacing: 2px; font-size: 15px; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); margin-top: 56px; }
.testi-card { min-width: 0; background: #fff; padding: 40px 34px; display: flex; flex-direction: column; gap: 18px; transition: background .3s var(--e); }
.testi-card:hover { background: var(--cream); }
.testi-card .stars { color: var(--terra2); font-size: 14px; letter-spacing: 3px; }
.testi-quote { min-width: 0; overflow-wrap: break-word; font-family: 'Playfair Display', serif; font-style: italic; font-size: 16px; line-height: 1.65; color: var(--charcoal); flex: 1; }
.testi-author { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ink); font-weight: 500; }
.testi-author span { text-transform: none; letter-spacing: 0; opacity: .6; font-weight: 300; }

/* ── PRICES ── */
table.pt { width: 100%; border-collapse: collapse; margin-top: 52px; }
table.pt th, table.pt td { padding: 17px 22px; text-align: left; border-bottom: 1px solid rgba(38,36,32,.07); font-size: 14.5px; font-weight: 300; }
table.pt th { font-size: 11px; letter-spacing: 1.8px; text-transform: uppercase; color: var(--terra); font-weight: 500; border-bottom: 1px solid rgba(38,36,32,.14); }
table.pt td:last-child, table.pt th:last-child { text-align: right; font-family: 'Playfair Display', serif; }
table.pt tr:last-child td { border-bottom: none; }
table.pt tr { transition: background .18s; }
table.pt tr:hover td { background: rgba(38,36,32,.025); }
.ph td { background: rgba(201,151,63,.08); font-weight: 500; }

.price-card { position: relative; max-width: 540px; margin: 0 auto; text-align: center; padding: 56px 44px; background: var(--cream); overflow: hidden; }
.price-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--terra), var(--terra2), var(--olive)); }
.price-card .amt { font-family: 'Playfair Display', serif; font-size: 52px; color: var(--terra); font-weight: 600; line-height: 1; }
.price-card .amt span { font-size: 15px; color: var(--ink); font-weight: 300; }
.price-card .fine { margin-top: 18px; font-size: 13px; color: var(--ink); }

/* ── MAP ── */
#map { position: relative; isolation: isolate; }
#map { height: 460px; border-radius: 2px; overflow: hidden; }
.map-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 28px; }
.mi { text-align: center; padding: 20px; background: var(--cream); }
.mi h4 { font-size: 14px; font-weight: 500; margin-bottom: 4px; }
.mi p { font-size: 13px; }


/* ── CONTACT ── */
.cg { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.il { display: flex; gap: 16px; margin-bottom: 18px; font-size: 15px; }
.il strong { min-width: 90px; font-weight: 500; }
.host-photo { width: 240px; height: 240px; border-radius: 50%; object-fit: cover; display: block; margin: 0 auto; box-shadow: 0 24px 48px rgba(38,36,32,.2); border: 5px solid #fff; }
.host-caption { text-align: center; margin-top: 22px; font-family: 'Playfair Display', serif; font-size: 19px; color: var(--charcoal); }
.host-caption span { display: block; font-family: 'Inter', sans-serif; font-size: 11px; letter-spacing: 1.8px; text-transform: uppercase; color: var(--terra); font-weight: 500; margin-top: 6px; }

/* ── FOOTER ── */
footer { background: var(--charcoal); color: #cfcdc4; padding: 80px 0 30px; }
.ft { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 50px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.1); }
.fl { display: flex; gap: 60px; }
.fc h4 { font-size: 11px; letter-spacing: 1.8px; text-transform: uppercase; color: #fff; margin-bottom: 18px; font-weight: 500; }
.fc a { display: block; font-size: 14px; color: #b9b6ac; margin-bottom: 10px; transition: color .2s, transform .2s; }
.fc a:hover { color: var(--terra2); transform: translateX(4px); }
.leg { display: flex; justify-content: space-between; padding-top: 26px; font-size: 12px; color: #8a877e; flex-wrap: wrap; gap: 12px; }
.leg a:hover { color: var(--terra2); }

/* ── LEGAL PAGES ── */
.legal-hdr { background: var(--charcoal); padding: 140px 0 60px; color: #fff; }
.legal-hdr .container { max-width: 820px; }
.legal-hdr h1 { color: #fff; font-size: clamp(28px, 4vw, 42px); }
.legal-body { padding: 70px 0 110px; }
.legal-body .container { max-width: 820px; }
.legal-body h2 { font-size: 20px; margin-top: 42px; margin-bottom: 14px; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body p, .legal-body li { font-size: 15px; color: var(--ink); margin-bottom: 12px; }
.legal-body ul { padding-left: 22px; }
.legal-body a { color: var(--terra); border-bottom: 1px solid var(--terra); }
.legal-body a:hover { opacity: .7; }
.back-lnk { display: inline-block; margin-bottom: 24px; font-size: 11px; letter-spacing: 1.6px; text-transform: uppercase; color: #f1cdb8; }
.back-lnk:hover { color: #fff; }

/* ── INTRO SPLASH ── */
.intro-splash { position: fixed; inset: 0; z-index: 1000; background: var(--charcoal); display: flex; align-items: center; justify-content: center; overflow: hidden; transition: opacity .65s var(--e2); }
.intro-splash.hide { opacity: 0; pointer-events: none; }
.intro-bg { position: absolute; inset: -5%; background: url('hausansicht-front.jpg') center 42% / cover no-repeat; opacity: 0; filter: saturate(.75); transition: opacity 1.8s var(--e2); }
.intro-bg.show { opacity: .16; }
.intro-logo-wrap { position: relative; z-index: 2; transition: transform 1.1s var(--e2); }
.intro-pill { position: relative; display: inline-flex; align-items: center; justify-content: center; padding: 18px 34px; border-radius: 999px; background: rgba(255,255,255,.94); box-shadow: 0 10px 44px rgba(0,0,0,.28); opacity: 0; transform: scale(.85); transition: opacity .8s var(--e2), transform .8s var(--e2); }
.intro-pill.show { opacity: 1; transform: scale(1); }
.intro-text { font-family: 'Alex Brush', cursive; font-size: 96px; line-height: 1; color: #d4a95a; white-space: nowrap; }
.intro-text .intro-ltr { display: inline-block; opacity: 0; }
.intro-text.drawing .intro-ltr { animation: introLetter .35s var(--e2) forwards; animation-delay: var(--d, 0ms); }
@keyframes introLetter { from { opacity: 0; } to { opacity: 1; } }
.intro-pen { position: absolute; top: 0; left: 0; width: 10px; height: 10px; margin: -5px; border-radius: 50%; background: #c9973f; opacity: 0; filter: drop-shadow(0 0 6px rgba(201,151,63,.85)); transition: left .17s linear, top .17s linear, opacity .25s var(--e); pointer-events: none; }
.intro-pen.show { opacity: 1; }
.intro-spark { position: absolute; top: 6px; right: 16px; font-size: 24px; color: #f1cd7e; opacity: 0; transform: scale(.3) rotate(-20deg); text-shadow: 0 0 16px rgba(241,205,126,.85); }
.intro-spark.show { animation: introSpark .8s var(--e2) forwards; }
@keyframes introSpark { 0% { opacity: 0; transform: scale(.2) rotate(-20deg); } 55% { opacity: 1; transform: scale(1.3) rotate(10deg); } 100% { opacity: .9; transform: scale(1) rotate(0deg); } }
.intro-skip { position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); z-index: 3; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.38); cursor: pointer; transition: color .2s; }
.intro-skip:hover { color: rgba(255,255,255,.8); }
@media (max-width: 900px) {
  .intro-pill { padding: 12px 22px; }
  .intro-text { font-size: 66px; }
}

/* ── ANFRAGE MODAL ── */
.inq-modal { display: none; position: fixed; inset: 0; background: rgba(16,14,10,.62); z-index: 600; align-items: center; justify-content: center; padding: 20px; }
.inq-modal.on { display: flex; }
.inq-box { position: relative; background: #fff; max-width: 480px; width: 100%; padding: 46px 42px; max-height: 90vh; overflow-y: auto; }
.inq-close { position: absolute; top: 18px; right: 22px; font-size: 20px; cursor: pointer; color: var(--ink); opacity: .55; transition: opacity .2s; }
.inq-close:hover { opacity: 1; }
.inq-box h3 { font-family: 'Playfair Display', serif; font-size: 27px; margin-bottom: 8px; }
.inq-sub { font-size: 14px; color: var(--ink); margin-bottom: 28px; }
.inq-label { display: block; font-size: 11px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--ink); font-weight: 500; margin-bottom: 18px; }
.inq-label input, .inq-label textarea { display: block; width: 100%; margin-top: 7px; padding: 12px 14px; border: 1px solid var(--line); background: var(--cream); font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 300; color: var(--charcoal); resize: vertical; }
.inq-label input:focus, .inq-label textarea:focus { outline: none; border-color: var(--terra); }
.inq-submit { width: 100%; margin-top: 8px; border: none; }
.inq-status { margin-top: 14px; font-size: 13px; text-align: center; min-height: 18px; }
.inq-status.err { color: #b3261e; }
.inq-status.ok { color: var(--olive); }

/* ── STICKY CTA + CURSOR GLOW ── */
.sticky-cta { position: fixed; bottom: 28px; right: 28px; z-index: 150; opacity: 0; transform: translateY(20px); pointer-events: none; transition: opacity .4s var(--e2), transform .4s var(--e2); box-shadow: 0 14px 32px rgba(162,87,60,.38); }
.sticky-cta.on { opacity: 1; transform: none; pointer-events: auto; }
.cg-glow { position: fixed; top: 0; left: 0; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(162,87,60,.09) 0%, transparent 70%); pointer-events: none; z-index: 1; transform: translate(-50%, -50%); will-change: transform; mix-blend-mode: multiply; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .vi, .vt, .cg { grid-template-columns: 1fr; gap: 40px; }
  .map-row, .life-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .nl { display: none; }
  .nl.open { display: flex; flex-direction: column; position: absolute; top: 100%; right: 32px; background: #fff; padding: 28px; box-shadow: 0 12px 28px rgba(0,0,0,.12); gap: 18px; }
  .burger { display: block; }
  .section { padding: 80px 0; }
  .ft { flex-direction: column; }
  .ft .logo-mark { align-self: flex-start; }
  .cg-glow { display: none; }

  /* Bildcontainer folgen auf Mobil dem echten Bildformat (kein Seitenbeschnitt) */
  .pres-img img { height: auto; }
  .vi img { height: auto; }
  .life-item { aspect-ratio: 4 / 3; }
  .life-item .cap { opacity: 1; transform: none; }
  .tour-wrap { height: auto; aspect-ratio: 4 / 3; }
  .ts-info { left: 20px; right: 20px; bottom: 72px; }
  .ts-info h3 { font-size: 21px; }
  .ts-info p { font-size: 12px; }

  /* Vollbild-Galerien: Bild in voller Breite, Labels als Leiste darunter */
  .fw-gallery { height: auto; overflow: visible; margin-top: 56px; }
  .fw-img { height: auto; aspect-ratio: 4 / 3; }
  .fw-ov { aspect-ratio: 4 / 3; height: auto; bottom: auto; background: linear-gradient(180deg, rgba(18,14,10,.68) 0%, transparent 45%); }
  .fw-caption { left: 22px; top: 20px; max-width: 82%; }
  .fw-caption h3 { font-size: 20px; }
  .fw-caption p { font-size: 12.5px; }
  .fw-labels { position: static; flex-direction: row; flex-wrap: wrap; gap: 8px 20px; margin-top: 16px; }
  .fw-label { font-size: 16px; color: rgba(38,36,32,.5); text-shadow: none; }
  .fw-label:hover { color: rgba(38,36,32,.75); }
  .fw-label.on { color: var(--terra); }

  .tour-nav { right: 20px; bottom: 20px; }
  .sticky-cta { display: none; }
  .floor-tabs { flex-direction: column; }
  .ftab { text-align: center; }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation: none !important; transition: none !important; } }
