:root {
  color-scheme: light;
  --ink: #0a0a0a;
  --paper: #f4f2ec;
  --line: rgba(10, 10, 10, 0.28);
  --font: "Neue Haas Grotesk Display Pro", "Neue Haas Grotesk Text Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
}

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

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #0a0a0a;
  color: #fff;
  isolation: isolate;
  cursor: crosshair;
}

.frame-stack,
.hero-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.frame-stack {
  z-index: -1;
  background: #0a0a0a;
}

.hero-frame {
  object-fit: cover;
  opacity: 0;
  transition: opacity 45ms linear;
  transform: scale(1.008);
}

.hero-frame.is-visible {
  opacity: 1;
}


.site-nav {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.nav-logo {
  width: 4rem;
  height: 4rem;
  display: grid;
  place-items: center;
  mix-blend-mode: difference;
}

.nav-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: invert(1);
}

.nav-contact {
  margin-left: auto;
  color: #fff;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}
.wordmark {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  transform: translate(-50%, calc(-52% + 100px));
  font-size: clamp(3.2rem, 8.2vw, 8.75rem);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: -0.065em;
  white-space: nowrap;
  color: #fff;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
}

.interaction-hint {
  position: absolute;
  bottom: 1.4rem;
  left: 1.5rem;
  margin: 0;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
}


.contact {
  min-height: 93svh;
  padding: clamp(2rem, 4vw, 4.5rem) clamp(1.25rem, 3vw, 3.25rem) 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-intro {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(15rem, 1fr);
  align-items: end;
  gap: 2rem;
}

.contact-intro h2 {
  margin: 0;
  max-width: 10ch;
  font-size: clamp(4.1rem, 11.3vw, 11rem);
  font-weight: 500;
  line-height: 0.8;
  letter-spacing: -0.078em;
}

.contact-intro p {
  margin: 0 0 0.7rem;
  font-size: clamp(1.15rem, 2vw, 2rem);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1.5rem;
  align-items: end;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.primary-link {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-bottom: 2px solid currentColor;
  font-size: clamp(1.8rem, 3.5vw, 4.5rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.primary-link svg {
  width: 0.8em;
  height: 0.8em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  transition: transform 180ms ease;
}

.primary-link:hover svg,
.primary-link:focus-visible svg {
  transform: translate(0.12em, -0.12em);
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 0;
}

.contact-detail span {
  color: rgba(10, 10, 10, 0.52);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-detail a {
  width: max-content;
  max-width: 100%;
  overflow-wrap: anywhere;
  border-bottom: 1px solid currentColor;
  font-size: clamp(0.95rem, 1.2vw, 1.25rem);
  line-height: 1.2;
}

footer {
  min-height: 5rem;
  margin: 0 clamp(1.25rem, 3vw, 3.25rem);
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
  font-weight: 500;
}

noscript {
  position: fixed;
  inset: auto 1rem 1rem;
  z-index: 5;
  padding: 0.75rem;
  background: #fff;
  color: #000;
}

@media (max-width: 760px) {
  .site-nav {
    padding: 1rem;
  }

  .nav-logo {
    width: 3.25rem;
    height: 3.25rem;
  }

  .wordmark {
    font-size: clamp(3.2rem, 15vw, 5rem);
  }

  .contact {
    min-height: 100svh;
    gap: 6rem;
  }

  .contact-intro {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .contact-intro h2 {
    font-size: clamp(4rem, 22vw, 7rem);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .primary-link {
    margin-bottom: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-frame,
  .primary-link svg {
    transition: none;
  }

  .interaction-hint {
    display: none;
  }
}






@media (hover: hover) and (pointer: fine) {
  body.has-custom-cursor,
  body.has-custom-cursor a {
    cursor: none;
  }

  .cursor-stage {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 1px;
    height: 1px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 140ms ease;
    will-change: transform;
  }

  .cursor-stage.is-visible {
    opacity: 1;
  }

  .cursor-crosshair,
  .cursor-crosshair::before,
  .cursor-crosshair::after {
    position: absolute;
    display: block;
  }

  .cursor-crosshair {
    top: -13px;
    left: -13px;
    width: 26px;
    height: 26px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 50%;
    mix-blend-mode: difference;
    transition: opacity 360ms ease, transform 460ms cubic-bezier(0.22, 1, 0.36, 1), filter 360ms ease;
  }

  .cursor-crosshair::before,
  .cursor-crosshair::after {
    content: "";
    top: 50%;
    left: 50%;
    background: #fff;
    transform: translate(-50%, -50%);
  }

  .cursor-crosshair::before {
    width: 34px;
    height: 1px;
  }

  .cursor-crosshair::after {
    width: 1px;
    height: 34px;
  }

  .cursor-hand {
    position: absolute;
    top: -2px;
    left: -17px;
    width: 35px;
    height: 46px;
    object-fit: contain;
    opacity: 0;
    transform: scale(0.28) rotate(12deg) translateY(10px);
    transform-origin: 48% 4%;
    filter: drop-shadow(0 4px 5px rgba(0, 0, 0, 0.18));
    transition: opacity 300ms ease 90ms, transform 560ms cubic-bezier(0.2, 0.9, 0.2, 1), filter 420ms ease;
  }

  body.cursor-contact .cursor-crosshair {
    opacity: 0;
    transform: scale(0.2) translateY(14px);
    filter: blur(5px);
  }

  body.cursor-contact .cursor-hand {
    opacity: 1;
    transform: scale(1) rotate(-7deg) translateY(0);
  }
  body.cursor-contact.cursor-tone-black .cursor-hand {
    filter: brightness(0) saturate(100%);
  }

  body.cursor-contact.cursor-tone-white .cursor-hand {
    filter: brightness(0) saturate(100%) invert(1);
  }

  body.cursor-contact.cursor-tone-orange .cursor-hand {
    filter: brightness(0) saturate(100%) invert(32%) sepia(86%) saturate(2350%) hue-rotate(347deg) brightness(91%) contrast(88%);
  }
}




.story {
  position: relative;
  height: 500svh;
  background: #0a0a0a;
  color: #fff;
}

.story-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
}

.story-track {
  display: flex;
  width: max-content;
  height: 100%;
  will-change: transform;
}

.story-panel {
  position: relative;
  flex: 0 0 100vw;
  width: 100vw;
  height: 100%;
  padding: clamp(1.5rem, 3vw, 3.25rem);
  overflow: hidden;
}


.story-panel > * {
  transition: opacity 600ms ease, transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

.story-panel:not(.is-active) > * {
  opacity: 0.56;
  transform: translateY(14px);
}

.story-panel.is-active > * {
  opacity: 1;
}
.story-index,
.story-kicker,
.story-status {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.story-panel h2,
.story-panel p {
  margin: 0;
}

.story-panel--intro,
.story-panel--statement {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.story-panel--intro h2 {
  max-width: 8ch;
  font-size: clamp(5rem, 13vw, 13rem);
  font-weight: 500;
  line-height: 0.78;
  letter-spacing: -0.08em;
}

.story-panel--intro p {
  align-self: flex-end;
  max-width: 25ch;
  font-size: clamp(1.25rem, 2.4vw, 2.6rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.story-panel--statement {
  background: #db3d21;
}

.story-panel--statement h2 {
  max-width: 10ch;
  font-size: clamp(4.5rem, 11vw, 11rem);
  font-weight: 500;
  line-height: 0.82;
  letter-spacing: -0.075em;
}

.story-panel--visual {
  display: grid;
  grid-template-columns: minmax(15rem, 0.7fr) minmax(0, 1.8fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
  background: #161616;
}

.story-panel--light {
  background: #d8d2c5;
  color: #0a0a0a;
}

.story-panel--final {
  background: #173fd0;
}

.story-copy {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 4rem;
}

.story-copy h2 {
  margin-top: auto;
  font-size: clamp(3.8rem, 8vw, 8.5rem);
  font-weight: 500;
  line-height: 0.84;
  letter-spacing: -0.07em;
}

.story-copy p {
  max-width: 23ch;
  margin-top: 1.5rem;
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.story-gallery {
  height: min(72svh, 52vw);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.65rem, 1.2vw, 1.25rem);
}

.story-gallery img {
  width: 100%;
  height: 100%;
  min-width: 0;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.04);
}

.story-gallery img:nth-child(2) {
  transform: translateY(4.5rem);
}

.story-gallery img:nth-child(3) {
  transform: translateY(-2.5rem);
}

.story-status {
  position: absolute;
  z-index: 5;
  right: clamp(1.5rem, 3vw, 3.25rem);
  bottom: 1.4rem;
  left: clamp(1.5rem, 3vw, 3.25rem);
  display: flex;
  justify-content: space-between;
  color: currentColor;
  mix-blend-mode: difference;
}

@media (max-width: 760px) {
  .story-panel--visual {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    gap: 1.5rem;
  }

  .story-panel--intro h2,
  .story-panel--statement h2 {
    font-size: clamp(4.5rem, 22vw, 7rem);
  }

  .story-panel--intro p {
    align-self: flex-start;
  }

  .story-copy {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    padding-bottom: 0;
  }

  .story-copy h2 {
    grid-column: 1 / -1;
    margin-top: 1rem;
    font-size: clamp(3.5rem, 17vw, 5.5rem);
  }

  .story-copy p {
    grid-column: 1 / -1;
    margin-top: 0;
  }

  .story-gallery {
    height: 52svh;
    gap: 0.4rem;
  }

  .story-gallery img:nth-child(2) {
    transform: translateY(2rem);
  }

  .story-gallery img:nth-child(3) {
    transform: translateY(-1rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .story {
    height: auto;
  }

  .story-sticky {
    position: relative;
    height: auto;
  }

  .story-track {
    width: 100%;
    display: block;
    transform: none !important;
  }

  .story-panel {
    min-height: 100svh;
  }

  .story-status {
    display: none;
  }
}
