html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

@supports (animation-timeline: scroll()) {
  html {
    scroll-timeline-name: --site-document-scroll;
    scroll-timeline-axis: block;
  }
}

body.interferenzen-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.interferenzen-flow {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 0;
}

.interferenzen-main {
  flex: 1 1 auto;
}

body.interferenzen-page .site-footer {
  flex-shrink: 0;
  margin-top: auto;
}

html.is-custom-cursor,
html.is-custom-cursor * {
  cursor: none !important;
}

@media (hover: hover) and (pointer: fine) {
  html.is-custom-cursor.lightbox-open,
  html.is-custom-cursor.lightbox-open * {
    cursor: revert !important;
  }

  html.lightbox-open .cursor-dot,
  html.lightbox-open .cursor-ring {
    display: none !important;
  }
}

.cursor-dot,
.cursor-ring {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  html.is-custom-cursor .cursor-dot,
  html.is-custom-cursor .cursor-ring {
    display: block;
  }
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: 1000;
  transform: translate(-50%, -50%);
  will-change: transform, opacity;
  transition:
    transform 0.2s ease-out,
    opacity 0.25s ease,
    border-color 0.2s ease;
}

.cursor-dot {
  width: 6px;
  height: 6px;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: #c8a96e;
  opacity: 0;
}

.cursor-ring {
  width: 36px;
  height: 36px;
  margin: 0;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(200, 169, 110, 0.5);
  background: transparent;
  box-sizing: border-box;
  opacity: 0;
}

html.is-custom-cursor:not(.cursor-hidden) .cursor-dot,
html.is-custom-cursor:not(.cursor-hidden) .cursor-ring {
  opacity: 1;
}

html.cursor-interactive .cursor-dot {
  transform: translate(-50%, -50%) scale(2);
}

html.cursor-interactive .cursor-ring {
  transform: translate(-50%, -50%) scale(1.6);
  border-color: rgba(200, 169, 110, 0.95);
}

#preloader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  background-color: #050508;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity 1s ease,
    visibility 1s ease;
}

#preloader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__mark {
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader__breath {
  transform-origin: center center;
  animation: preloader-breathe 2s ease-in-out 0.5s infinite;
}

.preloader__logo {
  height: clamp(88px, 28vmin, 140px);
  width: auto;
  display: block;
  transform-origin: center center;
  filter: invert(1);
  animation: preloader-enter 0.5s forwards linear;
}

@keyframes preloader-enter {
  0% {
    opacity: 0;
    transform: scale(0.6);
  }
  55% {
    opacity: 1;
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes preloader-breathe {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .preloader__breath {
    animation: none;
  }

  .preloader__logo {
    animation: none;
    opacity: 1;
    transform: scale(1);
  }
}

#werk,
#galerie,
#videos,
#technik,
#statement {
  scroll-margin-top: 5rem;
}

.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.5rem;
  box-sizing: border-box;
  background-color: #050508;
}

.hero__title {
  position: relative;
  margin: 0;
  max-width: 100%;
  padding: 0 0.25rem;
  box-sizing: border-box;
  font-weight: 200;
  letter-spacing: 0.15em;
  line-height: 1.05;
  text-transform: none;
  color: transparent;
}

.hero__title-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.hero__title-moire {
  position: relative;
  display: inline-block;
  isolation: isolate;
  --moire-spread: 0;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 200;
  letter-spacing: 0.15em;
  line-height: inherit;
  text-transform: inherit;
  opacity: 0;
  animation: hero-fade-in-title 1.1s ease-out forwards;
}

.hero__title-slice {
  display: block;
  white-space: nowrap;
  font-family: inherit;
  font-size: inherit;
  font-weight: 200;
  letter-spacing: inherit;
  line-height: inherit;
  color: #ebe8e4;
}

.hero__title-slice--glow {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  opacity: 0.55;
  pointer-events: none;
  transform: translate(
    calc(var(--moire-spread, 0) * 2px),
    calc(var(--moire-spread, 0) * -2px)
  );
  background-image: radial-gradient(
    circle at calc(50% + (var(--moire-spread, 0) * 22px))
      calc(50% + (var(--moire-spread, 0) * -16px)),
    rgba(200, 169, 110, 0.85) 0%,
    rgba(200, 169, 110, 0.25) 38%,
    transparent 62%
  );
  background-size: 160% 160%;
  background-position: calc(50% + (var(--moire-spread, 0) * 18px))
    calc(50% + (var(--moire-spread, 0) * -12px));
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__title-slice--1 {
  position: relative;
  z-index: 2;
  clip-path: polygon(0 0, 100% 0, 100% 14%, 0 14%);
  transform: translateX(calc(var(--moire-spread, 0) * -3px));
}

.hero__title-slice--2 {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  clip-path: polygon(0 14%, 100% 14%, 100% 28%, 0 28%);
  transform: translateX(calc(var(--moire-spread, 0) * 3px));
}

.hero__title-slice--3 {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  clip-path: polygon(0 28%, 100% 28%, 100% 42%, 0 42%);
  transform: translateX(calc(var(--moire-spread, 0) * -3px));
}

.hero__title-slice--4 {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  clip-path: polygon(0 42%, 100% 42%, 100% 57%, 0 57%);
  transform: translateX(calc(var(--moire-spread, 0) * 3px));
}

.hero__title-slice--5 {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  clip-path: polygon(0 57%, 100% 57%, 100% 71%, 0 71%);
  transform: translateX(calc(var(--moire-spread, 0) * -3px));
}

.hero__title-slice--6 {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  clip-path: polygon(0 71%, 100% 71%, 100% 85%, 0 85%);
  transform: translateX(calc(var(--moire-spread, 0) * 3px));
}

.hero__title-slice--7 {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  clip-path: polygon(0 85%, 100% 85%, 100% 100%, 0 100%);
  transform: translateX(calc(var(--moire-spread, 0) * -3px));
}

.hero__subtitle {
  margin: 1.75rem auto 0;
  width: 100%;
  max-width: 600px;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  box-sizing: border-box;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.06em;
  color: #888;
  opacity: 0;
  animation: hero-fade-in-sub 1.1s ease-out 0.45s forwards;
}

@keyframes hero-fade-in-title {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes hero-fade-in-sub {
  from {
    opacity: 0;
    transform: translateY(0.65rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__subtitle {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .hero__title-moire {
    animation: none;
    opacity: 1;
    --moire-spread: 0;
  }

  .hero__title-slice--glow,
  .hero__title-slice--2,
  .hero__title-slice--3,
  .hero__title-slice--4,
  .hero__title-slice--5,
  .hero__title-slice--6,
  .hero__title-slice--7 {
    display: none !important;
  }

  .hero__title-slice--1 {
    clip-path: none !important;
    transform: none !important;
  }
}

@media (max-width: 639px) {
  .hero {
    padding: 2rem 0;
  }

  .hero__title-moire {
    font-size: clamp(2rem, 0.85rem + 5.5vw, 8rem);
    padding: 0 1rem;
    box-sizing: border-box;
    max-width: 100%;
  }

  .hero__subtitle {
    max-width: 100%;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    font-size: clamp(1rem, 4.2vw, 1.6rem);
  }
}

.werk {
  padding: 120px 0;
  background-color: #050508;
}

.werk__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  box-sizing: border-box;
}

.werk__heading,
.technik__heading {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #c8a96e;
}

.galerie__heading,
.videos__heading {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #c8a96e;
}

.heading-hit-zone {
  margin: 0 0 3rem;
}

.heading-hit-zone > h2 {
  display: inline-block;
  margin: 0;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.45s ease,
    text-shadow 0.45s ease;
  transform-origin: left center;
}

.heading-hit-zone.is-heading-active > h2 {
  transform: scale(1.14);
  color: #e8d9b4;
  text-shadow:
    0 0 16px rgba(200, 169, 110, 0.6),
    0 0 40px rgba(200, 169, 110, 0.38),
    0 0 68px rgba(200, 169, 110, 0.18);
}

@media (prefers-reduced-motion: reduce) {
  .heading-hit-zone > h2 {
    transition: none;
  }

  .heading-hit-zone.is-heading-active > h2 {
    transform: none;
    color: #c8a96e;
    text-shadow: none;
  }
}

.werk__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 900px) {
  .werk__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem 3.5rem;
  }
}

.werk__pull {
  margin: 0;
  padding: 0;
  border: 0;
  font-family: inherit;
  font-style: normal;
}

.werk__pull p {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 200;
  line-height: 1.2;
  color: #ebe8e4;
}

.werk__prose p {
  margin: 0 0 1.25em;
  font-size: 1.25rem;
  line-height: 1.9;
  color: #aaa;
}

@media (max-width: 599px) {
  .werk__prose p {
    font-size: 1.1rem;
  }
}

.werk__prose p:last-child {
  margin-bottom: 0;
}

.galerie {
  padding: 120px 0;
  background-color: #050508;
}

.galerie__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  box-sizing: border-box;
}

.galerie__grid {
  column-count: 2;
  column-gap: 1rem;
}

@media (min-width: 480px) {
  .galerie__grid {
    column-gap: 1.5rem;
  }
}

.galerie__thumb {
  display: block;
  width: 100%;
  margin: 0 0 1.5rem;
  padding: 0;
  border: none;
  font: inherit;
  color: inherit;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  break-inside: avoid;
  page-break-inside: avoid;
  -webkit-column-break-inside: avoid;
  background-color: #0c0c10;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.galerie__thumb:hover {
  transform: scale(1.03);
  box-shadow:
    0 16px 44px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(200, 169, 110, 0.22),
    0 0 28px rgba(200, 169, 110, 0.32),
    0 0 56px rgba(200, 169, 110, 0.14),
    0 0 88px rgba(200, 169, 110, 0.06);
}

.galerie__thumb:focus-visible {
  outline: 2px solid #8a8a8a;
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .galerie__thumb {
    transition: none;
  }

  .galerie__thumb:hover {
    transform: none;
  }
}

.galerie__thumb video {
  pointer-events: none;
}

.videos {
  padding: 120px 0;
  background-color: #050508;
}

.videos__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  box-sizing: border-box;
}

.videos__stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  width: 100%;
  margin: 0;
  align-items: start;
}

.videos__cell {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  font: inherit;
  color: inherit;
  cursor: default;
  border-radius: 4px;
  overflow: hidden;
  background-color: #0c0c10;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  transition: box-shadow 0.25s ease;
}

.videos__cell:focus-visible {
  outline: 2px solid #8a8a8a;
  outline-offset: 3px;
}

.videos__cell:hover {
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(200, 169, 110, 0.18);
}

.videos__clip {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: min(85vh, 1100px);
  margin-inline: auto;
  vertical-align: top;
  cursor: default;
  pointer-events: auto;
  object-fit: contain;
}

.videos__clip::-webkit-media-controls-start-playback-button {
  display: none !important;
}

@media (max-width: 560px) {
  .videos__stack {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.lightbox[hidden] {
  display: none;
}

.lightbox:not([hidden]) {
  display: flex;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1100;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4.5rem 3.5rem;
  box-sizing: border-box;
  background-color: transparent;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: rgba(5, 5, 8, 0.94);
  cursor: pointer;
}

.lightbox__frame {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: min(90vw, 1400px);
  max-height: calc(100vh - 6rem);
  max-height: calc(100dvh - 6rem);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__img {
  max-width: 100%;
  max-height: calc(100vh - 6rem);
  max-height: calc(100dvh - 6rem);
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 2px;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.55);
}

.lightbox__img[hidden] {
  display: none !important;
}

.lightbox__video {
  max-width: min(100%, 96vw);
  width: auto;
  height: auto;
  max-height: 85vh;
  max-height: 85dvh;
  display: block;
  border-radius: 2px;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.55);
  background-color: #0c0c10;
  opacity: 1;
  transition: opacity 0.45s ease;
}

.lightbox__video.is-opacity-out {
  opacity: 0;
}

.lightbox__video[hidden] {
  display: none !important;
}

@keyframes lightbox-media-enter {
  from {
    opacity: 0;
    transform: scale(0.4);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.lightbox.lightbox--open .lightbox__frame .lightbox__img:not([hidden]),
.lightbox.lightbox--open .lightbox__frame .lightbox__video:not([hidden]) {
  animation: lightbox-media-enter 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  transform-origin: center center;
}

@keyframes closes-zoom {
  from {
    opacity: 1;
    transform: scale(1);
  }

  to {
    opacity: 0;
    transform: scale(0.4);
  }
}

.lightbox.lightbox--closing .lightbox__frame .lightbox__img:not([hidden]),
.lightbox.lightbox--closing .lightbox__frame .lightbox__video:not([hidden]) {
  animation: closes-zoom 0.3s cubic-bezier(0.36, 0, 0.66, -0.56) forwards;
  transform-origin: center center;
}

@media (prefers-reduced-motion: reduce) {
  .lightbox.lightbox--open .lightbox__frame .lightbox__img:not([hidden]),
  .lightbox.lightbox--open .lightbox__frame .lightbox__video:not([hidden]) {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .lightbox.lightbox--closing .lightbox__frame .lightbox__img:not([hidden]),
  .lightbox.lightbox--closing .lightbox__frame .lightbox__video:not([hidden]) {
    animation: none;
    opacity: 0;
    transform: scale(0.4);
  }

  .lightbox__video {
    transition: none;
  }

  .lightbox__video.is-opacity-out {
    opacity: 1;
  }
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  margin: 0;
  padding: 0;
  border: none;
  font: inherit;
  color: #e6e4e1;
  background: transparent;
  cursor: pointer;
  line-height: 1;
  transition: opacity 0.2s ease, color 0.2s ease;
  z-index: 2;
}

.lightbox__close:hover,
.lightbox__nav:hover,
.lightbox__close:focus-visible,
.lightbox__nav:focus-visible {
  color: #fff;
}

.lightbox__close:focus-visible,
.lightbox__nav:focus-visible {
  outline: 2px solid #8a8a8a;
  outline-offset: 2px;
}

.lightbox__close {
  top: 1.25rem;
  right: 1.25rem;
  font-size: 2.25rem;
  font-weight: 300;
  min-width: 44px;
  min-height: 44px;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  font-size: 3.5rem;
  font-weight: 200;
  min-width: 44px;
  min-height: 44px;
  width: 3rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
}

.lightbox__nav--prev {
  left: 0.75rem;
}

.lightbox__nav--next {
  right: 0.75rem;
}

@media (max-width: 639px) {
  .lightbox {
    padding: calc(3.25rem + env(safe-area-inset-top, 0px)) 0.75rem
      calc(0.75rem + env(safe-area-inset-bottom, 0px));
  }

  .lightbox__frame {
    max-height: calc(100dvh - 5.5rem - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px));
    max-height: calc(100vh - 5.5rem - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px));
    width: 100%;
    max-width: 100%;
    padding: 0 0.25rem;
    box-sizing: border-box;
  }

  .lightbox__img {
    max-width: 100%;
    max-height: calc(100dvh - 5.5rem - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px));
    max-height: calc(100vh - 5.5rem - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px));
  }

  .lightbox__video {
    max-width: 100%;
    max-height: min(
      85dvh,
      calc(100dvh - 5.5rem - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px))
    );
    max-height: min(
      85vh,
      calc(100vh - 5.5rem - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px))
    );
  }

  .lightbox__close {
    top: calc(0.5rem + env(safe-area-inset-top, 0px));
    right: 0.5rem;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    font-size: 2rem;
  }

  .lightbox__nav {
    font-size: 2.5rem;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
  }

  .lightbox__nav--prev {
    left: calc(0.25rem + env(safe-area-inset-left, 0px));
  }

  .lightbox__nav--next {
    right: calc(0.25rem + env(safe-area-inset-right, 0px));
  }
}

.statement {
  padding: 140px 2rem 0;
  background-color: #050508;
}

.statement__quote {
  margin: 0 auto;
  max-width: 900px;
  padding: 0 0.5rem;
  border: 0;
  text-align: center;
}

.statement__quote p {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 200;
  line-height: 1.45;
  letter-spacing: 0.02em;
  color: #ebe8e4;
}

@media (max-width: 639px) {
  .statement {
    padding: 80px 1.25rem 0;
  }

  .statement__quote {
    padding: 0;
  }

  .statement__quote p {
    font-size: clamp(1.65rem, 5.5vw, 4rem);
  }
}

.technik {
  padding: 120px 0;
  background-color: #050508;
}

.technik__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  box-sizing: border-box;
}

.technik__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .technik__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

.technik__card {
  margin: 0;
  padding: 2rem 0 0;
  border-top: 1px solid #c8a96e;
}

.technik__label {
  margin: 0 0 0.85rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c8a96e;
}

.technik__text {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.85;
  color: #aaa;
}

@media (max-width: 599px) {
  .technik__card {
    padding-top: 1.25rem;
  }

  .technik__text {
    font-size: 1.05rem;
  }
}

.technik__grid .technik__card:nth-child(1).js-reveal.is-visible {
  transition-delay: 0s;
}

.technik__grid .technik__card:nth-child(2).js-reveal.is-visible {
  transition-delay: 0.1s;
}

.technik__grid .technik__card:nth-child(3).js-reveal.is-visible {
  transition-delay: 0.2s;
}

.technik__grid .technik__card:nth-child(4).js-reveal.is-visible {
  transition-delay: 0.3s;
}

.js-reveal {
  transition:
    opacity 0.85s ease-out,
    transform 0.85s ease-out;
}

.reveal-pending .js-reveal:not(.is-visible) {
  opacity: 0;
  transform: translateX(var(--reveal-from-x, 0))
    translateY(var(--reveal-from-y, 1.75rem));
}

.js-reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

.werk__prose.js-reveal.is-visible {
  transition-delay: 0.12s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-pending .js-reveal:not(.is-visible) {
    opacity: 1;
    transform: none;
  }

  .js-reveal {
    transition: none;
  }

  .werk__prose.js-reveal.is-visible {
    transition-delay: 0s;
  }

  .technik__grid .technik__card.js-reveal.is-visible {
    transition-delay: 0s;
  }
}

/* ——— Section tracker (desktop ≥1024px) ——— */

.section-tracker {
  display: none;
}

@media (min-width: 1024px) {
  .section-tracker {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    position: fixed;
    left: 2rem;
    width: 160px;
    top: 0;
    bottom: 0;
    margin: 0;
    padding: 0;
    z-index: 100;
    pointer-events: none;
    overflow: visible;
    box-sizing: border-box;
  }

  .tracker-rail {
    position: relative;
    flex: 0 0 auto;
    width: 100%;
    height: min(480px, 58vh);
    min-height: 260px;
    margin: 0;
    padding: 0;
  }

  .tracker-spine {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    margin: 0;
    padding: 0;
    pointer-events: none;
    background: linear-gradient(
      to bottom,
      transparent,
      rgba(200, 169, 110, 0.3) 15%,
      rgba(200, 169, 110, 0.3) 85%,
      transparent
    );
  }

  .tracker-node {
    position: absolute;
    left: 0;
    transform: translateY(-50%);
    margin: 0;
    padding: 0;
    pointer-events: none;
  }

  .tracker-node:nth-child(2) {
    top: 12.5%;
  }

  .tracker-node:nth-child(3) {
    top: 37.5%;
  }

  .tracker-node:nth-child(4) {
    top: 62.5%;
  }

  .tracker-node:nth-child(5) {
    top: 87.5%;
  }

  .tracker-node__link {
    position: relative;
    display: block;
    width: 100%;
    min-height: 44px;
    margin: 0;
    padding: 0;
    text-decoration: none;
    color: inherit;
    pointer-events: auto;
    outline: none;
  }

  .tracker-node__link:focus-visible {
    outline: 2px solid rgba(200, 169, 110, 0.45);
    outline-offset: 4px;
    border-radius: 2px;
  }

  .tracker-node__dot {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 5px;
    height: 5px;
    margin: 0;
    border-radius: 50%;
    border: 1px solid rgba(200, 169, 110, 0.3);
    background-color: transparent;
    box-sizing: border-box;
    transition: all 0.5s ease;
  }

  .tracker-tick {
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 1px;
    margin: 0;
    padding: 0;
    opacity: 0;
    background-color: rgba(200, 169, 110, 0.5);
    pointer-events: none;
    transition: opacity 0.4s ease;
  }

  .tracker-node__label {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    padding: 0;
    font-family: "Comfortaa", cursive;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(200, 169, 110, 0.8);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
  }

  .tracker-node.is-active .tracker-node__dot {
    width: 8px;
    height: 8px;
    background-color: #c8a96e;
    border-color: #c8a96e;
    box-shadow: 0 0 12px rgba(200, 169, 110, 0.6);
  }

  .tracker-node.is-active .tracker-tick {
    opacity: 1;
  }

  .tracker-node.is-active .tracker-node__label {
    opacity: 1;
  }

  .tracker-node__link:focus-visible .tracker-node__label {
    opacity: 1;
  }

  .tracker-node__link:focus-visible .tracker-tick {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tracker-node__dot,
  .tracker-tick,
  .tracker-node__label {
    transition: none;
  }
}

/* 2×2 grid: shared.css uses body.interferenzen-page single column + 48% cells — override here after cascade */
body.interferenzen-page .videos__stack {
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

body.interferenzen-page .videos__cell {
  max-width: 100%;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

body.interferenzen-page .videos .videos__clip {
  width: 100%;
  max-width: 100%;
}

@media (max-width: 560px) {
  body.interferenzen-page .videos__stack {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}
