/* =====================================================================
   WLBC · Websites & 3D-Visualisierung für Bauträger, Investoren, Vermieter
   Design-System: Hellgrau Studio · Kupfer-Akzent · Instrument Serif + Geist
   ===================================================================== */

:root {
  --bg: #f6f7f8;
  --bg-2: #eceef0;
  --bg-3: #e0e3e6;
  --paper: #ffffff;
  --paper-2: #f6f7f8;
  --paper-3: #e3e6ea;
  --ink: #15171b;
  --ink-soft: #42464d;
  --ink-muted: #767b83;
  --on-dark: #15171b;
  --on-dark-soft: #4a4f57;
  --on-dark-muted: #858b94;
  --sand: #c2703a;
  --gold: #ad6232;
  --gold-deep: #8d4f27;
  --line-dark: rgba(21,23,27,0.12);
  --line-light: rgba(21,23,27,0.12);
  --accent-grad: linear-gradient(120deg, #efdcb8 0%, #d8bf95 45%, #b28654 100%);

  --serif: 'Instrument Serif', 'Times New Roman', serif;
  --sans: 'Geist', 'Helvetica Neue', Arial, sans-serif;
  --mono: 'Geist Mono', 'SFMono-Regular', Menlo, monospace;

  --max: 1480px;
  --pad: clamp(1.25rem, 4.5vw, 5rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-io: cubic-bezier(0.65, 0, 0.35, 1);
  --t: 420ms;
  --radius: 4px;
}

*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--on-dark);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  min-height: 100vh;
}
body.no-cursor, body.no-cursor a, body.no-cursor button { cursor: none; }

img, video, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }
::selection { background: var(--sand); color: var(--ink); }

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

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

/* ---------- Grain & Cursor ---------- */
.grain {
  pointer-events: none;
  position: fixed; inset: -50%; z-index: 9000;
  width: 200%; height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.6 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.045;
  mix-blend-mode: overlay;
  animation: grain 0.9s steps(6) infinite;
}
@keyframes grain {
  0% { transform: translate(0, 0); } 20% { transform: translate(-3%, 2%); }
  40% { transform: translate(2%, -4%); } 60% { transform: translate(-4%, -1%); }
  80% { transform: translate(3%, 3%); } 100% { transform: translate(0, 0); }
}

.cursor {
  position: fixed; top: 0; left: 0; z-index: 9500;
  pointer-events: none;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--sand);
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: width 0.35s var(--ease), height 0.35s var(--ease), background 0.3s;
  will-change: transform;
}
.cursor__label {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink); opacity: 0; transition: opacity 0.2s;
  white-space: nowrap;
}
.cursor.is-link { width: 56px; height: 56px; background: var(--sand); mix-blend-mode: normal; opacity: 0.9; }
.cursor.is-drag { width: 92px; height: 92px; background: var(--sand); mix-blend-mode: normal; }
.cursor.is-drag .cursor__label, .cursor.is-view .cursor__label { opacity: 1; }
.cursor.is-view { width: 96px; height: 96px; background: var(--sand); mix-blend-mode: normal; }
.cursor.is-hidden { opacity: 0; }
@media (hover: none), (pointer: coarse) { .cursor { display: none; } }

/* ---------- Preloader ---------- */
.loader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--bg);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: var(--pad);
  color: var(--on-dark);
}
.loader__brand {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-family: var(--serif); font-size: clamp(3.5rem, 12vw, 9rem); letter-spacing: -0.02em; line-height: 1;
}
.loader__brand span { display: inline-block; opacity: 0; transform: translateY(30%); }
.loader__meta {
  display: flex; justify-content: space-between; align-items: flex-end;
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--on-dark-muted);
}
.loader__count { font-family: var(--serif); font-size: clamp(2rem, 6vw, 4rem); color: var(--on-dark); line-height: 1; }
.loader__bar { position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--line-dark); }
.loader__bar i { display: block; height: 100%; width: 0; background: var(--accent-grad); }

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--on-dark-muted);
  display: inline-flex; align-items: center; gap: 0.75rem;
}
.eyebrow::before { content: ''; width: 24px; height: 1px; background: currentColor; opacity: 0.6; }
.section--light .eyebrow { color: var(--ink-muted); }

.serif { font-family: var(--serif); font-weight: 400; }
.serif em, em.accent { font-style: italic; color: var(--sand); }
.section--light em.accent, .section--light .serif em { color: var(--gold-deep); }

.h-display {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(3rem, 8.4vw, 8.2rem);
  line-height: 0.94; letter-spacing: -0.025em;
}
.h-1 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2.5rem, 5.6vw, 5.6rem);
  line-height: 1; letter-spacing: -0.02em;
}
.h-2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2rem, 3.8vw, 3.6rem);
  line-height: 1.05; letter-spacing: -0.015em;
}
.lead { font-size: clamp(1.05rem, 1.35vw, 1.3rem); line-height: 1.55; color: var(--on-dark-soft); max-width: 58ch; font-weight: 300; }
.section--light .lead { color: var(--ink-soft); }
.small { font-size: 0.9rem; color: var(--on-dark-soft); }
.section--light .small { color: var(--ink-soft); }
.gradient-text {
  background: var(--accent-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* Split-Text Reveal (Zeilen-Masken) */
.reveal-lines .line { overflow: hidden; display: block; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.reveal-lines .line > div, .reveal-lines .line > span { display: block; }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex; align-items: center; gap: 0.75rem;
  padding: 1rem 1.6rem;
  font-size: 0.92rem; font-weight: 500; letter-spacing: 0.01em;
  border-radius: 999px;
  overflow: hidden; isolation: isolate;
  transition: color var(--t) var(--ease), transform var(--t) var(--ease);
}
.btn__bg {
  position: absolute; inset: 0; z-index: -1;
  border-radius: inherit;
  transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.45s var(--ease);
}
.btn:hover .btn__bg { transform: scaleY(1); }
.btn--primary { background: var(--sand); color: var(--ink); }
.btn--primary .btn__bg { background: var(--paper); }
.btn--ghost { color: var(--on-dark); box-shadow: inset 0 0 0 1px var(--line-dark); }
.btn--ghost .btn__bg { background: var(--on-dark); }
.btn--ghost:hover { color: var(--ink); }
.section--light .btn--ghost { color: var(--ink); box-shadow: inset 0 0 0 1px var(--line-light); }
.section--light .btn--ghost .btn__bg { background: var(--ink); }
.section--light .btn--ghost:hover { color: var(--paper); }
.btn__arrow { width: 16px; height: 16px; transition: transform 0.35s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.92rem; font-weight: 500;
  padding-bottom: 0.2rem;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0 1px; background-repeat: no-repeat; background-position: 0 100%;
  transition: background-size 0.4s var(--ease);
}
.link-arrow:hover { background-size: 100% 1px; }
.link-arrow svg { width: 14px; height: 14px; transition: transform 0.35s var(--ease); }
.link-arrow:hover svg { transform: translate(3px, -3px); }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 800;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  padding: 1.25rem var(--pad);
  transition: transform 0.5s var(--ease), background 0.4s, backdrop-filter 0.4s, padding 0.4s;
  color: var(--on-dark);
}
.nav.is-scrolled {
  padding: 0.85rem var(--pad);
  background: color-mix(in srgb, var(--bg) 62%, transparent);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
}
.nav.is-hidden { transform: translateY(-110%); }
.nav.on-light { color: var(--ink); }
.nav.on-light.is-scrolled { background: color-mix(in srgb, var(--paper) 68%, transparent); }
.nav__brand { display: flex; align-items: baseline; gap: 0.7rem; }
.nav__logo { font-family: var(--serif); font-size: 1.85rem; line-height: 1; letter-spacing: -0.01em; }
.nav__tag { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.55; }
.nav__links { display: flex; gap: 2rem; }
.nav__links a { position: relative; font-size: 0.88rem; font-weight: 500; opacity: 0.8; transition: opacity 0.3s; padding: 0.25rem 0; }
.nav__links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform 0.4s var(--ease);
}
.nav__links a:hover { opacity: 1; }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__right { display: flex; align-items: center; gap: 1rem; }
.nav__cta { padding: 0.7rem 1.2rem; font-size: 0.85rem; }
.nav__toggle {
  display: none; width: 44px; height: 44px; position: relative; border-radius: 50%;
  box-shadow: inset 0 0 0 1px currentColor;
}
.nav__toggle span {
  position: absolute; left: 13px; right: 13px; height: 1.5px; background: currentColor;
  transition: transform 0.4s var(--ease), top 0.4s var(--ease), opacity 0.3s;
}
.nav__toggle span:nth-child(1) { top: 17px; }
.nav__toggle span:nth-child(2) { top: 22px; }
.nav__toggle span:nth-child(3) { top: 27px; }
.nav__toggle.is-open span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

.menu {
  position: fixed; inset: 0; z-index: 790;
  background: var(--bg);
  color: var(--on-dark);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: calc(var(--pad) + 4rem) var(--pad) var(--pad);
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.7s var(--ease-io);
}
.menu.is-open { clip-path: inset(0 0 0 0); }
.menu__links a {
  display: flex; align-items: baseline; gap: 1rem;
  font-family: var(--serif); font-size: clamp(2.4rem, 9vw, 4.5rem); line-height: 1.1;
  padding: 0.2rem 0;
  border-bottom: 1px solid var(--line-dark);
  transform: translateY(40px); opacity: 0;
  transition: transform 0.6s var(--ease), opacity 0.6s;
}
.menu.is-open .menu__links a { transform: none; opacity: 1; }
.menu.is-open .menu__links a:nth-child(2) { transition-delay: 0.06s; }
.menu.is-open .menu__links a:nth-child(3) { transition-delay: 0.12s; }
.menu.is-open .menu__links a:nth-child(4) { transition-delay: 0.18s; }
.menu.is-open .menu__links a:nth-child(5) { transition-delay: 0.24s; }
.menu.is-open .menu__links a:nth-child(6) { transition-delay: 0.30s; }
.menu__links i { font-family: var(--mono); font-style: normal; font-size: 0.7rem; letter-spacing: 0.15em; color: var(--sand); }
.menu__meta { display: flex; flex-wrap: wrap; gap: 1.5rem 3rem; font-size: 0.95rem; color: var(--on-dark-soft); }
.menu__meta a { color: var(--on-dark); }

/* ---------- Layout ---------- */
.section { position: relative; padding: clamp(5rem, 10vw, 9rem) var(--pad); }
.section--light { background: var(--paper); color: var(--ink); }
.section--paper2 { background: var(--paper-2); color: var(--ink); }
.section--dark { background: var(--bg); color: var(--on-dark); }
.section--dark2 { background: var(--bg-2); color: var(--on-dark); }
.container { max-width: var(--max); margin: 0 auto; }
.section__head {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
@media (min-width: 900px) {
  .section__head { grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); align-items: end; gap: 3rem; }
}
.section__head .lead { margin-top: 1.5rem; }

/* ---------- Stage (3D-Canvas) ---------- */
.stage {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s;
}
.stage.is-visible { opacity: 1; }
.stage.is-interactive { pointer-events: auto; }
.stage canvas { width: 100% !important; height: 100% !important; }
.stage__fallback {
  position: absolute; inset: 0; display: none;
  background: radial-gradient(60% 60% at 70% 50%, #1e1c18 0%, var(--bg) 70%);
}
.stage__fallback img { width: 100%; height: 100%; object-fit: cover; opacity: 0.55; }
.stage.is-fallback .stage__fallback { display: block; }
.stage.is-fallback canvas { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative; z-index: 1;
  min-height: 100svh;
  display: grid; grid-template-rows: 1fr auto;
  padding: calc(var(--pad) + 5rem) var(--pad) var(--pad);
  pointer-events: none;
}
.hero > * { pointer-events: auto; }
.hero__content { max-width: 1000px; align-self: center; }
.hero .eyebrow { margin-bottom: 2rem; }
.hero__title { margin-bottom: 2rem; }
.hero__title .word { display: inline-block; }
.hero__sub { margin-bottom: 2.5rem; max-width: 52ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem 1rem; }
.hero__foot {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; flex-wrap: wrap;
  padding-top: 2rem; border-top: 1px solid var(--line-dark);
}
.hero__meta { display: flex; gap: clamp(1.5rem, 4vw, 4rem); flex-wrap: wrap; }
.hero__meta-item { display: flex; flex-direction: column; gap: 0.25rem; }
.hero__meta-item b { font-family: var(--serif); font-weight: 400; font-size: 1.6rem; line-height: 1; }
.hero__meta-item span { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-dark-muted); }
.hero__hint {
  display: flex; align-items: center; gap: 0.8rem;
  font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-dark-muted);
}
.hero__hint-drag { width: 38px; height: 38px; border-radius: 50%; box-shadow: inset 0 0 0 1px var(--line-dark); display: grid; place-items: center; }
.hero__hint-drag svg { width: 18px; height: 18px; animation: drag-hint 2.4s var(--ease) infinite; }

@keyframes drag-hint { 0%, 100% { transform: translateX(-3px); } 50% { transform: translateX(3px); } }
.hero__scroll {
  position: absolute; right: var(--pad); top: 50%; transform: translateY(-50%) rotate(90deg); transform-origin: right center;
  font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--on-dark-muted);
  display: none; align-items: center; gap: 1rem;
}
.hero__scroll::after { content: ''; width: 60px; height: 1px; background: var(--on-dark-muted); animation: scroll-line 2.2s var(--ease) infinite; transform-origin: left; }
@keyframes scroll-line { 0% { transform: scaleX(0); } 50% { transform: scaleX(1); } 100% { transform: scaleX(0); transform-origin: right; } }
@media (min-width: 1100px) { .hero__scroll { display: flex; } }
@media (min-width: 1100px) { .hero__content { max-width: 58%; } }
.hero__vignette {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(12,12,14,0.92) 0%, rgba(12,12,14,0.6) 38%, rgba(12,12,14,0) 70%),
    linear-gradient(0deg, rgba(12,12,14,0.9) 0%, rgba(12,12,14,0) 30%);
}

/* ---------- Marquee ---------- */
.marquee {
  position: relative; z-index: 1;
  overflow: hidden; white-space: nowrap;
  padding: 1.25rem 0;
  border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark);
  background: var(--bg);
}
.marquee__track { display: inline-flex; gap: 0; will-change: transform; }
.marquee__item {
  display: inline-flex; align-items: center; gap: 2.2rem;
  padding-right: 2.2rem;
  font-family: var(--serif); font-size: clamp(1.6rem, 3.2vw, 2.8rem); line-height: 1; letter-spacing: -0.01em;
  color: var(--on-dark-soft);
}
.marquee__item i { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--sand); }
.marquee__item em { font-style: italic; color: var(--sand); }

/* ---------- Manifest ---------- */
.manifest { z-index: 1; }
.manifest__text {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.9rem, 4.2vw, 4rem); line-height: 1.12; letter-spacing: -0.015em;
  max-width: 24ch;
}
.manifest__text .w { display: inline-block; opacity: 0.16; transition: opacity 0.2s; }
.manifest__text .w.is-on { opacity: 1; }
.manifest__grid { display: grid; gap: 3rem; }
@media (min-width: 1000px) { .manifest__grid { grid-template-columns: 1.5fr 1fr; gap: 6rem; align-items: end; } }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem 1.5rem; }
@media (max-width: 640px) { .stats { grid-template-columns: 1fr 1fr; } }
.stat { display: flex; flex-direction: column; gap: 0.5rem; padding-top: 1.25rem; border-top: 1px solid var(--line-light); }
.stat__num { font-family: var(--serif); font-size: clamp(2.6rem, 4.6vw, 4.4rem); line-height: 1; letter-spacing: -0.02em; display: flex; align-items: baseline; gap: 0.15em; }
.stat__num small { font-size: 0.45em; color: var(--gold-deep); }
.stat__label { font-size: 0.85rem; color: var(--ink-soft); max-width: 22ch; }

/* ---------- Leistungen ---------- */
.services { z-index: 1; }
.services__list { border-top: 1px solid var(--line-dark); }
.service {
  position: relative;
  display: grid; grid-template-columns: 3.5rem 1fr; gap: 1rem 1.5rem;
  padding: clamp(1.6rem, 3vw, 2.6rem) 0;
  border-bottom: 1px solid var(--line-dark);
  transition: padding-left 0.5s var(--ease);
}
@media (min-width: 900px) {
  .service { grid-template-columns: 4rem minmax(0, 1.1fr) minmax(0, 1.2fr) auto; align-items: start; }
}
.service:hover { padding-left: 0.8rem; }
.service::before {
  content: ''; position: absolute; left: 0; right: 0; bottom: -1px; height: 1px;
  background: var(--sand); transform: scaleX(0); transform-origin: left; transition: transform 0.6s var(--ease);
}
.service:hover::before { transform: scaleX(1); }
.service__num { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.14em; color: var(--sand); padding-top: 0.5rem; }
.service__title { font-family: var(--serif); font-size: clamp(1.7rem, 2.8vw, 2.6rem); line-height: 1.05; letter-spacing: -0.015em; }
.service__title em { color: var(--sand); font-style: italic; }
.service__text { color: var(--on-dark-soft); max-width: 48ch; font-weight: 300; }
.service__text p + p { margin-top: 0.75rem; }
.service__tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.service__tags span { font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.35rem 0.6rem; border-radius: 999px; box-shadow: inset 0 0 0 1px var(--line-dark); color: var(--on-dark-soft); }
.service__go { grid-column: 2; }
@media (min-width: 900px) { .service__go { grid-column: auto; padding-top: 0.6rem; } }
.service__go span {
  display: inline-grid; place-items: center; width: 48px; height: 48px; border-radius: 50%;
  box-shadow: inset 0 0 0 1px var(--line-dark); transition: background 0.4s, color 0.4s, transform 0.4s var(--ease);
}
.service__go svg { width: 18px; height: 18px; }
.service:hover .service__go span { background: var(--sand); color: var(--ink); transform: rotate(-45deg); }
.service__preview {
  position: fixed; z-index: 700; pointer-events: none;
  width: 320px; aspect-ratio: 4/3; border-radius: 6px; overflow: hidden;
  opacity: 0; transform: translate(-50%, -50%) scale(0.85) rotate(-4deg);
  transition: opacity 0.35s, transform 0.5s var(--ease);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  display: none;
}
@media (min-width: 1100px) and (hover: hover) { .service__preview { display: block; } }
.service__preview.is-on { opacity: 1; transform: translate(-50%, -50%) scale(1) rotate(0deg); }
.service__preview img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.4s; }
.service__preview img.is-on { opacity: 1; }

/* ---------- IFC / 3D Pin ---------- */
.ifc { position: relative; z-index: 1; padding: 0; background: transparent; }
.ifc__pin { position: relative; height: 100svh; display: grid; align-items: end; padding: 0 var(--pad) clamp(2rem, 5vw, 4rem); pointer-events: none; }
.ifc__pin > * { pointer-events: auto; }
.ifc__pin .ifc__vignette { pointer-events: none; }
.ifc__spacer { height: 220vh; }
.ifc__content { max-width: 560px; }
.ifc__content .eyebrow { margin-bottom: 1.2rem; }
.ifc__title { margin-bottom: 1.2rem; }
.ifc__step { position: absolute; opacity: 0; transform: translateY(16px); transition: opacity 0.5s, transform 0.5s var(--ease); }
.ifc__steps { position: relative; min-height: 8.5rem; }
.ifc__step.is-on { opacity: 1; transform: none; }
.ifc__step p { color: var(--on-dark-soft); max-width: 46ch; font-weight: 300; }
.ifc__step h3 { font-family: var(--serif); font-size: clamp(1.5rem, 2.4vw, 2.2rem); margin-bottom: 0.5rem; letter-spacing: -0.01em; }
.ifc__progress { display: flex; gap: 0.5rem; margin-top: 1.6rem; }
.ifc__progress i { width: 44px; height: 2px; background: var(--line-dark); position: relative; overflow: hidden; }
.ifc__progress i::after { content: ''; position: absolute; inset: 0; background: var(--sand); transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease); }
.ifc__progress i.is-on::after { transform: scaleX(1); }
.ifc__label {
  position: absolute; right: var(--pad); bottom: clamp(2rem, 5vw, 4rem);
  font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--on-dark-muted);
  text-align: right; display: none;
}
@media (min-width: 900px) { .ifc__label { display: block; } }
.ifc__label b { display: block; color: var(--on-dark); font-weight: 500; font-size: 0.72rem; margin-top: 0.3rem; }
.ifc__vignette { position: absolute; inset: 0; z-index: -1; pointer-events: none; background: linear-gradient(0deg, rgba(12,12,14,0.95) 0%, rgba(12,12,14,0.25) 45%, rgba(12,12,14,0) 70%); }

/* ---------- Wohnungs-Hotspots im 3D-Modell ---------- */
.hotspots { position: fixed; inset: 0; pointer-events: none; z-index: 3; }
.hotspots.is-hidden { display: none; }
.hotspot {
  position: absolute; left: 0; top: 0; pointer-events: auto;
  opacity: 0; visibility: hidden; transition: opacity 0.3s;
  transform: translate(-1000px, -1000px);
}
.hotspot.is-visible { opacity: 1; visibility: visible; }
.hotspot__dot {
  position: absolute; left: 0; top: 0; transform: translate(-50%, -50%);
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--paper); box-shadow: 0 0 0 1px var(--line-dark), 0 6px 18px rgba(21,23,27,0.18);
  display: grid; place-items: center; transition: background 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
}
.hotspot__dot i { font-family: var(--mono); font-style: normal; font-size: 0.6rem; letter-spacing: 0.04em; color: var(--ink); transition: color 0.3s; }
.hotspot__dot::after { content: ''; position: absolute; inset: -6px; border-radius: 50%; border: 1px solid var(--sand); opacity: 0; animation: hotspot-pulse 2.4s ease-out infinite; }
@keyframes hotspot-pulse { 0% { transform: scale(0.7); opacity: 0.8; } 100% { transform: scale(1.5); opacity: 0; } }
.hotspot:hover .hotspot__dot, .hotspot.is-active .hotspot__dot { background: var(--sand); transform: translate(-50%, -50%) scale(1.12); box-shadow: 0 8px 22px rgba(194,112,58,0.35); }
.hotspot:hover .hotspot__dot i, .hotspot.is-active .hotspot__dot i { color: #fff; }
.hotspot.is-active .hotspot__dot::after { animation: none; opacity: 0; }
.hotspot__card {
  position: absolute; left: 24px; top: 0; transform: translate(0, -50%) scale(0.9);
  transform-origin: left center;
  display: flex; flex-direction: column; gap: 0.15rem;
  min-width: 220px; padding: 0.8rem 1rem;
  background: var(--paper); color: var(--ink);
  border-radius: 6px; box-shadow: 0 20px 50px -14px rgba(21,23,27,0.35), 0 0 0 1px var(--line-dark);
  font-size: 0.82rem; line-height: 1.45; white-space: nowrap;
  opacity: 0; visibility: hidden; transition: opacity 0.3s, transform 0.4s var(--ease), visibility 0.3s;
}
.hotspot__card b { font-family: var(--serif); font-weight: 400; font-size: 1.25rem; line-height: 1.1; margin-bottom: 0.2rem; }
.hotspot__card span { color: var(--ink-soft); }
.hotspot__card em { font-style: normal; color: var(--sand); font-weight: 500; }
.hotspot.is-active .hotspot__card { opacity: 1; visibility: visible; transform: translate(0, -50%) scale(1); }
.hotspot.is-flip .hotspot__card { left: auto; right: 24px; transform-origin: right center; }
@media (hover: hover) { .hotspot:hover .hotspot__card { opacity: 1; visibility: visible; transform: translate(0, -50%) scale(1); } }
.stage.is-over-unit { cursor: pointer; }
.stage.is-over-unit ~ .cursor { transform: translate(-50%, -50%) scale(1.6); }
@media (max-width: 900px) { .hotspot__card { min-width: 190px; font-size: 0.76rem; } }

/* ---------- Scroll-Reveal (bildschirmfüllend) ---------- */
.reveal { position: relative; z-index: 1; height: 260vh; background: var(--ink); }
.reveal__pin { position: relative; height: 100svh; overflow: hidden; }
.reveal__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.reveal__after { clip-path: inset(0 100% 0 0); will-change: clip-path; }
.reveal__line {
  position: absolute; top: 0; bottom: 0; left: 0; width: 2px; background: var(--paper);
  transform: translateX(-1px); will-change: left;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.15), 0 0 30px rgba(0,0,0,0.35);
}
.reveal__line span {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 0.55rem 0.9rem; border-radius: 999px; background: var(--sand); color: #fff; white-space: nowrap;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.reveal__title {
  position: absolute; left: var(--pad); right: var(--pad); top: 50%; transform: translateY(-50%);
  color: var(--paper); max-width: 780px; will-change: opacity, transform;
  text-shadow: 0 2px 30px rgba(0,0,0,0.45);
}
.reveal__title .eyebrow { color: rgba(255,255,255,0.7); margin-bottom: 1.4rem; }
.reveal__title .h-display em { color: var(--sand); }
.reveal__title .lead { color: rgba(255,255,255,0.8); margin-top: 1.6rem; }
.reveal__caption {
  position: absolute; bottom: clamp(1.5rem, 4vw, 3rem);
  display: flex; flex-direction: column; gap: 0.3rem; color: var(--paper);
  padding: 0.9rem 1.1rem; border-radius: 6px; background: rgba(21,23,27,0.55); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  opacity: 0; will-change: opacity, transform;
}
.reveal__caption span { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.7); }
.reveal__caption b { font-family: var(--serif); font-weight: 400; font-size: 1.25rem; line-height: 1.15; }
.reveal__caption--before { right: var(--pad); text-align: right; }
.reveal__caption--after { left: var(--pad); }
.reveal__caption--after span { color: var(--sand); }
@media (max-width: 900px) {
  .reveal { height: 200vh; }
  .reveal__title .h-display { font-size: clamp(2.6rem, 11vw, 4rem); }
  .reveal__caption { bottom: 1rem; max-width: 46%; padding: 0.7rem 0.8rem; }
  .reveal__caption b { font-size: 1rem; }
}

/* ---------- Vorher / Nachher ---------- */
.compare-grid { display: grid; gap: clamp(3rem, 6vw, 6rem); }
.compare-row { display: grid; gap: 1.5rem; align-items: center; }
@media (min-width: 1000px) {
  .compare-row { grid-template-columns: minmax(0, 1fr) minmax(0, 1.7fr); gap: 4rem; }
  .compare-row--flip { grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr); }
  .compare-row--flip .compare-row__text { order: 2; }
}
.compare-row__text h3 { font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.8rem); line-height: 1.05; letter-spacing: -0.015em; margin: 0.8rem 0 1rem; }
.compare-row__text p { color: var(--ink-soft); max-width: 42ch; }
.compare {
  position: relative; overflow: hidden; border-radius: 6px;
  aspect-ratio: 4/3; user-select: none; -webkit-user-select: none; touch-action: pan-y;
  background: var(--paper-3);
  box-shadow: 0 40px 100px -30px rgba(18,18,20,0.35);
}
.compare--wide { aspect-ratio: 16/10; }
.compare img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.compare__after { clip-path: inset(0 0 0 50%); }
.compare__handle {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: var(--paper); transform: translateX(-50%);
  pointer-events: none;
}
.compare__handle::after {
  content: '';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 58px; height: 58px; border-radius: 50%; background: var(--paper);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23121214' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 7l-5 5 5 5M16 7l5 5-5 5'/%3E%3C/svg%3E");
  background-size: 22px; background-position: center; background-repeat: no-repeat;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
.compare__tag {
  position: absolute; bottom: 1rem; z-index: 2;
  font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.4rem 0.7rem; border-radius: 999px; background: rgba(12,12,14,0.6); color: var(--on-dark); backdrop-filter: blur(8px);
}
.compare__tag--before { left: 1rem; }
.compare__tag--after { right: 1rem; background: var(--sand); color: var(--ink); }
.compare__range { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; margin: 0; -webkit-appearance: none; appearance: none; }

/* ---------- Referenz / Horizontal Gallery ---------- */
.work { z-index: 1; padding-bottom: 0; }
.work__head { padding: 0 var(--pad); }
.work__pin { position: relative; height: 100svh; overflow: hidden; display: flex; align-items: center; }
.work__track { display: flex; gap: clamp(1rem, 2vw, 2rem); padding: 0 var(--pad); will-change: transform; }
.work__card { position: relative; flex: 0 0 auto; width: clamp(280px, 62vw, 820px); }
.work__card--tall { width: clamp(240px, 34vw, 460px); }
.work__card figure { position: relative; overflow: hidden; border-radius: 6px; aspect-ratio: 3/2; background: var(--bg-3); }
.work__card--tall figure { aspect-ratio: 3/4; }
.work__card img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.12); will-change: transform; }
.work__card figcaption { display: flex; justify-content: space-between; gap: 1rem; margin-top: 1rem; font-size: 0.86rem; color: var(--on-dark-soft); }
.work__card figcaption b { font-weight: 500; color: var(--on-dark); }
.work__card figcaption span { font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--on-dark-muted); }
.work__end {
  flex: 0 0 auto; width: clamp(280px, 40vw, 520px);
  display: flex; flex-direction: column; justify-content: center; gap: 1.5rem;
  padding-right: var(--pad);
}
.work__end .h-2 { max-width: 12ch; }

/* ---------- Case ---------- */
.case { z-index: 1; }
.case__hero { position: relative; overflow: hidden; border-radius: 6px; aspect-ratio: 16/8; }
@media (max-width: 700px) { .case__hero { aspect-ratio: 4/3; } }
.case__hero img { position: absolute; inset: -12% 0; width: 100%; height: 124%; object-fit: cover; will-change: transform; }
.case__hero-label {
  position: absolute; left: 1.5rem; bottom: 1.5rem; display: flex; flex-direction: column; gap: 0.3rem;
  color: var(--on-dark);
}
.case__hero-label b { font-family: var(--serif); font-size: clamp(1.4rem, 2.6vw, 2.4rem); font-weight: 400; text-shadow: 0 2px 20px rgba(0,0,0,0.5); }
.case__hero-label span { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; }
.case__grid { display: grid; gap: 3rem; margin-top: clamp(2.5rem, 5vw, 4rem); }
@media (min-width: 1000px) { .case__grid { grid-template-columns: 1.2fr 1fr; gap: 6rem; } }
.case__facts { display: grid; grid-template-columns: 1fr 1fr; gap: 0 2rem; }
.case__fact { padding: 1.1rem 0; border-bottom: 1px solid var(--line-light); display: flex; flex-direction: column; gap: 0.2rem; }
.case__fact span { font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-muted); }
.case__fact b { font-weight: 500; font-size: 1.05rem; }
.case__text p + p { margin-top: 1rem; }
.case__text p { color: var(--ink-soft); }
.case__mini { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.8rem; margin-top: 2rem; }
.case__mini figure { overflow: hidden; border-radius: 4px; aspect-ratio: 1; }
.case__mini img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.case__mini figure:hover img { transform: scale(1.06); }

/* ---------- Ablauf ---------- */
.process { z-index: 1; }
.process__list { position: relative; display: grid; gap: 0; }
.process__line { position: absolute; left: 0; top: 0; bottom: 0; width: 1px; background: var(--line-dark); }
.process__line i { position: absolute; left: 0; top: 0; width: 100%; height: 100%; background: var(--sand); transform: scaleY(0); transform-origin: top; }
.step {
  position: relative;
  display: grid; grid-template-columns: 1fr; gap: 1rem;
  padding: clamp(2rem, 4vw, 3.5rem) 0 clamp(2rem, 4vw, 3.5rem) clamp(2rem, 5vw, 5rem);
  border-bottom: 1px solid var(--line-dark);
}
@media (min-width: 900px) { .step { grid-template-columns: 8rem minmax(0, 1fr) minmax(0, 1.1fr); gap: 2rem; } }
.step::before {
  content: ''; position: absolute; left: -5px; top: calc(clamp(2rem, 4vw, 3.5rem) + 0.6rem);
  width: 11px; height: 11px; border-radius: 50%; background: var(--bg); box-shadow: inset 0 0 0 1px var(--on-dark-muted);
  transition: background 0.4s, box-shadow 0.4s;
}
.step.is-on::before { background: var(--sand); box-shadow: inset 0 0 0 1px var(--sand); }
.step__num { font-family: var(--serif); font-size: clamp(2.6rem, 5vw, 4.4rem); line-height: 0.9; color: var(--on-dark-muted); letter-spacing: -0.02em; }
.step.is-on .step__num { color: var(--sand); }
.step__title { font-family: var(--serif); font-size: clamp(1.6rem, 2.6vw, 2.4rem); line-height: 1.05; letter-spacing: -0.01em; }
.step__title small { display: block; font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-dark-muted); margin-top: 0.6rem; }
.step__text { color: var(--on-dark-soft); font-weight: 300; max-width: 50ch; }
.step__text ul { margin-top: 0.8rem; display: grid; gap: 0.3rem; }
.step__text li { display: flex; gap: 0.6rem; font-size: 0.92rem; }
.step__text li::before { content: '—'; color: var(--sand); }

/* ---------- Preise ---------- */
.pricing { z-index: 1; }
.plans { display: grid; gap: 0; border-top: 1px solid var(--line-light); }
@media (min-width: 960px) { .plans { grid-template-columns: repeat(3, 1fr); border-left: 1px solid var(--line-light); } }
.plan { position: relative; padding: clamp(2rem, 3.5vw, 3.2rem) clamp(1.4rem, 2.5vw, 2.4rem); border-bottom: 1px solid var(--line-light); display: flex; flex-direction: column; gap: 1.6rem; overflow: hidden; }
@media (min-width: 960px) { .plan { border-right: 1px solid var(--line-light); } }
.plan--hi { background: var(--ink); color: var(--paper); }
.plan--hi .plan__price small, .plan--hi .plan__list li, .plan--hi .plan__desc { color: var(--on-dark-soft); }
.plan--hi .plan__list li::before { color: var(--sand); }
.plan__badge { position: absolute; top: 1.2rem; right: 1.2rem; font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sand); }
.plan__name { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: inherit; opacity: 0.7; }
.plan__title { font-family: var(--serif); font-size: clamp(1.8rem, 2.6vw, 2.4rem); line-height: 1.05; letter-spacing: -0.015em; }
.plan__price { display: flex; align-items: baseline; gap: 0.4rem; flex-wrap: wrap; }
.plan__price b { font-family: var(--serif); font-weight: 400; font-size: clamp(2.6rem, 4vw, 3.6rem); line-height: 1; letter-spacing: -0.02em; }
.plan__price small { font-size: 0.8rem; color: var(--ink-muted); }
.plan__desc { color: var(--ink-soft); font-size: 0.95rem; }
.plan__list { display: grid; gap: 0.5rem; flex: 1; }
.plan__list li { display: flex; gap: 0.7rem; font-size: 0.92rem; color: var(--ink-soft); }
.plan__list li::before { content: '—'; color: var(--gold-deep); flex: 0 0 auto; }
.plan .btn { align-self: flex-start; }
.pricing__note { margin-top: 2rem; font-size: 0.88rem; color: var(--ink-muted); max-width: 70ch; }

/* ---------- Über uns ---------- */
.about { z-index: 1; }
.about__grid { display: grid; gap: 3rem; }
@media (min-width: 1000px) { .about__grid { grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; } }
.about__visual { position: relative; }
.about__visual figure { overflow: hidden; border-radius: 6px; aspect-ratio: 4/5; }
.about__visual img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.1); }
.about__card {
  position: absolute; right: -1rem; bottom: 2rem; max-width: 300px;
  background: var(--paper); color: var(--ink); padding: 1.4rem 1.6rem; border-radius: 6px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6);
}
@media (max-width: 640px) { .about__card { position: static; margin-top: 1rem; max-width: none; } }
.about__card b { font-family: var(--serif); font-weight: 400; font-size: 1.5rem; display: block; margin-bottom: 0.3rem; }
.about__card span { font-size: 0.86rem; color: var(--ink-soft); }
.about__text p + p { margin-top: 1rem; }
.about__text p { color: var(--on-dark-soft); font-weight: 300; }
.about__pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem 2rem; margin-top: 2.5rem; }
.pillar { padding-top: 1rem; border-top: 1px solid var(--line-dark); }
.pillar b { display: block; font-family: var(--serif); font-weight: 400; font-size: 1.35rem; margin-bottom: 0.3rem; }
.pillar span { font-size: 0.88rem; color: var(--on-dark-soft); }

/* ---------- FAQ ---------- */
.faq { z-index: 1; }
.faq__grid { display: grid; gap: 3rem; }
@media (min-width: 1000px) { .faq__grid { grid-template-columns: 1fr 1.6fr; gap: 6rem; align-items: start; } }
.faq__sticky { position: sticky; top: 7rem; }
.faq__list { border-top: 1px solid var(--line-light); }
.faq__item { border-bottom: 1px solid var(--line-light); }
.faq__q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 2rem; text-align: left;
  padding: 1.4rem 0; font-family: var(--serif); font-size: clamp(1.25rem, 1.9vw, 1.7rem); line-height: 1.2;
}
.faq__q i {
  flex: 0 0 auto; width: 34px; height: 34px; border-radius: 50%; box-shadow: inset 0 0 0 1px var(--line-light);
  display: grid; place-items: center; transition: transform 0.4s var(--ease), background 0.3s;
}
.faq__q i::before, .faq__q i::after { content: ''; position: absolute; width: 12px; height: 1.5px; background: currentColor; }
.faq__q i::after { transform: rotate(90deg); transition: transform 0.4s var(--ease); }
.faq__q i { position: relative; }
.faq__item.is-open .faq__q i { background: var(--ink); color: var(--paper); box-shadow: none; }
.faq__item.is-open .faq__q i::after { transform: rotate(0deg); }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.5s var(--ease); }
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p { padding: 0 0 1.5rem; color: var(--ink-soft); max-width: 62ch; }

/* FAQ auf dunklem Grund */
.section--dark .faq__list, .section--dark2 .faq__list, .section--dark .faq__item, .section--dark2 .faq__item { border-color: var(--line-dark); }
.section--dark .faq__q i, .section--dark2 .faq__q i { box-shadow: inset 0 0 0 1px var(--line-dark); }
.section--dark .faq__item.is-open .faq__q i, .section--dark2 .faq__item.is-open .faq__q i { background: var(--sand); color: var(--ink); }
.section--dark .faq__a p, .section--dark2 .faq__a p { color: var(--on-dark-soft); }

/* ---------- Kontakt ---------- */
.contact { z-index: 1; overflow: hidden; }
.contact__grid { display: grid; gap: 3rem; }
@media (min-width: 1000px) { .contact__grid { grid-template-columns: 1fr 1fr; gap: 6rem; } }
.contact__big { font-family: var(--serif); font-size: clamp(2.6rem, 6.5vw, 6.4rem); line-height: 0.96; letter-spacing: -0.025em; margin: 1.2rem 0 2rem; }
.contact__direct { display: grid; gap: 1.2rem; margin-top: 2.5rem; }
.contact__direct a { display: flex; flex-direction: column; gap: 0.2rem; font-size: 1.15rem; }
.contact__direct a span { font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-dark-muted); }
.contact__direct a b { font-weight: 400; transition: color 0.3s; }
.contact__direct a:hover b { color: var(--sand); }
.form { display: grid; gap: 1.6rem; }
.form__row { display: grid; gap: 1.6rem; }
@media (min-width: 640px) { .form__row { grid-template-columns: 1fr 1fr; } }
.field { position: relative; display: flex; flex-direction: column; gap: 0.5rem; }
.field label { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-dark-muted); }
.field input, .field textarea, .field select {
  width: 100%; background: transparent; border: 0; border-bottom: 1px solid var(--line-dark);
  padding: 0.7rem 0; color: var(--on-dark); font-size: 1.05rem; border-radius: 0;
  transition: border-color 0.3s;
}
.field select { appearance: none; -webkit-appearance: none; cursor: pointer; }
.field select option { color: var(--ink); }
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--sand); }
.field input::placeholder, .field textarea::placeholder { color: var(--on-dark-muted); }
.field--select::after { content: '↓'; position: absolute; right: 0; bottom: 0.7rem; color: var(--on-dark-muted); pointer-events: none; }
.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip { position: relative; }
.chip input { position: absolute; opacity: 0; inset: 0; }
.chip span {
  display: inline-block; padding: 0.55rem 0.95rem; border-radius: 999px; font-size: 0.85rem;
  box-shadow: inset 0 0 0 1px var(--line-dark); color: var(--on-dark-soft); transition: all 0.3s;
  cursor: pointer;
}
.chip input:checked + span { background: var(--sand); color: var(--ink); box-shadow: none; }
.chip input:focus-visible + span { outline: 2px solid var(--sand); outline-offset: 2px; }
.form__consent { display: flex; gap: 0.8rem; align-items: flex-start; font-size: 0.82rem; color: var(--on-dark-soft); }
.form__consent input { margin-top: 0.3rem; accent-color: var(--sand); }
.form__consent a { text-decoration: underline; text-underline-offset: 3px; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.form__status { font-size: 0.88rem; color: var(--sand); min-height: 1.2em; }
.form__success { display: none; padding: 2rem 0; }
.form__success.is-on { display: block; }
.form__success b { font-family: var(--serif); font-weight: 400; font-size: 2rem; display: block; margin-bottom: 0.6rem; }
.form__success p { color: var(--on-dark-soft); }

/* ---------- Footer ---------- */
.footer { position: relative; z-index: 1; background: var(--bg); color: var(--on-dark); padding: clamp(3rem, 6vw, 5rem) var(--pad) 2rem; border-top: 1px solid var(--line-dark); }
.footer__top { display: grid; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid var(--line-dark); }
@media (min-width: 900px) { .footer__top { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 3rem; } }
.footer__brand img { height: 34px; width: auto; margin-bottom: 1rem; }
.footer__brand p { font-size: 0.9rem; color: var(--on-dark-soft); max-width: 34ch; }
.footer h4 { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--on-dark-muted); margin-bottom: 1rem; font-weight: 500; }
.footer ul { display: grid; gap: 0.55rem; }
.footer li a { font-size: 0.92rem; color: var(--on-dark-soft); transition: color 0.3s; }
.footer li a:hover { color: var(--on-dark); }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding-top: 1.5rem; font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--on-dark-muted); }
.footer__bottom a { transition: color 0.3s; }
.footer__bottom a:hover { color: var(--on-dark); }
.footer__big {
  font-family: var(--serif); font-size: clamp(4rem, 17vw, 18rem); line-height: 0.85; letter-spacing: -0.03em;
  color: var(--bg-3); text-align: center; margin: 2rem 0 0; user-select: none;
  background: linear-gradient(180deg, #2a2a30 0%, var(--bg) 110%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* ---------- Unterseiten ---------- */
.page-hero { position: relative; z-index: 1; padding: calc(var(--pad) + 6rem) var(--pad) clamp(3rem, 6vw, 5rem); background: var(--bg); overflow: hidden; }
.page-hero__grid { display: grid; gap: 2.5rem; }
@media (min-width: 1000px) { .page-hero__grid { grid-template-columns: 1.2fr 1fr; align-items: end; gap: 5rem; } }
.page-hero .eyebrow { margin-bottom: 1.5rem; }
.page-hero .lead { margin-top: 1.5rem; }
.page-hero__visual { position: relative; overflow: hidden; border-radius: 6px; aspect-ratio: 4/3; }
.page-hero__visual img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); }
.page-hero__bg { position: absolute; inset: 0; z-index: -1; opacity: 0.18; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; filter: blur(30px) saturate(120%); transform: scale(1.2); }
.page-hero__bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,12,14,0.3), var(--bg) 90%); }
.prose { max-width: 70ch; }
.prose h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.8rem, 3vw, 2.6rem); line-height: 1.1; letter-spacing: -0.015em; margin: 2.5rem 0 1rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-family: var(--serif); font-weight: 400; font-size: 1.5rem; margin: 1.8rem 0 0.6rem; }
.prose p { margin-bottom: 1rem; }
.prose ul { margin: 0 0 1.2rem; display: grid; gap: 0.4rem; }
.prose li { display: flex; gap: 0.7rem; }
.prose li::before { content: '—'; flex: 0 0 auto; }
.section--light .prose p, .section--light .prose li { color: var(--ink-soft); }
.section--light .prose li::before { color: var(--gold-deep); }
.section--dark .prose p, .section--dark .prose li { color: var(--on-dark-soft); }
.section--dark .prose li::before { color: var(--sand); }
.two-col { display: grid; gap: 3rem; }
@media (min-width: 1000px) { .two-col { grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; } }
.feature-list { display: grid; gap: 0; border-top: 1px solid var(--line-light); }
.feature { display: grid; grid-template-columns: 3rem 1fr; gap: 1rem; padding: 1.5rem 0; border-bottom: 1px solid var(--line-light); }
.feature i { font-family: var(--mono); font-style: normal; font-size: 0.7rem; letter-spacing: 0.14em; color: var(--gold-deep); padding-top: 0.4rem; }
.feature b { display: block; font-family: var(--serif); font-weight: 400; font-size: 1.5rem; margin-bottom: 0.3rem; }
.feature span { font-size: 0.95rem; color: var(--ink-soft); }
.section--dark .feature { border-color: var(--line-dark); }
.section--dark .feature-list { border-color: var(--line-dark); }
.section--dark .feature i { color: var(--sand); }
.section--dark .feature span { color: var(--on-dark-soft); }
.cta-band { position: relative; z-index: 1; padding: clamp(4rem, 8vw, 7rem) var(--pad); background: var(--ink); color: var(--paper); overflow: hidden; }
.cta-band__inner { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 900px) { .cta-band__inner { grid-template-columns: 1.5fr 1fr; } }
.cta-band .h-1 { max-width: 14ch; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 900px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
.gallery figure { position: relative; overflow: hidden; border-radius: 6px; aspect-ratio: 4/3; }
.gallery figure.is-wide { grid-column: span 2; aspect-ratio: 16/8; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.gallery figure:hover img { transform: scale(1.05); }
.gallery figcaption { position: absolute; left: 1rem; bottom: 1rem; font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; padding: 0.4rem 0.7rem; border-radius: 999px; background: rgba(12,12,14,0.6); color: var(--on-dark); backdrop-filter: blur(8px); }

/* Rechtliches */
.legal { position: relative; z-index: 1; padding: calc(var(--pad) + 6rem) var(--pad) clamp(4rem, 8vw, 7rem); background: var(--paper); color: var(--ink); }
.legal__inner { max-width: 760px; }
.legal h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(2.6rem, 5vw, 4.2rem); line-height: 1; letter-spacing: -0.02em; margin: 1rem 0 2.5rem; }
.legal h2 { font-family: var(--serif); font-weight: 400; font-size: 1.7rem; margin: 2.5rem 0 0.8rem; }
.legal h3 { font-size: 1.05rem; font-weight: 500; margin: 1.5rem 0 0.5rem; }
.legal p, .legal li { color: var(--ink-soft); margin-bottom: 0.8rem; font-size: 0.98rem; }
.legal ul { padding-left: 1.2rem; list-style: disc; }
.legal a { text-decoration: underline; text-underline-offset: 3px; }
.legal .note { padding: 1rem 1.2rem; background: var(--paper-2); border-left: 2px solid var(--gold); font-size: 0.9rem; margin: 1.5rem 0; }

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .grain, .cursor { display: none !important; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: block; }
  .nav__tag { display: none; }
  .hero { padding-top: 7rem; }
  .hero__foot { flex-direction: column; align-items: flex-start; }
  .service { grid-template-columns: 3rem minmax(0, 1fr); gap: 0.6rem 1rem; }
  .service__num { grid-row: 1; }
  .service__title, .service__text, .service__go { grid-column: 2; }
  .service:hover { padding-left: 0; }
  .hero__vignette { background: linear-gradient(0deg, rgba(12,12,14,0.96) 0%, rgba(12,12,14,0.55) 45%, rgba(12,12,14,0.15) 100%); }
  .ifc__spacer { height: 160vh; }
  .work__card { width: 78vw; }
  .work__card--tall { width: 60vw; }
  .case__facts { grid-template-columns: 1fr; }
  .about__pillars { grid-template-columns: 1fr; }
  .footer__big { font-size: 22vw; }
}
@media (max-width: 480px) {
  .hero__meta { gap: 1.2rem; }
  .btn { padding: 0.9rem 1.3rem; font-size: 0.88rem; }
  .compare__handle::after { width: 46px; height: 46px; background-size: 18px; }
}

/* ---------- Theme: Hellgrau Studio · Kupfer (Variante B) ---------- */
.hero__vignette { z-index: -1; }
.hero .eyebrow { color: var(--sand); }
.hero__meta-item b { color: var(--sand); }
.marquee { background: var(--sand); border-color: transparent; }
.marquee__item { color: rgba(255,255,255,0.85); }
.marquee__item em, .marquee__item i { color: #fff; background: #fff; }
.marquee__item em { background: none; }
.btn--primary { background: var(--ink); color: var(--paper); }
.btn--primary .btn__bg { background: var(--sand); }
.btn--primary:hover { color: var(--ink); }
.cursor { mix-blend-mode: normal; background: var(--ink); }
.cursor.is-link, .cursor.is-drag, .cursor.is-view { background: var(--sand); }
.cursor__label { color: #fff; }
.hero__vignette { background: linear-gradient(90deg, rgba(246,247,248,0.94) 0%, rgba(246,247,248,0.55) 40%, rgba(246,247,248,0) 70%), linear-gradient(0deg, rgba(246,247,248,0.95) 0%, rgba(246,247,248,0) 30%); }
.ifc__vignette { background: linear-gradient(0deg, rgba(246,247,248,0.96) 0%, rgba(246,247,248,0.3) 45%, rgba(246,247,248,0) 70%); }
.hero__hint-drag, .service__go span, .service__tags span, .chip span { box-shadow: inset 0 0 0 1px var(--line-dark); }
.footer__big { background: linear-gradient(180deg, #c9ced4 0%, var(--bg) 110%); -webkit-background-clip: text; background-clip: text; }
.marquee { background: var(--bg-2); }
.section--dark2 { background: var(--bg-2); }
.step::before { background: var(--bg); }
.plan--hi { background: var(--ink); color: var(--paper); }
.plan--hi .plan__list li::before { color: #e9a06c; }
.plan__badge { color: #e9a06c; }
.compare__tag { background: rgba(21,23,27,0.7); color: #fff; }
.compare__tag--after { background: var(--sand); color: #fff; }
.form__success p, .contact__direct a b { color: var(--ink-soft); }
.field input, .field textarea, .field select { color: var(--ink); }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-muted); }
.nav.is-scrolled { background: color-mix(in srgb, var(--bg) 78%, transparent); }
.loader__bar { background: var(--line-dark); }
@media (max-width: 900px) { .hero__vignette { background: linear-gradient(0deg, rgba(246,247,248,0.97) 0%, rgba(246,247,248,0.6) 45%, rgba(246,247,248,0.1) 100%); } }
.page-hero__bg::after { background: linear-gradient(180deg, rgba(246,247,248,0.35), var(--bg) 90%); }
.page-hero__bg { opacity: 0.35; }

/* ---------- Preis-Karten: Live-Beispiel ---------- */
.plan__demo { display: block; position: relative; border-radius: 12px; overflow: hidden; background: #fff; box-shadow: 0 0 0 1px var(--line-light), 0 24px 50px -30px rgba(21,23,27,0.35); transition: transform 0.6s cubic-bezier(0.22,1,0.36,1), box-shadow 0.6s; isolation: isolate; }
.plan__demo:hover { transform: translateY(-4px); box-shadow: 0 0 0 1px var(--line-light), 0 34px 60px -30px rgba(21,23,27,0.45); }
.plan--hi .plan__demo { box-shadow: 0 0 0 1px rgba(255,255,255,0.14), 0 24px 50px -24px rgba(0,0,0,0.6); }
.plan__bar { display: flex; align-items: center; gap: 5px; height: 26px; padding: 0 10px; background: #eceef0; font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.04em; color: #6b7079; }
.plan__bar i { width: 7px; height: 7px; border-radius: 50%; background: #cfd3d8; flex: none; }
.plan__bar span { margin-left: 6px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.plan__shot { display: block; position: relative; height: clamp(180px, 16vw, 230px); overflow: hidden; }
.plan__shot img { display: block; width: 100%; height: auto; transform: translateY(0); transition: transform 6s cubic-bezier(0.45,0,0.2,1); }
.plan__demo:hover .plan__shot img, .plan__demo:focus-visible .plan__shot img { transform: translateY(calc(-100% + clamp(180px, 16vw, 230px))); }
.plan__play { position: absolute; left: 12px; bottom: 12px; display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 0.85rem; border-radius: 999px; background: rgba(21,23,27,0.86); color: #fff; font-size: 0.74rem; font-weight: 500; backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); transition: background 0.3s; }
.plan__play::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: #e9a06c; box-shadow: 0 0 0 3px rgba(233,160,108,0.3); }
.plan__demo:hover .plan__play { background: #c2703a; }
.plan__demo:hover .plan__play::before { background: #fff; box-shadow: 0 0 0 3px rgba(255,255,255,0.3); }
.plan__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 0.6rem 1.2rem; }
.plan__link { font-size: 0.9rem; font-weight: 500; border-bottom: 1px solid currentColor; padding-bottom: 1px; opacity: 0.8; transition: opacity 0.3s, color 0.3s; }
.plan__link:hover { opacity: 1; color: #c2703a; }
@media (hover: none) {
  .plan__shot img { animation: plan-peek 16s ease-in-out infinite alternate; transition: none; }
  @keyframes plan-peek { 0%, 12% { transform: translateY(0); } 88%, 100% { transform: translateY(calc(-100% + 200px)); } }
}
@media (prefers-reduced-motion: reduce) { .plan__shot img { animation: none; transition: none; } }

/* Längerer Untertitel im Logo: bei mittleren Breiten ausblenden, damit er nicht mit dem Menü kollidiert */
@media (max-width: 1260px) { .nav__tag { display: none; } }
.nav__cta { white-space: nowrap; }

/* ---------- Case Study: Bildreihe + Abschluss (ersetzt die horizontale Referenz-Galerie) ---------- */
.case .section__head { margin-bottom: clamp(2rem, 4vw, 3rem); }
.case__gallery { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0.8rem; margin-top: clamp(2.5rem, 5vw, 4rem); }
.case__gallery figure { position: relative; overflow: hidden; border-radius: 6px; aspect-ratio: 4 / 3; background: #fff; }
.case__gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.case__gallery figure:hover img { transform: scale(1.05); }
.case__gallery-plan img { object-fit: contain; padding: 0.8rem; mix-blend-mode: multiply; }
.case__gallery figcaption { position: absolute; left: 0.7rem; bottom: 0.7rem; padding: 0.3rem 0.65rem; border-radius: 999px; background: rgba(21,23,27,0.72); color: #fff; font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; }
.case__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.6rem; margin-top: clamp(2rem, 4vw, 3rem); }
@media (max-width: 800px) { .case__gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* Hauptbutton in der dunklen Preiskarte: Kupfer statt Dunkel-auf-Dunkel */
.plan--hi .btn--primary { background: #c2703a; color: #fff; }
.plan--hi .btn--primary .btn__bg { background: #fff; }
.plan--hi .btn--primary:hover { color: var(--ink); }

/* ---------- Leistungen als Bild-Raster (ersetzt die lange Textliste) ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); grid-auto-rows: clamp(15rem, 19vw, 18.5rem); gap: 0.9rem; }
.svc { position: relative; display: flex; align-items: flex-end; overflow: hidden; border-radius: 12px; background: #e6e9ec; color: #fff; isolation: isolate; }
.svc img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 1.1s var(--ease); }
.svc::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(15,17,20,0) 30%, rgba(15,17,20,0.78) 100%); }
.svc:hover img { transform: scale(1.05); }
.svc--big { grid-column: span 2; grid-row: span 2; }
.svc--ink { background: var(--ink); }
.svc--cu { background: #c2703a; }
.svc--ink::after, .svc--cu::after { display: none; }
.svc__body { padding: clamp(1.1rem, 2vw, 1.6rem); max-width: 34rem; }
.svc__num { display: block; font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.8; margin-bottom: 0.5rem; }
.svc__title { font-family: var(--serif); font-weight: 400; font-size: clamp(1.4rem, 2vw, 1.85rem); line-height: 1.05; letter-spacing: -0.01em; }
.svc__title em { font-style: italic; color: #f0b88a; }
.svc--cu .svc__title em { color: #fff; }
.svc p { margin-top: 0.5rem; font-size: 0.9rem; line-height: 1.5; color: rgba(255,255,255,0.82); }
.svc--big .svc__title { font-size: clamp(2rem, 3.6vw, 3.2rem); }
.svc--big p { font-size: 1rem; max-width: 30rem; }
.svc__tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1rem; }
.svc__tags span { font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.35rem 0.6rem; border-radius: 999px; background: rgba(255,255,255,0.14); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.svc__go { position: absolute; top: 1rem; right: 1rem; width: 2.6rem; height: 2.6rem; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,0.16); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); transition: transform 0.5s var(--ease), background 0.3s; }
.svc__go svg { width: 16px; height: 16px; }
.svc:hover .svc__go { background: #fff; color: var(--ink); transform: rotate(-45deg); }
@media (max-width: 900px) {
  .svc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: auto; }
  .svc { min-height: 15rem; }
  .svc--big { grid-column: span 2; grid-row: auto; min-height: 22rem; }
}
@media (max-width: 560px) {
  .svc-grid { grid-template-columns: 1fr; }
  .svc { min-height: 14rem; }
  .svc--big { grid-column: auto; min-height: 26rem; }
  .svc--big .svc__title { font-size: 1.9rem; }
}

/* ---------- Live-Beispiele direkt unter dem Hero ---------- */
.examples { padding-block: clamp(4rem, 8vw, 6.5rem); }
.examples .section__head { margin-bottom: clamp(2rem, 4vw, 3rem); }
.ex-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1rem, 2vw, 1.6rem); }
.ex { display: flex; flex-direction: column; gap: 1rem; }
.ex__frame { display: block; position: relative; border-radius: 12px; overflow: hidden; background: #fff; box-shadow: 0 0 0 1px var(--line-light), 0 24px 50px -30px rgba(21,23,27,0.35); transition: transform 0.6s cubic-bezier(0.22,1,0.36,1), box-shadow 0.6s; }
.ex:hover .ex__frame { transform: translateY(-5px); box-shadow: 0 0 0 1px var(--line-light), 0 36px 60px -30px rgba(21,23,27,0.45); }
.ex:hover .plan__shot img, .ex:focus-visible .plan__shot img { transform: translateY(calc(-100% + clamp(180px, 16vw, 230px))); }
.ex:hover .plan__play { background: #c2703a; }
.ex:hover .plan__play::before { background: #fff; box-shadow: 0 0 0 3px rgba(255,255,255,0.3); }
.ex__meta { display: flex; justify-content: space-between; align-items: flex-end; gap: 1rem; padding: 0 0.2rem; }
.ex__meta small { display: block; font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-muted); }
.ex__meta b { display: block; font-family: var(--serif); font-weight: 400; font-size: clamp(1.4rem, 2vw, 1.7rem); line-height: 1.1; margin-top: 0.25rem; }
.ex__meta em { display: block; font-style: normal; font-size: 0.85rem; color: var(--ink-soft); margin-top: 0.2rem; }
.ex__price { flex: none; display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--serif); font-size: 1.35rem; color: #c2703a; white-space: nowrap; }
.ex__price i { font-style: normal; display: grid; place-items: center; width: 2.2rem; height: 2.2rem; border-radius: 50%; box-shadow: inset 0 0 0 1px var(--line-light); color: var(--ink); font-size: 0.95rem; transition: background 0.3s, color 0.3s, transform 0.4s; }
.ex:hover .ex__price i { background: #c2703a; color: #fff; transform: rotate(0deg) scale(1.05); }
@media (max-width: 900px) { .ex-grid { grid-template-columns: 1fr; gap: 2rem; } }

/* Case Study ohne Textblock: Fakten als volle Reihe */
.case__grid--facts { display: block; }
.case__grid--facts .case__facts { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0 2rem; }
@media (max-width: 900px) { .case__grid--facts .case__facts { grid-template-columns: 1fr 1fr; } }
