:root {
  --paper: #f2f0ea;
  --ink: #0a0a0a;
  --muted: rgba(10, 10, 10, .62);
  --line: rgba(10, 10, 10, .24);
  --page-accent: #f2f0ea;
  --page-accent-ink: #0a0a0a;
  --pad: clamp(16px, 2.8vw, 42px);
  --header-h: 64px;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  --ease: cubic-bezier(.22, .8, .18, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid #1677ff;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  transform: translateY(-160%);
  padding: 10px 14px;
  background: #fff;
  color: #000;
  font: 700 12px/1 var(--mono);
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: var(--header-h);
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: minmax(120px, 1fr) auto minmax(120px, 1fr);
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid rgba(10, 10, 10, .16);
  background: rgba(242, 240, 234, .9);
  backdrop-filter: blur(16px);
}

.brand {
  width: fit-content;
  font-size: clamp(22px, 2.5vw, 40px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.07em;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.1vw, 34px);
  font: 700 10px/1 var(--mono);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.site-nav a,
.header-contact {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after,
.header-contact::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: currentColor;
  transition: right .3s var(--ease);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after,
.header-contact:hover::after {
  right: 0;
}

.header-contact {
  justify-self: end;
  font: 800 10px/1 var(--mono);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.hero {
  min-height: min(780px, calc(100svh - var(--header-h)));
  padding: clamp(44px, 7vw, 104px) var(--pad) clamp(42px, 6vw, 88px);
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: clamp(34px, 5vw, 72px);
  background: var(--page-accent);
  color: var(--page-accent-ink);
  border-bottom: 1px solid currentColor;
}

.eyebrow,
.section-label,
.meta-line,
.breadcrumbs,
.card-index,
.price-note {
  font: 700 10px/1.3 var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero h1 {
  align-self: center;
  margin: 0;
  max-width: 12.8ch;
  font-size: clamp(54px, 9.7vw, 164px);
  line-height: .84;
  letter-spacing: -.075em;
  font-weight: 900;
  text-wrap: balance;
}

.hero-lead {
  width: min(760px, 100%);
  margin: 0;
  font-size: clamp(20px, 2.6vw, 42px);
  line-height: 1.04;
  letter-spacing: -.042em;
  font-weight: 670;
  text-wrap: pretty;
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-end;
}

.hero-meta .meta-line:last-child {
  text-align: right;
}

.breadcrumbs {
  padding: 17px var(--pad);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.breadcrumbs a {
  color: var(--ink);
}

.breadcrumbs a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.section {
  padding: clamp(54px, 8vw, 128px) var(--pad);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(120px, .8fr) minmax(0, 2fr);
  gap: clamp(24px, 7vw, 120px);
  margin-bottom: clamp(34px, 5vw, 74px);
}

.section-heading h2 {
  margin: 0;
  max-width: 17ch;
  font-size: clamp(38px, 6vw, 96px);
  line-height: .88;
  letter-spacing: -.065em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.section-heading p {
  margin: 0;
  max-width: 720px;
  font-size: clamp(18px, 2vw, 30px);
  line-height: 1.13;
  letter-spacing: -.03em;
  text-wrap: pretty;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
}

.feature {
  min-height: 230px;
  padding: 18px clamp(16px, 2vw, 32px) 28px 0;
  display: grid;
  grid-template-columns: 46px 1fr;
  align-content: start;
  gap: 10px;
  border-bottom: 1px solid var(--line);
}

.feature:nth-child(even) {
  padding-left: clamp(16px, 2vw, 32px);
  border-left: 1px solid var(--line);
}

.feature .n {
  font: 700 10px/1 var(--mono);
}

.feature h3 {
  margin: 0 0 14px;
  font-size: clamp(22px, 2.2vw, 38px);
  line-height: .95;
  letter-spacing: -.045em;
}

.feature p {
  margin: 0;
  max-width: 46ch;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

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

.process-step {
  min-width: 0;
  min-height: 300px;
  padding: 16px 18px 24px 0;
  display: grid;
  align-content: space-between;
  border-right: 1px solid var(--line);
}

.process-step + .process-step {
  padding-left: 18px;
}

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

.process-step .n {
  font: 700 10px/1 var(--mono);
}

.process-step h3 {
  margin: 44px 0 14px;
  max-width: 100%;
  font-size: clamp(22px, 2.05vw, 38px);
  line-height: .93;
  letter-spacing: -.045em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.budget-section {
  background: #0a0a0a;
  color: #fff;
}

.budget-section .section-heading p,
.budget-section .price-note {
  color: rgba(255, 255, 255, .62);
}

.price-list {
  border-top: 1px solid rgba(255, 255, 255, .5);
}

.price-row {
  padding: 22px 0;
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(180px, .8fr);
  gap: 20px;
  align-items: baseline;
  border-bottom: 1px solid rgba(255, 255, 255, .22);
}

.price-row h3,
.price-row p {
  margin: 0;
}

.price-row h3 {
  font-size: clamp(22px, 3vw, 46px);
  line-height: 1;
  letter-spacing: -.045em;
}

.price-row p {
  text-align: right;
  font-size: clamp(20px, 2.7vw, 42px);
  line-height: 1;
  font-weight: 850;
  letter-spacing: -.045em;
}

.price-note {
  max-width: 720px;
  margin: 24px 0 0;
  line-height: 1.55;
}

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

.detail-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.detail-card {
  min-width: 0;
  min-height: 230px;
  padding: 18px 22px 24px 0;
  border-right: 1px solid var(--line);
}

.detail-card + .detail-card {
  padding-left: 22px;
}

.detail-card:last-child {
  border-right: 0;
}

.detail-card h3 {
  margin: 42px 0 14px;
  font-size: clamp(22px, 2.4vw, 36px);
  line-height: .96;
  letter-spacing: -.045em;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.detail-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.related-grid,
.service-cards,
.work-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.research-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.research-card {
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  background: var(--card-accent, var(--paper));
  color: var(--card-ink, var(--ink));
  transition: transform .35s var(--ease);
}

.research-card:hover {
  position: relative;
  z-index: 1;
  transform: translateY(-5px);
}

.research-card-media {
  aspect-ratio: 16 / 10;
  margin: 0;
  overflow: hidden;
  background: #e9ebf1;
  border-bottom: 1px solid rgba(10, 10, 10, .2);
}

.research-card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform .6s var(--ease);
}

.research-card:hover .research-card-media img {
  transform: scale(1.018);
}

.research-card-copy {
  min-height: 360px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
}

.research-card-copy h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 80px);
  line-height: .88;
  letter-spacing: -.068em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.research-card-copy > p {
  margin: 0;
  max-width: 28ch;
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.05;
  letter-spacing: -.035em;
}

.related-card,
.service-card,
.work-card {
  min-width: 0;
  min-height: 300px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  background: var(--paper);
  transition: transform .35s var(--ease), background .25s ease;
}

.related-card:hover,
.service-card:hover,
.work-card:hover {
  position: relative;
  z-index: 1;
  transform: translateY(-5px);
}

.service-card {
  background: var(--card-accent, var(--paper));
  color: var(--card-ink, var(--ink));
}

.related-card h3,
.service-card h2,
.work-card h2 {
  margin: 0;
  max-width: 100%;
  font-size: clamp(28px, 2.8vw, 48px);
  line-height: .91;
  letter-spacing: -.06em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.related-card p,
.service-card p,
.work-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.46;
}

.card-arrow {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px;
  font: 700 10px/1.3 var(--mono);
  letter-spacing: .07em;
  text-transform: uppercase;
}

.card-arrow span:last-child {
  font-size: 25px;
}

.cta {
  padding: clamp(60px, 9vw, 150px) var(--pad);
  background: var(--page-accent);
  color: var(--page-accent-ink);
}

.cta .section-label {
  display: block;
  margin-bottom: clamp(40px, 7vw, 100px);
}

.cta a.email {
  display: inline-block;
  max-width: 100%;
  font-size: clamp(42px, 8.5vw, 140px);
  line-height: .84;
  letter-spacing: -.075em;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.cta a.email::after {
  content: "↗";
  margin-left: .12em;
  font-size: .42em;
  vertical-align: top;
}

.cta p {
  width: min(620px, 100%);
  margin: 42px 0 0;
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.16;
  letter-spacing: -.03em;
}

.site-footer {
  padding: 22px var(--pad);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  background: #0a0a0a;
  color: #fff;
  font: 700 9px/1.4 var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.footer-links a:hover {
  color: var(--page-accent);
}

.site-footer span:last-child {
  text-align: right;
}

.intro-copy {
  width: min(860px, 100%);
  margin-left: auto;
}

.intro-copy p {
  margin: 0 0 1.2em;
  font-size: clamp(20px, 2.5vw, 38px);
  line-height: 1.12;
  letter-spacing: -.035em;
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

.fake-intro-grid {
  display: grid;
  grid-template-columns: minmax(320px, .86fr) minmax(0, 1.35fr);
  gap: clamp(42px, 6vw, 104px);
  align-items: start;
}

.fake-intro-aside,
.fake-intro-copy {
  min-width: 0;
}

.fake-intro-copy .section-label {
  display: block;
  margin-bottom: clamp(34px, 4vw, 66px);
}

.fake-intro-copy h2 {
  margin: 0;
  max-width: 17ch;
  font-size: clamp(46px, 4.15vw, 74px);
  line-height: .99;
  letter-spacing: -.043em;
  font-weight: 740;
  text-transform: none;
  text-wrap: balance;
}

.fake-intro-lead {
  margin: clamp(30px, 4vw, 58px) 0 0;
  max-width: 760px;
  font-size: clamp(20px, 1.8vw, 29px);
  line-height: 1.18;
  letter-spacing: -.028em;
  text-wrap: pretty;
}

.fake-intro-copy .intro-copy {
  width: auto;
  margin: clamp(38px, 5vw, 72px) 0 0;
  padding-top: clamp(26px, 3vw, 42px);
  border-top: 1px solid var(--line);
}

.fake-intro-copy .intro-copy p {
  font-size: clamp(18px, 1.45vw, 24px);
  line-height: 1.28;
  letter-spacing: -.022em;
}

.morph-demo {
  margin: 0;
  border: 1px solid var(--line);
  background: #edf1f7;
}

.morph-demo-head {
  min-height: 44px;
  padding: 12px 14px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: rgba(10, 10, 10, .7);
  font: 700 9px/1 var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.morph-demo-media {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #f3f6fa;
}

.morph-demo-media::after {
  content: "";
  position: absolute;
  z-index: 2;
  right: 0;
  left: 0;
  top: 15%;
  height: 1px;
  background: rgba(47, 96, 213, .82);
  box-shadow: 0 0 18px rgba(47, 96, 213, .34);
  animation: morph-scan 3.85s ease-in-out infinite alternate;
  pointer-events: none;
}

.morph-demo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.morph-demo-static {
  display: none !important;
}

.morph-demo figcaption {
  padding: 15px 16px 18px;
  display: grid;
  gap: 7px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.morph-demo figcaption strong {
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: -.025em;
}

.morph-demo figcaption span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

@keyframes morph-scan {
  0%,
  12% {
    top: 15%;
    opacity: .35;
  }

  88%,
  100% {
    top: 86%;
    opacity: .9;
  }
}

.research-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 28px);
}

.research-gallery figure {
  min-width: 0;
  margin: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--line);
  background: #e9ebf1;
}

.research-gallery figure:first-child {
  grid-column: 1 / -1;
}

.research-gallery--model {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.research-gallery img {
  width: 100%;
  height: auto;
  display: block;
  background: #e9ebf1;
}

.research-gallery figcaption {
  padding: 15px 16px 18px;
  border-top: 1px solid var(--line);
  background: var(--paper);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.budget-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 2px solid var(--ink);
}

.budget-table th,
.budget-table td {
  padding: 20px 14px 20px 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.budget-table th {
  width: 25%;
  font: 700 10px/1.3 var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.budget-table td:nth-child(2) {
  width: 25%;
  font-size: clamp(20px, 2.4vw, 36px);
  line-height: 1;
  font-weight: 850;
  letter-spacing: -.035em;
}

.budget-table td:last-child {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
}

.contact-card {
  min-height: 300px;
  padding: 18px 26px 28px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
}

.contact-card + .contact-card {
  padding-left: 26px;
  border-right: 0;
}

.contact-card h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 64px);
  line-height: .9;
  letter-spacing: -.06em;
  text-transform: uppercase;
}

.contact-card a {
  font-size: clamp(23px, 3vw, 46px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -.04em;
  overflow-wrap: anywhere;
}

.contact-card a::after {
  content: "↗";
  margin-left: .2em;
  font-size: .55em;
  vertical-align: top;
}

.notice {
  padding: 16px 18px;
  border: 1px solid currentColor;
  font: 700 11px/1.5 var(--mono);
  letter-spacing: .03em;
}

.not-found {
  min-height: 100svh;
  padding: var(--pad);
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: #0a0a0a;
  color: #fff;
}

.not-found h1 {
  align-self: center;
  margin: 0;
  font-size: clamp(110px, 29vw, 430px);
  line-height: .7;
  letter-spacing: -.1em;
}

.not-found footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  font: 700 11px/1.4 var(--mono);
  text-transform: uppercase;
}

.not-found footer a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .site-nav {
    justify-content: flex-end;
  }

  .site-nav a:nth-child(1),
  .site-nav a:nth-child(4) {
    display: none;
  }

  .fake-intro-grid {
    grid-template-columns: 1fr;
  }

  .fake-intro-copy {
    order: 1;
  }

  .fake-intro-aside {
    width: min(620px, 100%);
    order: 2;
  }

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

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

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

  .process-step:nth-child(3),
  .process-step:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .process-step:nth-child(3) {
    padding-left: 0;
  }

  .related-grid,
  .service-cards,
  .work-list,
  .research-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .site-footer > span:first-child {
    display: none;
  }
}

@media (max-width: 700px) {
  :root {
    --header-h: 56px;
  }

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

  .site-nav {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 120;
    padding: 12px 14px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(10, 10, 10, .92);
    color: #fff;
    backdrop-filter: blur(18px);
  }

  .site-nav a {
    padding: 8px 4px;
    text-align: center;
  }

  .site-nav a:nth-child(1),
  .site-nav a:nth-child(4) {
    display: block;
  }

  .header-contact {
    display: none;
  }

  .hero {
    min-height: calc(100svh - var(--header-h));
    gap: 30px;
  }

  .hero h1 {
    font-size: clamp(47px, 16vw, 82px);
    line-height: .85;
  }

  .hero-lead {
    font-size: 20px;
    line-height: 1.08;
  }

  .hero-meta {
    align-items: flex-start;
  }

  .hero-meta .meta-line:last-child {
    text-align: left;
  }

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

  .section-heading h2 {
    font-size: clamp(38px, 12vw, 64px);
  }

  .fake-intro-grid {
    gap: 38px;
  }

  .fake-intro-copy .section-label {
    margin-bottom: 24px;
  }

  .fake-intro-copy h2 {
    font-size: clamp(38px, 11.2vw, 54px);
    line-height: .98;
    letter-spacing: -.045em;
  }

  .fake-intro-lead {
    margin-top: 26px;
    font-size: 19px;
    line-height: 1.24;
  }

  .fake-intro-copy .intro-copy {
    margin-top: 32px;
    padding-top: 24px;
  }

  .fake-intro-copy .intro-copy p {
    font-size: 18px;
    line-height: 1.3;
  }

  .feature-grid,
  .detail-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .feature,
  .feature:nth-child(even) {
    min-height: 0;
    padding: 18px 0 24px;
    border-left: 0;
  }

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

  .process-step,
  .process-step + .process-step,
  .process-step:nth-child(3) {
    min-height: 230px;
    padding: 16px 0 22px;
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .process-step:first-child {
    border-top: 0;
  }

  .price-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .price-row p {
    text-align: left;
  }

  .detail-card,
  .detail-card + .detail-card {
    min-height: 0;
    padding: 18px 0 26px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .related-grid,
  .service-cards,
  .work-list,
  .research-grid,
  .research-gallery {
    grid-template-columns: 1fr;
  }

  .research-gallery figure:first-child {
    grid-column: auto;
  }

  .related-card,
  .service-card,
  .work-card {
    min-height: 260px;
  }

  .research-card-copy {
    min-height: 300px;
  }

  .budget-table,
  .budget-table tbody,
  .budget-table tr,
  .budget-table th,
  .budget-table td {
    display: block;
  }

  .budget-table tr {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
  }

  .budget-table th,
  .budget-table td {
    width: auto !important;
    padding: 0 0 9px;
    border: 0;
  }

  .contact-card,
  .contact-card + .contact-card {
    min-height: 230px;
    padding: 18px 0 26px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .site-footer {
    margin-bottom: 74px;
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .site-footer span:last-child {
    text-align: left;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .morph-demo-animated {
    display: none !important;
  }

  .morph-demo-static {
    display: block !important;
  }

  .morph-demo-media::after {
    display: none;
  }
}


/* V46: static RU/EN page switch */
.header-actions{justify-self:end;display:flex;align-items:center;gap:16px}.page-lang{display:flex;gap:7px;font:800 10px/1 var(--mono);letter-spacing:.06em;text-transform:uppercase}.page-lang a{opacity:.38;padding:8px 0}.page-lang a[aria-current="true"]{opacity:1}.page-lang a:hover{opacity:1}@media(max-width:920px){.header-actions{gap:10px}.page-lang{gap:5px}.header-contact{display:none}}

/* V50: Vimeo projects open inside the site. */
body.video-modal-open {
  overflow: hidden;
}

.video-modal {
  position: fixed;
  z-index: 2000;
  inset: 0;
  padding: clamp(12px, 3vw, 42px);
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, .94);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, visibility .22s ease;
}

.video-modal[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.video-modal__dialog {
  width: min(1200px, 100%);
  color: #f2f0ea;
}

.video-modal__head {
  min-height: 48px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 12px;
}

.video-modal__title {
  margin: 0;
  max-width: calc(100% - 72px);
  font-size: clamp(18px, 2.1vw, 32px);
  line-height: .95;
  letter-spacing: -.045em;
  text-transform: uppercase;
}

.video-modal__close {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  padding: 0;
  border: 1px solid rgba(242, 240, 234, .55);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: transparent;
  color: #f2f0ea;
  font: 300 28px/1 Arial, sans-serif;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}

.video-modal__close:hover {
  background: #f2f0ea;
  color: #0a0a0a;
}

.video-modal__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}

.video-modal__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 700px) {
  .video-modal {
    padding: 10px;
  }

  .video-modal__head {
    min-height: 44px;
    padding-bottom: 8px;
  }

  .video-modal__close {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }
}

@media (orientation: landscape) and (max-height: 700px) {
  .video-modal__dialog {
    width: min(1200px, calc((100svh - 66px) * 1.7778));
  }
}

/* V53: indexable project pages and visual proof on the AI-production page. */
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.project-card {
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  background: var(--paper);
  transition: transform .35s var(--ease);
}

.project-card:hover {
  position: relative;
  z-index: 1;
  transform: translateY(-5px);
}

.project-card-media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111;
  border-bottom: 1px solid var(--line);
}

.project-card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .7s var(--ease);
}

.project-card:hover .project-card-media img {
  transform: scale(1.025);
}

.project-card-copy {
  min-height: 250px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 34px;
}

.project-card h3 {
  margin: 0;
  font-size: clamp(27px, 3vw, 48px);
  line-height: .9;
  letter-spacing: -.06em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.case-hero {
  min-height: min(720px, calc(100svh - var(--header-h)));
}

.ai-studio-page .hero h1 {
  max-width: 16ch;
  font-size: clamp(50px, 7.8vw, 126px);
  line-height: .86;
}

.case-hero h1 {
  max-width: 14ch;
  font-size: clamp(52px, 8.7vw, 150px);
}

.case-video-wrap {
  padding: var(--pad);
  border-bottom: 1px solid var(--line);
  background: #090909;
}

.case-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}

.case-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.case-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 2px solid var(--ink);
}

.case-fact {
  min-width: 0;
  min-height: 170px;
  padding: 16px 20px 24px 0;
  border-right: 1px solid var(--line);
}

.case-fact + .case-fact {
  padding-left: 20px;
}

.case-fact:last-child {
  border-right: 0;
}

.case-fact dt {
  font: 700 10px/1.3 var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.case-fact dd {
  margin: 54px 0 0;
  font-size: clamp(21px, 2.15vw, 36px);
  line-height: .96;
  font-weight: 780;
  letter-spacing: -.045em;
  overflow-wrap: anywhere;
}

.case-copy {
  width: min(860px, 100%);
  margin-left: auto;
}

.case-copy p {
  margin: 0 0 1.15em;
  font-size: clamp(20px, 2.25vw, 34px);
  line-height: 1.14;
  letter-spacing: -.035em;
  text-wrap: pretty;
}

.case-copy p:last-child {
  margin-bottom: 0;
}

.faq-list {
  border-top: 2px solid var(--ink);
}

.faq-item {
  display: grid;
  grid-template-columns: minmax(220px, .9fr) minmax(0, 1.4fr);
  gap: clamp(26px, 6vw, 100px);
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.faq-item h3,
.faq-item p {
  margin: 0;
}

.faq-item h3 {
  font-size: clamp(21px, 2.25vw, 36px);
  line-height: 1;
  letter-spacing: -.045em;
}

.faq-item p {
  max-width: 62ch;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

@media (max-width: 980px) {
  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .case-fact:nth-child(2) {
    border-right: 0;
  }

  .case-fact:nth-child(3),
  .case-fact:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .case-fact:nth-child(3) {
    padding-left: 0;
  }
}

@media (max-width: 700px) {
  .project-grid,
  .case-facts {
    grid-template-columns: 1fr;
  }

  .project-card-copy {
    min-height: 220px;
  }

  .case-video-wrap {
    padding: 0;
  }

  .ai-studio-page .hero h1 {
    max-width: 13ch;
    font-size: clamp(45px, 13.7vw, 72px);
  }

  .case-fact,
  .case-fact + .case-fact,
  .case-fact:nth-child(3) {
    min-height: 0;
    padding: 16px 0 24px;
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .case-fact:first-child {
    border-top: 0;
  }

  .case-fact dd {
    margin-top: 24px;
  }

  .faq-item {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
