@font-face {
  font-family: "Rajdhani";
  src: url("../fonts/rajdhani-300.woff2") format("woff2");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Rajdhani";
  src: url("../fonts/rajdhani-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Rajdhani";
  src: url("../fonts/rajdhani-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Rajdhani";
  src: url("../fonts/rajdhani-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
}

:root {
  --ink: #111214;
  --ink-soft: #292b2f;
  --paper: #f5f3ef;
  --paper-2: #ebe8e2;
  --white: #fff;
  --red: #e52521;
  --red-dark: #b81513;
  --muted: #686a6f;
  --line: rgba(17, 18, 20, 0.13);
  --sidebar: 264px;
  --content: 1240px;
  --radius-sm: 14px;
  --radius: 24px;
  --shadow: 0 24px 60px rgba(12, 14, 18, 0.13);
  --ease: cubic-bezier(.2, .72, .25, 1);
}

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

[hidden] { display: none !important; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
  background: var(--ink);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Roboto", Arial, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 4px; }

button, a { -webkit-tap-highlight-color: transparent; }

button, input, textarea, select { font: inherit; }

h1, h2, h3, p, ul, blockquote { margin-top: 0; }

h1, h2, h3 {
  font-family: "Rajdhani", Arial, sans-serif;
  font-weight: 700;
  line-height: .98;
  letter-spacing: -.025em;
}

h2 {
  max-width: 840px;
  margin-bottom: 26px;
  font-size: clamp(2.65rem, 4.8vw, 4rem);
}

h3 { font-size: clamp(1.55rem, 2vw, 2rem); }

p { margin-bottom: 1.25em; }

:focus-visible {
  outline: 3px solid #ffba38;
  outline-offset: 4px;
}

::selection { background: var(--red); color: var(--white); }

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 12px;
  left: 12px;
  padding: 11px 16px;
  transform: translateY(-160%);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
}

.skip-link:focus { transform: translateY(0); }

main { margin-left: var(--sidebar); }

.section-pad {
  padding: clamp(82px, 9vw, 138px) clamp(28px, 6vw, 94px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: #fff;
  font-family: "Rajdhani", Arial, sans-serif;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 36px;
  height: 3px;
  background: var(--red);
  content: "";
}

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

.lead-copy {
  max-width: 720px;
  color: #383a3f;
  font-size: clamp(1.08rem, 1.6vw, 1.3rem);
  line-height: 1.65;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 4px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-family: "Rajdhani", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .035em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .25s var(--ease), background .25s ease, border-color .25s ease, color .25s ease;
}

.button:hover { transform: translateY(-2px); }
.button--primary { background: var(--red); color: var(--white); }
.button--primary:hover { background: var(--red-dark); }
.button--dark { background: var(--ink); color: var(--white); }
.button--dark:hover { background: var(--red); }
.button--ghost { border-color: rgba(255,255,255,.45); color: var(--white); }
.button--ghost:hover { border-color: var(--white); background: rgba(255,255,255,.1); }

.text-link {
  font-family: "Rajdhani", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: .025em;
  text-decoration: none;
}

.text-link:hover { color: var(--red); }

/* Feste Desktop-Navigation */
.sidebar {
  position: fixed;
  z-index: 100;
  inset: 0 auto 0 0;
  display: flex;
  width: var(--sidebar);
  flex-direction: column;
  overflow-y: auto;
  padding: 27px 22px 24px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.025) 25%, transparent 25%) 0 0 / 16px 16px,
    linear-gradient(315deg, rgba(255,255,255,.025) 25%, transparent 25%) 0 0 / 16px 16px,
    var(--ink);
  color: var(--white);
  box-shadow: 12px 0 34px rgba(0,0,0,.16);
}

.sidebar::after {
  position: absolute;
  inset: 0 0 0 auto;
  width: 5px;
  background: repeating-linear-gradient(-45deg, var(--red) 0 7px, #701210 7px 14px);
  content: "";
}

.sidebar__brand {
  display: block;
  padding: 4px 10px 0;
}

.sidebar__brand img { width: 100%; height: auto; }

.sidebar__claim {
  margin: 12px 0 34px;
  color: rgba(255,255,255,.62);
  font-family: "Rajdhani", Arial, sans-serif;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
}

.sidebar__nav { display: grid; gap: 3px; }

.nav-link {
  position: relative;
  display: grid;
  min-height: 43px;
  grid-template-columns: 30px 1fr;
  align-items: center;
  padding: 8px 9px;
  border-radius: 8px;
  color: rgba(255,255,255,.67);
  font-family: "Rajdhani", Arial, sans-serif;
  font-size: .97rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.nav-link span {
  color: rgba(255,255,255,.32);
  font-size: .7rem;
  font-weight: 700;
}

.nav-link::after {
  position: absolute;
  right: 8px;
  width: 0;
  height: 2px;
  background: var(--red);
  content: "";
  transition: width .25s var(--ease);
}

.nav-link:hover, .nav-link.is-active {
  background: rgba(255,255,255,.075);
  color: var(--white);
  transform: translateX(2px);
}

.nav-link.is-active::after { width: 18px; }

.sidebar__contact {
  display: grid;
  gap: 5px;
  margin-top: auto;
  padding-top: 28px;
  font-family: "Rajdhani", Arial, sans-serif;
}

.sidebar__contact > span {
  color: rgba(255,255,255,.48);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.sidebar__contact-row { display: flex; align-items: end; justify-content: space-between; gap: 8px; }
.sidebar__phone { display: grid; min-width: 0; text-decoration: none; }
.sidebar__phone small { color: rgba(255,255,255,.48); font-size: .66rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.sidebar__phone strong { font-size: 1.05rem; line-height: 1.2; white-space: nowrap; }
.sidebar__whatsapp { flex: 0 0 auto; padding: 6px 8px; border: 1px solid rgba(255,255,255,.22); border-radius: 6px; color: var(--white); font-size: .7rem; font-weight: 700; text-decoration: none; text-transform: uppercase; }
.sidebar__whatsapp:hover { border-color: #25d366; background: #25d366; color: #07160c; }

.sidebar__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 13px;
  padding: 11px 13px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  color: var(--white);
  font-size: .84rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.sidebar__cta:hover { border-color: var(--red); background: var(--red); }

.mobile-header, .mobile-actions, .nav-backdrop { display: none; }

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #111418;
  color: var(--white);
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
  scale: 1.015;
  animation: hero-settle 1.4s var(--ease) both;
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6,8,11,.94) 0%, rgba(6,8,11,.72) 37%, rgba(6,8,11,.2) 67%, rgba(6,8,11,.14) 100%),
    linear-gradient(0deg, rgba(6,8,11,.75), transparent 46%);
}

.hero__stripes {
  position: absolute;
  top: -15%;
  right: -11%;
  width: 34%;
  height: 135%;
  transform: skewX(-13deg);
  opacity: .32;
  background: repeating-linear-gradient(90deg, transparent 0 16px, rgba(229,37,33,.35) 16px 19px, transparent 19px 34px);
  mask-image: linear-gradient(180deg, transparent, #000 22%, #000 70%, transparent);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 100svh;
  max-width: 780px;
  flex-direction: column;
  justify-content: center;
  padding: 130px clamp(32px, 7vw, 110px) 180px;
}

.hero h1 {
  margin-bottom: 28px;
  font-size: clamp(3.5rem, 7vw, 5.3rem);
  line-height: .88;
  text-transform: uppercase;
}

.hero h1 em { color: var(--red); font-style: normal; }

.hero__lead {
  max-width: 660px;
  margin-bottom: 34px;
  color: rgba(255,255,255,.79);
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
  line-height: 1.62;
}

.hero__facts {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 clamp(26px, 5vw, 74px);
  border-top: 1px solid rgba(255,255,255,.16);
  background: rgba(7,9,11,.48);
  backdrop-filter: blur(12px);
}

.hero__facts a {
  padding: 20px 18px;
  border-right: 1px solid rgba(255,255,255,.13);
  color: var(--white);
  font-family: "Rajdhani", Arial, sans-serif;
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease;
}

.hero__facts a:hover, .hero__facts a:focus-visible { background: rgba(229,37,33,.72); }
.hero__facts a:last-child { border-right: 0; }

.hero__scroll {
  position: absolute;
  z-index: 4;
  right: 28px;
  bottom: 105px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.6);
  font-family: "Rajdhani", Arial, sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-decoration: none;
  text-transform: uppercase;
  transform: rotate(-90deg);
  transform-origin: right center;
}

.hero__scroll span { width: 38px; height: 1px; background: var(--red); }

@keyframes hero-settle { from { opacity: .4; scale: 1.08; } to { opacity: 1; scale: 1.015; } }

/* Orientierung */
.orientation { background: var(--paper); }

.section-heading { max-width: 720px; margin-bottom: 50px; }

.section-heading > p:last-child {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
}

.path-grid {
  display: grid;
  max-width: var(--content);
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 0 auto;
}

.path-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.66);
  text-decoration: none;
  transition: transform .3s var(--ease), background .3s ease, color .3s ease, border-color .3s ease;
}

.path-card::before {
  position: absolute;
  inset: auto -20% -35% 30%;
  height: 120px;
  transform: rotate(-8deg);
  opacity: .7;
  background: repeating-linear-gradient(-45deg, transparent 0 9px, rgba(229,37,33,.12) 9px 14px);
  content: "";
}

.path-card:hover {
  z-index: 2;
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
  transform: translateY(-7px);
}

.path-card__number {
  color: var(--red);
  font-family: "Rajdhani", Arial, sans-serif;
  font-size: .78rem;
  font-weight: 700;
}

.path-card__icon {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 1.35rem;
  transition: transform .25s ease;
}

.path-card:hover .path-card__icon { transform: translateX(5px); }

.path-card h3 { margin: 56px 0 16px; }
.path-card p { position: relative; color: var(--muted); font-size: .94rem; line-height: 1.55; }
.path-card:hover p { color: rgba(255,255,255,.65); }
.path-card strong { position: absolute; z-index: 2; bottom: 22px; font-family: "Rajdhani", Arial, sans-serif; font-size: .88rem; text-transform: uppercase; }

/* An- und Verkauf */
.story {
  display: grid;
  min-height: 760px;
  grid-template-columns: minmax(340px, .92fr) minmax(480px, 1.08fr);
  background: var(--white);
}

.story__image { position: relative; min-height: 640px; overflow: hidden; }
.story__image::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.36), transparent 45%); content: ""; }
.story__image img { width: 100%; height: 100%; object-fit: cover; object-position: 62% center; transition: scale .8s var(--ease); }
.story__image:hover img { scale: 1.025; }

.image-tag {
  position: absolute;
  z-index: 3;
  bottom: 36px;
  left: 36px;
  padding: 13px 17px;
  border-left: 4px solid var(--red);
  background: rgba(17,18,20,.86);
  color: var(--white);
  font-family: "Rajdhani", Arial, sans-serif;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.image-tag span { color: #ff655f; }

.story__content { align-self: center; }

.story-points {
  display: grid;
  max-width: 720px;
  gap: 0;
  margin: 38px 0;
  border-top: 1px solid var(--line);
}

.story-points article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.story-points article > span { color: var(--red); font-family: "Rajdhani", Arial, sans-serif; font-size: .8rem; font-weight: 700; }
.story-points h3 { margin-bottom: 4px; font-size: 1.3rem; line-height: 1.2; }
.story-points p { margin: 0; color: var(--muted); font-size: .94rem; }

/* Vermittlung */
.vermittlung {
  display: grid;
  grid-template-columns: minmax(420px, .9fr) minmax(480px, 1.1fr);
  align-items: center;
  gap: clamp(54px, 7vw, 120px);
  background: var(--paper-2);
}

.vermittlung__content { max-width: 640px; }

.check-list {
  display: grid;
  gap: 12px;
  margin: 34px 0 38px;
  padding: 0;
  list-style: none;
}

.check-list li { position: relative; padding-left: 34px; }
.check-list li::before { position: absolute; top: .14em; left: 0; color: var(--red); font-family: "Rajdhani", Arial, sans-serif; font-size: 1.35rem; font-weight: 700; content: "✓"; }

.vermittlung__visual { position: relative; max-width: 720px; margin-left: auto; }
.vermittlung__visual img { position: relative; z-index: 2; width: 100%; height: auto; border-radius: var(--radius); box-shadow: var(--shadow); }

.stripe-frame {
  position: absolute;
  z-index: 0;
  top: -26px;
  right: -26px;
  width: 54%;
  height: 68%;
  border-radius: var(--radius);
  background: repeating-linear-gradient(-45deg, var(--red) 0 4px, transparent 4px 14px);
}

.vermittlung__visual blockquote {
  position: absolute;
  z-index: 3;
  right: -16px;
  bottom: -30px;
  max-width: 330px;
  margin: 0;
  padding: 22px 26px;
  border-radius: 4px;
  background: var(--ink);
  color: var(--white);
  font-family: "Rajdhani", Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.15;
  box-shadow: 0 16px 40px rgba(0,0,0,.22);
}

/* Vermietung */
.rental { position: relative; overflow: hidden; background: var(--ink); color: var(--white); }
.rental::before { position: absolute; top: 0; right: 0; width: 32%; height: 9px; background: repeating-linear-gradient(90deg, var(--red) 0 22px, transparent 22px 34px); content: ""; }

.section-heading--split {
  display: grid;
  max-width: var(--content);
  grid-template-columns: 1.3fr .7fr;
  align-items: end;
  gap: 50px;
  margin-right: auto;
  margin-left: auto;
}

.section-heading--split h2 { margin-bottom: 0; }
.section-heading--split > p { margin-bottom: 8px; color: rgba(255,255,255,.74); }

.rental-controls {
  display: flex;
  max-width: var(--content);
  justify-content: flex-end;
  gap: 10px;
  margin: -2px auto 22px;
}

.round-button {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
}

.round-button:hover { border-color: var(--red); background: var(--red); }

.rental-track {
  display: grid;
  max-width: var(--content);
  grid-auto-columns: minmax(330px, calc((100% - 24px) / 2));
  grid-auto-flow: column;
  gap: 24px;
  overflow-x: auto;
  margin: 0 auto;
  padding: 0 0 20px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--red) rgba(255,255,255,.08);
  scrollbar-width: thin;
}

.rental-card {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--radius-sm);
  background: #1b1d20;
  scroll-snap-align: start;
}

.rental-card__media { position: relative; height: 330px; overflow: hidden; background: #25272b; }
.rental-card__media img { width: 100%; height: 100%; object-fit: cover; transition: opacity .45s ease, scale .7s var(--ease); }
.rental-card:hover .rental-card__media img { scale: 1.025; }
.rental-card__media .rental-card__alt { position: absolute; inset: 0; opacity: 0; }
.rental-card.show-alt .rental-card__media > img:first-child { opacity: 0; }
.rental-card.show-alt .rental-card__alt { opacity: 1; }

.image-toggle {
  position: absolute;
  z-index: 3;
  right: 14px;
  bottom: 14px;
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 20px;
  background: rgba(10,11,13,.78);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.image-toggle:hover { background: var(--red); }

.rental-card__body { padding: 28px; }
.card-kicker { color: var(--red); font-family: "Rajdhani", Arial, sans-serif; font-size: .78rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.rental-card h3 { margin: 9px 0 12px; font-size: 2rem; }
.rental-card p, .rental-card li { color: rgba(255,255,255,.62); font-size: .92rem; }
.rental-card ul { display: grid; gap: 7px; margin: 22px 0; padding-left: 19px; }
.rental-card li::marker { color: var(--red); }
.rental-card__body > a { color: var(--white); font-family: "Rajdhani", Arial, sans-serif; font-weight: 700; text-decoration: none; text-transform: uppercase; }
.rental-card__body > a:hover { color: #ff625d; }

/* Wertermittlung */
.valuation { display: grid; grid-template-columns: minmax(460px, 1.08fr) minmax(430px, .92fr); background: var(--white); }
.valuation__visual { position: relative; min-height: 690px; overflow: hidden; }
.valuation__visual > img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

.valuation__badge {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  max-width: 390px;
  gap: 4px;
  padding: 22px 27px;
  border-top: 4px solid var(--red);
  background: rgba(17,18,20,.93);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.valuation__badge strong { font-family: "Rajdhani", Arial, sans-serif; font-size: 1.25rem; }
.valuation__badge span { color: rgba(255,255,255,.62); font-size: .83rem; }
.valuation__content { align-self: center; }

.factor-grid { display: grid; max-width: 620px; grid-template-columns: repeat(2, 1fr); gap: 10px; margin: 34px 0; }
.factor-grid span { position: relative; padding: 13px 17px 13px 36px; border: 1px solid var(--line); border-radius: 4px; font-family: "Rajdhani", Arial, sans-serif; font-weight: 700; text-transform: uppercase; }
.factor-grid span::before { position: absolute; top: 50%; left: 16px; width: 7px; height: 7px; border-radius: 50%; background: var(--red); content: ""; translate: 0 -50%; }

/* Sponsoring */
.region { position: relative; min-height: 670px; overflow: hidden; background: #101216; color: var(--white); }
.region__backdrop { position: absolute; inset: 0; opacity: .66; }
.region__backdrop::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(16,18,22,.96) 0%, rgba(16,18,22,.78) 42%, rgba(16,18,22,.18) 78%, rgba(16,18,22,.08) 100%), linear-gradient(0deg, rgba(16,18,22,.88) 0%, transparent 58%); content: ""; }
.region__backdrop img { width: 100%; height: 100%; object-fit: cover; object-position: center 38%; }
.region__content { position: relative; z-index: 2; max-width: 760px; }
.region__content > p:last-of-type { max-width: 660px; color: rgba(255,255,255,.72); font-size: 1.13rem; }

.sponsor-grid { display: grid; max-width: 670px; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 44px; }
.sponsor-grid > div { display: grid; min-height: 190px; place-items: center; padding: 22px; border: 1px solid rgba(255,255,255,.15); border-radius: 12px; background: rgba(255,255,255,.93); color: var(--ink); transition: transform .25s var(--ease); }
.sponsor-grid > div:hover { transform: translateY(-4px); }
.sponsor-grid img { max-width: 160px; max-height: 116px; object-fit: contain; }
.sponsor-grid span { margin-top: 8px; font-family: "Rajdhani", Arial, sans-serif; font-size: .8rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.sponsor-grid--featured { max-width: 470px; grid-template-columns: 1fr; }
.sponsor-grid--featured > div {
  position: relative;
  isolation: isolate;
  min-height: 280px;
  overflow: hidden;
  border-color: rgba(239,48,42,.52);
  background: linear-gradient(135deg, rgba(13,15,19,.84), rgba(38,17,19,.68));
  color: var(--white);
  box-shadow: 0 24px 70px rgba(0,0,0,.32), inset 0 0 44px rgba(229,37,33,.08);
  backdrop-filter: blur(10px);
}
.sponsor-grid--featured > div::before { position: absolute; z-index: -1; width: 270px; height: 270px; border-radius: 50%; background: radial-gradient(circle, rgba(229,37,33,.36), transparent 67%); content: ""; filter: blur(10px); }
.sponsor-grid--featured > div::after { position: absolute; z-index: -1; right: -36px; bottom: -44px; width: 180px; height: 150px; transform: rotate(-16deg); background: repeating-linear-gradient(90deg, rgba(229,37,33,.2) 0 10px, transparent 10px 21px); content: ""; }
.sponsor-grid--featured img { position: relative; max-width: 310px; max-height: 200px; filter: drop-shadow(0 16px 24px rgba(229,37,33,.28)); }
.sponsor-grid--featured span { position: relative; color: rgba(255,255,255,.82); font-size: .92rem; }

/* Kontakt */
.contact { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(48px, 7vw, 110px); background: var(--paper); }
.contact__intro { max-width: 680px; }
.contact-actions { display: grid; gap: 8px; margin-top: 38px; }
.contact-mobile-row { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 8px; }

.contact-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255,255,255,.55);
  text-decoration: none;
  transition: border-color .2s ease, transform .2s ease;
}

.contact-chip:hover { border-color: var(--red); transform: translateX(3px); }
.contact-chip span { color: var(--muted); font-family: "Rajdhani", Arial, sans-serif; font-size: .77rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.contact-chip strong { font-family: "Rajdhani", Arial, sans-serif; font-size: 1.08rem; }
.contact-chip--whatsapp { min-width: 172px; border-color: rgba(37,211,102,.52); background: rgba(37,211,102,.1); }
.contact-chip--whatsapp:hover { border-color: #25d366; background: #25d366; color: #07160c; }
.contact-chip--whatsapp:hover span { color: #17351f; }

.contact__card { position: relative; overflow: hidden; padding: clamp(34px, 5vw, 64px); border-radius: var(--radius); background: var(--ink); color: var(--white); box-shadow: var(--shadow); }
.contact__stripe { position: absolute; top: 0; right: 0; width: 33%; height: 9px; background: repeating-linear-gradient(90deg, var(--red) 0 15px, rgba(229,37,33,.2) 15px 26px); }
.contact__card h3 { margin: 8px 0 20px; font-size: clamp(2.2rem, 4vw, 3.3rem); }
.contact__card address { margin-bottom: 30px; color: rgba(255,255,255,.7); font-style: normal; }
.hours { display: grid; gap: 11px; margin: 26px 0 34px; padding: 20px 0; border-top: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); }
.hours div { display: flex; justify-content: space-between; gap: 20px; }
.hours span { color: rgba(255,255,255,.54); }
.hours strong { font-family: "Rajdhani", Arial, sans-serif; }

/* Anfahrt und zustimmungspflichtige Karte */
.location-map { display: grid; grid-template-columns: minmax(300px, .72fr) minmax(520px, 1.28fr); min-height: 510px; background: var(--paper-2); }
.location-map__intro { display: flex; align-items: flex-start; flex-direction: column; justify-content: center; }
.location-map__intro h2 { max-width: 520px; }
.location-map__intro > p:last-child { margin-bottom: 0; color: var(--muted); font-size: 1.08rem; }
.map-embed { position: relative; min-height: 510px; overflow: hidden; background: #17191d; }
.map-embed iframe { width: 100%; height: 100%; min-height: 510px; border: 0; }
.map-placeholder { display: flex; position: absolute; z-index: 1; inset: 0; align-items: center; flex-direction: column; justify-content: center; padding: 38px; background: radial-gradient(circle at 68% 20%, rgba(229,37,33,.22), transparent 34%), repeating-linear-gradient(135deg, rgba(255,255,255,.025) 0 12px, transparent 12px 28px), #17191d; color: var(--white); text-align: center; }
.map-placeholder::after { position: absolute; inset: 18px; border: 1px solid rgba(255,255,255,.1); border-radius: 18px; content: ""; pointer-events: none; }
.map-placeholder__pin { display: grid; width: 66px; height: 66px; place-items: center; margin-bottom: 20px; border: 1px solid rgba(255,255,255,.24); border-radius: 50%; background: rgba(229,37,33,.16); color: #ff4d48; font-family: "Rajdhani", Arial, sans-serif; font-size: 2.25rem; font-weight: 700; }
.map-placeholder strong { font-family: "Rajdhani", Arial, sans-serif; font-size: clamp(1.55rem, 2.4vw, 2.2rem); line-height: 1.1; }
.map-placeholder p { max-width: 470px; margin: 10px 0 22px; color: rgba(255,255,255,.67); }
.map-placeholder a { position: relative; z-index: 2; margin-top: 15px; color: rgba(255,255,255,.68); font-size: .86rem; }
.map-placeholder .button { position: relative; z-index: 2; }

/* Footer */
.footer {
  display: grid;
  grid-template-columns: 1.2fr .8fr auto;
  align-items: end;
  gap: 40px;
  padding: 50px clamp(28px, 6vw, 94px);
  border-top: 1px solid rgba(255,255,255,.1);
  background: #0b0c0e;
  color: rgba(255,255,255,.55);
  font-size: .86rem;
}

.footer img { width: 184px; margin-bottom: 15px; }
.footer p { margin: 0; }
.footer nav { display: flex; flex-wrap: wrap; gap: 18px; }
.footer a { color: rgba(255,255,255,.7); }
.footer a:hover { color: var(--white); }
.footer__settings { padding: 0; border: 0; background: none; color: rgba(255,255,255,.7); cursor: pointer; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.footer__settings:hover { color: var(--white); }

/* Cookie-Auswahl */
.consent-banner { position: fixed; z-index: 1600; right: 22px; bottom: 22px; left: calc(var(--sidebar) + 22px); }
.consent-banner__inner { display: grid; max-width: 1040px; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 28px; margin: 0 auto; padding: 24px 26px; border: 1px solid rgba(255,255,255,.16); border-radius: 18px; background: rgba(13,14,17,.97); color: var(--white); box-shadow: 0 24px 70px rgba(0,0,0,.36); }
.consent-banner strong { display: block; margin-bottom: 4px; font-family: "Rajdhani", Arial, sans-serif; font-size: 1.28rem; }
.consent-banner p { margin: 0; color: rgba(255,255,255,.72); font-size: .94rem; line-height: 1.45; }
.consent-banner a { color: rgba(255,255,255,.78); font-size: .82rem; }
.consent-banner__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.consent-banner__actions .button { min-height: 46px; padding: 12px 17px; font-size: .79rem; }

/* Einblendungen */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .72s var(--ease), transform .72s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }
.path-grid .reveal:nth-child(2) { transition-delay: .06s; }
.path-grid .reveal:nth-child(3) { transition-delay: .12s; }
.path-grid .reveal:nth-child(4) { transition-delay: .18s; }

/* Rechtliche Seiten */
.legal-page { min-height: 100vh; background: var(--paper); }
.legal-page::before { position: fixed; inset: 0 auto 0 0; width: 8px; background: repeating-linear-gradient(0deg, var(--red) 0 18px, var(--ink) 18px 30px); content: ""; }

.legal-header {
  display: flex;
  max-width: 1120px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0 auto;
  padding: 30px 34px;
}

.legal-header img { width: 190px; }
.legal-header > a:first-child { padding: 10px; border-radius: 10px; background: var(--white); }

.legal-shell {
  max-width: 940px;
  margin: 38px auto 100px;
  padding: 0 34px;
}

.legal-shell h1 { margin-bottom: 56px; font-size: clamp(3.2rem, 7vw, 5.3rem); text-transform: uppercase; }
.legal-shell section { padding: 28px 0; border-top: 1px solid var(--line); }
.legal-shell h2 { margin-bottom: 13px; font-size: 1.9rem; }
.legal-shell p { max-width: 780px; color: #46484c; }
.legal-shell a { color: var(--red-dark); }

.legal-footer { display: flex; justify-content: center; gap: 26px; padding: 30px; background: var(--ink); color: var(--white); font-size: .9rem; }

/* 404 */
.error-page { display: grid; min-height: 100vh; place-items: center; padding: 30px; background: radial-gradient(circle at 80% 20%, rgba(229,37,33,.18), transparent 34%), var(--ink); color: var(--white); }
.error-page main { max-width: 680px; margin: 0; text-align: center; }
.error-page img { width: 230px; margin: 0 auto 42px; }
.error-page .eyebrow { justify-content: center; }
.error-page h1 { margin-bottom: 24px; font-size: clamp(3rem, 7vw, 5rem); text-transform: uppercase; }
.error-page p:not(.eyebrow) { color: rgba(255,255,255,.68); }

@media (max-width: 1250px) {
  :root { --sidebar: 238px; }
  .sidebar { padding-right: 18px; padding-left: 18px; }
  .path-grid { grid-template-columns: repeat(2, 1fr); }
  .path-card { min-height: 260px; }
  .story, .vermittlung, .valuation, .contact, .location-map { grid-template-columns: minmax(0, 1fr); }
  .vermittlung { gap: 54px; }
  .vermittlung__visual { max-width: 820px; margin: 0; }
  .story__image, .valuation__visual { min-height: 560px; }
  .footer { grid-template-columns: minmax(0, 1fr); gap: 24px; }
  .consent-banner__inner { grid-template-columns: minmax(0, 1fr); gap: 18px; }
}

@media (max-width: 1100px) {
  html { scroll-padding-top: 84px; }
  body { padding-top: 76px; }
  main { margin-left: 0; }
  .consent-banner { left: 22px; }

  .mobile-header {
    position: fixed;
    z-index: 500;
    top: 0;
    right: 0;
    left: 0;
    display: flex;
    height: 76px;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    border-bottom: 1px solid rgba(255,255,255,.12);
    background: rgba(17,18,20,.95);
    box-shadow: 0 7px 24px rgba(0,0,0,.13);
    backdrop-filter: blur(12px);
  }

  .mobile-brand { display: flex; height: 56px; flex: 0 0 auto; align-items: center; }
  .mobile-brand img { width: auto; height: 100%; object-fit: contain; }

  .menu-toggle {
    display: flex;
    min-height: 48px;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 7px;
    background: transparent;
    color: var(--white);
    cursor: pointer;
    font-family: "Rajdhani", Arial, sans-serif;
    font-size: .86rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .menu-toggle__lines { display: grid; width: 24px; gap: 5px; }
  .menu-toggle__lines span { display: block; height: 2px; background: currentColor; transition: transform .25s ease, opacity .2s ease; }
  .menu-open .menu-toggle__lines span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-open .menu-toggle__lines span:nth-child(2) { opacity: 0; }
  .menu-open .menu-toggle__lines span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .sidebar {
    z-index: 490;
    top: 76px;
    width: min(340px, 89vw);
    transform: translateX(-105%);
    transition: transform .35s var(--ease);
  }

  .menu-open .sidebar { transform: translateX(0); }
  .sidebar__brand, .sidebar__claim { display: none; }
  .sidebar__nav { margin-top: 12px; }
  .nav-link { min-height: 50px; font-size: 1.06rem; }

  .nav-backdrop {
    position: fixed;
    z-index: 480;
    inset: 76px 0 0;
    display: block;
    visibility: hidden;
    border: 0;
    background: rgba(0,0,0,.56);
    opacity: 0;
    transition: opacity .25s ease, visibility .25s ease;
  }

  .menu-open .nav-backdrop { visibility: visible; opacity: 1; }

  .hero { min-height: calc(100svh - 76px); }
  .hero__content { min-height: calc(100svh - 76px); padding-top: 100px; }
  .story { grid-template-columns: 1fr; }
  .story__image { min-height: 560px; }
  .vermittlung { grid-template-columns: 1fr; }
  .vermittlung__content { max-width: 760px; }
  .vermittlung__visual { max-width: 820px; margin: 0; }
  .valuation { grid-template-columns: 1fr; }
  .valuation__visual { min-height: 590px; }
  .contact { grid-template-columns: 1fr; }
  .contact__intro { max-width: 800px; }
  .contact__card { max-width: 720px; }
  .location-map { grid-template-columns: 1fr; }
  .location-map__intro { padding-bottom: 54px; }
  .map-embed, .map-embed iframe { min-height: 440px; }
  .consent-banner__inner { grid-template-columns: 1fr; gap: 18px; }
}

@media (max-width: 760px) {
  body { padding-bottom: 64px; font-size: 16px; }
  h2 { font-size: clamp(2.35rem, 11vw, 3.35rem); }
  .section-pad { padding: 72px 21px; }

  .mobile-actions {
    position: fixed;
    z-index: 450;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--ink);
    box-shadow: 0 -9px 28px rgba(0,0,0,.18);
  }

  .mobile-actions a { min-height: 58px; padding: 16px; color: var(--white); font-family: "Rajdhani", Arial, sans-serif; font-weight: 700; text-align: center; text-decoration: none; text-transform: uppercase; }
  .mobile-actions a:last-child { background: var(--red); }

  .hero__image { object-position: 63% center; }
  .hero__veil { background: linear-gradient(90deg, rgba(6,8,11,.9), rgba(6,8,11,.3)), linear-gradient(0deg, rgba(6,8,11,.9) 0%, rgba(6,8,11,.26) 68%); }
  .hero__content { justify-content: flex-end; padding: 110px 21px 146px; }
  .hero h1 { font-size: clamp(3.2rem, 15vw, 4.35rem); }
  .hero__lead { font-size: 1.03rem; }
  .hero__facts { grid-template-columns: repeat(2, 1fr); padding: 0 12px; }
  .hero__facts { bottom: 58px; }
  .hero__facts a { padding: 10px 7px; font-size: .74rem; }
  .hero__facts a:nth-child(2) { border-right: 0; }
  .hero__scroll { display: none; }

  .section-heading { margin-bottom: 34px; }
  .path-grid { grid-template-columns: 1fr; }
  .path-card { min-height: 245px; }

  .story__image { min-height: 430px; }
  .image-tag { bottom: 20px; left: 20px; }
  .story-points article { grid-template-columns: 36px 1fr; gap: 11px; }

  .vermittlung { gap: 48px; }
  .vermittlung__visual blockquote { right: 12px; bottom: -20px; max-width: 280px; }
  .stripe-frame { top: -13px; right: -13px; }

  .section-heading--split { grid-template-columns: 1fr; gap: 12px; }
  .rental-controls { margin-top: 0; }
  .rental-track { grid-auto-columns: 88%; }
  .rental-card__media { height: 270px; }

  .valuation__visual { min-height: 470px; }
  .valuation__badge { left: 18px; right: 18px; bottom: 18px; }
  .factor-grid { grid-template-columns: 1fr 1fr; }

  .region { min-height: auto; }
  .region__backdrop { opacity: .58; }
  .region__backdrop::after { background: linear-gradient(0deg, rgba(16,18,22,.98) 0%, rgba(16,18,22,.78) 62%, rgba(16,18,22,.34) 100%); }
  .sponsor-grid { grid-template-columns: 1fr 1fr; }
  .sponsor-grid > div { min-height: 160px; padding: 16px; }
  .sponsor-grid img { max-width: 125px; max-height: 94px; }
  .sponsor-grid--featured { max-width: 430px; grid-template-columns: 1fr; }
  .sponsor-grid--featured > div { min-height: 220px; }
  .sponsor-grid--featured img { max-width: 235px; max-height: 160px; }

  .contact-chip { align-items: flex-start; flex-direction: column; gap: 3px; }
  .contact-mobile-row { grid-template-columns: 1fr; }
  .contact-chip--whatsapp { min-width: 0; }
  .contact__card { padding: 34px 25px; }
  .hours div { align-items: flex-start; flex-direction: column; gap: 1px; }
  .footer { grid-template-columns: 1fr; align-items: start; gap: 24px; padding: 44px 21px; }
  .footer nav { align-items: flex-start; flex-direction: column; gap: 10px; }
  .map-embed, .map-embed iframe { min-height: 390px; }
  .map-placeholder { padding: 30px 24px; }
  .consent-banner { right: 12px; bottom: 76px; left: 12px; }
  .consent-banner__inner { gap: 16px; padding: 19px; border-radius: 14px; }
  .consent-banner__actions { display: grid; grid-template-columns: 1fr 1fr; }
  .consent-banner__actions .button { width: 100%; padding: 11px 12px; }

  .legal-header { padding: 20px; }
  .legal-header img { width: 150px; }
  .legal-header .button { padding: 10px 13px; font-size: .8rem; }
  .legal-shell { margin-top: 20px; padding: 0 21px; }
}

@media (max-width: 430px) {
  .mobile-brand { height: 52px; }
  .menu-toggle__label { display: none; }
  .button-row .button { width: 100%; }
  .hero__content .button-row { width: 100%; }
  .hero__content .button--ghost, .hero__facts { display: none; }
  .hero h1 { font-size: 3.15rem; }
  .rental-track { grid-auto-columns: 94%; }
  .rental-card__media { height: 230px; }
  .rental-card__body { padding: 23px; }
  .factor-grid { grid-template-columns: 1fr; }
  .sponsor-grid { grid-template-columns: 1fr; }
  .contact-chip strong { font-size: 1rem; overflow-wrap: anywhere; }
  .consent-banner__actions { grid-template-columns: 1fr; }
  .legal-header { align-items: flex-start; }
  .legal-header .button { max-width: 145px; text-align: center; }
}

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

@media print {
  .sidebar, .mobile-header, .mobile-actions, .nav-backdrop, .hero__scroll, .rental-controls, .image-toggle { display: none !important; }
  body { padding: 0; background: #fff; color: #000; }
  main { margin: 0; }
  .hero { min-height: auto; padding: 50px; background: #fff; color: #000; }
  .hero__image, .hero__veil, .hero__stripes, .hero__facts { display: none; }
  .hero__content { min-height: auto; padding: 0; }
  .hero__lead, .eyebrow { color: #000; }
}
