@font-face {
  font-family: "Neue Plak";
  src: url("../assets/fonts/neue-plak-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --white: #fff;
  --black: #030303;
  --page-padding: 100px;
  --pictogram-box: 50px;
  --pictogram-svg: 50px;
  --pictogram-gap: 25px;
  --ease: cubic-bezier(.76, 0, .24, 1);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
html { background: var(--black); }
body {
  margin: 0;
  overflow: hidden;
  color: var(--white);
  font-family: "Neue Plak", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}


.site-loader {
  position: fixed !important;
  inset: 0 !important;
  z-index: 9999 !important;
  width: 100vw;
  height: 100vh;
  display: grid !important;
  place-items: center !important;
  background:
    radial-gradient(circle at 50% 42%, rgba(255,255,255,.08), transparent 28%),
    #000;
  color: #fff;
  opacity: 1;
  visibility: visible;
  transition: opacity .65s ease, visibility 0s linear .65s;
}
.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}
.loader-mark {
  width: min(520px, 72vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}
.loader-brand {
  font-size: clamp(28px, 6vw, 74px);
  line-height: .9;
  letter-spacing: .42em;
  text-indent: .42em;
  text-align: center;
  font-weight: 400;
}
.loader-line {
  position: relative;
  width: min(420px, 100%);
  height: 1px;
  overflow: hidden;
  background: rgba(255,255,255,.22);
}
.loader-line span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  height: 100%;
  background: #fff;
  transition: width .22s ease;
}
.loader-meta {
  width: min(420px, 100%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .72;
}
.site-shell { opacity: 1; transition: opacity .5s ease; }
body.is-loading .site-shell { opacity: 0; pointer-events: none; }

button, a { color: inherit; }
button { font: inherit; }
.site-shell { position: relative; width: 100vw; height: 100vh; overflow: hidden; background: #000; }

.site-header {
  position: fixed;
  z-index: 40;
  top: var(--page-padding);
  left: var(--page-padding);
  right: var(--page-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.brand,
.menu-button {
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 100px;
  line-height: 0;
  text-decoration: none;
}

.brand-logo {
  width: auto;
  height: 100px;
  display: block;
}

.menu-button {
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  padding: 0;
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: .96;
  transition: opacity .3s ease, transform .3s ease;
}

.menu-button:hover {
  opacity: 1;
  transform: scale(1.04);
}

.menu-button img {
  width: 50px;
  height: 50px;
  display: block;
  filter: brightness(0) invert(1);
}

.menu-panel {
  position: fixed;
  z-index: 60;
  top: 0;
  right: 0;
  width: min(420px, 100vw);
  height: 100vh;
  padding: 100px 48px 48px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: rgba(0,0,0,.78);
  backdrop-filter: blur(22px);
  transform: translateX(100%);
  transition: transform .7s var(--ease);
}
.menu-panel.is-open { transform: translateX(0); }
.menu-panel a {
  text-decoration: none;
  font-size: clamp(26px, 3vw, 44px);
  letter-spacing: -.04em;
  line-height: .95;
  opacity: .82;
  transition: opacity .25s ease, transform .25s ease;
}
.menu-panel a:hover { opacity: 1; transform: translateX(6px); }
.menu-close {
  position: absolute;
  top: 30px;
  right: 35px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
}

.sections, .section { position: absolute; inset: 0; }
.section {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.015);
  transition: opacity .9s var(--ease), transform 1.2s var(--ease), visibility 0s linear .9s;
  overflow: hidden;
}
.section.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition: opacity .9s var(--ease), transform 1.2s var(--ease), visibility 0s;
}
.section-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  pointer-events: none;
}
.section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.02) 40%, rgba(0,0,0,.15) 100%);
  pointer-events: none;
}

.copy {
  position: absolute;
  z-index: 5;
  color: #fff;
  text-shadow: 0 3px 24px rgba(0,0,0,.28);
}
.copy-bottom-left { left: var(--page-padding); bottom: var(--page-padding); }
.copy p {
  margin: 0;
  font-size: clamp(21px, 1.45vw, 32px);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 400;
}
.copy-wide p { max-width: 820px; }

.link-row {
  display: flex;
  align-items: center;
  gap: var(--pictogram-gap);
  margin-top: clamp(22px, 2.2vw, 34px);
}
.link-row span {
  font-size: clamp(14px, 1vw, 18px);
  letter-spacing: -.04em;
  margin-right: 0;
  white-space: nowrap;
}
.icon-list {
  display: flex;
  align-items: center;
  gap: var(--pictogram-gap);
}
.link-row a {
  position: relative;
  width: var(--pictogram-box);
  height: var(--pictogram-box);
  display: grid;
  place-items: center;
  border-radius: 50%;
  text-decoration: none;
  transition: opacity .25s ease, transform .25s ease;
  flex: 0 0 var(--pictogram-box);
  overflow: visible;
}
.link-row a:hover { opacity: 1; transform: translateY(-2px); }
.link-row a::after {
  content: attr(data-title);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 12px);
  transform: translateX(-50%) translateY(4px);
  padding: 8px 12px;
  min-width: max-content;
  border-radius: 2px;
  background: rgba(0,0,0,.88);
  color: #fff;
  font-size: 14px;
  line-height: 1;
  letter-spacing: -.02em;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, visibility 0s linear .2s;
  box-shadow: 0 8px 24px rgba(0,0,0,.28);
}
.link-row a:hover::after,
.link-row a:focus-visible::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  transition: opacity .2s ease, transform .2s ease, visibility 0s;
}
.link-row img { width: var(--pictogram-svg); height: var(--pictogram-svg); display: block; filter: brightness(0) invert(1); pointer-events: none; }

.scroll-cue {
  position: absolute;
  z-index: 6;
  right: var(--page-padding);
  bottom: var(--page-padding);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 0;
  background: transparent;
  color: #fff;
  padding: 0;
  cursor: pointer;
  text-shadow: 0 2px 18px rgba(0,0,0,.4);
}
.scroll-cue span {
  font-size: clamp(13px, 1vw, 18px);
  letter-spacing: -.04em;
}
.scroll-cue img {
  width: 50px;
  height: 50px;
  display: block;
  filter: brightness(0) invert(1);
}
.scroll-cue:hover img { animation: pulseDown 1.2s ease-in-out infinite; }
@keyframes pulseDown { 0%,100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

.transition-layer {
  position: fixed;
  z-index: 35;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  background: transparent;
  transition: opacity .24s ease, visibility 0s linear .24s;
  pointer-events: none;
}
.transition-layer.is-playing {
  opacity: 1;
  visibility: visible;
  transition: opacity .12s ease, visibility 0s;
}
.transition-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


body.no-section-animation .section {
  transition: none !important;
}

body.is-locked { cursor: progress; }
body.is-locked .scroll-cue, body.is-locked .menu-button { pointer-events: none; }







.footer-section {
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--page-padding);
}
.footer-section::after {
  background:
    radial-gradient(circle at 50% 45%, rgba(255,255,255,.08), transparent 28%),
    linear-gradient(180deg, rgba(0,0,0,.2), rgba(0,0,0,.92));
}
.footer-content {
  position: relative;
  z-index: 5;
  width: min(980px, 88vw);
  text-align: center;
  color: #fff;
}
.footer-kicker {
  margin-bottom: 24px;
  font-size: 13px;
  line-height: 1;
  letter-spacing: .32em;
  text-transform: uppercase;
  opacity: .64;
}
.footer-content h2 {
  margin: 0;
  font-size: clamp(48px, 9vw, 128px);
  line-height: .82;
  letter-spacing: .32em;
  text-indent: .32em;
  font-weight: 400;
}
.footer-content p {
  margin: 28px 0 0;
  font-size: clamp(20px, 2.2vw, 34px);
  line-height: 1.05;
  letter-spacing: -.045em;
}
.footer-icon-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 42px;
}
.footer-icon-list a {
  position: relative;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  opacity: .82;
  transition: opacity .25s ease, transform .25s ease;
}
.footer-icon-list a:hover {
  opacity: 1;
  transform: translateY(-2px);
}
.footer-icon-list img {
  width: 50px;
  height: 50px;
  display: block;
  filter: brightness(0) invert(1);
  pointer-events: none;
}
.footer-icon-list a[href="#"] {
  cursor: default;
  opacity: .38;
}
.footer-icon-list a[href="#"]:hover {
  transform: none;
}
.footer-icon-list a::after {
  content: attr(data-title);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 12px);
  transform: translateX(-50%) translateY(4px);
  padding: 8px 12px;
  min-width: max-content;
  border-radius: 2px;
  background: rgba(0,0,0,.88);
  color: #fff;
  font-size: 14px;
  line-height: 1;
  letter-spacing: -.02em;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, visibility 0s linear .2s;
  box-shadow: 0 8px 24px rgba(0,0,0,.28);
}
.footer-icon-list a:hover::after,
.footer-icon-list a:focus-visible::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  transition: opacity .2s ease, transform .2s ease, visibility 0s;
}
.newsletter-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 42px;
  min-height: 48px;
  padding: 0 28px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .86;
  transition: opacity .25s ease, background .25s ease, color .25s ease;
}
.newsletter-button:hover {
  opacity: 1;
  background: #fff;
  color: #000;
}
.footer-legal {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
  color: #fff;
  opacity: .64;
}
.footer-legal a,
.footer-legal span {
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.footer-legal a:hover {
  opacity: 1;
}
.footer-note {
  margin-top: 28px;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .4;
}
.link-row a[href="#"] {
  cursor: default;
  opacity: .46;
}
.link-row a[href="#"]:hover {
  transform: none;
}


@media (max-width: 1200px) {
  :root { --page-padding: 64px; }
  .brand { min-height: 100px; }
  .brand-logo { height: 100px; }
  .menu-button, .menu-button img, .scroll-cue img { width: 50px; height: 50px; }
}

@media (max-width: 900px) {
  .footer-content h2 { font-size: clamp(36px, 11vw, 60px); letter-spacing: .2em; text-indent: .2em; }
  .footer-icon-list { gap: 14px; }
  .footer-icon-list a, .footer-icon-list img { width: 50px; height: 50px; }
  .footer-legal { gap: 8px; }
  .footer-legal a, .footer-legal span { font-size: 10px; }
  .newsletter-button { width: min(100%, 320px); }
  .footer-content h2 { font-size: clamp(36px, 11vw, 60px); letter-spacing: .2em; text-indent: .2em; }
  .footer-links { gap: 14px 18px; }
  :root { --page-padding: 22px; }
  .brand { min-height: 100px; }
  .brand-logo { height: 100px; }
  .copy-bottom-left { bottom: 84px; }
  .copy p { font-size: clamp(20px, 6vw, 32px); line-height: 1.02; max-width: 88vw; }
  .link-row { flex-wrap: wrap; max-width: 86vw; gap: 14px; align-items: flex-start; }
  .icon-list { flex-wrap: wrap; gap: 14px; align-items: flex-start; }
  .link-row span { flex-basis: 100%; align-self: flex-start; }
  .link-row a { flex: 0 0 50px; width: 50px; height: 50px; align-self: flex-start; }
  .link-row img { width: 50px; height: 50px; }
  .menu-button, .menu-button img, .scroll-cue img { width: 50px; height: 50px; }
  .scroll-cue { bottom: 24px; right: 22px; }
  .section-bg { object-position: center center; }
  .loader-mark {
  width: min(520px, 72vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}
  .loader-brand { font-size: clamp(24px, 7vw, 40px); letter-spacing: .34em; text-indent: .34em; }
}

@media (max-width: 520px) {
  .brand { min-height: 100px; }
  .brand-logo { height: 100px; }
  .menu-panel { padding: 88px 32px 38px; }
  .copy { bottom: 82px; }
  .section-bg { opacity: .9; }
}
