:root {
  --paper: #f2efe7;
  --paper-2: #e6e0d5;
  --ink: #121210;
  --ink-soft: #24231f;
  --muted: #6c685f;
  --line: rgba(18, 18, 16, 0.2);
  --charcoal: #171714;
  --red: #9b2a20;
  --lime: #b8e62e;
  --blue: #385ed8;
  --max: 1440px;
  --page-pad: 56px;
  --header-height: 68px;
  --sans: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.6;
}

body.modal-open {
  overflow: hidden;
}

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

button {
  color: inherit;
  font: inherit;
}

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

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

figure,
dl,
dd {
  margin: 0;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.1;
  mix-blend-mode: multiply;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(18, 18, 16, 0.22) 0 0.6px, transparent 0.8px),
    radial-gradient(circle at 70% 60%, rgba(18, 18, 16, 0.15) 0 0.6px, transparent 0.8px);
  background-size: 19px 19px, 29px 29px;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 40;
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: flex-end;
  padding: 0 var(--page-pad);
  color: var(--paper);
  background: rgba(18, 18, 16, 0.88);
  border-bottom: 1px solid rgba(242, 239, 231, 0.18);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  gap: 36px;
  font-family: var(--sans);
  font-size: 0.78rem;
}

.nav a {
  position: relative;
  padding: 8px 0;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

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

.hero {
  position: relative;
  display: grid;
  min-height: 88svh;
  padding: calc(var(--header-height) + 34px) var(--page-pad) 30px;
  overflow: hidden;
  color: var(--paper);
  background: var(--charcoal);
}

.hero__cover {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__cover::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: radial-gradient(
    88% 78% at 12% 86%,
    rgba(45, 22, 18, 0.88) 0%,
    rgba(45, 22, 18, 0.46) 40%,
    rgba(45, 22, 18, 0) 76%
  );
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  filter: saturate(0.72) contrast(1.08);
}

.hero__kicker,
.hero__copy,
.hero__index {
  position: relative;
  z-index: 2;
}

.hero__kicker,
.hero__index {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--sans);
  font-size: 0.72rem;
  text-transform: uppercase;
  color: rgba(242, 239, 231, 0.74);
}

.hero__copy {
  align-self: end;
  max-width: 940px;
  padding: 90px 0 70px;
  animation: hero-in 820ms ease-out both;
}

.eyebrow,
.section__number,
.case__index {
  margin: 0;
  font-family: var(--sans);
  font-size: 0.76rem;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--red);
}

.hero .eyebrow {
  margin-bottom: 16px;
  color: rgba(242, 239, 231, 0.82);
}

h1,
h2,
h3 {
  font-family: var(--sans);
  font-weight: 400;
}

h1 {
  margin: 0;
  font-size: 10rem;
  line-height: 0.84;
  letter-spacing: 0;
}

.hero__statement {
  max-width: 680px;
  margin: 28px 0 0;
  font-size: 1.75rem;
  color: rgba(242, 239, 231, 0.88);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 0;
  font-family: var(--sans);
  font-size: 0.86rem;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button__icon {
  display: inline-grid;
  width: 10px;
  height: 12px;
  place-items: center;
}

.icon-play {
  font-size: 0;
}

.icon-play::before {
  width: 0;
  height: 0;
  content: "";
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid currentColor;
  transform: translateX(1px);
}

.button--light {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--paper);
}

.button--light:hover,
.button--light:focus-visible {
  color: var(--paper);
  background: var(--red);
  border-color: var(--red);
}

.button--line {
  color: var(--paper);
  background: rgba(18, 18, 16, 0.18);
  border-color: rgba(242, 239, 231, 0.48);
}

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

.hero__index {
  align-self: end;
  padding-top: 22px;
  border-top: 1px solid rgba(242, 239, 231, 0.32);
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 126px var(--page-pad);
}

.section__head {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 50px;
  align-items: start;
  margin-bottom: 72px;
}

.section__head h2,
.contact h2 {
  margin: 0;
  max-width: 1020px;
  font-size: 5.5rem;
  line-height: 0.98;
  letter-spacing: 0;
}

.section__head--statement h2 {
  max-width: 1120px;
  font-size: 4.8rem;
  line-height: 1.06;
}

.section__lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.15rem;
}

.profile-film {
  border-bottom: 1px solid var(--line);
}

.feature-player {
  position: relative;
  width: 100%;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  background: var(--ink);
  border: 0;
  aspect-ratio: 16 / 9;
}

.feature-player img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease, filter 700ms ease;
}

.feature-player:hover img,
.feature-player:focus-visible img {
  filter: contrast(1.04);
  transform: scale(1.012);
}

.feature-player__play,
.case__play {
  position: absolute;
  right: 28px;
  bottom: 28px;
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  color: var(--paper);
  background: rgba(18, 18, 16, 0.86);
  border: 1px solid rgba(242, 239, 231, 0.52);
  border-radius: 50%;
  font-family: var(--sans);
  font-size: 1rem;
}

.feature-player__meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 0.75rem;
  color: var(--muted);
}

.evidence {
  padding-top: 0;
  padding-bottom: 0;
}

.evidence-route {
  margin-right: calc(50% - 50vw);
  margin-bottom: 138px;
  margin-left: calc(50% - 50vw);
  padding: 96px max(var(--page-pad), calc((100vw - var(--max)) / 2 + var(--page-pad))) 76px;
  color: var(--paper);
  background: var(--charcoal);
}

.evidence-route__topline {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: rgba(242, 239, 231, 0.56);
  font-family: var(--sans);
  font-size: 0.7rem;
  text-transform: uppercase;
}

.evidence-route__topline p {
  margin: 0;
}

.evidence-route__topline .section__number {
  color: var(--lime);
}

.evidence-route__statement {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 50px;
  align-items: end;
  margin: 82px 0 96px;
}

.evidence-route__statement > p {
  max-width: 150px;
  margin: 0 0 10px;
  color: rgba(242, 239, 231, 0.58);
  font-size: 0.84rem;
}

.evidence-route__statement h2 {
  max-width: 980px;
  margin: 0;
  font-size: 5rem;
  font-weight: 500;
  line-height: 2;
}

.evidence-route__statement h2 span {
  color: var(--lime);
}

.capability-index {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid rgba(242, 239, 231, 0.46);
  border-bottom: 1px solid rgba(242, 239, 231, 0.28);
}

.capability-index a {
  position: relative;
  display: grid;
  min-height: 206px;
  align-content: space-between;
  padding: 34px 28px 24px;
  border-right: 1px solid rgba(242, 239, 231, 0.18);
  transition: color 180ms ease, background 180ms ease;
}

.capability-index a::before {
  position: absolute;
  top: -5px;
  left: 28px;
  width: 9px;
  height: 9px;
  content: "";
  background: var(--lime);
  border-radius: 50%;
}

.capability-index a:last-child {
  border-right: 0;
}

.capability-index a:hover,
.capability-index a:focus-visible {
  color: var(--lime);
  background: rgba(242, 239, 231, 0.04);
}

.capability-index span,
.capability-index small,
.capability__number,
.carousel__head,
.proof-card figcaption span,
.social-card figcaption span,
.work-tile__meta small,
.work-tile__meta em {
  font-family: var(--sans);
}

.capability-index span,
.capability__number,
.proof-card figcaption span,
.social-card figcaption span,
.work-tile__meta small {
  font-size: 0.72rem;
  color: var(--red);
  text-transform: uppercase;
}

.evidence-route .capability-index span {
  color: var(--lime);
}

.capability-index strong {
  align-self: end;
  font-size: 2rem;
  font-weight: 500;
}

.capability-index small {
  align-self: end;
  font-size: 0.76rem;
  color: rgba(242, 239, 231, 0.58);
}

.capability {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.capability + .capability {
  margin-top: 150px;
}

.capability__head {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 50px;
  margin-bottom: 64px;
}

.capability__head h3 {
  max-width: 1010px;
  margin: 0;
  font-size: 4.25rem;
  font-weight: 400;
  line-height: 2;
}

.capability__head div > p {
  max-width: 760px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.visual-collage {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: 520px 330px;
  gap: 46px 18px;
}

.visual-collage__item {
  display: grid;
  min-width: 0;
  min-height: 0;
  grid-template-rows: minmax(0, 1fr) auto;
}

.visual-collage__item--lead {
  grid-column: 1 / 9;
  grid-row: 1;
}

.visual-collage__item--culture {
  grid-column: 9 / 13;
  grid-row: 1;
}

.visual-collage__item--photo-wide {
  grid-column: 1 / 6;
  grid-row: 2;
}

.visual-collage__item--photo-tall {
  grid-column: 6 / 9;
  grid-row: 2;
}

.visual-collage__item--automotive {
  grid-column: 9 / 13;
  grid-row: 2;
}

.visual-collage__item img,
.visual-collage__item video {
  width: 100%;
  height: 100%;
  min-height: 0;
  background: var(--ink);
  object-fit: cover;
}

.visual-collage__item--culture video {
  object-position: 58% center;
}

.visual-collage__item figcaption {
  display: flex;
  gap: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 0.78rem;
  color: var(--muted);
}

.visual-collage__item figcaption span {
  color: var(--red);
}

.capability--workflow {
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding: 124px max(var(--page-pad), calc((100vw - var(--max)) / 2 + var(--page-pad)));
  color: var(--paper);
  background: var(--charcoal);
  overflow: hidden;
}

.capability--workflow .capability__number,
.capability--workflow .proof-card figcaption span,
.capability--workflow .carousel__head p,
.capability--workflow .workflow-ledger li span {
  color: var(--lime);
}

.capability--workflow .capability__head div > p,
.capability--workflow .proof-card figcaption p,
.capability--workflow .workflow-ledger li p {
  color: rgba(242, 239, 231, 0.64);
}

.carousel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid currentColor;
  font-size: 0.72rem;
}

.carousel__head p {
  margin: 0;
}

.carousel__controls {
  display: flex;
  gap: 8px;
}

.carousel__controls button {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  color: inherit;
  cursor: pointer;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 50%;
  transition: color 180ms ease, background 180ms ease;
}

.carousel__controls button::before,
.carousel__controls button::after {
  position: absolute;
  content: "";
}

.carousel__controls button::before {
  width: 13px;
  height: 1px;
  background: currentColor;
}

.carousel__controls button::after {
  width: 6px;
  height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
}

.carousel__controls button[data-carousel-prev]::after {
  transform: translateX(-3px) rotate(-135deg);
}

.carousel__controls button[data-carousel-next]::after {
  transform: translateX(3px) rotate(45deg);
}

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

.carousel__track {
  display: flex;
  gap: 22px;
  padding: 26px 0 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-color: currentColor transparent;
  scrollbar-width: thin;
}

.proof-card {
  display: grid;
  flex: 0 0 min(560px, 42vw);
  min-width: 320px;
  grid-template-rows: auto 1fr;
  scroll-snap-align: start;
  border-bottom: 1px solid rgba(242, 239, 231, 0.24);
}

.proof-card__media {
  display: grid;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  place-items: center;
  background: #090908;
}

.proof-card__media img,
.proof-card__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proof-card__media--shot {
  padding: 22px;
  background: #dcdedc;
}

.proof-card__media--shot img {
  object-fit: contain;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.2);
}

.proof-card--variations {
  flex-basis: min(640px, 50vw);
}

.proof-card__media--pair {
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 10px;
  background: #dcdedc;
}

.proof-card__media--pair img {
  min-height: 0;
  object-fit: cover;
  object-position: left center;
  box-shadow: none;
}

.proof-card__media--timeline {
  padding: 10px;
}

.proof-card__media--portrait video {
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.proof-card figcaption {
  padding: 24px 0 28px;
}

.proof-card figcaption h4 {
  margin: 18px 0 10px;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.2;
}

.proof-card figcaption p {
  max-width: 480px;
  margin: 0;
  font-family: var(--sans);
  font-size: 0.86rem;
}

.workflow-ledger {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 0;
  margin: 82px 0 0;
  list-style: none;
  border-top: 1px solid rgba(242, 239, 231, 0.32);
  border-bottom: 1px solid rgba(242, 239, 231, 0.32);
}

.workflow-ledger li {
  display: grid;
  min-height: 210px;
  align-content: space-between;
  padding: 24px;
  border-right: 1px solid rgba(242, 239, 231, 0.2);
}

.workflow-ledger li:last-child {
  border-right: 0;
}

.workflow-ledger li span,
.workflow-ledger li p {
  font-family: var(--sans);
}

.workflow-ledger li span {
  font-size: 0.7rem;
}

.workflow-ledger li strong {
  align-self: end;
  margin-top: 40px;
  font-size: 1.8rem;
  font-weight: 400;
}

.workflow-ledger li p {
  margin: 12px 0 0;
  font-size: 0.82rem;
}

.capability--social {
  padding-bottom: 130px;
}

.result-ledger {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 96px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.result-ledger > div {
  display: grid;
  min-height: 245px;
  align-content: space-between;
  padding: 30px 28px 26px;
  border-right: 1px solid var(--line);
}

.result-ledger > div:last-child {
  border-right: 0;
}

.result-ledger strong,
.result-ledger span,
.result-ledger small {
  display: block;
}

.result-ledger strong {
  font-family: var(--sans);
  font-size: 4rem;
  font-weight: 400;
  line-height: 1;
}

.result-ledger span,
.result-ledger small {
  font-family: var(--sans);
}

.result-ledger span {
  align-self: end;
  margin-top: 54px;
  font-size: 0.88rem;
}

.result-ledger small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.72rem;
}

.social-carousel .carousel__head {
  color: var(--ink);
}

.social-carousel .carousel__controls button:hover,
.social-carousel .carousel__controls button:focus-visible {
  color: var(--paper);
  background: var(--ink);
}

.social-track {
  gap: 18px;
}

.social-card {
  flex: 0 0 330px;
  min-width: 0;
  scroll-snap-align: start;
}

.phone-stage {
  display: grid;
  height: 570px;
  padding: 18px;
  place-items: center;
  overflow: hidden;
  background: var(--paper-2);
  border: 1px solid var(--line);
}

.phone-stage img {
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 16px 24px rgba(18, 18, 16, 0.16));
}

.social-card--data-focus .phone-stage img {
  object-fit: cover;
  object-position: center bottom;
}

.social-card figcaption {
  display: grid;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.social-card figcaption strong {
  font-size: 1.45rem;
  font-weight: 400;
}

.work {
  border-top: 1px solid var(--line);
}

.case {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(310px, 0.65fr);
  gap: 54px;
  align-items: start;
}

.case__media {
  position: relative;
  width: 100%;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  background: var(--ink);
  border: 0;
  aspect-ratio: 16 / 10;
}

.case__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.04);
  transition: transform 700ms ease;
}

.case__media:hover img,
.case__media:focus-visible img {
  transform: scale(1.018);
}

.case__body {
  padding-top: 6px;
}

.case__body h3 {
  margin: 22px 0 24px;
  font-size: 4rem;
  line-height: 1;
}

.case__summary,
.case__keywords {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.case__facts {
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.case__facts div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.case__facts dt,
.case__facts dd {
  font-family: var(--sans);
  font-size: 0.82rem;
}

.case__facts dt {
  color: var(--muted);
}

.case__keywords {
  margin-top: 24px;
  font-family: var(--sans);
  font-size: 0.88rem;
}

.work-link {
  display: inline-flex;
  width: fit-content;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  padding: 10px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  font-family: var(--sans);
  font-size: 0.82rem;
  transition: gap 180ms ease, color 180ms ease;
}

.work-link:hover,
.work-link:focus-visible {
  gap: 36px;
  color: var(--red);
}

.icon-external {
  position: relative;
  display: inline-block;
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
}

.icon-external::before,
.icon-external::after {
  position: absolute;
  content: "";
}

.icon-external::before {
  top: 6px;
  left: 1px;
  width: 11px;
  height: 1px;
  background: currentColor;
  transform: rotate(-45deg);
  transform-origin: center;
}

.icon-external::after {
  top: 1px;
  right: 0;
  width: 6px;
  height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 64px 22px;
  margin-top: 112px;
}

.work-tile {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
}

.work-tile__preview {
  display: block;
  width: 100%;
  padding: 0;
  cursor: pointer;
  text-align: left;
  background: transparent;
  border: 0;
}

.work-tile__visual {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  background: var(--ink);
  aspect-ratio: 16 / 10;
}

.work-tile__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease, filter 600ms ease;
}

.work-tile--portrait .work-tile__visual img {
  object-fit: contain;
}

.work-tile__preview:hover .work-tile__visual img,
.work-tile__preview:focus-visible .work-tile__visual img {
  filter: contrast(1.06);
  transform: scale(1.018);
}

.work-tile__play {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--paper);
  background: rgba(18, 18, 16, 0.82);
  border: 1px solid rgba(242, 239, 231, 0.52);
  border-radius: 50%;
  font-family: var(--sans);
  font-size: 0.74rem;
}

.work-tile__meta {
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.work-tile__meta strong {
  margin-top: 20px;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.work-tile__meta em {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.76rem;
  font-style: normal;
}

.work-tile__keywords {
  margin: 20px 0 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.82rem;
  line-height: 1.7;
}

.work-tile__meta .work-link {
  margin-top: auto;
  padding-top: 22px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 72px;
  padding: 112px var(--page-pad);
  color: var(--paper);
  background: var(--charcoal);
}

.contact__intro h2 {
  max-width: 520px;
  margin-top: 22px;
  font-size: 4.7rem;
}

.contact__links {
  align-self: end;
  border-top: 1px solid rgba(242, 239, 231, 0.3);
}

.contact__links a {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  align-items: baseline;
  padding: 24px 0;
  border-bottom: 1px solid rgba(242, 239, 231, 0.3);
  transition: color 180ms ease, padding 180ms ease;
}

.contact__links a:hover,
.contact__links a:focus-visible {
  padding-left: 10px;
  color: var(--lime);
}

.contact__links span,
.contact__links strong {
  font-family: var(--sans);
}

.contact__links span {
  font-size: 0.7rem;
  color: rgba(242, 239, 231, 0.48);
  text-transform: uppercase;
}

.contact__links strong {
  font-size: 0.92rem;
  font-weight: 400;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px var(--page-pad);
  color: rgba(242, 239, 231, 0.58);
  background: #0b0b0a;
  border-top: 1px solid rgba(242, 239, 231, 0.14);
  font-family: var(--sans);
  font-size: 0.7rem;
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 4, 0.88);
}

.modal__dialog {
  position: relative;
  z-index: 1;
  width: min(1180px, 96vw);
  max-height: 94svh;
  overflow: auto;
  padding: 28px;
  color: var(--paper);
  background: #0b0b0a;
  border: 1px solid rgba(242, 239, 231, 0.24);
}

.modal__head {
  padding-right: 54px;
}

.modal__head h2 {
  margin: 7px 0 20px;
  font-size: 2.5rem;
  line-height: 1;
}

.modal__dialog video {
  width: 100%;
  max-height: 74svh;
  background: #000;
}

.modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--paper);
  cursor: pointer;
  background: transparent;
  border: 1px solid rgba(242, 239, 231, 0.32);
  border-radius: 50%;
  font-size: 1.7rem;
  line-height: 1;
}

.modal__error {
  margin: 16px 0 0;
  color: #f0a69f;
  font-family: var(--sans);
  font-size: 0.84rem;
}

@keyframes hero-in {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1180px) {
  :root {
    --page-pad: 34px;
  }

  h1 {
    font-size: 7.5rem;
  }

  .section__head h2,
  .contact h2 {
    font-size: 4.4rem;
  }

  .section__head--statement h2 {
    font-size: 3.8rem;
  }

  .evidence-route__statement h2 {
    font-size: 4.25rem;
  }

  .capability__head h3 {
    font-size: 3.65rem;
  }

  .visual-collage {
    grid-template-rows: 450px 300px;
  }

  .contact {
    grid-template-columns: 0.9fr 1.1fr;
  }

}

@media (max-width: 900px) {
  .section {
    padding-top: 94px;
    padding-bottom: 94px;
  }

  .section__head,
  .case,
  .contact {
    grid-template-columns: 1fr;
  }

  .section__head {
    gap: 24px;
    margin-bottom: 48px;
  }

  .evidence-route {
    margin-bottom: 104px;
    padding-top: 82px;
    padding-bottom: 64px;
  }

  .evidence-route__statement {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 64px;
    margin-bottom: 74px;
  }

  .evidence-route__statement > p {
    max-width: 360px;
  }

  .evidence-route__statement h2 {
    font-size: 3.8rem;
  }

  .capability__head {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .capability__head h3 {
    font-size: 3.25rem;
  }

  .capability__head div > p {
    margin-top: 20px;
  }

  .visual-collage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    gap: 42px 16px;
  }

  .visual-collage__item,
  .visual-collage__item--lead,
  .visual-collage__item--culture,
  .visual-collage__item--photo-wide,
  .visual-collage__item--photo-tall,
  .visual-collage__item--automotive {
    grid-column: auto;
    grid-row: auto;
  }

  .visual-collage__item img,
  .visual-collage__item video {
    aspect-ratio: 16 / 11;
  }

  .visual-collage__item--photo-tall img {
    aspect-ratio: 4 / 5;
  }

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

  .workflow-ledger li:nth-child(2) {
    border-right: 0;
  }

  .workflow-ledger li:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(242, 239, 231, 0.2);
  }

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

  .case {
    gap: 38px;
  }

  .contact {
    gap: 54px;
  }

}

@media (max-width: 720px) {
  :root {
    --page-pad: 18px;
    --header-height: 60px;
  }

  .site-header {
    padding: 0 var(--page-pad);
  }

  .nav {
    gap: 16px;
    font-size: 0.7rem;
  }

  .hero {
    min-height: 88svh;
    padding-top: calc(var(--header-height) + 24px);
    padding-bottom: 22px;
  }

  .hero__kicker,
  .hero__index {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .hero__copy {
    padding: 68px 0 42px;
  }

  h1 {
    font-size: 4.25rem;
    line-height: 0.9;
  }

  .hero__statement {
    max-width: 330px;
    margin-top: 20px;
    font-size: 1.25rem;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 26px;
  }

  .button {
    width: 100%;
  }

  .section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .section__head h2,
  .contact h2,
  .section__head--statement h2 {
    font-size: 3rem;
    line-height: 1.04;
  }

  .section__lead {
    font-size: 1rem;
  }

  .feature-player__play,
  .case__play {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
  }

  .feature-player__meta {
    display: grid;
    gap: 4px;
  }

  .evidence-route {
    margin-bottom: 82px;
    padding-top: 70px;
    padding-bottom: 50px;
  }

  .evidence-route__topline {
    font-size: 0.64rem;
  }

  .evidence-route__statement {
    margin-top: 54px;
    margin-bottom: 58px;
  }

  .evidence-route__statement h2 {
    font-size: 3rem;
    line-height: 2;
  }

  .evidence-route__statement > p {
    font-size: 0.78rem;
  }

  .capability-index {
    grid-template-columns: 1fr;
    margin-left: 4px;
    border-top: 0;
    border-bottom: 0;
    border-left: 1px solid rgba(242, 239, 231, 0.42);
  }

  .capability-index a {
    min-height: 138px;
    padding: 20px 8px 20px 24px;
    border-right: 0;
    border-bottom: 1px solid rgba(242, 239, 231, 0.18);
  }

  .capability-index a::before {
    top: 24px;
    left: -5px;
  }

  .capability-index a:last-child {
    border-bottom: 0;
  }

  .capability + .capability {
    margin-top: 104px;
  }

  .capability__head {
    margin-bottom: 42px;
  }

  .capability__head h3 {
    font-size: 2.55rem;
    line-height: 2;
  }

  .capability__head div > p {
    font-size: 0.96rem;
  }

  .visual-collage {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .visual-collage__item img,
  .visual-collage__item video,
  .visual-collage__item--photo-tall img {
    aspect-ratio: 16 / 11;
  }

  .capability--workflow {
    padding-top: 78px;
    padding-bottom: 84px;
  }

  .carousel__controls button {
    width: 38px;
    height: 38px;
  }

  .carousel__track {
    gap: 14px;
  }

  .proof-card {
    flex-basis: calc(100vw - 54px);
    min-width: 0;
  }

  .proof-card__media--shot {
    padding: 12px;
  }

  .proof-card--variations {
    flex-basis: calc(100vw - 54px);
  }

  .proof-card__media--pair {
    gap: 6px;
    padding: 8px;
  }

  .proof-card__media--timeline {
    padding: 8px;
  }

  .proof-card figcaption h4 {
    font-size: 1.55rem;
  }

  .workflow-ledger {
    grid-template-columns: 1fr;
    margin-top: 58px;
  }

  .workflow-ledger li,
  .workflow-ledger li:nth-child(2) {
    min-height: 168px;
    padding: 22px 8px;
    border-right: 0;
    border-bottom: 1px solid rgba(242, 239, 231, 0.2);
  }

  .workflow-ledger li:last-child {
    border-bottom: 0;
  }

  .capability--social {
    padding-bottom: 94px;
  }

  .result-ledger {
    grid-template-columns: 1fr;
    margin-bottom: 70px;
  }

  .result-ledger > div {
    min-height: 190px;
    padding: 24px 8px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .result-ledger > div:last-child {
    border-bottom: 0;
  }

  .result-ledger strong {
    font-size: 3.55rem;
  }

  .result-ledger span {
    margin-top: 36px;
  }

  .social-card {
    flex-basis: min(82vw, 310px);
  }

  .phone-stage {
    height: 510px;
    padding: 12px;
  }

  .work-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    margin-top: 78px;
  }

  .case__body h3 {
    font-size: 3.2rem;
  }

  .contact {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .contact__links a {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 14px;
  }

  .site-footer {
    display: grid;
  }

  .modal {
    padding: 8px;
  }

  .modal__dialog {
    width: 100%;
    padding: 16px;
  }

  .modal__head h2 {
    font-size: 1.8rem;
  }
}

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

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