@font-face {
  font-family: "Neue Haas Grotesk";
  src: url("/assets/NHaasGroteskTXStd-75Bd.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --paper: #dee1e3;
  --ink: #141414;
  --light: #f3f3f3;
  --edge: 15px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Neue Haas Grotesk", Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}
a { color: inherit; text-decoration: none; }
a:focus-visible { outline: 2px solid currentColor; outline-offset: 3px; }

.site-shell { position: relative; width: 100%; min-height: 10852px; }
.intro-stage { position: relative; z-index: 1; height: 9810px; }
.intro {
  position: sticky;
  top: min(0px, calc(100svh - 988px));
  left: 0;
  width: 100%;
  height: 988px;
  z-index: 1;
  transition: color 650ms var(--ease);
}

body.is-work-active .intro { color: var(--light); }

.wordmark,
.footer-wordmark {
  display: block;
  margin: 0;
  color: var(--light);
  font-size: 19.062vw;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.05em;
  white-space: nowrap;
}
.wordmark {
  position: absolute;
  top: -46px;
  left: var(--edge);
  width: calc(100% - (2 * var(--edge)));
  animation: intro-logo-in 200ms var(--ease) both;
}
.statement {
  position: absolute;
  top: 449px;
  left: var(--edge);
  width: min(83.2vw, 1198px);
  margin: 0;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.02em;
}

.statement,
.contact,
.details {
  animation: intro-copy-in 200ms var(--ease) 120ms both;
}

@keyframes intro-logo-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes intro-copy-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.info-row,
.detail-column { display: grid; transition: color 500ms var(--ease); }
.info-row:hover,
.info-row:focus-within,
.detail-column:hover,
.detail-column:focus-within { color: #717171; }
.info-row h2,
.info-row p,
.detail-column h2,
.detail-column ul { margin: 0; padding: 0; font: inherit; }
.detail-column ul { list-style: none; }
.contact { position: absolute; top: 667px; left: var(--edge); grid-template-columns: 115px 263px; }
.details {
  position: absolute;
  top: 783px;
  left: var(--edge);
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  width: calc(100% - (2 * var(--edge)));
}
.detail-column { grid-template-columns: 115px 1fr; }
.detail-column--clients { grid-column: 1 / span 3; }
.detail-column--studios { grid-column: 4 / span 3; }
.detail-column--services { grid-column: 7 / span 3; }

.work-stream {
  position: absolute;
  inset: 0 0 auto;
  z-index: 3;
  height: 9810px;
}
.project {
  position: absolute;
  top: var(--project-top);
  left: 50%;
  width: min(var(--project-fluid), var(--project-width));
  height: auto;
  aspect-ratio: var(--project-width) / var(--project-height);
  margin: 0;
  transform: translateX(-50%);
  overflow: hidden;
}
.project img { display: block; width: 100%; height: 100%; object-fit: fill; }
.project video { display: block; width: 100%; height: 100%; object-fit: cover; }
.project video { background: transparent; }
.project--motion-framed { background: #060c1d; }
.project--motion-framed video {
  position: absolute;
  top: 8.46%;
  left: 14.08%;
  width: 74.37%;
  height: 83.08%;
}

.site-footer {
  position: absolute;
  top: 9981px;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 379px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 100%, 0);
  transition: opacity 240ms linear, transform 650ms var(--ease);
}
.is-ending .site-footer {
  position: fixed;
  inset: auto 0 0;
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}
.footer-contact { position: absolute; top: 0; left: var(--edge); z-index: 2; grid-template-columns: 115px 263px; }
.footer-wordmark { position: absolute; top: 36px; left: var(--edge); width: calc(100% - (2 * var(--edge))); }

@media (max-width: 900px) {
  :root {
    --edge: 10px;
    --mobile-copy-gridline: max(72px, calc(21% - 2.5px));
  }
  body { font-size: 14px; }
  .site-shell { min-height: 0; }
  .intro-stage { height: auto; }
  .intro {
    position: relative;
    top: auto;
    height: auto;
    min-height: 100svh;
    padding: clamp(220px, 30svh, 310px) var(--edge) 64px;
  }
  .wordmark,
  .footer-wordmark { font-size: 19vw; }
  .wordmark { top: -10px; }
  .statement {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    font-size: clamp(24px, 7.2vw, 34px);
    line-height: 1;
  }
  .contact {
    position: relative;
    top: auto;
    left: auto;
    margin-top: 32px;
    grid-template-columns: var(--mobile-copy-gridline) 1fr;
  }
  .contact,
  .details { font-size: 14px; }
  .details {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    margin-top: 72px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 12px;
  }
  .detail-column { grid-template-columns: minmax(72px, 42%) 1fr; }
  .detail-column--clients,
  .detail-column--studios,
  .detail-column--services { grid-column: auto; }
  .detail-column--services { grid-column: 1 / -1; width: 50%; }
  .work-stream {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    gap: 72px;
    padding: 9vh var(--edge) 0;
  }
  .project {
    position: relative;
    top: auto;
    left: auto;
    width: min(100%, var(--project-width));
    height: auto;
    aspect-ratio: var(--project-width) / var(--project-height);
    transform: none;
  }
  .project--compact { width: min(72vw, var(--project-width)); }
  .site-footer,
  .is-ending .site-footer {
    position: relative;
    inset: auto;
    height: 260px;
    margin-top: 118px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  .footer-contact {
    top: 0;
    right: var(--edge);
    grid-template-columns: var(--mobile-copy-gridline) 1fr;
  }
  .footer-contact p { white-space: nowrap; }
  .footer-wordmark { top: 94px; }
}

@media (max-width: 350px) {
  .footer-contact { font-size: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .wordmark,
  .statement,
  .contact,
  .details { animation: none; }
  .info-row,
  .detail-column,
  .intro,
  .site-footer { transition: none; }
}
