@font-face {
  font-family: "Geist";
  src: url("assets/fonts/Geist-Variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  color-scheme: light;
  --ink: #202124;
  --ink-80: rgba(0, 0, 0, 0.8);
  --ink-60: rgba(0, 0, 0, 0.6);
  --ink-40: rgba(0, 0, 0, 0.4);
  --ink-10: rgba(0, 0, 0, 0.1);
  --ink-06: rgba(0, 0, 0, 0.06);
  --muted: var(--ink-60);
  --paper: #ffffff;
  --bone: #fdfdf7;
  --bone-deep: #f7f7f0;
  --field: #ebebeb;
  --field-text: #818181;
  --blue: #0077FF;
  --blue-hover: #006be6;
  --blue-active: #0063d6;
  --system: #b8dcf0;
  --type-display-size: clamp(52px, 4.2vw, 80px);
  --type-display-leading: 1.15;
  --type-display-tracking: -0.041em;
  --type-title-size: clamp(42px, 3.3vw, 48px);
  --type-title-leading: 1.12;
  --type-title-tracking: -0.04em;
  --type-title-weight: 300;
  --type-heading-size: 24px;
  --type-heading-leading: 1.25;
  --type-body-size: 15px;
  --type-body-leading: 1.35;
  --type-label-size: 12px;
  --type-label-leading: 1.33;
  --type-navigation-size: 13px;
  --type-navigation-leading: 16px;
  --type-control-size: 15px;
  /* 4px content-spacing scale carried forward from V6. */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;
  --space-related: var(--space-4);
  --space-group: var(--space-5);
  --space-block: var(--space-7);
  --space-micro: 3px;
  --space-xs: 6px;
  --space-sm: 12px;
  --space-gutter: 15px;
  --space-page: 30px;
  --space-copy: 34px;
  --space-section: 64px;
  --space-pause: 112px;
  --site-header-clearance: 87px;
  --radius-image: 6px;
  --radius-card: 18px;
  --radius-pill: 999px;
  --shadow-soft: 0 1px 3px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.08);
  --ease-enter: cubic-bezier(0, 0.635, 0.345, 1);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  overflow-y: auto;
  scroll-behavior: smooth;
}

html.route-entry-pending main {
  opacity: 0;
}

.loading-screen {
  display: none;
}

html.intro-entry-pending .loading-screen {
  position: fixed;
  inset: 0;
  z-index: 20000;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--paper);
  animation: loading-screen-out 500ms ease-in-out 2600ms both;
}

.loading-screen__identity {
  display: inline-flex;
  width: max-content;
  margin: 0;
  align-items: baseline;
  gap: 4px;
  font-size: var(--type-body-size);
  font-weight: 400;
  line-height: var(--type-body-leading);
  white-space: nowrap;
}

.loading-screen__name,
.loading-screen__role {
  display: inline-flex;
  align-items: baseline;
  gap: 0.25em;
}

.loading-screen__role {
  color: var(--ink-40);
}

.loading-screen__word {
  display: inline-block;
  opacity: 0;
  animation:
    loading-word-in 500ms var(--ease-enter) var(--word-enter-delay) both,
    loading-word-out 450ms cubic-bezier(0.55, 0, 1, 0.45) var(--word-exit-delay) forwards;
}

.loading-screen__name .loading-screen__word:nth-child(1) {
  --word-enter-delay: 200ms;
  --word-exit-delay: 1900ms;
}

.loading-screen__name .loading-screen__word:nth-child(2) {
  --word-enter-delay: 280ms;
  --word-exit-delay: 1980ms;
}

.loading-screen__role .loading-screen__word:nth-child(1) {
  --word-enter-delay: 360ms;
  --word-exit-delay: 2060ms;
}

.loading-screen__role .loading-screen__word:nth-child(2) {
  --word-enter-delay: 440ms;
  --word-exit-delay: 2140ms;
}

.loading-screen__role .loading-screen__word:nth-child(3) {
  --word-enter-delay: 520ms;
  --word-exit-delay: 2220ms;
}

html.intro-entry-pending main {
  animation: intro-page-in 1000ms var(--ease-enter) 2900ms both;
}

@keyframes loading-word-in {
  from {
    opacity: 0;
    transform: translate3d(0, -10px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes loading-word-out {
  from {
    opacity: 1;
    transform: none;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 10px, 0);
  }
}

@keyframes loading-screen-out {
  from {
    visibility: visible;
    opacity: 1;
  }
  to {
    visibility: hidden;
    opacity: 0;
  }
}

@keyframes intro-page-in {
  from {
    opacity: 0;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Geist", Arial, sans-serif;
  font-feature-settings: "ss01" 1, "ss03" 1;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
}

body.is-route-transitioning {
  overflow-x: clip;
  overflow-y: visible;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

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

.site-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 10000;
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  padding: 29px var(--space-page) 12px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, -10px, 0);
  transition: opacity 180ms ease, transform 240ms var(--ease-enter), visibility 180ms;
}

.site-header.is-visible {
  visibility: visible;
  opacity: 1;
  transform: none;
}

.site-header.is-visible > * {
  pointer-events: auto;
}

.pill-nav {
  position: relative;
  display: flex;
  align-items: flex-start;
  overflow: clip;
  padding: var(--space-micro);
  border-radius: 15px;
  background: rgba(245, 245, 245, 0.72);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  backdrop-filter: blur(18px) saturate(1.2);
  justify-self: center;
}

.pill-nav__indicator {
  position: absolute;
  left: var(--space-micro);
  top: var(--space-micro);
  width: var(--indicator-w, 78px);
  height: 40px;
  border-radius: 12px;
  background: #fff;
  opacity: var(--indicator-opacity, 0);
  transform: translateX(var(--indicator-x, 0));
  transition: transform 240ms, width 240ms, opacity 160ms;
}

.pill-nav :is(button, a) {
  position: relative;
  z-index: 1;
  display: flex;
  height: 40px;
  margin: 0;
  border: 0;
  border-radius: 999px;
  padding: 12px 20px;
  align-items: center;
  justify-content: center;
  color: var(--ink-60);
  background: transparent;
  font-size: var(--type-navigation-size);
  font-weight: 400;
  line-height: var(--type-navigation-leading);
  letter-spacing: 0;
  white-space: nowrap;
  cursor: pointer;
}

.pill-nav :is(button, a):focus-visible {
  outline: 1px solid var(--blue);
  outline-offset: -2px;
}

main {
  overflow: clip;
}

main.route-out {
  animation: 400ms ease-in forwards route-out;
}

main.route-out-pop {
  animation: 400ms ease-in forwards route-out-pop;
}

main.route-in {
  animation: 800ms var(--ease-enter) route-in;
}

main.route-in-pop {
  animation: 800ms var(--ease-enter) route-in-pop;
}

@keyframes route-out {
  80% { opacity: 0; }
  to { opacity: 0; transform: translate3d(-10px, 0, 0); }
}

@keyframes route-out-pop {
  80% { opacity: 0; }
  to { opacity: 0; transform: translate3d(10px, 0, 0); }
}

@keyframes route-in {
  from { opacity: 0; transform: translate3d(max(1vw, 25px), 0, 0); }
  to { opacity: 1; transform: none; }
}

@keyframes route-in-pop {
  from { opacity: 0; transform: translate3d(min(-1vw, -25px), 0, 0); }
  to { opacity: 1; transform: none; }
}

.project-page {
  overflow: visible;
}

.project-page article {
  overflow: hidden;
}

.project-hero,
.project-result,
.project-copy-section,
.project-shift {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding-inline: var(--space-page);
}

.project-hero,
.project-result {
  min-height: 842px;
}

.project-hero {
  min-height: 90vh;
  min-height: 90svh;
  padding-top: var(--site-header-clearance);
}

.project-hero__content,
.project-result__content {
  display: flex;
  width: min(1016px, 100%);
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.project-display-title {
  width: 100%;
  margin: 0;
  color: var(--ink);
  font-size: clamp(48px, 4.17vw, 60px);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.preserve-lines {
  white-space: pre-line;
}

.project-hero__summary,
.project-result__summary {
  width: min(472px, 100%);
  margin-top: 0;
}

.project-result__summary {
  width: min(511px, 100%);
}

.project-media {
  position: relative;
  width: min(calc(100% - (var(--space-page) * 2)), 1480px);
  aspect-ratio: var(--project-media-aspect-ratio, 1480 / 722);
  margin: 0 auto;
  border-radius: clamp(18px, 1.9vw, 28px);
  overflow: hidden;
  background: var(--field);
}

.project-media img,
.project-media video,
.project-gallery__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-copy-section,
.project-shift {
  min-height: 1000px;
  padding-block: var(--space-pause);
}

.eyebrow-title-lockup {
  display: flex;
  width: min(707px, 100%);
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.eyebrow-title-lockup h2,
.eyebrow-title-lockup .eyebrow-title-lockup__title {
  margin: 0;
  color: var(--ink);
  font-size: 30px;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.project-gallery {
  --project-carousel-height: 750px;
  display: block;
  width: 100%;
  height: var(--project-carousel-height);
  padding: 0;
  overflow: hidden;
}

.project-gallery__item {
  width: auto;
  height: var(--project-carousel-height);
  aspect-ratio: var(--project-gallery-item-aspect-ratio, 4 / 5);
  margin: 0;
  flex: 0 0 auto;
  border-radius: 30px;
  overflow: hidden;
  background: var(--field);
}

.project-shift__content {
  display: flex;
  width: min(600px, 100%);
  flex-direction: column;
  align-items: center;
  gap: 90px;
}

.project-shift .eyebrow-title-lockup {
  width: 100%;
}

.project-shift__table {
  grid-template-rows: minmax(33px, auto);
  grid-auto-rows: minmax(35px, auto);
}

.project-result {
  padding-block: var(--space-pause);
}

.project-footer {
  display: flex;
  min-height: 300px;
  align-items: center;
  justify-content: center;
  padding: var(--space-page);
}

.project-footer .text-cta {
  margin-top: 0;
}

.styleguide-page {
  overflow: visible;
  padding: 0 var(--space-page);
}

.styleguide-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.styleguide-hero {
  display: flex;
  min-height: 70vh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.styleguide-hero .supporting-copy {
  width: min(560px, 100%);
}

.styleguide-section {
  padding: var(--space-section) 0;
  border-top: 1px solid var(--ink-10);
}

.styleguide-section > .section-label {
  margin-bottom: var(--space-copy);
}

.styleguide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-page);
}

.styleguide-specimen {
  display: flex;
  min-width: 0;
  min-height: 180px;
  border-radius: var(--radius-card);
  padding: var(--space-page);
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-copy);
  background: rgba(0, 0, 0, 0.025);
}

.styleguide-specimen--wide {
  grid-column: 1 / -1;
}

.styleguide-meta {
  margin: 0;
  color: var(--ink-40);
  font-size: var(--type-label-size);
  line-height: var(--type-label-leading);
}

.styleguide-lockup-specimen .eyebrow-title-lockup {
  margin: auto;
}

.styleguide-heading-sample,
.styleguide-body-sample,
.styleguide-annotation-sample {
  margin: 0;
  font-weight: 400;
}

.styleguide-title-sample {
  margin: 0;
  font-size: var(--type-title-size);
  font-weight: var(--type-title-weight);
  line-height: var(--type-title-leading);
  letter-spacing: var(--type-title-tracking);
}

.styleguide-heading-sample {
  font-size: var(--type-heading-size);
  line-height: var(--type-heading-leading);
}

.styleguide-body-sample {
  color: var(--muted);
  font-size: var(--type-body-size);
  line-height: var(--type-body-leading);
}

.styleguide-annotation-sample {
  color: var(--ink-60);
  font-size: var(--type-label-size);
  line-height: var(--type-label-leading);
}

.styleguide-navigation-sample {
  margin: 0;
  color: var(--ink-60);
  font-size: var(--type-navigation-size);
  font-weight: 400;
  line-height: var(--type-navigation-leading);
}

.styleguide-text-block {
  border-radius: var(--radius-card);
  padding: clamp(var(--space-page), 6vw, var(--space-section));
  background: rgba(0, 0, 0, 0.025);
}

.styleguide-text-block__content {
  width: min(760px, 100%);
  margin: 0 auto;
  text-align: center;
}

.styleguide-spacing-specs {
  display: grid;
  margin: 0 0 var(--space-page);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-sm);
}

.styleguide-spacing-specs div {
  min-width: 0;
  border-radius: var(--radius-image);
  padding: var(--space-4);
  background: rgba(0, 0, 0, 0.025);
}

.styleguide-spacing-specs dt,
.styleguide-spacing-specs dd {
  margin: 0;
}

.styleguide-spacing-specs dt {
  color: var(--ink-40);
  font-size: var(--type-label-size);
  line-height: var(--type-label-leading);
}

.styleguide-spacing-specs dd {
  margin-top: var(--space-2);
  color: var(--ink);
  font-size: var(--type-body-size);
  line-height: var(--type-body-leading);
}

.styleguide-spacing-specs code {
  display: block;
  margin-top: var(--space-1);
  color: var(--ink-60);
  font-family: inherit;
  font-size: var(--type-label-size);
  line-height: var(--type-label-leading);
}

.styleguide-text-block .display-title {
  max-width: 16ch;
  margin-inline: auto;
}

.styleguide-text-block .supporting-copy {
  max-width: 52ch;
  margin-inline: auto;
}

.styleguide-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-copy);
}

.styleguide-controls .pill-nav__indicator {
  width: 82px;
  opacity: 1;
}

.styleguide-controls .text-cta {
  margin-top: 0;
}

.styleguide-controls .intro__cta-wrap {
  margin-top: 0;
}

.styleguide-color-grid {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: var(--space-sm);
}

.styleguide-swatch {
  min-width: 0;
}

.styleguide-swatch-color {
  display: block;
  height: 96px;
  margin-bottom: var(--space-sm);
  border: 1px solid var(--ink-10);
  border-radius: var(--radius-image);
  background: var(--swatch);
}

.styleguide-swatch-name {
  display: block;
  color: var(--muted);
  font-size: var(--type-label-size);
  line-height: var(--type-label-leading);
}

.styleguide-form {
  width: min(456px, 100%);
}

.styleguide-comparison {
  width: min(596px, 100%);
}

.styleguide-table-specimen {
  width: 100%;
}

.styleguide-form-specs,
.styleguide-table-specs,
.styleguide-gallery-specs {
  display: grid;
  width: 100%;
  margin: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-page);
}

.styleguide-form-specs div,
.styleguide-table-specs div,
.styleguide-gallery-specs div {
  padding-top: var(--space-sm);
  border-top: 1px solid var(--ink-10);
}

.styleguide-form-specs dt,
.styleguide-form-specs dd,
.styleguide-table-specs dt,
.styleguide-table-specs dd,
.styleguide-gallery-specs dt,
.styleguide-gallery-specs dd {
  margin: 0;
  font-size: var(--type-label-size);
  line-height: var(--type-label-leading);
}

.styleguide-form-specs dt,
.styleguide-table-specs dt,
.styleguide-gallery-specs dt {
  color: var(--ink-40);
}

.styleguide-form-specs dd,
.styleguide-table-specs dd,
.styleguide-gallery-specs dd {
  margin-top: var(--space-xs);
  color: var(--ink);
}

.styleguide-gallery-specimen {
  --gallery-card-height: clamp(240px, 42vw, 520px);
  width: 100%;
  overflow: hidden;
}

.styleguide-gallery-specimen .carousel {
  width: 100%;
}

.screen {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  padding-block: 20vh;
  padding-inline: var(--space-page);
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.intro {
  padding-top: calc(20vh + var(--site-header-clearance));
}

.about-page {
  overflow: clip;
}

.about-hero {
  min-height: max(118svh, 1120px);
  padding-top: 40vh;
  padding-bottom: 0;
  align-items: flex-start;
  text-align: center;
}

.display-title.about-hero__title {
  width: 100%;
  max-width: none;
}

.about-hero__title > span {
  display: block;
}

.about-hero__title > span + span {
  margin-top: 1.2em;
}

.has-about-hero-reveal .about-hero:not(.is-reveal-ready) .about-hero__title > span:not(:first-child) {
  visibility: hidden;
}

.about-hero__title .about-hero__glyph {
  display: inline;
  color: inherit;
}

.about-hero__title .about-hero__glyph.is-blue-blip {
  color: var(--blue);
}

.about-hero__title .about-hero__word {
  display: inline-block;
  will-change: transform;
}

.about-hero__title .about-hero__nowrap {
  display: inline-block;
  white-space: nowrap;
}

.about-process-intro {
  min-height: max(100svh, 1000px);
  padding-top: 16vh;
  padding-bottom: 0;
}

.about-process-intro__content {
  width: 100%;
}

.about-process-intro__content .title {
  width: min(634px, 100%);
}

.about-process-intro__content .supporting-copy {
  width: min(420px, 100%);
}

.about-process {
  position: relative;
  height: 420svh;
  min-height: 3200px;
}

.about-process__stage {
  position: sticky;
  top: 0;
  display: grid;
  width: 100%;
  height: 100vh;
  height: 100svh;
  min-height: 700px;
  padding: 10px var(--space-page);
  place-items: center;
  overflow: hidden;
}

.about-process__composition {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.about-process__field {
  position: relative;
  display: block;
  width: min(933px, calc(100vw - (2 * var(--space-page))));
  height: min(680px, 62svh);
  flex: none;
}

.about-process__card {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(370px, 100%);
  flex-direction: column;
  align-items: center;
  gap: var(--space-block);
  text-align: center;
}

.about-process__cards {
  display: grid;
  width: 100%;
}

.about-process__copy {
  grid-area: 1 / 1;
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 0;
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  will-change: opacity, transform;
}

.about-process__copy:first-child {
  opacity: 1;
  transform: none;
}

.about-process__copy .title {
  width: 100%;
  margin-top: 10px;
}

.about-process__copy .supporting-copy {
  width: 100%;
  margin-top: 10px;
}

.about-process__progress {
  display: flex;
  width: 180px;
  height: 5px;
  gap: 5px;
}

.about-process__progress span {
  position: relative;
  display: block;
  height: 5px;
  flex: 1;
  border-radius: 3px;
  background: #d9d9d9;
  overflow: hidden;
}

.about-process__progress i {
  position: absolute;
  inset: 0;
  display: block;
  border-radius: inherit;
  background: var(--blue);
  transform: scaleX(var(--phase-progress, 0));
  transform-origin: left;
  will-change: transform;
}

.about-difference,
.about-contact {
  min-height: max(100svh, 1000px);
}

.about-difference {
  gap: 80px;
}

.about-difference .difference__header {
  gap: 0;
}

.about-contact {
  gap: 80px;
}

.about-contact .title--contact {
  width: min(568px, 100%);
}

.intro__content,
.difference__header,
.contact__header {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.display-title {
  width: min(892px, 100%);
  margin: 0;
  color: var(--ink);
  font-size: var(--type-display-size);
  font-weight: 300;
  line-height: var(--type-display-leading);
  letter-spacing: var(--type-display-tracking);
  text-wrap: balance;
}

.display-title span {
  display: block;
}

.title {
  width: min(892px, 100%);
  margin: 0;
  color: var(--ink);
  font-size: var(--type-title-size);
  font-weight: var(--type-title-weight);
  line-height: var(--type-title-leading);
  letter-spacing: var(--type-title-tracking);
  text-wrap: balance;
}

.title span {
  display: block;
}

.supporting-copy,
.section-label {
  margin: 0;
  color: var(--muted);
  font-size: var(--type-body-size);
  font-weight: 400;
  line-height: var(--type-body-leading);
}

.supporting-copy {
  text-wrap: pretty;
}

.section-label {
  letter-spacing: 0;
  text-transform: none;
}

/*
  Shared text-block rhythm. The relationship determines the spacing token,
  independent of whether the headline uses Display, Title, or project type.
*/
.text-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-align: center;
}

.text-block > .section-label + :is(.display-title, .title, .project-display-title, .eyebrow-title-lockup__title, h1, h2) {
  margin-top: var(--space-related);
}

.text-block > :is(.display-title, .title, .project-display-title, .eyebrow-title-lockup__title, h1, h2) + .supporting-copy {
  margin-top: var(--space-group);
}

.text-block > .supporting-copy + :is(.text-cta, .intro__cta-wrap) {
  margin-top: var(--space-block);
}

.text-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 0;
  color: var(--blue);
  font-size: var(--type-control-size);
  line-height: 1;
  text-decoration: none;
  transition: gap 200ms ease, color 160ms ease;
}

.text-cta:hover,
.text-cta:focus-visible {
  gap: 20px;
  color: var(--blue-hover);
}

.text-cta:focus-visible {
  border-radius: 3px;
  outline: 1px solid currentColor;
  outline-offset: 5px;
}

.intro__cta-wrap {
  display: inline-flex;
  width: max-content;
}

.intro__cta-wrap .text-cta {
  margin-top: 0;
  padding: 10px;
}

.arrow-tile,
.arrow-tile svg {
  display: block;
  width: 16px;
  height: 16px;
  flex: none;
}

.arrow-tile {
  border-radius: var(--radius-image);
  background: currentColor;
}

.arrow-tile path {
  stroke: #fff;
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.work {
  --gallery-card-height: min(80vh, 722px);
  height: 100vh;
  height: 100svh;
  flex-direction: column;
  padding-block: 10vh;
  padding-inline: 0;
  background: var(--paper);
}

.carousel {
  width: 100%;
  height: var(--gallery-card-height);
  flex: none;
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y pinch-zoom;
  user-select: none;
}

.carousel.is-dragging {
  cursor: grabbing;
}

.carousel__track,
.carousel__set {
  display: flex;
  width: max-content;
  height: 100%;
  gap: clamp(30px, 5.26vw, 90px);
}

.carousel__track {
  will-change: transform;
}

.carousel__set {
  flex: 0 0 auto;
}

.carousel-item {
  position: relative;
  display: flex;
  height: 100%;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: center;
}

.carousel-card {
  position: relative;
  height: var(--gallery-card-height);
  aspect-ratio: var(--thumbnail-aspect-ratio, 1012.251 / 722);
  flex: 0 0 auto;
  border-radius: clamp(12px, 1.59vw, 27.211px);
  overflow: hidden;
  background: var(--paper);
}

.carousel-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.work__cta {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 1;
  margin-top: 0;
  border: 0;
  border-radius: 6px;
  padding: 10px 18px;
  gap: 10px;
  color: var(--blue);
  background: var(--field);
  font: inherit;
  font-size: 15px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(calc(-50% + var(--work-cta-shift, 0px)), 8px, 0);
  transition: opacity 180ms ease, transform 240ms var(--ease-enter);
}

.carousel-item:hover .work__cta,
.carousel-item:focus-within .work__cta {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(calc(-50% + var(--work-cta-shift, 0px)), 0, 0);
}

.carousel.is-dragging .work__cta {
  opacity: 0;
  pointer-events: none;
  transform: translate3d(calc(-50% + var(--work-cta-shift, 0px)), 8px, 0);
}

.work__cta:hover,
.work__cta:focus-visible {
  gap: 10px;
  color: var(--blue);
}

.work__cta .arrow-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}

.work__cta .arrow-tile svg {
  width: 11.726px;
  height: 11.726px;
}

@media (max-width: 760px), (hover: none), (pointer: coarse) {
  .work__cta {
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(calc(-50% + var(--work-cta-shift, 0px)), 0, 0);
    transition: none;
  }

  .carousel.is-dragging .work__cta {
    opacity: 1;
    pointer-events: none;
    transform: translate3d(calc(-50% + var(--work-cta-shift, 0px)), 0, 0);
  }
}

.difference {
  flex-direction: column;
  gap: var(--space-section);
}

.difference__header {
  gap: 0;
}

.title--section {
  width: max-content;
  max-width: 100%;
}

.difference-table {
  display: grid;
  width: min(596px, 100%);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: minmax(33px, auto) repeat(6, minmax(35px, auto));
  gap: 4px;
}

.difference-table__cell {
  display: flex;
  min-width: 0;
  min-height: 35px;
  border-radius: var(--radius-image);
  padding: 7px 30px 7px 10px;
  align-items: flex-start;
  color: #5b5b5b;
  background: #ebebeb;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  word-break: break-word;
  transform: translate3d(0, 0, 0);
  will-change: opacity, transform;
}

.difference-table__cell--after {
  color: #fff;
  background: #3191ff;
}

.difference-table__cell--header {
  min-height: 33px;
  padding: 6px 10px;
  color: #5b5b5b;
  background: #dadada;
}

.difference-table__cell--header.difference-table__cell--after {
  color: #fff;
  background: var(--blue);
}

.contact {
  flex-direction: column;
  gap: var(--space-section);
}

.contact__header {
  gap: 0;
}

.title--contact {
  width: min(568px, 100%);
}

.contact__intro {
  width: min(378px, 100%);
}

.contact-form {
  display: flex;
  width: min(456px, 100%);
  flex-direction: column;
  gap: 7px;
}

.contact-form__row {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
}

.contact-form > div,
.contact-form__row > div {
  min-width: 0;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.contact-form button {
  display: block;
  width: 100%;
  min-width: 0;
  border: 0;
  border-radius: var(--radius-image);
  padding: 10px 18px;
  font-size: var(--type-control-size);
  font-weight: 400;
  line-height: normal;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  color: var(--ink);
  background: var(--field);
  transition: background 160ms ease, outline-color 160ms ease;
}

.contact-form input,
.contact-form select {
  height: 40px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder,
.contact-form select:invalid {
  color: #5b5b5b;
  opacity: 1;
}

.contact-form textarea {
  height: 99px;
  min-height: 99px;
  resize: none;
}

.select-wrap {
  position: relative;
  display: block;
}

.contact-form select {
  padding-right: 48px;
  appearance: none;
  cursor: pointer;
}

.select-wrap::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M4 7.5L10 13L16 7.5' stroke='%235B5B5B' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 20px 20px no-repeat;
  pointer-events: none;
  transform: translateY(-50%);
}

.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover {
  background: #e7e7e7;
}

.contact-form input:focus-visible,
.contact-form select:focus-visible,
.contact-form textarea:focus-visible {
  outline: 1px solid var(--blue);
  outline-offset: 0;
  background: var(--field);
}

.contact-form button {
  display: flex;
  height: 40px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  background: var(--blue);
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.contact-form button:not(:disabled):hover {
  background: var(--blue-hover);
}

.contact-form button:not(:disabled):active {
  transform: translateY(1px);
}

.contact-form button:focus-visible {
  outline: 1px solid var(--ink);
  outline-offset: 4px;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.contact-form button.is-loading {
  background: var(--blue-active);
  opacity: 1;
}

.contact-form button.is-loading::before {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.42);
  border-top-color: #fff;
  border-radius: 50%;
  content: "";
  animation: contact-submit-spin 700ms linear infinite;
}

.contact-form button.is-success {
  background: #168a48;
  cursor: default;
  opacity: 1;
}

.contact-form button.is-success::before {
  width: 7px;
  height: 12px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  content: "";
  transform: translateY(-1px) rotate(45deg);
}

@keyframes contact-submit-spin {
  to {
    transform: rotate(360deg);
  }
}

.contact-form__honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.contact-form__turnstile {
  width: 100%;
  min-height: 65px;
}

.contact-form__status {
  margin: var(--space-1) 0 0;
  color: var(--ink-60);
  font-size: var(--type-label-size);
  line-height: var(--type-label-leading);
}

.contact-form__status.is-success {
  color: #126b37;
}

.contact-form__status.is-error {
  color: #9d1c1c;
}

.contact-form__privacy {
  margin: var(--space-1) 0 0;
  color: var(--ink-60);
  font-size: var(--type-label-size);
  line-height: var(--type-label-leading);
}

.contact-form__privacy a,
.legal-copy a {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.site-footer {
  display: flex;
  width: 100%;
  padding: 20px;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-page);
  background: var(--paper);
}

.site-footer > p {
  margin: 0;
  color: #5b5b5b;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  white-space: nowrap;
}

.site-footer__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
}

.site-footer__link {
  display: inline-block;
  color: var(--blue);
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  white-space: nowrap;
}

.site-footer__link:hover {
  color: var(--blue-hover);
}

.site-footer__link:focus-visible {
  border-radius: var(--radius-image);
  outline: 1px solid var(--blue);
  outline-offset: 4px;
}

.legal-page {
  overflow: visible;
  padding: var(--site-header-clearance) var(--space-page) var(--space-10);
}

.legal-shell {
  width: min(960px, 100%);
  margin: 0 auto;
}

.legal-hero {
  display: flex;
  min-height: 58svh;
  padding-block: var(--space-9);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.legal-hero .display-title {
  width: min(780px, 100%);
}

.legal-hero .supporting-copy {
  width: min(590px, 100%);
}

.legal-draft-note {
  margin-bottom: var(--space-section);
  border-radius: var(--radius-card);
  padding: var(--space-page);
  color: var(--ink);
  background: rgba(0, 119, 255, 0.08);
  font-size: var(--type-body-size);
  line-height: 1.55;
}

.legal-draft-note strong {
  display: block;
  margin-bottom: var(--space-2);
  font-size: var(--type-heading-size);
  font-weight: 400;
  line-height: var(--type-heading-leading);
}

.legal-sections {
  border-bottom: 1px solid var(--ink-10);
}

.legal-section {
  display: grid;
  grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
  gap: var(--space-page);
  border-top: 1px solid var(--ink-10);
  padding-block: var(--space-7);
}

.legal-section h2 {
  margin: 0;
  color: var(--ink);
  font-size: var(--type-heading-size);
  font-weight: 400;
  line-height: var(--type-heading-leading);
  letter-spacing: -0.02em;
}

.legal-copy {
  width: min(66ch, 100%);
  color: var(--ink-60);
  font-size: var(--type-body-size);
  line-height: 1.55;
}

.legal-copy :is(p, ul) {
  margin: 0;
}

.legal-copy :is(p, ul) + :is(p, ul) {
  margin-top: var(--space-4);
}

.legal-copy ul {
  padding-left: 1.2em;
}

.legal-copy li + li {
  margin-top: var(--space-2);
}

.legal-copy strong {
  color: var(--ink);
  font-weight: 500;
}

.legal-copy code {
  font: inherit;
  color: var(--ink);
}

.legal-placeholder {
  display: inline-block;
  border-radius: var(--radius-image);
  padding: 2px 6px;
  color: var(--blue);
  background: rgba(0, 119, 255, 0.08);
}

.legal-meta {
  margin-top: var(--space-section);
  color: var(--ink-40);
  font-size: var(--type-label-size);
  line-height: var(--type-label-leading);
}

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

@media (max-width: 760px) {
  :root {
    --space-page: 20px;
    --site-header-clearance: 78px;
  }

  .site-header {
    grid-template-columns: 1fr;
    padding: 16px var(--space-page);
  }

  .styleguide-page {
    padding: 0 var(--space-page);
  }

  .styleguide-grid {
    grid-template-columns: 1fr;
  }

  .styleguide-specimen--wide {
    grid-column: auto;
  }

  .styleguide-specimen {
    padding: var(--space-page);
  }

  .styleguide-color-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .styleguide-form-specs,
  .styleguide-table-specs,
  .styleguide-gallery-specs,
  .styleguide-spacing-specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-result {
    min-height: 100svh;
  }

  .project-display-title {
    font-size: clamp(38px, 10vw, 48px);
    line-height: 1.12;
  }

  .project-display-title br,
  .eyebrow-title-lockup br {
    display: none;
  }

  .preserve-lines {
    white-space: normal;
  }

  .project-media {
    width: calc(100% - 40px);
    border-radius: var(--radius-card);
  }

  .project-copy-section,
  .project-shift {
    min-height: 100svh;
    padding-block: 20vh;
  }

  .eyebrow-title-lockup h2,
  .eyebrow-title-lockup .eyebrow-title-lockup__title {
    font-size: 26px;
  }

  .project-gallery {
    --project-carousel-height: min(70svh, 650px);
  }

  .project-gallery__item {
    border-radius: var(--radius-card);
  }

  .project-shift__content {
    gap: var(--space-section);
  }

  .display-title span,
  .title span {
    display: inline;
  }

  .about-hero {
    min-height: 120svh;
    padding-top: 40vh;
    padding-bottom: 10vh;
    align-items: flex-start;
  }

  .display-title.about-hero__title {
    font-size: clamp(30px, 8.2vw, 34px);
    letter-spacing: var(--type-display-tracking);
    word-spacing: normal;
  }

  .about-hero__title > span {
    display: block;
  }

  .about-process-intro,
  .about-difference,
  .about-contact {
    min-height: 100svh;
  }

  .about-process {
    height: 380svh;
    min-height: 2600px;
  }

  .about-process__stage {
    min-height: 620px;
    padding-bottom: var(--space-page);
  }

  .about-process__field {
    height: min(60svh, 560px);
  }

  .about-process__card {
    width: min(370px, calc(100vw - 40px));
    gap: var(--space-group);
  }

  .about-difference,
  .about-contact {
    gap: var(--space-section);
  }

  .work {
    --gallery-card-height: min(62svh, 520px);
  }

  .intro {
    padding-bottom: 14vh;
  }

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

  .display-title span + span::before,
  .title span + span::before {
    content: " ";
  }

  .supporting-copy br {
    display: none;
  }

  .difference {
    gap: 28px;
  }

  .contact {
    gap: clamp(24px, 4vh, 36px);
  }

  .site-footer {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .site-footer__nav {
    width: 100%;
    justify-content: center;
  }

  .legal-page {
    padding-bottom: var(--space-9);
  }

  .legal-hero {
    min-height: 52svh;
    padding-block: var(--space-8);
  }

  .legal-section {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

}

@media (max-width: 480px) {
  .styleguide-spacing-specs {
    grid-template-columns: 1fr;
  }
  :root {
    --type-display-size: clamp(38px, 10vw, 42px);
  }

  .site-footer > p {
    white-space: normal;
  }

  .site-footer__nav {
    gap: 20px;
  }
}

@media (max-height: 700px) {
  .contact {
    gap: 22px;
  }

  .contact__header {
    gap: 0;
  }

  .title--contact {
    font-size: 36px;
  }

  .about-process__field {
    height: min(56svh, 470px);
  }

  .about-process__card {
    gap: var(--space-group);
  }

}

@media (max-height: 620px) {
  .contact {
    gap: 14px;
  }

  .contact__header {
    gap: 0;
  }

  .contact .supporting-copy {
    font-size: 13px;
  }

  .title--contact {
    font-size: 32px;
  }

}
