
:root {
  --red: #d63a2f;
  --red-dark: #a92c24;
  --yellow: #e6d93d;
  --blue: #2f92d0;
  --green: #2f9443;
  --ink: #111111;
  --ink-soft: #242424;
  --muted: #6b6b6b;
  --paper: #ffffff;
  --warm: #f8f4ed;
  --cream: #fbf7ef;
  --soft: #f3f2ee;
  --line: rgba(17,17,17,.10);
  --glass: rgba(255,255,255,.68);
  --shadow-soft: 0 24px 80px rgba(0,0,0,.10);
  --shadow-deep: 0 46px 120px rgba(0,0,0,.18);
  --radius-xl: 42px;
  --radius-lg: 28px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  z-index: 999;
}
.skip-link:focus { left: 10px; }

.top-note {
  background: #111;
  color: rgba(255,255,255,.88);
  text-align: center;
  font-size: 13px;
  padding: 9px 16px;
  letter-spacing: .01em;
}

.site-header {
  position: fixed;
  top: 34px;
  left: 0;
  right: 0;
  z-index: 80;
  padding: 16px 20px;
  transition: top .45s cubic-bezier(.22,1,.36,1), padding .45s cubic-bezier(.22,1,.36,1);
}
.site-header.scrolled { top: 0; padding-top: 10px; padding-bottom: 10px; }

.nav-shell {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.62);
  backdrop-filter: blur(24px) saturate(1.25);
  -webkit-backdrop-filter: blur(24px) saturate(1.25);
  box-shadow: 0 12px 42px rgba(0,0,0,.09);
  transition: transform .45s cubic-bezier(.22,1,.36,1), background .45s cubic-bezier(.22,1,.36,1), box-shadow .45s cubic-bezier(.22,1,.36,1);
}
.site-header.scrolled .nav-shell {
  background: rgba(255,255,255,.82);
  box-shadow: 0 18px 55px rgba(0,0,0,.11);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  letter-spacing: -.035em;
  white-space: nowrap;
}
.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: contain;
  background: #fff;
  transform: translateZ(0);
}
.brand-text small {
  display: block;
  font-size: 10px;
  letter-spacing: .01em;
  color: var(--muted);
  margin-top: -4px;
  font-weight: 750;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  font-weight: 760;
  color: rgba(17,17,17,.76);
}
.desktop-nav a {
  position: relative;
  padding: 8px 0;
  transition: color .25s ease, transform .25s ease;
}
.desktop-nav a:hover { color: var(--ink); transform: translateY(-1px); }
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s cubic-bezier(.22,1,.36,1);
}
.desktop-nav a:hover::after { transform: scaleX(1); }

.nav-cta {
  background: var(--red);
  color: #fff !important;
  padding: 10px 16px !important;
  border-radius: 999px;
  box-shadow: 0 16px 30px rgba(214,58,47,.23);
}
.nav-cta::after { display:none; }
.nav-cta:hover { background: var(--red-dark); }

.menu-toggle {
  display: none;
  border: 0;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 830;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 70;
  background:
    radial-gradient(circle at 20% 10%, rgba(230,217,61,.22), transparent 30%),
    radial-gradient(circle at 92% 86%, rgba(47,146,208,.16), transparent 32%),
    rgba(255,255,255,.93);
  backdrop-filter: blur(28px) saturate(1.2);
  -webkit-backdrop-filter: blur(28px) saturate(1.2);
  padding: 118px 22px 32px;
  transform: translateY(-110%);
  transition: transform .55s cubic-bezier(.22,1,.36,1);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  display: block;
  font-size: clamp(30px, 9vw, 58px);
  font-weight: 880;
  letter-spacing: -.06em;
  line-height: 1.06;
  padding: 14px 0;
  border-bottom: 1px solid rgba(17,17,17,.09);
}

h1, h2, h3 {
  line-height: .94;
  letter-spacing: -.065em;
}
p { margin-top: 0; }

.hero-cinematic {
  min-height: 112vh;
  position: relative;
  display: grid;
  align-items: center;
  overflow: clip;
  padding: 156px 20px 80px;
  background:
    radial-gradient(circle at 18% 20%, rgba(230,217,61,.24), transparent 30%),
    radial-gradient(circle at 86% 18%, rgba(47,146,208,.14), transparent 30%),
    linear-gradient(180deg, #fff 0%, var(--cream) 78%, #fff 100%);
}
.hero-cinematic::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.56) 42%, rgba(255,255,255,.10) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-stage {
  position: absolute;
  inset: 118px max(20px, calc((100vw - var(--max)) / 2)) 54px 45%;
  border-radius: clamp(34px, 5vw, 72px);
  overflow: hidden;
  box-shadow: var(--shadow-deep);
  background:
    linear-gradient(135deg, rgba(0,0,0,.12), rgba(255,255,255,.05)),
    radial-gradient(circle at 76% 18%, rgba(230,217,61,.55), transparent 24%),
    radial-gradient(circle at 20% 80%, rgba(47,148,67,.25), transparent 29%),
    radial-gradient(circle at 12% 20%, rgba(214,58,47,.14), transparent 26%),
    linear-gradient(135deg, #efe8dc, #fffdf8 45%, #e6f5fb);
  transform: translate3d(0,0,0);
}
.hero-stage::after {
  content: "Premium-Hero-Foto später hier";
  position: absolute;
  right: 24px;
  bottom: 24px;
  color: rgba(17,17,17,.55);
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(255,255,255,.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 24px;
  padding: 18px 20px;
  font-weight: 850;
}
.hero-orb {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230,217,61,.44), transparent 68%);
  top: 9%;
  right: 7%;
  filter: blur(2px);
  animation: orbFloat 9s ease-in-out infinite alternate;
}
@keyframes orbFloat {
  from { transform: translate3d(0,0,0) scale(1); }
  to { transform: translate3d(-24px,32px,0) scale(1.08); }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(214,58,47,.16);
  color: var(--red-dark);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 13px;
  font-weight: 850;
  margin-bottom: 22px;
}
.hero-cinematic h1 {
  font-size: clamp(58px, 9vw, 126px);
  max-width: 790px;
  margin: 0 0 26px;
}
.hero-copy {
  font-size: clamp(19px, 2vw, 25px);
  color: rgba(17,17,17,.68);
  max-width: 620px;
  margin-bottom: 34px;
}
.button-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 21px;
  border-radius: 999px;
  font-weight: 860;
  border: 1px solid transparent;
  transition: transform .32s cubic-bezier(.22,1,.36,1), box-shadow .32s cubic-bezier(.22,1,.36,1), background .32s ease, border-color .32s ease;
}
.btn:hover { transform: translateY(-3px) scale(1.012); }
.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 20px 36px rgba(214,58,47,.25);
}
.btn-primary:hover { background: var(--red-dark); box-shadow: 0 24px 50px rgba(214,58,47,.30); }
.btn-secondary {
  background: rgba(255,255,255,.68);
  border-color: var(--line);
  color: var(--ink);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.scroll-hint {
  position: absolute;
  left: max(20px, calc((100vw - var(--max)) / 2));
  bottom: 34px;
  z-index: 3;
  color: rgba(17,17,17,.50);
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
}
.scroll-hint::before {
  content: "";
  width: 28px;
  height: 1px;
  background: rgba(17,17,17,.28);
}

section { padding: clamp(90px, 11vw, 156px) 20px; position: relative; }
.container { max-width: var(--max); margin: 0 auto; }
.section-kicker {
  color: var(--red-dark);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 920;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(44px, 7vw, 92px);
  margin: 0;
  max-width: 920px;
}
.section-copy {
  color: rgba(17,17,17,.66);
  font-size: clamp(18px, 1.6vw, 22px);
  max-width: 760px;
  margin: 24px 0 0;
}
.intro-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(30px, 7vw, 88px);
  align-items: end;
}


.story-sticky {
  background: #111;
  color: #fff;
  min-height: 165vh;
  padding: 0 20px;
}

.sticky-wrap {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.sticky-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 20%, rgba(230,217,61,.22), transparent 30%),
    radial-gradient(circle at 20% 75%, rgba(47,146,208,.20), transparent 32%),
    linear-gradient(180deg, #171717, #0e0e0e);
}

.sticky-content {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  width: 100%;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 54px;
  align-items: center;
}

.sticky-copy {
  position: sticky;
  top: 26vh;
}

.sticky-copy h2 {
  font-size: clamp(44px, 7vw, 96px);
  margin: 0 0 26px;
}

.sticky-copy p {
  color: rgba(255,255,255,.70);
  font-size: clamp(18px, 1.7vw, 23px);
  max-width: 480px;
}

.story-scenes {
  position: relative;
  min-height: 620px;
}

.story-scene {
  position: absolute;
  inset: 0;
  border-radius: 54px;
  overflow: hidden;
  opacity: 0;
  transform: scale(.96) translateY(20px);
  transition:
    opacity .9s cubic-bezier(.22,1,.36,1),
    transform .9s cubic-bezier(.22,1,.36,1);
  box-shadow: 0 50px 130px rgba(0,0,0,.38);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 34px;
  display: flex;
  align-items: flex-end;
  font-weight: 850;
  color: rgba(255,255,255,.68);
}

.story-scene.active {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.story-scene:nth-child(1) {
  background:
    radial-gradient(circle at 20% 20%, rgba(230,217,61,.34), transparent 25%),
    radial-gradient(circle at 80% 78%, rgba(214,58,47,.20), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.04));
}

.story-scene:nth-child(2) {
  background:
    radial-gradient(circle at 18% 18%, rgba(47,146,208,.30), transparent 24%),
    radial-gradient(circle at 82% 72%, rgba(230,217,61,.18), transparent 28%),
    linear-gradient(135deg, rgba(255,255,255,.10), rgba(255,255,255,.03));
}

.story-scene:nth-child(3) {
  background:
    radial-gradient(circle at 22% 24%, rgba(47,148,67,.30), transparent 24%),
    radial-gradient(circle at 80% 76%, rgba(214,58,47,.18), transparent 28%),
    linear-gradient(135deg, rgba(255,255,255,.10), rgba(255,255,255,.03));
}


.discovery-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  align-items: stretch;
}
.feature-tile {
  border-radius: var(--radius-xl);
  min-height: 390px;
  padding: 34px;
  background: var(--soft);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 16px 50px rgba(0,0,0,.07);
  transform: translateZ(0);
}
.feature-tile.large { min-height: 560px; }
.feature-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 18%, rgba(230,217,61,.42), transparent 24%),
    radial-gradient(circle at 82% 74%, rgba(47,146,208,.24), transparent 28%),
    linear-gradient(135deg, rgba(255,255,255,.30), rgba(255,255,255,0));
  opacity: .95;
  transition: transform .9s cubic-bezier(.22,1,.36,1);
}
.feature-tile:hover::before { transform: scale(1.04); }
.feature-tile::after {
  content: "Bildplatzhalter";
  position: absolute;
  top: 22px;
  right: 22px;
  color: rgba(17,17,17,.28);
  font-weight: 850;
  font-size: 13px;
}
.feature-tile .content { position: relative; z-index: 1; }
.feature-tile h3 { font-size: clamp(31px, 4vw, 56px); margin: 0 0 12px; }
.feature-tile p { color: rgba(17,17,17,.66); margin: 0; max-width: 520px; }
.tile-stack { display: grid; gap: 24px; }

.service-band {
  background: #111;
  color: #fff;
  border-radius: clamp(34px, 5vw, 64px);
  padding: clamp(38px, 7vw, 92px);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 46px;
  align-items: center;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-deep);
}
.service-band::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230,217,61,.34), transparent 68%);
  right: -140px;
  top: -120px;
}
.service-band h2 {
  font-size: clamp(46px, 7vw, 94px);
  margin: 0 0 22px;
  max-width: 780px;
}
.service-band p { color: rgba(255,255,255,.72); font-size: 20px; margin: 0 0 30px; }
.service-card {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 34px;
  padding: 30px;
}
.time-line { display: grid; gap: 14px; margin-top: 18px; }
.time-line div {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 21px;
  padding: 16px;
  font-weight: 830;
}

.cards {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 28px;
  min-height: 232px;
  box-shadow: 0 14px 38px rgba(0,0,0,.052);
  transition: transform .36s cubic-bezier(.22,1,.36,1), box-shadow .36s cubic-bezier(.22,1,.36,1);
}
.card:hover { transform: translateY(-6px); box-shadow: 0 26px 64px rgba(0,0,0,.09); }
.card .icon {
  width: 42px; height: 42px; border-radius: 16px;
  background: rgba(214,58,47,.09);
  display: grid; place-items: center; margin-bottom: 18px;
}
.card h3 { font-size: 27px; margin: 0 0 10px; }
.card p { color: var(--muted); margin: 0; }

.warm-section { background: var(--warm); }
.region-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 30px;
  align-items: center;
}
.region-photo {
  min-height: 500px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 25% 20%, rgba(47,148,67,.28), transparent 24%),
    radial-gradient(circle at 78% 72%, rgba(214,58,47,.20), transparent 26%),
    linear-gradient(135deg, #fff, #e7f3eb);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: flex-end;
  padding: 28px;
  color: rgba(17,17,17,.58);
  font-weight: 850;
}

.contact-section { padding-bottom: 80px; }
.contact-panel {
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 88% 12%, rgba(230,217,61,.20), transparent 26%),
    #111;
  color: #fff;
  padding: clamp(34px, 5vw, 68px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
  box-shadow: var(--shadow-deep);
}
.contact-panel h2 { font-size: clamp(40px, 5vw, 74px); margin: 0 0 20px; }
.contact-panel p, .contact-panel a { color: rgba(255,255,255,.76); }
.contact-list { display: grid; gap: 16px; margin: 0; }
.contact-list div { border-top: 1px solid rgba(255,255,255,.16); padding-top: 14px; }
.contact-list strong { display: block; color: #fff; margin-bottom: 4px; }

.legal-main {
  max-width: 980px;
  margin: 0 auto;
  padding: 170px 20px 90px;
}
.legal-main h1 {
  font-size: clamp(42px, 7vw, 84px);
  margin: 0 0 30px;
}
.legal-main h2 {
  font-size: clamp(28px, 4vw, 44px);
  margin-top: 48px;
}
.legal-main p, .legal-main li {
  color: rgba(17,17,17,.74);
  font-size: 17px;
}
.legal-main a { color: var(--red-dark); font-weight: 750; }

footer {
  padding: 34px 20px 44px;
  color: rgba(17,17,17,.62);
  font-size: 14px;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  flex-wrap: wrap;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-links a, .footer-links button {
  color: rgba(17,17,17,.66);
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  cursor: pointer;
}
.footer-links a:hover, .footer-links button:hover { color: var(--ink); }

.consent {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 120;
  display: none;
}
.consent.visible { display: block; }
.consent-box {
  max-width: 760px;
  margin: 0 auto;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  border: 1px solid rgba(255,255,255,.68);
  border-radius: 28px;
  box-shadow: 0 24px 90px rgba(0,0,0,.18);
  padding: 20px;
}
.consent-box h2 {
  margin: 0 0 8px;
  font-size: 24px;
}
.consent-box p {
  color: rgba(17,17,17,.70);
  margin-bottom: 14px;
}
.consent-options {
  display: grid;
  gap: 10px;
  margin: 14px 0;
}
.consent-options label {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 760;
}
.consent-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.reveal {
  opacity: 0;
  transform: translateY(54px) scale(.982);
  filter: blur(8px);
  transition:
    opacity 1.18s cubic-bezier(.22,1,.36,1),
    transform 1.18s cubic-bezier(.22,1,.36,1),
    filter 1.18s cubic-bezier(.22,1,.36,1);
  will-change: opacity, transform, filter;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

.float-depth { transition: transform .2s linear; will-change: transform; }

body.legal-page .reveal {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}

@media (max-width: 980px) {
  .desktop-nav { display:none; }
  .menu-toggle { display:inline-flex; }
  .mobile-menu { display:block; }
  .hero-cinematic {
    min-height: auto;
    padding-top: 134px;
  }
  .hero-cinematic::before {
    background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.45));
  }
  .hero-stage {
    position: relative;
    inset: auto;
    min-height: 420px;
    margin-top: 38px;
  }
  .hero-content { max-width: var(--max); }
  .sticky-content, .intro-grid, .discovery-grid, .service-band, .region-grid, .contact-panel {
    grid-template-columns: 1fr;
  }
  .story-sticky { min-height: auto; padding: 92px 20px; }
  .sticky-wrap { position: relative; min-height: auto; }
  .sticky-content { gap: 30px; }
  .device-card { min-height: 420px; }
  .cards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .top-note { font-size: 12px; }
  .site-header { padding: 10px; }
  .nav-shell { padding: 10px 10px 10px 12px; }
  .brand-text small { display:none; }
  .hero-cinematic { padding: 124px 16px 68px; }
  .hero-cinematic h1 { font-size: clamp(54px, 16vw, 76px); }
  .button-row .btn { width: 100%; }
  section { padding-left: 16px; padding-right: 16px; }
  .feature-tile, .feature-tile.large { min-height: 340px; padding: 26px; }
  .cards { grid-template-columns: 1fr; }
  .device-card { min-height: 340px; border-radius: 36px; }
  .region-photo { min-height: 340px; }
  .contact-panel { border-radius: 32px; }
  .footer-inner { display:block; }
  .footer-links { margin-top: 16px; }
  .consent { left: 12px; right: 12px; bottom: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; filter: none; }
}


/* V7 Liquid Glass & Micro Motion */
.liquid-glass,
.nav-shell,
.consent-box,
.service-card,
.floating-card,
.story-scene,
.contact-panel {
  position: relative;
}

.liquid-glass::before,
.nav-shell::before,
.consent-box::before,
.service-card::before,
.story-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255,255,255,.62), rgba(255,255,255,.08) 42%, rgba(255,255,255,.18)),
    radial-gradient(circle at var(--mx, 50%) var(--my, 30%), rgba(255,255,255,.38), transparent 34%);
  opacity: .62;
  mix-blend-mode: screen;
  transition: opacity .35s ease;
}

.nav-shell::after,
.consent-box::after,
.service-card::after,
.story-scene::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,.38);
  mask-image: linear-gradient(135deg, black, transparent 58%);
}

.nav-shell,
.consent-box,
.service-card {
  overflow: hidden;
}

.hero-stage {
  isolation: isolate;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: -22%;
  z-index: 0;
  background:
    radial-gradient(circle at var(--mx, 60%) var(--my, 32%), rgba(255,255,255,.44), transparent 22%),
    radial-gradient(circle at 20% 80%, rgba(214,58,47,.10), transparent 25%);
  opacity: .78;
  filter: blur(12px);
  transition: opacity .5s ease;
}

.hero-stage > * {
  position: relative;
  z-index: 1;
}

.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,.38), transparent 34%);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}

.btn:hover::after {
  opacity: .78;
}

.card,
.feature-tile,
.region-photo {
  will-change: transform;
}

.card:hover,
.feature-tile:hover {
  transform: translateY(-7px) scale(1.006);
}

.feature-tile .content,
.card h3,
.card p {
  transition: transform .42s cubic-bezier(.22,1,.36,1);
}

.feature-tile:hover .content {
  transform: translateY(-5px);
}

.card:hover h3,
.card:hover p {
  transform: translateY(-2px);
}

.story-scene {
  overflow: hidden;
}

.story-scene span {
  position: relative;
  z-index: 1;
}

.story-scene.active {
  animation: sceneBreath 4.5s ease-in-out infinite alternate;
}

@keyframes sceneBreath {
  from { box-shadow: 0 50px 130px rgba(0,0,0,.38); }
  to { box-shadow: 0 58px 150px rgba(0,0,0,.46); }
}

.hero-cinematic h1 {
  animation: softTitleIn 1.1s cubic-bezier(.22,1,.36,1) both;
}

.hero-copy,
.hero-cinematic .button-row,
.hero-cinematic .eyebrow {
  animation: softTitleIn 1.1s cubic-bezier(.22,1,.36,1) both;
}

.hero-cinematic .eyebrow { animation-delay: .05s; }
.hero-copy { animation-delay: .12s; }
.hero-cinematic .button-row { animation-delay: .20s; }

@keyframes softTitleIn {
  from {
    opacity: 0;
    transform: translateY(26px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.scroll-hint {
  animation: hintPulse 2.4s ease-in-out infinite;
}

@keyframes hintPulse {
  0%, 100% { opacity: .48; transform: translateY(0); }
  50% { opacity: .82; transform: translateY(4px); }
}

.site-header.scrolled .nav-shell {
  transform: translateY(0) scale(.992);
}

.mobile-menu {
  overflow: hidden;
}

.mobile-menu::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  right: -160px;
  top: 80px;
  background: radial-gradient(circle, rgba(230,217,61,.26), transparent 68%);
  animation: orbFloat 10s ease-in-out infinite alternate;
}

.mobile-menu a {
  position: relative;
  z-index: 1;
  transition: transform .28s cubic-bezier(.22,1,.36,1), opacity .28s ease;
}

.mobile-menu a:hover {
  transform: translateX(8px);
}

@media (prefers-reduced-motion: reduce) {
  .story-scene.active,
  .hero-cinematic h1,
  .hero-copy,
  .hero-cinematic .button-row,
  .hero-cinematic .eyebrow,
  .scroll-hint,
  .mobile-menu::before {
    animation: none !important;
  }
}


/* V8 Experience Layer */

.hero-cinematic {
  min-height: 138vh;
}

.hero-content {
  padding-top: 4vh;
}

.hero-cinematic h1 {
  max-width: 980px;
  font-size: clamp(64px, 10vw, 152px);
}

.hero-copy {
  max-width: 520px;
  font-size: clamp(18px, 1.8vw, 24px);
}

.hero-stage {
  inset: 120px max(20px, calc((100vw - var(--max)) / 2)) 60px 48%;
}

.hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.0), rgba(255,255,255,.10)),
    radial-gradient(circle at 70% 20%, rgba(255,255,255,.18), transparent 28%);
  pointer-events: none;
}


.statement-section {
  position: relative;
  padding-top: 180px;
  padding-bottom: 180px;
}

.statement-block {
  text-align: center;
  max-width: 1080px;
  margin: 0 auto;
}

.statement-block h2 {
  font-size: clamp(48px, 8vw, 120px);
  margin: 0;
  line-height: .92;
}

.statement-block p {
  max-width: 700px;
  margin: 28px auto 0;
  color: rgba(17,17,17,.62);
  font-size: clamp(18px, 1.7vw, 23px);
}

.scroll-gallery {
  display: grid;
  gap: 30px;
  margin-top: 90px;
}

.gallery-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.gallery-card {
  min-height: 620px;
  border-radius: 46px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 38px 100px rgba(0,0,0,.12);
  background:
    radial-gradient(circle at 20% 20%, rgba(230,217,61,.22), transparent 24%),
    radial-gradient(circle at 82% 72%, rgba(47,146,208,.18), transparent 28%),
    linear-gradient(135deg, #f7f2e7, #ffffff);
}

.gallery-card.dark {
  background:
    radial-gradient(circle at 20% 20%, rgba(230,217,61,.18), transparent 24%),
    radial-gradient(circle at 82% 72%, rgba(214,58,47,.18), transparent 28%),
    linear-gradient(135deg, #111, #1c1c1c);
  color: white;
}

.gallery-card::before {
  content: "Premiumbild später hier";
  position: absolute;
  right: 24px;
  top: 24px;
  font-size: 13px;
  font-weight: 820;
  color: rgba(17,17,17,.35);
}

.gallery-card.dark::before {
  color: rgba(255,255,255,.35);
}

.gallery-inner {
  position: absolute;
  inset: auto 0 0 0;
  padding: 34px;
}

.gallery-inner h3 {
  font-size: clamp(34px, 5vw, 66px);
  margin: 0 0 14px;
}

.gallery-inner p {
  max-width: 520px;
  color: inherit;
  opacity: .72;
  font-size: 18px;
}

.apple-divider {
  height: 1px;
  max-width: 1180px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, rgba(17,17,17,.12), transparent);
}

.focus-band {
  position: relative;
  min-height: 120vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #0f0f0f;
  color: white;
}

.focus-panel {
  width: min(1100px, calc(100% - 40px));
  min-height: 72vh;
  border-radius: 54px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(230,217,61,.22), transparent 22%),
    radial-gradient(circle at 82% 72%, rgba(47,146,208,.16), transparent 28%),
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 60px 180px rgba(0,0,0,.42);
  display: grid;
  align-items: end;
  padding: 54px;
}

.focus-panel h2 {
  font-size: clamp(50px, 8vw, 118px);
  max-width: 760px;
  margin: 0 0 18px;
}

.focus-panel p {
  max-width: 560px;
  color: rgba(255,255,255,.70);
  font-size: 21px;
  margin: 0;
}

.focus-float {
  position: absolute;
  right: 6%;
  top: 8%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.22), transparent 68%);
  filter: blur(10px);
}

.section-title {
  max-width: 780px;
}

.cards {
  margin-top: 70px;
}

.card {
  border-radius: 36px;
  min-height: 260px;
}

.card:hover {
  transform: translateY(-8px) scale(1.012);
}

@media (max-width: 980px) {

  .hero-cinematic {
    min-height: auto;
  }

  .hero-stage {
    inset: auto;
    margin-top: 50px;
  }

  .gallery-row {
    grid-template-columns: 1fr;
  }

  .gallery-card {
    min-height: 420px;
  }

  .focus-band {
    min-height: auto;
    padding: 100px 0;
  }

  .focus-panel {
    min-height: 500px;
    padding: 36px;
  }

}


/* REAL IMAGE INTEGRATION V1 */
.hero-stage {
  background-image:
    linear-gradient(90deg, rgba(255,255,255,.18), rgba(255,255,255,.04)),
    url("images/website/hero-ladenuebersicht-desktop.webp") !important;
  background-size: cover !important;
  background-position: center !important;
}

@media (max-width: 760px) {
  .hero-stage {
    background-image:
      linear-gradient(180deg, rgba(255,255,255,.20), rgba(255,255,255,.02)),
      url("images/website/hero-ladenuebersicht-mobile.webp") !important;
    background-position: center !important;
  }
}

.story-scene:nth-child(1) {
  background-image:
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.34)),
    url("images/website/spielwaren-schleich-desktop.webp") !important;
  background-size: cover !important;
  background-position: center !important;
}

.story-scene:nth-child(2) {
  background-image:
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.34)),
    url("images/website/geschenkideen-herz-desktop.webp") !important;
  background-size: cover !important;
  background-position: center !important;
}

.story-scene:nth-child(3) {
  background-image:
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.34)),
    url("images/website/geburtstagskiste-desktop.webp") !important;
  background-size: cover !important;
  background-position: center !important;
}

.feature-tile.large {
  background-image:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.68)),
    url("images/website/spielwaren-schleich-desktop.webp") !important;
  background-size: cover !important;
  background-position: center !important;
}

.tile-stack .feature-tile:nth-child(1) {
  background-image:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.70)),
    url("images/website/geschenkideen-herz-desktop.webp") !important;
  background-size: cover !important;
  background-position: center !important;
}

.tile-stack .feature-tile:nth-child(2) {
  background-image:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.70)),
    url("images/website/geburtstagskiste-desktop.webp") !important;
  background-size: cover !important;
  background-position: center !important;
}

.region-photo {
  background-image:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.70)),
    url("images/website/post-service-zug-desktop.webp") !important;
  background-size: cover !important;
  background-position: center !important;
}

.gallery-card:nth-child(1) {
  background-image:
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.58)),
    url("images/website/baby-steiff-desktop.webp") !important;
  background-size: cover !important;
  background-position: center !important;
}

.gallery-card:nth-child(2) {
  background-image:
    linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.55)),
    url("images/website/spielwaren-lego-desktop.webp") !important;
  background-size: cover !important;
  background-position: center !important;
}

.hero-stage::after,
.feature-tile::after,
.gallery-card::before {
  content: "" !important;
}


/* BILD-KORREKTUR V2
   Ziel: weniger milchig, bessere Ausschnitte, falsche Bildzuordnungen korrigiert.
*/

/* Hero: Bild klarer anzeigen, Overlays deutlich reduzieren */
.hero-cinematic::before {
  background:
    linear-gradient(90deg,
      rgba(255,255,255,.86) 0%,
      rgba(255,255,255,.58) 34%,
      rgba(255,255,255,.18) 52%,
      rgba(255,255,255,0) 78%) !important;
}

.hero-stage::before {
  opacity: .18 !important;
  filter: blur(8px) !important;
}

.hero-stage::after {
  background:
    linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.06)) !important;
}

.hero-stage {
  background-image:
    linear-gradient(90deg, rgba(0,0,0,.04), rgba(0,0,0,.02)),
    url("images/website/hero-ladenuebersicht-desktop.webp") !important;
  background-size: cover !important;
  background-position: center center !important;
}

@media (max-width: 760px) {
  .hero-cinematic::before {
    background:
      linear-gradient(180deg,
        rgba(255,255,255,.88) 0%,
        rgba(255,255,255,.54) 42%,
        rgba(255,255,255,.10) 72%,
        rgba(255,255,255,0) 100%) !important;
  }

  .hero-stage {
    background-image:
      linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.04)),
      url("images/website/hero-ladenuebersicht-mobile.webp") !important;
    background-size: cover !important;
    background-position: center center !important;
  }
}

/* Sticky-Szenen: Bilder nicht mehr brutal gecroppt, sondern besser erkennbar */
.story-scene {
  background-color: #111 !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
}

.story-scene:nth-child(1) {
  background-image:
    linear-gradient(180deg, rgba(0,0,0,.00), rgba(0,0,0,.48)),
    url("images/website/geschenkideen-herz-desktop.webp") !important;
}

.story-scene:nth-child(2) {
  background-image:
    linear-gradient(180deg, rgba(0,0,0,.00), rgba(0,0,0,.48)),
    url("images/website/spielwaren-lego-desktop.webp") !important;
}

.story-scene:nth-child(3) {
  background-image:
    linear-gradient(180deg, rgba(0,0,0,.00), rgba(0,0,0,.48)),
    url("images/website/post-service-zug-desktop.webp") !important;
}

/* Spielwaren mit Persönlichkeit: anderes Bild, nicht Schleich */
.feature-tile.large {
  background-image:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.60)),
    url("images/website/sortiment-vielfalt-desktop.webp") !important;
  background-size: cover !important;
  background-position: center center !important;
}

/* Die beiden kleineren Spielwaren-Kacheln gezielter */
.tile-stack .feature-tile:nth-child(1) {
  background-image:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.68)),
    url("images/website/spielwaren-lego-desktop.webp") !important;
  background-size: cover !important;
  background-position: center center !important;
}

.tile-stack .feature-tile:nth-child(2) {
  background-image:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.68)),
    url("images/website/geschenkideen-herz-desktop.webp") !important;
  background-size: cover !important;
  background-position: center center !important;
}

/* Mitten in Aldekerk: kein falsches Schleich-Bild mehr, bis echtes Ortsbild vorhanden ist */
.region-photo {
  background-image:
    radial-gradient(circle at 20% 18%, rgba(47,146,208,.18), transparent 28%),
    radial-gradient(circle at 82% 72%, rgba(214,58,47,.14), transparent 30%),
    linear-gradient(135deg, #fffaf0, #eaf4ef) !important;
  background-size: auto !important;
  background-position: center !important;
}

.region-photo::after {
  content: "Hier später echtes Bild aus Kerken / Aldekerk";
  color: rgba(17,17,17,.55);
  font-weight: 850;
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(255,255,255,.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 22px;
  padding: 16px 18px;
}

/* Galerie-Bilder ebenfalls weniger stark überdecken */
.gallery-card:nth-child(1) {
  background-image:
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.46)),
    url("images/website/baby-steiff-desktop.webp") !important;
  background-size: cover !important;
  background-position: center center !important;
}

.gallery-card:nth-child(2) {
  background-image:
    linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.46)),
    url("images/website/post-service-zug-desktop.webp") !important;
  background-size: cover !important;
  background-position: center center !important;
}

/* Platzhalter-Markierungen endgültig unterdrücken */
.hero-stage::after,
.feature-tile::after,
.gallery-card::before {
  content: "" !important;
}


/* =========================================================
   BILD-FIX V3 FINAL
   - Hero ohne Milch-/Blur-Effekt
   - Sticky-Szenen groß, rechteckig, korrekt erkennbar
   - falsche Schleich-Regionalität entfernt
   - Spielwaren mit Persönlichkeit neu belegt
   ========================================================= */

/* HERO: keine Milchglas-Zerstörung, Bild klar sichtbar */
.hero-cinematic {
  background:
    radial-gradient(circle at 16% 20%, rgba(230,217,61,.10), transparent 30%),
    linear-gradient(180deg, #fff 0%, #fbf7ef 78%, #fff 100%) !important;
}

.hero-cinematic::before {
  background:
    linear-gradient(90deg,
      rgba(255,255,255,.94) 0%,
      rgba(255,255,255,.84) 35%,
      rgba(255,255,255,.32) 50%,
      rgba(255,255,255,0) 68%) !important;
}

.hero-stage {
  background-image:
    linear-gradient(90deg, rgba(0,0,0,0), rgba(0,0,0,0)),
    url("images/website/hero-papa-tasse-desktop.webp") !important;
  background-size: cover !important;
  background-position: center center !important;
  filter: none !important;
  opacity: 1 !important;
}

.hero-stage::before {
  display: none !important;
}

.hero-stage::after {
  display: none !important;
}

.hero-orb {
  display: none !important;
}

/* Hero-Bildbereich etwas breiter und klarer */
@media (min-width: 981px) {
  .hero-stage {
    inset: 118px max(20px, calc((100vw - var(--max)) / 2)) 54px 44% !important;
  }
}

@media (max-width: 980px) {
  .hero-cinematic::before {
    background:
      linear-gradient(180deg,
        rgba(255,255,255,.94) 0%,
        rgba(255,255,255,.74) 43%,
        rgba(255,255,255,.12) 70%,
        rgba(255,255,255,0) 100%) !important;
  }

  .hero-stage {
    background-image:
      url("images/website/hero-papa-tasse-mobile.webp") !important;
    background-size: cover !important;
    background-position: center center !important;
    min-height: 480px !important;
  }
}

/* STICKY-STORY: nicht mehr als schmale Kapsel, sondern große Bildbühne */
.story-sticky {
  min-height: 145vh !important;
}

.sticky-content {
  grid-template-columns: .88fr 1.12fr !important;
  gap: clamp(28px, 5vw, 72px) !important;
}

.story-scenes {
  min-height: min(68vh, 680px) !important;
  width: 100% !important;
}

.story-scene {
  inset: 0 !important;
  min-height: min(68vh, 680px) !important;
  border-radius: clamp(28px, 4vw, 48px) !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  padding: 36px !important;
  align-items: flex-end !important;
  justify-content: flex-start !important;
  overflow: hidden !important;
  filter: none !important;
}

.story-scene::before {
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 42%, rgba(0,0,0,.52) 100%) !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
}

.story-scene::after {
  display: none !important;
}

.story-scene span {
  position: relative !important;
  z-index: 3 !important;
  display: inline-flex !important;
  max-width: 82% !important;
  background: rgba(0,0,0,.32) !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  color: #fff !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  padding: 14px 18px !important;
  border-radius: 999px !important;
  font-weight: 850 !important;
  text-shadow: 0 2px 10px rgba(0,0,0,.35) !important;
}

.story-scene:nth-child(1) {
  background-image:
    url("images/website/sticky-geschenke-herz-desktop.webp") !important;
  background-position: center center !important;
}

.story-scene:nth-child(2) {
  background-image:
    url("images/website/sticky-geburtstagskiste-desktop.webp") !important;
  background-position: center center !important;
}

.story-scene:nth-child(3) {
  background-image:
    url("images/website/sticky-windrad-service-desktop.webp") !important;
  background-position: center center !important;
}

/* Mobile Sticky: untereinander und groß genug */
@media (max-width: 980px) {
  .story-sticky {
    min-height: auto !important;
    padding: 90px 18px !important;
  }

  .sticky-content {
    grid-template-columns: 1fr !important;
  }

  .story-scenes {
    min-height: 540px !important;
  }

  .story-scene {
    min-height: 540px !important;
    background-size: cover !important;
  }

  .story-scene:nth-child(1) {
    background-image: url("images/website/sticky-geschenke-herz-mobile.webp") !important;
  }

  .story-scene:nth-child(2) {
    background-image: url("images/website/sticky-geburtstagskiste-mobile.webp") !important;
  }

  .story-scene:nth-child(3) {
    background-image: url("images/website/sticky-windrad-service-mobile.webp") !important;
  }
}

/* Spielwaren mit Persönlichkeit: korrektes Sortimentbild statt falschem Motiv */
.feature-tile.large {
  background-image:
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.58)),
    url("images/website/spielwaren-persoenlichkeit-desktop.webp") !important;
  background-size: cover !important;
  background-position: center center !important;
}

/* Mitten in Aldekerk: bewusst neutral, bis echtes Ortsbild vorhanden */
.region-photo {
  background-image:
    radial-gradient(circle at 20% 18%, rgba(47,146,208,.18), transparent 28%),
    radial-gradient(circle at 82% 72%, rgba(214,58,47,.14), transparent 30%),
    linear-gradient(135deg, #fffaf0, #eaf4ef) !important;
  background-size: auto !important;
  background-position: center !important;
}

.region-photo::after {
  content: "Hier später echtes Bild aus Kerken / Aldekerk";
  color: rgba(17,17,17,.55);
  font-weight: 850;
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(255,255,255,.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 22px;
  padding: 16px 18px;
}

/* Platzhaltertexte unterdrücken */
.hero-stage::after,
.feature-tile::after,
.gallery-card::before {
  content: "" !important;
}


/* =========================================================
   STICKY-STAGE FIX V4
   Ziel:
   - Text links dauerhaft sichtbar
   - Bilder rechts alle exakt an gleicher Stelle
   - echter Sticky-Eindruck statt normalem Scrollen
   ========================================================= */

.story-sticky {
  background: #111 !important;
  color: #fff !important;
  min-height: 260vh !important;
  padding: 0 20px !important;
  overflow: visible !important;
}

.story-sticky .sticky-wrap {
  position: sticky !important;
  top: 0 !important;
  min-height: 100vh !important;
  height: 100vh !important;
  display: grid !important;
  place-items: center !important;
  overflow: hidden !important;
}

.story-sticky .sticky-content {
  position: relative !important;
  z-index: 2 !important;
  max-width: var(--max) !important;
  width: 100% !important;
  display: grid !important;
  grid-template-columns: minmax(360px, .92fr) minmax(520px, 1.08fr) !important;
  gap: clamp(36px, 6vw, 86px) !important;
  align-items: center !important;
}

/* Text bleibt links sichtbar und fährt nicht nach unten weg */
.story-sticky .sticky-copy {
  position: relative !important;
  top: auto !important;
  align-self: center !important;
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}

.story-sticky .sticky-copy.reveal,
.story-sticky .sticky-copy.reveal.visible {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}

.story-sticky .sticky-copy h2 {
  font-size: clamp(48px, 7vw, 96px) !important;
  margin: 0 0 26px !important;
  max-width: 560px !important;
}

.story-sticky .sticky-copy p {
  max-width: 520px !important;
  color: rgba(255,255,255,.72) !important;
}

/* Rechte Bildbühne: immer exakt gleiche Position */
.story-sticky .story-scenes {
  position: relative !important;
  width: 100% !important;
  height: min(68vh, 680px) !important;
  min-height: 560px !important;
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}

.story-sticky .story-scenes.reveal,
.story-sticky .story-scenes.reveal.visible {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}

.story-sticky .story-scene {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  border-radius: clamp(30px, 4vw, 52px) !important;
  overflow: hidden !important;
  opacity: 0 !important;
  transform: scale(.985) !important;
  transition:
    opacity .85s cubic-bezier(.22,1,.36,1),
    transform .85s cubic-bezier(.22,1,.36,1) !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  display: flex !important;
  align-items: flex-end !important;
  justify-content: flex-start !important;
  padding: 34px !important;
  box-shadow: 0 50px 130px rgba(0,0,0,.40) !important;
}

.story-sticky .story-scene.active {
  opacity: 1 !important;
  transform: scale(1) !important;
  z-index: 2 !important;
}

/* Textlabel in den Bildern bleibt unten, aber unaufdringlich */
.story-sticky .story-scene span {
  position: relative !important;
  z-index: 4 !important;
  display: inline-flex !important;
  max-width: 82% !important;
  background: rgba(0,0,0,.32) !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  color: #fff !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  padding: 13px 17px !important;
  border-radius: 999px !important;
  font-weight: 850 !important;
  text-shadow: 0 2px 10px rgba(0,0,0,.35) !important;
}

/* Bildzuordnung */
.story-sticky .story-scene:nth-child(1) {
  background-image: url("images/website/sticky-geschenke-herz-desktop.webp") !important;
  background-position: center center !important;
}

.story-sticky .story-scene:nth-child(2) {
  background-image: url("images/website/sticky-geburtstagskiste-desktop.webp") !important;
  background-position: center center !important;
}

.story-sticky .story-scene:nth-child(3) {
  background-image: url("images/website/sticky-windrad-service-desktop.webp") !important;
  background-position: center center !important;
}

/* dunkler Verlauf nur unten, nicht über das gesamte Bild */
.story-sticky .story-scene::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  border-radius: inherit !important;
  pointer-events: none !important;
  background: linear-gradient(180deg, rgba(0,0,0,0) 42%, rgba(0,0,0,.50) 100%) !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
}

.story-sticky .story-scene::after {
  display: none !important;
}

/* Mobile: kein erzwungenes Sticky, dafür sauber untereinander */
@media (max-width: 980px) {
  .story-sticky {
    min-height: auto !important;
    padding: 90px 18px !important;
  }

  .story-sticky .sticky-wrap {
    position: relative !important;
    height: auto !important;
    min-height: auto !important;
    overflow: visible !important;
  }

  .story-sticky .sticky-content {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .story-sticky .story-scenes {
    height: 560px !important;
    min-height: 560px !important;
  }

  .story-sticky .story-scene:nth-child(1) {
    background-image: url("images/website/sticky-geschenke-herz-mobile.webp") !important;
  }

  .story-sticky .story-scene:nth-child(2) {
    background-image: url("images/website/sticky-geburtstagskiste-mobile.webp") !important;
  }

  .story-sticky .story-scene:nth-child(3) {
    background-image: url("images/website/sticky-windrad-service-mobile.webp") !important;
  }
}
