

@font-face {
  font-family: 'Anton';
  src: url('../fonts/Anton.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Archivo';
  src: url('../fonts/Archivo.woff2') format('woff2');
  font-weight: 100 900; font-style: normal; font-display: swap;
}

:root {

  --ziel-min: 44px;

  --bg: #f6f4ef;
  --bg-soft: #edeae3;
  --panel: #ffffff;
  --glas-karte: rgba(255,255,255,.52);
  --glas-karte-kante: rgba(255,255,255,.75);
  --ink: #121214;
  --ink-dim: #6d6a63;
  --accent: #121214;
  --accent-soft: #000000;
  --line: rgba(18, 18, 20, .12);
  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-body: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-inout: cubic-bezier(.83, 0, .17, 1);

  --ease-weich: cubic-bezier(.22, .68, .16, 1);
  --nav-h: 72px;

  --t-h1:     clamp(2.5rem, 5.6vw, 5rem);
  --t-h1-lh:  1.06;
  --t-h2:     clamp(2rem, 4.4vw, 4rem);
  --t-h2-lh:  1.12;
  --t-h3:     clamp(1.625rem, 2.8vw, 2.5rem);
  --t-h3-lh:  1.2;
  --t-h4:     clamp(1.25rem, 1.8vw, 1.625rem);
  --t-h4-lh:  1.25;
  --t-lead:   clamp(1.0625rem, 0.6vw + 0.9rem, 1.1875rem);
  --t-lead-lh: 1.6;
  --t-body:   1rem;
  --t-body-lh: 1.65;
  --t-small:  0.84375rem;
  --t-small-lh: 1.45;
  --t-kicker: 0.8rem;
  --t-kicker-ls: .26em;
  --t-tag:    .75rem;

  --t-label:  clamp(1rem, 1.5vw, 1.35rem);
  --t-label-lh: 1.7;

  --t-hero:   clamp(2rem, 6vw, 4rem);
}

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

html { scroll-behavior: auto; overflow-x: clip; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::after {
  content: ''; position: fixed; inset: -50%; z-index: 9990; pointer-events: none; opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 8s steps(10) infinite;
}
@keyframes grain {
  0%,100% { transform: translate(0,0) } 20% { transform: translate(-3%,2%) }
  40% { transform: translate(2%,-3%) } 60% { transform: translate(-2%,-2%) } 80% { transform: translate(3%,3%) }
}

::selection { background: var(--ink); color: var(--bg); }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
.accent { color: var(--accent); }

#preloader {
  position: fixed; inset: 0; z-index: 10000; display: grid; place-items: center;
  background: var(--bg); transition: opacity .9s var(--ease-inout), visibility .9s;
}
#preloader.done { opacity: 0; visibility: hidden; }

.pre-inner{
  display: grid; place-items: center;
  grid-template-areas: "mitte";

  width: min(86vw, 640px);

  min-height: 210px;
}
.pre-label, .pre-mark{ grid-area: mitte; }

.pre-label{
  display: grid; grid-template-areas: "zeile"; place-items: center;
  text-align: center; color: var(--ink);
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.15rem, 3.2vw, 1.9rem); line-height: 1.3;
  letter-spacing: .01em; text-transform: none;
  width: 100%;
}

.pre-zeile{ grid-area: zeile; max-width: 22ch; margin-inline: auto; }

.pre-wort{
  display: inline-block; opacity: 1;
  animation: wortRein .8s var(--ease-weich) var(--verzug, 0ms) both;
}
@keyframes wortRein{
  from { opacity: 0; transform: translateY(15px) scale(.985); filter: blur(5px) }
  to   { opacity: 1; transform: none;                         filter: blur(0)   }
}
.pre-zeile--weg .pre-wort{
  animation: wortRaus .8s var(--ease-weich) var(--verzug, 0ms) both;
}
@keyframes wortRaus{
  from { opacity: 1; transform: none;                          filter: blur(0)   }
  to   { opacity: 0; transform: translateY(-15px) scale(.992); filter: blur(5px) }
}

.pre-mark{
  width: min(300px, 52vw); height: auto; opacity: 0;
  justify-self: center; align-self: center;
}
.pre-mark--an{ animation: markeRein 1.05s var(--ease-weich) both }
@keyframes markeRein{
  from { opacity: 0; transform: scale(.84); filter: blur(9px) }
  to   { opacity: 1; transform: none;       filter: blur(0)   }
}

#preloader.done .pre-mark{ animation: markeRaus .9s var(--ease-inout) both }
@keyframes markeRaus{
  from { opacity: 1; transform: none }
  to   { opacity: 0; transform: scale(1.16); filter: blur(4px) }
}

:root{

  --raum-1: clamp(8px, 1vw, 10px);
  --raum-2: clamp(12px, 1.6vw, 16px);
  --raum-3: clamp(16px, 2.2vw, 22px);
  --raum-4: clamp(20px, 2.8vw, 30px);
  --raum-5: clamp(26px, 3.6vw, 40px);
  --raum-6: clamp(40px, 6vw, 56px);
}

@media (prefers-reduced-motion: reduce){
  .pre-wort, .pre-zeile--weg .pre-wort{ animation: none; opacity: 1 }
  .pre-mark--an{ animation: none; opacity: 1 }
  #preloader.done .pre-mark{ animation: none }
}

#cursor {
  position: fixed; z-index: 9999; top: 0; left: 0; width: 14px; height: 14px; border-radius: 50%;
  background: #f4f2ed; pointer-events: none; mix-blend-mode: difference;
  transform: translate(-50%, -50%); transition: width .3s var(--ease-out), height .3s var(--ease-out), opacity .3s;
  opacity: 0;
}
body.cursor-ready #cursor { opacity: 1; }
#cursor.grow { width: 52px; height: 52px; }
@media (hover: none), (pointer: coarse) { #cursor { display: none; } }

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: calc(var(--nav-h) + env(safe-area-inset-top));
  display: flex; align-items: center; gap: 40px;
  padding: env(safe-area-inset-top) clamp(20px, 4vw, 48px) 0;
  transition: transform .5s var(--ease-out), background .5s;
}
.nav.scrolled { background: rgba(246,244,239,.85); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
.nav.hidden { transform: translateY(-100%); }

.nav-logo { display: flex; align-items: center; gap: 0; }
.nav-logo img { height: 17px; width: auto; display: block; }
.nav-logo .logo-text,
.nav-logo .logo-mark {
  max-width: 260px; opacity: 1; overflow: hidden;
  transition: max-width .62s var(--ease-out), opacity .42s var(--ease-out),
              margin .62s var(--ease-out);
}
.nav-logo .logo-mark { height: 25px; max-width: 0; opacity: 0; margin-left: 0 }

.nav-logo.eingezogen .logo-text { max-width: 0; opacity: 0 }
.nav-logo.eingezogen .logo-mark { max-width: 80px; opacity: 1 }

.nav-logo.eingezogen:hover .logo-text,
.nav-logo.eingezogen:focus-visible .logo-text { max-width: 260px; opacity: 1 }
.nav-logo.eingezogen:hover .logo-mark,
.nav-logo.eingezogen:focus-visible .logo-mark { max-width: 0; opacity: 0 }

@media (prefers-reduced-motion: reduce){
  .nav-logo .logo-text, .nav-logo .logo-mark { transition: none }
}
.nav nav { display: flex; gap: 28px; margin-left: auto; }
.nav nav a {
  font-size: var(--t-small); font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-dim);
  transition: color .3s; position: relative;
}
.nav nav a::after {
  content: ''; position: absolute; left: 0; bottom: -6px; height: 1px; width: 100%;
  background: var(--accent); transform: scaleX(0); transform-origin: right; transition: transform .4s var(--ease-out);
}
.nav nav a:hover { color: var(--ink); }
.nav nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-burger {
  display: none; flex-direction: column; align-items: flex-end; justify-content: center;
  gap: 7px; margin-left: auto; position: relative;
  width: 52px; height: 44px; padding: 0 8px 0 0;
  -webkit-tap-highlight-color: transparent;
}
.nb-flaeche {
  position: absolute; inset: 0; border-radius: 18px;
  background: transparent;
  backdrop-filter: blur(16px) saturate(var(--glas-saettigung)) brightness(1.25);
  -webkit-backdrop-filter: blur(16px) saturate(var(--glas-saettigung)) brightness(1.25);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.34), inset 0 -1px 0 rgba(0,0,0,.06);
  opacity: 0; transform: scale(.82);
  transition: opacity .45s var(--ease-out), transform .45s var(--ease-out);
  pointer-events: none;
}
.nb-strich {
  display: block; height: 2px; background: var(--ink); border-radius: 8px;
  transform-origin: right center;
  transition: width .5s var(--ease-out), transform .55s var(--ease-out),
              opacity .35s var(--ease-out);
}

.nb-strich:nth-of-type(1) { width: 30px; animation-delay: 0s }
.nb-strich:nth-of-type(2) { width: 22px; transition-delay: .08s; animation-delay: -2.25s }

@keyframes strichWelle{ 0%,100%{ opacity:.68 } 50%{ opacity:1 } }
.nb-strich{ animation: strichWelle 4.5s var(--ease-inout) infinite }
.nav-burger:hover .nb-strich,
.nav-burger:focus-visible .nb-strich,
.nav-burger[aria-expanded="true"] .nb-strich{ animation: none; opacity: 1 }
@media (prefers-reduced-motion: reduce){ .nb-strich{ animation: none; opacity: 1 } }

.nav-burger:hover .nb-flaeche,
.nav-burger:focus-visible .nb-flaeche { opacity: 1; transform: scale(1) }
.nav-burger:hover .nb-strich,
.nav-burger:focus-visible .nb-strich { width: 30px }

.nav-burger[aria-expanded="true"] .nb-flaeche { opacity: 1; transform: scale(1) }
.nav-burger[aria-expanded="true"] .nb-strich { width: 28px; transform-origin: center }
.nav-burger[aria-expanded="true"] .nb-strich:nth-of-type(1) { transform: translateY(4px) rotate(-45deg) }
.nav-burger[aria-expanded="true"] .nb-strich:nth-of-type(2) { transform: translateY(-4px) rotate(45deg); transition-delay: 0s }

.mobile-menu {

  position: fixed; inset: 0; height: 100dvh; z-index: 890;
  background: #08080a; color: #f4f2ed; display: none;

  flex-direction: column; justify-content: safe center; gap: 2px;
  padding: max(env(safe-area-inset-top), 24px) clamp(28px, 8vw, 64px)
           max(env(safe-area-inset-bottom), 24px);
  overflow-y: auto; overscroll-behavior: contain;
  counter-reset: mi;
}
.mobile-menu.open { display: flex; animation: menuBg .45s var(--ease-out); }

.mobile-menu::before {
  content: ''; position: fixed; left: 0; right: 0; top: 0; height: 100lvh;
  background: #08080a; z-index: -1; pointer-events: none;
}
@keyframes menuBg { from { opacity: 0 } }
.mobile-menu>a {
  counter-increment: mi;

  position: relative; display: flex; align-items: flex-start; gap: 16px;
  font-family: var(--font-display); font-size: clamp(2.1rem, 11vw, 4rem); line-height: 1.28;
  color: #f4f2ed; text-transform: uppercase;
  opacity: 0; transform: translateY(40px) rotate(2deg);
  transition: color .3s;
}
.mobile-menu>a::before {
  content: '0' counter(mi);
  font-family: var(--font-body); font-size: .8rem; font-weight: 600; letter-spacing: .16em;
  color: rgba(244,242,237,.4);
}
.mobile-menu>a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 4px; height: 1px;
  background: rgba(244,242,237,.18); transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease-out);
}
.mobile-menu>a:active, .mobile-menu>a:hover { color: #fff; }
.mobile-menu>a:hover::after { transform: scaleX(1); }
.mobile-menu.open>a { animation: menuIn .7s var(--ease-out) forwards; }
.mobile-menu.open>a:nth-child(1) { animation-delay: .06s }
.mobile-menu.open>a:nth-child(2) { animation-delay: .12s }
.mobile-menu.open>a:nth-child(3) { animation-delay: .18s }
.mobile-menu.open>a:nth-child(4) { animation-delay: .24s }
.mobile-menu.open>a:nth-child(5) { animation-delay: .30s }
.mobile-menu.open>a:nth-child(6) { animation-delay: .36s }
@keyframes menuIn { to { opacity: 1; transform: none } }

.mobile-menu.closing { display: flex; animation: menuBgOut .42s var(--ease-out) forwards; }
@keyframes menuBgOut { to { opacity: 0 } }
.mobile-menu.closing>a { animation: menuOut .34s var(--ease-out) forwards; }

.mobile-menu.closing>a:nth-last-child(1) { animation-delay: .00s }
.mobile-menu.closing>a:nth-last-child(2) { animation-delay: .03s }
.mobile-menu.closing>a:nth-last-child(3) { animation-delay: .06s }
.mobile-menu.closing>a:nth-last-child(4) { animation-delay: .09s }
.mobile-menu.closing>a:nth-last-child(5) { animation-delay: .12s }
.mobile-menu.closing>a:nth-last-child(6) { animation-delay: .15s }
@keyframes menuOut { to { opacity: 0; transform: translateY(40px) rotate(2deg) } }

@media (prefers-reduced-motion: reduce) {
  .mobile-menu.open, .mobile-menu.closing,
  .mobile-menu.open>a, .mobile-menu.closing>a { animation: none }
  .mobile-menu.open>a { opacity: 1; transform: none }
}

.nav.menu-open { background: transparent !important; backdrop-filter: none !important; }
.nav.menu-open .nav-logo img { filter: invert(1); }
.nav.menu-open .nav-burger span { background: #f4f2ed; }
@media (max-width: 1620px) {
  .nav { gap: 24px; }
  .nav nav { gap: 18px; }
  .nav nav a { font-size: .8rem; }
}
@media (max-width: 1460px) {
.nav nav{ display: none; }
  .nav-burger { display: flex; }
}
@media (min-width: 1461px) {
  .nav nav { flex-wrap: nowrap; }
  .nav nav a { white-space: nowrap; }
}
@media (max-width: 900px) {

  .nav-logo .logo-text { max-width: 0; opacity: 0 }
  .nav-logo .logo-mark { max-width: 80px; opacity: 1 }
}

.reveal {
  opacity: 0; transform: translateY(22px) scale(.985); filter: blur(5px);
  transition: opacity 1.25s var(--ease-out), transform 1.25s var(--ease-out),
              filter .9s var(--ease-out);
}
.reveal.in-view, .section-head.in-view > .reveal {
  opacity: 1; transform: none; filter: blur(0);
}
.section-head.in-view > .reveal:nth-child(2) { transition-delay: .08s }
.section-head.in-view > .reveal:nth-child(3) { transition-delay: .16s }

section { padding: clamp(90px, 12vh, 160px) clamp(20px, 5vw, 64px); position: relative; }
.section-head { max-width: 820px; margin: 0 auto clamp(48px, 7vh, 80px); text-align: center; }
.section-kicker { font-size: var(--t-kicker); font-weight: 600; letter-spacing: var(--t-kicker-ls); text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.section-title { font-family: var(--font-display); font-weight: 400; font-size: var(--t-h2); line-height: 1.14; }
.section-sub { color: var(--ink-dim); margin-top: 18px; font-size: var(--t-lead); line-height: var(--t-lead-lh); }

.brands { background: var(--bg); }
.brand-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; max-width: 1300px; margin: 0 auto; }
.brand-card {

  --luft: 18px;
  background: var(--panel); border: 1px solid var(--line); border-radius: 18px; padding: 34px 30px;
  position: relative; overflow: hidden;

  display: flex; flex-direction: column; height: 100%;
  transition: transform .6s var(--ease-out), border-color .5s, opacity 1s var(--ease-out);
}
.brand-list { align-items: stretch; }
.brand-card .brand-link { margin-top: auto; }
.brand-card::before {
  content: ''; position: absolute; inset: 0; opacity: 0; transition: opacity .6s;
  background: radial-gradient(600px 200px at var(--mx, 50%) var(--my, 0%), rgba(18,18,20,.06), transparent 60%);
}
.brand-card:hover { transform: translateY(-6px); border-color: rgba(18,18,20,.5); }
.brand-card:hover::before { opacity: 1; }
.brand-card h3 { font-family: var(--font-display); font-weight: 400; font-size: var(--t-h4); line-height: var(--t-h4-lh); }
.brand-tag { color: var(--accent); font-size: .8rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; margin: calc(var(--luft) / 3) 0 var(--luft); }
.brand-copy { color: var(--ink-dim); font-size: var(--t-body); line-height: var(--t-body-lh); margin-bottom: var(--luft); }

.advisor { background: var(--bg-soft); }
.advisor-shell {
  max-width: 720px; margin: 0 auto; background: var(--panel); border: 1px solid var(--line);
  border-radius: 18px; padding: clamp(20px, 4vw, 40px); min-height: 420px; display: flex; flex-direction: column;
}
.advisor-chat { flex: 1; display: flex; flex-direction: column; gap: 14px; margin-bottom: 22px; }
.msg { max-width: 85%; padding: 14px 18px; border-radius: 18px; font-size: .95rem; opacity: 0; transform: translateY(12px); animation: msgIn .5s var(--ease-out) forwards; }
@keyframes msgIn { to { opacity: 1; transform: none } }
.msg.bot { background: var(--bg-soft); border: 1px solid var(--line); border-bottom-left-radius: 4px; align-self: flex-start; }
.msg.user { background: var(--ink); color: var(--bg); border-bottom-right-radius: 4px; align-self: flex-end; }
.msg.typing { display: flex; gap: 5px; padding: 18px; }
.msg.typing i { width: 7px; height: 7px; border-radius: 50%; background: var(--ink-dim); animation: typing 1s ease-in-out infinite; }
.msg.typing i:nth-child(2) { animation-delay: .15s } .msg.typing i:nth-child(3) { animation-delay: .3s }
@keyframes typing { 50% { transform: translateY(-5px); opacity: .5 } }
.advisor-options { display: flex; flex-wrap: wrap; gap: 10px; }
.advisor-options button {
  padding: 12px 22px; border: 1px solid var(--line); border-radius: 999px; font-size: .95rem; font-weight: 500;
  transition: border-color .3s, background .3s, transform .3s var(--ease-out);
  opacity: 0; transform: translateY(10px); animation: msgIn .45s var(--ease-out) forwards;
}
.advisor-options button:nth-child(2) { animation-delay: .06s } .advisor-options button:nth-child(3) { animation-delay: .12s }
.advisor-options button:nth-child(4) { animation-delay: .18s }

@media (prefers-reduced-motion: reduce){
  .advisor-options button{ animation: none; opacity: 1; transform: none }
}
.advisor-options button:hover { border-color: var(--accent); background: rgba(18,18,20,.05); transform: translateY(-2px); }
.advisor-restart { margin-top: 18px; align-self: center; color: var(--ink-dim); font-size: .85rem; transition: color .3s; }
.advisor-restart:hover { color: var(--accent); }
.bike-reco { background: var(--bg-soft); border: 1px solid rgba(18,18,20,.4); border-radius: 18px; padding: 18px 20px; align-self: stretch; max-width: 100%; opacity: 0; transform: translateY(12px); animation: msgIn .5s var(--ease-out) forwards; }
.bike-reco h4 { font-family: var(--font-display); font-weight: 400; font-size: var(--t-h4); }
.bike-reco .reco-brand { color: var(--accent); font-size: var(--t-tag); font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.bike-reco p { color: var(--ink-dim); font-size: .85rem; margin-top: 6px; }
.bike-reco .reco-meta { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 10px; }
.bike-reco .reco-meta span { font-size: var(--t-tag); border: 1px solid var(--line); border-radius: 999px; padding: 3px 10px; color: var(--ink-dim); }
.bike-reco .reco-price { color: var(--ink); font-weight: 600; }

.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; max-width: 1300px; margin: 0 auto; }
.team-card { background: var(--panel); border: 1px solid var(--line); border-radius: 18px; padding: 26px; transition: transform .5s var(--ease-out), border-color .4s, opacity 1s var(--ease-out); }
.team-card:hover { transform: translateY(-5px); border-color: rgba(18,18,20,.45); }

.team-card[role="button"] { cursor: pointer; }
.team-card[role="button"]:focus-visible {
  outline: 2px solid var(--ink); outline-offset: 3px;
}
.team-profil {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .35s var(--ease-out), margin-top .35s var(--ease-out);
  margin-top: 0;
}
.team-profil > p { overflow: hidden; margin: 0; font-size: .85rem; color: var(--ink-dim); }
.team-card.ist-offen .team-profil { grid-template-rows: 1fr; margin-top: 14px; }

.team-mehr {
  display: block; width: 100%; height: 10px; margin-top: 12px;
  background: no-repeat center/10px 6px
    url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%236b6b6b' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
  transition: transform .35s var(--ease-out), opacity .3s;
  opacity: .5;
}
.team-card:hover .team-mehr { opacity: 1; }
.team-card.ist-offen .team-mehr { transform: rotate(180deg); }
@media (prefers-reduced-motion: reduce) {
  .team-profil, .team-mehr { transition: none; }
}
.team-card h3 { font-family: var(--font-display); font-weight: 400; font-size: var(--t-h4); line-height: var(--t-h4-lh); }
.team-role { color: var(--accent); font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; margin: 4px 0 12px; }
.team-card p:not(.team-role) { color: var(--ink-dim); font-size: .95rem; }

.leasing { background: var(--bg-soft); }
.leasing-steps { max-width: 760px; margin: 0 auto; list-style: none; counter-reset: step; display: grid; gap: 14px; }
.leasing-steps li {
  counter-increment: step; background: var(--panel); border: 1px solid var(--line); border-radius: 18px;
  padding: 20px 24px 20px 76px; position: relative; color: var(--ink-dim); font-size: .95rem;
}
.leasing-steps li strong { color: var(--ink); display: block; margin-bottom: 2px; }
.leasing-steps li::before {
  content: counter(step, decimal-leading-zero); position: absolute; left: 22px; top: 50%; transform: translateY(-50%);
  font-family: var(--font-display); font-size: 1.5rem; color: var(--accent);
}

.leasing-steps .steps-uebergabe {
  counter-increment: none;
  background: none; border: 0; padding: 10px 0; border-radius: 0;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  column-gap: 18px; row-gap: 14px; text-align: center;
  margin-block: 8px;
}

.leasing-steps .steps-uebergabe::before,
.leasing-steps .steps-uebergabe::after {
  content: ''; position: static; transform: none; height: 1px; background: var(--line);
  grid-row: 2; align-self: center;
}
.leasing-steps .steps-uebergabe::before { grid-column: 1; }
.leasing-steps .steps-uebergabe::after  { grid-column: 3; }

.leasing-steps .steps-uebergabe img { grid-column: 2; grid-row: 2; width: 180px; height: auto; }

.leasing-steps .steps-uebergabe .uebergabe-satz {
  grid-column: 1 / -1; grid-row: 1; justify-self: center;
  font-size: 1.05rem; font-weight: 700; letter-spacing: normal;
  text-transform: none; color: var(--ink); text-align: center;
}

.social-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 18px; max-width: 1200px; margin: 0 auto; }
.social-card {
  aspect-ratio: 16 / 10; border-radius: 18px; border: 1px solid var(--line); position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 24px;
  background: linear-gradient(160deg, #232327, #101013);
  transition: transform .5s var(--ease-out), border-color .4s, opacity 1s var(--ease-out);
}

.social-links {
  background: var(--panel); aspect-ratio: auto; border-radius: 999px;
  width: max-content; max-width: 100%; margin-inline: auto;
  flex-direction: row; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 8px 28px; padding: 10px 28px;
}
.social-links p {
  color: var(--ink-dim); font-size: var(--t-tag); text-transform: uppercase;
  letter-spacing: .16em; margin: 0; white-space: nowrap;
}

.social-links a {
  font-family: var(--font-display); font-size: 1.15rem; line-height: 1;
  align-items: center; min-block-size: var(--ziel-min);
  padding-inline: 4px; transition: color .3s;
}

.social-links a + a { border-inline-start: 1px solid var(--line); padding-inline-start: 28px; }

.social-links a:hover { color: var(--accent); }
@media (max-width: 560px) {

  .social-links { border-radius: 18px; padding: 14px 20px; gap: 6px 14px; }
  .social-links p { flex-basis: 100%; text-align: center; }
  .social-links a { font-size: 1rem; }
  .social-links a + a { border-inline-start: 0; padding-inline-start: 4px; }
}

.contact { background: var(--bg-soft); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(30px, 6vw, 80px); max-width: 1200px; margin: 0 auto; align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info address { font-style: normal; font-size: 1.05rem; margin: 26px 0 14px; line-height: 1.7; }

.contact-info address a.adresse-route {
  color: inherit; display: inline-block;
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease-out), opacity .3s var(--ease-out);
}
.contact-info address a.adresse-route:hover { border-bottom-color: currentColor; }
.contact-info address a.adresse-route:focus-visible { outline: 2px solid currentColor; outline-offset: 4px; }
.contact-hours { color: var(--ink-dim); margin-bottom: 26px; }
.contact-info .btn { margin: 0 10px 12px 0; }
.contact-small { color: var(--ink-dim); font-size: .85rem; margin-top: 14px; }
.contact-form { background: var(--panel); border: 1px solid var(--line); border-radius: 18px; padding: clamp(24px, 4vw, 40px); display: grid; gap: 16px; }
.contact-form h3 { font-family: var(--font-display); font-weight: 400; font-size: var(--t-h4); margin-bottom: 6px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 520px) { .form-row { grid-template-columns: 1fr; } }
.contact-form label { display: grid; gap: 7px; font-size: .85rem; color: var(--ink-dim); }
.contact-form input[type="text"], .contact-form textarea {
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: 8px; padding: 13px 15px;
  color: var(--ink); font: inherit; font-size: max(16px, var(--t-body)); transition: border-color .3s;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--accent); }

.hp-field {
  position: absolute !important; width: 1px !important; height: 1px !important;
  padding: 0 !important; margin: -1px !important; overflow: hidden !important;
  clip-path: inset(50%); white-space: nowrap; border: 0 !important;
}
.hp-field input { width: 1px !important; height: 1px !important; padding: 0 !important; border: 0 !important; }

.form-consent { display: flex !important; gap: 10px; align-items: flex-start; font-size: .8rem !important; padding-block: 12px; margin-block: -12px; }
.form-consent input { margin-top: 3px; accent-color: var(--accent); }
.form-status { font-size: .85rem; color: var(--accent); min-height: 1.2em; }

.footer { border-top: 1px solid var(--line); padding: 72px clamp(20px, 5vw, 64px) 28px; overflow: hidden; }

.f-raster { display: grid; gap: 34px 48px; grid-template-columns: repeat(4, 1fr);
  max-width: 1300px; margin: 0 auto; }
@media (max-width: 1100px) { .f-raster { grid-template-columns: repeat(2, 1fr); gap: 36px 20px; } }

.f-spalte h2 { font-family: var(--font-body); font-size: var(--t-tag); font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--ink);
  line-height: 1.2; margin: 0 0 12px; }
.f-spalte { color: var(--ink-dim); font-size: var(--t-small); line-height: var(--t-small-lh); }
.f-spalte p { margin: 0 0 2px; }

.f-spalte a { color: var(--ink-dim); display: inline-flex; align-items: center;
  min-block-size: var(--ziel-min); width: fit-content;
  text-decoration: none; transition: color .3s; }
.f-spalte a:hover, .f-spalte a:focus-visible { color: var(--accent);
  text-decoration: underline; text-underline-offset: .28em; }

.f-liste { display: grid; justify-items: start; }

.f-zeiten { margin: 0; font-variant-numeric: tabular-nums; }
.f-hinweis { margin-top: 10px; font-size: var(--t-tag); color: var(--ink-dim); }

.footer-logo { display: block; width: 100%; max-width: 1300px; margin: 30px auto 0; user-select: none; }
.footer-logo img { display: block; width: 100%; height: auto; opacity: .07; }

.footer-logo.vorhang img { clip-path: inset(0 100% 0 0); }
.footer-logo.aufbau img { animation: markeAufbau 1.5s var(--ease-inout) forwards; }
@keyframes markeAufbau { to { clip-path: inset(0 0 0 0); } }
@media (prefers-reduced-motion: reduce) {
  .footer-logo.vorhang img { clip-path: none; }
  .footer-logo.aufbau img { animation: none; }
}

.footer-meta { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  border-top: 1px solid var(--line); margin-top: 40px; padding-top: 20px; align-items: center;
  color: var(--ink-dim); font-size: .85rem; }
.footer-meta nav { display: flex; gap: 22px; }

.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-meta a:hover { color: var(--accent); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; filter: none; }
  body::after { display: none; }
}

@media (pointer: coarse) { body::after { animation: none; } }

@media (max-width: 720px) {
  .hero-marquee { padding: 12px 0; }

  .footer-logo img { opacity: .12; }
}
@media (max-width: 480px) {
  .section-head { text-align: left; }
  .leasing-steps li { padding: 16px 16px 16px 60px; }
  .leasing-steps li::before { left: 16px; font-size: 1.05rem; }
}

@media (hover: none) {
  .brand-card:hover, .team-card:hover { transform: none; }
  .advisor-options button { padding: 14px 24px; }
}

.brand-card { padding-top: 0; }
.brand-img {
  width: calc(100% + 60px); height: auto; margin: 0 -30px 22px; display: block;
  aspect-ratio: 16 / 9; object-fit: cover;
  filter: grayscale(.25) contrast(1.05);
  transition: filter .6s, transform .8s var(--ease-out);
}
.brand-card:hover .brand-img { filter: grayscale(0) contrast(1.05); transform: scale(1.03); }
.team-card { padding-top: 0; overflow: hidden; }
.team-img {
  width: calc(100% + 52px); height: auto; margin: 0 -26px 18px; display: block;
  aspect-ratio: 4 / 3; object-fit: cover; object-position: center 20%;

  transition: transform .7s var(--ease-out);
}
.team-card:hover .team-img { transform: scale(1.04); }
.product-filters {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  max-width: 900px; margin: 0 auto 40px; align-items: center;
}
.pf-chip {
  padding: 10px 20px; border: 1px solid var(--line); border-radius: 999px;
  font-size: var(--t-small); font-weight: 500; color: var(--ink-dim);
  transition: border-color .3s, color .3s, background .3s, transform .3s var(--ease-out);
}
.pf-chip:hover { border-color: var(--accent); color: var(--ink); transform: translateY(-2px); }
.pf-chip.is-active { background: var(--ink); color: var(--bg); border-color: var(--ink); }

.pf-umbruch { flex-basis: 100%; height: 0; margin: 0; }
.product-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px; max-width: 1300px; margin: 0 auto;
}

.product-card {
  background: radial-gradient(125% 95% at 50% 14%, var(--bg) 0%, var(--bg-soft) 100%);
  border: 1px solid var(--line); border-radius: 18px;
  overflow: hidden; position: relative;
  opacity: 0; transform: translateY(30px);
  animation: prodIn .7s var(--ease-out) forwards;
  transition: transform .5s var(--ease-out), border-color .4s;
}

@keyframes prodIn { to { opacity: 1; transform: none } }

.product-card:nth-child(2){animation-delay:55ms}
.product-card:nth-child(3){animation-delay:110ms}
.product-card:nth-child(4){animation-delay:165ms}
.product-card:nth-child(5){animation-delay:220ms}
.product-card:nth-child(6){animation-delay:275ms}
.product-card:nth-child(7){animation-delay:330ms}
.product-card:nth-child(8){animation-delay:385ms}
.product-card:nth-child(9){animation-delay:440ms}
.product-card:nth-child(n+10){animation-delay:495ms}

@media (prefers-reduced-motion: reduce){
  .product-card{ animation: none; opacity: 1; transform: none }
}
.product-card:hover { transform: translateY(-6px); border-color: rgba(18,18,20,.4); }
.product-card img {

  width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: contain; display: block;
  padding: 4% 5%; position: relative; z-index: 2; mix-blend-mode: multiply;
}

@media (prefers-reduced-motion: no-preference) {
  .product-card img {
    transform: translate3d(calc(var(--kx, 0) * 10px), calc(var(--ky, 0) * 7px), 0);
    transition: transform .35s var(--ease-out);
  }
}

.product-card img { scale: 1; transition: scale .45s var(--ease-out); }
.product-card:hover img { scale: 1.05; }

.product-body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1 1 auto;
  position: relative; z-index: 2; }
.product-badges { margin-top: auto; }
.product-brand { color: var(--ink-dim); font-size: var(--t-tag); font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.product-body h3 { font-family: var(--font-display); font-weight: 400; font-size: var(--t-h4); margin: 2px 0 10px; }
.product-badges { display: flex; flex-wrap: wrap; gap: 6px; }
.product-badges span {
  font-size: var(--t-tag); border: 1px solid var(--line); border-radius: 999px;
  padding: 3px 10px; color: var(--ink-dim);
}
.product-badges .badge-cat { border-color: rgba(18,18,20,.35); color: var(--ink); }
.product-badges .badge-x { background: var(--ink); color: var(--bg); border-color: var(--ink); font-weight: 600; }

.product-badges .badge-bestellbar { border-color: var(--ink); color: var(--ink); font-weight: 600; }

.product-empty { grid-column: 1 / -1; text-align: center; color: var(--ink-dim); padding: 40px 0; }

.bike-reco { display: grid; grid-template-columns: 120px 1fr; gap: 16px; align-items: start; }
.bike-reco img { width: 120px; aspect-ratio: 3/2; object-fit: contain; background: #fff; border-radius: 8px; padding: 4px; }
.bike-reco .reco-body { min-width: 0; }
@media (max-width: 520px) {
  .bike-reco { grid-template-columns: 1fr; }
  .bike-reco img { width: 100%; }
}

.summary-box { border-color: rgba(18,18,20,.3); }
.summary-list { list-style: none; margin: 10px 0 16px; display: grid; gap: 6px; font-size: .85rem; color: var(--ink-dim); }
.summary-list strong { color: var(--ink); font-weight: 600; }
.summary-form { display: grid; gap: 12px; }
.summary-form input[type="text"], .summary-form input[type="email"] {
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: 8px;
  padding: 12px 14px; font: inherit; font-size: max(16px, var(--t-body)); color: var(--ink);
}
.summary-form input:focus { outline: none; border-color: var(--accent); }
.summary-consent { display: flex; gap: 10px; align-items: flex-start; font-size: .8rem; color: var(--ink-dim); }
.summary-consent input { margin-top: 3px; accent-color: var(--accent); }
.summary-consent a { text-decoration: underline; }
.summary-status { font-size: .85rem; color: var(--ink); min-height: 1.2em; }

.hero {

  position: relative; height: 100svh;
  background: #08080a; color: #f4f2ed;
  --ink: #f4f2ed; --ink-dim: rgba(244,242,237,.74); --accent: #f4f2ed;
  --line: rgba(244,242,237,.2);
}
.hero-sticky {

  position: relative; height: 100svh; overflow: hidden;
  display: grid; place-items: center;
}
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) contrast(1.18) brightness(.9);
  transform: scale(1.06);
}
.hero-video-scrim {
  position: absolute; inset: 0;
  background:
    radial-gradient(85% 65% at 50% 48%, rgba(8,8,10,.15) 10%, rgba(8,8,10,.78) 88%),
    linear-gradient(180deg, rgba(8,8,10,.72) 0%, rgba(8,8,10,.3) 32%, rgba(8,8,10,.5) 72%, #08080a 100%);
}

.hero-stage {
  grid-area: 1 / 1; position: relative; z-index: 3;
  width: min(1100px, 92vw); padding: 0 4px;
  text-align: center;
  transition: opacity .5s var(--ease-out), transform .6s var(--ease-out), filter .5s;
  will-change: opacity, transform;
}
.hero-stage[data-hidden="true"] { pointer-events: none; }

.hero-kicker {
  font-size: .8rem; font-weight: 600; letter-spacing: .28em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 22px;
}
.hero-title { font-family: var(--font-display); font-weight: 400; font-size: var(--t-hero); line-height: 1.1; letter-spacing: .01em; }
.hero-title .line { display: block; font-size: clamp(2.6rem, 8.5vw, 6.6rem); }
.hero-title .line.accent { color: transparent; -webkit-text-stroke: 2px #f4f2ed; }
.hero-sub {
  max-width: 620px; margin: 26px auto 0; color: var(--ink-dim);
  font-size: clamp(.95rem, 1.4vw, 1.1rem);
}

.hero-stage--advisor { display: flex; flex-direction: column; align-items: center; opacity: 0; }
.ha-meta {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-size: .8rem; font-weight: 600; letter-spacing: .28em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 22px;
}
.ha-dot { width: 8px; height: 8px; border-radius: 50%; background: #f4f2ed; animation: haPulse 1.8s ease-in-out infinite; }
@keyframes haPulse { 50% { opacity: .25; transform: scale(.75) } }
.ha-q {
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(2.6rem, 8.5vw, 6.6rem); line-height: 1.1; letter-spacing: .01em;
  margin: 0;

  white-space: pre-line; text-wrap: balance;
}
.ha-opts {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 30px;
  margin-top: 26px; max-width: 760px;
}
.ha-opts button {
  font-size: clamp(.95rem, 1.4vw, 1.1rem); font-weight: 500; color: var(--ink-dim);
  display: inline-flex; align-items: baseline; gap: 9px; padding: 4px 0;
  transition: color .3s, transform .35s var(--ease-out);
}
.ha-opts button span { position: relative; }
.ha-opts button span::after {
  content: ''; position: absolute; left: 0; bottom: -4px; height: 1px; width: 100%;
  background: #f4f2ed; transform: scaleX(0); transform-origin: right; transition: transform .4s var(--ease-out);
}
.ha-opts button i { font-style: normal; opacity: 0; transform: translateX(-5px); transition: opacity .3s, transform .35s var(--ease-out); }
.ha-opts button:hover { color: #f4f2ed; transform: translateY(-2px); }
.ha-opts button:hover span::after { transform: scaleX(1); transform-origin: left; }
.ha-opts button:hover i { opacity: 1; transform: none; }
.ha-opts .ha-done { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(1.2rem, 2.4vw, 1.8rem); color: #f4f2ed; }
.ha-trail { margin-top: 20px; font-size: .8rem; letter-spacing: .1em; color: rgba(244,242,237,.55); min-height: 1.1em; }

.hero-stage--advisor.ha-swap .ha-q, .hero-stage--advisor.ha-swap .ha-opts { opacity: 0; transform: translateY(12px); }
.ha-q, .ha-opts { transition: opacity .32s var(--ease-out), transform .32s var(--ease-out); }

.hero-marquee {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 5; overflow: hidden; padding: 16px 0;
  border-top: 1px solid rgba(244,242,237,.16); background: rgba(8,8,10,.75); backdrop-filter: blur(6px);
}

.marquee-track { display: flex; width: max-content; white-space: nowrap; animation: marquee 212s linear infinite; }

@media (max-width: 720px) { .marquee-track { animation-duration: 114s; } }

.marquee-track .mq-satz { display: inline-flex; align-items: center; gap: 46px; padding-right: 46px; }
.marquee-track .mq-logo { display: inline-block; height: 20px; width: calc(20px*var(--seiten,5));
  background: currentColor; color: rgba(244,242,237,.5);
  -webkit-mask: var(--logo) center/contain no-repeat; mask: var(--logo) center/contain no-repeat; }
@keyframes marquee { to { transform: translateX(-50%) } }

.nav.over-hero {
  background: none;
  backdrop-filter: none; -webkit-backdrop-filter: none;
  box-shadow: none;
}
.nav.over-hero nav a,
.nav.over-hero .lang-item{
  text-shadow: 0 1px 3px rgba(8,8,10,.55), 0 2px 16px rgba(8,8,10,.42);
}
.nav.over-hero .nav-logo img{
  filter: invert(1) drop-shadow(0 2px 10px rgba(8,8,10,.55));
}
.nav.over-hero .nb-strich{
  box-shadow: 0 1px 6px rgba(8,8,10,.6);
}

.nav.over-hero .nb-flaeche{ backdrop-filter: none; -webkit-backdrop-filter: none; box-shadow: none }
.nav.over-hero .nav-burger:hover .nb-flaeche,
.nav.over-hero .nav-burger:focus-visible .nb-flaeche{
  backdrop-filter: blur(16px) saturate(var(--glas-saettigung)) brightness(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(var(--glas-saettigung)) brightness(1.2);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.3);
}

.nav.over-hero .nav-burger span { background: #f4f2ed; }
.nav.over-hero nav a { color: rgba(244,242,237,.8); }
.nav.over-hero nav a:hover { color: #f4f2ed; }
.nav.over-hero nav a::after { background: #f4f2ed; }

.nav.over-hero .lang-item { color: rgba(244,242,237,.55); }
.nav.over-hero .lang-item:hover { color: #f4f2ed; }
.nav.over-hero .lang-item.is-active { color: #08080a; background: #f4f2ed; }

@media (prefers-reduced-motion: reduce) {
  .hero { height: auto; }
  .hero-sticky { position: relative; height: auto; padding: 140px 0 90px; }
  .hero-stage { opacity: 1 !important; transform: none !important; }
  .hero-stage--advisor { margin-top: 60px; }
  .hero-video { display: none; }
}

.equipment { background: var(--bg-soft); }
.brand-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 18px; }
.brand-gallery img {
  width: 100%; height: auto; aspect-ratio: 3 / 4; object-fit: cover; border-radius: 8px;
  filter: grayscale(.3); transition: filter .5s, transform .6s var(--ease-out);
}
.brand-card:hover .brand-gallery img { filter: grayscale(0); }
.brand-gallery img:hover { transform: scale(1.04); }

.subpage { padding-top: 0; }
.sub-hero {
  position: relative; min-height: 52svh; display: grid; place-items: end start;
  padding: clamp(90px, 14vh, 160px) clamp(20px, 5vw, 64px) clamp(40px, 6vh, 70px);
  background: #08080a; overflow: hidden;
}
.sub-hero--plain { min-height: 34svh; background: var(--bg-soft); }
.sub-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.15) brightness(.8); }
.sub-hero-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,8,10,.65), rgba(8,8,10,.35) 45%, rgba(8,8,10,.85)); }
.sub-hero--plain .sub-hero-scrim { background: none; }
.sub-hero-inner { position: relative; z-index: 2; max-width: 1100px; }
.sub-hero:not(.sub-hero--plain) .sub-kicker, .sub-hero:not(.sub-hero--plain) .sub-title { color: #f4f2ed; }

.sub-kicker { font-size: .8rem; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--ink-dim); margin-bottom: 12px; }
.sub-title { font-family: var(--font-display); font-weight: 400; font-size: var(--t-h1); line-height: 1.12; }

.sub-wrap { max-width: 1200px; margin: 0 auto; padding: clamp(40px, 7vh, 80px) clamp(20px, 5vw, 64px); }

.crumbs { font-size: .8rem; margin-bottom: 34px; display: inline-flex; flex-wrap: wrap; gap: 8px; row-gap: 25px; align-items: center;
  background: rgba(8,8,10,.86); border-radius: 999px;
  padding: var(--raum-1) var(--raum-3);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  color: #f4f2ed; }
.crumbs a, .crumbs span { color: #f4f2ed; }
.crumbs a:hover { color: #fff; text-decoration: underline; }
.crumbs i { font-style: normal; color: rgba(244,242,237,.5); }
.sub-lead { max-width: 820px; margin-bottom: 54px; }
.sub-lead h2 { font-family: var(--font-display); font-weight: 400; font-size: var(--t-h3); line-height: 1.14; margin-bottom: 14px; }
.sub-lead p, .sub-two p { color: var(--ink-dim); font-size: var(--t-lead); line-height: var(--t-lead-lh); }
.sub-lead h3, .sub-two h3 { font-family: var(--font-display); font-weight: 400; font-size: var(--t-h4); margin: 26px 0 10px; }
.sub-two { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(24px, 5vw, 56px); margin-bottom: 56px; align-items: start; }
@media (max-width: 820px) { .sub-two { grid-template-columns: 1fr; } }
.sub-two > div h3 { margin-top: 0; }
.sub-facts { background: var(--panel); border: 1px solid var(--line); border-radius: 18px; padding: 26px 28px; }

.sub-facts ul { list-style: none; display: grid; gap: 10px; }
.sub-facts li { font-size: .95rem; color: var(--ink-dim); padding-left: 18px; position: relative; }
.sub-facts li::before { content: '›'; position: absolute; left: 0; color: var(--ink); }
.sub-facts strong { color: var(--ink); }

.sub-h2 { font-family: var(--font-display); font-weight: 400; font-size: var(--t-h3); line-height: var(--t-h3-lh); margin: 56px 0 26px; }

.sub-h2--mitte { text-align: center; }

.pw-titel {
  font-family: var(--font-display); font-weight: 400;
  font-size: var(--t-h2); line-height: var(--t-h2-lh);
  margin: 10px 0 26px;
}

.produktwelt-teil {

  max-width: 820px; margin-inline: auto; text-align: center;
  padding-top: clamp(90px, 12vh, 160px);

  margin-bottom: clamp(48px, 7vh, 80px);
}

.sub-note { color: var(--ink-dim); font-size: .95rem; margin-top: 22px; }

.model-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 18px; margin-bottom: 56px; }

.marken-galerie { display: grid; gap: 18px; margin: 0 0 56px; }
.marken-galerie--2 { grid-template-columns: repeat(2, 1fr); }
.marken-galerie--3 { grid-template-columns: repeat(3, 1fr); }
.marken-galerie--4 { grid-template-columns: repeat(4, 1fr); }
.marken-galerie--5 { grid-template-columns: repeat(5, 1fr); }
.marken-galerie figure { margin: 0; }
.marken-galerie img { width: 100%; height: auto; display: block; border-radius: 12px; }
@media (max-width: 720px) { .marken-galerie--3, .marken-galerie--4, .marken-galerie--5 { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
.model-card {
  background: var(--panel); border: 1px solid var(--line); border-radius: 18px; overflow: hidden;
  display: flex; flex-direction: column; transition: transform .5s var(--ease-out), border-color .4s;
}
.model-card:hover { transform: translateY(-3px); border-color: rgba(18,18,20,.28); }
.model-card img { width: 100%; height: auto; aspect-ratio: 3/2; object-fit: contain; background: #fff; padding: 4% 5%; }
.model-card--static img { object-fit: cover; padding: 0; aspect-ratio: 4/3; }
.model-body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.model-body h3 { font-family: var(--font-display); font-weight: 400; font-size: var(--t-h4); }
.model-text { color: var(--ink-dim); font-size: var(--t-small); }

.model-card .model-text { margin-bottom: auto; }

.model-preis-satz { color: var(--ink); font-size: .95rem; line-height: 1.45; margin: -4px 0 22px; max-width: 36ch; }

.tri-bestellbar { color: var(--ink-dim); font-size: .95rem; margin: -6px 0 26px; }

.kontakt-telefon { display: inline-block; padding: 6px 0; font-weight: 600;
  border-bottom: 1px solid var(--line); text-decoration: none; }
.kontakt-telefon:hover { border-bottom-color: var(--ink); }

.partner-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 12px; margin-bottom: 20px; }

.partner-grid .partner-kachel {
  display: grid; place-items: center; background: var(--panel); border: 1px solid var(--line);
  border-radius: 18px; padding: 22px 14px; font-family: var(--font-display); font-size: 1.05rem;
  transition: border-color .35s, transform .4s var(--ease-out);
  color: inherit; text-decoration: none;
}
.partner-grid .partner-kachel:hover { border-color: rgba(18,18,20,.4); transform: translateY(-3px); }

.partner-grid .partner-kachel:focus-visible {
  outline: 2px solid var(--ink); outline-offset: 3px; transform: translateY(-3px);
}

.partner-grid .partner-kachel { min-height: 100px; }
.partner-grid .partner-kachel:has(img) {
  background: #fff; padding: 0; position: relative; height: 100px;
}

.partner-grid img {
  position: absolute; top: 50%; left: 50%; translate: -50% -50%;

  width: calc(var(--f, .8) * min(100%, 240px)); height: auto; max-height: none;
}
.partner-grid img[src$="jobrad.svg"]           { --f: .717; }
.partner-grid img[src$="businessbike.svg"]     { --f: .658; }
.partner-grid img[src$="bikeleasing.svg"]      { --f: .872; }
.partner-grid img[src$="bikeleasing-plus.svg"] { --f: .797; }
.partner-grid img[src$="lease-a-bike.svg"]     { --f: .696; }
.partner-grid img[src$="eurorad.svg"]          { --f: .863; }
.partner-grid img[src$="mein-dienstrad.svg"]   { --f: .845; }
.partner-grid img[src$="eleasa.svg"]           { --f: .810; }
.partner-grid img[src$="kazenmaier.svg"]       { --f: .603; }
.partner-grid img[src$="ride.svg"]             { --f: .600; }

.partner-grid .partner-wort { font-family: var(--font-display); }

.sub-cta { background: var(--bg-soft); padding: clamp(50px, 9vh, 100px) clamp(20px, 5vw, 64px); }

.sub-cta-inner {
  max-width: 760px; margin: 0 auto; text-align: center;
  border-radius: 18px;
  padding: clamp(26px, 4vw, 40px) clamp(20px, 4vw, 36px);
}
.sub-cta-inner p { color: var(--ink-dim); margin: 14px 0 26px; }
.sub-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.sub-cta-small { font-size: .85rem; margin-top: 22px !important; }
.subpage .leasing-steps { margin-bottom: 54px; }

.sub-note.anbieterfrage{text-align:center;max-width:56ch;
  margin:var(--raum-6) auto;font-weight:500;font-size:1.02em}

.brand-card { cursor: pointer; }
.brand-card:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }

.brand-link { display: inline-block; margin-top: var(--luft); font-weight: 600; font-size: .85rem; letter-spacing: .04em; border-bottom: 1px solid currentColor; padding-bottom: 2px; transition: opacity .3s; }
.brand-card:hover .brand-link, .brand-card:focus-visible .brand-link { opacity: .6; }

.btn {
  display: inline-block; padding: 15px 34px; border-radius: 999px; font-weight: 600; font-size: .95rem;
  letter-spacing: .06em; text-transform: uppercase; text-align: center;
  transition: transform .35s var(--ease-out), background .35s, color .35s, border-color .35s;
  will-change: transform;
}
.btn-solid { background: var(--ink); color: var(--bg); }
.btn-solid:hover { background: #000; }
.btn-ghost { border: 1px solid var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); }

.post-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; max-width: 1200px; margin: 40px auto 0; }
.post-card { background: var(--panel); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; display: flex; flex-direction: column; transition: transform .5s var(--ease-out), border-color .4s; }
.post-card:hover { transform: translateY(-6px); border-color: rgba(18,18,20,.4); }
.post-card img { width: 100%; height: auto; aspect-ratio: 16/9; object-fit: cover; filter: grayscale(.25); transition: filter .5s, transform .7s var(--ease-out); }
.post-card:hover img { filter: grayscale(0); transform: scale(1.04); }
.post-body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 8px; }
.post-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.post-tags span { font-size: var(--t-tag); letter-spacing: .12em; text-transform: uppercase; border: 1px solid var(--line); border-radius: 999px; padding: 3px 10px; color: var(--ink-dim); }
.post-body h3 { font-family: var(--font-display); font-weight: 400; font-size: var(--t-h4); line-height: var(--t-h4-lh); }
.post-date { font-size: .8rem; color: var(--ink-dim); }
.subpage .post-grid { margin-bottom: 50px; }

.teaser{background:#0b0b0c;color:#f4f2ed;text-align:center;position:relative;overflow:hidden}

.teaser-video{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;
  filter:grayscale(1) contrast(1.1) brightness(.8)}
.teaser-scrim{position:absolute;inset:0;background:rgba(11,11,12,.6)}

@media (prefers-reduced-motion: reduce){
  .teaser-video{display:none}
  .teaser{background:#0b0b0c url("../assets/img/pursuits-teaser-poster.webp") center/cover no-repeat}
}
.teaser::before{content:'';position:absolute;inset:0;opacity:.5;z-index:1;
  background:radial-gradient(70% 60% at 50% 40%,rgba(244,242,237,.07),transparent 70%)}
.teaser-inner{position:relative;z-index:2;max-width:780px;margin:0 auto}
.teaser-kicker{font-size:var(--t-tag);font-weight:600;letter-spacing:.28em;text-transform:uppercase;color:rgba(244,242,237,.6);margin-bottom:16px}
.teaser-title{font-family:var(--font-display);font-weight:400;font-size:clamp(2rem,5.4vw,4rem);line-height:1.16}
.teaser-title .accent{color:transparent;-webkit-text-stroke:2px #f4f2ed}
.teaser-text{color:rgba(244,242,237,.7);font-size:clamp(1rem,1.5vw,1.15rem);margin:24px auto 0;max-width:600px}

.anmeldung{max-width:560px;margin:28px auto 0;text-align:left}
.anm-label{display:block;font-size:.85rem;color:rgba(244,242,237,.7);margin-bottom:8px}
.anm-zeile{display:flex;gap:10px;flex-wrap:wrap}
.anm-input{flex:1 1 240px;min-height:var(--ziel-min);padding:0 14px;border:1px solid rgba(244,242,237,.35);border-radius:10px;
  background:rgba(244,242,237,.06);color:#f4f2ed;font:inherit;font-size:max(16px,var(--t-body))}
.anm-input::placeholder{color:rgba(244,242,237,.4)}
.anm-input:focus{outline:2px solid #f4f2ed;outline-offset:2px}
.anm-knopf{flex:0 0 auto;min-height:var(--ziel-min);padding:0 26px;border:0;border-radius:999px;background:#f4f2ed;color:#0b0b0c;
  font:inherit;font-weight:600;font-size:.95rem;letter-spacing:.06em;text-transform:uppercase;cursor:pointer;transition:background .35s}
.anm-knopf:hover{background:#fff}
.anm-knopf:disabled{opacity:.6;cursor:default}
.anm-status{margin-top:12px;font-size:.9rem;color:#f4f2ed;min-height:22px}
.anm-einwilligung{margin-top:14px;font-size:.8rem;line-height:1.5;color:rgba(244,242,237,.55)}

.anm-datenschutz{margin-top:16px;font-size:.8rem;line-height:1.5}
.anm-einwilligung a,.anm-datenschutz a{color:rgba(244,242,237,.8);border-bottom:1px solid currentColor;padding-bottom:1px;transition:color .3s}
.anm-einwilligung a:hover,.anm-datenschutz a:hover{color:#f4f2ed}

body.loaded .hero-title .line:first-child{ animation-delay: .30s }
body.loaded .hero-title .line:last-child { animation-delay: .52s }
body.loaded .hero-kicker,
body.loaded .hero-title .line,
body.loaded .hero-sub{
  animation: vorspannAuf 1.15s var(--ease-out) both;
}
body.loaded .hero-kicker { animation-delay: .10s }
body.loaded .hero-sub    { animation-delay: .80s }

@keyframes vorspannAuf{
  from{ opacity:0; transform:translateY(26px); filter:blur(6px) }
  60% { filter:blur(0) }
  to  { opacity:1; transform:none; filter:blur(0) }
}

@view-transition{ navigation: auto }

::view-transition-old(root){ animation: 380ms var(--ease-inout) both seiteRaus }
::view-transition-new(root){ animation: 520ms var(--ease-inout) both seiteRein }

@keyframes seiteRaus{ to  { opacity:0; transform:scale(.99)  } }
@keyframes seiteRein{ from{ opacity:0; transform:scale(1.008) } }

@media (prefers-reduced-motion: reduce){
  body.loaded .hero-kicker, body.loaded .hero-sub,
  body.loaded .hero-title .line:not(.accent), body.loaded .hero-title .line.accent{ animation: none }
  ::view-transition-old(root), ::view-transition-new(root){ animation: none }
}

:root{
  --glas-unschaerfe: 26px;
  --glas-saettigung: 180%;
  --glas-kante-hell: rgba(255,255,255,.42);
  --glas-kante-dunkel: rgba(0,0,0,.10);
  --glas-schatten: 0 22px 60px -26px rgba(0,0,0,.45);

  --glas-daempfung-dunkel: brightness(.58) contrast(1.06);
  --glas-daempfung-hell:   brightness(1.18) contrast(.98);
}

.subpage .nav.scrolled { background: rgba(246,244,239,.92); }

.subpage .nav.scrolled nav a { color: var(--ink, #121214); }

.subpage .nav.over-hero{
  background: rgba(8,8,10,.58);
  backdrop-filter: blur(14px) brightness(.55);
  -webkit-backdrop-filter: blur(14px) brightness(.55);
}
.subpage .nav.over-hero nav a{ color:#f4f2ed; }
.subpage .nav.over-hero .lang-item, .subpage .nav.over-hero .lang-aktuell{ color:#f4f2ed; }
.nav.scrolled{
  background: rgba(246,244,239,.92);
  backdrop-filter: blur(var(--glas-unschaerfe)) saturate(var(--glas-saettigung)) var(--glas-daempfung-hell);
  -webkit-backdrop-filter: blur(var(--glas-unschaerfe)) saturate(var(--glas-saettigung)) var(--glas-daempfung-hell);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(0,0,0,.06),
              0 12px 34px -26px rgba(0,0,0,.4);
}
.hero-marquee{
  background: transparent;
  backdrop-filter: blur(20px) saturate(var(--glas-saettigung)) brightness(.66);
  -webkit-backdrop-filter: blur(20px) saturate(var(--glas-saettigung)) brightness(.66);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.14);
}
.mobile-menu{

  background: transparent;
  backdrop-filter: blur(44px) saturate(var(--glas-saettigung)) var(--glas-daempfung-dunkel);
  -webkit-backdrop-filter: blur(44px) saturate(var(--glas-saettigung)) var(--glas-daempfung-dunkel);
  box-shadow: inset 0 1px 0 var(--glas-kante-hell);
}

@property --mx{ syntax:'<percentage>'; inherits:true; initial-value:50% }
@property --my{ syntax:'<percentage>'; inherits:true; initial-value:50% }
@property --lichtstaerke{ syntax:'<number>'; inherits:true; initial-value:0 }

.hero-title, .section-title, .sub-title, .teaser-title{
  --mx:50%; --my:50%; --lichtstaerke:0;
  transition: --mx .95s var(--ease-out), --my .95s var(--ease-out),
              --lichtstaerke 1.2s var(--ease-out);
}
.hero-title:hover, .section-title:hover,
.sub-title:hover, .teaser-title:hover{ --lichtstaerke:.55 }

.section-title, .sub-title, .teaser-title{
  text-shadow: 0 0 calc(var(--lichtstaerke) * 46px)
               rgba(var(--scheinfarbe, 244,242,237), calc(var(--lichtstaerke) * .55));
  transition: --mx .95s var(--ease-out), --my .95s var(--ease-out),
              --lichtstaerke 1.2s var(--ease-out),
              text-shadow 1.2s var(--ease-out);
}
.section-title, .sub-title{ --scheinfarbe: 8,8,10 }
.teaser-title{ --scheinfarbe: 244,242,237 }

@media (prefers-reduced-motion: reduce){
  .hero-title, .section-title, .sub-title, .teaser-title{ transition: none }
}

.hero-title .line{ color: var(--ink) }
.hero-title .line.accent{
  color: transparent; -webkit-text-stroke: 2px #f4f2ed;
}

.hero{padding:0}
.hero-sticky{display:grid;place-items:center;place-content:center}
.hero-stage{
  grid-area:1/1;
  justify-self:center; align-self:center;
  margin-inline:auto;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  text-align:center;
}
.hero-stage--advisor{align-items:center}
.ha-meta,.ha-q,.ha-opts,.ha-trail{width:100%;text-align:center;justify-content:center}
.hero-title,.hero-sub,.hero-kicker{margin-inline:auto}

@media (max-width:720px){

}

@font-face{font-family:'NotoKufiArabic';src:url('../fonts/NotoKufiArabic.woff2') format('woff2');
  font-weight:700;font-display:swap;unicode-range:U+0600-06FF,U+0750-077F,U+08A0-08FF,U+FB50-FDFF,U+FE70-FEFF}
@font-face{font-family:'NotoSansArabic';src:url('../fonts/NotoSansArabic.woff2') format('woff2');
  font-weight:400 600;font-display:swap;unicode-range:U+0600-06FF,U+0750-077F,U+08A0-08FF,U+FB50-FDFF,U+FE70-FEFF}

html[lang="ar"]{
  --font-display:'NotoKufiArabic','Anton',sans-serif;
  --font-body:'NotoSansArabic','Archivo',sans-serif;
}

html[lang="ar"] .hero-title,html[lang="ar"] .section-title,html[lang="ar"] .sub-title,html[lang="ar"] .ha-q,html[lang="ar"] .teaser-title{
  letter-spacing:0;line-height:1.4;text-transform:none;
}
html[lang="ar"] .hero-kicker,html[lang="ar"] .section-kicker,html[lang="ar"] .sub-kicker,
html[lang="ar"] .nav nav a,html[lang="ar"] .btn{letter-spacing:.04em}
html[lang="ar"] .hero-title .line{font-size:clamp(2.2rem,6.5vw,4.6rem)}

[dir="rtl"] .crumbs{flex-direction:row-reverse}
[dir="rtl"] .sub-facts li{
  padding-left:0;padding-right:18px}
[dir="rtl"] .sub-facts li::before{left:auto;right:0;content:'‹'}
[dir="rtl"] .leasing-steps li{padding:20px 76px 20px 24px}
[dir="rtl"] .leasing-steps li::before{left:auto;right:22px}
[dir="rtl"] .footer-meta,[dir="rtl"] .contact-info .btn{direction:rtl}
[dir="rtl"] .nav{flex-direction:row-reverse}
[dir="rtl"] .nav nav{margin-left:0;margin-right:auto}
[dir="rtl"] .mobile-menu a{flex-direction:row-reverse}

[dir="rtl"] .product-brand,[dir="rtl"] .marquee-track,[dir="rtl"] .nav-logo,[dir="rtl"] [lang="en"],[dir="rtl"] .ltr{direction:ltr;unicode-bidi:isolate}

.article .sub-lead{max-width:760px}
.article .sub-lead p{margin-bottom:18px}
.article .sub-lead h3{margin:34px 0 12px}
.article-caption{font-size:.95rem;font-style:italic;opacity:.75;border-left:2px solid var(--line);padding-left:14px}

.form-scope-note{
  margin-block-start:.5rem;font-size:.8rem;line-height:1.5;
  color:var(--muted,#6b6b6b);
  padding-inline-start:.7rem;
  border-inline-start:2px solid currentColor;
}

.lang-switch {
  display: inline-flex; align-items: center; gap: 2px;
  direction: ltr; margin-inline-start: 18px;
}
.lang-item {
  font-size: var(--t-tag); font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted, #6b6b6b); padding: 6px 7px; border-radius: 8px;
  transition: color .25s, background .25s;
}
.lang-item:hover { color: var(--ink, #111); }
.lang-item.is-active { color: var(--ink, #111); background: rgba(17,17,17,.07); }

.lang-switch--klapp { position: relative; display: inline-block; margin-inline-start: 18px; }

.lang-switch--klapp > summary { list-style: none; cursor: pointer; }
.lang-switch--klapp > summary::-webkit-details-marker { display: none; }
.lang-aktuell {
  display: inline-block;
  font-size: var(--t-tag); font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink, #111); background: rgba(17,17,17,.07);
  padding: 6px 8px; border-radius: 8px;
  transition: color .25s, background .25s;
}
.lang-aktuell:hover { background: rgba(17,17,17,.12); }
.lang-switch--klapp > summary:focus-visible { outline: 2px solid currentColor; outline-offset: 2px; }

.lang-switch--klapp:not([open]) .lang-liste { display: none; }
.lang-switch--klapp[open] .lang-liste {
  position: absolute; inset-inline-end: 0; top: calc(100% + 8px);
  display: flex; gap: 2px; direction: ltr;
  padding: 6px; border-radius: 8px;
  background: var(--glas-karte, rgba(255,255,255,.9));
  backdrop-filter: blur(20px) saturate(var(--glas-saettigung));
  -webkit-backdrop-filter: blur(20px) saturate(var(--glas-saettigung));
  box-shadow: inset 0 1px 0 var(--glas-karte-kante), 0 18px 40px -24px rgba(0,0,0,.5);
  z-index: 30;
}

.nav.over-hero .lang-aktuell {
  color: #f4f2ed; background: rgba(8,8,10,.42);
  text-shadow: 0 1px 3px rgba(8,8,10,.85);
}
.nav.over-hero .lang-aktuell:hover { background: rgba(8,8,10,.62); }

.mobile-menu .lang-switch {
  margin: 34px 0 0; max-width: 100%; flex-wrap: wrap; gap: 4px;
}
.mobile-menu .lang-item {
  font-size: .8rem; padding: 11px 15px;
  color: rgba(244,242,237,.55); border: 1px solid rgba(244,242,237,.22); border-radius: 999px;
}
.mobile-menu .lang-item.is-active { color: #0e0e0e; background: #f4f2ed; border-color: #f4f2ed; }
@media (max-width: 1460px) {
  .nav .lang-switch { display: none; }
}

.aus-vorschau {
  max-width: 1200px; margin: clamp(48px, 7vh, 80px) auto 0;
  padding: 0 clamp(20px,4vw,48px); text-align: center;
}
.aus-reihe { font-family: var(--font-display); font-size: var(--t-label); line-height: var(--t-label-lh);
             text-transform: uppercase; letter-spacing: .05em; line-height: 1.7; }

.aus-reihe { display: flex; flex-wrap: wrap; justify-content: center; gap: 0 .45em; }
.aus-kat { white-space: nowrap; }
.aus-kat:not(:last-child)::after {
  content: '·'; margin-inline-start: .45em; color: var(--ink-dim,#6b6b6b);
}

.reihe-verweis { margin-top: clamp(48px, 7vh, 80px); text-align: center; }
.reihe-verweis a { text-decoration: underline; text-underline-offset: 4px; }

.aus-mehr.reihe-verweis { margin-top: 14px; }

.schnelleinstieg {
  max-width: 1200px; margin: 0 auto; padding: clamp(24px,4vw,48px) clamp(20px,4vw,48px) 0;

  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(10px,1.4vw,18px);
}
.se-kachel {
  display: flex; flex-direction: column; gap: 6px;

  overflow: hidden;

  padding: 0 0 clamp(16px,2vw,24px); border: 1px solid var(--line,#dcd8d0); border-radius: 18px;
  text-decoration: none; color: inherit; background: transparent;
  transition: border-color .25s ease, transform .25s ease;
}

.se-bild {
  width: 100%; height: auto; aspect-ratio: 4/3; object-fit: cover;
  display: block; border-radius: 17px 17px 0 0;

  filter: grayscale(.25); transition: filter .5s ease, transform .5s ease;
}

.se-kachel .se-bild { scale: 1; transition: filter .5s ease, scale .5s var(--ease-out); }
.se-kachel:hover .se-bild, .se-kachel:focus-visible .se-bild { filter: grayscale(0); scale: 1.05; }
.brand-card .brand-img { scale: 1; transition: scale .5s var(--ease-out); }
.brand-card:hover .brand-img { scale: 1.05; }
.se-kachel:hover, .se-kachel:focus-visible {
  box-shadow: inset 0 1px 0 var(--glas-karte-kante),
              inset 0 0 40px -20px var(--glas-karte-kante),
              0 26px 60px -30px rgba(0,0,0,.5);
}
.se-name, .se-zeile { padding-inline: clamp(16px,2vw,24px); }
.se-name { margin-top: clamp(12px,1.6vw,18px); }
.se-kachel:hover, .se-kachel:focus-visible { border-color: var(--ink); transform: translateY(-2px); }
.se-name { font-family: var(--font-display); font-size: var(--t-h4);
           text-transform: uppercase; letter-spacing: .06em; }
.se-zeile { font-size: var(--t-small);  color: var(--ink-dim,#6b6b6b); line-height: 1.45; }

@media (max-width: 900px) {
  .schnelleinstieg {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scroll-padding-inline-start: clamp(20px, 4vw, 48px);

    padding-bottom: 6px;
  }
  .schnelleinstieg::-webkit-scrollbar { height: 0; }
  .se-kachel {
    flex: 0 0 78%;
    scroll-snap-align: start;
  }
}

.model-gallery,.model-highlights,.model-geometry,.model-aehnlich{
  max-width:1200px;margin:0 auto;padding:clamp(28px,5vw,56px) clamp(20px,4vw,48px) 0;
}

.model-letzte{ padding-bottom:clamp(28px,5vw,56px); }
.model-gallery h2,.model-highlights h2,.model-geometry h2,.model-aehnlich h2{
  font-family:var(--font-display);font-size:var(--t-h4);
  text-transform:uppercase;letter-spacing:.04em;margin:0 0 18px;
}

.gallery-wrap{position:relative;}
.gallery-track{
  display:flex;gap:14px;overflow-x:auto;scroll-snap-type:x mandatory;
  padding-bottom:14px;-webkit-overflow-scrolling:touch;
  scrollbar-width:thin;scrollbar-color:var(--line,#e6e2d9) transparent;
  cursor:grab;
}
.gallery-track.zieht{cursor:grabbing;scroll-snap-type:none;}
.gallery-track::-webkit-scrollbar{height:6px;}
.gallery-track::-webkit-scrollbar-thumb{background:var(--line,#e6e2d9);border-radius:999px;}
.gallery-track::-webkit-scrollbar-track{background:transparent;}
.gallery-track figure{
  margin:0;scroll-snap-align:start;flex:0 0 auto;
  height:clamp(220px,32vw,360px);

  min-width:120px;
}
.gallery-track img{
  height:100%;width:auto;max-width:none;object-fit:contain;

  background:#fff;border:1px solid var(--line,#e6e2d9);border-radius:8px;display:block;
  pointer-events:none;user-select:none;
}

.gallery-track img.gal-frei{background:none;mix-blend-mode:multiply}

.gallery-track picture{display:contents}

.gallery-wrap::after{
  content:'';position:absolute;inset-block:0;inset-inline-end:0;width:64px;
  background:linear-gradient(to left,var(--bg,#f6f4ef),transparent);
  pointer-events:none;opacity:0;transition:opacity .3s;
}
.gallery-wrap.mehr-rechts::after{opacity:1;}
.gal-nav{
  position:absolute;top:50%;translate:0 -50%;z-index:2;
  width:44px;height:44px;display:grid;place-items:center;
  border:1px solid var(--line,#e6e2d9);border-radius:999px;
  background:rgba(251,250,247,.92);backdrop-filter:blur(6px);
  cursor:pointer;opacity:0;transition:opacity .3s,background .3s;
}
.gallery-wrap:hover .gal-nav{opacity:1;}
.gal-nav:hover{background:var(--ink,#111);color:#f4f2ed;}
.gal-nav[hidden]{display:none;}
.gal-prev{inset-inline-start:8px;}
.gal-next{inset-inline-end:8px;}
@media (hover:none){ .gal-nav{display:none;} }
.model-highlights ul{
  list-style:none;margin:0;padding:0;
  display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:10px 22px;
}
.model-highlights li{
  position:relative;padding:10px 0 10px 26px;border-bottom:1px solid var(--line,#e6e2d9);
  font-size:.95rem;
}

.model-highlights li::before{
  content:'';position:absolute;inset-inline-start:2px;top:calc(10px + .8em - 1px);
  width:12px;height:2px;background:var(--ink,#111);
}

.aufklapper > summary { cursor: pointer; list-style: none; display: flex;
  align-items: center; gap: 10px; }
.aufklapper > summary::-webkit-details-marker { display: none; }
.aufklapper > summary h2 { margin: 0; }
.aufklapper > summary::after { content: "+"; font-family: var(--font-display);
  font-size: 1.35rem; line-height: 1; color: var(--ink-dim); }
.aufklapper[open] > summary::after { content: "\2013"; }
.aufklapper[open] > .geo-scroll { margin-top: 18px; }

.geo-bild { margin: 0 0 6px; }
.geo-bild img {
  width: 100%; height: auto; display: block;

  max-height: 56vh; object-fit: contain;

}
.model-geometry tr[data-mass] th[tabindex] { cursor: pointer; }
.model-geometry tr[data-mass]:hover,
.model-geometry tr[data-mass].geo-aktiv { background: var(--bg-soft, rgba(18,18,20,.04)); }
.model-geometry tr[data-mass] th:focus-visible {
  outline: 2px solid var(--ink); outline-offset: -2px;
}
@media (prefers-reduced-motion: no-preference) {
  .geo-bild img { transition: opacity .18s; }
}
.geo-scroll{overflow-x:auto;border:1px solid var(--line,#e6e2d9);border-radius:8px;}
.model-geometry table{border-collapse:collapse;width:100%;min-width:640px;font-size:.85rem;}
.model-geometry th,.model-geometry td{
  padding:10px 14px;text-align:center;border-bottom:1px solid var(--line,#e6e2d9);
  white-space:nowrap;font-variant-numeric:tabular-nums;
}

.model-geometry th[scope=row]{
  text-align:start;font-weight:600;
  background:#f6f4ef;
  position:sticky;inset-inline-start:0;z-index:2;
}
.model-geometry th[scope=row]::after{
  content:'';position:absolute;inset-block:0;inset-inline-end:0;width:1px;
  background:var(--line,#e6e2d9);
}
.model-geometry tr:first-child th{background:var(--ink,#111);color:#f4f2ed;}
.model-geometry tr:first-child th[scope=row]{background:var(--ink,#111);z-index:3;}
.model-geometry tr:first-child th[scope=row]::after{background:rgba(244,242,237,.25);}

.geo-scroll{position:relative;}
.model-geometry td{background:#faf9f6;}
.model-geometry tr:last-child th,.model-geometry tr:last-child td{border-bottom:0;}

@media (max-width: 640px){
  .model-geometry th[scope=row]{
    white-space:normal;max-width:7.5em;font-size:.8rem;line-height:1.35;
    hyphens:auto;padding-inline:10px;
  }
  .model-geometry td{min-width:3.6em;}
}

[dir="rtl"] .model-geometry table{direction:ltr;}

[dir="rtl"] .geo-scroll{direction:ltr;}

.advisor-input{

  --knopf:3.1rem;
  display:flex;gap:8px;margin-top:14px;align-items:stretch;
}
.advisor-input input,
.advisor-input button{ min-height:var(--knopf); }
.advisor-input input{
  flex:1;min-width:0;padding:12px 16px;font:inherit; font-size: max(16px, var(--t-body));color:var(--ink,#111);background:#fff;border:1px solid var(--line,#e6e2d9);
  border-radius:999px;outline:none;transition:border-color .25s;
}
.advisor-input input:focus{border-color:var(--ink,#111);}
.advisor-input button{
  padding:12px 22px;font-size:.8rem;font-weight:600;letter-spacing:.08em;text-transform:uppercase;
  color:#f4f2ed;background:var(--ink,#111);border:0;border-radius:999px;cursor:pointer;
  transition:opacity .25s;
}
.advisor-input button:hover{opacity:.85;}
[dir="rtl"] .advisor-input{direction:rtl;}

a.product-card{display:flex;flex-direction:column;color:inherit;text-decoration:none;}
a.product-card:hover h3{text-decoration:underline;text-underline-offset:3px;}

.brand-card::before,
.hero-video,
.hero-video-scrim,
.hero-marquee,
.sub-hero-img,
.sub-hero-scrim,
.teaser::before {
  pointer-events: none;
}

.sub-cta-small .cta-teil { white-space: nowrap; display: inline-block; }
.sub-cta-small .cta-trenner { white-space: nowrap; }
@media (max-width: 560px) {

  .sub-cta-small .cta-teil { display: block; }
  .sub-cta-small .cta-trenner { display: none; }
  .sub-cta-small { line-height: 1.9; }
}

.ha-antwort{
  margin: 14px 0 0; max-width: 46ch;
  font-size: clamp(.9rem, 1.6vw, 1.02rem); line-height: 1.6;
  color: rgba(244,242,237,.72);
  border-inline-start: 2px solid rgba(244,242,237,.3); padding-inline-start: 14px;
  animation: haAntwortIn .5s var(--ease-out) both;
}
@keyframes haAntwortIn { from { opacity: 0; transform: translateY(6px) } }

.ha-ask{
  display: flex; align-items: center; gap: 10px;
  margin: 22px 0 0; max-width: 480px;
  border-bottom: 1px solid rgba(244,242,237,.28);
  transition: border-color .35s;
}
.ha-ask:focus-within{ border-bottom-color: rgba(244,242,237,.75); }
.ha-ask input{
  flex: 1; min-width: 0; padding: 12px 2px;
  font: inherit; font-size: max(16px, var(--t-body)); color: #f4f2ed; background: transparent; border: 0; outline: none;
}
.ha-ask input::placeholder{ color: rgba(244,242,237,.45); }
.ha-ask button[type=submit]{
  flex: none; padding: 8px 2px; border: 0; background: transparent; cursor: pointer;
  font-size: var(--t-tag); font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(244,242,237,.6); transition: color .3s;
}
.ha-ask button[type=submit]:hover{ color: #f4f2ed; }

@media (max-width: 640px){
  .ha-ask{ max-width: 100%; }
  .ha-antwort{ max-width: 100%; }
}

.ha-mic{
  flex: none; display: grid; place-items: center;
  width: 38px; height: 38px; padding: 0; cursor: pointer;
  color: rgba(244,242,237,.6); background: transparent;
  border: 1px solid rgba(244,242,237,.28); border-radius: 999px;
  transition: color .3s, border-color .3s, background .3s;
}
.ha-mic:hover{ color: #f4f2ed; border-color: rgba(244,242,237,.7); }
.ha-mic.hoert{
  color: #0e0e0e; background: #f4f2ed; border-color: #f4f2ed;
  animation: micPuls 1.4s ease-in-out infinite;
}
@keyframes micPuls{
  0%, 100% { box-shadow: 0 0 0 0 rgba(244,242,237,.45) }
  70%      { box-shadow: 0 0 0 12px rgba(244,242,237,0) }
}
@media (prefers-reduced-motion: reduce){ .ha-mic.hoert{ animation: none } }

.advisor-input .adv-mic{
  flex: none; align-self: stretch; width: var(--knopf); height: auto;
  display: grid; place-items: center; padding: 0; cursor: pointer;
  color: var(--ink-dim, #6b6b6b); background: #fff;
  border: 1px solid var(--line, #e6e2d9); border-radius: 999px;
  transition: color .3s, border-color .3s, background .3s;
}
.advisor-input .adv-mic:hover{ color: var(--ink, #111); border-color: var(--ink, #111); }
.adv-mic.hoert{
  color: #f4f2ed; background: var(--ink, #111); border-color: var(--ink, #111);
  animation: micPulsHell 1.4s ease-in-out infinite;
}
@keyframes micPulsHell{
  0%, 100% { box-shadow: 0 0 0 0 rgba(18,18,20,.35) }
  70%      { box-shadow: 0 0 0 12px rgba(18,18,20,0) }
}
@media (prefers-reduced-motion: reduce){ .adv-mic.hoert{ animation: none } }

.equipment .brand-card .brand-gallery { margin-top: auto; }

.equipment .brand-card .brand-gallery + .brand-link { margin-top: var(--luft); }

.wa-form { max-width: 780px; }
.wa-step {
  border: 1px solid var(--line); border-radius: 18px; background: var(--panel);
  padding: clamp(20px, 3vw, 30px); margin-bottom: 20px;
}
.wa-step > legend {
  font-family: var(--font-display); font-weight: 400; font-size: 1.35rem;
  display: flex; align-items: center; gap: 12px; padding: 0 10px; margin-left: -10px;
}
.wa-nr {
  display: grid; place-items: center; width: 30px; height: 30px; flex: none;
  border-radius: 50%; background: var(--ink); color: var(--bg);
  font-family: var(--font-body); font-size: .95rem; font-weight: 600;
}
.wa-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 620px) { .wa-grid { grid-template-columns: 1fr; } }

.wa-feld { display: grid; gap: 7px; margin-top: 18px; }
.wa-grid .wa-feld { margin-top: 0; }
.wa-feld > label, .wa-label { font-size: .85rem; color: var(--ink-dim); }
.wa-feld small { font-size: .8rem; color: var(--ink-dim); line-height: 1.45; }
.wa-opt-tag {
  font-size: var(--t-tag); text-transform: uppercase; letter-spacing: .08em;
  background: var(--bg-soft); border-radius: 18px; padding: 2px 8px; margin-left: 6px;
}
.wa-form input[type="text"], .wa-form input[type="email"], .wa-form input[type="tel"],
.wa-form input[type="month"], .wa-form input:not([type]), .wa-form select, .wa-form textarea {
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: 8px;
  padding: 13px 15px; color: var(--ink); font: inherit; font-size: max(16px, var(--t-body)); width: 100%;
  transition: border-color .3s;
}
.wa-form :is(input, select, textarea):focus-visible {
  outline: 2px solid var(--accent); outline-offset: 2px; border-color: var(--accent);
}
.wa-form textarea { resize: vertical; min-height: 96px; }

.wa-opts { display: flex; flex-wrap: wrap; gap: 8px; }
.wa-opts--raster { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.wa-opt {
  display: flex; align-items: center; gap: 10px; cursor: pointer;
  border: 1px solid var(--line); border-radius: 8px; padding: 11px 14px;
  background: var(--panel); font-size: .95rem; transition: border-color .2s, background .2s;
}
.wa-opt:hover { border-color: var(--ink-dim); }
.wa-opt input { accent-color: var(--accent); flex: none; }
.wa-opt:has(input:checked) { border-color: var(--accent); background: var(--bg-soft); }
.wa-opt:has(input:focus-visible) { outline: 2px solid var(--accent); outline-offset: 2px; }

.wa-consent .wa-opt { align-items: flex-start; line-height: 1.5; }
.wa-consent .wa-opt input { margin-top: 3px; }

.wa-bedingt[hidden] { display: none; }
#leasingBlock { border-left: 2px solid var(--line); padding-left: 18px; margin-top: 18px; }

.wa-intern-hinweis {
  border: 1px solid var(--line); border-left: 4px solid var(--ink);
  border-radius: 8px; padding: 14px 18px; margin-bottom: 26px;
  background: var(--bg-soft); font-size: .95rem;
}

.wa-fehlt { border-left: 3px solid #b3261e; padding-left: 12px; }
.wa-fehlt > label, .wa-fehlt .wa-label { color: #b3261e; }
fieldset.wa-fehlt { border-color: #b3261e; }

.wa-abschluss { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 8px; }
.wa-status { font-size: .95rem; color: var(--ink-dim); }
.wa-status--fehler { color: #b3261e; }
.wa-status-code { opacity: .6; font-size: .8rem; }

.wa-fertig { max-width: 780px; }
.wa-fertig > p { margin-bottom: 14px; color: var(--ink-dim); }
.wa-zusammenfassung { margin-top: 22px; border-top: 1px solid var(--line); }
.wa-zusammenfassung p {
  display: flex; justify-content: space-between; gap: 20px;
  padding: 11px 0; border-bottom: 1px solid var(--line); font-size: var(--t-body);
}
.wa-zusammenfassung span { color: var(--ink-dim); }

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

.aus-band {
  grid-column: 1 / -1;

  min-width: 0; max-width: 100%;
  margin-bottom: clamp(26px, 4vw, 46px);
  overflow-x: auto; overflow-y: hidden;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  cursor: grab;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.aus-band::-webkit-scrollbar { display: none; }
.aus-band.is-ziehen { cursor: grabbing; }
.aus-band-spur {
  display: flex; align-items: center; width: max-content;

  gap: clamp(28px, 3.2vw, 44px); padding: 6px 0;
}

.aus-band-zeichen { display: block; flex: 0 0 auto; }
.aus-band-zeichen img, .aus-band-zeichen svg {
  display: block; filter: grayscale(1); opacity: .55;
  transition: filter .35s var(--ease-out), opacity .35s var(--ease-out);
}
.aus-band-zeichen:hover img, .aus-band-zeichen:hover svg { filter: none; opacity: 1; }

.aus-maske{
  display:inline-block;background:currentColor;color:var(--ink);
  -webkit-mask:var(--logo) center/contain no-repeat;
          mask:var(--logo) center/contain no-repeat;
}
.aus-band-zeichen.aus-maske{
  display:block;flex:0 0 auto;opacity:.55;
  transition:opacity .35s var(--ease-out);
}
.aus-band-zeichen.aus-maske:hover{opacity:1;}
@media (prefers-reduced-motion: reduce){ .aus-band-zeichen.aus-maske{transition:none;} }

.aus-marken {
  grid-column: 1 / -1;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(22px, 3vw, 40px);
  margin-top: clamp(30px, 5vw, 56px);

  margin-bottom: clamp(30px, 5vw, 56px);
  padding-top: clamp(28px, 4vw, 48px);
  border-top: 1px solid var(--line);
}

.aus-band {
  grid-column: 1 / -1;

  min-width: 0; max-width: 100%;
  margin-bottom: clamp(26px, 4vw, 46px);
  overflow-x: auto; overflow-y: hidden;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  cursor: grab;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.aus-band::-webkit-scrollbar { display: none; }
.aus-band.is-ziehen { cursor: grabbing; }
.aus-band-spur {
  display: flex; align-items: center; width: max-content;

  gap: clamp(28px, 3.2vw, 44px); padding: 6px 0;
}

.aus-band-zeichen { display: block; flex: 0 0 auto; }
.aus-band-zeichen img, .aus-band-zeichen svg {
  display: block; filter: grayscale(1); opacity: .55;
  transition: filter .35s var(--ease-out), opacity .35s var(--ease-out);
}
.aus-band-zeichen:hover img, .aus-band-zeichen:hover svg { filter: none; opacity: 1; }

.aus-maske{
  display:inline-block;background:currentColor;color:var(--ink);
  -webkit-mask:var(--logo) center/contain no-repeat;
          mask:var(--logo) center/contain no-repeat;
}
.aus-band-zeichen.aus-maske{
  display:block;flex:0 0 auto;opacity:.55;
  transition:opacity .35s var(--ease-out);
}
.aus-band-zeichen.aus-maske:hover{opacity:1;}
@media (prefers-reduced-motion: reduce){ .aus-band-zeichen.aus-maske{transition:none;} }
@media (prefers-reduced-motion: reduce) {
  .aus-band-zeichen img, .aus-band-zeichen svg { transition: none; }
}

.aus-gruppe summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; gap: 10px;
}
.aus-gruppe summary::-webkit-details-marker { display: none; }
.aus-gruppe summary h3 { flex: 1 1 auto; margin-bottom: 0; }
.aus-anzahl {
  margin-left: 8px; font-family: var(--font-body); font-size: .8rem;
  font-weight: 600; color: var(--ink-dim); vertical-align: middle;
}
.aus-gruppe summary::after {
  content: ""; flex: 0 0 auto; width: 9px; height: 9px; margin-bottom: 8px;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg); transition: transform .3s var(--ease-out);
}
.aus-gruppe[open] summary::after { transform: rotate(-135deg); }
.aus-gruppe summary:focus-visible { outline: 2px solid currentColor; outline-offset: 4px; }
.aus-gruppe[open] ul { margin-top: 12px; }

.aus-gruppe h3 {
  font-family: var(--font-display); font-weight: 400;
  font-size: var(--t-h4); line-height: var(--t-h4-lh); letter-spacing: .01em;
  padding-bottom: 8px; margin-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.aus-gruppe ul { list-style: none; display: grid; gap: 11px; }
.aus-gruppe li { font-size: .95rem; line-height: 1.5; }
.aus-gruppe strong { font-weight: 600; }

.aus-text { display: block; color: var(--ink-dim); font-size: var(--t-small); margin-top: 2px; }

.aus-zeile { display: flex; align-items: center; gap: 9px; justify-content: space-between; }

.aus-zeichen { display: inline-flex; align-items: center; flex: 0 1 auto; min-width: 0; margin-left: auto; }
.aus-zeichen svg, .aus-zeichen img { width: auto; max-width: min(110px, 50%); height: auto; display: block; }
.aus-name { font-weight: 600; }

.aus-gruppe li { padding-bottom: 9px; border-bottom: 1px solid rgba(18,18,20,.07); }
.aus-gruppe li:last-child { padding-bottom: 0; border-bottom: 0; }

.aus-link { color: inherit; text-decoration: none; border-bottom: 1px solid rgba(18,18,20,.3); transition: border-color .3s; }
.aus-link:hover { border-color: var(--ink); }
@media (prefers-reduced-motion: reduce) {
  .aus-band-zeichen img, .aus-band-zeichen svg { transition: none; }
}

.credo{
  background: var(--bg);
  padding: clamp(90px,16vh,180px) clamp(20px,5vw,64px);
  text-align: center;
}
.credo-zeile{
  font-family: var(--font-display); font-weight: 400;
  font-size: var(--t-h2); line-height: 1.18;
  color: var(--ink-dim); max-width: 20ch; margin: 0 auto;
  transition: color .8s var(--ease-out);

  opacity: 1 !important; transform: none !important; filter: none !important;
}

.credo-wort{
  display: inline-block;
  opacity: 0; transform: translateY(20px); filter: blur(9px);

  transition: opacity 2.6s var(--ease-out), transform 2.6s var(--ease-out),
              filter 1.9s var(--ease-out);
  transition-delay: var(--verzug, 0ms);
}
.credo-zeile.in-view .credo-wort,
.in-view .credo-wort{ opacity: 1; transform: none; filter: blur(0) }

@media (prefers-reduced-motion: reduce){
  .credo-wort{ opacity: 1; transform: none; filter: none; transition: none }
}
.credo-stark{ color: var(--ink); margin-top: .28em; max-width: 22ch }
.credo:hover .credo-zeile{ color: var(--ink) }

@media (max-width:720px){
  .credo{ padding: clamp(70px,12vh,120px) 22px }
  .credo-zeile{ max-width: 16ch }
}

.brand-card, .team-card, .post-card, .social-card, .leasing-steps li,
.model-card, .sub-cta-inner{
  background: var(--glas-karte);
  backdrop-filter: blur(20px) saturate(var(--glas-saettigung));
  -webkit-backdrop-filter: blur(20px) saturate(var(--glas-saettigung));
  box-shadow: inset 0 1px 0 var(--glas-karte-kante),
              0 16px 40px -28px rgba(0,0,0,.45);
}
.brand-card:hover, .team-card:hover, .post-card:hover,
.social-card:hover, .leasing-steps li:hover,
.model-card:hover{
  box-shadow: inset 0 1px 0 var(--glas-karte-kante),
              inset 0 0 40px -20px var(--glas-karte-kante),
              0 26px 60px -30px rgba(0,0,0,.5);
}

.brand-card.in-view:hover, .team-card.in-view:hover,
.social-card.in-view:hover, .leasing-steps li.in-view:hover{
  transform: translateY(-3px);
}
.post-card:hover{ transform: translateY(-3px) }

@media (prefers-reduced-motion: reduce){
  .brand-card, .team-card, .post-card, .social-card, .leasing-steps li,
  .model-card{ transition: none }
  .brand-card.in-view:hover, .team-card.in-view:hover,
  .social-card.in-view:hover, .leasing-steps li.in-view:hover, .post-card:hover{ transform: none }
}

.hero-title .buchstabe{
  display: inline-block;
  transition-property: transform, text-shadow;
  transition-property: transform;
  transition-timing-function: cubic-bezier(.22,1,.28,1);
  will-change: transform;
}
@media (prefers-reduced-motion: reduce){
  .hero-title .buchstabe{ transition: none; transform: none !important }
}

input, select, textarea { font-size: max(16px, var(--t-body)); }

html.ohne-vorspann #preloader { display: none; }

.pursuits-weg {
  margin: clamp(48px, 7vh, 80px) auto 0; text-align: center;
  color: var(--ink-dim); font-size: var(--t-lead); line-height: var(--t-lead-lh);
}
.pursuits-weg a { text-decoration: underline; text-underline-offset: 4px; color: inherit; }
.pursuits-weg a:hover { color: var(--ink); }

.sub-two > div:only-child { grid-column: 1 / -1; }

:root{

  --signal: var(--ink-dim);
  --wand-deckkraft:.055;
  --tech: var(--font-body);
  --t-riesig:clamp(46px,10.5vw,138px);
  --t-wand:clamp(78px,19vw,250px);
}
@media (prefers-color-scheme:dark){:root:not([data-theme="light"]){--signal:var(--ink-dim)}}
:root[data-theme="dark"]{--signal:var(--ink-dim)}

.wk-merkmale{gap:var(--raum-2);margin:var(--raum-4) 0 0}

.wk-rahmen{max-width:1200px;margin:0 auto;padding:0 clamp(20px, 5vw, 64px)}

.wk-buehne{position:relative;margin-top:clamp(12px,2.2vw,22px);
  aspect-ratio:16/10;min-height:330px;overflow:hidden;isolation:isolate;

  border-bottom:1px solid var(--line);
  touch-action:pan-y;
  background:radial-gradient(125% 95% at 50% 14%,var(--bg) 0%,var(--bg-soft) 100%)}
@media (max-width:640px){.wk-buehne{aspect-ratio:4/5;min-height:0}}
.wk-wand{position:absolute;inset:0;display:grid;place-items:center;z-index:1;pointer-events:none}

.wk-wand>*{--hoch:0%;

  transform:translateY(var(--hoch)) translate3d(calc(var(--nx,0)*8px*var(--ebene,1)),calc(var(--ny,0)*6px*var(--ebene,1)),0)}

.wk-wandlogo{display:block;width:calc(112% * var(--wandgroesse,1));
  height:auto;aspect-ratio:var(--seiten,4);
  background-color:var(--ink);opacity:var(--wand-deckkraft);
  -webkit-mask:var(--logo) center/contain no-repeat;
          mask:var(--logo) center/contain no-repeat}

.wk-name{margin:var(--raum-4) 0 0;text-align:start}

.wk-doppel{display:grid;grid-template-columns:minmax(0,7fr) minmax(0,5fr);
  gap:var(--raum-5) var(--raum-6);margin:var(--raum-5) 0 0;
  align-items:start}
.wk-lese{max-width:62ch}
.wk-fakten{border-inline-start:1px solid var(--line);
  padding-inline-start:var(--raum-5)}

.wk-fakten .wk-daten{display:grid;grid-template-columns:1fr 1fr;
  gap:0 var(--raum-4);margin:0;border:0}
.wk-fakten .wk-feld{border-right:0;border-top:1px solid var(--line);
  padding:var(--raum-3) 0}
.wk-fakten .wk-feld:nth-child(-n+2){border-top:0;padding-top:0}
.wk-fakten .model-preis-satz{margin:var(--raum-4) 0 var(--raum-3)}
.wk-fakten .sub-cta-actions{justify-content:flex-start;gap:var(--raum-2);
  flex-wrap:wrap}

.wk-fakten .btn{padding:var(--raum-2) var(--raum-4);line-height:1;margin:0;
  display:inline-flex;align-items:center;justify-content:center;
  min-block-size:var(--ziel-min)}
@media (max-width: 900px){
  .wk-doppel{grid-template-columns:1fr}
  .wk-fakten{border-inline-start:0;padding-inline-start:0;
    border-top:1px solid var(--line);

      padding-top:var(--raum-3)}
}
.wk-name h1{line-height:1.45}

.wk-name .oben{display:block;margin:0;font-family:var(--tech);font-size:clamp(12px,1.5vw,13px);
  letter-spacing:.28em;text-transform:uppercase;color:var(--signal);
  margin-bottom:clamp(8px,1.4vw,16px)}

.wk-name .gross{margin:var(--raum-3) 0 0;font-family:var(--font-display);font-weight:400;

  font-size:var(--t-riesig);line-height:1.04;letter-spacing:-.04em;color:var(--ink);
  overflow-wrap:anywhere}

.wk-name h1{margin:var(--raum-2) 0 0;font-family:var(--font-body);
  font-weight:500;font-size:clamp(14px,1.9vw,19px);line-height:1.35;
  letter-spacing:.01em;color:var(--ink-dim);max-width:46ch}
.wk-rad{position:absolute;z-index:3;inset:0;margin:auto;display:block;width:100%;height:100%;
  object-fit:contain;padding:var(--raum-5);mix-blend-mode:multiply}

.wk-glas{position:absolute;inset:0;width:100%;height:100%;display:block;z-index:4;pointer-events:none;

  object-fit:cover}

.wk-buehne--voll{aspect-ratio:auto;min-height:100vh;min-height:100svh;margin-top:0}

@media (max-width:640px){
  .wk-buehne--voll:not(.wk-buehne--foto){min-height:0;aspect-ratio:1/1}

  .wk-buehne--voll.wk-buehne--foto{min-height:0;aspect-ratio:4/5}

  .wk-buehne--voll:not(.wk-buehne--foto) .wk-rad{padding-top:104px}
}

.wk-buehne--foto .wk-rad{object-fit:cover;object-position:50% 20%;
  padding:0;mix-blend-mode:normal}

.wk-buehne--foto .wk-rad[src*="kategorie-helden/leasing-"]{object-position:40% 20%}

.wk-schleier{position:absolute;inset:0;z-index:4;pointer-events:none;
  background:

    linear-gradient(0deg,rgba(8,8,10,.92) 0%,rgba(8,8,10,.86) 24%,rgba(8,8,10,0) 58%),
    linear-gradient(90deg,rgba(8,8,10,.55) 0%,rgba(8,8,10,0) 62%)}

.wk-krumen-lage{position:absolute;z-index:5;inset:0 0 auto 0;
  padding:calc(var(--nav-h) + env(safe-area-inset-top) + var(--raum-2)) clamp(20px,5vw,64px) 0}

.wk-krumen-lage .crumbs{margin-bottom:0}

.wk-name--marke{position:absolute;z-index:5;inset:auto 0 0 0;top:auto;
  text-align:left;
  padding:0 clamp(20px,5vw,64px) calc(clamp(40px,6vh,70px) + env(safe-area-inset-bottom));
  transform:translate3d(calc(var(--nx,0)*24px*var(--ebene,1)),
                        calc(var(--ny,0)*15px*var(--ebene,1)),0)}
.wk-name--marke h1{margin:0;font-family:'Archivo',sans-serif;font-weight:800;
  font-size:var(--t-h1);line-height:1.04;letter-spacing:-.03em;
  color:#f4f2ed;max-width:18ch;text-wrap:balance;
  text-shadow:0 2px 34px rgba(8,8,10,.55)}
.wk-name--marke .oben{color:#f4f2ed;opacity:.92;margin-bottom:12px;
  text-shadow:0 1px 16px rgba(8,8,10,.7)}

.wk-daten{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  border-top:1px solid var(--line);border-bottom:1px solid var(--line);
  margin:var(--raum-4) 0 0}
.wk-feld{padding:var(--raum-4) var(--raum-4);border-right:1px solid var(--line);line-height:1.35}
.wk-feld:first-child{padding-left:0}
.wk-feld:last-child{border-right:0}
@media (max-width:520px){
  .wk-feld{padding-left:0;border-right:0;border-top:1px solid var(--line)}
  .wk-feld:first-child{border-top:0}
}

.wk-feld dt{font-family:var(--tech);font-size:var(--t-tag);letter-spacing:.16em;
  text-transform:uppercase;color:var(--ink-dim);margin:0 0 var(--raum-1)}
.wk-feld dd{margin:0;font-size:clamp(15px,1.7vw,17px);font-weight:500;
  font-variant-numeric:tabular-nums;color:var(--ink)}
.wk-feld dd.hell{color:var(--signal)}

.wk-lese p{line-height:1.7;margin:0 0 var(--raum-3)}
.wk-lese .fuehrung{font-size:1.18em;font-weight:500;line-height:1.35;
  margin:0 0 var(--raum-3)}
.wk-satz{font-family:var(--tech);font-size:12px;letter-spacing:.06em;color:var(--signal);
  margin:var(--raum-4) 0 0;text-transform:uppercase}
.wk-merkmale{display:flex;flex-wrap:wrap;gap:var(--raum-1);margin:var(--raum-4) 0 0;
  padding:0;list-style:none}

.wk-merkmale li{font-family:var(--tech);font-size:var(--t-tag);letter-spacing:.1em;
  text-transform:uppercase;border:1px solid var(--line);border-radius:999px;
  padding:var(--raum-1) var(--raum-3);color:var(--ink-dim)}

@media (prefers-reduced-motion:reduce){.wk-wand>*{transform:none}}

.garage-reihe { display: grid; gap: 18px; }

.garage-reihe[data-anzahl="1"] { grid-template-columns: 1fr; }
.garage-reihe[data-anzahl="2"] { grid-template-columns: repeat(2, 1fr); }
.garage-reihe:not([data-anzahl="1"]):not([data-anzahl="2"]) { grid-template-columns: repeat(3, 1fr); }

.garage-karte {
  display: grid; border: 1px solid var(--line); border-radius: 18px;
  overflow: hidden; background: rgba(255, 255, 255, .52);
  color: inherit; text-decoration: none;
  transition: border-color .35s, transform .4s var(--ease-out);
}
.garage-karte:hover { border-color: var(--ink); transform: translateY(-3px); }
.garage-karte:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }

.garage-reihe[data-anzahl="1"] .garage-karte {
  grid-template-columns: 58% 1fr; align-items: center;
}

.garage-bild img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: contain;
  background: #fff; display: block;
}
.garage-text { padding: clamp(20px, 3vw, 34px); }
.garage-text h3 { font-family: var(--font-display); font-size: 1.35rem; margin: 0 0 12px; }
.garage-preis { margin: 14px 0 0; display: flex; flex-wrap: wrap; gap: 4px 12px; align-items: baseline; }
.garage-preis s { color: var(--ink-dim); }
.garage-preis strong { font-size: 1.1rem; }
.garage-uvp { color: var(--ink-dim); }

.garage-offen { color: var(--ink-dim); font-size: .88rem; }

@media (max-width: 900px) {
  .garage-reihe:not([data-anzahl="1"]):not([data-anzahl="2"]),
  .garage-reihe[data-anzahl="2"] { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .garage-reihe { grid-template-columns: 1fr !important; }
  .garage-reihe[data-anzahl="1"] .garage-karte { grid-template-columns: 1fr; }
}

.sale-daten {
  max-width: 760px; margin: 0 auto; display: grid; gap: 0;
  grid-template-columns: 1fr; border-top: 1px solid var(--line);
}
.sale-daten > div {
  display: grid; grid-template-columns: minmax(9rem, 30%) 1fr; gap: 12px;
  padding: 14px 4px; border-bottom: 1px solid var(--line);
}
.sale-daten dt { color: var(--ink-dim); font-size: .9rem; }
.sale-daten dd { margin: 0; font-weight: 600; }

.sale-daten dd.offen { font-weight: 400; color: var(--ink-dim); font-style: italic; }
.sale-bilder {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px; max-width: 1100px; margin: 0 auto;
}
.sale-bilder figure { margin: 0; }
.sale-bilder img {
  width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: 14px; border: 1px solid var(--line); display: block;
}

.aus-gruppe-titel { grid-column: 1 / -1; margin: 18px 0 0; font-size: var(--t-tag); font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-dim); }
.aus-gruppe-titel:first-child { margin-top: 0; }
.aus-wand {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  max-width: 1300px;

  margin: clamp(30px, 5vw, 56px) auto 0;
  align-items: stretch;
}
.aus-kachel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  color: inherit;
  text-decoration: none;
  transition: transform .5s var(--ease-out), border-color .4s;
}

a.aus-kachel:hover {
  transform: translateY(-4px);
  border-color: rgba(18,18,20,.45);
}
.ak-kopf { display: flex; align-items: center; gap: 10px; min-height: 26px; min-width: 0; }
.ak-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--t-h5, 1.05rem);
  line-height: 1.25;
}

.aus-kachel .aus-zeichen {
  flex: 0 0 auto; opacity: .7;
  margin-left: 0; margin-inline-start: auto;
}
.aus-kachel .aus-zeichen img { max-height: 14px; width: auto; display: block; }
.ak-text {
  font-size: .86rem;
  line-height: 1.45;
  color: var(--muted, #6b6b70);
}
@media (max-width: 640px) {
  .aus-wand { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 10px; }
  .aus-kachel { padding: 15px 13px; }
}

.footer-links nav a,
.social-card.social-links a,
.kontakt-telefon,
.ha-ask button {
  display: flex; align-items: center; justify-content: center;
  min-block-size: var(--ziel-min);
}

.footer-links nav a { justify-content: flex-start; }
.kontakt-telefon { display: inline-flex; }

.ha-mic { min-block-size: var(--ziel-min); min-inline-size: var(--ziel-min); }

.nav-logo { min-block-size: var(--ziel-min); align-items: center; }

.reihe-verweis a,
.crumbs a,
.anm-datenschutz a { position: relative; }
.reihe-verweis a::after,
.crumbs a::after,
.anm-datenschutz a::after {
  content: ''; position: absolute; left: 0; right: 0;
  top: 50%; transform: translateY(-50%);
  block-size: var(--ziel-min);
}

.lupe-glas{
  position:absolute; z-index:6; pointer-events:none;
  inset-inline-start:0; inset-block-start:0;
  width:220px; height:220px;
  margin-inline-start:-110px; margin-block-start:-110px;
  transform:translate(var(--x,0), var(--y,0));
  border-radius:50%; border:1px solid var(--line);
  background-repeat:no-repeat; background-color:var(--bg);
  box-shadow:0 10px 30px rgba(18,18,20,.18);
  opacity:0; transition:opacity .18s var(--ease-out);
}
.lupe-glas.sichtbar{opacity:1}
@media (prefers-reduced-motion: reduce){ .lupe-glas{transition:none} }

.kann-vollbild{cursor:zoom-in}

.lupe-voll{
  border:0; padding:0; max-width:100vw; max-height:100dvh;
  width:100vw; height:100dvh; background:var(--bg);
}
.lupe-voll::backdrop{background:rgba(18,18,20,.82)}

.lupe-voll img{
  display:block; width:100%; height:100%; object-fit:contain;
  touch-action:pinch-zoom; padding:var(--raum-4);
}
.lupe-zu{
  position:fixed; inset-block-start:var(--raum-3); inset-inline-end:var(--raum-3);
  min-block-size:var(--ziel-min); padding-inline:var(--raum-3);
  border:1px solid var(--line); border-radius:999px;
  background:var(--panel); color:var(--ink); font-size:var(--t-tag);
  letter-spacing:.08em; text-transform:uppercase; cursor:pointer;
}

.lupe-knopf{
  position:absolute; inset-block-end:var(--raum-3); inset-inline-end:var(--raum-3);
  inline-size:1px; block-size:1px; padding:0; margin:0;
  overflow:hidden; clip-path:inset(50%); white-space:nowrap;
  border:0; background:transparent; color:transparent; cursor:pointer;
}
.lupe-knopf:focus,
.lupe-knopf:focus-visible{
  inline-size:auto; block-size:auto; overflow:visible; clip-path:none;
  min-block-size:var(--ziel-min); padding-inline:var(--raum-3);
  border:1px solid var(--line); border-radius:999px;
  background:var(--panel); color:var(--ink); font-size:var(--t-tag);
  letter-spacing:.08em; text-transform:uppercase; z-index:3;
}

.sizing-foto { margin: 0 0 54px; max-width: 820px; }
.sizing-foto img { display: block; width: 100%; height: auto;
                   border-radius: 16px; }
.sizing-foto figcaption { margin-top: 12px; color: var(--ink-dim); font-size: .92rem; }

.massgrafik { margin: 8px 0 54px; max-width: 1120px; }

.mg-verborgen { position: absolute; width: 1px; height: 1px; overflow: hidden;
                clip-path: inset(50%); white-space: nowrap; }
.mg-raster { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 3vw, 36px); }
@media (max-width: 860px) { .mg-raster { grid-template-columns: 1fr; } }

.mg-tafel { min-width: 0; }
.mg-spalte { font-family: var(--font-body); font-weight: 600; font-size: 12px;
             letter-spacing: .16em; text-transform: uppercase;
             color: var(--ink-dim); margin: 0 0 10px; }
.mg-buehne { position: relative; background: var(--panel);
             border: 1px solid var(--line); border-radius: 16px; padding: 6px; }
.mg-svg { display: block; width: 100%; height: auto; }

.mg-figur { fill: var(--ink); fill-opacity: .88; }
.mg-rad   { opacity: .92; }
.mg-hilf  { fill: none; stroke: var(--ink-dim); stroke-width: 1.2;
            stroke-dasharray: 4 5; opacity: .5; }
.mg-mass  { fill: none; stroke: var(--ink); stroke-width: 2; stroke-linecap: round; }

.mg-fahne { position: absolute; transform: translate(-50%, -50%);
            font-family: var(--font-body); font-weight: 500;
            font-size: clamp(11px, 1.15vw, 13px); line-height: 1;
            white-space: nowrap; color: var(--ink);
            background: var(--panel); padding: 3px 6px; border-radius: 4px; }

.massgrafik.in-view .mg-mass {
  stroke-dasharray: var(--l, 400); stroke-dashoffset: var(--l, 400);
  animation: mg-ziehen .6s var(--v, 0s) cubic-bezier(.22, .61, .36, 1) forwards; }
.massgrafik.in-view .mg-satz .mg-hilf {
  opacity: 0; animation: mg-auf-hilf .45s calc(var(--v, 0s) + .3s) ease-out forwards; }
.massgrafik.in-view .mg-fahne {
  opacity: 0; animation: mg-auf .45s calc(var(--v, 0s) + .3s) ease-out forwards; }

@keyframes mg-ziehen   { to { stroke-dashoffset: 0 } }
@keyframes mg-auf      { to { opacity: 1 } }
@keyframes mg-auf-hilf { to { opacity: .5 } }

@media (prefers-reduced-motion: reduce) {
  .massgrafik.in-view .mg-mass { stroke-dasharray: none; stroke-dashoffset: 0; animation: none; }
  .massgrafik.in-view .mg-satz .mg-hilf { opacity: .5; animation: none; }
  .massgrafik.in-view .mg-fahne { opacity: 1; animation: none; }
}

.sub-tat { margin: 0 0 54px; }
