:root {
  --paper: #e6e6e6;
  --white: #ffffff;
  --ink: #263b40;
  --muted: #899196;
  --accent: #a67c52;
  --line: rgba(38, 59, 64, 0.22);
  --shadow: 0 0 44px rgba(0, 0, 0, 0.32);
  --soft-shadow: 0 22px 60px rgba(38, 59, 64, 0.12);
  --ease: cubic-bezier(0.77, 0, 0.175, 1);
  color: var(--ink);
  background: var(--paper);
  font-family:
    "Open Sans", "Helvetica Neue", Arial, ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.minimal-header {
  position: fixed;
  top: 28px;
  left: 50%;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(1280px, calc(100% - 80px));
  pointer-events: none;
  transform: translateX(-50%);
}

.minimal-header--static {
  position: sticky;
  top: 0;
  left: auto;
  width: min(1280px, calc(100% - 80px));
  margin: 0 auto;
  padding: 24px 0 16px;
  background: linear-gradient(var(--paper) 70%, rgba(230, 230, 230, 0));
  transform: none;
}

.logo-link,
.minimal-nav {
  pointer-events: auto;
}

.logo-link img {
  width: 70px;
  opacity: 0.62;
}

.minimal-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.minimal-nav a {
  position: relative;
  padding: 4px 0;
}

.minimal-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.minimal-nav a:hover::after,
.minimal-nav a:focus-visible::after {
  transform: scaleX(1);
}

.split-story {
  background: var(--paper);
}

.split-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.split-section--intro {
  display: grid;
  place-items: center;
  background: var(--paper);
}

.intro-mark img {
  width: min(290px, 70vw);
  opacity: 0.54;
}

.split-block {
  position: relative;
  min-height: 100vh;
  background: var(--paper);
  transform-origin: center center;
}

.split-half {
  margin: 0;
}

.split-half--image,
.split-half--copy {
  min-height: 100vh;
}

.split-half--image {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 50%;
  background: #dfe0df;
  overflow: hidden;
}

.split-section--reverse .split-half--image {
  right: 0;
  left: auto;
}

.split-half--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-half--copy {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  align-items: center;
  width: 50%;
  padding: clamp(56px, 8vw, 150px);
  background: var(--white);
}

.split-section--reverse .split-half--copy {
  right: auto;
  left: 0;
}

.split-copy {
  width: min(540px, 100%);
  margin: 0 auto;
}

.split-copy .kicker,
.reference-hero .kicker,
.reference-slide .kicker,
.reference-close .kicker {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: clamp(0.86rem, 1vw, 1.05rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.split-copy h1,
.split-copy h2,
.reference-hero h1,
.reference-close h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 3vw, 3.6rem);
  font-weight: 300;
  line-height: 1.13;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.split-copy p {
  margin: clamp(24px, 3.2vw, 54px) 0 0;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.35vw, 1.45rem);
  font-weight: 300;
  line-height: 1.75;
}

.split-copy a {
  color: var(--ink);
  font-weight: 600;
}

.text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 34px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.text-button:hover,
.text-button:focus-visible {
  color: var(--white);
  background: var(--ink);
  transform: translateY(-2px);
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.9rem !important;
  line-height: 1.3 !important;
}

.scroll-nav {
  position: fixed;
  top: 50%;
  right: 4.2vw;
  z-index: 45;
  display: grid;
  gap: 12px;
  transform: translateY(-50%);
}

.scroll-nav__button {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 3px solid var(--ink);
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.scroll-nav__button:hover,
.scroll-nav__button:focus-visible {
  background: var(--white);
  transform: translateY(-2px);
}

.scroll-nav__button.is-disabled {
  opacity: 0.18;
  pointer-events: none;
}

.scroll-nav__button span,
.slider-button span {
  position: relative;
  display: block;
  width: 22px;
  height: 22px;
}

.scroll-nav__button span::before,
.scroll-nav__button span::after,
.slider-button span::before,
.slider-button span::after {
  content: "";
  position: absolute;
  background: var(--ink);
}

.scroll-nav__button span::before {
  top: 2px;
  left: 10px;
  width: 3px;
  height: 20px;
}

.scroll-nav__button span::after {
  top: 2px;
  left: 4px;
  width: 14px;
  height: 14px;
  border-top: 3px solid var(--ink);
  border-left: 3px solid var(--ink);
  background: transparent;
  transform: rotate(45deg);
}

.scroll-nav__button--next span {
  transform: rotate(180deg);
}

.has-split-js .split-block {
  visibility: hidden;
}

.has-split-js .split-section.is-visible .split-block {
  visibility: visible;
}

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  visibility: hidden;
}

.page-transition__layer,
.page-transition__shape {
  position: absolute;
  inset: 0;
  transform: translateY(105%);
}

.page-transition__layer--one {
  background: #f4f4f2;
}

.page-transition__layer--two {
  background: #d8d2ca;
}

.page-transition__layer--three {
  background: #b7aaa0;
}

.page-transition__shape path {
  fill: var(--paper);
}

body.is-transitioning .page-transition,
body.is-revealing .page-transition {
  visibility: visible;
}

body.is-transitioning .page-transition__layer--one {
  animation: layer-in 720ms var(--ease) both;
}

body.is-transitioning .page-transition__layer--two {
  animation: layer-in 720ms var(--ease) 80ms both;
}

body.is-transitioning .page-transition__layer--three {
  animation: layer-in 720ms var(--ease) 160ms both;
}

body.is-transitioning .page-transition__shape {
  animation: wave-in 780ms var(--ease) 60ms both;
}

body.is-revealing .page-transition__layer,
body.is-revealing .page-transition__shape {
  transform: translateY(0);
  animation: reveal-out 780ms var(--ease) both;
}

body.is-revealing .page-transition__layer--two {
  animation-delay: 80ms;
}

body.is-revealing .page-transition__layer--one {
  animation-delay: 160ms;
}

body.is-revealing .reference-shell,
body.is-revealing .minimal-header {
  animation: content-rise 760ms ease 220ms both;
}

@keyframes layer-in {
  from {
    transform: translateY(105%);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes wave-in {
  from {
    transform: translateY(112%);
  }
  to {
    transform: translateY(-4%);
  }
}

@keyframes reveal-out {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-110%);
  }
}

@keyframes content-rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reference-shell {
  width: min(1240px, calc(100% - 80px));
  margin: 0 auto;
}

.reference-hero {
  display: grid;
  align-content: center;
  min-height: 54vh;
  padding: 76px 0 54px;
}

.reference-hero h1 {
  max-width: 860px;
}

.reference-hero p:last-child {
  max-width: 760px;
  margin: 28px 0 0;
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 300;
  line-height: 1.75;
}

.legal-page .minimal-header {
  position: sticky;
  top: 0;
  width: min(1180px, calc(100% - 80px));
  padding: 24px 0 16px;
  background: linear-gradient(var(--paper) 72%, rgba(230, 230, 230, 0));
}

.legal-shell {
  width: min(980px, calc(100% - 80px));
  margin: 0 auto;
  padding: 88px 0 120px;
}

.legal-content {
  color: var(--ink);
}

.legal-content h1 {
  margin-top: 0;
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.legal-content h1,
.legal-content h2,
.legal-content h3 {
  margin: 58px 0 14px;
  color: var(--ink);
  font-weight: 300;
  letter-spacing: 0.03em;
}

.legal-content h1 {
  margin-top: 0;
}

.legal-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1.18;
}

.legal-content h3 {
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-content p,
.legal-content {
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.85;
}

.legal-content p {
  margin: 0 0 18px;
}

.legal-content a {
  color: var(--ink);
  font-weight: 600;
  border-bottom: 1px solid rgba(166, 124, 82, 0.55);
}

.legal-content,
.legal-content * {
  overflow-wrap: anywhere;
}

.reference-slider {
  padding: 34px 0 86px;
  border-top: 1px solid var(--line);
}

.slider-frame {
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.slider-track {
  display: flex;
  transition: transform 620ms var(--ease);
  will-change: transform;
}

.reference-slide {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.72fr);
  flex: 0 0 100%;
  min-width: 0;
}


.reference-slide figure {
    margin: 0;
    min-height: 620px;
    background: #fff;
    display: flex;
    align-content: center;
    flex-direction: column;
    justify-content: center;
}

.reference-slide figure img {
  width: 100%;
  height: auto;
  object-fit: cover;#
  margin-left:5%;
}

.reference-slide__copy {
  display: grid;
  align-content: center;
  padding: clamp(42px, 6vw, 92px);
}

.reference-slide__copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.3rem, 3vw, 4.8rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.reference-slide__copy p:not(.kicker) {
  margin: 30px 0 0;
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.75;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 26px;
}

.slider-button {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 2px solid var(--ink);
  background: var(--white);
  cursor: pointer;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.slider-button:hover,
.slider-button:focus-visible {
  background: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
}

.slider-button span::before {
  top: 10px;
  left: 2px;
  width: 20px;
  height: 2px;
}

.slider-button span::after {
  top: 4px;
  left: 2px;
  width: 14px;
  height: 14px;
  border-top: 2px solid var(--ink);
  border-left: 2px solid var(--ink);
  background: transparent;
  transform: rotate(-45deg);
}

.slider-button--next span {
  transform: rotate(180deg);
}

.slider-status {
  min-width: 72px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
}

.reference-close {
  padding: 80px 0 120px;
  border-top: 1px solid var(--line);
}

.reference-close h2 {
  max-width: 16ch;
}

@media (max-width: 1120px) {
  .minimal-header,
  .minimal-header--static {
    width: min(100% - 42px, 760px);
  }

  .minimal-header {
    position: absolute;
    top: 20px;
  }

  .minimal-nav {
    gap: 14px;
    font-size: 0.7rem;
  }

  .split-section,
  .split-block,
  .split-half--image,
  .split-half--copy {
    min-height: auto;
  }

  .split-section {
    overflow: visible;
  }

  .split-section--intro {
    min-height: 54vh;
  }

  .split-block {
    display: grid;
    grid-template-columns: 1fr;
    padding: 0;
  }

  .split-half--image,
  .split-half--copy,
  .split-section--reverse .split-half--image,
  .split-section--reverse .split-half--copy {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    transform: none !important;
  }

  .split-section--reverse .split-half--image {
    order: 0;
  }

  .split-section--reverse .split-half--copy {
    order: 1;
  }

  .split-half--image {
    height: min(72vh, 620px);
  }

  .split-half--copy {
    padding: 52px 26px 70px;
  }

  .split-copy {
    width: min(680px, 100%);
  }

  .has-split-js .split-block,
  .has-split-js .split-section.is-visible .split-block {
    visibility: visible;
  }

  .scroll-nav {
    display: none;
  }

  .reference-slide {
    grid-template-columns: 1fr;
  }

  .reference-slide figure {
    min-height: 420px;
  }
}

@media (max-width: 720px) {
  .minimal-header,
  .minimal-header--static {
    left: 0;
    top: 0;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 16px 14px 14px;
    background: linear-gradient(rgba(230, 230, 230, 0.96) 72%, rgba(230, 230, 230, 0));
    transform: none;
  }

  .minimal-header--static {
    position: relative;
    padding-bottom: 8px;
  }

  .logo-link img {
    width: 40px;
  }

  .minimal-nav {
    width: auto;
    flex: 1;
    justify-content: flex-end;
    gap: 18px;
    font-size: 0.68rem;
  }

  .home-page .minimal-nav a:nth-child(1),
  .home-page .minimal-nav a:nth-child(2),
  .home-page .minimal-nav a:nth-child(3) {
    display: none;
  }

  .split-section--intro {
    min-height: 46vh;
    padding-top: 82px;
  }

  .intro-mark img {
    width: 210px;
  }

  .split-half--image {
    height: 56vh;
  }

  .split-half--copy {
    padding: 44px 22px 62px;
  }

  .split-copy h1,
  .split-copy h2,
  .reference-hero h1,
  .reference-close h2 {
    font-size: 1.75rem;
    line-height: 1.14;
  }

  .split-copy p {
    margin-top: 26px;
    font-size: 1rem;
    line-height: 1.7;
  }

  .reference-shell {
    width: min(100% - 28px, 520px);
  }

  .reference-hero {
    min-height: auto;
    padding: 46px 0 44px;
  }

  .reference-hero h1 {
    max-width: none;
    font-size: 1.62rem;
  }

  .reference-hero p:last-child {
    max-width: none;
    font-size: 1rem;
  }

  .reference-slide figure {
    min-height: 300px;
  }

  .reference-slide__copy {
    padding: 34px 22px 42px;
  }

  .reference-slide__copy h2 {
    font-size: 2rem;
  }

  .reference-slide__copy p:not(.kicker) {
    font-size: 1rem;
  }

  .page-transition__shape {
    display: none;
  }

  .page-transition__layer--one,
  .page-transition__layer--two {
    display: none;
  }

  .page-transition__layer--three {
    background: var(--paper);
  }

  .legal-page .minimal-header {
    width: 100%;
    padding: 16px 14px 14px;
  }

  .legal-shell {
    width: min(100% - 28px, 520px);
    padding: 52px 0 84px;
  }

  .legal-content p,
  .legal-content {
    font-size: 0.98rem;
    line-height: 1.78;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .page-transition {
    display: none;
  }
}
#referenzslider > div.slider-frame > div > article:nth-child(5) > div {padding: clamp(42px, 6vw, 40px);}
