:root {
  --ink: #070707;
  --ink-soft: #111111;
  --paper: #f4f5f2;
  --paper-deep: #e7e9e5;
  --white: #ffffff;
  --muted: #a6aaa6;
  --muted-dark: #616560;
  --line-light: rgba(255, 255, 255, 0.18);
  --line-dark: rgba(7, 7, 7, 0.16);
  --signal: #baffdd;
  --header-height: 72px;
  --page-pad: max(40px, calc((100vw - 1600px) / 2));
  color-scheme: dark;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

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

section {
  scroll-margin-top: var(--header-height);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--white);
  font-family:
    -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", "PingFang SC",
    "Microsoft YaHei", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.is-locked {
  overflow: hidden;
}

body.is-menu-open {
  overflow: hidden;
}

button,
a {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
}

a {
  text-decoration: none;
}

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

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

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

:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 4px;
}

::selection {
  background: var(--signal);
  color: var(--ink);
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--ink);
}

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

.scroll-progress {
  position: fixed;
  z-index: 110;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--signal), #a9d9ff, #f2c4ef);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition:
    background-color 240ms ease,
    border-color 240ms ease,
    backdrop-filter 240ms ease;
}

.site-header.is-scrolled,
body.is-menu-open .site-header {
  border-bottom-color: var(--line-light);
  background: rgba(7, 7, 7, 0.82);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  backdrop-filter: blur(18px) saturate(130%);
}

.site-nav {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--page-pad);
}

.site-brand {
  display: inline-flex;
  min-width: 236px;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
}

.brand-name {
  font-weight: 600;
}

.brand-name b {
  color: var(--muted);
  font-weight: 500;
}

.site-menu {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 12px;
}

.site-menu > a:not(.nav-contact) {
  color: rgba(255, 255, 255, 0.72);
  transition: color 180ms ease;
}

.site-menu > a:not(.nav-contact):hover {
  color: var(--white);
}

.nav-contact {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  cursor: pointer;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  width: 100%;
  height: calc(100svh - 44px);
  overflow: hidden;
  isolation: isolate;
  background: #101719;
}

.hero-media,
.hero-poster,
.hero-video,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-poster,
.hero-video {
  object-fit: cover;
  object-position: center;
}

.hero-video {
  z-index: 1;
  opacity: 0;
  transform: scale(1.025);
  transition:
    opacity 900ms ease,
    transform 2200ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.hero-video.is-ready {
  opacity: 1;
  transform: scale(1);
}

.hero-poster {
  z-index: 0;
}

.hero-shade {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(3, 5, 6, 0.72) 0%, rgba(3, 5, 6, 0.18) 62%, rgba(3, 5, 6, 0.3) 100%),
    linear-gradient(0deg, rgba(3, 4, 5, 0.78) 0%, transparent 47%, rgba(3, 4, 5, 0.2) 100%);
}

.hero-content {
  position: absolute;
  z-index: 4;
  right: var(--page-pad);
  bottom: 102px;
  left: var(--page-pad);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  align-items: end;
  gap: 40px;
}

.eyebrow,
.section-index {
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
}

.hero-content .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -14px;
  color: rgba(255, 255, 255, 0.7);
}

.hero-content .eyebrow.reveal.is-visible {
  transition-delay: 80ms;
}

.hero-content .hero-title.reveal.is-visible {
  transition-delay: 170ms;
}

.hero-content .hero-copy.reveal.is-visible {
  transition-delay: 280ms;
}

.hero-title {
  font-size: 94px;
  font-weight: 620;
  line-height: 0.86;
}

.hero-title span {
  display: block;
}

.hero-title span:last-child {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 350;
}

.hero-copy {
  padding-bottom: 4px;
}

.hero-copy > p {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.83);
  font-size: 17px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 30px;
}

.text-action {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  transition:
    color 180ms ease,
    gap 180ms ease;
}

.text-action:hover {
  gap: 38px;
}

.text-action--light {
  color: var(--white);
}

.text-action--quiet {
  color: rgba(255, 255, 255, 0.58);
}

.text-action--dark {
  color: var(--ink);
}

.hero-meta {
  position: absolute;
  z-index: 4;
  right: var(--page-pad);
  bottom: 24px;
  left: var(--page-pad);
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(7, 7, 7, 0.28);
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.05),
    0 16px 38px rgba(0, 0, 0, 0.12);
  -webkit-backdrop-filter: blur(14px) saturate(125%);
  backdrop-filter: blur(14px) saturate(125%);
  animation: hero-meta-in 900ms 460ms cubic-bezier(0.2, 0.72, 0.2, 1) both;
}

@keyframes hero-meta-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
}

.hero-meta > span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-meta i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 12px rgba(186, 255, 221, 0.8);
}

.hero-meta button {
  display: inline-flex;
  cursor: pointer;
  align-items: center;
  gap: 28px;
  padding: 0;
  background: transparent;
  color: var(--white);
  font-size: 11px;
}

.discipline-strip {
  position: relative;
  height: 44px;
  overflow: hidden;
  background: var(--paper-deep);
  color: var(--ink);
}

.discipline-strip::before {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--signal), #a7dbff, #f2caef);
  content: "";
}

.discipline-track {
  display: flex;
  width: max-content;
  height: 100%;
  align-items: center;
  gap: 30px;
  padding-left: 30px;
  animation: marquee 26s linear infinite;
  font-size: 10px;
  font-weight: 650;
}

.discipline-track i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--muted-dark);
}

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

.section {
  padding: 132px var(--page-pad);
}

.work,
.about {
  background: var(--paper);
  color: var(--ink);
}

.work {
  padding-bottom: 156px;
}

.about {
  padding-top: 148px;
  border-top: 1px solid var(--line-dark);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  align-items: end;
  gap: 80px;
}

.section-index {
  margin-bottom: 30px;
  color: var(--muted-dark);
}

.section-head h2,
.about-copy h2,
.services-head h2,
.contact-main h2 {
  font-size: 72px;
  font-weight: 460;
  line-height: 1.04;
}

.about-brand-phrase {
  white-space: nowrap;
}

.section-intro {
  max-width: 480px;
  padding-bottom: 8px;
  color: #4f534e;
  font-size: 16px;
  line-height: 1.75;
}

.work-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 92px 0 52px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-dark);
}

.work-filters {
  display: flex;
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line-dark);
  scrollbar-width: none;
}

.work-filters::-webkit-scrollbar {
  display: none;
}

.work-filters button {
  min-height: 42px;
  flex: 0 0 auto;
  cursor: pointer;
  padding: 0 17px;
  border-right: 1px solid var(--line-dark);
  background: transparent;
  color: var(--muted-dark);
  font-size: 11px;
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.work-filters button:last-child {
  border-right: 0;
}

.work-filters button.is-active {
  box-shadow: inset 0 2px var(--signal);
  background: var(--ink);
  color: var(--white);
}

.work-toolbar > p {
  flex: 0 0 auto;
  color: var(--muted-dark);
  font-size: 10px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: start;
  column-gap: 36px;
  row-gap: 96px;
}

.project-card {
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
  cursor: pointer;
  background: transparent;
  color: var(--ink);
  text-align: left;
}

.project-card--wide {
  grid-column: span 8;
}

.project-card--portrait {
  grid-column: span 4;
}

.project-card.is-filtered-out {
  display: none;
}

.project-card-media {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  isolation: isolate;
  background: #121513;
  box-shadow: 0 0 0 1px rgba(7, 7, 7, 0.08);
  transform: translateY(0);
  transition:
    box-shadow 520ms cubic-bezier(0.2, 0.72, 0.2, 1),
    transform 520ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.project-card--wide .project-card-media {
  aspect-ratio: 16 / 9;
}

.project-card--portrait .project-card-media {
  aspect-ratio: 4 / 5;
}

.project-card-media::before,
.project-card-media::after,
.project-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.project-card-media::before {
  z-index: 0;
  background-image:
    linear-gradient(rgba(4, 6, 5, 0.25), rgba(4, 6, 5, 0.6)),
    var(--project-poster);
  background-position: center;
  background-size: cover;
  content: "";
  filter: blur(24px) saturate(0.72);
  opacity: 0;
  transform: scale(1.14);
}

.project-card--media-mismatch .project-card-media::before {
  opacity: 0.72;
}

.project-card img {
  z-index: 1;
  object-fit: cover;
  transition:
    filter 650ms cubic-bezier(0.2, 0.72, 0.2, 1),
    transform 650ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.project-card--media-mismatch img {
  padding: 3.5%;
  object-fit: contain;
  filter: drop-shadow(0 18px 38px rgba(0, 0, 0, 0.28));
}

.project-card-media::after {
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(4, 5, 5, 0.52), transparent 32%),
    linear-gradient(0deg, rgba(4, 5, 5, 0.28), transparent 36%);
  content: "";
  pointer-events: none;
}

.project-card-media-meta {
  position: absolute;
  z-index: 3;
  top: 18px;
  right: 18px;
  left: 18px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 9px;
  line-height: 1.4;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}

.project-card-open {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 18px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  background: rgba(7, 7, 7, 0.16);
  color: var(--white);
  font-size: 18px;
  opacity: 0.86;
  transform: translate(0, 0);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition:
    background-color 260ms ease,
    color 260ms ease,
    opacity 260ms ease,
    transform 260ms ease;
}

.project-card-content {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 18px;
  padding: 21px 2px 0;
  border-top: 1px solid transparent;
}

.project-card-index {
  padding-top: 5px;
  color: #878b86;
  font-size: 9px;
}

.project-card-copy {
  min-width: 0;
}

.project-card-title-line {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.project-card-title-line h3 {
  min-width: 0;
  font-size: 27px;
  font-weight: 490;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.project-card--portrait .project-card-title-line h3 {
  font-size: 23px;
}

.project-card-title-line h3 span {
  display: block;
  margin-top: 6px;
  color: #777b76;
  font-size: 0.72em;
  font-weight: 430;
}

.project-card-title-line > span {
  flex: 0 0 auto;
  padding-top: 4px;
  color: #777b76;
  font-size: 9px;
}

.project-card-insight {
  max-width: 620px;
  margin-top: 16px;
  color: #555954;
  font-size: 13px;
  line-height: 1.7;
  text-wrap: pretty;
}

.project-card:focus-visible .project-card-media {
  box-shadow: 0 24px 54px rgba(19, 25, 21, 0.17);
  transform: translateY(-4px);
}

.project-card:focus-visible img {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.035);
}

.project-card--media-mismatch:focus-visible img {
  filter: drop-shadow(0 22px 42px rgba(0, 0, 0, 0.34)) saturate(1.04);
  transform: scale(1.018);
}

.project-card:focus-visible .project-card-open {
  background: var(--white);
  color: var(--ink);
  opacity: 1;
  transform: translate(3px, -3px);
}

@media (hover: hover) and (pointer: fine) {
  .project-card:hover .project-card-media {
    box-shadow: 0 24px 54px rgba(19, 25, 21, 0.17);
    transform: translateY(-4px);
  }

  .project-card:hover img {
    filter: saturate(1.04) contrast(1.02);
    transform: scale(1.035);
  }

  .project-card--media-mismatch:hover img {
    filter: drop-shadow(0 22px 42px rgba(0, 0, 0, 0.34)) saturate(1.04);
    transform: scale(1.018);
  }

  .project-card:hover .project-card-open {
    background: var(--white);
    color: var(--ink);
    opacity: 1;
    transform: translate(3px, -3px);
  }
}

.noscript {
  margin-top: 30px;
  color: var(--muted-dark);
}

.statement {
  padding: 132px var(--page-pad) 96px;
  border-top: 1px solid rgba(186, 255, 221, 0.18);
  background: var(--ink);
}

.statement-copy {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: start;
  gap: 40px;
}

.statement-copy .section-index {
  color: var(--muted);
}

.statement-lead {
  max-width: 940px;
  font-size: 52px;
  font-weight: 390;
  line-height: 1.24;
}

.film-strip {
  display: grid;
  grid-template-columns: 1.4fr 0.62fr 1fr;
  align-items: end;
  gap: 12px;
  margin-top: 105px;
}

.film-strip figure {
  min-width: 0;
}

.film-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82);
}

.film-strip figure:nth-child(1) img {
  aspect-ratio: 16 / 9;
}

.film-strip figure:nth-child(2) img {
  aspect-ratio: 4 / 5;
}

.film-strip figure:nth-child(3) img {
  aspect-ratio: 4 / 3;
}

.film-strip figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 9px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.4fr) minmax(0, 1fr);
  gap: 80px;
}

.about-label {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-top: 1px solid var(--line-dark);
  padding-top: 18px;
  color: var(--muted-dark);
  font-size: 11px;
  line-height: 1.6;
}

.about-label .section-index {
  margin: 0;
}

.about-label > p:nth-child(2) {
  margin-top: 24px;
}

.about-portrait {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 4 / 5;
  margin-top: auto;
  overflow: hidden;
  border: 1px solid rgba(7, 7, 7, 0.12);
  background: #c7ced0;
}

.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 28%;
  filter: saturate(0.72) contrast(1.03);
}

.about-copy {
  max-width: 1060px;
}

.about-intro {
  display: grid;
  grid-template-columns: minmax(180px, 0.65fr) minmax(0, 1.35fr);
  gap: 48px;
  margin: 48px 0 56px;
  padding-top: 20px;
  border-top: 1px solid var(--line-dark);
}

.about-intro p {
  color: #4c504b;
  font-size: 17px;
  line-height: 1.75;
}

.about-intro p:first-child {
  max-width: 260px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 520;
}

.about-practice {
  margin-bottom: 38px;
  border-top: 1px solid var(--line-dark);
}

.about-practice > div {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 28px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line-dark);
}

.about-practice span {
  color: var(--muted-dark);
  font-size: 9px;
}

.about-practice p {
  font-size: 13px;
  line-height: 1.55;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 132px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.metric-row > div {
  min-height: 172px;
  padding: 25px 24px 22px 0;
  border-right: 1px solid var(--line-dark);
}

.metric-row > div:not(:first-child) {
  padding-left: 24px;
}

.metric-row > div:last-child {
  border-right: 0;
}

.metric-row strong,
.metric-row span {
  display: block;
}

.metric-row strong {
  font-size: 46px;
  font-weight: 430;
}

.metric-row span {
  margin-top: 62px;
  color: var(--muted-dark);
  font-size: 11px;
}

.services {
  position: relative;
  overflow: hidden;
  background: var(--ink-soft);
}

.services::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--signal), #aad9ff, transparent);
  content: "";
}

.services-head {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  align-items: end;
  gap: 40px;
  padding-bottom: 74px;
}

.services-head .section-index {
  margin: 0;
  color: var(--muted);
}

.services-head > p:last-child {
  grid-column: 2;
  margin-top: -20px;
  color: var(--muted);
  font-size: 13px;
}

.service-list {
  border-top: 1px solid var(--line-light);
}

.service-item {
  display: grid;
  grid-template-columns: 0.55fr 0.8fr 1.15fr;
  align-items: center;
  gap: 40px;
  min-height: 128px;
  border-bottom: 1px solid var(--line-light);
}

.service-item > span {
  color: var(--muted);
  font-size: 10px;
}

.service-item h3 {
  font-size: 28px;
  font-weight: 420;
}

.service-item p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.tool-line {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 36px;
  margin-top: 60px;
  color: #777c77;
  font-size: 9px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.65fr);
  gap: 80px;
  padding: 132px var(--page-pad) 105px;
  background: var(--paper-deep);
  color: var(--ink);
}

.contact-main .section-index {
  color: var(--muted-dark);
}

.contact-main h2 {
  max-width: 830px;
}

.contact-email {
  display: flex;
  max-width: 700px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 82px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--ink);
  font-size: 22px;
  overflow-wrap: anywhere;
}

.contact-email span {
  transition: transform 180ms ease;
}

.contact-email:hover span {
  transform: translate(4px, -4px);
}

.contact-details {
  align-self: end;
  border-top: 1px solid var(--line-dark);
}

.contact-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-dark);
  font-size: 12px;
}

.contact-row > span {
  color: var(--muted-dark);
  font-size: 9px;
}

.contact-row a {
  display: flex;
  min-height: 28px;
  align-items: center;
  transition: color 180ms ease;
}

.contact-row a:hover,
.contact-row a:focus-visible {
  color: #4d514d;
}

.contact-row--pending p {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.contact-row em {
  color: var(--muted-dark);
  font-size: 10px;
  font-style: normal;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 30px;
  padding: 30px var(--page-pad);
  border-top: 1px solid var(--line-light);
  background: var(--ink);
  color: var(--muted);
  font-size: 9px;
}

.project-dialog {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--ink);
  color: var(--white);
}

.project-dialog::backdrop {
  background: rgba(0, 0, 0, 0.88);
}

.project-dialog[open] {
  animation: dialog-in 360ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.project-dialog[open].is-closing {
  animation: dialog-out 240ms cubic-bezier(0.4, 0, 0.8, 0.28) forwards;
}

@keyframes dialog-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
}

@keyframes dialog-out {
  to {
    opacity: 0;
    transform: translateY(16px);
  }
}

.project-dialog-shell {
  height: 100%;
  overflow: auto;
  overscroll-behavior: contain;
  scroll-behavior: smooth;
  scrollbar-color: #555 var(--ink);
}

.project-dialog-content {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 160ms ease,
    transform 280ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.project-dialog-content.is-transitioning {
  opacity: 0;
  transform: translateY(10px);
}

.project-dialog-bar {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  height: var(--header-height);
  align-items: center;
  padding: 0 var(--page-pad);
  border-bottom: 1px solid var(--line-light);
  background: rgba(7, 7, 7, 0.9);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.project-dialog-bar > p {
  color: var(--muted);
  font-size: 10px;
}

.dialog-close {
  display: grid;
  width: 42px;
  height: 42px;
  cursor: pointer;
  place-self: center end;
  place-items: center;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  background: transparent;
  font-size: 27px;
  font-weight: 250;
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.dialog-close:hover {
  background: var(--white);
  color: var(--ink);
}

.project-case-head {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
  align-items: end;
  gap: 70px;
  padding: 96px var(--page-pad) 64px;
}

.project-case-kicker {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 10px;
}

.project-case-title {
  font-size: 84px;
  font-weight: 430;
  line-height: 0.98;
}

.project-case-title span {
  display: block;
  color: #8d918d;
}

.project-case-intro {
  padding-bottom: 8px;
  color: #c0c3bf;
  font-size: 17px;
  line-height: 1.75;
}

.project-player-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  background: #020202;
}

.project-stage {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-width: 0;
  min-height: 68vh;
  overflow: hidden;
  background: #050505;
}

.project-video-frame {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  place-items: center;
  background: #050505;
}

.project-video-frame[data-video-orientation="portrait"] video {
  max-width: 620px;
}

.project-stage video {
  width: 100%;
  height: 100%;
  max-height: 82vh;
  object-fit: contain;
  background: #050505;
}

.project-video-error {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 20px;
  left: 20px;
  padding: 12px 14px;
  border: 1px solid var(--line-light);
  background: rgba(7, 7, 7, 0.86);
  color: #c5c8c5;
  font-size: 10px;
  text-align: center;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.project-video-error[hidden] {
  display: none;
}

.project-download-bar {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 18px;
  border-top: 1px solid var(--line-light);
  background: #0c0c0c;
}

.project-download-bar > p {
  color: #727672;
  font-size: 9px;
}

.project-download {
  display: inline-flex;
  min-height: 34px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  color: var(--white);
  font-size: 10px;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

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

.clip-list {
  border-left: 1px solid var(--line-light);
}

.clip-list-head {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border-bottom: 1px solid var(--line-light);
  color: var(--muted);
  font-size: 9px;
}

.clip-button {
  display: grid;
  width: 100%;
  grid-template-columns: 28px 1fr auto;
  align-items: start;
  gap: 10px;
  cursor: pointer;
  padding: 18px;
  border-bottom: 1px solid var(--line-light);
  background: transparent;
  color: #8f938f;
  text-align: left;
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.clip-button:hover,
.clip-button.is-active {
  background: #151515;
  color: var(--white);
}

.clip-button > span:first-child,
.clip-button > span:last-child {
  padding-top: 2px;
  font-size: 9px;
}

.clip-button strong {
  display: block;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.4;
}

.clip-button small {
  display: block;
  margin-top: 6px;
  color: #727672;
  font-size: 9px;
}

.project-copy-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: 100px;
  padding: 110px var(--page-pad);
  background: var(--paper);
  color: var(--ink);
}

.project-copy-meta {
  border-top: 1px solid var(--line-dark);
}

.project-copy-meta dl {
  margin: 0;
}

.project-copy-meta div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line-dark);
}

.project-copy-meta dt {
  color: var(--muted-dark);
  font-size: 9px;
}

.project-copy-meta dd {
  margin: 0;
  font-size: 11px;
}

.project-copy-main > p:first-child {
  margin-bottom: 26px;
  color: var(--muted-dark);
  font-size: 10px;
}

.project-copy-main > p:nth-child(2) {
  max-width: 760px;
  font-size: 28px;
  line-height: 1.55;
}

.project-role {
  margin-top: 38px;
  color: var(--muted-dark);
  font-size: 12px;
}

.project-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 70px;
  padding-top: 18px;
  border-top: 1px solid var(--line-dark);
}

.project-highlight span {
  color: var(--muted-dark);
  font-size: 9px;
}

.project-highlight p {
  margin-top: 28px;
  font-size: 14px;
}

.project-next {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
  width: 100%;
  min-height: 300px;
  cursor: pointer;
  padding: 70px var(--page-pad);
  border-top: 1px solid var(--line-light);
  background: var(--ink);
  color: var(--white);
  text-align: left;
}

.project-next span {
  display: block;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 9px;
}

.project-next strong {
  font-size: 52px;
  font-weight: 420;
}

.project-next > i {
  font-size: 34px;
  font-style: normal;
  transition: transform 180ms ease;
}

.project-next:hover > i {
  transform: translateX(8px);
}

.reveal.is-pending {
  opacity: 0;
  transform: translateY(22px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

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

  .hero-title {
    font-size: 76px;
  }

  .section-head h2,
  .about-copy h2,
  .services-head h2,
  .contact-main h2 {
    font-size: 60px;
  }

  .statement-lead {
    font-size: 44px;
  }

  .project-case-title {
    font-size: 68px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 64px;
  }

  .site-menu {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: flex;
    height: calc(100svh - var(--header-height));
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    padding: 32px var(--page-pad);
    visibility: hidden;
    background: rgba(7, 7, 7, 0.86);
    opacity: 0;
    transform: translateY(-10px);
    -webkit-backdrop-filter: blur(22px) saturate(125%);
    backdrop-filter: blur(22px) saturate(125%);
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms ease;
  }

  body.is-menu-open .site-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-menu > a,
  .site-menu > a:not(.nav-contact) {
    min-height: 72px;
    border-bottom: 1px solid var(--line-light);
    color: var(--white);
    font-size: 28px;
  }

  .site-menu > a:not(.nav-contact) {
    display: flex;
    align-items: center;
  }

  .site-menu .nav-contact {
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
  }

  body.is-menu-open .menu-toggle span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  body.is-menu-open .menu-toggle span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-content .eyebrow {
    margin-bottom: -4px;
  }

  .hero-copy > p {
    max-width: 520px;
  }

  .section-head,
  .statement-copy,
  .about-grid,
  .contact,
  .project-case-head,
  .project-copy-band {
    grid-template-columns: 1fr;
  }

  .section-head,
  .about-grid,
  .project-case-head,
  .project-copy-band {
    gap: 48px;
  }

  .section-intro {
    padding: 0;
  }

  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 22px;
    row-gap: 76px;
  }

  .project-card--wide {
    grid-column: span 2;
  }

  .project-card--portrait {
    grid-column: span 1;
  }

  .statement-copy {
    gap: 20px;
  }

  .film-strip {
    grid-template-columns: 1.2fr 0.7fr;
  }

  .film-strip figure:nth-child(3) {
    display: none;
  }

  .about-label {
    display: grid;
    min-height: 0;
    grid-template-columns: minmax(0, 1fr) minmax(180px, 260px);
    gap: 24px;
  }

  .about-label .section-index {
    grid-column: 1;
    grid-row: 1;
  }

  .about-label > p:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
    align-self: end;
    margin-top: 0;
  }

  .about-portrait {
    grid-column: 2;
    grid-row: 1 / 3;
    margin-top: 0;
  }

  .about-intro {
    gap: 34px;
  }

  .metric-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .metric-row > div:nth-child(2) {
    border-right: 0;
  }

  .metric-row > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-dark);
  }

  .services-head {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .services-head > p:last-child {
    grid-column: 1;
    margin-top: 0;
  }

  .service-item {
    grid-template-columns: 70px 0.8fr 1.2fr;
    gap: 24px;
  }

  .contact {
    gap: 90px;
  }

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

  .project-stage {
    min-height: 54vh;
  }

  .clip-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .clip-list-head {
    grid-column: 1 / -1;
  }

  .clip-button:nth-child(even) {
    border-right: 1px solid var(--line-light);
  }
}

@media (max-width: 640px) {
  :root {
    --page-pad: 18px;
  }

  .site-brand {
    min-width: 0;
  }

  .brand-name b {
    display: none;
  }

  .hero {
    height: calc(100svh - 38px);
  }

  .hero-video,
  .hero-poster {
    object-position: 46% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(3, 5, 6, 0.62), rgba(3, 5, 6, 0.16)),
      linear-gradient(0deg, rgba(3, 4, 5, 0.9), rgba(3, 4, 5, 0.02) 72%);
  }

  .hero-content {
    bottom: 120px;
  }

  .hero-title {
    font-size: 50px;
    line-height: 0.92;
  }

  .hero-copy > p {
    font-size: 13px;
    line-height: 1.55;
  }

  .hero-actions {
    gap: 20px;
    margin-top: 20px;
  }

  .text-action {
    gap: 18px;
    font-size: 11px;
  }

  .text-action:hover {
    gap: 22px;
  }

  .hero-meta {
    grid-template-columns: 1fr auto;
  }

  .hero-meta > span:nth-child(2) {
    display: none;
  }

  .discipline-strip {
    height: 38px;
  }

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

  .section-head h2,
  .about-copy h2,
  .services-head h2,
  .contact-main h2 {
    font-size: 42px;
    line-height: 1.08;
  }

  .section-intro,
  .about-intro p {
    font-size: 15px;
    line-height: 1.75;
  }

  .work-toolbar {
    display: block;
    margin-top: 60px;
    padding-bottom: 14px;
  }

  .work-filters {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
  }

  .work-filters button {
    min-height: 44px;
    min-width: 0;
    padding: 0 8px;
    border-bottom: 1px solid var(--line-dark);
  }

  .work-filters button:nth-child(2n) {
    border-right: 0;
  }

  .work-filters button:last-child {
    grid-column: 1 / -1;
    border-bottom: 0;
    border-right: 0;
  }

  .work-toolbar > p {
    margin-top: 14px;
  }

  .project-grid {
    grid-template-columns: 1fr;
    gap: 66px;
  }

  .project-card--wide,
  .project-card--portrait {
    grid-column: span 1;
  }

  .project-card--media-landscape .project-card-media {
    aspect-ratio: 4 / 3;
  }

  .project-card--media-portrait .project-card-media {
    aspect-ratio: 4 / 5;
  }

  .project-card--media-mismatch .project-card-media::before {
    opacity: 0;
  }

  .project-card--media-mismatch img {
    padding: 0;
    object-fit: cover;
    filter: none;
  }

  .project-card-content {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 12px;
    padding: 17px 0 0;
  }

  .project-card-media-meta {
    top: 14px;
    right: 14px;
    left: 14px;
  }

  .project-card-open {
    right: 14px;
    bottom: 14px;
    width: 42px;
    height: 42px;
    background: rgba(7, 7, 7, 0.22);
    opacity: 1;
  }

  .project-card-title-line h3,
  .project-card--portrait .project-card-title-line h3 {
    font-size: 22px;
  }

  .project-card-insight {
    margin-top: 13px;
    font-size: 12px;
    line-height: 1.7;
  }

  .statement {
    padding: 92px var(--page-pad) 70px;
  }

  .statement-lead {
    font-size: 34px;
  }

  .film-strip {
    grid-template-columns: 1.25fr 0.75fr;
    gap: 8px;
    margin-top: 72px;
  }

  .about-intro {
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 32px 0 42px;
  }

  .about-label {
    display: flex;
    gap: 0;
  }

  .about-label > p:nth-child(2) {
    margin-top: 24px;
  }

  .about-portrait {
    width: 100%;
    max-width: none;
    aspect-ratio: 16 / 10;
    margin-top: 28px;
  }

  .about-portrait img {
    object-position: 50% 24%;
  }

  .about-intro p:first-child {
    max-width: none;
  }

  .about-practice {
    margin-bottom: 32px;
  }

  .about-practice > div {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 15px 0;
  }

  .metric-row {
    margin-top: 84px;
  }

  .metric-row > div {
    min-height: 140px;
    padding: 18px 14px 16px 0;
  }

  .metric-row > div:not(:first-child) {
    padding-left: 14px;
  }

  .metric-row > div:nth-child(3) {
    padding-left: 0;
  }

  .metric-row strong {
    font-size: 34px;
  }

  .metric-row span {
    margin-top: 45px;
    font-size: 10px;
  }

  .service-item {
    grid-template-columns: 36px 1fr;
    gap: 18px;
    padding: 24px 0;
  }

  .service-item h3 {
    font-size: 23px;
  }

  .service-item p {
    grid-column: 2;
  }

  .contact {
    gap: 58px;
    padding: 92px var(--page-pad) 70px;
  }

  .contact-email {
    margin-top: 56px;
    min-height: 48px;
    font-size: 17px;
  }

  .contact-row {
    grid-template-columns: 78px 1fr;
    align-items: center;
    padding: 16px 0;
  }

  .contact-row a {
    min-height: 44px;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    padding: 24px var(--page-pad);
  }

  .site-footer p:nth-child(2) {
    display: none;
  }

  .project-dialog-bar {
    grid-template-columns: 1fr auto;
  }

  .project-dialog-bar > p {
    display: none;
  }

  .project-case-head {
    padding-top: 70px;
  }

  .project-case-title {
    font-size: 48px;
  }

  .project-case-intro {
    font-size: 14px;
  }

  .project-stage {
    min-height: 0;
  }

  .project-video-frame[data-video-orientation="landscape"] {
    aspect-ratio: 16 / 10;
  }

  .project-video-frame[data-video-orientation="portrait"] {
    aspect-ratio: 4 / 5;
    max-height: 78svh;
  }

  .project-video-frame[data-video-orientation="portrait"] video {
    max-width: none;
  }

  .project-download-bar {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .project-download {
    width: 100%;
  }

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

  .clip-button:nth-child(even) {
    border-right: 0;
  }

  .project-copy-band {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .project-copy-main > p:nth-child(2) {
    font-size: 21px;
    line-height: 1.6;
  }

  .project-highlights {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 52px;
  }

  .project-highlight p {
    margin-top: 10px;
  }

  .project-next {
    min-height: 230px;
    padding: 48px var(--page-pad);
  }

  .project-next strong {
    font-size: 34px;
  }
}

@media (max-width: 380px) {
  .hero-title {
    font-size: 44px;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .contact-email {
    font-size: 15px;
  }
}

@media (max-height: 680px) {
  .hero-content {
    bottom: 96px;
  }

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

  .hero-copy > p {
    display: none;
  }

  .hero-actions {
    margin-top: 12px;
  }

  .hero-content .eyebrow {
    display: none;
  }
}

@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;
  }

  .hero-video {
    display: none;
  }
}
