:root {
  --ink: #090909;
  --paper: #ffffff;
  --white: #ffffff;
  --muted: #5f5f5f;
  --line: #d9d9d9;
  --blue: #1248ff;
  --shell: 1600px;
  --gutter: clamp(18px, 4vw, 58px);
  --header-height: 92px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, "Microsoft YaHei", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

button,
input,
textarea,
select {
  color: inherit;
  font: inherit;
  letter-spacing: 0;
}

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

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

img,
video {
  display: block;
  max-width: 100%;
}

figure,
h1,
h2,
h3,
p {
  margin: 0;
}

.shell {
  width: min(calc(100% - (var(--gutter) * 2)), var(--shell));
  margin-inline: auto;
}

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

.skip-link:focus {
  z-index: 300;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  background: var(--white);
  color: var(--ink);
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  color: var(--ink);
  transition: color 300ms ease, background-color 300ms ease;
}

.site-header.is-over-dark {
  color: var(--white);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
}

.site-header.is-scrolled.is-over-dark {
  background: rgba(9, 9, 9, 0.9);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 19px;
  font-weight: 500;
}

.brand-copy small {
  margin-top: 5px;
  font-size: 9px;
  font-weight: 700;
}

.desktop-nav,
.footer-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
  font-size: 20px;
  font-weight: 400;
}

.desktop-nav a::after,
.section-link::after,
.contact-line a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav a.is-active::after,
.section-link:hover::after,
.section-link:focus-visible::after,
.contact-line a:hover::after,
.contact-line a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.desktop-nav .nav-contact {
  min-width: 0;
  padding: 10px 0;
  border: 0;
  text-align: left;
}

.desktop-nav .nav-contact::after {
  display: block;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before {
  display: block;
  width: 24px;
  height: 2px;
  margin: auto;
  content: "";
  background: currentColor;
  transition: transform 240ms ease;
}

.menu-toggle span::before {
  transform: translateY(-7px);
}

.menu-toggle.is-open span {
  transform: rotate(45deg);
}

.menu-toggle.is-open span::before {
  transform: rotate(-90deg);
}

.mobile-nav {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 96px var(--gutter) 40px;
  visibility: hidden;
  background: var(--ink);
  color: var(--white);
  opacity: 0;
  transform: translateY(-16px);
  transition: visibility 0s linear 320ms, opacity 320ms ease, transform 320ms ease;
}

.mobile-nav.is-open {
  visibility: visible;
  opacity: 1;
  transform: none;
  transition-delay: 0s;
}

.mobile-nav a {
  padding: 7px 0;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.15;
}

.mobile-nav a.is-active {
  color: #8ea7ff;
}

.front-flash {
  position: relative;
  z-index: 10;
  padding: calc(var(--header-height) + 10px) 0 10px;
  background: #e7f7ea;
}

.front-flash.error {
  background: #ffe8e5;
}

.section-kicker,
.contact-label,
.case-meta {
  font-size: 10px;
  font-weight: 500;
  line-height: 1.3;
  text-transform: uppercase;
}

.section-title {
  max-width: 850px;
  margin-top: 18px;
  font-size: 52px;
  font-weight: 400;
  line-height: 1.06;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 70px;
}

.section-link {
  position: relative;
  flex: 0 0 auto;
  padding-bottom: 7px;
  font-size: 16px;
  font-weight: 400;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 0;
  border: 1px solid currentColor;
  border-width: 0 0 1px;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  transition: background-color 220ms ease, color 220ms ease, border-color 220ms ease;
}

.btn:hover,
.btn:focus-visible {
  background: var(--ink);
  color: var(--white);
}

.btn-primary {
  border-color: currentColor;
  background: transparent;
  color: inherit;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  border-color: var(--blue);
  background: transparent;
  color: var(--blue);
}

.banner {
  position: relative;
  min-height: 620px;
  height: 100svh;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.banner-slides,
.banner-slide,
.banner-media-wrap,
.banner::after {
  position: absolute;
  inset: 0;
}

.banner-slide {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: visibility 0s linear 900ms, opacity 900ms ease;
}

.banner-slide.is-active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0s;
}

.banner-media-wrap {
  overflow: hidden;
}

.banner::after {
  z-index: 1;
  content: "";
  background: rgba(0, 0, 0, 0.22);
  pointer-events: none;
}

.banner-media {
  width: 100%;
  height: calc(100% + 48px);
  object-fit: cover;
  transform: translateY(var(--media-shift, 0)) scale(1.06);
  transform-origin: center;
  transition: transform 7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.banner-slide.is-active .banner-media {
  transform: translateY(var(--media-shift, 0)) scale(1.015);
}

.banner-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 100%;
  padding-bottom: 40px;
}

.banner-copy {
  display: grid;
  gap: 9px;
  width: fit-content;
  max-width: min(760px, calc(100% - 320px));
}

.banner-copy span {
  font-size: 10px;
  font-weight: 500;
}

.banner-copy strong {
  max-width: 760px;
  font-size: 27px;
  font-weight: 400;
  line-height: 1.24;
}

.hero-controls {
  position: absolute;
  z-index: 4;
  right: var(--gutter);
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-controls button {
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  place-items: center;
  transition: background-color 220ms ease, color 220ms ease;
}

.hero-controls button:hover,
.hero-controls button:focus-visible {
  background: var(--white);
  color: var(--ink);
}

.hero-counter {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 78px;
  color: var(--white);
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
}

.hero-counter i {
  width: 28px;
  height: 1px;
  background: rgba(255, 255, 255, 0.6);
}

[data-parallax] {
  transform: translate3d(0, var(--parallax-y, 0), 0);
  will-change: transform;
}

.home-statement {
  padding: 140px 0 115px;
  background: var(--paper);
}

.statement-lead {
  max-width: var(--shell);
  margin-inline: auto;
}

.statement-title {
  max-width: 1020px;
  margin-top: 30px;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.1;
}

.statement-copy {
  max-width: 1020px;
  margin-top: 4px;
  font-size: 48px;
  font-weight: 300;
  line-height: 1.1;
}

.selected {
  padding: 70px 0 190px;
  background: var(--white);
  color: var(--ink);
}

.selected-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 110px 28px;
  align-items: start;
}

.selected-card,
.case-card {
  min-width: 0;
}

.selected-card:nth-child(even) {
  margin-top: 210px;
}

.selected-card:nth-child(3) {
  margin-top: -180px;
}

.selected-cover,
.case-visual {
  position: relative;
  overflow: hidden;
  background: #deded9;
}

.selected-cover {
  aspect-ratio: 16 / 9;
}

.selected-cover::after,
.case-visual::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background: rgba(0, 0, 0, 0.2);
  pointer-events: none;
  transition: background-color 500ms ease;
}

.selected-card:hover .selected-cover::after,
.selected-card:focus-visible .selected-cover::after,
.case-card a:hover .case-visual::after,
.case-card a:focus-visible .case-visual::after,
.case-card button:hover .case-visual::after,
.case-card button:focus-visible .case-visual::after {
  background: rgba(0, 0, 0, 0.08);
}

.selected-cover img,
.case-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 4s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.selected-card:hover img,
.selected-card:focus-visible img,
.case-card a:hover img,
.case-card a:focus-visible img,
.case-card button:hover img,
.case-card button:focus-visible img {
  transform: scale(1.055);
}

.selected-copy {
  position: absolute;
  z-index: 2;
  right: 32px;
  bottom: 28px;
  left: 32px;
  display: grid;
  gap: 7px;
  color: var(--white);
}

.selected-copy small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
}

.selected-copy strong {
  font-size: 26px;
  font-weight: 300;
  line-height: 1.18;
}

.service-preview {
  padding: 80px 0 180px;
  border-top: 0;
  background: var(--white);
  color: var(--ink);
}

.service-preview .section-head {
  width: 100%;
  margin-left: 0;
}

.service-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  margin-left: 0;
  border-top: 1px solid var(--ink);
}

.service-preview-grid article {
  display: grid;
  grid-template-columns: 42px minmax(170px, 0.8fr) minmax(200px, 1.2fr);
  gap: 22px;
  align-items: start;
  min-height: 158px;
  padding: 30px 28px 30px 0;
  border-bottom: 1px solid var(--line);
}

.service-preview-grid article:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.service-preview-grid article:nth-child(even) {
  padding-left: 28px;
}

.service-preview-grid small,
.service-preview-grid p {
  color: var(--muted);
}

.service-preview-grid h3 {
  font-size: 25px;
  font-weight: 400;
  line-height: 1.25;
}

.service-preview-grid p {
  font-size: 14px;
}

.client-band {
  padding: 105px 0 120px;
  overflow: hidden;
  background: var(--white);
}

.client-band-head {
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  font-weight: 700;
}

.client-marquee {
  width: 100%;
  margin-top: 50px;
  overflow: hidden;
}

.client-marquee-track {
  display: flex;
  width: max-content;
  animation: client-marquee 28s linear infinite;
}

.client-marquee-group {
  display: flex;
  flex: none;
  align-items: center;
}

.client-marquee-group span {
  position: relative;
  padding-right: 72px;
  font-size: 48px;
  font-weight: 300;
  white-space: nowrap;
}

.client-marquee-group span::after {
  position: absolute;
  top: 50%;
  right: 32px;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--ink);
  transform: translateY(-50%);
}

@keyframes client-marquee {
  to { transform: translateX(-25%); }
}

.cta-band {
  padding: 90px 0;
  background: var(--white);
}

.cta-band--dark {
  background: var(--ink);
  color: var(--white);
}

.cta-band--accent {
  background: var(--ink);
  color: var(--white);
}

.cta-band--accent .cta-inner h2 {
  max-width: 790px;
}

.cta-band--accent .btn-primary {
  border-color: var(--white);
  background: transparent;
  color: var(--white);
}

.cta-band--accent .btn-primary:hover,
.cta-band--accent .btn-primary:focus-visible {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.cta-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  padding-top: 34px;
  border-top: 1px solid currentColor;
}

.cta-inner h2 {
  max-width: 1000px;
  font-size: 42px;
  font-weight: 300;
  line-height: 1.18;
}

.page-head {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 560px;
  padding: calc(var(--header-height) + 105px) 0 85px;
  overflow: hidden;
  background: var(--paper);
}

.page-head-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.6fr);
  gap: 7vw;
  align-items: end;
}

.page-head-title h1 {
  margin-top: 20px;
  font-size: 76px;
  font-weight: 400;
  line-height: 1;
}

.page-head-copy {
  max-width: 560px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

.works {
  padding: 80px 0 190px;
  background: var(--white);
}

.works-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 70px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.works-index-title {
  margin-top: 10px;
  font-size: 38px;
  font-weight: 400;
  line-height: 1.1;
}

.case-count {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.filter-bar button {
  min-height: 38px;
  padding: 7px 13px;
  border: 0;
  border-bottom: 1px solid transparent;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
}

.filter-bar button:hover,
.filter-bar button:focus-visible,
.filter-bar button.is-active {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

.cases-grid {
  column-count: 2;
  column-gap: 28px;
}

.case-card {
  display: inline-block;
  width: 100%;
  margin: 0 0 28px;
  break-inside: avoid;
}

.case-card[hidden] {
  display: none;
}

.case-card > a,
.case-card > button {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-align: left;
}

.case-index,
.case-open {
  display: none;
}

.case-visual {
  aspect-ratio: 4 / 3;
}

.case-card:nth-child(4n + 2) .case-visual {
  aspect-ratio: 3 / 4;
}

.case-card:nth-child(4n + 3) .case-visual {
  aspect-ratio: 1 / 1;
}

.case-card:nth-child(4n) .case-visual {
  aspect-ratio: 16 / 10;
}

.case-copy {
  position: absolute;
  z-index: 2;
  right: 32px;
  bottom: 28px;
  left: 32px;
  display: grid;
  gap: 7px;
  color: var(--white);
}

.case-copy h3 {
  font-size: 26px;
  font-weight: 300;
  line-height: 1.18;
}

.works-actions {
  display: flex;
  justify-content: center;
  margin-top: 135px;
}

.capabilities {
  padding: 115px 0 150px;
  background: var(--white);
}

.capability-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 8vw;
  align-items: start;
}

.capability-intro {
  position: sticky;
  top: calc(var(--header-height) + 38px);
}

.capability-intro .section-title {
  font-size: 46px;
  font-weight: 300;
}

.capability-list {
  border-top: 1px solid var(--ink);
}

.capability-row {
  display: grid;
  grid-template-columns: 52px minmax(180px, 0.75fr) minmax(220px, 1fr);
  gap: 20px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.capability-no {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.capability-row h2 {
  font-size: 23px;
  font-weight: 400;
  line-height: 1.25;
}

.capability-row p {
  color: var(--muted);
  font-size: 14px;
}

.process {
  padding: 145px 0;
  background: var(--ink);
  color: var(--white);
}

.process .section-title {
  margin-bottom: 90px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid #3c3c3c;
}

.process-step {
  min-height: 300px;
  padding: 27px 26px 0 0;
  border-right: 1px solid #3c3c3c;
}

.process-step:not(:first-child) {
  padding-left: 26px;
}

.process-step:last-child {
  border-right: 0;
}

.process-step strong {
  color: #a6a6a1;
  font-size: 11px;
}

.process-step h3 {
  margin-top: 80px;
  font-size: 25px;
  font-weight: 400;
}

.process-step p {
  margin-top: 15px;
  color: #a6a6a1;
  font-size: 14px;
}

.service-proof {
  padding: 135px 0;
  background: var(--paper);
}

.proof-grid,
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  gap: 8vw;
}

.proof-list {
  border-top: 1px solid var(--ink);
}

.proof-list p {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.proof-list span {
  color: var(--muted);
  text-align: right;
}

.about-hero {
  position: relative;
  min-height: 680px;
  height: 84svh;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.about-hero::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background: rgba(0, 0, 0, 0.34);
}

.about-hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero-content {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 56px;
  left: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
  gap: 7vw;
  align-items: end;
}

.about-hero-content .section-kicker {
  grid-column: 1 / -1;
}

.about-hero-content h1 {
  font-size: 68px;
  font-weight: 400;
  line-height: 1;
}

.about-hero-content > p:last-child {
  font-size: 18px;
  line-height: 1.55;
}

.about-intro {
  padding: 145px 0;
  background: var(--paper);
}

.about-copy {
  font-size: 18px;
}

.about-copy > p + p {
  margin-top: 26px;
}

.about-clients {
  padding: 125px 0 150px;
  background: var(--paper);
}

.about-client-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 70px;
  border-top: 1px solid var(--ink);
}

.about-client-grid span {
  display: grid;
  min-height: 84px;
  padding: 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 18px;
  font-weight: 400;
  place-items: center;
  text-align: center;
  transition: background-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.about-client-grid span:hover,
.about-client-grid span:focus-visible {
  z-index: 1;
  outline: 0;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-4px);
}

.about-client-grid span:nth-child(4n) {
  border-right: 0;
}

.contact-hero {
  min-height: 620px;
  padding: calc(var(--header-height) + 115px) 0 100px;
  background: var(--paper);
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(310px, 0.65fr);
  gap: 8vw;
  align-items: end;
  min-height: 390px;
}

.contact-hero h1 {
  margin-top: 20px;
  font-size: 68px;
  font-weight: 400;
  line-height: 1.04;
}

.contact-hero-copy {
  color: var(--muted);
  font-size: 18px;
}

.contact-main {
  padding: 110px 0 145px;
  background: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.72fr);
  gap: 7vw;
}

.contact-lines {
  margin-top: 24px;
  border-top: 1px solid var(--ink);
}

.contact-line {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 74px;
  border-bottom: 1px solid var(--line);
}

.contact-line--identity strong {
  grid-column: 2 / -1;
}

.contact-line span {
  color: var(--muted);
  font-size: 12px;
}

.contact-line strong {
  overflow-wrap: anywhere;
  font-size: 19px;
  font-weight: 400;
}

.contact-line a {
  position: relative;
  font-size: 12px;
  font-weight: 700;
}

.copy-button {
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  cursor: pointer;
}

.copy-button:hover,
.copy-button:focus-visible {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.copy-status {
  min-height: 24px;
  margin-top: 10px;
  color: var(--blue);
  font-size: 12px;
}

.contact-person {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 170px;
  gap: 24px;
  align-items: end;
  padding: 28px;
  background: var(--ink);
  color: var(--white);
}

.contact-person small {
  color: #a6a6a1;
  font-size: 10px;
}

.contact-person h2 {
  margin-top: 55px;
  font-size: 30px;
  line-height: 1.15;
}

.contact-person p,
.wechat-copy {
  margin-top: 14px;
  color: #a6a6a1;
  font-size: 12px;
}

.contact-person img {
  width: 170px;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--white);
}

.contact-prep {
  padding: 135px 0;
  background: var(--ink);
  color: var(--white);
}

.prep-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 75px;
  border-top: 1px solid #3c3c3c;
}

.prep-item {
  min-height: 240px;
  padding: 25px 28px 0 0;
  border-right: 1px solid #3c3c3c;
}

.prep-item:not(:first-child) {
  padding-left: 28px;
}

.prep-item:last-child {
  border-right: 0;
}

.prep-item small {
  color: #a6a6a1;
}

.prep-item h3 {
  margin-top: 60px;
  font-size: 24px;
}

.prep-item p {
  margin-top: 13px;
  color: #a6a6a1;
  font-size: 14px;
}

.contact-form-band {
  padding: 130px 0;
  background: var(--paper);
}

.message-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.62fr) minmax(0, 1.38fr);
  gap: 8vw;
}

.message-intro .section-title {
  font-size: 43px;
}

.project-form,
.form-grid {
  display: grid;
}

.project-form {
  gap: 26px;
}

.form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 20px;
}

.form-grid label,
.project-form > label {
  display: grid;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
}

.form-grid input,
.form-grid select,
.project-form > label textarea,
.captcha-field input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  outline: 0;
  background: transparent;
}

.form-grid input,
.form-grid select,
.captcha-field input {
  height: 52px;
}

.form-grid select {
  padding: 0;
}

.project-form > label textarea {
  min-height: 150px;
  padding: 14px 0;
  resize: vertical;
}

.form-grid input:focus,
.form-grid select:focus,
.project-form > label textarea:focus,
.captcha-field input:focus {
  border-color: var(--blue);
  box-shadow: 0 1px 0 var(--blue);
}

.captcha-field {
  display: grid;
  grid-template-columns: auto 150px;
  gap: 12px;
  align-items: center;
}

.captcha-field span {
  white-space: nowrap;
}

.form-submit-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.honey-field {
  position: absolute !important;
  left: -9999px !important;
}

.generic-content {
  padding: 100px 0 140px;
  background: var(--white);
}

.richtext {
  max-width: 850px;
}

.richtext > * + * {
  margin-top: 1.4em;
}

.richtext h2,
.richtext h3 {
  margin-top: 2em;
  line-height: 1.25;
}

.richtext a {
  color: var(--blue);
  text-decoration: underline;
}

.generic-cover {
  width: 100%;
  margin-bottom: 48px;
}

.content-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--ink);
}

.content-list article {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 30px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.content-list-cover {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.empty-state {
  padding: 40px 0;
  color: var(--muted);
}

.site-search {
  display: flex;
  gap: 10px;
  margin-bottom: 50px;
}

.site-search input {
  flex: 1;
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: transparent;
}

.work-detail {
  background: var(--ink);
  color: var(--white);
}

.work-media {
  position: relative;
  min-height: 620px;
  height: 88svh;
  overflow: hidden;
  background: #161616;
}

.work-media video,
.work-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-scroll {
  position: absolute;
  right: var(--gutter);
  bottom: 28px;
  padding: 8px 10px;
  background: rgba(9, 9, 9, 0.75);
  font-size: 10px;
  font-weight: 700;
}

.work-detail-head {
  padding: 90px 0 110px;
}

.work-detail-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(250px, 0.6fr);
  gap: 7vw;
  align-items: end;
}

.work-detail-heading h1 {
  margin-top: 18px;
  font-size: 64px;
  font-weight: 600;
  line-height: 1.04;
}

.work-client {
  padding-top: 18px;
  border-top: 1px solid #3c3c3c;
}

.work-client span,
.work-client small {
  display: block;
  color: #a6a6a1;
  font-size: 11px;
}

.work-client strong {
  display: block;
  margin: 10px 0 4px;
  font-size: 21px;
}

.work-story {
  padding: 0 0 130px;
}

.work-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(0, 1.35fr);
  gap: 8vw;
  padding-top: 55px;
  border-top: 1px solid #3c3c3c;
}

.work-lead {
  color: #b8b8b3;
  font-size: 18px;
}

.work-story .richtext {
  font-size: 18px;
}

.work-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 0 8px 110px;
}

.work-gallery figure:nth-child(3n) {
  grid-column: 1 / -1;
}

.work-gallery img {
  width: 100%;
  height: 100%;
  max-height: 90svh;
  object-fit: cover;
}

.work-neighbors {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 0 0 110px;
  border-top: 1px solid #3c3c3c;
}

.work-neighbors a {
  padding: 30px 0;
  color: #a6a6a1;
}

.work-neighbors .next {
  text-align: right;
}

dialog {
  width: min(1180px, calc(100% - 40px));
  max-width: none;
  max-height: calc(100svh - 40px);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: var(--ink);
  color: var(--white);
}

dialog::backdrop {
  background: rgba(0, 0, 0, 0.84);
}

.modal-close {
  position: fixed;
  z-index: 2;
  top: 32px;
  right: 32px;
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--white);
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  font-size: 26px;
}

.modal-media {
  min-height: 300px;
  background: #161616;
}

.modal-media video,
.modal-gallery-main {
  width: 100%;
  max-height: 72svh;
  object-fit: contain;
}

.modal-thumbs {
  display: flex;
  gap: 8px;
  padding: 10px;
  overflow-x: auto;
}

.modal-thumbs button {
  flex: 0 0 90px;
  padding: 0;
  border: 2px solid transparent;
  background: transparent;
}

.modal-thumbs button.is-active {
  border-color: var(--blue);
}

.modal-thumbs img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.modal-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr);
  gap: 60px;
  padding: 32px;
}

.modal-copy h2 {
  margin-top: 7px;
  font-size: 32px;
}

.modal-copy p {
  color: #b8b8b3;
}

.site-footer {
  padding: 70px 0 55px;
  background: var(--ink);
  color: var(--white);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 24px;
  border-top: 1px solid #3c3c3c;
  color: #a6a6a1;
  font-size: 12px;
}

.footer-nav {
  gap: 22px;
}

.footer-beian {
  margin-top: 28px;
  color: #a6a6a1;
  font-size: 12px;
  text-align: center;
}

.footer-beian a {
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
  transition: color 220ms ease, text-decoration-color 220ms ease;
}

.footer-beian a:hover,
.footer-beian a:focus-visible {
  color: var(--white);
  text-decoration-color: currentColor;
}

.page-curtain {
  position: fixed;
  z-index: 250;
  inset: 0;
  visibility: hidden;
  pointer-events: none;
  background: var(--ink);
  transform: translateY(100%);
  transition: transform 440ms cubic-bezier(0.75, 0, 0.25, 1), visibility 0s linear 440ms;
}

.page-curtain.is-entering {
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s;
}

.reveal {
  opacity: 1;
}

.js-ready .reveal {
  opacity: 1;
  transform: translateY(22px);
  transition: transform 900ms cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: calc(var(--reveal-order, 0) * 45ms);
}

.js-ready .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  :root {
    --gutter: 24px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-header:has(.menu-toggle.is-open) {
    color: var(--white);
    background: transparent;
    backdrop-filter: none;
  }

  .page-head-title h1 {
    font-size: 62px;
  }

  .statement-title,
  .statement-copy {
    font-size: 44px;
  }

  .section-title {
    font-size: 46px;
  }

  .service-preview-grid {
    grid-template-columns: 1fr;
  }

  .service-preview .section-head,
  .service-preview-grid {
    width: 100%;
  }

  .service-preview-grid article,
  .service-preview-grid article:nth-child(even) {
    grid-template-columns: 40px minmax(160px, 0.85fr) minmax(160px, 1.15fr);
    padding-right: 0;
    padding-left: 0;
    border-right: 0;
  }

  .capability-layout {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .capability-intro {
    position: static;
  }

  .case-copy {
    grid-template-columns: 1fr;
  }

  .case-copy p:last-child {
    grid-column: auto;
  }

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

  .process-step:nth-child(2) {
    border-right: 0;
  }

  .process-step:nth-child(n + 3) {
    border-top: 1px solid #3c3c3c;
  }

  .about-client-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-client-grid span:nth-child(4n) {
    border-right: 1px solid var(--line);
  }

  .about-client-grid span:nth-child(3n) {
    border-right: 0;
  }

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

  .contact-person {
    max-width: 650px;
  }
}

@media (max-width: 760px) {
  :root {
    --gutter: 18px;
    --header-height: 70px;
  }

  body {
    font-size: 15px;
  }

  .brand img {
    width: 30px;
    height: 30px;
  }

  .brand-copy strong {
    font-size: 15px;
  }

  .brand-copy small {
    display: none;
  }

  .mobile-nav a {
    font-size: 31px;
  }

  .section-head,
  .cta-inner,
  .works-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-title {
    margin-top: 14px;
    font-size: 37px;
  }

  .section-head {
    margin-bottom: 40px;
  }

  .banner {
    min-height: 620px;
    height: 100svh;
  }

  .banner-content {
    padding-bottom: 96px;
  }

  .banner-copy {
    max-width: 100%;
  }

  .banner-copy strong {
    max-width: 100%;
    font-size: 21px;
  }

  .hero-controls {
    right: var(--gutter);
    bottom: 20px;
  }

  .hero-controls button {
    width: 38px;
    height: 38px;
  }

  .hero-counter {
    min-width: 66px;
  }

  .home-statement {
    padding: 90px 0 75px;
  }

  .statement-lead {
    margin-left: auto;
  }

  .statement-grid,
  .page-head-grid,
  .proof-grid,
  .about-grid,
  .contact-hero-grid,
  .message-layout,
  .work-detail-heading,
  .work-story-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .statement-title,
  .page-head-title h1,
  .about-hero-content h1,
  .contact-hero h1,
  .work-detail-heading h1 {
    font-size: 45px;
  }

  .statement-copy {
    font-size: 31px;
    line-height: 1.14;
  }

  .selected {
    padding-top: 70px;
    padding-bottom: 95px;
  }

  .selected-grid,
  .service-preview-grid,
  .work-gallery {
    grid-template-columns: 1fr;
  }

  .selected-card:nth-child(even),
  .selected-card:nth-child(3) {
    margin-top: 0;
  }

  .selected-copy,
  .case-copy {
    right: 18px;
    bottom: 16px;
    left: 18px;
  }

  .selected-copy strong,
  .case-copy h3 {
    font-size: 21px;
  }

  .service-preview,
  .process,
  .contact-prep {
    padding: 95px 0;
  }

  .service-preview .section-head,
  .service-preview-grid {
    width: 100%;
    margin-left: 0;
  }

  .service-preview-grid article,
  .service-preview-grid article:nth-child(even) {
    grid-template-columns: 36px 1fr;
    min-height: 0;
    padding: 26px 0;
    border-right: 0;
  }

  .service-preview-grid article p {
    grid-column: 2;
  }

  .client-band {
    padding: 75px 0 80px;
  }

  .client-marquee-group span {
    padding-right: 54px;
    font-size: 30px;
  }

  .client-marquee-group span::after {
    right: 23px;
  }

  .cta-band {
    padding: 70px 0;
  }

  .cta-inner h2 {
    font-size: 30px;
  }

  .page-head {
    min-height: 430px;
    padding: calc(var(--header-height) + 80px) 0 55px;
  }

  .page-head-copy {
    font-size: 16px;
  }

  .works {
    padding: 80px 0 105px;
  }

  .works-index-title {
    font-size: 32px;
  }

  .filter-bar {
    justify-content: flex-start;
  }

  .cases-grid {
    column-count: 1;
  }

  .case-visual,
  .case-card:nth-child(4n + 2) .case-visual,
  .case-card:nth-child(4n + 3) .case-visual,
  .case-card:nth-child(4n) .case-visual {
    aspect-ratio: 4 / 3;
  }

  .case-card {
    margin-bottom: 45px;
  }

  .works-actions {
    margin-top: 75px;
  }

  .capabilities,
  .service-proof,
  .about-intro,
  .about-clients,
  .contact-main,
  .contact-form-band {
    padding: 90px 0;
  }

  .capability-layout {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .capability-intro {
    position: static;
  }

  .capability-intro .section-title,
  .message-intro .section-title {
    font-size: 37px;
  }

  .capability-row {
    grid-template-columns: 36px 1fr;
  }

  .capability-row p {
    grid-column: 2;
  }

  .process .section-title {
    margin-bottom: 55px;
  }

  .process-grid,
  .prep-grid {
    grid-template-columns: 1fr;
  }

  .process-step,
  .process-step:not(:first-child),
  .prep-item,
  .prep-item:not(:first-child) {
    min-height: 0;
    padding: 28px 0 45px;
    border-right: 0;
    border-bottom: 1px solid #3c3c3c;
  }

  .process-step h3,
  .prep-item h3 {
    margin-top: 42px;
  }

  .proof-list p {
    display: grid;
  }

  .proof-list span {
    text-align: left;
  }

  .about-hero {
    min-height: 650px;
    height: 88svh;
  }

  .about-hero-content {
    bottom: 28px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .about-hero-content .section-kicker {
    grid-column: auto;
  }

  .about-hero-content > p:last-child {
    font-size: 15px;
  }

  .about-client-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 45px;
  }

  .about-client-grid span:nth-child(3n) {
    border-right: 1px solid var(--line);
  }

  .about-client-grid span:nth-child(2n) {
    border-right: 0;
  }

  .contact-hero {
    min-height: 560px;
    padding: calc(var(--header-height) + 80px) 0 70px;
  }

  .contact-hero-grid {
    align-content: end;
    min-height: 390px;
  }

  .contact-line {
    grid-template-columns: 66px minmax(0, 1fr) auto;
    gap: 10px;
  }

  .contact-line strong {
    font-size: 15px;
  }

  .contact-person {
    grid-template-columns: 1fr 118px;
    padding: 20px;
  }

  .contact-person h2 {
    margin-top: 35px;
    font-size: 24px;
  }

  .contact-person img {
    width: 118px;
  }

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

  .form-submit-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .captcha-field {
    grid-template-columns: auto minmax(80px, 1fr);
  }

  .content-list article {
    grid-template-columns: 1fr;
  }

  .work-media {
    min-height: 560px;
    height: 78svh;
  }

  .work-detail-head {
    padding: 70px 0 90px;
  }

  .work-story {
    padding-bottom: 90px;
  }

  .work-gallery {
    gap: 6px;
    padding: 0 6px 75px;
  }

  .work-gallery figure:nth-child(3n) {
    grid-column: auto;
  }

  .work-neighbors {
    grid-template-columns: 1fr;
  }

  .work-neighbors .next {
    border-top: 1px solid #3c3c3c;
    text-align: left;
  }

  .modal-copy {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-nav {
    flex-wrap: wrap;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .banner-media {
    transform: none !important;
  }

  [data-parallax] {
    transform: none !important;
  }

  .client-marquee-track {
    display: block;
    width: auto;
    animation: none;
  }

  .client-marquee-group:first-child {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    padding-inline: var(--gutter);
  }

  .client-marquee-group[aria-hidden="true"] {
    display: none;
  }

  .client-marquee-group span {
    padding: 0;
    font-size: 20px;
    white-space: normal;
  }

  .client-marquee-group span::after,
  .page-curtain {
    display: none;
  }

  .js-ready .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) and (max-width: 600px) {
  .client-marquee-group:first-child {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
