/* =========================================================
   ImmoGuidi – Website 2026
   Brand: Off-White #FFFFFF · Dark Goldenrod #AA7823 · Graphite #CCC4BA · Coal Black #1A1B1D
   Type: Wix Madefor Display (Brand), Wix Madefor Text (Fliesstext)
   ========================================================= */

:root {
  color-scheme: light;
  --white: #FFFFFF;
  --paper: #F6F3EE;          /* warme Aufhellung aus Graphite */
  --graphite: #CCC4BA;
  --graphite-2: #E4DED6;
  --gold: #AA7823;
  --gold-ink: #8A611A;       /* Gold für kleine Schrift auf Weiss (AA) */
  --gold-light: #CFA861;     /* Gold für kleine Schrift auf Coal (AA) */
  --coal: #1A1B1D;
  --coal-2: #232427;
  --ink: #1A1B1D;
  --ink-2: #55504A;
  --line: rgba(26, 27, 29, .12);
  --line-light: rgba(255, 255, 255, .16);

  --f-display: "Wix Madefor Display", "Helvetica Neue", Arial, sans-serif;
  --f-text: "Wix Madefor Text", "Helvetica Neue", Arial, sans-serif;

  --gutter: clamp(16px, 4vw, 56px);
  --maxw: 1440px;
  --ease: cubic-bezier(.2, .7, .1, 1);
  --ease-io: cubic-bezier(.76, 0, .24, 1);
  --header-h: 76px;
}

*, *::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; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--f-text);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}
body.is-loading { overflow: hidden; }

img, svg, canvas { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; color: inherit; }
p { margin: 0; }
h1, h2, h3 { margin: 0; font-family: var(--f-display); font-weight: 700; text-wrap: balance; }
ol, ul { margin: 0; padding: 0; list-style: none; }
::selection { background: var(--gold); color: var(--white); }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

.skip-link {
  position: fixed; left: 16px; top: -60px; z-index: 200;
  background: var(--gold); color: var(--white); padding: 10px 16px; text-decoration: none;
}
.skip-link:focus { top: 16px; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { position: relative; padding-block: clamp(96px, 14vw, 200px); }

.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* ---------- Type ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--f-display); font-size: .75rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--gold-ink);
}
.eyebrow--light { color: rgba(255,255,255,.86); }
.eyebrow--gold { color: var(--gold-light); }
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(170,120,35,.25); }

.h2 {
  font-size: clamp(2.3rem, 5.2vw, 5.2rem);
  line-height: 1.0; letter-spacing: -.032em; font-weight: 700;
}
.h2--light { color: var(--white); }
.h3 { font-size: clamp(1.7rem, 2.6vw, 2.5rem); line-height: 1.05; letter-spacing: -.02em; font-weight: 700; }

/* split-lines: words wrapped by JS */
.split-lines .w { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: .08em; margin-bottom: -.08em; }
.split-lines .w > span { display: inline-block; will-change: transform; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--coal); --fg: var(--white); --bd: var(--coal);
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  min-height: 54px; padding: 0 28px; border-radius: 12px;
  background: var(--bg); color: var(--fg); border: 1px solid var(--bd);
  font-family: var(--f-display); font-weight: 700; font-size: .98rem; letter-spacing: -.005em;
  text-decoration: none; cursor: pointer; overflow: hidden; isolation: isolate;
  transition: color .45s var(--ease), border-color .45s var(--ease);
}
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--hover-bg, var(--gold));
  transform: translateY(101%); transition: transform .55s var(--ease);
}
.btn:hover::before, .btn:focus-visible::before { transform: translateY(0); }
.btn:hover, .btn:focus-visible { color: var(--hover-fg, var(--white)); border-color: var(--hover-bd, var(--gold)); }
.btn--sm { min-height: 44px; padding: 0 18px; font-size: .88rem; border-radius: 10px; }
.btn--full { width: 100%; }
.btn--gold { --bg: var(--gold); --bd: var(--gold); --fg: var(--white); --hover-bg: var(--coal); --hover-bd: var(--coal); }
.btn--light { --bg: var(--white); --fg: var(--coal); --bd: var(--white); }
.btn--ghost-light { --bg: transparent; --fg: var(--white); --bd: rgba(255,255,255,.55); --hover-bg: var(--white); --hover-fg: var(--coal); --hover-bd: var(--white); backdrop-filter: blur(6px); }
/* Kontur in der aktuellen Textfarbe, passt sich dem hellen/dunklen Header an */
.btn--line { --bg: transparent; --fg: currentColor; --bd: color-mix(in srgb, currentColor 42%, transparent); --hover-bg: var(--gold); --hover-bd: var(--gold); --hover-fg: var(--white); }
.btn__back { color: var(--gold-light); transition: transform .4s var(--ease), color .4s var(--ease); }
.header.is-light .btn__back { color: var(--gold-ink); }
.btn:hover .btn__back, .btn:focus-visible .btn__back { color: currentColor; transform: translateX(-4px); }
.live-dot { position: relative; flex: none; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.live-dot::after { content: ""; position: absolute; inset: 0; border-radius: 50%; background: inherit; animation: live-pulse 2.2s var(--ease) infinite; }
.btn:hover .live-dot, .btn:focus-visible .live-dot { background: var(--white); }
@keyframes live-pulse { from { transform: scale(1); opacity: .75; } to { transform: scale(3.4); opacity: 0; } }

.link-arrow {
  display: inline-flex; align-items: center; gap: .7em; margin-top: 8px;
  font-family: var(--f-display); font-weight: 700; color: var(--ink); text-decoration: none;
  border-bottom: 1px solid var(--gold); padding-bottom: 4px;
}
.link-arrow::after { content: "→"; color: var(--gold); transition: transform .4s var(--ease); }
.link-arrow:hover::after { transform: translateX(6px); }
.link-arrow--light { color: var(--white); }

/* ---------- Loader ---------- */
.loader {
  position: fixed; inset: 0; z-index: 150; background: var(--coal); color: var(--gold);
  display: grid; place-items: center;
}
.loader__inner { display: grid; justify-items: center; gap: 22px; }
.loader__mark { width: clamp(96px, 12vw, 140px); height: auto; color: var(--gold); clip-path: inset(100% 0 0 0); }
.loader__count {
  font-family: var(--f-display); font-weight: 600; font-size: .9rem; letter-spacing: .3em;
  color: var(--gold-light); font-variant-numeric: tabular-nums;
}
.loader__claim { font-family: var(--f-display); font-weight: 500; color: rgba(255,255,255,.6); font-size: .9rem; letter-spacing: .02em; }
.loader__bar { position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: rgba(255,255,255,.08); }
.loader__bar span { display: block; height: 100%; width: 100%; background: var(--gold); transform-origin: left; transform: scaleX(0); }

/* ---------- Cursor ---------- */
.cursor { position: fixed; left: 0; top: 0; z-index: 140; pointer-events: none; display: none; opacity: 0; transition: opacity .3s; }
.cursor.is-on { opacity: 1; }
@media (hover: hover) and (pointer: fine) { .cursor { display: block; } }
.cursor__dot, .cursor__ring { position: absolute; left: 0; top: 0; border-radius: 50%; transform: translate(-50%, -50%); }
.cursor__dot { width: 6px; height: 6px; background: var(--gold); }
.cursor__ring {
  width: 38px; height: 38px; border: 1px solid rgba(170,120,35,.7);
  display: grid; place-items: center;
  transition: width .45s var(--ease), height .45s var(--ease), background-color .45s var(--ease), border-color .45s var(--ease);
}
.cursor__label { font-family: var(--f-display); font-weight: 700; font-size: .72rem; letter-spacing: .06em; color: var(--white); opacity: 0; transition: opacity .3s; white-space: nowrap; }
.cursor.is-label .cursor__ring { width: 96px; height: 96px; background: var(--gold); border-color: var(--gold); }
.cursor.is-label .cursor__label { opacity: 1; }
.cursor.is-link .cursor__ring { width: 58px; height: 58px; border-color: var(--gold); }
.cursor.is-off { opacity: 0; }

/* ---------- Header ---------- */
.header {
  position: fixed; left: 0; right: 0; top: 0; z-index: 100;
  height: calc(var(--header-h) + env(safe-area-inset-top, 0px));
  padding: env(safe-area-inset-top, 0px) var(--gutter) 0;
  display: flex; align-items: center; gap: 24px;
  color: var(--white);
  transition: color .4s var(--ease), background-color .4s var(--ease), transform .6s var(--ease), box-shadow .4s;
}
.header.is-scrolled { background: rgba(26,27,29,.55); backdrop-filter: blur(14px) saturate(1.2); -webkit-backdrop-filter: blur(14px) saturate(1.2); }
.header.is-light { color: var(--ink); }
.header.is-light.is-scrolled { background: rgba(255,255,255,.78); box-shadow: 0 1px 0 var(--line); }
.header.is-hidden { transform: translateY(-110%); }
.header__logo { display: block; width: 118px; color: var(--gold); flex: none; }
.header.is-light .header__logo { color: var(--gold); }
.header__logo svg { width: 100%; height: auto; }
.header__nav { display: flex; gap: clamp(16px, 2.2vw, 34px); margin-inline: auto; }
.header__nav a, .header__portal {
  position: relative; text-decoration: none; font-family: var(--f-display); font-weight: 600; font-size: .92rem;
}
.header__nav a::after, .header__portal::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: right; transition: transform .45s var(--ease);
}
.header__nav a:hover::after, .header__nav a.is-active::after, .header__portal:hover::after { transform: scaleX(1); transform-origin: left; }
.header__actions { display: flex; align-items: center; gap: 22px; }
.header__burger { display: none; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer; position: relative; }
.header__burger span { position: absolute; left: 10px; right: 10px; height: 2px; background: currentColor; transition: transform .4s var(--ease), top .4s var(--ease); }
.header__burger span:first-child { top: 17px; }
.header__burger span:last-child { top: 25px; }
.header__burger[aria-expanded="true"] span:first-child { top: 21px; transform: rotate(45deg); }
.header__burger[aria-expanded="true"] span:last-child { top: 21px; transform: rotate(-45deg); }

.menu {
  position: fixed; inset: 0; z-index: 90; background: var(--coal); color: var(--white);
  padding: calc(var(--header-h) + 40px + env(safe-area-inset-top, 0px)) var(--gutter) calc(32px + env(safe-area-inset-bottom, 0px));
  display: flex; flex-direction: column; justify-content: space-between;
}
.menu__nav { display: grid; gap: 6px; }
.menu__nav a { font-family: var(--f-display); font-weight: 700; font-size: clamp(2rem, 9vw, 3.2rem); letter-spacing: -.03em; line-height: 1.15; text-decoration: none; }
.menu__nav a:hover { color: var(--gold-light); }
.menu__foot { display: grid; gap: 8px; color: var(--gold-light); font-family: var(--f-display); font-weight: 600; }
.menu__foot a { text-decoration: none; }
.menu__nav .menu__objekte { color: var(--gold-light); }

.header .btn { flex: none; white-space: nowrap; }
/* Ab 1300px passen Navigation, Portal und beide Buttons nicht mehr nebeneinander */
@media (max-width: 1300px) {
  .header__nav, .header__portal { display: none; }
  .header__actions { margin-left: auto; }
  .header__burger { display: block; }
}
@media (max-width: 640px) {
  .header .btn--sm:not(.header__objekte) { display: none; }
  .header__objekte { padding: 0 14px; }
}
@media (max-width: 420px) {
  .hide-sm { display: none; }
}
@media (max-width: 360px) {
  .header { gap: 12px; }
  .header__logo { width: 96px; }
  .header__actions { gap: 10px; }
}

/* ---------- Grid lines (Grundriss-Raster) ---------- */
.grid-lines { position: absolute; inset: 0; pointer-events: none; display: grid; grid-template-columns: repeat(4, 1fr); max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.grid-lines span { border-left: 1px solid var(--line); opacity: .55; }
.grid-lines span:last-child { border-right: 1px solid var(--line); }

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; height: 100vh; height: 100svh; background: var(--coal); }
.hero__stage { position: relative; height: 100vh; height: 100svh; overflow: hidden; color: var(--white); }
.seq-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.seq-fallback { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.has-seq .seq-fallback { opacity: 0; }
.hero__shade {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(26,27,29,.55) 0%, rgba(26,27,29,0) 22%),
    linear-gradient(0deg, rgba(26,27,29,.78) 0%, rgba(26,27,29,.25) 38%, rgba(26,27,29,0) 60%),
    linear-gradient(90deg, rgba(26,27,29,.45) 0%, rgba(26,27,29,0) 55%);
}
.hero__copy { position: absolute; left: var(--gutter); right: var(--gutter); bottom: clamp(88px, 12vh, 140px); max-width: 780px; display: grid; gap: 22px; }
.hero__title {
  font-size: clamp(3.1rem, 9.4vw, 9.6rem); line-height: .9; letter-spacing: -.045em; font-weight: 800; color: var(--white);
}
.hero__lead { max-width: 34em; font-size: clamp(1rem, 1.3vw, 1.2rem); color: rgba(255,255,255,.88); }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 6px; }
.hero__claim {
  position: absolute; inset: 0; display: flex; flex-wrap: wrap; align-content: center; justify-content: center; gap: 0 .28em;
  padding-inline: var(--gutter); text-align: center;
  font-family: var(--f-display); font-weight: 700; color: var(--white);
  font-size: clamp(2.2rem, 7vw, 7rem); letter-spacing: -.04em; line-height: .98;
  opacity: 0; pointer-events: none; text-shadow: 0 6px 40px rgba(0,0,0,.45); isolation: isolate;
}
.hero__claim::before { content: ""; position: absolute; left: 50%; top: 50%; width: min(1200px, 120vw); height: 70%; transform: translate(-50%, -50%); background: radial-gradient(closest-side, rgba(26,27,29,.55), rgba(26,27,29,0)); z-index: -1; }
.hero__claim span { display: inline-block; }
.hero__claim span:last-child { color: #E3C27F; }
.hero__copy--c { opacity: 0; max-width: 560px; }
.hero__end { font-family: var(--f-display); font-weight: 600; font-size: clamp(1.4rem, 2.4vw, 2.2rem); line-height: 1.15; letter-spacing: -.02em; }
.hero__hud {
  position: absolute; left: var(--gutter); right: var(--gutter); bottom: 28px;
  display: flex; align-items: center; gap: 16px;
  font-family: var(--f-display); font-size: .72rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.7);
}
.hero__hud-track { flex: 1; height: 1px; background: rgba(255,255,255,.22); position: relative; overflow: hidden; }
.hero__hud-fill { position: absolute; inset: 0; background: var(--gold); transform-origin: left; transform: scaleX(0); }

/* =========================================================
   HALTUNG + FACTS
   ========================================================= */
.haltung { background: var(--white); overflow: hidden; }
.haltung__wrap { position: relative; display: grid; grid-template-columns: minmax(180px, 1fr) 3fr; gap: clamp(32px, 5vw, 80px); align-items: start; }
.haltung__side { display: grid; gap: 40px; position: sticky; top: 140px; }
.haltung__mark { width: clamp(90px, 10vw, 150px); color: var(--gold); }
.haltung__text {
  font-family: var(--f-display); font-weight: 600;
  font-size: clamp(1.9rem, 4.2vw, 4.1rem); line-height: 1.1; letter-spacing: -.028em; color: var(--ink);
}
.reveal-words .rw { opacity: .14; transition: none; }

.facts { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: clamp(80px, 11vw, 160px); }
.fact { padding: 26px 24px 0 0; border-top: 1px solid var(--ink); display: grid; gap: 10px; align-content: start; }
.fact__num { font-family: var(--f-display); font-weight: 700; font-size: clamp(2.6rem, 5vw, 4.6rem); letter-spacing: -.04em; line-height: 1; color: var(--gold); font-variant-numeric: tabular-nums; }
.fact__label { font-size: .95rem; color: var(--ink-2); max-width: 18em; }

@media (max-width: 860px) {
  .haltung__wrap { grid-template-columns: 1fr; }
  .haltung__side { position: static; grid-auto-flow: column; justify-content: space-between; align-items: center; }
  .haltung__mark { width: 72px; }
  .facts { grid-template-columns: repeat(2, 1fr); row-gap: 36px; }
}

/* =========================================================
   LEISTUNGEN (horizontal)
   ========================================================= */
.leistungen { background: var(--paper); position: relative; }
.leistungen__pin { position: relative; height: 100vh; height: 100svh; overflow: hidden; display: flex; flex-direction: column; justify-content: center; }
.leistungen__track { display: flex; gap: clamp(28px, 4vw, 64px); padding-inline: var(--gutter); align-items: center; will-change: transform; width: max-content; }
.l-intro { width: min(520px, 80vw); flex: none; display: grid; gap: 26px; align-content: center; }
.l-intro__text { color: var(--ink-2); max-width: 30em; }
.l-intro__hint { display: flex; align-items: center; gap: 14px; font-family: var(--f-display); font-size: .75rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-ink); }
.arrow-line { width: 64px; height: 1px; background: var(--gold); position: relative; }
.arrow-line::after { content: ""; position: absolute; right: 0; top: -4px; width: 9px; height: 9px; border-top: 1px solid var(--gold); border-right: 1px solid var(--gold); transform: rotate(45deg); }

.l-panel {
  flex: none; width: min(1060px, 84vw); height: min(620px, 72vh);
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 3vw, 48px);
  background: var(--white); padding: clamp(16px, 1.6vw, 22px); border-radius: 22px;
  box-shadow: 0 30px 80px -40px rgba(26,27,29,.25);
}
.l-panel__media { position: relative; overflow: hidden; border-radius: 14px; background: var(--graphite-2); }
.l-panel__media img { position: absolute; inset: -6% -10%; width: 120%; height: 112%; max-width: none; object-fit: cover; will-change: transform; }
.l-panel__body { display: flex; flex-direction: column; justify-content: center; gap: 18px; padding: clamp(8px, 2vw, 28px) clamp(4px, 2vw, 28px) clamp(8px, 2vw, 28px) 0; }
.l-panel__body > p { color: var(--ink-2); max-width: 32em; }
.ticks { display: grid; gap: 10px; margin-top: 4px; }
.ticks li { position: relative; padding-left: 26px; font-size: .98rem; }
.ticks li::before { content: ""; position: absolute; left: 0; top: .72em; width: 14px; height: 1px; background: var(--gold); }

.leistungen__progress {
  position: absolute; left: var(--gutter); right: var(--gutter); bottom: clamp(20px, 4vh, 40px);
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; align-items: end;
}
.leistungen__progress-label { font-family: var(--f-display); font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-2); opacity: .55; transition: opacity .3s, color .3s; }
.leistungen__progress-label.is-active { opacity: 1; color: var(--gold-ink); }
.leistungen__progress-bar { grid-column: 1 / -1; height: 2px; background: var(--graphite); position: relative; }
.leistungen__progress-bar span { position: absolute; inset: 0; background: var(--gold); transform-origin: left; transform: scaleX(0); }

@media (max-width: 860px) {
  .leistungen__pin { height: auto; overflow: visible; padding-block: 96px 64px; }
  .leistungen__track { flex-direction: column; width: 100%; align-items: stretch; transform: none !important; }
  .l-intro { width: 100%; }
  .l-panel { width: 100%; height: auto; grid-template-columns: 1fr; }
  .l-panel__media { aspect-ratio: 4 / 3.4; }
  .l-panel__body { padding: 4px 6px 12px; }
  .leistungen__progress { display: none; }
}

/* =========================================================
   STOCKWERKEIGENTUM 3D
   ========================================================= */
.stweg { background: var(--coal); color: var(--white); position: relative; }
.stweg__pin { position: relative; height: 100vh; height: 100svh; overflow: hidden; display: grid; grid-template-columns: minmax(320px, 5fr) 7fr; }
.stweg__canvas { position: absolute; inset: 0; }
.stweg__canvas canvas { width: 100% !important; height: 100% !important; }
.stweg__canvas::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, rgba(26,27,29,.92) 0%, rgba(26,27,29,.6) 32%, rgba(26,27,29,0) 55%);
}
.stweg__copy { position: relative; z-index: 2; padding: calc(var(--header-h) + 40px) var(--gutter) 48px; display: flex; flex-direction: column; gap: 28px; justify-content: center; }
.stweg__steps { position: relative; min-height: 190px; }
.stweg__steps li {
  position: absolute; inset: 0 0 auto 0; display: grid; gap: 10px; max-width: 30em;
  opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.stweg__steps li.is-active { opacity: 1; transform: none; }
.stweg__steps h3 { font-size: clamp(1.5rem, 2.3vw, 2.2rem); letter-spacing: -.02em; line-height: 1.1; }
.stweg__steps p { color: rgba(255,255,255,.75); }
.stweg__lvl { font-family: var(--f-display); font-size: .75rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-light); }
.stweg__meter {
  position: absolute; right: var(--gutter); bottom: 32px; z-index: 2;
  font-family: var(--f-display); font-weight: 700; color: var(--gold); font-variant-numeric: tabular-nums;
  font-size: clamp(3rem, 7vw, 6.5rem); letter-spacing: -.05em; line-height: 1;
}
.stweg__meter small { font-size: .28em; color: rgba(255,255,255,.5); letter-spacing: 0; margin-left: 8px; }

@media (max-width: 860px) {
  .stweg__pin { grid-template-columns: 1fr; grid-template-rows: 1fr auto; }
  .stweg__canvas { inset: 0 0 38% 0; }
  .stweg__canvas::after { background: linear-gradient(0deg, rgba(26,27,29,1) 0%, rgba(26,27,29,0) 40%); }
  .stweg__copy { grid-row: 2; padding: 0 var(--gutter) 40px; gap: 16px; }
  .stweg__copy .h2 { font-size: 2rem; }
  .stweg__steps { min-height: 170px; }
  .stweg__meter { top: calc(var(--header-h) + 12px); bottom: auto; font-size: 2.6rem; }
}

/* =========================================================
   VERKAUF (Zeichnung → Gebäude)
   ========================================================= */
.verkauf { background: var(--white); position: relative; }
.verkauf__pin { position: relative; height: 100vh; height: 100svh; display: grid; grid-template-columns: 7fr 5fr; overflow: hidden; }
.verkauf__media { position: relative; overflow: hidden; background: var(--white); }
.verkauf__media .seq-canvas, .verkauf__media .seq-fallback { inset: 0; }
.verkauf__caption {
  position: absolute; left: var(--gutter); right: 24px; bottom: 28px; display: flex; align-items: center; gap: 14px;
  font-family: var(--f-display); font-size: .72rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--ink);
  mix-blend-mode: multiply;
}
.verkauf__caption-line { flex: 1; height: 1px; background: var(--gold); opacity: .6; }
.verkauf__copy { padding: calc(var(--header-h) + 32px) var(--gutter) 40px clamp(24px, 3vw, 56px); display: flex; flex-direction: column; justify-content: center; gap: 26px; }
.verkauf__copy .h2 { font-size: clamp(2rem, 3.6vw, 3.6rem); }
.steps { display: grid; gap: 4px; }
.steps li { display: grid; grid-template-columns: 44px 1fr; gap: 12px; padding: 12px 0; border-top: 1px solid var(--line); opacity: .38; transition: opacity .5s var(--ease); }
.steps li:last-child { border-bottom: 1px solid var(--line); }
.steps li.is-active, .steps li.is-done { opacity: 1; }
.steps__n { font-family: var(--f-display); font-weight: 700; color: var(--gold-ink); font-variant-numeric: tabular-nums; padding-top: 2px; }
.steps h3 { font-size: 1.15rem; letter-spacing: -.01em; }
.steps p { color: var(--ink-2); font-size: .95rem; line-height: 1.5; max-height: 0; overflow: hidden; transition: max-height .6s var(--ease), margin .6s var(--ease); }
.steps li.is-active p { max-height: 6em; margin-top: 4px; }
.steps__bar { height: 2px; background: var(--graphite-2); position: relative; }
.steps__bar span { position: absolute; inset: 0; background: var(--gold); transform-origin: left; transform: scaleX(0); }

@media (max-width: 960px) {
  .verkauf__pin { grid-template-columns: 1fr; grid-template-rows: 46% 54%; }
  .verkauf__copy { padding: 20px var(--gutter) 24px; gap: 14px; justify-content: flex-start; }
  .verkauf__copy .h2 { font-size: 1.7rem; }
  .verkauf__copy .eyebrow { display: none; }
  .steps li { padding: 8px 0; }
  .steps li:not(.is-active) p { display: none; }
  .verkauf__caption { bottom: 12px; }
}

/* =========================================================
   WERTE (stacking cards)
   ========================================================= */
.werte { background: var(--coal); color: var(--white); padding-block: clamp(96px, 12vw, 180px) clamp(80px, 10vw, 140px); }
.werte__head { display: grid; gap: 22px; max-width: 980px; margin-inline: 0; }
.werte__head.wrap { margin-inline: auto; max-width: var(--maxw); }
.werte__head .h2 { max-width: 13em; }
.werte__stack { display: grid; gap: 28px; margin-top: clamp(56px, 8vw, 100px); }
.wert {
  position: sticky; top: calc(var(--header-h) + 24px + var(--i, 0) * 22px);
  min-height: min(460px, 64vh); border-radius: 24px; overflow: hidden;
  background: var(--white); color: var(--ink);
  padding: clamp(28px, 4vw, 64px);
  display: grid; grid-template-columns: 1fr 1.25fr; grid-template-rows: auto 1fr; gap: 20px 48px; align-content: start;
  transform-origin: 50% 0;
  box-shadow: 0 -20px 60px -30px rgba(0,0,0,.6);
}
.wert:nth-child(2) { background: var(--paper); }
.wert:nth-child(3) { background: var(--graphite); }
.wert:nth-child(4) { background: var(--gold); color: var(--coal); }
.wert__idx { grid-column: 1 / -1; font-family: var(--f-display); font-size: .75rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-ink); }
.wert:nth-child(4) .wert__idx { color: var(--coal); opacity: .75; }
.wert__title { font-size: clamp(2rem, 4.2vw, 4rem); letter-spacing: -.035em; line-height: 1; align-self: end; }
.wert__text { font-size: clamp(1rem, 1.25vw, 1.2rem); max-width: 30em; align-self: end; color: inherit; opacity: .86; }
.wert::after { content: ""; position: absolute; inset: 0; background: #0d0d0e; opacity: var(--dim, 0); pointer-events: none; border-radius: inherit; }
.wert__pattern { position: absolute; right: -6%; top: -18%; width: 52%; color: var(--gold); opacity: .16; pointer-events: none; }
.wert:nth-child(4) .wert__pattern { color: var(--white); opacity: .22; }
@media (max-width: 860px) {
  .wert { grid-template-columns: 1fr; min-height: 420px; top: calc(var(--header-h) + 12px + var(--i, 0) * 14px); }
  .wert__pattern { width: 90%; top: -8%; right: -30%; }
}

/* =========================================================
   REGION
   ========================================================= */
.region { position: relative; min-height: 120vh; background: var(--coal); color: var(--white); overflow: hidden; display: flex; align-items: flex-end; }
.region__img { position: absolute; inset: -10% 0; }
.region__img img { width: 100%; height: 100%; object-fit: cover; will-change: transform; }
.region__shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(26,27,29,.9) 0%, rgba(26,27,29,.15) 30%, rgba(26,27,29,.2) 55%, rgba(26,27,29,.92) 100%); }
.region__marquee { position: absolute; left: 0; right: 0; top: 22%; overflow: hidden; pointer-events: none; }
.region__row { display: flex; align-items: center; gap: 4vw; width: max-content; will-change: transform; }
.region__row span {
  font-family: var(--f-display); font-weight: 800; font-size: clamp(3.6rem, 11vw, 11rem); letter-spacing: -.045em; line-height: 1;
  color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.75);
}
.region__row span:nth-of-type(3n+2) { color: rgba(255,255,255,.92); -webkit-text-stroke: 0; }
.region__row i { width: 1.2vw; min-width: 10px; aspect-ratio: 1; background: var(--gold); transform: rotate(45deg); flex: none; }
.region__copy { position: relative; padding-block: 0 clamp(64px, 10vw, 140px); display: grid; gap: 22px; }
.region__copy .h2 { max-width: 10em; }
.region__text { max-width: 34em; color: rgba(255,255,255,.85); font-size: clamp(1rem, 1.3vw, 1.2rem); }

/* =========================================================
   TEAM
   ========================================================= */
.team { background: var(--white); overflow: hidden; }
.team__head { position: relative; display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(28px, 5vw, 80px); align-items: end; }
.team__head > div { display: grid; gap: 22px; }
.team__intro { color: var(--ink-2); max-width: 36em; }
.team__grid { position: relative; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(14px, 1.6vw, 24px); margin-top: clamp(56px, 7vw, 96px); }
.person { display: grid; gap: 8px; align-content: start; min-width: 0; }
.person__mono {
  position: relative; aspect-ratio: 4 / 5; background: var(--paper); border-radius: 18px; overflow: hidden;
  display: grid; place-items: center; margin-bottom: 14px; isolation: isolate;
}
.person__mono::before {
  content: ""; position: absolute; width: 58%; aspect-ratio: 1; border: 1.5px solid var(--gold); transform: rotate(45deg);
  transition: transform .9s var(--ease), border-color .5s;
}
.person__mono::after {
  content: ""; position: absolute; inset: 0; z-index: -1; background: var(--gold); transform: translateY(101%); transition: transform .7s var(--ease);
}
.person__mono span {
  width: 38%; aspect-ratio: 1; display: grid; place-items: center; border: 4px solid var(--gold); background: var(--white);
  font-family: var(--f-display); font-weight: 700; font-size: clamp(1.4rem, 2.4vw, 2.2rem); letter-spacing: -.02em; color: var(--gold);
  transition: color .5s, border-color .5s, background-color .5s;
}
.person:hover .person__mono::after { transform: translateY(0); }
.person:hover .person__mono::before { transform: rotate(225deg); border-color: var(--white); }
.person:hover .person__mono span { border-color: var(--white); background: var(--gold); color: var(--white); }
.person__name { font-size: 1.25rem; letter-spacing: -.015em; }
.person__role { color: var(--ink-2); font-size: .95rem; line-height: 1.45; }
.person__mail { overflow-wrap: anywhere; color: var(--gold-ink); font-weight: 500; font-size: .95rem; text-decoration: none; border-bottom: 1px solid transparent; justify-self: start; }
.person__mail:hover { border-color: currentColor; }
.founders { position: relative; display: flex; gap: 22px; align-items: center; margin-top: clamp(48px, 6vw, 80px); padding-top: 28px; border-top: 1px solid var(--line); color: var(--ink-2); }
.founders__g { width: 42px; flex: none; color: var(--gold); }
.founders strong { color: var(--ink); font-weight: 600; }
@media (max-width: 960px) {
  .team__head { grid-template-columns: 1fr; }
  .team__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px) {
  .person__mail { font-size: .8rem; }
  .person__role { font-size: .88rem; }
}

/* =========================================================
   BEWERTUNG
   ========================================================= */
.bewertung { background: var(--coal); color: var(--white); padding-block: clamp(96px, 12vw, 180px); overflow: hidden; }
.bewertung__wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 6vw, 96px); align-items: center; }
.bewertung__copy { display: grid; gap: 26px; }
.bewertung__lead { color: rgba(255,255,255,.8); max-width: 32em; font-size: clamp(1rem, 1.2vw, 1.15rem); }
.mini-steps { display: grid; gap: 12px; }
.mini-steps li { display: flex; align-items: center; gap: 14px; font-family: var(--f-display); font-weight: 600; }
.mini-steps span { width: 34px; height: 34px; flex: none; display: grid; place-items: center; border: 1px solid rgba(207,168,97,.6); border-radius: 50%; color: var(--gold-light); font-size: .85rem; font-variant-numeric: tabular-nums; }
.bewertung__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.bewertung__media { position: relative; margin: 0; border-radius: 22px; overflow: hidden; aspect-ratio: 3 / 4; max-height: 78vh; justify-self: end; width: 100%; }
.bewertung__media img { width: 100%; height: 110%; object-fit: cover; object-position: 50% 80%; will-change: transform; }
.bewertung__glint { position: absolute; inset: 0; background: linear-gradient(115deg, transparent 35%, rgba(255,226,170,.22) 50%, transparent 65%); transform: translateX(-100%); mix-blend-mode: screen; }
@media (max-width: 860px) {
  .bewertung__wrap { grid-template-columns: 1fr; }
  .bewertung__media { aspect-ratio: 4 / 3; }
}

/* =========================================================
   KONTAKT
   ========================================================= */
.kontakt { position: relative; background: var(--coal); color: var(--white); overflow: hidden; padding-block: clamp(110px, 13vw, 190px) clamp(80px, 9vw, 130px); }
.kontakt__bg { position: absolute; inset: 0; }
.kontakt__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 70% 50%; }
.kontakt__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(26,27,29,.94) 0%, rgba(26,27,29,.78) 45%, rgba(26,27,29,.35) 100%), linear-gradient(0deg, rgba(26,27,29,.9), rgba(26,27,29,0) 40%); }
.kontakt__wrap { position: relative; display: grid; gap: clamp(40px, 6vw, 80px); }
.kontakt__head { display: grid; gap: 18px; }
.kontakt__title { font-size: clamp(3rem, 9vw, 9rem); line-height: .92; letter-spacing: -.045em; font-weight: 800; color: var(--white); }
.kontakt__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: start; }
.kontakt__cards { display: grid; gap: 14px; }
.k-card {
  display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 6px 16px;
  padding: 18px 0 20px; border-bottom: 1px solid var(--line-light);
}
.k-card__label { grid-column: 1 / -1; font-family: var(--f-display); font-size: .72rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-light); }
.k-card__value { font-family: var(--f-display); font-weight: 700; font-size: clamp(1.5rem, 2.8vw, 2.4rem); letter-spacing: -.025em; line-height: 1.15; text-decoration: none; user-select: all; }
.k-card__value--sm { font-size: clamp(1.15rem, 1.8vw, 1.5rem); font-weight: 600; user-select: text; }
.k-card__value:hover { color: var(--gold-light); }
.k-card__copy {
  border: 1px solid var(--line-light); background: transparent; color: rgba(255,255,255,.8); cursor: pointer;
  font-size: .8rem; padding: 8px 12px; border-radius: 8px; transition: background-color .3s, color .3s;
}
.k-card__copy:hover { background: var(--white); color: var(--coal); }
.k-links { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 18px; }

.k-form {
  display: grid; gap: 16px; padding: clamp(22px, 3vw, 36px); border-radius: 22px;
  background: rgba(255,255,255,.96); color: var(--ink);
}
.k-form__title { font-family: var(--f-display); font-weight: 700; font-size: 1.4rem; letter-spacing: -.02em; }
.field { display: grid; gap: 6px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label, .chips legend { font-family: var(--f-display); font-size: .78rem; font-weight: 600; letter-spacing: .04em; color: var(--ink-2); }
.opt { font-weight: 500; opacity: .7; }
.field input, .field textarea {
  width: 100%; border: 1px solid var(--graphite); border-radius: 10px; background: var(--white);
  padding: 12px 14px; font: inherit; font-size: 1rem; color: var(--ink); resize: vertical;
  transition: border-color .3s, box-shadow .3s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(170,120,35,.18); }
.field.is-invalid input, .field.is-invalid textarea { border-color: #B3261E; }
.chips { border: 0; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.chips legend { margin-bottom: 8px; padding: 0; }
.chips label { position: relative; cursor: pointer; }
.chips input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.chips span { display: inline-block; padding: 8px 14px; border: 1px solid var(--graphite); border-radius: 999px; font-size: .9rem; transition: background-color .3s, color .3s, border-color .3s; }
.chips input:checked + span { background: var(--coal); color: var(--white); border-color: var(--coal); }
.chips input:focus-visible + span { outline: 2px solid var(--gold); outline-offset: 2px; }
.k-form__status { font-size: .95rem; color: var(--ink-2); }
.k-form__status:empty { display: none; }
.k-form__status .prep { margin-top: 10px; padding: 12px 14px; background: var(--paper); border-radius: 10px; white-space: pre-wrap; font-size: .88rem; color: var(--ink); max-height: 180px; overflow: auto; }
.k-form__status .row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 10px; }
.k-form__status .row a, .k-form__status .row button { font-size: .88rem; }
@media (max-width: 900px) {
  .kontakt__grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .field-row { grid-template-columns: 1fr; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--coal); color: rgba(255,255,255,.78); padding-top: clamp(64px, 8vw, 110px); padding-bottom: env(safe-area-inset-bottom, 0px); overflow: hidden; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.footer__col { display: grid; gap: 10px; align-content: start; }
.footer__col a { text-decoration: none; justify-self: start; }
.footer__col a:hover { color: var(--gold-light); }
.footer__h { font-family: var(--f-display); font-size: .72rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 6px; }
.footer__claim { font-family: var(--f-display); font-weight: 700; font-size: 1.5rem; letter-spacing: -.02em; color: var(--white); line-height: 1.15; max-width: 10em; }
.footer__addr { font-size: .95rem; }
.footer__mark { color: var(--gold); padding: clamp(48px, 7vw, 100px) var(--gutter) 0; overflow: hidden; }
.footer__mark svg { width: 100%; height: auto; max-width: none; }
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding-block: 22px 28px; border-top: 1px solid var(--line-light); margin-top: clamp(24px, 3vw, 40px); font-size: .88rem; }
.footer__bottom a { text-decoration: none; margin-left: 18px; }
.footer__bottom a:first-child { margin-left: 0; }
.footer__bottom a:hover { color: var(--gold-light); }
@media (max-width: 860px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
}

.bg-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1.2s var(--ease); pointer-events: none; }
.bg-video.is-playing { opacity: 1; }
.kontakt__bg .bg-video { object-position: 70% 50%; }

/* ---------- Seite: Aktive Objekte ---------- */
body[data-page="objekte"] { background: var(--coal); color: var(--white); }
.objekte, body[data-page="objekte"] .footer { position: relative; z-index: 1; }

/* Hintergrund: Pattern als Maske, darin wandert Licht (Maske wird per JS aus dem Sprite gesetzt) */
.obj-bg { position: fixed; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.obj-bg__pattern {
  position: absolute; inset: -8%;
  background: rgba(170, 120, 35, .15);
  -webkit-mask: url(../brand/guidi-pattern.svg) center / cover no-repeat;
          mask: url(../brand/guidi-pattern.svg) center / cover no-repeat;
  will-change: transform;
}
.obj-bg__glow {
  position: absolute; left: 30%; top: 30%; width: 46vmax; aspect-ratio: 1; margin: -23vmax 0 0 -23vmax; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(238, 204, 136, .95), rgba(207, 168, 97, .5) 45%, rgba(170, 120, 35, 0));
  will-change: transform;
}
.obj-bg__glow--b { left: 72%; top: 70%; width: 34vmax; margin: -17vmax 0 0 -17vmax; opacity: .75; }
.obj-bg__glow--c { width: 24vmax; margin: -12vmax 0 0 -12vmax; opacity: 0; transition: opacity .8s var(--ease); }
.obj-bg__glow--c.is-on { opacity: 1; }
.obj-bg__shade {
  position: absolute; inset: 0;
  background: radial-gradient(70% 60% at 22% 30%, rgba(26, 27, 29, .78), rgba(26, 27, 29, 0) 75%),
              linear-gradient(180deg, rgba(26, 27, 29, 0) 55%, rgba(26, 27, 29, .7));
}

.obj-hero { padding: calc(var(--header-h) + clamp(40px, 7vw, 110px)) 0 clamp(36px, 4.5vw, 64px); }
.obj-back {
  display: inline-flex; align-items: center; gap: .6em; margin-bottom: clamp(28px, 4vw, 52px);
  font-family: var(--f-display); font-weight: 600; font-size: .92rem; color: rgba(255, 255, 255, .78); text-decoration: none;
}
.obj-back span { color: var(--gold-light); transition: transform .4s var(--ease); }
.obj-back:hover { color: var(--white); }
.obj-back:hover span { transform: translateX(-5px); }
.obj-hero__title { margin-top: 22px; max-width: 6.4em; font-size: clamp(3rem, 8.6vw, 8.8rem); line-height: .94; letter-spacing: -.045em; color: var(--white); }
.obj-hero__lead { margin-top: clamp(20px, 2.4vw, 32px); max-width: 32em; font-size: clamp(1.05rem, 1.35vw, 1.3rem); color: rgba(255, 255, 255, .8); }

.obj-list { padding-bottom: clamp(24px, 3vw, 40px); }
.obj-bar { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px 28px; margin-bottom: 18px; }
.obj-bar .link-arrow { margin-top: 0; }
.obj-tabs {
  display: inline-flex; gap: 4px; padding: 5px; border-radius: 14px;
  background: rgba(255, 255, 255, .07); border: 1px solid var(--line-light);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
}
.obj-tabs button {
  min-height: 44px; padding: 0 24px; border: 0; border-radius: 10px; background: transparent; cursor: pointer;
  font-family: var(--f-display); font-weight: 700; font-size: .95rem; color: rgba(255, 255, 255, .74);
  transition: background-color .45s var(--ease), color .45s var(--ease);
}
.obj-tabs button:hover { color: var(--white); }
.obj-tabs button[aria-selected="true"] { background: var(--white); color: var(--coal); }
.obj-frame {
  position: relative; height: clamp(560px, calc(100svh - var(--header-h) - 40px), 1180px);
  border-radius: 18px; overflow: hidden; background: var(--paper);
  box-shadow: 0 50px 120px -50px rgba(0, 0, 0, .7), 0 0 0 1px rgba(255, 255, 255, .08);
}
.obj-frame iframe { position: relative; z-index: 1; display: block; width: 100%; height: 100%; border: 0; transition: opacity .5s var(--ease); }
.obj-frame.is-switching iframe { opacity: .3; }
.obj-frame__loading {
  position: absolute; inset: 0; display: grid; place-content: center; justify-items: center; gap: 16px;
  font-family: var(--f-display); font-weight: 600; font-size: .9rem; color: var(--gold-ink);
}
.obj-frame__loading svg { width: 60px; height: 60px; color: var(--gold); animation: obj-pulse 1.8s var(--ease-io) infinite; }
.obj-frame.is-loaded:not(.is-switching) .obj-frame__loading svg { animation: none; }
@keyframes obj-pulse { 0%, 100% { opacity: .35; transform: scale(.92); } 50% { opacity: 1; transform: scale(1); } }
.obj-note { margin-top: 14px; font-size: .85rem; color: rgba(255, 255, 255, .58); }

.obj-cta { padding-block: clamp(96px, 12vw, 180px); }
.obj-cta__wrap { display: grid; grid-template-columns: 1.1fr 1fr; gap: 32px clamp(32px, 6vw, 96px); align-items: end; }
.obj-cta .h2 { max-width: 9em; }
.obj-cta__text { max-width: 30em; font-size: clamp(1.05rem, 1.3vw, 1.2rem); color: rgba(255, 255, 255, .8); }
.obj-cta__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.obj-cta__home { margin-top: 28px; }
@media (max-width: 860px) {
  .obj-cta__wrap { grid-template-columns: 1fr; align-items: start; }
}
@media (max-width: 520px) {
  .obj-tabs { width: 100%; }
  .obj-tabs button { flex: 1; }
  .obj-frame { border-radius: 14px; }
}

/* ---------- Grain ---------- */
.grain { position: fixed; inset: -50%; z-index: 120; pointer-events: none; opacity: .045; background-size: 180px 180px; animation: grain 1.2s steps(6) infinite; }
@keyframes grain {
  0% { transform: translate(0, 0); } 20% { transform: translate(-3%, 2%); } 40% { transform: translate(2%, -3%); }
  60% { transform: translate(-2%, -1%); } 80% { transform: translate(3%, 3%); } 100% { transform: translate(0, 0); }
}

/* ---------- Reduced motion (html.no-motion wird per JS gesetzt) ---------- */
.no-motion .grain { animation: none; }
.no-motion .loader { display: none; }
.no-motion body.is-loading { overflow: auto; }
.no-motion .reveal-words .rw { opacity: 1; }
.no-motion .hero__copy--c, .no-motion .hero__claim, .no-motion .hero__hud { display: none; }
.no-motion .stweg__pin, .no-motion .verkauf__pin { height: auto; min-height: 100vh; }
.no-motion .stweg__steps { min-height: 0; display: grid; gap: 28px; }
.no-motion .stweg__steps li { position: relative; opacity: 1; transform: none; }
.no-motion .steps li { opacity: 1; }
.no-motion .steps p { max-height: none; margin-top: 4px; }
.no-motion .steps li:not(.is-active) p { display: block; }
.no-motion .leistungen__pin { height: auto; overflow: visible; padding-block: 96px 64px; }
.no-motion .leistungen__track { flex-direction: column; width: 100%; align-items: stretch; }
.no-motion .l-intro, .no-motion .l-panel { width: 100%; }
.no-motion .leistungen__progress { display: none; }
.no-motion .live-dot::after, .no-motion .obj-frame__loading svg { animation: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
