/* Küche & Raum, Planegg · Website Fassung 2
   Farben aus Logo (Markenrot) und Studio (Anthrazit der Wände, Eiche, Beton). */
@font-face { font-family: 'Manrope'; src: url('../fonts/manrope.woff2') format('woff2'); font-weight: 200 800; font-display: swap; }
@font-face { font-family: 'Fraunces'; src: url('../fonts/fraunces.woff2') format('woff2'); font-weight: 100 900; font-display: swap; }
@font-face { font-family: 'Fraunces'; src: url('../fonts/fraunces-italic.woff2') format('woff2'); font-weight: 100 900; font-style: italic; font-display: swap; }

:root {
  --ink: #1d1f22;
  --ink-2: #3a3d42;
  --muted: #6d6a64;
  --paper: #f7f4ef;
  --paper-2: #efe9e0;
  --sand: #e4dccf;
  --wall: #26282b;
  --wall-2: #303337;
  --line: rgba(29, 31, 34, .12);
  --line-light: rgba(255, 255, 255, .14);
  --oak: #c2a57f;
  --oak-2: #a88a62;
  --sage: #56705f;
  --brand: #b70d58;
  --brand-2: #930a47;
  --brand-soft: #f4dde7;
  --radius: 18px;
  --radius-s: 10px;
  --shadow: 0 30px 60px -30px rgba(20, 20, 25, .45);
  --maxw: 1320px;
  --gutter: clamp(16px, 4vw, 48px);
  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --ease: cubic-bezier(.22, .8, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
body {
  margin: 0; background: var(--paper); color: var(--ink);
  font-family: var(--sans); font-size: 17px; line-height: 1.65; font-weight: 450;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; color: inherit; }
::selection { background: var(--brand); color: #fff; }
:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; border-radius: 4px; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; letter-spacing: .16em; text-transform: uppercase; font-weight: 700; color: var(--brand); }
.eyebrow::before { content: ''; width: 28px; height: 2px; background: currentColor; border-radius: 2px; }
.on-dark .eyebrow { color: #f07bab; }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; letter-spacing: -.015em; line-height: 1.08; margin: 0; font-variation-settings: 'SOFT' 50, 'WONK' 0; }
h2 { font-size: clamp(34px, 5vw, 64px); }
h3 { font-size: clamp(22px, 2.2vw, 28px); line-height: 1.2; }
h2 em, h1 em { font-style: italic; color: var(--brand); font-variation-settings: 'SOFT' 100, 'WONK' 1; }
.on-dark h2 em, .on-dark h1 em { color: #f07bab; }
.lead { font-size: clamp(18px, 1.5vw, 21px); color: var(--ink-2); max-width: 62ch; }
.on-dark .lead { color: rgba(255, 255, 255, .78); }
.section { padding: clamp(80px, 11vw, 160px) 0; position: relative; }
.section-head { display: grid; gap: 20px; margin-bottom: clamp(40px, 5vw, 72px); max-width: 860px; }
.on-dark { background: var(--wall); color: #f3f0ea; }

/* ---------- Buttons ---------- */
.btn { --bg: var(--brand); --fg: #fff; position: relative; display: inline-flex; align-items: center; gap: 12px; padding: 16px 26px; border-radius: 999px; background: var(--bg); color: var(--fg); text-decoration: none; font-weight: 700; font-size: 16px; border: 0; cursor: pointer; overflow: hidden; isolation: isolate; transition: transform .4s var(--ease), box-shadow .4s var(--ease); box-shadow: 0 14px 30px -14px rgba(183, 13, 88, .7); }
.btn::after { content: ''; position: absolute; inset: 0; background: var(--brand-2); transform: translateY(101%); transition: transform .45s var(--ease); z-index: -1; border-radius: inherit; }
.btn:hover::after { transform: translateY(0); }
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; transition: transform .4s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn.ghost { --bg: transparent; --fg: currentColor; box-shadow: inset 0 0 0 1.5px currentColor; }
.btn.ghost::after { background: currentColor; opacity: .1; }
.btn.light { --bg: #fff; --fg: var(--ink); box-shadow: 0 14px 30px -14px rgba(0, 0, 0, .5); }
.btn.light::after { background: var(--paper-2); }

/* ---------- Kopfzeile ---------- */
.header { position: fixed; inset: 0 0 auto 0; z-index: 50; transition: background .4s var(--ease), box-shadow .4s var(--ease), transform .5s var(--ease), color .4s; color: #fff; }
.header .wrap { display: flex; align-items: center; justify-content: space-between; height: 84px; gap: 24px; }
.header.scrolled { background: rgba(247, 244, 239, .86); backdrop-filter: saturate(1.4) blur(14px); -webkit-backdrop-filter: saturate(1.4) blur(14px); color: var(--ink); box-shadow: 0 1px 0 var(--line); }
.header.hide { transform: translateY(-100%); }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { height: 42px; width: auto; }
.brand .logo-dark { display: none; }
.header.scrolled .brand .logo-dark { display: block; }
.header.scrolled .brand .logo-light { display: none; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a { text-decoration: none; font-size: 15px; font-weight: 600; position: relative; padding: 6px 0; opacity: .9; }
.nav a::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--brand); transform: scaleX(0); transform-origin: right; transition: transform .4s var(--ease); }
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); transform-origin: left; }
.header .btn { padding: 12px 20px; font-size: 14px; }
.burger { display: none; width: 46px; height: 46px; border-radius: 50%; border: 0; background: rgba(255, 255, 255, .14); cursor: pointer; position: relative; }
.header.scrolled .burger { background: rgba(0, 0, 0, .06); }
.burger span { position: absolute; left: 13px; right: 13px; height: 2px; background: currentColor; border-radius: 2px; transition: transform .4s var(--ease), opacity .3s; }
.burger span:nth-child(1) { top: 17px; } .burger span:nth-child(2) { top: 23px; } .burger span:nth-child(3) { top: 29px; }
body.menu-open .burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-menu { position: fixed; inset: 0; z-index: 45; background: var(--wall); color: #fff; display: flex; flex-direction: column; justify-content: center; padding: 100px var(--gutter) 40px; clip-path: circle(0 at calc(100% - 44px) 42px); transition: clip-path .7s var(--ease); visibility: hidden; }
body.menu-open .mobile-menu { clip-path: circle(150% at calc(100% - 44px) 42px); visibility: visible; }
.mobile-menu a { font-family: var(--serif); font-size: 38px; text-decoration: none; padding: 6px 0; display: block; }
.mobile-menu .meta { margin-top: 36px; font-size: 15px; opacity: .7; }
body.menu-open .header { color: #fff; background: transparent; box-shadow: none; backdrop-filter: none; }
body.menu-open .header .brand .logo-dark { display: none; }
body.menu-open .header .brand .logo-light { display: block; }

/* ---------- Vorlader ---------- */
.loader { position: fixed; inset: 0; z-index: 100; background: var(--wall); display: grid; place-items: center; }
.loader .mark { width: 120px; }
.loader .mark path, .loader .mark rect { stroke: #fff; }
.loader .bar { position: absolute; left: 50%; bottom: 18%; width: 160px; height: 2px; background: rgba(255, 255, 255, .15); transform: translateX(-50%); overflow: hidden; border-radius: 2px; }
.loader .bar i { position: absolute; inset: 0; background: var(--brand); transform-origin: left; transform: scaleX(0); }
.no-js .loader { display: none; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: max(660px, 100svh); color: #fff; overflow: hidden; background: #111; }
.hero-media { position: absolute; inset: 0; overflow: hidden; }
.hero-pan { position: absolute; top: 0; left: 0; height: 100%; width: auto; min-width: 100%; max-width: none; object-fit: cover; will-change: transform; }
.hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10, 10, 12, .55) 0%, rgba(10, 10, 12, .12) 30%, rgba(10, 10, 12, .2) 55%, rgba(10, 10, 12, .82) 100%), linear-gradient(90deg, rgba(10, 10, 12, .72) 0%, rgba(10, 10, 12, .35) 45%, rgba(10, 10, 12, 0) 70%); pointer-events: none; }
.hero .eyebrow { color: #f58db8; }
.hero .wrap { position: relative; z-index: 2; min-height: max(660px, 100svh); display: flex; flex-direction: column; justify-content: flex-end; padding-top: 120px; padding-bottom: clamp(36px, 6vh, 70px); }
.hero h1 { font-size: clamp(42px, 6.4vw, 100px); max-width: 16ch; line-height: 1; margin: 16px 0 22px; }
.hero h1 em { color: #f58db8; }
.hero h1 .line { overflow: hidden; display: block; padding-bottom: .06em; }
.hero .lead { color: rgba(255, 255, 255, .86); max-width: 54ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-facts { display: flex; flex-wrap: wrap; gap: 12px 34px; margin-top: clamp(26px, 5vh, 56px); padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .22); font-size: 14px; color: rgba(255, 255, 255, .82); }
.hero-facts b { color: #fff; font-weight: 700; display: block; font-size: 15px; }
.hero-facts .stars { color: #f5c04a; letter-spacing: 2px; }
.pano-badge { position: absolute; right: var(--gutter); top: 110px; z-index: 3; display: flex; align-items: center; gap: 10px; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; background: rgba(0, 0, 0, .35); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); padding: 9px 14px; border-radius: 999px; }
.pano-badge i { width: 8px; height: 8px; border-radius: 50%; background: #3ddc84; box-shadow: 0 0 0 0 rgba(61, 220, 132, .6); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 10px rgba(61, 220, 132, 0); } 100% { box-shadow: 0 0 0 0 rgba(61, 220, 132, 0); } }
.scroll-hint { position: absolute; right: var(--gutter); bottom: 26px; z-index: 3; width: 26px; height: 42px; border: 1.5px solid rgba(255, 255, 255, .6); border-radius: 20px; }
.scroll-hint::after { content: ''; position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; border-radius: 2px; background: #fff; transform: translateX(-50%); animation: wheel 1.8s var(--ease) infinite; }
@keyframes wheel { 0% { opacity: 0; transform: translate(-50%, 0); } 30% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%, 14px); } }

/* ---------- Servicepunkte ---------- */
.values { background: var(--paper); padding: clamp(60px, 8vw, 110px) 0; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 2.4vw, 34px); }
.value { position: relative; padding: 30px 26px 30px; border-radius: var(--radius); background: #fff; box-shadow: 0 1px 0 var(--line), 0 20px 40px -32px rgba(0, 0, 0, .35); overflow: hidden; }
.value .ic { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: var(--brand-soft); color: var(--brand); margin-bottom: 22px; }
.value .ic svg { width: 26px; height: 26px; }
.value h3 { font-size: 24px; margin-bottom: 10px; }
.value p { margin: 0; color: var(--muted); font-size: 15.5px; }
.value::after { content: ''; position: absolute; left: 0; bottom: 0; height: 3px; width: 100%; background: var(--brand); transform: scaleX(0); transform-origin: left; transition: transform .6s var(--ease); }
.value:hover::after { transform: scaleX(1); }

/* ---------- 360° ---------- */
.p360 { background: var(--wall); color: #f3f0ea; overflow: hidden; }
.p360 .section-head { max-width: 980px; }
.mode-switch { display: inline-flex; padding: 5px; border-radius: 999px; background: rgba(255, 255, 255, .08); gap: 4px; margin-bottom: 22px; }
.mode-switch button { border: 0; background: transparent; padding: 11px 20px; border-radius: 999px; font-weight: 700; font-size: 14.5px; cursor: pointer; color: rgba(255, 255, 255, .7); transition: background .3s, color .3s; }
.mode-switch button[aria-pressed="true"] { background: #fff; color: var(--ink); }
.viewer { position: relative; border-radius: calc(var(--radius) + 4px); overflow: hidden; background: #0d0e10; aspect-ratio: 16 / 8.2; box-shadow: 0 50px 90px -40px rgba(0, 0, 0, .8); touch-action: none; user-select: none; -webkit-user-select: none; }
.viewer canvas { display: block; width: 100%; height: 100%; cursor: grab; }
.viewer canvas:active { cursor: grabbing; }
.viewer .v-title { position: absolute; left: 22px; top: 20px; z-index: 3; display: flex; flex-direction: column; gap: 4px; pointer-events: none; }
.viewer .v-title small { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: #f07bab; }
.viewer .v-title strong { font-family: var(--serif); font-weight: 400; font-size: clamp(22px, 2.4vw, 32px); text-shadow: 0 2px 20px rgba(0, 0, 0, .5); }
.viewer .v-ctrl { position: absolute; right: 16px; bottom: 16px; z-index: 3; display: flex; gap: 8px; }
.viewer .v-ctrl button { width: 44px; height: 44px; border-radius: 50%; border: 0; background: rgba(20, 20, 22, .6); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); color: #fff; display: grid; place-items: center; cursor: pointer; transition: background .3s; }
.viewer .v-ctrl button:hover { background: var(--brand); }
.viewer .v-ctrl button[aria-pressed="true"] { background: #fff; color: var(--ink); }
.viewer .v-ctrl svg { width: 20px; height: 20px; }
.viewer .v-hint { position: absolute; left: 50%; top: 50%; z-index: 3; transform: translate(-50%, -50%); display: flex; align-items: center; gap: 12px; padding: 14px 22px; border-radius: 999px; background: rgba(15, 15, 17, .55); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); font-weight: 700; font-size: 15px; pointer-events: none; transition: opacity .6s; }
.viewer .v-hint svg { width: 30px; height: 30px; animation: drag 2.4s var(--ease) infinite; }
@keyframes drag { 0%, 100% { transform: translateX(-8px); } 50% { transform: translateX(8px); } }
.viewer.touched .v-hint { opacity: 0; }
.viewer .v-load { position: absolute; inset: 0; z-index: 2; display: grid; place-items: center; background: #0d0e10; transition: opacity .6s; }
.viewer .v-load i { width: 44px; height: 44px; border-radius: 50%; border: 2px solid rgba(255, 255, 255, .15); border-top-color: var(--brand); animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.viewer .v-load.done { opacity: 0; pointer-events: none; }
.viewer .v-note { position: absolute; left: 22px; bottom: 20px; z-index: 3; font-size: 12.5px; color: rgba(255, 255, 255, .7); max-width: 46ch; pointer-events: none; }
.hotspot { position: absolute; z-index: 3; transform: translate(-50%, -50%); width: 46px; height: 46px; border-radius: 50%; border: 0; background: rgba(255, 255, 255, .92); color: var(--ink); display: grid; place-items: center; cursor: pointer; box-shadow: 0 10px 30px -8px rgba(0, 0, 0, .6); transition: transform .3s var(--ease), background .3s; }
.hotspot::before { content: ''; position: absolute; inset: -8px; border-radius: 50%; border: 2px solid rgba(255, 255, 255, .7); animation: ring 2.2s var(--ease) infinite; }
@keyframes ring { 0% { transform: scale(.7); opacity: 1; } 100% { transform: scale(1.35); opacity: 0; } }
.hotspot:hover { transform: translate(-50%, -50%) scale(1.12); background: var(--brand); color: #fff; }
.hotspot svg { width: 20px; height: 20px; }
.hotspot span { position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%); white-space: nowrap; background: rgba(15, 15, 17, .75); color: #fff; font-size: 13px; font-weight: 700; padding: 6px 11px; border-radius: 999px; pointer-events: none; }
.thumbs { display: flex; gap: 14px; margin-top: 22px; overflow-x: auto; padding-bottom: 8px; scrollbar-width: thin; scroll-snap-type: x mandatory; }
.thumb { flex: 0 0 auto; width: 188px; border: 0; padding: 0; background: none; cursor: pointer; text-align: left; color: rgba(255, 255, 255, .72); scroll-snap-align: start; }
.thumb .im { display: block; height: 104px; border-radius: 12px; overflow: hidden; position: relative; box-shadow: inset 0 0 0 2px transparent; }
.thumb .im img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.thumb:hover .im img { transform: scale(1.08); }
.thumb .t { display: block; font-size: 14px; font-weight: 600; margin-top: 9px; line-height: 1.35; }
.thumb[aria-current="true"] { color: #fff; }
.thumb[aria-current="true"] .im { outline: 2px solid var(--brand); outline-offset: 3px; }
.p360-foot { display: flex; flex-wrap: wrap; gap: 18px 40px; justify-content: space-between; align-items: center; margin-top: 40px; color: rgba(255, 255, 255, .72); font-size: 15px; }

/* ---------- Rundgang-Teaser ---------- */
.walk { position: relative; min-height: 100svh; color: #fff; display: flex; align-items: center; overflow: hidden; background: #0c0d0f; }
.walk-bg { position: absolute; inset: -10% 0; }
.walk-bg img { width: 100%; height: 100%; object-fit: cover; }
.walk::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 50%, rgba(10, 10, 12, .2), rgba(10, 10, 12, .82) 75%), linear-gradient(90deg, rgba(10, 10, 12, .8), rgba(10, 10, 12, 0) 65%); }
.walk .wrap { position: relative; z-index: 2; }
.walk h2 { max-width: 13ch; margin: 18px 0 24px; }
.walk .lead { color: rgba(255, 255, 255, .82); }
.keys { display: flex; flex-wrap: wrap; gap: 18px 28px; margin: 34px 0 38px; font-size: 14px; color: rgba(255, 255, 255, .78); }
.keys .k { display: flex; align-items: center; gap: 10px; }
.keys kbd { font-family: var(--sans); font-size: 12.5px; font-weight: 800; min-width: 30px; height: 30px; padding: 0 8px; border-radius: 8px; display: inline-grid; place-items: center; background: rgba(255, 255, 255, .12); box-shadow: inset 0 -2px 0 rgba(255, 255, 255, .15); }

/* ---------- Materialien ---------- */
.materials { background: var(--paper-2); }
.mat-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: clamp(24px, 4vw, 60px); align-items: center; }
.mat-stage { position: relative; aspect-ratio: 5 / 4; border-radius: calc(var(--radius) + 4px); overflow: hidden; background: radial-gradient(ellipse at 50% 40%, #f4f0ea, #d9d1c4); box-shadow: var(--shadow); touch-action: pan-y; }
.mat-stage canvas { width: 100%; height: 100%; display: block; cursor: grab; }
.mat-stage .mat-now { position: absolute; left: 18px; bottom: 16px; right: 18px; font-size: 14px; color: var(--ink-2); background: rgba(255, 255, 255, .72); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); padding: 10px 14px; border-radius: 12px; }
.mat-stage .mat-now b { color: var(--ink); }
.mat-panel h3 { font-size: 15px; font-family: var(--sans); font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin: 26px 0 14px; }
.swatches { display: flex; flex-wrap: wrap; gap: 12px; }
.sw { width: 72px; border: 0; background: none; padding: 0; cursor: pointer; text-align: center; font-size: 12px; line-height: 1.25; color: var(--ink-2); font-weight: 600; overflow-wrap: anywhere; hyphens: auto; }
.sw i { margin-left: auto; margin-right: auto; }
.sw i { display: block; width: 64px; height: 64px; border-radius: 16px; background-size: cover; background-position: center; box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .1), 0 8px 18px -10px rgba(0, 0, 0, .4); margin-bottom: 7px; transition: transform .35s var(--ease), box-shadow .35s; }
.sw:hover i { transform: translateY(-3px); }
.sw[aria-pressed="true"] i { box-shadow: 0 0 0 3px var(--paper-2), 0 0 0 5px var(--brand), 0 8px 18px -10px rgba(0, 0, 0, .4); }
.mat-note { font-size: 14px; color: var(--muted); margin-top: 26px; }

/* ---------- Leistungen ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 26px); }
.card { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--wall); color: #fff; min-height: 460px; display: flex; flex-direction: column; justify-content: flex-end; isolation: isolate; text-decoration: none; }
.card .im { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.card .im img { width: 100%; height: 115%; object-fit: cover; transition: transform 1.2s var(--ease); }
.card:hover .im img { transform: scale(1.06); }
.card::before { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(12, 12, 14, 0) 30%, rgba(12, 12, 14, .88) 100%); }
.card .body { padding: 28px 26px 26px; }
.card .num { font-size: 13px; font-weight: 800; letter-spacing: .14em; color: #f07bab; }
.card h3 { margin: 8px 0 10px; font-size: 28px; }
.card p { margin: 0; font-size: 15px; color: rgba(255, 255, 255, .8); max-height: 0; opacity: 0; overflow: hidden; transition: max-height .7s var(--ease), opacity .5s, margin .5s; }
.card:hover p, .card:focus-within p { max-height: 200px; opacity: 1; margin-top: 4px; }
.card .brands { font-size: 12.5px; letter-spacing: .04em; color: rgba(255, 255, 255, .62); margin-top: 12px; }
@media (hover: none) { .card p { max-height: none; opacity: 1; } }

/* ---------- Häcker ---------- */
.haecker { background: #fff; }
.hk-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 80px); align-items: center; }
.hk-media { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 5; }
.hk-media img { width: 100%; height: 118%; object-fit: cover; }
.hk-lines { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 34px; }
.hk-line { padding: 24px; border-radius: var(--radius); background: var(--paper); border: 1px solid var(--line); }
.hk-line b { font-family: var(--serif); font-weight: 400; font-size: 30px; display: block; margin-bottom: 6px; }
.hk-line p { margin: 0; font-size: 15px; color: var(--muted); }
.hk-facts { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.hk-facts span { font-size: 13px; font-weight: 700; padding: 7px 12px; border-radius: 999px; background: var(--paper-2); color: var(--ink-2); }

/* ---------- Ablauf ---------- */
.steps { position: relative; display: grid; gap: clamp(40px, 6vw, 80px); padding-left: 80px; }
.steps .rail { position: absolute; left: 27px; top: 10px; bottom: 10px; width: 2px; background: var(--line); }
.steps .rail i { position: absolute; inset: 0; background: var(--brand); transform-origin: top; transform: scaleY(0); }
.step { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 4vw, 60px); align-items: center; }
.step .dot { position: absolute; left: -80px; top: 6px; width: 56px; height: 56px; border-radius: 50%; background: var(--paper); border: 2px solid var(--line); display: grid; place-items: center; font-family: var(--serif); font-size: 22px; transition: background .5s, color .5s, border-color .5s; }
.step.on .dot { background: var(--brand); border-color: var(--brand); color: #fff; }
.step h3 { font-size: clamp(26px, 2.6vw, 36px); margin-bottom: 12px; }
.step p { margin: 0; color: var(--muted); }
.step .im { border-radius: var(--radius); overflow: hidden; aspect-ratio: 16 / 10; }
.step .im img { width: 100%; height: 100%; object-fit: cover; }
.incl { display: flex; flex-wrap: wrap; gap: 10px; margin-top: clamp(48px, 6vw, 80px); padding-left: 80px; }
.incl span { display: inline-flex; align-items: center; gap: 8px; padding: 11px 16px; border-radius: 999px; background: #fff; border: 1px solid var(--line); font-weight: 700; font-size: 14.5px; }
.incl span::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--brand); }

/* ---------- Galerie (horizontal) ---------- */
.gallery { background: var(--wall); color: #fff; overflow: hidden; }
.gallery .section-head { margin-bottom: 40px; }
.g-track { display: flex; gap: clamp(14px, 1.6vw, 24px); padding: 0 var(--gutter); width: max-content; will-change: transform; }
.g-item { position: relative; flex: 0 0 auto; height: min(68vh, 640px); border-radius: var(--radius); overflow: hidden; border: 0; padding: 0; cursor: zoom-in; background: #111; }
.g-item.w { aspect-ratio: 4 / 3; } .g-item.t { aspect-ratio: 3 / 4; }
.g-item img { height: 100%; width: 120%; max-width: none; object-fit: cover; margin-left: -10%; }
.g-item figcaption { position: absolute; left: 16px; bottom: 14px; font-size: 13.5px; font-weight: 700; background: rgba(12, 12, 14, .55); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); padding: 7px 12px; border-radius: 999px; }
.g-progress { height: 2px; background: rgba(255, 255, 255, .14); margin: 36px var(--gutter) 0; border-radius: 2px; overflow: hidden; }
.g-progress i { display: block; height: 100%; background: var(--brand); transform-origin: left; transform: scaleX(0); }

/* ---------- Über uns ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 80px); align-items: start; }
.about-photos { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ph { position: relative; border-radius: var(--radius); overflow: hidden; background: repeating-linear-gradient(135deg, var(--paper-2), var(--paper-2) 12px, var(--sand) 12px, var(--sand) 24px); aspect-ratio: 3 / 4; display: grid; place-items: center; text-align: center; color: var(--muted); font-size: 14px; font-weight: 700; padding: 20px; }
.ph.big { grid-column: span 2; aspect-ratio: 16 / 10; }
.ph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ph small { display: block; font-weight: 500; margin-top: 6px; }
.people { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 34px; }
.person { padding: 22px; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); }
.person b { font-family: var(--serif); font-weight: 400; font-size: 28px; display: block; }
.person .role { font-size: 13px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--brand); display: block; margin: 4px 0 10px; }
.person p { margin: 0; font-size: 15px; color: var(--muted); }
.quote-big { font-family: var(--serif); font-size: clamp(26px, 2.8vw, 38px); line-height: 1.2; margin: 26px 0; }
.quote-big em { color: var(--brand); }

/* ---------- Zahlen ---------- */
.stats { background: var(--brand); color: #fff; padding: clamp(56px, 7vw, 96px) 0; position: relative; overflow: hidden; }
.stats::before { content: '&'; position: absolute; right: -2vw; top: 50%; transform: translateY(-50%); font-family: var(--serif); font-size: 42vw; line-height: 1; color: rgba(255, 255, 255, .06); pointer-events: none; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; position: relative; }
.stat b { font-family: var(--serif); font-weight: 400; font-size: clamp(52px, 6vw, 92px); line-height: 1; display: block; letter-spacing: -.03em; }
.stat span { font-size: 15px; color: rgba(255, 255, 255, .85); display: block; margin-top: 10px; max-width: 22ch; }

/* ---------- Marken ---------- */
.brands { padding: clamp(70px, 8vw, 120px) 0; overflow: hidden; }
.marquee { display: flex; gap: 0; white-space: nowrap; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.marquee + .marquee { margin-top: 18px; }
.m-row { display: flex; flex: 0 0 auto; gap: 16px; padding-right: 16px; animation: marquee 60s linear infinite; }
.marquee.rev .m-row { animation-direction: reverse; animation-duration: 70s; }
.marquee:hover .m-row { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-100%); } }
.m-row a, .m-row span { display: inline-flex; align-items: center; gap: 10px; padding: 14px 24px; border-radius: 999px; border: 1px solid var(--line); background: #fff; font-weight: 700; font-size: 17px; text-decoration: none; color: var(--ink-2); transition: background .3s, color .3s, border-color .3s; }
.m-row a:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.m-row a small { font-weight: 600; font-size: 12px; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; }
.m-row a:hover small { color: rgba(255, 255, 255, .6); }

/* ---------- Bewertung ---------- */
.review { background: var(--paper-2); }
.review-box { display: grid; grid-template-columns: auto 1fr auto; gap: clamp(20px, 4vw, 60px); align-items: center; padding: clamp(28px, 4vw, 56px); border-radius: calc(var(--radius) + 8px); background: #fff; box-shadow: var(--shadow); }
.review-box .score { font-family: var(--serif); font-size: clamp(80px, 9vw, 130px); line-height: .9; }
.review-box .stars { color: #f2b01e; font-size: 26px; letter-spacing: 4px; }
.review-box p { margin: 6px 0 0; color: var(--muted); }

/* ---------- Kontakt ---------- */
.contact { background: var(--wall); color: #f3f0ea; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(28px, 5vw, 80px); }
.info-list { display: grid; gap: 22px; margin-top: 34px; }
.info-list div { display: grid; grid-template-columns: 44px 1fr; gap: 16px; align-items: start; }
.info-list .ic { width: 44px; height: 44px; border-radius: 12px; background: rgba(255, 255, 255, .08); display: grid; place-items: center; color: #f07bab; }
.info-list .ic svg { width: 20px; height: 20px; }
.info-list b { display: block; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255, 255, 255, .6); margin-bottom: 2px; }
.info-list a { text-decoration: none; }
.info-list a:hover { color: #f07bab; }
form.cf { background: #fff; color: var(--ink); border-radius: calc(var(--radius) + 6px); padding: clamp(24px, 3.4vw, 44px); display: grid; gap: 16px; box-shadow: 0 40px 80px -40px rgba(0, 0, 0, .7); }
.cf .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cf label { display: grid; gap: 7px; font-size: 13.5px; font-weight: 700; color: var(--ink-2); }
.cf input, .cf select, .cf textarea { font: inherit; font-size: 16px; padding: 14px 16px; border-radius: 12px; border: 1.5px solid var(--line); background: var(--paper); color: var(--ink); transition: border-color .3s, background .3s; width: 100%; }
.cf input:focus, .cf select:focus, .cf textarea:focus { outline: none; border-color: var(--brand); background: #fff; }
.cf textarea { min-height: 130px; resize: vertical; }
.cf .consent { display: flex; gap: 12px; align-items: flex-start; font-weight: 500; font-size: 14px; color: var(--muted); }
.cf .consent input { width: 20px; height: 20px; margin-top: 2px; flex: 0 0 auto; accent-color: var(--brand); }
.cf .hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.cf .status { font-size: 15px; min-height: 1.4em; margin: 0; }
.cf .status.ok { color: #1f7a4a; } .cf .status.err { color: var(--brand); }

/* ---------- Fußzeile ---------- */
.footer { background: #17181a; color: rgba(255, 255, 255, .72); padding: 70px 0 34px; font-size: 15px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; }
.footer h4 { color: #fff; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; margin: 0 0 14px; }
.footer a { text-decoration: none; display: block; padding: 3px 0; }
.footer a:hover { color: #fff; }
.footer .bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; margin-top: 54px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .1); font-size: 13.5px; }
.footer .big { font-family: var(--serif); font-size: clamp(40px, 7vw, 110px); color: #fff; line-height: 1; margin-bottom: 60px; letter-spacing: -.02em; }
.footer .big em { color: #f07bab; }

/* ---------- Lightbox ---------- */
.lb { position: fixed; inset: 0; z-index: 90; background: rgba(12, 12, 14, .94); display: none; place-items: center; }
.lb.open { display: grid; }
.lb img { max-width: 92vw; max-height: 86vh; border-radius: 12px; box-shadow: 0 30px 80px rgba(0, 0, 0, .6); }
.lb button { position: absolute; width: 52px; height: 52px; border-radius: 50%; border: 0; background: rgba(255, 255, 255, .12); color: #fff; font-size: 26px; cursor: pointer; }
.lb button:hover { background: var(--brand); }
.lb .x { right: 20px; top: 20px; } .lb .prev { left: 20px; top: 50%; } .lb .next { right: 20px; top: 50%; }
.lb figcaption { position: absolute; bottom: 22px; left: 0; right: 0; text-align: center; color: rgba(255, 255, 255, .8); font-size: 14px; }

/* ---------- Animationshilfen ---------- */
.reveal { opacity: 0; transform: translateY(40px); }
.no-js .reveal, .reduced .reveal { opacity: 1; transform: none; }
.img-reveal { clip-path: inset(0 0 100% 0); }
.no-js .img-reveal, .reduced .img-reveal { clip-path: none; }

/* ---------- Responsiv ---------- */
@media (max-width: 1100px) {
  .nav { display: none; }
  .burger { display: block; }
  .header .btn { display: none; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  body { font-size: 16px; }
  .mat-grid, .hk-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 1fr; }
  .viewer { aspect-ratio: 4 / 5; }
  .review-box { grid-template-columns: 1fr; text-align: left; }
  .hk-media { aspect-ratio: 4 / 3; }
}
@media (max-width: 620px) {
  .values-grid, .services-grid, .people, .hk-lines { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .cf .row { grid-template-columns: 1fr; }
  .steps { padding-left: 64px; }
  .step .dot { left: -64px; width: 46px; height: 46px; font-size: 19px; }
  .steps .rail { left: 22px; }
  .incl { padding-left: 0; }
  .card { min-height: 380px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(38px, 10.5vw, 56px); margin: 12px 0 16px; }
  .hero .lead { font-size: 16px; }
  .hero .wrap { padding-top: 150px; }
  .hero-cta .btn { padding: 14px 20px; font-size: 15px; }
  .hero-facts { gap: 10px 22px; font-size: 13px; }
  .hero-facts > div:nth-child(n+3) { display: none; }
  .scroll-hint { display: none; }
  .pano-badge { top: 92px; left: var(--gutter); right: auto; }
  .thumb { width: 150px; } .thumb .im { height: 88px; }
  .g-item { height: 56vh; }
  .brand img { height: 36px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
