:root {
  --img-logoOnLight: url("/assets/logo-auf-hell.d4ee5140.webp");
  --img-logoOnDark: url("/assets/logo-auf-dunkel.53517457.webp");
}


:root {
  --ground: #F2EEE8;
  --surface: #FBF8F3;
  --ink: #1A1512;
  --muted: #6B615A;
  --accent: #1668B4;
  --on-accent: #FBF8F3;
  --warm: #E0A21A;
  --warm-bright: #FFF353;
  --error: #B3261E;
  --line: rgba(26, 21, 18, .14);
  --line-2: rgba(26, 21, 18, .3);
  --frame: rgba(26, 21, 18, .12);
  --sans: "Helvetica Neue", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  --serif: Georgia, "Iowan Old Style", "Palatino Linotype", "Times New Roman", serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --pad: clamp(1.35rem, 6vw, 7rem);
  --r: 10px;
  --pill: 999px;

  --sweep: linear-gradient(90deg, #1668B4 0%, #1668B4 45%, #E0A21A 100%);

  --logo-src: var(--img-logoOnLight);

  color-scheme: light;
  color-scheme: only light;

  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 21px;
  line-height: 1.58;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;

  background-color: #F2EEE8;
  background-image: linear-gradient(180deg,
    #F4F0E7 0%,  #F4F0E7 12%,
    #F1ECE1 26%, #F7F2E9 38%,
    #EFE9DC 52%, #F5F0E7 66%,
    #F2EDE2 80%, #F8F3EA 100%);
}

img { display: block; max-width: 100%; }
::selection { background: var(--accent); color: #FBF8F3; }
a { color: inherit; }

a:focus-visible, button:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: var(--r);
}

.skip {
  position: fixed; top: -100px; left: 1rem; z-index: 200;
  background: #1668B4; color: #FBF8F3;
  padding: .7rem 1.2rem; text-decoration: none; border-radius: var(--r);
  font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600;
  transition: top .25s var(--ease);
}
.skip:focus { top: 1rem; }

.wrap { width: min(100% - 2 * var(--pad), 82rem); margin-inline: auto; }

.eyebrow {
  margin: 0; font-size: .84rem; text-transform: uppercase;
  letter-spacing: .26em; font-weight: 600; color: var(--muted);
  display: flex; align-items: center; gap: .7em;
}
.eyebrow::before {
  content: ""; flex: none;
  width: .5em; height: .5em; border-radius: 50%;
  background: var(--warm);
}

.js .rvh { overflow: hidden; padding-bottom: .5em; margin-bottom: -.36em; }
.js .rvh > span { display: block; transform: translate3d(0, 112%, 0); transition: transform 1.05s var(--ease); }
.js .rvh.on > span { transform: none; }

.js .auftritt {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
}
.js .auftritt:nth-child(even) { transition-delay: 90ms; }
.js .auftritt.on { opacity: 1; transform: none; }

h1, h2, h3 {
  font-weight: 200; letter-spacing: -.025em; line-height: 1.08;
  margin: 0; text-wrap: balance;

  hyphens: manual;
  overflow-wrap: break-word;
}

em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.06em;
  letter-spacing: -.01em;
  color: var(--accent);
}
p { margin: 0; }
.num { font-variant-numeric: tabular-nums; }

.pline {
  position: fixed; inset: 0 0 auto 0; height: 3px; z-index: 95;
  background: rgba(26, 21, 18, .1); pointer-events: none;
}

.pline i {
  display: block; height: 100%; width: 100%;
  background: var(--sweep); transform: scaleX(0); transform-origin: 0 50%;
}

.topbar {
  position: fixed; top: 3px; left: 0; right: 0; z-index: 90;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .8rem var(--pad);
  background: rgba(251, 248, 243, .8);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid rgba(26, 21, 18, .14);
  transform: translate3d(0, -110%, 0);
  transition: transform .5s var(--ease);
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .topbar { background: rgba(242, 238, 232, .95); }
}
.topbar.on { transform: translate3d(0, 0, 0); }

.mark { display: block; line-height: 0; text-decoration: none; }
.mark__img {
  display: block; height: 44px; aspect-ratio: 600 / 146;
  background-image: var(--logo-src);
  background-size: contain; background-repeat: no-repeat; background-position: left center;
}

.topnav { display: flex; flex-wrap: wrap; gap: .45rem clamp(1rem, 2.4vw, 2.2rem); margin-inline: auto 0; }

.topnav__in { display: contents; }
.topnav__a {
  font-size: 1rem; letter-spacing: .02em; color: #1A1512;
  text-decoration: none; white-space: nowrap;
}
.topnav__a[aria-current="page"]::after { transform: scaleX(1); }
@media (hover: hover) { .topnav__a:hover { color: #1668B4; } }

.callbtn {
  display: inline-flex; align-items: center; gap: .6rem;
  text-decoration: none; color: #1A1512;
  font-size: 1.04rem; letter-spacing: .03em; font-weight: 400; padding: .45rem 0;
}
.callbtn svg { width: 18px; height: 18px; flex: none; fill: #1668B4; }
.callbtn span { position: relative; padding-bottom: 2px; }
.callbtn span::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: var(--sweep); border-radius: var(--pill);
  transform: scaleX(0); transform-origin: 0 50%;
  transition: transform .45s var(--ease);
}
@media (hover: hover) { .callbtn:hover span::after { transform: scaleX(1); } }

.menubtn, .topnav__kontakt { display: none; }

.rail {
  position: fixed; z-index: 96;
  right: clamp(.55rem, 1.5vw, 1.1rem); top: 50%;
  transform: translateY(-50%);
  display: grid; gap: .55rem;
}
.rail__b {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%;
  text-decoration: none;
  background: #1A1512; color: #FBF8F3;
  box-shadow: 0 10px 24px -12px rgba(26, 21, 18, .75);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease);
}
.rail__b svg { width: 21px; height: 21px; fill: currentColor; }

.rail__b--tel, .rail__b--wa {
  background: linear-gradient(180deg, color-mix(in srgb, #1668B4 94%, white), #1668B4);
  color: #FBF8F3;
  box-shadow: 0 12px 26px -14px rgba(224, 162, 26, .85), 0 8px 18px -12px rgba(22, 104, 180, .6);
}

.rail__l {
  position: absolute; right: calc(100% + .55rem); top: 50%;
  transform: translateY(-50%) translateX(8px);
  padding: .42rem .8rem; border-radius: var(--pill);
  background: #1A1512; color: #FBF8F3;
  font-size: .8rem; letter-spacing: .03em; line-height: 1.2; white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.rail__b:focus-visible .rail__l { opacity: 1; transform: translateY(-50%); }
@media (hover: hover) {
  .rail__b:hover { transform: translateX(-3px); }
  .rail__b:hover .rail__l { opacity: 1; transform: translateY(-50%); }
}
@media (hover: none) { .rail__b:active { transform: scale(.93); } }

.cta {
  position: relative; overflow: hidden; isolation: isolate;
  display: inline-flex; align-items: center; gap: .65rem;
  padding: 1.05rem 2.4rem;

  background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 94%, white), var(--accent));
  color: var(--on-accent);
  text-decoration: none; border-radius: var(--pill);
  box-shadow: 0 16px 34px -18px rgba(224, 162, 26, .8), 0 8px 18px -12px rgba(22, 104, 180, .55);
  font-size: .88rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 700;
  transition: box-shadow .45s var(--ease), transform .45s var(--ease);
}
.cta::before {
  content: ""; position: absolute; inset: 0; z-index: -1; background: var(--ink);
  transform: scaleX(0); transform-origin: 0 50%;
  transition: transform .55s var(--ease);
}
.cta > * { position: relative; }
.cta svg { width: 16px; height: 16px; fill: currentColor; }
@media (hover: hover) {
  .cta:hover::before { transform: scaleX(1); }
  .cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 26px 48px -18px rgba(224, 162, 26, .95), 0 12px 24px -14px rgba(22, 104, 180, .6);
  }
}

.cta--ghost {
  background: transparent; color: var(--ink);
  box-shadow: inset 0 0 0 1.5px color-mix(in srgb, var(--warm) 60%, transparent);
}
.cta--ghost svg { fill: var(--accent); }
@media (hover: hover) {
  .cta--ghost:hover { color: var(--on-accent); }
  .cta--ghost:hover svg { fill: var(--on-accent); }
}

.ul { position: relative; text-decoration: none; padding-bottom: 2px; }
.ul::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: var(--accent); transform: scaleX(0); transform-origin: 0 50%;
  transition: transform .5s var(--ease);
}
@media (hover: hover) { .ul:hover::after { transform: scaleX(1); } }

.beats {
  position: absolute; inset: 0;
  display: grid; grid-template-columns: minmax(0, 1fr);
  align-content: center; padding: 0 var(--pad);
}
.beat { grid-area: 1 / 1; will-change: transform, opacity; }

.ai-badge {
  position: absolute; z-index: 6;
  right: var(--pad); bottom: clamp(1.4rem, 4vh, 2.6rem);
  display: inline-flex; align-items: center;
  padding: .4rem .7rem;
  border: 1px solid rgba(237, 229, 218, .3); border-radius: 999px;
  background: rgba(11, 9, 6, .8);
  -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
  color: #EDE5DA;
  font-size: .8rem; letter-spacing: .04em; line-height: 1;
  pointer-events: none;
}

.ai-badge--static { display: none; }

.hero { height: 430vh; position: relative; }

.hero__pin {
  position: sticky; top: 0; height: 100vh; height: 100svh; overflow: hidden;

  background: radial-gradient(56% 62% at 77% 45%, rgba(224, 162, 26, .22), transparent 70%), radial-gradient(52% 44% at 0% 100%, rgba(22, 104, 180, .07), transparent 64%), linear-gradient(180deg, transparent 62%, rgba(26, 21, 18, .035) 100%), linear-gradient(168deg, #FBF8F3 0%, #F2EEE8 55%, #F2EEE8 100%);
  display: grid; grid-template-columns: minmax(0, 1fr) auto;
  align-items: center; column-gap: clamp(2rem, 5vw, 4rem);
  padding-inline-start: max(var(--pad), calc((100% - 82rem) / 2));
  padding-inline-end: max(var(--pad), calc((100% - 82rem) / 2), 4.5rem);
  --zeile: min(4.6vw, 4.4rem);
}

.hero__pin::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: linear-gradient(to right, rgba(26, 21, 18, .075) 1px, transparent 1px), linear-gradient(to bottom, rgba(26, 21, 18, .075) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: radial-gradient(85% 75% at 60% 42%, #000 18%, transparent 78%);
  mask-image: radial-gradient(85% 75% at 60% 42%, #000 18%, transparent 78%);
}

.hero__pin .beats {
  position: relative; inset: auto; padding: 0; min-width: 0;
  grid-column: 1; grid-row: 1;

  z-index: 1;
}

@media (min-width: 861px) {
  .hero__pin {
    background: #0B0906;
    padding-block-start: 4.6rem;
    --ink: #EDE5DA;
    --muted: #A2968A;
    --accent: #3B9BEC;
    --on-accent: #06111C;
    --line: rgba(237, 229, 218, .16);
    --line-2: rgba(237, 229, 218, .3);
    --logo-src: var(--img-logoOnDark);
    color: var(--ink);
  }

  .hero__pin::before, .hero__werk::before { display: none; }
  .hero__panel { max-height: calc(100vh - 9rem); max-height: calc(100svh - 9rem); }

  #hb1 .eyebrow, #hb1 .ln > span, #hb1 .hero__sub, .arrival p { text-shadow: 0 1px 2px rgba(9, 7, 5, .62), 0 0 3px rgba(9, 7, 5, .5), 0 2px 26px rgba(9, 7, 5, .38); }
  #hb1 .eyebrow { color: var(--ink); }
}

.hero__grund { display: none; }
@media (min-width: 861px) {
  .hero__grund {
    display: block; position: absolute; inset: 0; z-index: 0;
    overflow: hidden; pointer-events: none;
  }
  .hero__grund-bild, .hero__grund-vid {
    position: absolute; top: -8%; left: -8%; width: 116%; height: 116%; max-width: none;
    object-fit: cover; display: block;
    filter: blur(38px) saturate(1.15) brightness(.55);
  }
  .hero__grund-vid { opacity: 0; transition: opacity 1.2s var(--ease); }
  .hero__grund-vid.on { opacity: 1; }
  .hero__grund::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(11, 9, 6, .72) 0%, rgba(11, 9, 6, .48) 46%, rgba(11, 9, 6, .22) 100%);
  }
}

.hero__panel {

  position: relative; z-index: 2;
  width: min(478px, 34vw);
  aspect-ratio: 478 / 598;

  max-height: 80vh; max-height: 80svh;
  border-radius: var(--r); overflow: hidden; isolation: isolate;

  box-shadow: inset 0 0 0 1px rgba(251, 248, 243, .28), 0 1px 2px rgba(26, 21, 18, .06), 0 12px 26px -12px rgba(26, 21, 18, .22), 0 40px 80px -44px rgba(26, 21, 18, .55);

  outline: 1px solid var(--line);
  outline-offset: 14px;
}

.hero__panel > picture { display: contents; }

.hero__werk {
  position: relative; grid-column: 2; grid-row: 1; justify-self: end;
  isolation: isolate;
}

.hero__werk::before {
  content: ""; position: absolute; inset: -22% -12% -18% -34%; z-index: -1;
  pointer-events: none;
  background: radial-gradient(55% 50% at 30% 26%, rgba(59, 155, 236, .34), transparent 70%), radial-gradient(52% 46% at 72% 86%, rgba(224, 162, 26, .36), transparent 70%);
  filter: blur(34px);
}

@keyframes karteInA { 0%, 30% { opacity: 0; translate: 0 30px; } 100% { opacity: 1; translate: 0 0; } }
@keyframes karteInB { 0%, 44% { opacity: 0; translate: 0 30px; } 100% { opacity: 1; translate: 0 0; } }

.hero__panel {
  will-change: transform; transition: transform 1s var(--ease);
  transform: translate3d(calc(var(--mx, 0) * -7px), calc(var(--my, 0) * -5px), 0);
}

.lr {
  position: relative; isolation: isolate;
  --lr-x: 77%; --lr-y: 45%; --lr-mx: 60%; --lr-my: 42%;
  background: radial-gradient(56% 62% at var(--lr-x) var(--lr-y), rgba(224, 162, 26, .22), transparent 70%), radial-gradient(52% 44% at 0% 100%, rgba(22, 104, 180, .07), transparent 64%), linear-gradient(180deg, transparent 62%, rgba(26, 21, 18, .035) 100%), linear-gradient(168deg, #FBF8F3 0%, #F2EEE8 55%, #F2EEE8 100%);
}

.lr::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image: linear-gradient(to right, rgba(26, 21, 18, .075) 1px, transparent 1px), linear-gradient(to bottom, rgba(26, 21, 18, .075) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: radial-gradient(85% 75% at var(--lr-mx) var(--lr-my), #000 18%, transparent 78%);
  mask-image: radial-gradient(85% 75% at var(--lr-mx) var(--lr-my), #000 18%, transparent 78%);
}
.lr--ohne-raster::before { display: none; }
.lr--links { --lr-x: 23%; --lr-mx: 40%; }

.werk { position: relative; isolation: isolate; }
.werk::before {
  content: ""; position: absolute; inset: -22% -12% -18% -34%; z-index: -1;
  pointer-events: none;
  background: radial-gradient(55% 50% at 30% 26%, rgba(59, 155, 236, .34), transparent 70%), radial-gradient(52% 46% at 72% 86%, rgba(224, 162, 26, .36), transparent 70%);
  filter: blur(34px);
}
.werk--links::before { inset: -22% -34% -18% -12%; }

.ebene {
  --px: 0px; --py: 0px;
  transform: translate3d(calc(var(--mx, 0) * var(--px)), calc(var(--my, 0) * var(--py)), 0);
  will-change: transform; transition: transform 1s var(--ease);
}

.karte {
  position: relative; margin: 0; overflow: hidden; border-radius: var(--r);
  background: var(--surface);
  box-shadow: inset 0 0 0 1px rgba(251, 248, 243, .35), 0 1px 2px rgba(26, 21, 18, .06), 0 14px 30px -14px rgba(26, 21, 18, .28), 0 40px 70px -40px rgba(26, 21, 18, .5);
}
.karte > img, .karte > picture > img, .karte > a > img { display: block; width: 100%; height: 100%; object-fit: cover; }
.karte > figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: .5rem .75rem; font-size: .66rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 600; color: var(--ink); background: rgba(251, 248, 243, .86); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.karte--paar {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  background: var(--surface);
}
.karte--paar > figcaption { display: flex; justify-content: space-between; }

.tafel {
  position: relative; border-radius: var(--r); overflow: hidden; isolation: isolate;
  background: #0B0906;
  box-shadow: inset 0 0 0 1px rgba(251, 248, 243, .28), 0 1px 2px rgba(26, 21, 18, .06), 0 12px 26px -12px rgba(26, 21, 18, .22), 0 40px 80px -44px rgba(26, 21, 18, .55);
  outline: 1px solid var(--line); outline-offset: 14px;
}
.tafel > img, .tafel > picture > img, .tafel > video { display: block; width: 100%; height: 100%; object-fit: cover; }
.tafel > picture { display: contents; }

.pillen { display: flex; flex-wrap: wrap; gap: .55rem; list-style: none; margin: 0; padding: 0; }
.pillen li { font-size: .88rem; line-height: 1.2; letter-spacing: .015em; color: var(--muted); padding: .44rem .88rem; border-radius: var(--pill); background: rgba(251, 248, 243, .62); box-shadow: inset 0 0 0 1px var(--line); }

.js .ebene.auftritt {
  transform: translate3d(calc(var(--mx, 0) * var(--px)), calc(var(--my, 0) * var(--py)), 0);
  translate: 0 28px;
  transition: opacity .85s var(--ease), translate .85s var(--ease), transform 1s var(--ease);
}
.js .ebene.auftritt.on {
  transform: translate3d(calc(var(--mx, 0) * var(--px)), calc(var(--my, 0) * var(--py)), 0);
  translate: 0 0;
}

@media (max-width: 860px) {

  .werk::before { display: none; }
}

.hero__still, .hero__vid {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  max-width: 478px; margin-inline: auto;
  object-fit: cover;
  display: block;
}
.hero__vid {
  opacity: 0;
  transition: opacity 1.2s var(--ease);
  pointer-events: none;
}
.hero__vid.on { opacity: 1; }

.hero__shade {
  display: none;
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(11, 9, 6, .62) 0%, rgba(11, 9, 6, 0) 26%),
    linear-gradient(0deg, rgba(11, 9, 6, .95) 0%, rgba(11, 9, 6, .9) 30%, rgba(11, 9, 6, .72) 50%, rgba(11, 9, 6, .4) 68%, rgba(11, 9, 6, .12) 86%, rgba(11, 9, 6, 0) 100%);
}

.hero__lines { margin: 1.4rem 0 0; }

.ln { display: block; overflow: hidden; padding-bottom: .16em; margin-bottom: -.16em; }
.ln > span {
  display: block;

  font-size: clamp(min(2.35rem, 9.4vw), var(--zeile), 6.4rem);

  hyphens: manual;
  font-weight: 200; line-height: 1.08; letter-spacing: -.03em;
  will-change: transform;
}

@keyframes lineInA { 0%, 12% { transform: translate3d(0, 118%, 0); } 100% { transform: none; } }
@keyframes lineInB { 0%, 26% { transform: translate3d(0, 118%, 0); } 100% { transform: none; } }
@keyframes fadeUpA { 0%, 4%  { opacity: 0; transform: translate3d(0, 14px, 0); } 100% { opacity: 1; transform: none; } }
@keyframes fadeUpB { 0%, 46% { opacity: 0; transform: translate3d(0, 14px, 0); } 100% { opacity: 1; transform: none; } }
@keyframes fadeUpC { 0%, 68% { opacity: 0; transform: translate3d(0, 14px, 0); } 100% { opacity: 1; transform: none; } }
.hero__lines .ln:nth-child(1) > span { animation: lineInA 1.25s var(--ease); }
.hero__lines .ln:nth-child(2) > span { animation: lineInB 1.4s var(--ease); }
#hb1 .eyebrow { animation: fadeUpA 1s var(--ease); }
#hb1 .hero__sub { animation: fadeUpB 1.6s var(--ease); }

#hb1 .hero__joka { animation: fadeUpC 2s var(--ease); }
.hint { animation: fadeUpC 2s var(--ease); }

.rule {
  height: 1px; width: 0; margin-top: 2.2rem; max-width: 32rem;
  background: linear-gradient(to right, var(--accent), rgba(59, 155, 236, 0));
}

.hero__sub {
  margin-top: 1.6rem; max-width: 36ch;

  color: var(--ink);
  font-size: clamp(1.12rem, 1.75vw, 1.38rem);
}

.hero__joka {
  display: block; margin-top: 2.2rem;
  width: clamp(5.4rem, 8vw, 7.5rem); height: auto;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .26), 0 12px 32px rgba(0, 0, 0, .38);
}

.arrival { text-align: left; justify-self: start; max-width: 48rem; }

.logo__img {
  display: block; justify-self: start;
  height: clamp(54px, 8.4vw, 110px); aspect-ratio: 600 / 146;
  background-image: var(--logo-src);
  background-size: contain; background-repeat: no-repeat; background-position: left center;
}

.logo__led {
  height: 1px; width: 0; margin: 1.6rem 0 0; max-width: 34rem;
  background: linear-gradient(to right, rgba(59, 155, 236, 0), var(--accent) 22%, var(--accent) 78%, rgba(59, 155, 236, 0));
  box-shadow: 0 0 18px 1px rgba(59, 155, 236, .55);
}
.arrival p {
  margin: 1.8rem 0 0; color: var(--ink); opacity: .94;
  font-size: clamp(1.18rem, 1.95vw, 1.5rem); max-width: 32ch;
}
.arrival__do { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: flex-start; margin-top: 2.3rem; }

.hint {
  position: absolute; left: 50%; bottom: clamp(1.1rem, 3vh, 2.2rem); z-index: 2;
  transform: translateX(-50%);
  display: inline-flex; flex-direction: column; align-items: center; gap: .5rem;
  padding: .6rem 1.1rem .4rem;
  text-decoration: none;

  color: var(--ink);
  will-change: opacity;
}

.hint__t {
  font-size: .88rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 600;
  white-space: nowrap;
}
.hint__p {
  display: grid; place-items: center;
  width: 38px; height: 38px; border-radius: 50%;

  background: color-mix(in srgb, var(--ink) 9%, transparent);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--ink) 24%, transparent);

}
.hint__p svg { width: 21px; height: 21px; display: block; }

@keyframes hintWink {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}
.hint__p svg { animation: hintWink 2s var(--ease) infinite; }
@media (prefers-reduced-motion: reduce) { .hint__p svg { animation: none; } }

@media (hover: hover) {
  .hint:hover .hint__p { background: color-mix(in srgb, var(--ink) 16%, transparent); }
}

.chain { height: 780vh; position: relative; }

.chain__pin {
  position: sticky; top: 0; height: 100vh; height: 100svh;
  display: grid; align-content: center; align-content: safe center; overflow: hidden;
  padding: 5.6rem var(--pad) 1.5rem;
  padding-inline-end: max(var(--pad), 4.5rem);
  --lr-x: 74%; --lr-y: 52%; --lr-mx: 62%; --lr-my: 50%;
}

.chain__grid {
  display: grid; gap: clamp(2rem, 5vw, 5.5rem);
  grid-template-columns: clamp(19rem, 30vw, 25rem) minmax(0, 1fr);
  align-items: center; max-width: 82rem; margin-inline: auto; width: 100%;
}
.chain__h { font-size: clamp(2rem, 3.6vw, 3.2rem); margin: 1.2rem 0 2.6rem; }

.chain__list { list-style: none; margin: 0; padding: 0 0 0 2.4rem; position: relative; }
.chain__mehr { margin-top: 2.2rem; padding-left: 2.4rem; font-size: .98rem; }

.chain__mehr .ul { display: inline-block; padding-block: .3rem; }
.chain__rail { position: absolute; left: 3px; top: .6rem; bottom: .6rem; width: 1px; background: var(--line-2); }
.chain__fill {
  position: absolute; left: 0; top: 0; width: 1px; height: 0;
  background: var(--accent); box-shadow: 0 0 10px rgba(22, 104, 180, .4);
}
.cn {
  position: relative; display: flex; align-items: baseline; gap: 1rem;
  padding: .48rem 0; color: var(--muted); transition: color .45s var(--ease);
}
.cn__dot {
  position: absolute; left: -2.4rem; top: .95em; width: 8px; height: 8px;
  border-radius: 50%; background: var(--ground); box-shadow: inset 0 0 0 1px var(--line-2);
  transform: translateY(-50%);
  transition: background .4s var(--ease), box-shadow .4s var(--ease), transform .4s var(--ease);
}
.cn__n { font-size: .8rem; letter-spacing: .1em; font-weight: 700; opacity: .8; }
.cn__t { font-size: clamp(1.12rem, 1.6vw, 1.42rem); font-weight: 300; letter-spacing: -.01em; }
.cn.on { color: var(--ink); }
.cn.on .cn__n { color: var(--accent); opacity: 1; }
.cn.on .cn__dot {
  background: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 0 14px rgba(22, 104, 180, .45);
  transform: translateY(-50%) scale(1.25);
}
.cn.done { color: rgba(26, 21, 18, .5); }

.chain__stage { position: relative; height: clamp(24rem, 58vh, 36rem); }

.chain__ghosts, .chain__cards { position: absolute; inset: 0; }
.chain__ghosts { pointer-events: none; overflow: hidden; }

.cg {
  position: absolute; inset: 0;
  display: grid; align-content: start; justify-items: end;
  font-size: clamp(8rem, 16vw, 15rem); font-weight: 200; line-height: .78;
  letter-spacing: -.06em; color: rgba(22, 104, 180, .3);
  will-change: transform;
}

.cs {
  position: absolute; inset: 0;
  display: grid; align-content: center; align-items: center;
  grid-template-columns: minmax(0, 1fr) 26%;
  column-gap: 1.5rem;
}
.cs__t, .cs__line, .cs__d { grid-column: 1; }

.cs__n { display: none; }

.cs__t {
  font-size: clamp(min(2.5rem, 4.5vw), 4.1vw, 4.2rem); margin: .4rem 0 0;
  overflow: hidden; padding-bottom: .18em;
}
.cs__t > span { display: block; will-change: transform; }

.cs__foto {
  grid-column: 2; grid-row: 1 / span 4; align-self: center; justify-self: end;
  width: 100%; aspect-ratio: 4 / 5; rotate: 3deg; z-index: 2;

  margin-inline-end: 1rem;
  --px: -14px; --py: -10px;
}

.cs__foto > figcaption { font-size: .6rem; letter-spacing: .1em; padding: .5rem .6rem; }

.cs__line {
  display: block; height: 1px; margin-top: .9rem; max-width: 22rem;
  background: var(--sweep);
  transform: scaleX(0); transform-origin: 0 50%; will-change: transform;
}
.cs__d { margin-top: 1.3rem; will-change: transform, opacity; max-width: 38ch; color: var(--muted); font-size: clamp(1.12rem, 1.65vw, 1.38rem); }

.hs { position: relative; }

.hs__pin {
  position: sticky; top: 0; height: 100vh; height: 100svh; overflow: hidden;
  display: grid; grid-template-rows: auto 1fr; align-content: center;
  --lr-y: 58%; --lr-my: 55%;
}

.hs__head {
  display: flex; flex-wrap: wrap; gap: .8rem 2rem; align-items: baseline;
  justify-content: space-between; padding: 5.6rem var(--pad) 0;
  padding-inline-end: max(var(--pad), 4.5rem);
}
.hs__count { font-size: .86rem; letter-spacing: .24em; text-transform: uppercase; color: var(--muted); }
.hs__count b { color: var(--accent); font-weight: 700; }
.hs__viewport { position: relative; isolation: isolate; display: flex; align-items: center; overflow: hidden; }

.hs__viewport::before {

  content: ""; position: absolute; left: 50%; top: 10%; width: 44%; height: 74%;
  z-index: -1; pointer-events: none;
  background: radial-gradient(55% 50% at 30% 26%, rgba(59, 155, 236, .34), transparent 70%), radial-gradient(52% 46% at 72% 86%, rgba(224, 162, 26, .36), transparent 70%);
  filter: blur(34px);
}
.hs__track { display: flex; gap: clamp(1rem, 2.2vw, 2rem); padding-inline: var(--pad); will-change: transform; }

.hs__card {
  flex: 0 0 auto; width: clamp(280px, 31vw, 440px);
  display: grid; align-content: center; gap: 1.2rem; padding-right: clamp(1rem, 3vw, 3rem);
}
.hs__card h3 { font-size: clamp(2.2rem, 4.6vw, 3.8rem); }
.hs__card p { color: var(--muted); font-size: 1.12rem; }
.hs__card .cta { justify-self: start; margin-top: .4rem; }

.proj { flex: 0 0 auto; width: clamp(268px, 30vw, 400px); display: grid; gap: 1rem; }

.proj__img { aspect-ratio: 4 / 5; }

.proj__img img {
  width: 100%; height: 100%; object-fit: cover;
  transform: translate3d(var(--px, 0px), 0, 0) scale(1.1);
  will-change: transform;
  transition: transform .8s var(--ease);
}

.proj__img::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(to top, rgba(22, 104, 180, .3), rgba(22, 104, 180, 0) 55%);
  opacity: 0; transition: opacity .55s ease;
}
.proj__img > figcaption { z-index: 2; }
@media (hover: hover) {
  .proj:hover .proj__img img { transform: translate3d(var(--px, 0px), 0, 0) scale(1.16); }
  .proj:hover .proj__img::before { opacity: 1; }
}
.hs__rail {
  position: absolute; left: var(--pad); right: var(--pad);
  bottom: clamp(1.4rem, 4vh, 2.4rem); height: 1px; background: var(--line-2);
}
.hs__rail i { display: block; height: 1px; width: 0; background: var(--accent); }

.values { padding-block: clamp(4rem, 13vh, 9rem); }
.values__h { font-size: clamp(2.4rem, 5vw, 4rem); max-width: 17ch; margin-top: 1.2rem; }
.values__grid { display: grid; margin-top: 2.8rem; grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr)); }

.val { position: relative; padding: 1.8rem clamp(1rem, 2.5vw, 2.2rem) 1.8rem 0; }
.val__line {
  position: absolute; left: 0; top: 0; height: 1px; width: 100%;
  background: var(--line-2); transform: scaleX(0); transform-origin: 0 50%;
  transition: transform 1s var(--ease), background .45s var(--ease);
}
.val.on .val__line { transform: scaleX(1); }

.val:nth-child(2) .val__line { transition-delay: 90ms; }
.val:nth-child(3) .val__line { transition-delay: 180ms; }
.val:nth-child(4) .val__line { transition-delay: 270ms; }
.val h3 { font-size: clamp(1.4rem, 2.1vw, 1.8rem); font-weight: 300; margin-bottom: .8rem; }
.val p { color: var(--muted); font-size: 1.1rem; transition: color .4s var(--ease); }
@media (hover: hover) {
  .val:hover .val__line { background: var(--sweep); transition-delay: 0s; }
  .val:hover p { color: var(--ink); }
}

.rv { padding-block: clamp(3rem, 9vh, 6rem); --lr-y: 50%; --lr-my: 50%; }
.rv__head {
  display: flex; flex-wrap: wrap; gap: 1rem 2rem;
  align-items: flex-end; justify-content: space-between; margin-bottom: 2.4rem;
}
.rv__h { font-size: clamp(2rem, 4vw, 3.2rem); margin-top: 1.1rem; max-width: 16ch; }

.gg { font-weight: 700; letter-spacing: -.01em; white-space: nowrap; }
.gg i { font-style: normal; }
.gg--b { color: #4285F4; }
.gg--r { color: #EA4335; }
.gg--y { color: #FBBC05; }
.gg--g { color: #34A853; }

.rv__badge {
  display: inline-flex; align-items: baseline; gap: .5em;
  margin-top: 1.4rem; padding: .45rem 1rem;
  border-radius: var(--pill);
  background: #FBF8F3;
  box-shadow: inset 0 0 0 1px var(--line-2);
  font-size: .95rem;
}
.rv__badge > span { color: var(--muted); }

.rv__nav { display: flex; gap: .6rem; }

.rv__b {
  all: unset; box-sizing: border-box;
  display: flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%; cursor: pointer;
  color: var(--ink); box-shadow: inset 0 0 0 1px var(--line-2);
  transition: color .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease);
}
.rv__b svg { width: 20px; height: 20px; }
.rv__b:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
@media (hover: hover) {
  .rv__b:hover { background: #1668B4; color: #FBF8F3; box-shadow: inset 0 0 0 1px #1668B4; }
}
@media (hover: none) { .rv__b:active { background: #1668B4; color: #FBF8F3; } }

.rv__hull { --luft: min(28px, var(--pad)); }

.rv__viewport {
  position: relative;
  padding: var(--luft);
  margin: calc(var(--luft) * -1);
  overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x mandatory;

  scroll-padding-inline: var(--luft);
  overscroll-behavior-x: contain;

  scrollbar-width: none;
}
.rv__viewport::-webkit-scrollbar { display: none; }

.rv__viewport.rv--frei { scroll-snap-type: none; }

.rv__viewport { transition: opacity .38s var(--ease); }
.rv__viewport.rv--wechsel { opacity: 0; }

.rv__track {
  display: flex; align-items: stretch; list-style: none;
  margin: 0; padding: 0; gap: clamp(1rem, 2vw, 1.6rem);
}
.rv__c {
  flex: 0 0 auto; width: clamp(255px, 74vw, 27rem);
  scroll-snap-align: start;
}

.rv__c figure {
  position: relative; margin: 0; height: 100%;
  display: flex; flex-direction: column; gap: 1.1rem;
  padding: clamp(1.6rem, 3vw, 2.2rem);
  border-radius: var(--r);
  background: #FBF8F3;

  box-shadow: inset 0 0 0 1px rgba(251, 248, 243, .35), 0 1px 2px rgba(26, 21, 18, .06), 0 14px 30px -14px rgba(26, 21, 18, .28), 0 40px 70px -40px rgba(26, 21, 18, .5);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
@media (hover: hover) {
  .rv__c:hover figure {
    transform: translateY(-3px);
    box-shadow:
      inset 0 0 0 1px rgba(251, 248, 243, .35), 0 2px 4px rgba(26, 21, 18, .06),
      0 22px 40px -16px rgba(26, 21, 18, .32), 0 52px 84px -40px rgba(26, 21, 18, .5);
  }
}

.rv__mark {
  position: absolute; top: .1rem; right: 1.1rem; pointer-events: none;
  font-family: var(--serif); font-size: 5.5rem; line-height: 1;
  color: color-mix(in srgb, #E0A21A 32%, transparent);
}

.rv__stars { display: flex; gap: .18rem; }
.rv__stars .star { width: 17px; height: 17px; fill: #E0A21A; }

.rv__c blockquote { margin: 0; }
.rv__c blockquote p {
  color: var(--ink); font-size: 1.04rem; line-height: 1.6;

  quotes: "\201E" "\201C";
}
.rv__c blockquote p::before { content: open-quote; }
.rv__c blockquote p::after { content: close-quote; }

.rv__c figcaption {
  display: flex; align-items: center; gap: .8rem;
  margin-top: auto; padding-top: 1.1rem; border-top: 1px solid var(--line);
}

.rv__av {
  flex: none; display: grid; place-items: center;
  width: 40px; height: 40px; border-radius: 50%;
  font-size: 1.02rem; font-weight: 600; line-height: 1;
}
.rv__av--a { background: #1668B4; color: #FBF8F3; }
.rv__av--b { background: #E0A21A; color: #1A1512; }
.rv__av--c { background: #1A1512; color: #FBF8F3; }
.rv__who { display: grid; gap: .1rem; min-width: 0; }
.rv__c figcaption b { font-weight: 600; font-size: 1rem; }
.rv__d { font-size: .85rem; color: var(--muted); font-variant-numeric: tabular-nums; }

.rv__rail { position: relative; height: 2px; margin-top: 2.2rem; background: var(--line); border-radius: var(--pill); }

.rv__rail i {
  position: absolute; top: 0; left: 0; height: 100%; width: 0;
  background: var(--sweep); border-radius: var(--pill);
}

.rv__note {
  display: flex; flex-wrap: wrap; gap: .2rem .9rem;
  margin-top: 1.2rem; font-size: .92rem; color: var(--muted);
}
.rv__note .ul { color: var(--ink); }
.rv__note .gg { font-size: .96rem; }

.partners {
  background: #FBF8F3; padding: clamp(3rem, 9vh, 5.5rem) 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.partners__head {
  display: flex; flex-wrap: wrap; gap: .6rem 2rem;
  align-items: baseline; justify-content: space-between;
}

.partners__head:not(:last-child) { margin-bottom: 2.6rem; }
.partners__h { font-size: clamp(1.8rem, 3.1vw, 2.6rem); margin-top: 1rem; }
.partners__note { color: var(--muted); font-size: 1.06rem; max-width: 42ch; }

@media (min-width: 861px) {
  .partners__note { margin-inline-end: max(0px, calc(4.5rem - var(--pad))); }
}

.mq { position: relative; overflow: hidden; --base: clamp(40px, 4.8vw, 62px); }

.mq__t { display: flex; align-items: center; width: max-content; animation: slide 50s linear infinite; }
@keyframes slide { from { transform: translate3d(0, 0, 0); } to { transform: translate3d(-50%, 0, 0); } }
.mq__i {
  flex: none; margin-right: clamp(2.6rem, 6vw, 6rem);
  height: calc(var(--base) * var(--k, 1)); aspect-ratio: var(--ar, 2);
  background-size: contain; background-repeat: no-repeat; background-position: center;
}

.faq { padding-block: clamp(4rem, 12vh, 8rem); }
.faq__grid { display: grid; gap: clamp(2rem, 5vw, 5rem); grid-template-columns: minmax(0, 22rem) minmax(0, 1fr); align-items: start; }
.faq__h { font-size: clamp(2.4rem, 4.6vw, 3.6rem); margin-top: 1.2rem; max-width: 13ch; }

.faq__aside p:not(.eyebrow) { color: var(--muted); font-size: 1.1rem; margin-top: 1.6rem; max-width: 30ch; }

.fq { border-top: 1px solid var(--line-2); }
.fq:last-child { border-bottom: 1px solid var(--line-2); }
.fq h3 { margin: 0; }
.fq__q {
  all: unset; box-sizing: border-box;
  display: flex; align-items: baseline; gap: 1.5rem; width: 100%;
  padding: 1.5rem 0; cursor: pointer; font-family: inherit;
  font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 300;
  letter-spacing: -.012em; line-height: 1.4; color: var(--ink);
}
.fq__q > span:first-child { flex: 1; transition: color .4s var(--ease); }
.fq__ic { position: relative; flex: none; width: 15px; height: 15px; align-self: center; }
.fq__ic::before, .fq__ic::after {
  content: ""; position: absolute; left: 0; top: 7px; width: 15px; height: 1.5px;
  background: var(--muted); transition: transform .5s var(--ease), background .4s var(--ease);
}
.fq__ic::after { transform: rotate(90deg); }
.fq.on .fq__ic::before, .fq.on .fq__ic::after { background: var(--accent); }
.fq.on .fq__ic::after { transform: rotate(0deg); }
.fq.on .fq__q > span:first-child { color: var(--accent); }
@media (hover: hover) { .fq__q:hover > span:first-child { color: var(--accent); } }

.fq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .55s var(--ease); }
.fq.on .fq__a { grid-template-rows: 1fr; }
.fq__a > div { overflow: hidden; visibility: hidden; transition: visibility 0s linear .55s; }
.fq.on .fq__a > div { visibility: visible; transition-delay: 0s; }
.fq__a p { color: var(--muted); font-size: 1.14rem; max-width: 56ch; padding: 0 3rem 1.9rem 0; }

.stats {
  display: flex; flex-wrap: wrap; gap: clamp(2rem, 6vw, 5.5rem);
  margin-top: clamp(3rem, 9vh, 5rem); padding-top: clamp(2rem, 5vh, 3rem);
  border-top: 1px solid var(--line-2);
}
.stat { display: grid; gap: .3rem; }
.stat b {
  font-size: clamp(2.4rem, 5.8vw, 4.2rem); font-weight: 200; letter-spacing: -.04em;
  line-height: 1; color: var(--accent); font-variant-numeric: tabular-nums;
}
.stat span { font-size: .84rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }

@media (max-width: 1150px) {
  .chain__pin { padding-top: 7.6rem; }
  .hs__head { padding-top: 7.6rem; }
}
@media (min-width: 861px) and (max-width: 1150px) {
  .cs { grid-template-columns: minmax(0, 1fr); }
  .cs__foto { display: none; }
}

@media (max-width: 860px) {

  .cs {
    grid-template-columns: minmax(0, 1fr) clamp(6.5rem, 28vw, 11rem);
    column-gap: 1rem; align-items: start;
  }
  .cs__n { grid-column: 1; }
  .cs__foto { grid-row: 1 / span 5; align-self: start; rotate: 2deg; margin-inline-end: 0; }

  .hs__viewport::before { display: none; }

}

@media (max-width: 860px) {
  .chain__pin, .hs__head { padding-inline-end: var(--pad); }
}

@media (max-width: 600px) {
  .cs__foto > figcaption { display: none; }
}

@media (prefers-reduced-motion: reduce) {

  .cs__foto { opacity: 1 !important; translate: none !important; }
}

.foot {
  position: relative; isolation: isolate;
  margin-top: clamp(4rem, 10vh, 7rem);
  padding-block: clamp(3.5rem, 9vh, 6rem) clamp(2rem, 5vh, 3rem);
  color: var(--ink);
}

.foot::after {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 2px;
  background: var(--sweep);
}
.foot__grid {
  display: grid; gap: clamp(2.4rem, 6vw, 5rem);
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 2fr);
  align-items: start;
}
.foot__kontakt .mark { margin-bottom: 2.4rem; }

.foot__tel {
  display: inline-block; margin-top: .9rem;
  font-size: clamp(min(1.9rem, 9vw), 3.4vw, 3rem); font-weight: 200;
  letter-spacing: -.02em; line-height: 1.1;
  color: var(--ink); text-decoration: none;
  font-variant-numeric: tabular-nums;
  transition: color .25s var(--ease);
}
.foot__zeilen { margin-top: 1.5rem; display: grid; gap: .45rem; justify-items: start; }
.foot__zeilen a, .foot__zeilen span { font-size: 1.02rem; color: var(--muted); }
.foot__zeilen a { text-decoration: none; transition: color .25s var(--ease); }
.foot__nav {
  display: grid; gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}
.foot__liste { list-style: none; margin: 1.1rem 0 0; padding: 0; display: grid; gap: .6rem; justify-items: start; }
.foot__liste a { font-size: 1.04rem; color: var(--muted); text-decoration: none; }
.foot__liste a[aria-current="page"] { color: var(--ink); }

.foot__liste + .eyebrow { margin-top: 2.2rem; }
.foot__legal {
  margin-top: clamp(2.8rem, 7vh, 4.5rem); padding-top: 1.4rem; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: .8rem 2rem; align-items: center; justify-content: space-between;
}
.foot__legal p { font-size: .92rem; color: var(--muted); }
.foot__oben {
  display: inline-flex; align-items: center; gap: .5rem;
  min-height: 2.4rem; padding: .45rem 1rem;
  font-size: .78rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink); text-decoration: none;
  border: 1px solid var(--line-2); border-radius: var(--pill);
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.foot__oben svg { width: .9rem; height: .9rem; }
@media (hover: hover) {
  .foot__liste a:hover, .foot__zeilen a:hover { color: var(--ink); }
  .foot__tel:hover { color: var(--accent); }
  .foot__oben:hover { border-color: var(--ink); transform: translateY(-2px); }
}
@media (max-width: 860px) {
  .foot__grid { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 520px) {
  .foot__nav { grid-template-columns: minmax(0, 1fr); }
  .foot__legal { flex-direction: column; align-items: flex-start; }
}
@media (prefers-reduced-motion: reduce) { .foot__tel, .foot__zeilen a, .foot__oben { transition: none; } }

.ai-badge--slot { right: auto; left: .8rem; bottom: .8rem; font-size: .74rem; }

.skopf { padding-top: clamp(7rem, 16vh, 10rem); padding-bottom: clamp(2.6rem, 7vh, 4.4rem); }
.skopf__in {
  display: grid; grid-template-columns: minmax(0, 1fr) auto;
  align-items: center; column-gap: clamp(2rem, 6vw, 5rem);
}
.skopf__werk {
  width: min(31vw, 24rem); justify-self: end;
  margin-inline-end: max(0px, calc(5.5rem - var(--pad)));
}
.skopf__karte { aspect-ratio: 4 / 5; rotate: 3deg; animation: karteInA 1.7s var(--ease); }
@media (max-width: 860px) {

  .skopf__in { grid-template-columns: minmax(0, 1fr); }
  .skopf__werk {
    width: min(100%, 22rem); justify-self: start; margin-inline-end: 0;
    margin-top: clamp(2rem, 6vh, 3rem);
  }
  .skopf__karte { rotate: 0deg; }
}

.shero {
  position: relative;
  min-height: clamp(28rem, 62vh, 42rem);
  display: flex; align-items: center;
  padding-top: clamp(9rem, 20vh, 12rem);
  padding-bottom: clamp(3.5rem, 8vh, 5.5rem);

  --lr-x: 73%; --lr-y: 50%; --lr-mx: 62%; --lr-my: 46%;
}

.shero__in {
  display: grid; grid-template-columns: minmax(0, 1fr) auto;
  align-items: center; column-gap: clamp(2rem, 5vw, 4rem);
  padding-inline-end: max(0px, calc(4.5rem - var(--pad)));
}
.shero__txt { position: relative; z-index: 1; min-width: 0; }

.shero__h {

  font-size: clamp(min(2.6rem, 9.6vw), 4.6vw, 4.2rem); font-weight: 200;
  letter-spacing: -.03em; line-height: 1.06; margin: 1.2rem 0 0; max-width: 18ch;
  hyphens: manual;
}
.shero__intro {
  margin-top: 1.4rem; max-width: 54ch;
  color: var(--muted);
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
}

.shero__zeile {
  margin-top: 1.5rem; max-width: 54ch;
  color: var(--muted);
  font-size: .95rem; line-height: 1.5;
}

.shero__werk {
  width: min(620px, 44vw);
  justify-self: end; margin-block: 3rem 5rem;
}
.shero--hoch .shero__werk { width: min(478px, 34vw); }

.shero__tafel { z-index: 2; --px: -7px; --py: -5px; }
.shero--hoch .shero__tafel {
  aspect-ratio: 478 / 598;
  max-height: 80vh; max-height: 80svh;
}

.shero__karte { position: absolute; aspect-ratio: 4 / 5; }
.shero__karte--hinten {
  width: 34%; right: -2%; bottom: -30%; z-index: 1; rotate: 5deg;
  --px: 9px; --py: 7px;
}
.shero__karte--vorn {
  width: 30%; left: -12%; top: -22%; z-index: 3; rotate: -4deg;
  --px: -20px; --py: -14px;
}
.shero__karte--paar {
  width: 46%; left: -12%; top: -22%; z-index: 3; rotate: -4deg;
  aspect-ratio: 8 / 5;
  --px: -16px; --py: -11px;
}
.shero--hoch .shero__karte--hinten { width: 42%; bottom: -14%; }
.shero--hoch .shero__karte--vorn { width: 36%; left: -14%; top: -12%; }

.shero__ln {
  display: block; overflow: hidden;
  padding: .3em .12em .3em .12em; margin: -.3em -.12em -.3em -.12em;
}
.shero__ln > span { display: block; }
@keyframes sheroZeileA { 0%, 12% { transform: translate3d(0, 130%, 0); } 100% { transform: none; } }
@keyframes sheroZeileB { 0%, 26% { transform: translate3d(0, 130%, 0); } 100% { transform: none; } }
@keyframes sheroBild { 0% { transform: scale(1.04); } 100% { transform: none; } }
.shero__ln:nth-child(1) > span { animation: sheroZeileA 1.25s var(--ease); }
.shero__ln:nth-child(n+2) > span { animation: sheroZeileB 1.4s var(--ease); }
.shero .eyebrow { animation: fadeUpA 1s var(--ease); }
.shero__intro { animation: fadeUpB 1.6s var(--ease); }
.shero__zeile { animation: fadeUpC 2s var(--ease); }
.shero__tafel > img { animation: sheroBild 1.8s var(--ease); }
.shero__karte--hinten { animation: karteInA 1.7s var(--ease); }
.shero__karte--vorn, .shero__karte--paar { animation: karteInB 2.1s var(--ease); }

@media (max-width: 860px) {

  .shero {
    padding-bottom: clamp(2.6rem, 6vh, 4.2rem);
    --lr-x: 50%; --lr-y: 90%; --lr-mx: 50%; --lr-my: 60%;
  }
  .shero__in { grid-template-columns: minmax(0, 1fr); padding-inline-end: 0; }

  .shero__txt { display: contents; }
  .shero .eyebrow { grid-row: 1; }
  .shero__h { grid-row: 2; }
  .shero__intro { grid-row: 3; }
  .shero__werk, .shero--hoch .shero__werk {
    grid-row: 4; width: 100%; justify-self: stretch;
    margin-block: clamp(1.6rem, 4vh, 2.4rem) 0;
  }

  .shero__zeile { grid-row: 5; margin-top: clamp(1.8rem, 4vh, 2.4rem); }
  .shero--hoch .shero__werk { width: min(100%, 24rem); justify-self: start; }
  .shero__karte { display: none; }
  .shero__h { font-size: clamp(min(2.6rem, 9.6vw), 6vw, 4.6rem); }
}
.skopf__h {

  font-size: clamp(min(2.6rem, 9.6vw), 6vw, 4.6rem); font-weight: 200;
  letter-spacing: -.03em; line-height: 1.06; margin: 1.2rem 0 0; max-width: 18ch;

  hyphens: manual;
}
.skopf__intro {
  margin-top: 1.8rem; max-width: 54ch;
  color: var(--muted); font-size: clamp(1.1rem, 1.6vw, 1.3rem);
}
.skopf__intro + .skopf__intro { margin-top: 1rem; }

.ph {
  margin: 0; display: grid; place-items: center;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border-radius: var(--r);
  background: #FBF8F3;
  box-shadow: inset 0 0 0 1px var(--line-2);
}
.ph__in { max-width: 34ch; text-align: center; }
.ph__tag {
  display: inline-flex; align-items: center; gap: .6em;
  font-size: .76rem; text-transform: uppercase; letter-spacing: .22em;
  font-weight: 700; color: var(--accent);
}
.ph__tag::before {
  content: ""; width: .5em; height: .5em; border-radius: 50%; background: var(--warm);
}
.ph__brief { margin-top: .9rem; color: var(--muted); font-size: .98rem; line-height: 1.5; }

.ph--leistung-badsanierung { aspect-ratio: 4 / 5; }

.lnav {

  margin-block: clamp(2rem, 6vh, 3.5rem) clamp(1.5rem, 4vh, 2.5rem);
  padding-block: .55rem;
}
.lnav__in { display: flex; flex-wrap: wrap; gap: .55rem; }
.lnav__a {
  display: inline-flex; align-items: center;
  padding: .5rem 1.1rem; border-radius: var(--pill);
  text-decoration: none; color: var(--ink);
  font-size: .92rem; letter-spacing: .01em;
  box-shadow: inset 0 0 0 1px var(--line-2);
  transition: box-shadow .3s var(--ease), color .3s var(--ease), background .3s var(--ease);
}
@media (hover: hover) {
  .lnav__a:hover {
    color: #FBF8F3; background: #1668B4;
    box-shadow: inset 0 0 0 1px #1668B4;
  }
}
@media (hover: none) { .lnav__a:active { color: #FBF8F3; background: #1668B4; } }

.lnav__a.on {
  color: #FBF8F3; background: #1668B4;
  box-shadow: inset 0 0 0 1px #1668B4;
}

@media (min-width: 861px) {
  .js .lnav { position: sticky; top: var(--kopf, 4.6rem); z-index: 80; }
  .js .lnav--klebt {
    background: rgba(242, 238, 232, .95);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 14px 30px -26px rgba(26, 21, 18, .55);
  }
  .js .lv { scroll-margin-top: calc(var(--kopf, 4.6rem) + var(--leiste, 3rem) + 1rem); }
}

.lst { padding-bottom: clamp(2rem, 6vh, 4rem); }
.lv {
  display: grid; align-items: center;
  gap: clamp(1.6rem, 4vw, 4.5rem);
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  padding-block: clamp(2.5rem, 7vh, 5rem);

  scroll-margin-top: clamp(5.5rem, 12vh, 8rem);
}
.lv + .lv { border-top: 1px solid var(--line); }

.js .lv__ph, .js .lv__body {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.js .lv__body { transition-delay: 110ms; }
.js .lv.on .lv__ph, .js .lv.on .lv__body { opacity: 1; transform: none; }

.lv--kehr .lv__ph { grid-column: 2; grid-row: 1; }
.lv--kehr .lv__body { grid-column: 1; grid-row: 1; }
.lv--textonly { grid-template-columns: minmax(0, 1fr); }

.lv__ph { position: relative; }

.lv__tafel > img { max-height: 80vh; }

.lv__body { position: relative; }

.lv__ghost {
  position: absolute; right: 0; top: -.32em; z-index: -1;
  font-size: clamp(min(9rem, 40vw), 22vw, 18rem); font-weight: 100; line-height: .8;
  letter-spacing: -.06em;

  color: color-mix(in srgb, var(--ink) 6%, transparent);
  pointer-events: none; user-select: none;
}
.js .lv__ghost {
  opacity: 0; transform: translate3d(0, .12em, 0);
  transition: opacity 1.4s var(--ease) .2s, transform 1.4s var(--ease) .2s;
}
.js .lv.on .lv__ghost { opacity: 1; transform: none; }
.lv__n { font-size: .8rem; font-weight: 700; color: var(--accent); letter-spacing: .2em; text-transform: uppercase; }
.lv__t { margin-top: .5rem; font-size: clamp(1.9rem, 3.6vw, 3rem); font-weight: 300; letter-spacing: -.025em; }
.lv__d { margin-top: 1.1rem; color: var(--muted); font-size: clamp(1.04rem, 1.4vw, 1.18rem); max-width: 46ch; }

.lvd { margin-top: 1.8rem; }
.lvd__s {
  display: flex; align-items: center; gap: .7rem;
  cursor: pointer; list-style: none;
  font-size: .8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .18em; color: var(--muted);
  padding: .35rem 0;
  transition: color .3s var(--ease);
}

.lvd__s::-webkit-details-marker { display: none; }
.lvd__s::marker { content: ""; }
.lvd__s::after {
  content: ""; flex: none;
  width: .62rem; height: .62rem;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: translateY(-.18em) rotate(45deg);
  transition: transform .3s var(--ease);
}
.lvd[open] .lvd__s::after { transform: translateY(.1em) rotate(-135deg); }

@media (hover: hover) { .lvd__s:hover { color: var(--ink); } }
.lvd__s:focus-visible { outline: 3px solid #1668B4; outline-offset: 4px; border-radius: 2px; }
.lvd__in { padding-top: .2rem; }
.lvd__in .lv__list { margin-top: .7rem; }
.lv__list { list-style: none; margin: .9rem 0 0; padding: 0; display: grid; gap: .55rem; max-width: 54ch; }
.lv__list li { position: relative; padding-left: 1.5rem; color: var(--ink); font-size: 1.04rem; }

.lv__list li::before {
  content: ""; position: absolute; left: 0; top: .62em;
  width: .45em; height: .45em; border-radius: 50%; background: var(--warm);
}

.lv__grenze {
  margin-top: 1.6rem; padding: .9rem 1.1rem;
  border-left: 3px solid var(--warm);
  background: #FBF8F3;
  color: var(--muted); font-size: 1rem; max-width: 56ch;
}
.lv__grenze b { color: var(--ink); font-weight: 600; }

.lst--insel {
  padding-bottom: clamp(3rem, 9vh, 5.5rem); padding-top: clamp(3rem, 9vh, 5.5rem);
  --lr-x: 76%; --lr-y: 50%; --lr-mx: 60%; --lr-my: 50%;
}
.lst--insel .lv { padding-block: 0; }
.lst + .lst--insel { margin-top: 0; }
.lst--insel + .lst .lv:first-child { border-top: 0; }
.lv__werk .lv__tafel { z-index: 2; --px: -7px; --py: -5px; }
.lv__karte {
  position: absolute; width: 36%; aspect-ratio: 4 / 5;
  left: -6%; bottom: -12%; z-index: 3; rotate: -4deg;
  --px: -20px; --py: -14px;
}
@media (max-width: 860px) {
  .lv__karte { display: none; }

  .lst--insel { --lr-x: 50%; --lr-y: 22%; --lr-my: 35%; }
}

.pak {
  padding-block: clamp(3rem, 8vh, 5rem);
  background: #FBF8F3;
  border-block: 1px solid var(--line);
}
.pak__h { font-size: clamp(2rem, 4vw, 3.2rem); margin-top: 1.1rem; }
.pak__d { margin-top: 1.4rem; color: var(--muted); font-size: clamp(1.06rem, 1.4vw, 1.18rem); max-width: 52ch; }

.pak__row {
  list-style: none; margin: clamp(2rem, 5vh, 3rem) 0 0; padding: 0;
  display: grid; gap: 1px;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  background: var(--line-2);
  border: 1px solid var(--line-2); border-radius: var(--r); overflow: hidden;
}
.pak__s {
  display: grid; gap: .5rem; align-content: center;
  padding: clamp(1.5rem, 3.5vw, 2.4rem) clamp(1.2rem, 2.5vw, 1.8rem);
  background: #F2EEE8; min-height: 8rem;
}
.pak__sn { font-size: clamp(1.3rem, 2.2vw, 1.7rem); font-weight: 300; letter-spacing: -.015em; }
.pak__sk {
  font-size: .76rem; text-transform: uppercase; letter-spacing: .22em;
  font-weight: 700; color: var(--muted);
}

.pak__d--jetzt {
  margin-top: clamp(2rem, 5vh, 3rem); padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  color: var(--ink); max-width: 56ch;
}

.abl {
  margin-top: clamp(3rem, 8vh, 5rem);
  padding-block: clamp(3.5rem, 11vh, 7rem);
  --lr-x: 86%; --lr-y: 8%; --lr-mx: 55%; --lr-my: 40%;
}
.abl__h { font-size: clamp(2rem, 4vw, 3.2rem); margin-top: 1.1rem; }
.abl__row {
  list-style: none; margin: clamp(2.4rem, 6vh, 3.6rem) 0 0; padding: 0;
  display: grid; gap: clamp(1.6rem, 3vw, 2.4rem);
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
}
.abl__s { padding-top: 1.2rem; border-top: 1px solid var(--line-2); }
.abl__n {
  display: block; line-height: .9;
  font-size: clamp(min(3.2rem, 15vw), 5.5vw, 5rem); font-weight: 200;
  letter-spacing: -.04em; color: var(--accent);
}
.abl__t { margin-top: .9rem; font-size: 1.28rem; font-weight: 400; letter-spacing: -.01em; }
.abl__d { margin-top: .6rem; color: var(--muted); font-size: 1rem; line-height: 1.55; }
.abl__dauer { margin-top: clamp(2.4rem, 6vh, 3.6rem); color: var(--muted); font-size: 1.04rem; max-width: 62ch; }

.lout { padding-block: clamp(2.5rem, 7vh, 4.5rem); border-top: 1px solid var(--line-2); }
.lout__h { font-size: clamp(1.9rem, 3.6vw, 2.8rem); max-width: 20ch; }
.lout__d { margin-top: 1.3rem; color: var(--muted); font-size: clamp(1.06rem, 1.4vw, 1.18rem); max-width: 52ch; }

.lout__do, .hs__do {
  display: flex; flex-wrap: wrap; gap: .9rem; align-items: center; margin-top: 2rem;
}
.hs__do { margin-top: .6rem; gap: .7rem; }

.kgrid {
  display: grid; gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: minmax(0, 1fr) minmax(0, 20rem);
  align-items: start;

  padding-block: clamp(2.5rem, 7vh, 4rem);
}
.kfrm { min-width: 0; }

.kside { align-self: stretch; }
.kside__werk { position: sticky; top: clamp(5.5rem, 12vh, 7.5rem); }
.kside__werk::before { inset: -14% -14% -12% -14%; }
.kside__in {
  position: relative; z-index: 1;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--r);
  background: var(--surface);
  box-shadow: inset 0 0 0 1px var(--line), inset 0 0 0 1px rgba(251, 248, 243, .35), 0 1px 2px rgba(26, 21, 18, .06), 0 14px 30px -14px rgba(26, 21, 18, .28), 0 40px 70px -40px rgba(26, 21, 18, .5);
}
.kside__ph { margin: 0; display: grid; justify-items: start; gap: .8rem; }

.kside__ph img { width: clamp(7rem, 12vw, 10rem); height: auto; display: block; }
.kside__ph figcaption { display: grid; gap: .15rem; }
.kside__ph b { font-size: 1.1rem; font-weight: 400; }
.kside__ph span { font-size: .8rem; text-transform: uppercase; letter-spacing: .16em; color: var(--accent); font-weight: 700; }

.kside__lbl {
  margin-top: 1.8rem; padding-top: 1.5rem; border-top: 1px solid var(--line);
  font-size: .76rem; text-transform: uppercase; letter-spacing: .2em;
  font-weight: 700; color: var(--muted);
}
.kside__tel {
  display: inline-block; margin-top: .5rem;
  font-size: clamp(1.5rem, 2.4vw, 1.9rem); font-weight: 300; letter-spacing: -.02em;
  color: var(--ink); text-decoration: none; font-variant-numeric: tabular-nums;
}
@media (hover: hover) { .kside__tel:hover { color: var(--accent); } }
.kside__rows { display: grid; gap: .7rem; margin-top: 1.4rem; justify-items: start; }
.kside__rows a, .kside__rows span { font-size: 1rem; }
.kside__rows span { color: var(--muted); }

.kwege { padding-top: clamp(2.5rem, 7vh, 4rem); }
.kwege__l {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 0 clamp(1.5rem, 3vw, 3rem);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.kweg__a {
  position: relative; display: grid; gap: .55rem; align-content: start;
  padding: 1.3rem 0 1.4rem; text-decoration: none; color: var(--ink);
  border-top: 1px solid var(--line-2);
}
.kweg__a::before {
  content: ""; position: absolute; left: 0; top: -1px; height: 2px; width: 100%;
  border-radius: var(--pill); background: var(--sweep);
  transform: scaleX(0); transform-origin: 0 50%;
  transition: transform .7s var(--ease);
}
@media (hover: hover) {
  .kweg__a:hover::before { transform: scaleX(1); }
  .kweg__a:hover .kweg__v { color: var(--accent); }
}
.kweg__a:focus-visible::before { transform: scaleX(1); }
.kweg__k {
  display: flex; align-items: center; gap: .55em;
  font-size: .8rem; letter-spacing: .2em; text-transform: uppercase;
  font-weight: 700; color: var(--accent);
}
.kweg__k svg { width: 17px; height: 17px; flex: none; fill: var(--accent); }
.kweg__v {
  font-size: clamp(min(1.5rem, 7vw), 2.6vw, 2.3rem); font-weight: 200;
  letter-spacing: -.03em; line-height: 1.1; transition: color .4s var(--ease);
}
.kweg__z { color: var(--muted); font-size: .95rem; line-height: 1.5; max-width: 30ch; }

.kwege + .kgrid { padding-top: clamp(1.5rem, 4vh, 2.5rem); }

@media (max-width: 60rem) {
  .kwege__l { grid-template-columns: minmax(0, 1fr); }
  .kweg__a { padding: .85rem 0 .95rem; gap: .3rem; }
  .kweg__z { font-size: .9rem; }
  .kweg:last-child .kweg__a { border-bottom: 1px solid var(--line-2); }
}

.bnr {
  margin-top: clamp(3rem, 8vh, 5rem);
  padding-block: clamp(3.5rem, 11vh, 7rem);
  --lr-x: 50%; --lr-y: 24%; --lr-mx: 50%; --lr-my: 40%;
}
.bnr__in { display: grid; justify-items: center; text-align: center; }
.bnr__logo {
  display: block; height: clamp(44px, 7vw, 74px); aspect-ratio: 600 / 146;
  background-image: var(--logo-src);
  background-size: contain; background-repeat: no-repeat; background-position: center;
}
.bnr__claim {
  margin-top: 1.6rem;
  font-size: clamp(1.4rem, 3vw, 2.2rem); font-weight: 200; letter-spacing: -.02em;
}
.bnr__line {
  display: block; height: 1px; width: min(22rem, 60%); margin-top: 1.8rem;
  background: var(--sweep); border-radius: var(--pill);
  box-shadow: 0 0 18px 1px rgba(59, 155, 236, .45);
}
.bnr__list { margin-top: 1.8rem; justify-content: center; max-width: 44rem; }

.wdg { padding-block: clamp(3.5rem, 10vh, 6.5rem); --lr-y: 38%; --lr-my: 40%; }
.wdg__h { font-size: clamp(1.9rem, 4vw, 3rem); margin-top: 1rem; }
.wdg__d { margin-top: 1.1rem; color: var(--muted); font-size: 1.08rem; max-width: 58ch; line-height: 1.7; }

.wdg__grid {
  list-style: none; padding: 0; margin-top: clamp(2rem, 5vh, 3.2rem);
  display: grid; gap: clamp(1rem, 2.4vw, 1.8rem);
  grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 22.5rem) { .wdg__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 60rem) {
  .wdg__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

  .wdg__grid .auftritt:nth-child(3n+1) { transition-delay: 0ms; }
  .wdg__grid .auftritt:nth-child(3n+2) { transition-delay: 90ms; }
  .wdg__grid .auftritt:nth-child(3n) { transition-delay: 180ms; }
}
.wdgi { margin: 0; }

.wdgi__img {
  display: block; width: 100%; height: auto;
  aspect-ratio: 4 / 5; object-fit: cover;
  background: #FBF8F3;
}

.wdgi__fr { display: block; overflow: hidden; border-radius: var(--r); background: #FBF8F3; }

.wdgi__fr, .vnp__paar {
  box-shadow:
    inset 0 0 0 1px rgba(251, 248, 243, .35), 0 1px 2px rgba(26, 21, 18, .06),
    0 12px 26px -12px rgba(26, 21, 18, .26);
}
.js .wdgi__fr .wdgi__img { transform: scale(1.06); transition: transform 1.1s var(--ease); }
.js .auftritt.on .wdgi__fr .wdgi__img { transform: none; }

.wdg--sub { border-top: 1px solid var(--line-2); }

.vn { padding-block: clamp(3.5rem, 10vh, 6.5rem); --lr-y: 36%; --lr-my: 40%; }
.vn__h { font-size: clamp(1.9rem, 4vw, 3rem); margin-top: 1rem; }
.vn__d { margin-top: 1.1rem; color: var(--muted); font-size: 1.08rem; max-width: 58ch; line-height: 1.7; }

.vnp { margin-top: clamp(2.2rem, 5vh, 3.4rem); }
.vnp__paar { margin: 0; }
.vnp__img { aspect-ratio: 4 / 5; }

.vnp__txt { margin-top: 1.8rem; max-width: 62ch; }
.vnp__t { font-size: clamp(1.15rem, 2vw, 1.5rem); }
.vnp__d { margin-top: .5rem; color: var(--muted); line-height: 1.65; }

.insel {
  position: relative; isolation: isolate;
  margin-top: clamp(3rem, 8vh, 5rem);
  padding-block: clamp(3.5rem, 11vh, 7rem);
  background: radial-gradient(56% 62% at var(--lr-x, 77%) var(--lr-y, 45%), rgba(224, 162, 26, .22), transparent 70%), radial-gradient(52% 44% at 0% 100%, rgba(22, 104, 180, .07), transparent 64%), linear-gradient(180deg, transparent 62%, rgba(26, 21, 18, .035) 100%), linear-gradient(168deg, #FBF8F3 0%, #F2EEE8 55%, #F2EEE8 100%);
  color: var(--ink);
}
.insel::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image: linear-gradient(to right, rgba(26, 21, 18, .075) 1px, transparent 1px), linear-gradient(to bottom, rgba(26, 21, 18, .075) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: radial-gradient(85% 75% at var(--lr-mx, 60%) var(--lr-my, 42%), #000 18%, transparent 78%);
  mask-image: radial-gradient(85% 75% at var(--lr-mx, 60%) var(--lr-my, 42%), #000 18%, transparent 78%);
}

.insel + .insel { margin-top: 0; }

.hs + .insel { margin-top: 0; }

.insel + .bfilm { margin-top: 0; }

.bmos {
  list-style: none; padding: 0; margin: clamp(2rem, 5vh, 3.2rem) 0 0;
  display: grid; gap: clamp(1rem, 2vw, 1.4rem);
  grid-template-columns: minmax(0, 1fr);
}
.bmos__i { margin: 0; position: relative; }
.bmos__k { margin: 0; }
.bmos__img { aspect-ratio: 4 / 5; }

.bmos__k > figcaption { color: #1A1512; }
@media (min-width: 22.5rem) {
  .bmos { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bmos__i--leit { grid-column: 1 / -1; }
}
@media (min-width: 60rem) {
  .bmos { grid-template-columns: minmax(0, 2fr) minmax(0, 1fr); grid-template-rows: 1fr 1fr; }
  .bmos__i--leit { grid-column: 1; grid-row: 1 / 3; }

  .bmos__i:not(.bmos__i--leit) { display: grid; }
  .bmos__i:not(.bmos__i--leit) .bmos__img { aspect-ratio: auto; }

  .js .bmos__i:nth-child(2) { transition-delay: 90ms; }
  .js .bmos__i:nth-child(3) { transition-delay: 180ms; }
}

.inh__zahlen { margin-top: clamp(2.5rem, 7vh, 4.5rem); }
.stats--gross {
  margin-top: 0; padding-top: clamp(2.5rem, 7vh, 4.5rem);
  border-top: 1px solid var(--line-2);
  gap: clamp(2.4rem, 7vw, 6rem);
}
.stats--gross .stat b {
  font-size: clamp(min(3.4rem, 17vw), 9vw, 7rem);
  color: var(--accent);
}
.stats--gross .stat span {
  display: block; margin-top: .5rem;
  font-size: .82rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted);
}

.inh {
  margin-top: clamp(3rem, 8vh, 5rem);
  padding-block: clamp(3.5rem, 11vh, 7rem);
}
.inh__in {
  display: grid; gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: minmax(0, 26rem) minmax(0, 1fr);
  align-items: end;
}
.inh__werk { align-self: end; }

.inh__werk::before { inset: -22% -10% -18% -12%; }
.inh__ph { margin: 0; position: relative; z-index: 1; --px: -7px; --py: -5px; }
.inh__ph img { display: block; width: 100%; height: auto; }
.inh__karte {
  position: absolute; width: 52%; aspect-ratio: 4 / 5;
  left: -8%; top: 2%; z-index: 0; rotate: -5deg;
  --px: 9px; --py: 7px;
}
.inh__txt { padding-bottom: clamp(.5rem, 2vh, 1.5rem); }
.inh__n { font-size: clamp(min(2.2rem, 9vw), 4.2vw, 3.6rem); margin-top: 1rem; }
.inh__s {
  margin-top: .7rem; color: var(--muted);
  font-size: .84rem; letter-spacing: .2em; text-transform: uppercase;
}
.inh__line {
  display: block; height: 1px; width: min(12rem, 50%); margin-top: 1.7rem;
  background: var(--sweep); border-radius: var(--pill);
}
.inh__satz {
  margin-top: 1.7rem; max-width: 26ch;
  font-size: clamp(min(1.4rem, 6.2vw), 2.4vw, 2.1rem); font-weight: 200;
  letter-spacing: -.015em; line-height: 1.25; text-wrap: balance;
}
.inh__d {
  margin-top: 1.3rem; max-width: 50ch; color: var(--muted);
  font-size: clamp(1.02rem, 1.3vw, 1.1rem); line-height: 1.7;
}
@media (max-width: 60rem) {
  .inh__in { grid-template-columns: minmax(0, 1fr); }
  .inh__werk { width: min(15rem, 66%); }

  .inh__txt { padding-bottom: 0; }
}
@media (max-width: 860px) {
  .inh__karte { display: none; }

  .inh { --lr-x: 35%; --lr-y: 12%; --lr-my: 30%; }
}

.bfilm {
  position: relative; isolation: isolate; overflow: hidden;
  margin-top: clamp(3rem, 8vh, 5rem);
  padding-block: clamp(4rem, 11vh, 7rem);
  --lr-x: 80%; --lr-y: 50%; --lr-mx: 66%; --lr-my: 50%;
}
.bfilm__in {
  display: grid; gap: clamp(2rem, 5vw, 4.5rem);
  grid-template-columns: minmax(0, 1fr) minmax(0, 23rem);
  align-items: center;
}
.bfilm__h {
  margin-top: 1rem;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  max-width: 15ch;
}

.bfilm__d {
  margin-top: 1.2rem; max-width: 44ch;
  font-size: clamp(1.02rem, 1.5vw, 1.16rem); line-height: 1.7;
  color: var(--muted);
}
.bfilm__m {
  margin-top: 1.4rem;
  font-size: .78rem; letter-spacing: .18em; text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
}

.bfilm__werk { position: relative; z-index: 1; }
.bfilm__med { position: relative; min-width: 0; z-index: 2; }
.bfilm__karte { position: absolute; margin: 0; aspect-ratio: 4 / 5; }
.bfilm__karte--hinten {
  width: 44%; left: -14%; bottom: -8%; z-index: 1; rotate: -5deg;
  --px: 9px; --py: 7px;
}
.bfilm__karte--vorn {
  width: 40%; right: -8%; top: 9%; z-index: 3; rotate: 4deg;
  --px: -18px; --py: -13px;
}
.bfilm__v {
  display: block; width: 100%; height: auto;
  aspect-ratio: 478 / 850;

  object-fit: cover;

  background: rgba(9, 7, 5, .5);
}

.bfilm__play {
  position: absolute; inset: 0;

  display: grid; grid-auto-flow: row; gap: 1rem;
  align-content: center; justify-items: center;
  width: 100%; height: 100%;
  border: 0; padding: 0; margin: 0;
  background: transparent;
  color: #EDE5DA;
  cursor: pointer;
  border-radius: var(--r);
}
.bfilm__scheibe {
  width: clamp(68px, 8vw, 88px); aspect-ratio: 1; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(9, 7, 5, .38);
  border: 1px solid rgba(237, 229, 218, .55);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px -18px rgba(0, 0, 0, .8);
  color: #EDE5DA;
  transition: background .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}

.bfilm__scheibe svg { width: 30%; height: 30%; fill: currentColor; margin-left: 7%; }
.bfilm__pl {
  font-size: .74rem; letter-spacing: .2em; text-transform: uppercase;
  font-weight: 500;
  color: color-mix(in srgb, #EDE5DA 86%, transparent);
  text-shadow: 0 1px 3px rgba(9, 7, 5, .8);
  transition: color .3s var(--ease);
}
@media (hover: hover) {
  .bfilm__play:hover .bfilm__scheibe {
    background: #EDE5DA; border-color: #EDE5DA; color: #0B0906;
    transform: scale(1.05);
  }
  .bfilm__play:hover .bfilm__pl { color: #EDE5DA; }
}
@media (prefers-reduced-motion: reduce) { .bfilm__scheibe, .bfilm__pl { transition: none; } }
.bfilm__play:focus-visible { outline: 3px solid #EDE5DA; outline-offset: 4px; }

.bfilm__ton {
  position: absolute; top: .85rem; left: .85rem;
  width: 2.75rem; height: 2.75rem;
  display: grid; place-items: center;
  border: 0; padding: 0; margin: 0;
  border-radius: 50%;
  background: rgba(9, 7, 5, .74);
  box-shadow: 0 0 0 1px rgba(237, 229, 218, .18);
  color: #EDE5DA;
  cursor: pointer;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.bfilm__ton svg { width: 1.45rem; height: 1.45rem; display: block; }
.bfilm__ton-k { fill: currentColor; }
.bfilm__ton-an path, .bfilm__ton-aus path {
  fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round;
}

.bfilm__ton-an { display: none; }
.bfilm__ton[data-ton="an"] .bfilm__ton-an { display: block; }
.bfilm__ton[data-ton="an"] .bfilm__ton-aus { display: none; }
@media (hover: hover) {
  .bfilm__ton:hover { background: rgba(9, 7, 5, .88); transform: scale(1.06); }
}
.bfilm__ton:focus-visible { outline: 3px solid #EDE5DA; outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) { .bfilm__ton { transition: none; } }

@media (max-width: 860px) {
  .bfilm__in { grid-template-columns: minmax(0, 1fr); }
  .bfilm__h { max-width: none; }
  .bfilm__werk {
    width: 100%; max-width: 19rem; margin-inline: auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: .8rem;
  }
  .bfilm__med { grid-column: 1 / -1; grid-row: 1; }
  .bfilm__karte { position: static; width: auto; rotate: none; inset: auto; }
}

.kzeit { padding-block: clamp(2rem, 6vh, 3.5rem); border-top: 1px solid var(--line-2); }
.kzeit__h { font-size: clamp(1.7rem, 3.2vw, 2.4rem); margin-top: 1rem; }
.kzeit__d { margin-top: 1.2rem; color: var(--muted); font-size: 1.08rem; max-width: 56ch; line-height: 1.7; }

.upr { padding-block: clamp(2.5rem, 7vh, 4.5rem); border-top: 1px solid var(--line-2); }
.upr__h { font-size: clamp(1.7rem, 3.2vw, 2.4rem); margin-top: 1rem; max-width: 22ch; }
.upr__p {
  margin-top: 1.3rem; color: var(--muted);
  font-size: clamp(1.02rem, 1.3vw, 1.1rem); max-width: 62ch; line-height: 1.75;
}

.upr__list { list-style: none; padding: 0; margin-top: 1.5rem; display: grid; gap: .7rem; max-width: 58ch; }
.upr__list li { position: relative; padding-left: 1.5rem; color: var(--ink); line-height: 1.6; }
.upr__list li::before {
  content: ""; position: absolute; left: 0; top: .62em;
  width: .5rem; height: .5rem; border-radius: 999px; background: var(--accent);
}

@media (min-width: 60rem) {
  .upr--zwei {
    display: grid; column-gap: clamp(2.5rem, 5vw, 5rem); row-gap: 0;
    grid-template-columns: minmax(0, 22rem) minmax(0, 1fr);
    align-items: start;
  }
  .upr--zwei .upr__kopf { grid-column: 1; }

  .upr--zwei .upr__body { grid-column: 2; padding-top: 2.3rem; }
  .upr--zwei .upr__body .upr__p:first-child { margin-top: 0; }
  .upr--zwei .upr__list { grid-column: 1 / -1; }
}

.upr__list--ziffern {
  max-width: none; margin-top: clamp(1.6rem, 4vh, 2.4rem);
  gap: 0 clamp(1.5rem, 3vw, 2.5rem);
  grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 60rem) { .upr__list--ziffern { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 80rem) { .upr__list--ziffern { grid-template-columns: repeat(5, minmax(0, 1fr)); } }
.upr__list--ziffern li {
  padding: .85rem 0 1rem; border-top: 1px solid var(--line-2);
  display: grid; grid-template-columns: auto minmax(0, 1fr); gap: .3rem .9rem;
  align-items: baseline; line-height: 1.5;
}
.upr__list--ziffern li::before { content: none; }
.upr__zn {
  font-size: clamp(min(2rem, 9vw), 3vw, 2.6rem); font-weight: 200;
  letter-spacing: -.04em; line-height: 1; color: var(--accent);
}

.ufq { padding-block: clamp(2.5rem, 7vh, 4.5rem); border-top: 1px solid var(--line-2); }
.ufq__h { font-size: clamp(1.7rem, 3.2vw, 2.4rem); margin-top: 1rem; max-width: 24ch; }

.ufq__list { margin-top: 2.3rem; display: grid; gap: 0; }
.ufq__d { margin-top: 0; border-top: 1px solid var(--line-2); }
.ufq__d:last-child { border-bottom: 1px solid var(--line-2); }

.ufq__s {
  align-items: baseline; gap: 1.2rem;
  font-size: inherit; font-weight: inherit;
  text-transform: none; letter-spacing: normal; color: var(--ink);
  padding: 1.15rem 0;
}
.ufq__s .ufq__q { margin: 0; flex: 1 1 auto; }
.ufq__s::after { align-self: center; }

.ufq__n {
  flex: none; min-width: 2.2em;
  font-size: clamp(1.6rem, 2.4vw, 2.1rem); font-weight: 200; line-height: 1;
  letter-spacing: -.04em; color: var(--accent);
}
.ufq__d .ufq__a { margin: 0 0 1.3rem; }
.ufq__q { font-size: clamp(1.08rem, 1.5vw, 1.22rem); line-height: 1.35; max-width: 40ch; }
.ufq__a {
  margin-top: .75rem; color: var(--muted);
  font-size: 1.04rem; max-width: 64ch; line-height: 1.75;
}

.buehne {
  margin-top: clamp(3rem, 8vh, 5rem);
  padding-block: clamp(3.5rem, 11vh, 7rem);
  --lr-x: 78%; --lr-y: 50%; --lr-mx: 60%; --lr-my: 48%;
}
.buehne__in {
  display: grid; align-items: center;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: clamp(2rem, 5vw, 4rem);
}
.buehne__kopf, .buehne__schritte { grid-column: 1; }
.buehne__h { font-size: clamp(2rem, 4vw, 3.2rem); margin-top: 1.1rem; max-width: 16ch; }
.buehne__schritte { list-style: none; padding: 0; margin: clamp(1.8rem, 4vh, 2.6rem) 0 0; }
.buehne__s {
  display: grid; grid-template-columns: auto minmax(0, 1fr);
  column-gap: clamp(.9rem, 2vw, 1.4rem); align-items: baseline;
  padding-block: clamp(.9rem, 2vh, 1.3rem);
  border-top: 1px solid var(--line-2);
}
.buehne__s:last-child { border-bottom: 1px solid var(--line-2); }
.buehne__n {
  display: block; min-width: 2.1em;
  font-size: clamp(min(2rem, 9vw), 2.8vw, 2.6rem); font-weight: 200; line-height: 1;
  letter-spacing: -.04em; color: var(--accent);
}
.buehne__t { font-size: clamp(1.14rem, 1.6vw, 1.3rem); font-weight: 400; letter-spacing: -.01em; }
.buehne__d { margin: .35rem 0 0; color: var(--muted); font-size: .98rem; line-height: 1.55; max-width: 44ch; }

.buehne__schritte .auftritt:nth-child(n) { transition-delay: 0ms; }
.buehne__schritte .auftritt:nth-child(2) { transition-delay: 90ms; }
.buehne__schritte .auftritt:nth-child(3) { transition-delay: 180ms; }
.buehne__schritte .auftritt:nth-child(4) { transition-delay: 270ms; }
.buehne__schritte .auftritt:nth-child(5) { transition-delay: 360ms; }

.buehne__werk {
  grid-column: 2; grid-row: 1 / span 2;
  justify-self: end; align-self: center;
  width: min(478px, 34vw);
}
.buehne__panel {
  z-index: 2; width: 100%;
  aspect-ratio: 478 / 598;
  max-height: 80vh; max-height: 80svh;
  --px: -7px; --py: -5px;
}
.buehne__still, .buehne__vid {
  position: absolute; inset: 0; width: 100%; height: 100%;
  max-width: 478px; margin-inline: auto;
  object-fit: cover; display: block;
}

.buehne__vid { opacity: 0; transition: opacity 1.2s var(--ease); pointer-events: none; }
.buehne__vid.on { opacity: 1; }
.buehne__karte { position: absolute; aspect-ratio: 4 / 5; }
.buehne__karte--hinten {
  width: 42%; right: -2%; bottom: -14%; z-index: 1; rotate: 5deg;
  --px: 9px; --py: 7px;
}
.buehne__karte--vorn {
  width: 36%; left: -14%; top: -12%; z-index: 3; rotate: -4deg;
  --px: -20px; --py: -14px;
}

.buehne__karte--vorn { transition-delay: 90ms; }

@media (max-width: 860px) {
  .buehne__in { grid-template-columns: minmax(0, 1fr); }
  .buehne__kopf { grid-row: 1; }
  .buehne__werk {
    grid-column: 1; grid-row: 2; justify-self: center;
    width: min(100%, 478px);
    margin-top: clamp(1.6rem, 4vh, 2.4rem);
  }
  .buehne__panel {
    aspect-ratio: 478 / 850;
    max-height: 78vh; max-height: 78svh;
  }
  .buehne__schritte { grid-row: 3; }
  .buehne__still, .buehne__vid { max-width: 478px; }
  .buehne__karte { display: none; }

  .buehne { --lr-x: 50%; --lr-y: 30%; --lr-my: 35%; }
}

.frm__h { font-size: clamp(1.9rem, 3.6vw, 2.8rem); margin-top: 1.1rem; max-width: 16ch; }
.frm__intro { margin-top: 1.2rem; color: var(--muted); font-size: 1.08rem; max-width: 50ch; }

.frm__grid {
  display: grid; gap: clamp(1.4rem, 3vw, 2.2rem) clamp(1.4rem, 3vw, 2.4rem);
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  margin-top: clamp(2rem, 5vh, 3rem);
}

.fld--nachricht { grid-column: 1 / -1; }

.fld__l { display: block; font-size: .92rem; font-weight: 600; color: var(--ink); }

.fld__req { color: var(--accent); margin-left: .35em; }

.fld__c { position: relative; display: block; margin-top: .45rem; }
.fld__i {
  width: 100%; display: block;
  font: inherit; font-size: 1rem; color: var(--ink);
  background: #FBF8F3;
  border: 1px solid var(--line-2);
  border-radius: var(--r);
  padding: .85rem 1rem;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}

.fld__i::placeholder { color: var(--muted); }

.fld__c--icon > svg {
  position: absolute; left: .95rem; top: 50%; margin-top: -9px;
  width: 18px; height: 18px; pointer-events: none;
  fill: var(--muted); opacity: .75;
  transition: fill .25s var(--ease), opacity .25s var(--ease);
}
.fld__c--icon .fld__i { padding-left: 2.9rem; }
.fld__c--icon:focus-within > svg { fill: var(--accent); opacity: 1; }

.fld__i--sel { appearance: none; -webkit-appearance: none; padding-right: 2.6rem; cursor: pointer; }

.fld__c--sel::after {
  content: ""; position: absolute; right: 1.1rem; top: 50%; pointer-events: none;
  width: 8px; height: 8px; margin-top: -6px;
  border-right: 1.5px solid var(--muted); border-bottom: 1.5px solid var(--muted);
  transform: rotate(45deg);
}

select.fld__i[hidden] { display: none; }

.sel__btn { text-align: left; }

.sel__btn--leer .sel__val { color: var(--muted); }

.sel__list {
  position: absolute; z-index: 30;
  top: calc(100% + .4rem); left: 0; right: 0;
  margin: 0; padding: .35rem; list-style: none;
  max-height: 15rem; overflow-y: auto; overscroll-behavior: contain;
  background: #F2EEE8;
  border: 1px solid var(--line-2); border-radius: var(--r);
  box-shadow: 0 1.4rem 2.6rem -1rem rgba(9, 7, 5, .22), 0 .2rem .5rem rgba(9, 7, 5, .06);
  animation: selAuf .16s var(--ease);
}
.sel__list:focus { outline: none; }

.sel__list--oben {
  top: auto; bottom: calc(100% + .4rem);
  animation-name: selAufOben;
  box-shadow: 0 -1.4rem 2.6rem -1rem rgba(9, 7, 5, .22), 0 -.2rem .5rem rgba(9, 7, 5, .06);
}
@keyframes selAuf {
  from { opacity: 0; transform: translateY(-.35rem); }
  to { opacity: 1; transform: none; }
}
@keyframes selAufOben {
  from { opacity: 0; transform: translateY(.35rem); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) { .sel__list { animation: none; } }

.sel__opt {
  padding: .62rem .8rem;
  border-radius: calc(var(--r) - .35rem);
  font-size: 1rem; color: var(--ink); line-height: 1.35;
  cursor: pointer;

  min-height: 1.5rem;
}

.sel__opt--aktiv { background: color-mix(in srgb, #1668B4 12%, transparent); }
.sel__opt[aria-selected="true"] { font-weight: 600; color: var(--accent); }
.sel__opt[aria-selected="true"]::after {
  content: ""; float: right;
  width: .42em; height: .74em; margin: .1em .1em 0 0;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.fld__c--sel::after { transition: transform .2s var(--ease); }
.fld__c--offen::after { transform: rotate(-135deg); margin-top: -2px; }

textarea.fld__i { resize: vertical; min-height: 10rem; line-height: 1.55; }

.fld__i:focus-visible {
  outline: none;
  border-color: var(--accent);
  background: #F2EEE8;
  box-shadow: 0 0 0 3px color-mix(in srgb, #1668B4 18%, transparent);
}
@media (hover: hover) {
  .fld__i:hover:not(:focus-visible) { border-color: var(--line-2); background: #F2EEE8; }
}
.fld__h { margin-top: .5rem; font-size: .88rem; color: var(--muted); }

.fld__e { margin-top: .5rem; font-size: .88rem; color: #B3261E; font-weight: 500; }
.fld__e:empty { display: none; }
.fld--fehler .fld__i {
  border-color: #B3261E;
  box-shadow: 0 0 0 3px color-mix(in srgb, #B3261E 12%, transparent);
}
.fld--fehler .fld__c--icon > svg { fill: #B3261E; opacity: 1; }

.frm__topf { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.frm__ziel { display: none; }
.frm__ziel:target {
  display: block; margin-top: 1.6rem; padding: 1rem 1.2rem;
  border-left: 3px solid #B3261E; background: #FBF8F3;
  color: var(--muted); font-size: 1.02rem;
  scroll-margin-top: clamp(5.5rem, 12vh, 8rem);
}
.frm__ziel b { color: var(--ink); }

.frm__sammel:empty { display: none; }
.frm__sammel {
  margin-top: 1.6rem; padding: 1rem 1.2rem;
  border-left: 3px solid #B3261E; background: #FBF8F3;
  color: var(--muted); font-size: 1.02rem;
}
.frm__sammel--ok { border-left-color: #1668B4; }
.frm__sammel--ok b { color: var(--ink); }

.frm__ds {
  margin-top: 2rem; padding: 1rem 1.2rem;
  border-radius: var(--r); background: #FBF8F3;
  box-shadow: inset 0 0 0 1px var(--line);
  color: var(--muted); font-size: .95rem; max-width: none;
}

.frm__go { margin-top: 1.6rem; width: 100%; justify-content: center; padding-block: 1.15rem; }
.frm__go[disabled] { opacity: .6; pointer-events: none; }

.frm--fertig .frm__grid,
.frm--fertig .frm__ds,
.frm--fertig .frm__go,
.frm--fertig .frm__intro { display: none; }

.legal {

  min-height: 58vh;
  padding-bottom: clamp(4rem, 12vh, 7rem);
}

.legal__kopf {
  padding-top: clamp(7rem, 16vh, 10rem);
  padding-bottom: clamp(2.6rem, 7vh, 4.2rem);
}
.legal__spalte { max-width: 46rem; }

.legal__text { padding-top: clamp(1.6rem, 4vh, 2.4rem); }

.legal__text > p.legal__cta { margin-top: .6rem; }
@media (max-width: 860px) {

  .legal__kopf { padding-top: clamp(6.5rem, 15vh, 9rem); padding-bottom: 2rem; }
  .legal__text { padding-top: .5rem; }
  .legal__text > p.legal__cta { margin-top: 0; }
}
.legal__h {

  font-size: clamp(min(2.6rem, 8.8vw), 6vw, 4.4rem); font-weight: 300;
  letter-spacing: -.03em; line-height: 1.04; margin: 0;
}
.legal h2 {
  margin: clamp(2.6rem, 6vh, 3.6rem) 0 .9rem;

  font-size: clamp(1.18rem, 6.4vw, 1.42rem); font-weight: 500; letter-spacing: -.01em;
  padding-top: 1.4rem; border-top: 1px solid var(--line);
}
.legal p { margin: 0 0 1rem; color: var(--muted); }
.legal__lines { line-height: 1.75; }

.legal a, .legal__lines, .legal__rows dd { overflow-wrap: break-word; }

p.legal__intro {
  margin: 1.9rem 0 0; font-size: 1.24rem; color: var(--muted); max-width: 46ch;
}
.legal__list { margin: 0 0 1rem; padding-left: 1.3rem; color: var(--muted); }
.legal__list li { margin-bottom: .5rem; }

.legal__rows { display: grid; gap: .55rem 1.6rem; margin: 0 0 1rem; }
@media (min-width: 34rem) { .legal__rows { grid-template-columns: 13rem minmax(0, 1fr); } }
.legal__rows dt {
  font-size: .82rem; text-transform: uppercase; letter-spacing: .14em;
  font-weight: 700; color: var(--accent); align-self: baseline;
}
.legal__rows dd { margin: 0; color: var(--muted); }

.legal__umsetzung {
  margin-top: clamp(3.6rem, 9vh, 5.4rem);
  padding-top: 1.6rem; border-top: 1px solid var(--line-2);
}
.legal .legal__umsetzung-h {
  display: flex; align-items: center; gap: .7em;
  margin: 0 0 1rem; padding: 0; border: 0;
  font-size: .84rem; text-transform: uppercase; letter-spacing: .26em;
  font-weight: 600; color: var(--muted);
}
.legal .legal__umsetzung-h::before {
  content: ""; flex: none;
  width: .5em; height: .5em; border-radius: 50%;
  background: var(--warm);
}

.legal__umsetzung-logo { display: block; width: 13rem; height: auto; margin: 1.4rem 0 1.3rem; }
@media (max-width: 860px) { .legal__umsetzung-logo { width: 10.5rem; } }

p.legal__cta {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 1rem clamp(1.4rem, 3vw, 2.4rem); margin: 2.6rem 0 0;
}

.legal__draft {
  margin: 2.2rem 0 0; padding: 1.1rem 1.3rem;
  border-left: 3px solid var(--accent);
  background: #FBF8F3;
  font-size: 1.02rem; color: var(--muted);
}
.legal__draft b { color: var(--ink); font-weight: 600; }

.todo {
  background: rgba(22, 104, 180, .1); color: var(--ink);
  padding: .1em .45em .16em;
  border-bottom: 2px solid rgba(22, 104, 180, .55);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.todo__tag {
  display: inline-block; margin-right: .5em;
  font-size: .68em; text-transform: uppercase; letter-spacing: .14em;
  font-weight: 700; color: var(--accent); vertical-align: .08em;
}

@media (max-width: 1150px) {
  .topbar { flex-wrap: wrap; row-gap: .1rem; }
  .topnav {
    order: 3; flex-basis: 100%; margin-inline: 0;
    padding-top: .45rem; border-top: 1px solid var(--line);
  }
}

@media (max-width: 860px) {
  body { font-size: 17px; }

  .mark__img { height: 36px; }
  .callbtn { font-size: .9rem; }

  .hero { height: 430vh; }
  .hero__sub { max-width: 32ch; }

  .chain { height: auto; }
  .chain__pin { position: static; height: auto; padding-block: clamp(3.5rem, 10vh, 6rem); display: block; overflow: visible; }
  .chain__grid { display: block; }
  .chain__list { display: none; }

  .chain__mehr { padding-left: 0; margin-top: 1.6rem; }

  .chain__stage { position: static; height: auto; overflow: visible; }
  .chain__ghosts { display: none; }
  .chain__cards { position: static; }
  .cs {
    position: static; transform: none !important; visibility: visible !important;
    max-width: none; padding: 2rem 0; border-top: 1px solid var(--line-2);
  }
  .cs__n { display: block; font-size: 1.1rem; color: var(--accent); font-weight: 700; letter-spacing: .1em; }

  .cs__t { font-size: clamp(1.1rem, 5.4vw, 1.85rem); }

  .hs__head { padding-top: clamp(3rem, 8vh, 4rem); }

  .faq__grid { grid-template-columns: minmax(0, 1fr); }
  .fq__a p { padding-right: 0; }

  .rv__head { align-items: flex-start; margin-bottom: 1.6rem; }
  .rv__b { width: 42px; height: 42px; }

  .values { padding-block: clamp(2.8rem, 7vh, 4rem); }
  .rv { padding-block: clamp(2.4rem, 6vh, 3.4rem); }
  .faq { padding-block: clamp(2.8rem, 7vh, 4rem); }
  .partners { padding-block: clamp(2.4rem, 6vh, 3.4rem); }
  .values__grid { margin-top: 1.6rem; }

  .rail { display: none; }

  .skopf { padding-top: clamp(6.5rem, 15vh, 9rem); }

  .shero { padding-top: clamp(6.5rem, 15vh, 9rem); }

  .lv { grid-template-columns: minmax(0, 1fr); gap: 1.4rem; }
  .lv--kehr .lv__ph, .lv--kehr .lv__body { grid-column: 1; grid-row: auto; }
  .lv__ph img { max-height: 60vh; }

  .lv__ghost { font-size: 7rem; top: -.2em; }

  .kgrid { grid-template-columns: minmax(0, 1fr); }
  .kside__werk { position: static; }

  .kfrm, .kzeit, .pak, .lout, .upr, .ufq {
    padding-block: clamp(2rem, 6vh, 3rem);
  }
  .lnav__in { gap: .45rem; }
  .lnav__a { font-size: .86rem; padding: .42rem .9rem; }

  .frm__grid { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 520px) {
  .hero { height: 380vh; }
  .arrival__do { flex-direction: column; align-items: stretch; }
  .arrival__do .cta { justify-content: center; }
  .stats { gap: 1.8rem 2.6rem; }
  .stat b { font-size: 2.2rem; }
  .ai-badge { font-size: .68rem; padding: .34rem .58rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

@keyframes menuZeileA { from { opacity: 0; transform: translateY(14px); } }
@media (max-width: 860px) {
  .topbar {
    display: grid; grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center; column-gap: .6rem; row-gap: 0;
    padding: .5rem var(--pad);
  }

  .topbar .mark { grid-area: 1 / 1; }
  .callbtn { grid-area: 1 / 2; }
  .menubtn { grid-area: 1 / 3; }

  .topnav {
    display: none; grid-area: 2 / 1 / 3 / -1; order: 0;
    margin: 0; padding: 0; border-top: 0;
  }

  .callbtn {
    height: 42px; padding: 0 1.05rem 0 .9rem; gap: .5rem;
    border-radius: var(--pill);
    background: linear-gradient(180deg, color-mix(in srgb, #1668B4 94%, white), #1668B4);
    color: #FBF8F3;
    font-size: .9rem; letter-spacing: .03em; font-weight: 500;
    box-shadow: 0 12px 26px -14px rgba(224, 162, 26, .85), 0 8px 18px -12px rgba(22, 104, 180, .6);
  }
  .callbtn svg { width: 17px; height: 17px; fill: currentColor; }
  .callbtn span { padding-bottom: 0; }
  .callbtn span::after { display: none; }

  .menubtn {
    display: grid; place-items: center;
    width: 44px; height: 44px; margin-inline-end: -.6rem; padding: 0;
    border: 0; border-radius: 50%; background: transparent; color: var(--ink);
    cursor: pointer; -webkit-tap-highlight-color: transparent;
  }
  .menubtn__b {
    grid-area: 1 / 1; display: block; width: 22px; height: 2px;
    background: currentColor; border-radius: 1px;
    transition: transform .4s var(--ease);
  }
  .menubtn__b:nth-child(1) { transform: translateY(-4px); }
  .menubtn__b:nth-child(2) { transform: translateY(4px); }
  .menubtn[aria-expanded="true"] .menubtn__b:nth-child(1) { transform: rotate(45deg); }
  .menubtn[aria-expanded="true"] .menubtn__b:nth-child(2) { transform: rotate(-45deg); }

  html.menu-offen { overflow: hidden; }

  .menu-offen .topbar {
    bottom: 0;
    grid-template-rows: auto minmax(0, 1fr);
    background:
      radial-gradient(60% 34% at 86% 10%, rgba(224, 162, 26, .16), transparent 70%),
      rgba(251, 248, 243, .88);
  }
  @supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
    .menu-offen .topbar {
      background:
        radial-gradient(60% 34% at 86% 10%, rgba(224, 162, 26, .16), transparent 70%),
        rgba(242, 238, 232, .97);
    }
  }

  .menu-offen .topnav {
    display: block; align-self: stretch; overflow: auto; overscroll-behavior: contain;
    padding: clamp(.6rem, 3vh, 1.6rem) 0 calc(1.2rem + env(safe-area-inset-bottom, 0px));
  }
  .topnav__in {
    display: flex; flex-direction: column; min-height: 100%;
    counter-reset: seite;
  }

  .topnav__a {
    display: flex; align-items: baseline; gap: 1rem;
    padding: .62rem 0 .66rem; border-top: 1px solid var(--line);
    font-size: clamp(1.7rem, 7vw, 2.4rem); font-weight: 300;
    letter-spacing: -.02em; line-height: 1.12; white-space: normal;
  }
  .topnav__a:last-of-type { border-bottom: 1px solid var(--line); }

  .topnav__a::before {
    counter-increment: seite; content: counter(seite, decimal-leading-zero);
    flex: none; min-width: 2.4em;
    font-size: .72rem; letter-spacing: .26em; font-weight: 600;
    color: var(--muted); font-variant-numeric: tabular-nums;
  }

  .topnav__a::after { display: none; }
  .topnav__a[aria-current="page"], .topnav__a[aria-current="page"]::before { color: var(--accent); }

  .topnav__kontakt { display: block; margin-top: auto; padding-top: clamp(1.6rem, 6vh, 3rem); }
  .topnav__kontakt .eyebrow { font-size: .72rem; }
  .topnav__kreihe { display: flex; flex-wrap: wrap; gap: .8rem clamp(.9rem, 5vw, 1.6rem); margin-top: 1rem; }
  .topnav__kb {
    display: grid; justify-items: center; gap: .5rem;
    min-width: 46px; text-decoration: none; color: var(--ink);
    font-size: .74rem; letter-spacing: .04em; line-height: 1.2;
    -webkit-tap-highlight-color: transparent;
  }
  .topnav__kk {
    display: flex; align-items: center; justify-content: center;
    width: 46px; height: 46px; border-radius: 50%;
    background: #1A1512; color: #FBF8F3;
    box-shadow: 0 10px 24px -12px rgba(26, 21, 18, .75);
    transition: transform .25s var(--ease);
  }
  .topnav__kk svg { width: 21px; height: 21px; fill: currentColor; }
  .topnav__kb--tel .topnav__kk, .topnav__kb--wa .topnav__kk {
    background: linear-gradient(180deg, color-mix(in srgb, #1668B4 94%, white), #1668B4);
    color: #FBF8F3;
    box-shadow: 0 12px 26px -14px rgba(224, 162, 26, .85), 0 8px 18px -12px rgba(22, 104, 180, .6);
  }
  .topnav__kb:active .topnav__kk { transform: scale(.93); }

  .menu-offen .topnav__a, .menu-offen .topnav__kontakt { animation: menuZeileA .6s var(--ease) backwards; }
  .menu-offen .topnav__a:nth-child(2) { animation-delay: .04s; }
  .menu-offen .topnav__a:nth-child(3) { animation-delay: .08s; }
  .menu-offen .topnav__a:nth-child(4) { animation-delay: .12s; }
  .menu-offen .topnav__a:nth-child(5) { animation-delay: .16s; }
  .menu-offen .topnav__a:nth-child(6) { animation-delay: .2s; }
  .menu-offen .topnav__kontakt { animation-delay: .26s; }
  @media (prefers-reduced-motion: reduce) {
    .menu-offen .topnav__a, .menu-offen .topnav__kontakt { animation: none; }
    .menubtn__b, .topnav__kk { transition: none; }
  }
}

@media (max-width: 480px) {
  .callbtn { width: 44px; height: 44px; padding: 0; gap: 0; justify-content: center; }
  .callbtn > span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
}

@media (max-width: 860px), (prefers-reduced-motion: reduce) {

  .topbar { transform: none; top: 0; }
  .pline { display: none; }

  .hs__count { display: none; }

  .beats { position: relative; gap: 4rem; padding-block: 4rem; }
  .beat { grid-area: auto; opacity: 1 !important; transform: none !important; visibility: visible !important; }
  .ai-badge--pin { display: none; }
  .ai-badge--static { display: inline-flex; }

  .hero { height: auto; }
  .hero__pin { position: static; height: auto; overflow: visible; }
  .ln > span { transform: none !important; }
  .rule, .logo__led { width: 100% !important; }
  .hint { display: none; }

  .chain { height: auto; }
  .chain__pin { position: static; height: auto; padding-block: 5rem; display: block; overflow: visible; }
  .chain__grid { display: block; }
  .chain__list { display: none; }

  .chain__mehr { padding-left: 0; margin-top: 1.6rem; }

  .chain__stage { position: static; height: auto; overflow: visible; }
  .chain__ghosts { display: none; }
  .chain__cards { position: static; }
  .cs {
    position: static; transform: none !important; visibility: visible !important;
    max-width: none; padding: 2rem 0; border-top: 1px solid var(--line-2);
  }
  .cs__n { display: block; font-size: 1.1rem; color: var(--accent); font-weight: 700; letter-spacing: .1em; }

  .hs { height: auto !important; }
  .hs__pin { position: static; height: auto; padding-bottom: 3rem; overflow: visible; }
  .hs__viewport { overflow: visible; padding-block: 0; scroll-snap-type: none; }
  .hs__track {
    transform: none !important;
    display: grid; grid-auto-flow: row;

    gap: clamp(2.4rem, 7vw, 3.6rem) clamp(1rem, 2.5vw, 2rem);

    width: 100%;
    max-width: calc(60rem + var(--pad) * 2);
  }
  .hs__rail { display: none; }
  .proj, .hs__card { width: auto; scroll-snap-align: none; }
  .proj__img img { transform: none; }

  .mq__t { animation: none; flex-wrap: wrap; width: auto; justify-content: center; row-gap: 2rem; }
  .mq__i[aria-hidden="true"] { display: none; }

}

@media (prefers-reduced-motion: reduce) {
  .rvh > span, .ln > span { transform: none !important; }

  .js .auftritt { opacity: 1 !important; transform: none !important; transition-delay: 0ms !important; }
  .js .ebene.auftritt { translate: none !important; }

  .val, .cs, .proj, .beat, .mq__i {
    opacity: 1 !important; transform: none !important;
  }
  .val__line { transform: scaleX(1) !important; }
  .js .lv__ph, .js .lv__body { opacity: 1 !important; transform: none !important; }

  .js .lv__ghost { opacity: 1 !important; transform: none !important; }
  .js .wdgi__fr .wdgi__img { transform: none !important; }
  .shero__ln > span, .shero .eyebrow, .shero__intro, .shero__zeile, .shero__tafel > img, .shero__karte { animation: none !important; }

  .buehne__vid { display: none; }

  .hero__vid { display: none; }
  .hero__pin { padding-block: clamp(7rem, 16vh, 10rem) clamp(3rem, 8vh, 5rem); }
}

@media (max-width: 860px) {
  .hero__pin {
    display: grid; grid-template-columns: minmax(0, 1fr);
    grid-template-rows: min(100vh, 52rem) auto;
    grid-template-rows: min(100svh, 52rem) auto;

    padding: 0; background: none;
    --zeile: 8.2vw;

  }
  .hero__pin .beats { display: contents; }

  .hero__werk { display: contents; }
  .hero__werk::before { display: none; }
  .hero__pin::before { display: none; }
  .hero__panel { transform: none; }
  .hero__panel {

    grid-area: 1 / 1; justify-self: stretch; align-self: stretch;
    width: auto; max-height: none; aspect-ratio: auto;

    border-radius: 0; box-shadow: none; outline: none;

    background: #0B0906;
  }
  .hero__still, .hero__vid { max-width: 478px; }
  .hero__shade { display: block; }

  #hb1 {

    grid-area: 1 / 1; align-self: end; position: relative; z-index: 3;
    padding: 0 var(--pad) clamp(2.2rem, 7vh, 3.6rem);
    --ink: #EDE5DA;
    --muted: #A2968A;
    --accent: #3B9BEC;
    --on-accent: #06111C;
    --line: rgba(237, 229, 218, .16);
    --line-2: rgba(237, 229, 218, .3);
    color: var(--ink);
  }
  #hb1 .eyebrow, #hb1 .ln > span, #hb1 .hero__sub { text-shadow: 0 1px 2px rgba(9, 7, 5, .62), 0 0 3px rgba(9, 7, 5, .5), 0 2px 26px rgba(9, 7, 5, .38); }

  #hb1 .eyebrow { color: var(--ink); }

  #hb1 {
    display: grid; grid-template-columns: minmax(0, 32ch) 5.6rem minmax(0, 1fr);
    grid-template-areas: "aug aug aug" "zeilen zeilen zeilen" "linie linie linie" "unter joka .";
  }
  #hb1 > .eyebrow { grid-area: aug; }
  #hb1 > .hero__lines { grid-area: zeilen; }
  #hb1 > .rule { grid-area: linie; }
  #hb1 > .hero__sub { grid-area: unter; }
  #hb1 > .hero__joka { grid-area: joka; align-self: start; justify-self: end; width: 4.6rem; margin-top: 1.6rem; }

  #hb2 { grid-area: 2 / 1; padding: clamp(3rem, 8vh, 4.5rem) var(--pad); }

  .js .cs, .js .beat, .js .mq__i {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
    transition: opacity .62s var(--ease), transform .62s var(--ease);
  }
  .js .cs.in, .js .beat.in, .js .mq__i.in {
    opacity: 1;
    transform: none;
  }

  .js .mq__i { transition-duration: .5s; }
  .js .mq__i:nth-child(2) { transition-delay: 60ms; }
  .js .mq__i:nth-child(3) { transition-delay: 120ms; }
  .js .mq__i:nth-child(4) { transition-delay: 180ms; }
  .js .mq__i:nth-child(5) { transition-delay: 240ms; }

  .js .proj__img { overflow: hidden; }
  .js .proj img { transform: scale(1.06); transition: transform 1.1s var(--ease); }
  .js .proj.on img { transform: none; }
}

@media (max-width: 860px) and (max-height: 700px) {
  #hb1 > .hero__lines { margin-top: .8rem; }
  #hb1 > .rule { margin-top: 1.2rem; }
  #hb1 > .hero__sub, #hb1 > .hero__joka { margin-top: 1rem; }
}

@media (max-width: 359px) and (max-height: 700px) {
  #hb1 > .hero__sub { font-size: 1rem; }
}

@media (min-width: 22.5rem) {
  .hs__track { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hs__card { grid-column: 1 / -1; }
}

@media (min-width: 22.5rem) and (max-width: 860px) {
  .hs__track { gap: clamp(1.8rem, 6vw, 2.4rem) clamp(1rem, 2.5vw, 2rem); }

  .hs__track .proj:nth-child(even) { transition-delay: 0ms; }
  .hs__track .proj:nth-child(odd) { transition-delay: 90ms; }
}

@supports not (color: color-mix(in srgb, red, blue)) {
  .cta { background: var(--accent); }
  .cta--ghost { background: transparent; box-shadow: inset 0 0 0 1.5px rgba(224, 162, 26, .6); }
  .rail__b--tel, .rail__b--wa { background: #1668B4; }

  .topnav__kb--tel .topnav__kk, .topnav__kb--wa .topnav__kk { background: #1668B4; }
  @media (max-width: 860px) { .callbtn { background: #1668B4; } }
  .hint__p { background: rgba(26, 21, 18, .09); box-shadow: inset 0 0 0 1px rgba(26, 21, 18, .24); }
  @media (hover: hover) { .hint:hover .hint__p { background: rgba(26, 21, 18, .16); } }
  .rv__mark { color: rgba(224, 162, 26, .32); }
  .lv__ghost { color: rgba(26, 21, 18, .06); }
  .bfilm__pl { color: rgba(237, 229, 218, .86); }
  .sel__opt--aktiv { background: rgba(22, 104, 180, .12); }
  .fld__i:focus-visible { box-shadow: 0 0 0 3px rgba(22, 104, 180, .18); }
  .fld--fehler .fld__i { box-shadow: 0 0 0 3px rgba(179, 38, 30, .12); }
}

@supports not (aspect-ratio: 1 / 1) {
  .mark__img { width: 181px; }
  .logo__img { width: clamp(222px, 34.5vw, 452px); }
  .bnr__logo { width: clamp(181px, 28.8vw, 304px); }
  .hero__panel, .buehne__panel { height: min(598px, 42.5vw); }
  .bfilm__scheibe { height: clamp(68px, 8vw, 88px); }
  @media (max-width: 860px) {
    .mark__img { width: 148px; }
    .hero__panel { height: auto; }
    .buehne__panel { height: min(850px, calc((100vw - 2 * var(--pad)) * 1.778)); }
  }
}

@supports not selector(:focus-visible) {
  .rv__b:focus, .fq__q:focus { outline: 2px solid var(--accent); outline-offset: 3px; }
}

@media (hover: none) {

  .cta, .callbtn, .fq__q, .foot__nav a, .proj {
    -webkit-tap-highlight-color: transparent;
  }
  .cta { transition: transform .18s var(--ease); }
  .cta:active { transform: scale(.972); }
  .callbtn:active, .foot__nav a:active, .ul:active { opacity: .55; }
  .fq__q:active .fq__ic { transform: scale(1.25); }
  .proj:active img { transform: scale(1.04); transition: transform .3s var(--ease); }
}