html,
body {
  margin: 0;
  min-height: 100%;
  background-color: #050508;
  color: #e6e4e1;
  font-family: "Outfit", system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: 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);
}

body {
  position: relative;
}

#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);
  }
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 900;
  opacity: 0.03;
  background-color: #a8a8a8;
  filter: url(#page-grain);
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 960;
  min-height: 72px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: rgba(5, 5, 8, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.65s ease,
    visibility 0.65s ease;
}

.site-nav.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.site-nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.4rem 1.5rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 0.5rem 1rem;
  box-sizing: border-box;
}

.site-nav__brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
  text-decoration: none;
}

.site-nav__brand:focus-visible {
  outline: 2px solid #8a8a8a;
  outline-offset: 3px;
}

.site-nav__brand img {
  height: 52px;
  width: auto;
  display: block;
}

.site-nav__links {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0.5rem 1.75rem;
  min-width: 0;
}

.site-nav__link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #555;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-nav__link:hover {
  color: #c8a96e;
}

.site-nav__link:focus-visible {
  color: #c8a96e;
  outline: 2px solid #8a8a8a;
  outline-offset: 3px;
}

.site-nav__toggle {
  display: none;
  flex-shrink: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: none;
  font: inherit;
  color: #888;
  background: transparent;
  cursor: pointer;
  transition: color 0.2s ease;
}

.site-nav__toggle:hover {
  color: #c8a96e;
}

.site-nav__toggle:focus-visible {
  color: #c8a96e;
  outline: 2px solid #8a8a8a;
  outline-offset: 3px;
}

.site-nav__toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
  background-color: currentColor;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.site-nav.is-menu-open .site-nav__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-nav.is-menu-open .site-nav__toggle-bar:nth-child(2) {
  opacity: 0;
}

.site-nav.is-menu-open .site-nav__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (prefers-reduced-motion: reduce) {
  .site-nav {
    transition: none;
  }

  .site-nav__toggle-bar {
    transition: none;
  }
}

@media (max-width: 639px) {
  .site-nav {
    min-height: 56px;
  }

  .site-nav__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    row-gap: 0;
    column-gap: 0.5rem;
    padding: 0.9rem 0.75rem;
    box-sizing: border-box;
  }

  .site-nav__brand {
    flex: 0 0 auto;
  }

  .site-nav__brand img {
    height: 34px;
    width: auto;
  }

  .site-nav__toggle {
    display: flex;
    flex: 0 0 auto;
    margin-left: auto;
  }

  .site-nav__links {
    flex: 1 0 100%;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.3rem;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    padding: 0;
    margin: 0;
    transition:
      max-height 0.35s ease,
      opacity 0.25s ease,
      visibility 0.25s ease;
  }

  .site-nav.is-menu-open .site-nav__links {
    max-height: 14rem;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    padding-top: 0.75rem;
    margin-top: 0.35rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .site-nav__link {
    font-size: 0.6rem;
    letter-spacing: 0.05em;
    padding: 0.5rem 0;
  }
}

@media (min-width: 640px) {
  .site-nav__inner {
    flex-wrap: nowrap;
  }

  .site-nav__toggle {
    display: none !important;
  }

  .site-nav__links {
    max-height: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    overflow: visible !important;
    pointer-events: auto !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
    border-top: none !important;
  }
}

#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;
  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;
  color: #c8a96e;
  opacity: 0.12;
  mix-blend-mode: screen;
  pointer-events: none;
  animation: hero-slice-glow-y 11s cubic-bezier(0.76, 0, 0.24, 1) infinite;
}

.hero__title-slice--1 {
  position: relative;
  z-index: 2;
  clip-path: polygon(0 0, 100% 0, 100% 14%, 0 14%);
  animation: hero-slice-x-odd 8s cubic-bezier(0.76, 0, 0.24, 1) infinite;
  animation-delay: 0s;
}

.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%);
  animation: hero-slice-x-even 8s cubic-bezier(0.76, 0, 0.24, 1) infinite;
  animation-delay: 0.25s;
}

.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%);
  animation: hero-slice-x-odd 8s cubic-bezier(0.76, 0, 0.24, 1) infinite;
  animation-delay: 0.5s;
}

.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%);
  animation: hero-slice-x-even 8s cubic-bezier(0.76, 0, 0.24, 1) infinite;
  animation-delay: 0.75s;
}

.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%);
  animation: hero-slice-x-odd 8s cubic-bezier(0.76, 0, 0.24, 1) infinite;
  animation-delay: 1s;
}

.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%);
  animation: hero-slice-x-even 8s cubic-bezier(0.76, 0, 0.24, 1) infinite;
  animation-delay: 1.25s;
}

.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%);
  animation: hero-slice-x-odd 8s cubic-bezier(0.76, 0, 0.24, 1) infinite;
  animation-delay: 1.5s;
}

@keyframes hero-slice-x-odd {
  0%,
  100% {
    transform: translateX(0);
  }

  8%,
  35% {
    transform: translateX(3px);
  }

  50% {
    transform: translateX(0);
  }

  58%,
  85% {
    transform: translateX(-3px);
  }
}

@keyframes hero-slice-x-even {
  0%,
  100% {
    transform: translateX(0);
  }

  8%,
  35% {
    transform: translateX(-3px);
  }

  50% {
    transform: translateX(0);
  }

  58%,
  85% {
    transform: translateX(3px);
  }
}

@keyframes hero-slice-glow-y {
  0%,
  100% {
    transform: translateY(0);
  }

  8%,
  35% {
    transform: translateY(-2px);
  }

  50% {
    transform: translateY(0);
  }

  58%,
  85% {
    transform: translateY(2px);
  }
}

.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;
  }

  .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;
    animation: 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: 1;
  column-gap: 1.5rem;
}

@media (min-width: 480px) {
  .galerie__grid {
    column-count: 2;
  }
}

@media (min-width: 900px) {
  .galerie__grid {
    column-count: 3;
  }
}

.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;
}

.galerie__thumb img,
.galerie__thumb video {
  width: 100%;
  height: auto;
  display: block;
  transition: filter 0.3s ease;
}

.galerie__thumb:hover img,
.galerie__thumb:hover video {
  filter: brightness(1.1);
}

@media (prefers-reduced-motion: reduce) {
  .galerie__thumb {
    transition: none;
  }

  .galerie__thumb:hover {
    transform: none;
  }

  .galerie__thumb img,
  .galerie__thumb video {
    transition: none;
  }

  .galerie__thumb:hover img,
  .galerie__thumb:hover video {
    filter: 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: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
  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: 100%;
  height: auto;
  pointer-events: none;
  vertical-align: top;
}

@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;
}

@media (prefers-reduced-motion: reduce) {
  .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;
  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;
  }

  .statement__quote {
    padding: 0;
  }

  .statement__quote p {
    font-size: clamp(1.65rem, 5.5vw, 4rem);
  }
}

.site-footer {
  border-top: 1px solid rgba(200, 169, 110, 0.15);
  padding: 96px 1.5rem;
  background-color: #050508;
}

.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: #555;
  box-sizing: border-box;
}

.site-footer__item--center,
.site-footer__item--right {
  font-size: 0.9rem;
  letter-spacing: 0.14em;
}

.site-footer__item {
  display: block;
  text-align: center;
}

.site-footer__brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  text-decoration: none;
  color: inherit;
}

.site-footer__brand:focus-visible {
  outline: 2px solid #8a8a8a;
  outline-offset: 3px;
}

.site-footer__brand img {
  height: 52px;
  width: auto;
  display: block;
  opacity: 0.85;
  transition: opacity 0.25s ease;
}

.site-footer__brand:hover img,
.site-footer__brand:focus-visible img {
  opacity: 1;
}

@media (max-width: 639px) {
  .site-footer__inner {
    gap: 0.85rem;
  }

  .site-footer__brand {
    display: block;
    justify-content: center;
    width: 100%;
    margin-bottom: 1.5rem;
    text-align: center;
  }

  .site-footer__brand img {
    margin: 0 auto;
  }

  .site-footer__item {
    width: 100%;
    line-height: 1.45;
  }
}

@media (min-width: 640px) {
  .site-footer__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }

  .site-footer__item--left {
    flex: 1;
    text-align: left;
  }

  .site-footer__item--center {
    flex: 1;
    text-align: center;
  }

  .site-footer__item--right {
    flex: 1;
    text-align: right;
  }

  .site-footer__brand {
    margin-bottom: 0;
  }
}

.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;
  }
}
