@font-face {
  font-family: "Big Shoulders Display";
  src: url("assets/fonts/big-shoulders-display.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

:root {
  --ink: #181512;
  --paper: #eee8df;
  --signal: #e75625;
  --line: rgba(24, 21, 18, 0.28);
  --page-pad: clamp(1.1rem, 2.2vw, 2.5rem);
  --header-h: clamp(4.6rem, 8vw, 6.25rem);
  color-scheme: light;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  background: var(--paper);
  overscroll-behavior-y: none;
}

html.is-loop-scrollbar-locked {
  scrollbar-color: transparent transparent;
}

html.is-loop-scrollbar-locked::-webkit-scrollbar-thumb,
html.is-loop-scrollbar-locked::-webkit-scrollbar-track {
  background: transparent;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", Arial, sans-serif;
  overflow-x: clip;
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 1rem;
  left: 1rem;
  padding: 0.65rem 0.85rem;
  color: var(--paper);
  background: var(--ink);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 30;
  inset: 0 0 auto;
  height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 0 var(--page-pad);
  color: var(--ink);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.site-header a {
  pointer-events: auto;
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  min-width: 2.75rem;
  min-height: 2.75rem;
  text-decoration: none;
}

.brand__mark {
  display: grid;
  width: 2.3rem;
  height: 2.3rem;
  place-items: center;
  border: 1px solid currentColor;
  font-family: "Big Shoulders Display", sans-serif;
  font-size: 1.2rem;
  font-weight: 850;
  line-height: 1;
}

.brand__name {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.085em;
  text-transform: uppercase;
}

.site-nav {
  font-size: clamp(0.62rem, 0.72vw, 0.75rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  justify-self: end;
  display: flex;
  gap: clamp(1rem, 2.1vw, 2.5rem);
}

.site-nav a,
.contact-social a {
  position: relative;
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  text-decoration: none;
}

.site-nav a::after,
.contact-social a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0.3125rem;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 280ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.contact-social a:hover::after,
.contact-social a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.film-scroll {
  position: relative;
  height: 900vh;
}

.film-stage {
  --loop-pull: 0;
  --loop-scale-x: 1;
  --loop-scale-y: 1;
  position: sticky;
  z-index: 1;
  top: 0;
  height: 100svh;
  min-height: 34rem;
  overflow: hidden;
  background: var(--paper);
  isolation: isolate;
  transform: scaleX(var(--loop-scale-x)) scaleY(var(--loop-scale-y));
  transform-origin: center top;
  transition: transform 560ms cubic-bezier(0.16, 1.04, 0.3, 1);
  will-change: transform;
}

body.is-loop-pulling .film-stage {
  transition: none;
}

body.is-loop-forward .film-stage {
  transform-origin: center top;
}

body.is-loop-backward .film-stage {
  transform-origin: center bottom;
}

.film-stage::after {
  content: "";
  position: absolute;
  z-index: 28;
  right: var(--page-pad);
  left: var(--page-pad);
  height: 1px;
  background: var(--ink);
  opacity: var(--loop-pull);
  pointer-events: none;
  transform: scaleX(var(--loop-scale-x));
  transition: opacity 420ms ease, transform 560ms cubic-bezier(0.16, 1.04, 0.3, 1);
}

body.is-loop-pulling .film-stage::after {
  transition: none;
}

body.is-loop-forward .film-stage::after {
  bottom: 0;
}

body.is-loop-backward .film-stage::after {
  top: 0;
}

body.has-tear-canvas .film-stage::after {
  opacity: 0;
}

.film-poster,
.film,
.film-poster img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.film-poster {
  z-index: -4;
  display: block;
  opacity: 1;
  transition: opacity 520ms ease;
}

.film-poster img {
  display: block;
}

.film {
  z-index: -3;
  opacity: 0;
  transition: opacity 500ms ease;
}

body.is-film-ready .film {
  opacity: 1;
}

body.is-film-ready.is-media-settled .film-poster {
  opacity: 0;
}

.film-loader {
  --media-progress: 0;
  position: absolute;
  z-index: 26;
  right: 0;
  bottom: 0;
  left: 0;
  color: var(--signal);
  transition: opacity 420ms ease, visibility 0s linear 420ms, transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
  transform: translate3d(0, 0, 0);
}

body.is-media-settled .film-loader {
  visibility: hidden;
  opacity: 0;
  transform: translate3d(0, 0.25rem, 0);
  pointer-events: none;
}

.film-loader__copy {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.film-loader__copy [data-media-progress] {
  max-width: 9.5rem;
  color: rgba(24, 21, 18, 0.62);
  text-align: right;
}

.film-loader__rail {
  position: relative;
  display: block;
  height: 0.25rem;
  overflow: hidden;
  background: rgba(24, 21, 18, 0.12);
}

.film-loader__rail::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -36%;
  width: 36%;
  background: linear-gradient(90deg, transparent, var(--signal), transparent);
  animation: film-read-head 1.5s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

.film-loader__rail i {
  position: absolute;
  inset: 0;
  display: block;
  background: var(--signal);
  transform: scaleX(var(--media-progress));
  transform-origin: left;
  opacity: 0;
  transition: transform 180ms linear, opacity 180ms ease;
}

.film-loader.has-measured-progress .film-loader__rail::after {
  opacity: 0;
  animation: none;
}

.film-loader.has-measured-progress .film-loader__rail i {
  opacity: 1;
}

.film-loader__start {
  display: none;
  width: auto;
  min-height: 2.75rem;
  margin: 0 1rem 0.75rem auto;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

body.is-media-deferred .film-loader__start {
  display: block;
}

.film-loader__start:hover,
.film-loader__start:focus-visible {
  color: var(--paper);
  background: var(--ink);
}

body:not(.is-media-ready):not(.is-media-error) .scroll-prompt {
  opacity: 0 !important;
}

@keyframes film-read-head {
  0% { transform: translateX(0); }
  100% { transform: translateX(378%); }
}

.atmosphere-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: normal;
  contain: strict;
  transition: opacity 900ms ease;
  will-change: opacity;
}

.atmosphere-canvas--far {
  z-index: 2;
}

.atmosphere-canvas--near {
  z-index: 16;
}

body.has-atmosphere .atmosphere-canvas--far {
  opacity: 0.96;
}

body.has-atmosphere .atmosphere-canvas--near {
  opacity: 1;
}

.tear-canvas {
  position: absolute;
  z-index: 8;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  pointer-events: none;
  contain: strict;
}

.tear-canvas[hidden] {
  display: none;
}

.cue-stack,
.chapter-nav,
.scroll-prompt,
.progress-track {
  transition: opacity 260ms ease;
}

body.is-loop-snapping .cue-stack,
body.is-loop-snapping .chapter-nav,
body.is-loop-snapping .scroll-prompt,
body.is-loop-snapping .progress-track {
  opacity: 0 !important;
  transition-duration: 90ms;
}

.film-frame {
  position: absolute;
  z-index: 20;
  inset: calc(var(--header-h) - 0.7rem) var(--page-pad) calc(var(--page-pad) + 0.2rem);
  border: 1px solid var(--line);
  pointer-events: none;
  mix-blend-mode: multiply;
}

.film-frame i {
  position: absolute;
  width: 0.75rem;
  height: 0.75rem;
  border-color: var(--ink);
  border-style: solid;
}

.film-frame i:nth-child(1) {
  top: -1px;
  left: -1px;
  border-width: 2px 0 0 2px;
}

.film-frame i:nth-child(2) {
  top: -1px;
  right: -1px;
  border-width: 2px 2px 0 0;
}

.film-frame i:nth-child(3) {
  right: -1px;
  bottom: -1px;
  border-width: 0 2px 2px 0;
}

.film-frame i:nth-child(4) {
  bottom: -1px;
  left: -1px;
  border-width: 0 0 2px 2px;
}

.progress-track {
  position: absolute;
  z-index: 25;
  right: 0;
  bottom: 0;
  left: 0;
  height: 0.25rem;
  background: rgba(24, 21, 18, 0.12);
}

.progress-track__fill {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--signal);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

.scroll-prompt {
  position: absolute;
  z-index: 22;
  bottom: calc(var(--page-pad) + 2rem);
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  margin: 0;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: translateX(-50%);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.scroll-prompt i {
  width: 1px;
  height: 2.25rem;
  overflow: hidden;
  background: var(--line);
}

.scroll-prompt i::after {
  content: "";
  display: block;
  width: 100%;
  height: 55%;
  background: var(--ink);
  animation: scroll-pulse 1.6s cubic-bezier(0.7, 0, 0.2, 1) infinite;
}

@keyframes scroll-pulse {
  0% { transform: translateY(-110%); }
  55%, 100% { transform: translateY(210%); }
}

.cue-stack,
.cue {
  position: absolute;
  inset: 0;
}

.cue-stack {
  z-index: 10;
}

.cue {
  --cue-opacity: 0;
  --cue-enter: 0;
  --cue-exit: 0;
  padding: calc(var(--header-h) + 3.2rem) calc(var(--page-pad) + 2.5rem) calc(var(--page-pad) + 3rem);
  opacity: var(--cue-opacity);
  pointer-events: none;
}

.cue a,
.cue button {
  pointer-events: auto;
}

.reveal {
  --reveal: 0;
  --parallax-y: 0px;
  --fog-y: 0px;
  --shadow-x: 0px;
  --shadow-y: 2px;
  --shadow-blur: 9px;
  --shadow-alpha: 0.08;
  --highlight-x: 0px;
  --highlight-y: -1px;
  --highlight-blur: 6px;
  --highlight-alpha: 0.1;
  opacity: var(--reveal);
  text-shadow:
    var(--shadow-x) var(--shadow-y) var(--shadow-blur) rgb(39 26 20 / var(--shadow-alpha)),
    var(--highlight-x) var(--highlight-y) var(--highlight-blur) rgb(255 248 239 / var(--highlight-alpha));
  transform: translate3d(0, var(--parallax-y), 0);
  will-change: opacity, transform, background-position;
}

/* Every act now travels vertically with the film. Different layers receive
   different distances in script so reversing the scroll reverses the depth. */
.cue--hero .hero-name__first {
  transform: translate3d(0, var(--parallax-y), 0);
}

.cue--hero .hero-name__last {
  transform: translate3d(0, var(--parallax-y), 0);
}

.cue--about .display > * {
  clip-path: inset(calc((1 - var(--reveal)) * 24%) 0 calc((1 - var(--reveal)) * 24%) 0);
}

.cue--about .about-story p {
  transform: translate3d(0, var(--parallax-y), 0);
}

.cue--method .method-stack > * {
  transform: translate3d(0, var(--parallax-y), 0) scale(calc(0.88 + var(--reveal) * 0.12));
}

.cue--method .method-stack h2 {
  transform-origin: left bottom;
}

.cue--work .work-title__line {
  clip-path: inset(calc((1 - var(--reveal)) * 34%) 0 calc((1 - var(--reveal)) * 34%) 0);
  transform: translate3d(0, var(--parallax-y), 0);
}

.cue--work .inhouse-list li,
.cue--work .client-work > p,
.cue--work .client-work li {
  transform: translate3d(0, var(--parallax-y), 0);
}

.cue--proof .stat {
  transform: translate3d(0, var(--parallax-y), 0) scale(calc(0.9 + var(--reveal) * 0.1));
  transform-origin: center;
}

.cue--proof .career-note {
  clip-path: inset(calc((1 - var(--reveal)) * 35%) 0 calc((1 - var(--reveal)) * 35%) 0);
  transform: translate3d(0, var(--parallax-y), 0);
}

.cue--thinking .display {
  clip-path: inset(0 0 calc((1 - var(--reveal)) * 100%) 0);
  transform: translate3d(0, var(--parallax-y), 0);
}

.cue--thinking .story-list li {
  transform: translate3d(0, var(--parallax-y), 0);
}

.cue--contact .contact-line--question {
  clip-path: inset(calc((1 - var(--reveal)) * 30%) 0 calc((1 - var(--reveal)) * 30%) 0);
  transform: translate3d(0, var(--parallax-y), 0);
}

.cue--contact .contact-line--answer {
  clip-path: inset(calc((1 - var(--reveal)) * 30%) 0 calc((1 - var(--reveal)) * 30%) 0);
  transform: translate3d(0, var(--parallax-y), 0);
}

.cue--contact .contact-link,
.cue--contact .contact-social {
  transform: translate3d(0, var(--parallax-y), 0);
}

.kicker,
.cue-index,
.side-note,
.method-copy,
.hero-note,
.copyright {
  margin: 0;
  font-size: clamp(0.62rem, 0.7vw, 0.76rem);
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.55;
  text-transform: uppercase;
}

.cue-index {
  position: absolute;
  top: calc(var(--header-h) + 1rem);
  left: calc(var(--page-pad) + 2.5rem);
}

.display,
.hero-name,
.edge-word,
.contact-line {
  margin: 0;
  font-family: "Big Shoulders Display", Impact, sans-serif;
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.82;
  text-transform: uppercase;
}

.display em {
  color: var(--signal);
  font-style: normal;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .hero-name__first,
  .hero-name__last,
  .display,
  .edge-word,
  .contact-line,
  .stat strong {
    color: transparent;
    background-image:
      radial-gradient(ellipse at center, rgb(151 132 118 / 0.78) 0%, rgb(75 61 53 / 0.36) 34%, transparent 69%),
      radial-gradient(ellipse at center, rgb(238 224 211 / 0.42) 0%, transparent 62%),
      linear-gradient(180deg, #171311 0%, #30251f 47%, #0f0d0c 100%);
    background-repeat: no-repeat;
    background-position:
      18% calc(28% + var(--fog-y)),
      84% calc(78% - var(--fog-y)),
      center;
    background-size: 72% 180%, 54% 145%, 100% 100%;
    -webkit-background-clip: text;
    background-clip: text;
  }

  .display em {
    color: transparent;
    background-image:
      radial-gradient(ellipse at center, rgb(255 198 162 / 0.72) 0%, transparent 64%),
      linear-gradient(180deg, #ef6d35 0%, var(--signal) 100%);
    background-position: 40% calc(42% + var(--fog-y)), center;
    background-size: 80% 170%, 100% 100%;
    -webkit-background-clip: text;
    background-clip: text;
  }

  /* The Work headline uses two independently moving reveal layers. Paint the
     texture on each line so their parallax transforms do not share one mask. */
  .cue--work .work-title {
    color: var(--ink);
    background-image: none;
    -webkit-background-clip: border-box;
    background-clip: border-box;
  }

  .cue--work .work-title__line--build {
    color: transparent;
    background-image:
      radial-gradient(ellipse at center, rgb(255 198 162 / 0.72) 0%, transparent 64%),
      linear-gradient(180deg, #ef6d35 0%, var(--signal) 100%);
    background-position: 40% calc(42% + var(--fog-y)), center;
    background-size: 80% 170%, 100% 100%;
    -webkit-background-clip: text;
    background-clip: text;
  }

  .cue--work .work-title__line--in-house {
    color: transparent;
    background-image:
      radial-gradient(ellipse at center, rgb(151 132 118 / 0.78) 0%, rgb(75 61 53 / 0.36) 34%, transparent 69%),
      radial-gradient(ellipse at center, rgb(238 224 211 / 0.42) 0%, transparent 62%),
      linear-gradient(180deg, #171311 0%, #30251f 47%, #0f0d0c 100%);
    background-repeat: no-repeat;
    background-position:
      18% calc(28% + var(--fog-y)),
      84% calc(78% - var(--fog-y)),
      center;
    background-size: 72% 180%, 54% 145%, 100% 100%;
    -webkit-background-clip: text;
    background-clip: text;
  }

  /* The About headline animates each line independently, so its texture must
     travel with each child rather than remain painted on the parent heading. */
  .about-copy .display {
    color: var(--ink);
    background-image: none;
    -webkit-background-clip: border-box;
    background-clip: border-box;
  }

  .about-copy .display span {
    color: transparent;
    background-image:
      radial-gradient(ellipse at center, rgb(151 132 118 / 0.78) 0%, rgb(75 61 53 / 0.36) 34%, transparent 69%),
      radial-gradient(ellipse at center, rgb(238 224 211 / 0.42) 0%, transparent 62%),
      linear-gradient(180deg, #171311 0%, #30251f 47%, #0f0d0c 100%);
    background-repeat: no-repeat;
    background-position:
      18% calc(28% + var(--fog-y)),
      84% calc(78% - var(--fog-y)),
      center;
    background-size: 72% 180%, 54% 145%, 100% 100%;
    -webkit-background-clip: text;
    background-clip: text;
  }
}

.body-copy {
  max-width: 31rem;
  margin: 2rem 0 0;
  font-size: clamp(0.95rem, 1.18vw, 1.25rem);
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: -0.025em;
}

.hero-intro {
  position: absolute;
  z-index: 2;
  left: calc(var(--page-pad) + 2.5rem);
  bottom: 33.85%;
  display: grid;
  gap: 0.45rem;
}

.cue--hero .kicker {
  position: static;
  font-size: clamp(0.84rem, 1vw, 1.08rem);
  font-weight: 900;
  letter-spacing: 0.12em;
}

.hero-name__first,
.hero-name__last {
  position: absolute;
  left: calc(var(--page-pad) + 2.5rem);
  font-size: clamp(4.8rem, 8.15vw, 9.6rem);
}

.hero-name__first {
  bottom: 21.5%;
}

.hero-name__last {
  bottom: 10.15%;
  text-align: left;
}

.hero-note {
  position: static;
  font-size: clamp(0.56rem, 0.61vw, 0.68rem);
  letter-spacing: 0.16em;
  text-align: left;
}

.about-copy {
  position: absolute;
  top: 17%;
  left: calc(var(--page-pad) + 2.5rem);
  width: min(31vw, 36rem);
}

.display--medium {
  font-size: clamp(3.2rem, 4.7vw, 5.5rem);
}

.about-copy .display {
  display: grid;
  gap: 0.16em;
}

.about-copy .display span,
.about-copy .display em {
  display: block;
}

.about-story {
  position: absolute;
  right: calc(var(--page-pad) + 10rem);
  bottom: 10.5%;
  width: min(35vw, 34rem);
  font-size: clamp(0.9rem, 1.02vw, 1.1rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.7;
}

.about-story p {
  margin: 0;
}

.about-story p + p {
  margin-top: 1.2rem;
}

.edge-word {
  position: absolute;
  font-size: clamp(5rem, 11vw, 12.5rem);
}

.method-copy {
  position: absolute;
  right: calc(var(--page-pad) + 2.5rem);
  bottom: 10.5%;
  width: min(35vw, 34rem);
  color: var(--ink);
  font-size: clamp(0.9rem, 1.02vw, 1.1rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.7;
  text-align: left;
  text-transform: none;
}

.method-copy span {
  display: block;
  margin-bottom: 0.95rem;
  color: var(--signal);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.45;
  text-transform: uppercase;
}

.method-stack {
  position: absolute;
  top: 14%;
  left: calc(var(--page-pad) + 2.5rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(0.3rem, 0.5vw, 0.5rem);
}

.method-stack > * {
  margin: 0;
  font-family: "Big Shoulders Display", Impact, sans-serif;
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.78;
  text-transform: uppercase;
}

.method-stack h2 {
  font-size: clamp(5.4rem, 9.4vw, 10.8rem);
}

.method-stack p:nth-of-type(1) {
  font-size: clamp(4.5rem, 7.8vw, 8.9rem);
}

.method-stack p:nth-of-type(2) {
  font-size: clamp(3.75rem, 6.45vw, 7.35rem);
}

.method-stack p:nth-of-type(3) {
  font-size: clamp(3.1rem, 5.35vw, 6.1rem);
}

.method-stack p:nth-of-type(4) {
  font-size: clamp(2.55rem, 4.45vw, 5.05rem);
}

.method-stack p:nth-of-type(5) {
  font-size: clamp(2.1rem, 3.7vw, 4.2rem);
}

.discipline-orbit {
  display: none;
}

.discipline-orbit li {
  display: none;
}

.edge-word--top {
  top: 14%;
  left: calc(var(--page-pad) + 2.5rem);
}

.edge-word--bottom {
  top: 63.5%;
  right: calc(var(--page-pad) + 2.5rem);
}

.cue--work .display {
  position: absolute;
  top: 20%;
  left: calc(var(--page-pad) + 2.5rem);
}

.cue--work .display--large {
  font-size: clamp(4.6rem, 7.8vw, 9rem);
}

.work-title__line {
  display: block;
  width: max-content;
}

.work-title__line--build {
  color: var(--signal);
}

.work-title__line--in-house {
  color: var(--ink);
}

.display--large {
  font-size: clamp(5.5rem, 10vw, 11.5rem);
}

.inhouse-list {
  position: absolute;
  top: 48%;
  left: calc(var(--page-pad) + 2.5rem);
  width: min(33rem, 38vw);
  margin: 0;
  padding: 0;
  list-style: none;
}

.inhouse-list a,
.inhouse-list button {
  display: block;
  width: 100%;
  min-height: 2.75rem;
  padding: 0.65rem 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 180ms ease, transform 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

.inhouse-list a:hover,
.inhouse-list a:focus-visible,
.inhouse-list button:hover,
.inhouse-list button:focus-visible {
  opacity: 0.68;
  transform: translateX(0.3rem);
}

.inhouse-list a:focus-visible,
.inhouse-list button:focus-visible,
.work-more a:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 3px;
}

.inhouse-list span,
.inhouse-list small,
.story-list span,
.career-note span {
  font-size: clamp(0.55rem, 0.62vw, 0.68rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.inhouse-list span {
  color: var(--signal);
}

.inhouse-list strong {
  display: block;
  font-family: "Big Shoulders Display", sans-serif;
  font-size: clamp(1.25rem, 1.65vw, 1.9rem);
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
}

.inhouse-list small {
  display: block;
  margin-top: 0.2rem;
  color: rgb(24 21 18 / 62%);
  text-align: left;
}

.side-projects {
  position: absolute;
  top: 61.5%;
  left: calc(var(--page-pad) + 2.5rem);
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.35rem;
  width: min(33rem, 38vw);
}

.side-projects a {
  color: rgb(24 21 18 / 62%);
  font-size: clamp(0.62rem, 0.75vw, 0.8rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, transform 180ms ease;
}

.side-projects a:hover,
.side-projects a:focus-visible {
  color: var(--signal);
  transform: translateY(-0.12rem);
}

.side-projects a:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 3px;
}

.client-work {
  position: absolute;
  right: calc(var(--page-pad) + 2.5rem);
  bottom: 11%;
  width: min(33rem, 38vw);
}

.client-work > p {
  margin: 0 0 1rem;
  color: var(--ink);
  font-family: "Big Shoulders Display", sans-serif;
  font-size: clamp(2.4rem, 3.5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.82;
  text-transform: uppercase;
}

.client-work > p span {
  display: block;
  color: var(--signal);
  font: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-transform: inherit;
}

.client-work > p strong {
  display: block;
  font: inherit;
}

.client-work ul {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.client-work li {
  margin: 0;
}

.client-work a {
  display: block;
  padding: 0.35rem 0.5rem 0.35rem 0;
  color: inherit;
  text-decoration: none;
  transition: opacity 180ms ease, transform 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

.client-work a:hover,
.client-work a:focus-visible {
  opacity: 0.68;
  transform: translateX(0.3rem);
}

.client-work a:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 3px;
}

.client-work strong {
  display: block;
  font-family: "Big Shoulders Display", sans-serif;
  font-size: clamp(1.25rem, 1.65vw, 1.9rem);
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
}

.client-work span {
  display: block;
  margin-top: 0.2rem;
  text-align: left;
  align-self: end;
  color: rgb(24 21 18 / 62%);
  font-size: clamp(0.55rem, 0.62vw, 0.68rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.work-more {
  position: absolute;
  right: calc(var(--page-pad) + 2.5rem);
  bottom: 6.25%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  width: min(33rem, 38vw);
}

.work-more a {
  position: relative;
  padding: 0.4rem 0.85rem;
  font-size: clamp(0.58rem, 0.68vw, 0.72rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 180ms ease, transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.work-more a + a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 0.75rem;
  background: var(--line);
  transform: translateY(-50%);
}

.work-more a:hover,
.work-more a:focus-visible {
  color: var(--signal);
  transform: translateY(-0.12rem);
}

.product-modal {
  width: min(70rem, calc(100vw - 4rem));
  max-width: none;
  max-height: min(56rem, calc(100vh - 4rem));
  margin: auto;
  padding: 0;
  border: 1px solid rgba(24, 21, 18, 0.38);
  color: var(--ink);
  background: rgba(238, 232, 223, 0.98);
  box-shadow: 0 2.5rem 8rem rgba(24, 21, 18, 0.22);
  overflow-x: hidden;
  overflow-y: auto;
}

.product-modal::backdrop {
  background: rgba(24, 21, 18, 0.54);
  backdrop-filter: blur(12px) saturate(0.72);
}

.product-modal[open] {
  animation: product-modal-in 420ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes product-modal-in {
  from {
    opacity: 0;
    transform: translateY(1.25rem) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.product-modal__shell {
  position: relative;
  min-height: min(43rem, calc(100vh - 4rem));
}

.product-modal__close {
  position: absolute;
  z-index: 3;
  top: 1.15rem;
  right: 1.15rem;
  min-width: 4.6rem;
  min-height: 2.6rem;
  padding: 0.6rem 0.8rem;
  border: 1px solid currentColor;
  color: var(--ink);
  background: rgba(238, 232, 223, 0.86);
  font: 800 0.58rem/1 "Manrope", sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: color 180ms ease, background 180ms ease;
}

.product-modal__close.contact-modal__close,
.product-modal__close--icon {
  display: grid;
  width: 3rem;
  height: 3rem;
  min-width: 3rem;
  min-height: 3rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--ink);
  background: transparent;
  place-items: center;
  font-size: 0;
  letter-spacing: 0;
  text-transform: none;
}

.product-modal__close.contact-modal__close span,
.product-modal__close--icon span {
  display: none;
}

.product-modal__close.contact-modal__close::before,
.product-modal__close.contact-modal__close::after,
.product-modal__close--icon::before,
.product-modal__close--icon::after {
  position: absolute;
  width: 1.35rem;
  height: 1px;
  background: currentColor;
  content: "";
}

.product-modal__close.contact-modal__close::before,
.product-modal__close--icon::before {
  transform: rotate(45deg);
}

.product-modal__close.contact-modal__close::after,
.product-modal__close--icon::after {
  transform: rotate(-45deg);
}

.product-modal__close.contact-modal__close:hover,
.product-modal__close.contact-modal__close:focus-visible,
.product-modal__close--icon:hover,
.product-modal__close--icon:focus-visible {
  color: var(--signal);
  background: transparent;
}

.product-modal__close--icon:focus-visible {
  outline: 0;
}

.product-modal.contact-modal {
  border: 0;
}

.product-modal__close:hover,
.product-modal__close:focus-visible {
  color: var(--paper);
  background: var(--ink);
}

.product-modal__close--icon:hover,
.product-modal__close--icon:focus-visible {
  color: var(--signal);
  background: transparent;
}

.product-modal__close:focus-visible,
.product-panel__cta:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 3px;
}

.product-panel {
  --product-accent: #10aa96;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(23rem, 0.92fr);
  min-height: min(43rem, calc(100vh - 4rem));
}

.product-panel[hidden] {
  display: none;
}

.product-panel--weni {
  --product-accent: #f58220;
}

.product-panel__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 32rem;
  padding: 0;
  background: color-mix(in srgb, var(--product-accent) 13%, var(--paper));
  overflow: hidden;
}

.product-panel__visual::before {
  content: none;
}

.product-panel__product {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center;
  filter: none;
}

.product-panel--ondi .product-panel__product {
  border: 0;
}

.product-panel--weni .product-panel__product {
  width: 100%;
  object-position: center;
}

.product-panel__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4.5rem, 7vw, 7rem) clamp(2rem, 4vw, 4rem) clamp(2.5rem, 5vw, 4.5rem);
}

.product-panel__index,
.product-panel__kicker {
  margin: 0;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.product-panel__index {
  margin-bottom: clamp(1.8rem, 4vh, 3.5rem);
}

.product-panel__logo {
  display: block;
  width: auto;
  height: clamp(2.2rem, 4vw, 3.4rem);
  max-width: 11rem;
  margin-bottom: 1.25rem;
  object-fit: contain;
  object-position: left center;
}

.product-panel__kicker {
  color: var(--product-accent);
}

.product-panel h2 {
  max-width: 11ch;
  margin: 0.65rem 0 1.2rem;
  font-family: "Big Shoulders Display", sans-serif;
  font-size: clamp(3.3rem, 5.3vw, 5.75rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.86;
  text-transform: uppercase;
}

.product-panel__description {
  max-width: 36rem;
  margin: 0;
  font-size: clamp(0.78rem, 1vw, 0.98rem);
  font-weight: 650;
  line-height: 1.6;
}

.product-panel__features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0 2rem;
  padding: 0;
  list-style: none;
}

.product-panel__features li {
  padding: 0.48rem 0.62rem;
  border: 1px solid color-mix(in srgb, var(--product-accent) 45%, var(--line));
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.product-panel__cta {
  align-self: flex-start;
  min-width: 9.5rem;
  margin-top: 2rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--ink);
  color: var(--paper);
  background: var(--ink);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease, transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.product-panel__cta:hover,
.product-panel__cta:focus-visible {
  color: var(--ink);
  background: var(--product-accent);
  transform: translateY(-0.15rem);
}

body.is-product-modal-open,
body.is-contact-modal-open,
body.is-contact-success-modal-open {
  overflow: hidden;
}

.contact-modal__shell {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(26rem, 0.98fr);
}

.contact-modal__visual {
  position: relative;
  min-height: min(43rem, calc(100vh - 4rem));
  color: #fff9f0;
  background: #0e0e0d;
  overflow: hidden;
  isolation: isolate;
}

.contact-modal__visual > img,
.contact-modal__visual-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.contact-modal__visual > img {
  z-index: -2;
  object-fit: cover;
  object-position: center 36%;
  filter: saturate(0.9) contrast(1.02);
}

.contact-modal__visual-shade {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(8, 8, 7, 0.24) 0%, rgba(8, 8, 7, 0.04) 38%, rgba(8, 8, 7, 0.78) 100%),
    linear-gradient(90deg, rgba(8, 8, 7, 0.52) 0%, transparent 58%);
}

.contact-modal__visual-copy,
.contact-modal__channels {
  position: absolute;
  right: clamp(1.6rem, 3vw, 2.8rem);
  left: clamp(1.6rem, 3vw, 2.8rem);
}

.contact-modal__visual-copy {
  top: clamp(2rem, 4vw, 3.4rem);
}

.contact-modal__eyebrow,
.contact-modal__index,
.contact-modal__channels span,
.contact-modal__channels nav,
.contact-modal__channels > p,
.contact-form label > span,
.contact-form__footer p {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.45;
  text-transform: uppercase;
}

.contact-modal__eyebrow {
  margin: 0 0 1.2rem;
  color: rgba(255, 249, 240, 0.72);
}

.contact-modal__statement {
  max-width: 9ch;
  margin: 0;
  font-family: "Big Shoulders Display", sans-serif;
  font-size: clamp(3.25rem, 5.6vw, 6.25rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.84;
  text-transform: uppercase;
}

.contact-modal__channels {
  bottom: clamp(1.8rem, 3.5vw, 3rem);
}

.contact-modal__channels > div {
  display: grid;
  gap: 0.35rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255, 249, 240, 0.34);
}

.contact-modal__channels span,
.contact-modal__channels > p {
  color: rgba(255, 249, 240, 0.62);
}

.contact-modal__channels a {
  color: inherit;
  text-decoration: none;
}

.contact-modal__channels > div a {
  justify-self: start;
  font-family: "Big Shoulders Display", sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.contact-modal__channels nav {
  display: flex;
  gap: 1.25rem;
  margin-top: 1rem;
}

.contact-modal__channels nav a {
  padding-bottom: 0.2rem;
  border-bottom: 1px solid rgba(255, 249, 240, 0.44);
}

.contact-modal__channels a:hover,
.contact-modal__channels a:focus-visible {
  color: #f17649;
}

.contact-modal__channels > p {
  margin: 1rem 0 0;
}

.contact-modal__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4.5rem, 6.5vw, 6.5rem) clamp(2rem, 4vw, 4rem) clamp(2.3rem, 4vw, 3.6rem);
}

.contact-modal__index {
  margin: 0 0 1rem;
  color: var(--signal);
}

.contact-modal__intro {
  max-width: 34rem;
  margin: 0 0 1.6rem;
  font-size: clamp(0.72rem, 0.88vw, 0.88rem);
  font-weight: 650;
  line-height: 1.55;
}

.contact-form,
.contact-form label {
  display: grid;
}

.contact-form {
  gap: 1rem;
}

.contact-form label.contact-form__trap {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
}

.contact-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-form label {
  gap: 0.42rem;
}

.contact-form label > span {
  color: rgba(24, 21, 18, 0.66);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(24, 21, 18, 0.38);
  border-radius: 0;
  color: var(--ink);
  background: transparent;
  font: 700 0.76rem/1.4 "Manrope", sans-serif;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form input,
.contact-form select {
  min-height: 2.6rem;
  padding: 0.45rem 0;
}

.contact-form select {
  cursor: pointer;
}

.contact-form textarea {
  min-height: 6.2rem;
  padding: 0.55rem 0;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(24, 21, 18, 0.43);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--signal);
  box-shadow: 0 1px 0 var(--signal);
}

.contact-form__footer {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1rem;
  margin-top: 0.25rem;
}

.contact-form__footer button {
  display: inline-flex;
  min-width: 9.8rem;
  min-height: 2.9rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 1rem;
  border: 1px solid var(--ink);
  color: var(--paper);
  background: var(--ink);
  font: 800 0.62rem/1 "Manrope", sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-form__footer button span:last-child {
  color: var(--signal);
  font-size: 1rem;
}

.contact-form__footer button:hover,
.contact-form__footer button:focus-visible {
  color: var(--ink);
  background: var(--signal);
  transform: translateY(-0.15rem);
}

.contact-form__footer button:hover span:last-child,
.contact-form__footer button:focus-visible span:last-child {
  color: var(--ink);
}

.contact-form__footer button:disabled {
  color: rgba(238, 232, 223, 0.72);
  background: rgba(24, 21, 18, 0.72);
  cursor: wait;
  transform: none;
}

.contact-form__footer button:focus-visible,
.contact-modal__channels a:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 3px;
}

.contact-form__footer p {
  max-width: 20rem;
  margin: 0;
  color: rgba(24, 21, 18, 0.56);
  font-size: 0.5rem;
  line-height: 1.5;
}

.contact-form__footer p[data-state="error"] {
  color: #9d3022;
}

.contact-form__footer p[data-state="success"] {
  color: #356044;
}

.contact-success-modal {
  width: min(52rem, calc(100vw - 2rem));
  max-width: none;
  max-height: calc(100vh - 2rem);
  margin: auto;
  padding: 0;
  border: 1px solid rgba(238, 232, 223, 0.34);
  color: var(--paper);
  background: #161411;
  box-shadow: 0 2.5rem 8rem rgba(8, 7, 6, 0.46);
  overflow: hidden;
}

.contact-success-modal::backdrop {
  background: rgba(24, 21, 18, 0.68);
  backdrop-filter: blur(14px) saturate(0.65);
}

.contact-success-modal[open] {
  animation: contact-success-in 520ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes contact-success-in {
  from {
    opacity: 0;
    transform: translateY(1.5rem) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.contact-success-modal__shell {
  display: grid;
  grid-template-columns: minmax(12rem, 0.72fr) minmax(0, 1.45fr);
  min-height: 28rem;
}

.contact-success-modal__signal {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
  color: var(--ink);
  background: var(--signal);
  overflow: hidden;
}

.contact-success-modal__signal::after {
  content: "THANK YOU";
  position: absolute;
  right: -0.12em;
  bottom: -0.15em;
  color: rgba(24, 21, 18, 0.09);
  font-family: "Big Shoulders Display", sans-serif;
  font-size: clamp(5rem, 10vw, 8.5rem);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.72;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.contact-success-modal__mark {
  position: relative;
  z-index: 1;
  display: grid;
  width: 4.25rem;
  height: 4.25rem;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-family: "Manrope", sans-serif;
  font-size: 1.65rem;
  font-weight: 800;
}

.contact-success-modal__signal-copy,
.contact-success-modal__eyebrow,
.contact-success-modal__footer p {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.5;
  text-transform: uppercase;
}

.contact-success-modal__signal-copy {
  position: relative;
  z-index: 1;
  max-width: 8rem;
}

.contact-success-modal__content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4.75rem clamp(2rem, 5vw, 4.5rem) 3rem;
}

.contact-success-modal__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  min-width: 4.5rem;
  min-height: 2.5rem;
  padding: 0.65rem 0.8rem;
  border: 1px solid rgba(238, 232, 223, 0.54);
  color: var(--paper);
  background: transparent;
  font: 800 0.56rem/1 "Manrope", sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.contact-success-modal__close:hover,
.contact-success-modal__close:focus-visible {
  border-color: var(--signal);
  color: var(--ink);
  background: var(--signal);
}

.contact-success-modal__eyebrow {
  margin: 0 0 1.25rem;
  color: var(--signal);
}

.contact-success-modal h2 {
  margin: 0;
  font-family: "Big Shoulders Display", sans-serif;
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.84;
  text-transform: uppercase;
}

.contact-success-modal h2 em {
  color: var(--signal);
  font-style: normal;
}

.contact-success-modal__message {
  max-width: 32rem;
  margin: 1.5rem 0 2rem;
  color: rgba(238, 232, 223, 0.76);
  font-size: clamp(0.76rem, 1vw, 0.94rem);
  font-weight: 650;
  line-height: 1.7;
}

.contact-success-modal__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(238, 232, 223, 0.22);
}

.contact-success-modal__footer button {
  display: inline-flex;
  min-width: 11rem;
  min-height: 2.9rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 1rem;
  border: 1px solid var(--signal);
  color: var(--ink);
  background: var(--signal);
  font: 800 0.62rem/1 "Manrope", sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-success-modal__footer button:hover,
.contact-success-modal__footer button:focus-visible {
  color: var(--paper);
  background: transparent;
  transform: translateY(-0.15rem);
}

.contact-success-modal__footer p {
  margin: 0;
  color: rgba(238, 232, 223, 0.46);
  text-align: right;
}

.contact-success-modal__close:focus-visible,
.contact-success-modal__footer button:focus-visible {
  outline: 2px solid var(--paper);
  outline-offset: 3px;
}

@media (max-height: 760px) and (min-width: 621px) {
  .product-modal {
    max-height: calc(100vh - 2rem);
  }

  .product-modal__shell,
  .product-panel {
    min-height: calc(100vh - 2rem);
  }

  .product-panel__visual {
    min-height: 24rem;
  }

  .product-panel__content {
    padding: 3.8rem 2.5rem 1.6rem;
  }

  .product-panel__index {
    margin-bottom: 1.45rem;
  }

  .product-panel__logo {
    height: 2.45rem;
    margin-bottom: 0.85rem;
  }

  .product-panel h2 {
    margin: 0.5rem 0 0.85rem;
    font-size: clamp(3.25rem, 4.5vw, 4.65rem);
  }

  .product-panel__description {
    font-size: 0.78rem;
    line-height: 1.48;
  }

  .product-panel__features {
    margin: 1rem 0 1.2rem;
  }

  .contact-modal__visual {
    min-height: calc(100vh - 2rem);
  }

  .contact-modal__content {
    padding: 3.8rem 2.5rem 1.6rem;
  }

  .contact-modal__index {
    margin-bottom: 1.2rem;
  }

  .contact-modal__intro {
    margin: 0 0 1rem;
  }

  .contact-form {
    gap: 0.72rem;
  }

  .contact-form textarea {
    min-height: 4.6rem;
  }
}

.stat {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 0.7rem;
}

.stat strong {
  font-family: "Big Shoulders Display", sans-serif;
  font-size: clamp(3.25rem, 5.5vw, 6.25rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.88;
}

.stat span {
  width: 7.5rem;
  font-size: clamp(0.5rem, 0.58vw, 0.65rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.experience-stats {
  position: absolute;
  right: calc(var(--page-pad) + 2.5rem);
  bottom: 7.5%;
  display: grid;
  gap: 0.75rem;
  width: min(20rem, 25vw);
}

.career-note {
  position: absolute;
  top: 18%;
  left: calc(var(--page-pad) + 2.5rem);
  display: grid;
  align-content: start;
  width: min(40vw, 36rem);
  max-width: none;
  margin: 0;
  padding: 0;
  list-style: none;
}

.career-note li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "company date"
    "role role";
  align-content: center;
  column-gap: 0.75rem;
  row-gap: 0.12rem;
  min-height: 2.8rem;
  border-bottom: 1px solid var(--line);
  font-size: clamp(0.72rem, 0.82vw, 0.9rem);
  line-height: 1.25;
}

.career-note li:first-child {
  border-top: 1px solid var(--line);
}

.career-note strong {
  grid-area: company;
  font-size: 1.04em;
  font-weight: 900;
  letter-spacing: -0.018em;
}

.career-note span {
  grid-area: role;
  min-width: 0;
  font-size: inherit;
  font-weight: 620;
  letter-spacing: 0;
  text-transform: none;
}

.career-note time {
  grid-area: date;
  color: var(--signal);
  font-size: clamp(0.62rem, 0.7vw, 0.76rem);
  font-weight: 850;
  letter-spacing: 0.06em;
  text-align: right;
  text-transform: uppercase;
  white-space: nowrap;
}

.cue--thinking .display {
  position: absolute;
  right: calc(var(--page-pad) + 2.5rem);
  bottom: 7.5%;
  display: grid;
  gap: clamp(0.5rem, 1vw, 1rem);
  text-align: right;
}

.display--thinking {
  font-size: clamp(5rem, 9vw, 10.5rem);
}

.display--thinking span,
.display--thinking em {
  display: block;
}

.story-list {
  --story-row-height: clamp(4rem, 5.25vw, 5.25rem);
  position: absolute;
  top: 18%;
  left: calc(var(--page-pad) + 2.5rem);
  width: min(38rem, 42vw);
  max-height: calc(clamp(16rem, 21vw, 21rem) + 2px);
  margin: 0;
  padding: 0 clamp(0.8rem, 1.2vw, 1.2rem);
  border: 1px solid var(--line);
  background: rgb(238 232 223 / 0.12);
  overflow-x: hidden;
  overflow-y: hidden;
  overscroll-behavior: contain;
  scrollbar-color: transparent transparent;
  scrollbar-gutter: stable;
  list-style: none;
  counter-reset: stories;
}

.story-list:hover,
.story-list:focus,
.story-list:focus-within {
  overflow-y: auto;
  scrollbar-color: var(--signal) transparent;
}

.story-list::-webkit-scrollbar {
  width: 0;
}

.story-list:hover::-webkit-scrollbar,
.story-list:focus::-webkit-scrollbar,
.story-list:focus-within::-webkit-scrollbar {
  width: 0.28rem;
}

.story-list::-webkit-scrollbar-thumb {
  background: var(--signal);
}

.story-list:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 3px;
}

.story-list li {
  height: var(--story-row-height);
  border-bottom: 1px solid var(--line);
}

.story-list a {
  display: grid;
  grid-template-columns: 6.5rem minmax(0, 1fr);
  gap: 1rem;
  height: 100%;
  align-items: center;
  padding: 0.75rem 0;
  text-decoration: none;
}

.story-list__meta {
  display: grid;
  gap: 0.45rem;
}

.story-list strong {
  font-family: "Big Shoulders Display", sans-serif;
  font-size: clamp(1.3rem, 1.8vw, 2rem);
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
}

.story-list__cta {
  justify-self: start;
  color: var(--ink);
  font-size: clamp(0.48rem, 0.55vw, 0.6rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  opacity: 0.58;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.story-list__cta::after {
  margin-left: 0.4rem;
  color: var(--signal);
  content: "\2197";
}

.story-list a:hover .story-list__cta,
.story-list a:focus-visible .story-list__cta {
  color: var(--signal);
  opacity: 1;
  transform: translateX(0.18rem);
}

.contact-line {
  position: absolute;
  display: grid;
  gap: 0.08em;
  font-size: clamp(4.8rem, 9.4vw, 10.75rem);
}

.contact-line span {
  display: block;
}

.contact-line--question {
  top: 17%;
  left: calc(var(--page-pad) + 2.5rem);
}

.contact-line--answer {
  right: calc(var(--page-pad) + 2.5rem);
  bottom: 17%;
  color: var(--signal);
  text-align: left;
}

.contact-link {
  position: absolute;
  bottom: 11%;
  left: calc(var(--page-pad) + 2.5rem);
  display: inline-flex;
  flex-direction: column;
  gap: 0.25rem;
  text-decoration: none;
}

.contact-link span,
.contact-social,
.copyright {
  font-size: clamp(0.58rem, 0.67vw, 0.72rem);
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-link strong {
  font-family: "Big Shoulders Display", sans-serif;
  font-size: clamp(1.8rem, 2.6vw, 3rem);
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
}

.contact-link::after {
  content: "";
  width: 100%;
  height: 2px;
  margin-top: 0.35rem;
  background: currentColor;
  transform: scaleX(0.18);
  transform-origin: left;
  transition: transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.contact-link:hover::after,
.contact-link:focus-visible::after {
  transform: scaleX(1);
}

.contact-social {
  position: absolute;
  bottom: 6.5%;
  left: calc(var(--page-pad) + 2.5rem);
  display: flex;
  gap: 1.5rem;
}

.copyright {
  position: absolute;
  right: calc(var(--page-pad) + 2.5rem);
  bottom: 7.6%;
}

.chapter-nav {
  position: absolute;
  z-index: 23;
  top: 50%;
  right: calc(var(--page-pad) + 0.75rem);
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  transform: translateY(-50%);
  mix-blend-mode: multiply;
  pointer-events: auto;
}

.chapter-nav li {
  margin: 0;
  padding: 0;
}

.chapter-nav button {
  display: grid;
  grid-template-columns: 1.6rem 1fr;
  align-items: center;
  gap: 0.24rem;
  width: 7.65rem;
  min-height: 1.8rem;
  padding: 0.125rem 0.33rem;
  border: 0;
  border-radius: 0;
  color: inherit;
  background: transparent;
  opacity: 0.28;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-align: left;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: opacity 180ms ease, font-weight 180ms ease, transform 180ms ease;
}

.chapter-nav button span {
  color: var(--signal);
}

.chapter-nav button strong {
  font: inherit;
}

.chapter-nav button:hover,
.chapter-nav button:focus-visible {
  opacity: 0.72;
  transform: translateX(-0.15rem);
}

.chapter-nav button:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 2px;
}

.chapter-nav button.is-active {
  opacity: 1;
  font-weight: 900;
}

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

.noscript-message {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: grid;
  place-content: center;
  padding: 2rem;
  background: var(--paper);
  text-align: center;
}

.noscript-message strong {
  font-family: "Big Shoulders Display", sans-serif;
  font-size: clamp(4rem, 11vw, 10rem);
  font-weight: 900;
  text-transform: uppercase;
}

.motion-fallback {
  display: none;
}

@media (max-width: 900px) {
  :root {
    --header-h: 4.6rem;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .brand__name {
    display: none;
  }

  .chapter-nav {
    right: calc(var(--page-pad) + 0.25rem);
  }

  .chapter-nav button {
    width: 7.9rem;
    min-height: 2.25rem;
    font-size: 0.675rem;
  }

  .film-scroll {
    height: 800vh;
  }

  .film-frame {
    right: var(--page-pad);
    left: var(--page-pad);
  }

  .cue-index,
  .hero-intro,
  .hero-name__first,
  .hero-name__last,
  .hero-note,
  .about-copy,
  .edge-word--top,
  .discipline-orbit li:nth-child(1),
  .discipline-orbit li:nth-child(3),
  .cue--work .display,
  .stat--years,
  .career-note,
  .contact-line--question,
  .contact-link,
  .contact-social {
    left: calc(var(--page-pad) + 1rem);
  }

  .about-story,
  .edge-word--bottom,
  .method-copy,
  .discipline-orbit li:nth-child(2),
  .discipline-orbit li:nth-child(4),
  .work-list,
  .stat--projects,
  .stat--clients,
  .contact-line--answer,
  .copyright {
    right: calc(var(--page-pad) + 1rem);
  }

  .hero-name__first,
  .hero-name__last {
    font-size: clamp(4.6rem, 16vw, 8.5rem);
  }

  .display--medium {
    font-size: clamp(2.9rem, 7.4vw, 4.25rem);
  }

  .about-copy {
    width: min(36vw, 31rem);
  }

  .about-story {
    right: calc(var(--page-pad) + 7.5rem);
    width: min(39vw, 30rem);
    font-size: clamp(0.72rem, 1.25vw, 0.9rem);
  }

  .discipline-orbit li:nth-child(1) { top: 32%; right: auto; left: calc(var(--page-pad) + 1rem); }
  .discipline-orbit li:nth-child(2) { top: 39.5%; right: auto; left: calc(var(--page-pad) + 1rem); }
  .discipline-orbit li:nth-child(3) { top: 81.5%; right: calc(var(--page-pad) + 1rem); bottom: auto; left: auto; }
  .discipline-orbit li:nth-child(4) { top: 88.5%; right: calc(var(--page-pad) + 1rem); bottom: auto; left: auto; }

  .work-list,
  .story-list {
    width: min(31rem, 58vw);
  }

  .work-more {
    right: calc(var(--page-pad) + 1rem);
    width: min(31rem, 58vw);
  }

  .career-note {
    left: calc(var(--page-pad) + 1rem);
    width: min(44vw, 34rem);
    max-width: none;
  }

  .experience-stats {
    right: calc(var(--page-pad) + 1rem);
    width: min(18rem, 29vw);
  }

  .work-list small {
    display: none;
  }

  .product-modal {
    width: calc(100vw - 2rem);
    max-height: calc(100vh - 2rem);
  }

  .product-modal__shell,
  .product-panel {
    min-height: calc(100vh - 2rem);
  }

  .product-panel {
    grid-template-columns: minmax(0, 0.9fr) minmax(19rem, 1.1fr);
  }

  .product-panel__visual {
    min-height: 25rem;
  }

  .contact-modal__shell {
    grid-template-columns: minmax(0, 0.9fr) minmax(23rem, 1.1fr);
  }

  .contact-modal__content {
    padding-right: 2.25rem;
    padding-left: 2.25rem;
  }
}

@media (max-width: 620px) {
  .film-stage {
    min-height: 30rem;
  }

  .chapter-nav {
    top: 51%;
    right: 0.65rem;
    gap: 0;
  }

  .chapter-nav button {
    grid-template-columns: 1.5rem 1fr;
    width: 7.25rem;
    min-height: 2rem;
    padding: 0.2rem 0.33rem;
    font-size: 0.625rem;
  }

  .film,
  .film-poster img {
    object-position: center center;
  }

  .film-frame {
    inset: var(--header-h) 0.7rem 0.7rem;
  }

  .cue {
    padding: calc(var(--header-h) + 2.6rem) 1.7rem 3.4rem;
  }

  .cue-index,
  .hero-intro {
    top: calc(var(--header-h) + 0.75rem);
    left: 1.7rem;
  }

  .hero-intro {
    right: auto;
    bottom: auto;
    gap: 0.32rem;
  }

  .hero-name__first {
    top: auto;
    left: 1.7rem;
    bottom: 22%;
  }

  .hero-name__last {
    right: auto;
    left: 1.7rem;
    bottom: 13%;
    max-width: calc(100vw - 3.4rem);
    font-size: clamp(3.9rem, 18vw, 6.3rem);
  }

  .hero-note {
    position: static;
    text-align: left;
  }

  .about-copy {
    inset: 0;
    width: auto;
    color: var(--ink);
    mix-blend-mode: normal;
  }

  .about-copy .display--medium {
    position: absolute;
    top: 14%;
    right: 1.7rem;
    bottom: auto;
    left: 1.7rem;
  }

  .display--medium {
    font-size: clamp(2.35rem, 9.8vw, 3.5rem);
  }

  .about-story {
    position: absolute;
    right: 1.7rem;
    bottom: 4.5%;
    left: 1.7rem;
    width: auto;
    max-width: none;
    margin: 0;
    font-size: 0.65rem;
    line-height: 1.48;
  }

  .about-story p + p {
    margin-top: 0.85rem;
  }

  .edge-word {
    font-size: clamp(4.2rem, 18vw, 6.8rem);
  }

  .edge-word--top {
    top: 15%;
    left: 1.7rem;
  }

  .edge-word--bottom {
    top: 69.5%;
    right: 1.7rem;
    bottom: auto;
  }

  .method-copy {
    top: 25%;
    right: 1.7rem;
    max-width: 16rem;
  }

  .discipline-orbit li {
    font-size: clamp(2.3rem, 10vw, 3.5rem);
  }

  .discipline-orbit li:nth-child(1) { top: 24%; right: auto; left: 1.7rem; }
  .discipline-orbit li:nth-child(2) { top: 29.5%; right: auto; left: 1.7rem; }
  .discipline-orbit li:nth-child(3) { top: 79%; right: 1.7rem; bottom: auto; left: auto; }
  .discipline-orbit li:nth-child(4) { top: 84%; right: 1.7rem; bottom: auto; left: auto; }

  .cue--work .display {
    top: 16%;
    left: 1.7rem;
  }

  .display--large {
    font-size: clamp(4.4rem, 17vw, 6.4rem);
  }

  .work-list {
    right: 1.7rem;
    bottom: 13%;
    width: calc(100vw - 3.4rem);
  }

  .work-list a,
  .work-list button {
    min-height: 2.75rem;
    padding: 0.48rem 0;
  }

  .work-more {
    right: 1.7rem;
    bottom: 7.5%;
    width: calc(100vw - 3.4rem);
  }

  .work-more a {
    padding: 0.45rem 0.65rem;
    font-size: 0.55rem;
  }

  .product-modal {
    width: calc(100vw - 1.4rem);
    max-height: calc(100vh - 1.4rem);
    overflow-y: auto;
  }

  .product-modal__shell,
  .product-panel {
    min-height: 0;
  }

  .product-panel {
    grid-template-columns: 1fr;
  }

  .product-panel__visual {
    min-height: 15.5rem;
  }

  .product-panel__content {
    padding: 1.4rem 1.4rem 1.6rem;
  }

  .product-panel__index {
    display: none;
  }

  .product-panel__logo {
    height: 2rem;
    margin-bottom: 0.75rem;
  }

  .product-panel h2 {
    margin: 0.45rem 0 0.8rem;
    font-size: clamp(2.6rem, 12vw, 3.6rem);
  }

  .product-panel__description {
    font-size: 0.7rem;
    line-height: 1.5;
  }

  .product-panel__features {
    margin: 1rem 0 1.2rem;
  }

  .product-panel__features li {
    padding: 0.42rem 0.5rem;
    font-size: 0.5rem;
  }

  .contact-modal__shell {
    grid-template-columns: 1fr;
  }

  .contact-modal__visual {
    min-height: 19rem;
  }

  .contact-modal__visual > img {
    object-position: center 33%;
  }

  .contact-modal__visual-shade {
    background:
      linear-gradient(180deg, rgba(8, 8, 7, 0.2) 0%, rgba(8, 8, 7, 0.04) 28%, rgba(8, 8, 7, 0.88) 100%),
      linear-gradient(90deg, rgba(8, 8, 7, 0.5) 0%, transparent 62%);
  }

  .contact-modal__visual-copy,
  .contact-modal__channels {
    right: 1.25rem;
    left: 1.25rem;
  }

  .contact-modal__visual-copy {
    top: 1.2rem;
  }

  .contact-modal__eyebrow {
    margin-bottom: 0.65rem;
  }

  .contact-modal__statement {
    font-size: 2.7rem;
  }

  .contact-modal__channels {
    bottom: 1.15rem;
  }

  .contact-modal__channels > div {
    padding-bottom: 0.65rem;
  }

  .contact-modal__channels > div a {
    font-size: 1.55rem;
  }

  .contact-modal__channels nav {
    margin-top: 0.65rem;
  }

  .contact-modal__channels > p {
    margin-top: 0.55rem;
    font-size: 0.48rem;
  }

  .contact-modal__content {
    padding: 2.2rem 1.4rem 1.6rem;
  }

  .contact-modal__index {
    margin-bottom: 1.15rem;
  }

  .contact-modal__intro {
    margin: 0 0 1.25rem;
    font-size: 0.7rem;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
  }

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

  .contact-form__footer button {
    width: 100%;
  }

  .contact-success-modal {
    width: calc(100vw - 1.4rem);
    max-height: calc(100vh - 1.4rem);
    overflow-y: auto;
  }

  .contact-success-modal__shell {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .contact-success-modal__signal {
    min-height: 8.5rem;
    flex-direction: row;
    align-items: flex-start;
    padding: 1.25rem;
  }

  .contact-success-modal__signal::after {
    right: -0.03em;
    bottom: -0.12em;
    font-size: 4.8rem;
    line-height: 0.72;
    writing-mode: horizontal-tb;
    transform: none;
  }

  .contact-success-modal__mark {
    width: 3.3rem;
    height: 3.3rem;
    font-size: 1.25rem;
  }

  .contact-success-modal__signal-copy {
    align-self: flex-end;
    text-align: right;
  }

  .contact-success-modal__content {
    padding: 4.4rem 1.4rem 1.5rem;
  }

  .contact-success-modal__close {
    top: 1.1rem;
    right: 1.1rem;
  }

  .contact-success-modal h2 {
    font-size: clamp(3.25rem, 15vw, 4.5rem);
  }

  .contact-success-modal__message {
    margin: 1.25rem 0 1.5rem;
    font-size: 0.72rem;
  }

  .contact-success-modal__footer {
    align-items: stretch;
    flex-direction: column;
    gap: 1rem;
  }

  .contact-success-modal__footer button {
    width: 100%;
  }

  .contact-success-modal__footer p {
    text-align: left;
  }

  .stat {
    gap: 0.4rem;
  }

  .stat strong {
    font-size: clamp(2.25rem, 11vw, 3.25rem);
    line-height: 0.9;
  }

  .stat span {
    width: 5.4rem;
    font-size: 0.45rem;
  }

  .experience-stats {
    right: 1.7rem;
    bottom: 5.5%;
    gap: 0.38rem;
    width: 12.25rem;
  }

  .career-note {
    top: 14.5%;
    bottom: 39%;
    left: 1.7rem;
    width: calc(100vw - 10rem);
    max-width: none;
  }

  .career-note li {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "company date"
      "role role";
    align-content: center;
    column-gap: 0.5rem;
    row-gap: 0.16rem;
    min-height: 3rem;
    font-size: 0.64rem;
    line-height: 1.18;
  }

  .career-note strong {
    grid-area: company;
  }

  .career-note span {
    grid-area: role;
  }

  .career-note time {
    grid-area: date;
    font-size: 0.56rem;
    letter-spacing: 0.02em;
  }

  .cue--thinking .display {
    top: auto;
    right: 1.7rem;
    bottom: 7%;
    left: 1.7rem;
    gap: 0.45rem;
  }

  .display--thinking {
    font-size: clamp(4rem, 16vw, 6.2rem);
    color: var(--ink);
    mix-blend-mode: normal;
  }

  .story-list {
    --story-row-height: 4rem;
    top: 14%;
    right: 1.7rem;
    bottom: auto;
    left: 1.7rem;
    width: calc(100vw - 3.4rem);
    max-height: calc(16rem + 2px);
  }

  .story-list a {
    grid-template-columns: 4.25rem minmax(0, 1fr);
    gap: 0.6rem;
    padding: 0.55rem 0;
  }

  .story-list strong {
    font-size: 1.05rem;
  }

  .story-list__cta {
    font-size: 0.45rem;
    letter-spacing: 0.07em;
  }

  .story-list__cta::after {
    margin-left: 0.22rem;
  }

  .contact-line {
    font-size: clamp(4rem, 17.5vw, 6.5rem);
  }

  .contact-line--question {
    top: 14%;
    left: 1.7rem;
    color: var(--ink);
    mix-blend-mode: normal;
  }

  .contact-line--answer {
    right: 1.7rem;
    bottom: 22%;
  }

  .contact-link {
    bottom: 10%;
    left: 1.7rem;
  }

  .contact-social {
    right: auto;
    bottom: 4%;
    left: 1.7rem;
  }

  .copyright {
    display: none;
  }

  .scroll-prompt {
    left: 50%;
    bottom: 2.5rem;
  }

}

@media (max-width: 900px) {
  .method-stack {
    left: calc(var(--page-pad) + 1rem);
  }

  .method-copy {
    right: calc(var(--page-pad) + 1rem);
    bottom: 8%;
    width: min(39vw, 30rem);
  }

  .inhouse-list {
    right: auto;
    width: min(31rem, 58vw);
  }

  .side-projects {
    left: calc(var(--page-pad) + 1rem);
    width: min(31rem, 58vw);
  }

  .client-work {
    right: calc(var(--page-pad) + 1rem);
    width: min(31rem, 58vw);
  }
}

@media (max-width: 620px) {
  .method-stack {
    top: 15%;
    left: 1.7rem;
    gap: 0.28rem;
  }

  .method-stack h2 {
    font-size: clamp(4.5rem, 17vw, 6.4rem);
  }

  .method-stack p:nth-of-type(1) {
    font-size: clamp(3.7rem, 14vw, 5.25rem);
  }

  .method-stack p:nth-of-type(2) {
    font-size: clamp(3.05rem, 11.6vw, 4.35rem);
  }

  .method-stack p:nth-of-type(3) {
    font-size: clamp(2.55rem, 9.7vw, 3.65rem);
  }

  .method-stack p:nth-of-type(4) {
    font-size: clamp(2.15rem, 8.1vw, 3.05rem);
  }

  .method-stack p:nth-of-type(5) {
    font-size: clamp(1.8rem, 6.8vw, 2.55rem);
  }

  .method-copy {
    right: 1.7rem;
    bottom: 4.5%;
    left: 1.7rem;
    width: auto;
    font-size: 0.72rem;
    line-height: 1.55;
  }

  .method-copy span {
    margin-bottom: 0.65rem;
    font-size: 0.52rem;
  }

  .inhouse-list {
    top: 37%;
    right: 1.7rem;
    left: 1.7rem;
    width: auto;
  }

  .inhouse-list a,
  .inhouse-list button {
    min-height: 2.45rem;
    padding: 0.42rem 0;
  }

  .inhouse-list small {
    display: none;
  }

  .side-projects {
    top: 52%;
    left: 1.7rem;
    width: auto;
    gap: 0.7rem 1rem;
  }

  .client-work {
    right: 1.7rem;
    bottom: 4.5%;
    left: 1.7rem;
    width: auto;
  }

  .client-work > p {
    margin-bottom: 0.55rem;
  }

  .client-work a {
    grid-template-columns: 7rem 1fr;
    gap: 0.5rem;
    padding: 0.36rem 0;
  }

  .client-work strong {
    font-size: 1.15rem;
  }

  .client-work span {
    font-size: 0.5rem;
  }
}

@media (hover: none) {
  .story-list {
    overflow-y: auto;
    scrollbar-color: var(--signal) transparent;
  }

  .story-list::-webkit-scrollbar {
    width: 0.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .film-scroll {
    display: none;
  }

  .motion-fallback {
    display: block;
    padding: var(--header-h) var(--page-pad) 0;
  }

  .site-header {
    color: var(--ink);
    background: #fcf2e8;
    mix-blend-mode: normal;
  }

  .static-hero {
    position: relative;
    height: calc(100svh - var(--header-h));
    min-height: 34rem;
    overflow: hidden;
    border: 1px solid var(--line);
  }

  .static-hero picture,
  .static-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .static-hero img {
    object-fit: cover;
  }

  .static-hero__intro {
    position: absolute;
    z-index: 1;
    top: 1.5rem;
    left: 1.5rem;
    display: grid;
    gap: 0.45rem;
  }

  .static-hero__intro p {
    margin: 0;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1.55;
    text-transform: uppercase;
  }

  .static-hero__intro p:first-child {
    font-size: 0.62rem;
    letter-spacing: 0.16em;
  }

  .static-hero__intro p:last-child {
    font-size: 0.78rem;
    font-weight: 900;
  }

  .static-hero h1 {
    position: absolute;
    z-index: 1;
    inset: 0;
    margin: 0;
    font-family: "Big Shoulders Display", sans-serif;
    font-size: clamp(5rem, 11vw, 12rem);
    font-weight: 900;
    letter-spacing: -0.045em;
    line-height: 0.82;
    text-transform: uppercase;
  }

  .static-hero h1 span {
    position: absolute;
  }

  .static-hero h1 span:first-child {
    top: 11%;
    left: 1.5rem;
  }

  .static-hero h1 span:last-child {
    right: 1.5rem;
    bottom: 8%;
  }

  .static-story {
    padding: clamp(4rem, 9vw, 8rem) 0;
  }

  .static-story > section {
    display: grid;
    grid-template-columns: minmax(8rem, 0.35fr) 1fr;
    gap: clamp(1.5rem, 4vw, 5rem);
    padding: clamp(3rem, 6vw, 6rem) 0;
    border-top: 1px solid var(--line);
  }

  .static-index {
    margin: 0;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .static-story h2 {
    margin: 0;
    font-family: "Big Shoulders Display", sans-serif;
    font-size: clamp(4rem, 8vw, 9rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 0.84;
    text-transform: uppercase;
  }

  .static-story h2 em {
    color: var(--signal);
    font-style: normal;
  }

  .static-story section > p:last-child {
    grid-column: 2;
    max-width: 42rem;
    margin: 1.5rem 0 0;
    font-size: clamp(1rem, 1.4vw, 1.25rem);
    font-weight: 600;
    line-height: 1.6;
  }

  .static-about-story {
    grid-column: 2;
    max-width: 42rem;
    margin-top: 1.5rem;
    font-size: clamp(1rem, 1.4vw, 1.25rem);
    font-weight: 600;
    line-height: 1.6;
  }

  .static-about-story p {
    margin: 0;
  }

  .static-about-story p + p {
    margin-top: 1rem;
  }

  .static-stats {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  .static-stats p {
    display: flex;
    flex-direction: column;
    margin: 0 !important;
  }

  .static-stats strong {
    font-family: "Big Shoulders Display", sans-serif;
    font-size: clamp(5rem, 10vw, 11rem);
    line-height: 0.8;
  }

  .static-stats span {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
  }

  .static-links {
    grid-column: 2;
    display: flex;
    flex-direction: column;
    margin-top: 1.5rem;
  }

  .static-links a {
    display: flex;
    min-height: 3.25rem;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--line);
    font-family: "Big Shoulders Display", sans-serif;
    font-size: clamp(1.5rem, 2.4vw, 2.5rem);
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
  }

  .static-links a:last-child {
    border-bottom: 1px solid var(--line);
  }

  .static-links span {
    color: var(--signal);
    font-family: "Manrope", sans-serif;
    font-size: 0.68rem;
  }

  .static-contact > a {
    grid-column: 2;
    align-self: end;
    justify-self: start;
    padding: 0.75rem 0;
    border-bottom: 2px solid currentColor;
    font-family: "Big Shoulders Display", sans-serif;
    font-size: clamp(1.5rem, 3vw, 3.5rem);
    font-weight: 850;
    text-decoration: none;
    text-transform: uppercase;
  }

  @media (max-width: 620px) {
    .motion-fallback {
      padding-right: 0.7rem;
      padding-left: 0.7rem;
    }

    .static-hero h1 {
      font-size: clamp(4.3rem, 21vw, 7.25rem);
    }

    .static-story > section,
    .static-stats {
      grid-template-columns: 1fr !important;
    }

    .static-story section > p:last-child,
    .static-about-story,
    .static-links,
    .static-contact > a {
      grid-column: 1;
    }

    .static-story h2 {
      font-size: clamp(3.7rem, 15vw, 5.5rem);
    }

    .static-stats {
      gap: 2.5rem;
    }
  }
}
