@font-face {
  font-family: "TWK Everett";
  src: url("/assets/fonts/TWKEverett-Light.otf") format("opentype");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/Inter-Light.ttf") format("truetype");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/Inter-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/Inter-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/Inter-SemiBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "TWK Everett";
  src: url("/assets/fonts/TWKEverett-Regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "TWK Everett";
  src: url("/assets/fonts/TWKEverett-Medium.otf") format("opentype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

:root {
  --ink: #161c2a;
  --night: #0a0913;
  --mist: #f6f8fb;
  --line: #e5e9f0;
  --muted: #9492a6;
  --page-gutter: 40px;
  --display: "TWK Everett", "Helvetica Neue", "Arial Narrow", Arial, sans-serif;
  --body: Inter, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: #fff; color: var(--ink); font-family: var(--body); font-size: 14px; }
body, button, input, select { -webkit-font-smoothing: antialiased; }
main { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
h1, h2, h3, p, blockquote, figure { margin: 0; }

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

.primary-nav a,
.site-footer__nav a {
  position: relative;
}

.primary-nav a::after,
.site-footer__nav a::after {
  position: absolute;
  right: 0;
  bottom: -3px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.pill {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .09em;
  line-height: 16px;
  text-transform: uppercase;
}

.pill--dark { padding: 6px 12px; background: var(--ink); color: #fff; transition: background-color 180ms ease; }
.pill--dark:hover, .pill--dark:focus-visible { background: rgba(22, 28, 42, .5); }
.pill--outline { min-height: 28px; padding: 5px 11px; border: .5px solid var(--ink); gap: 8px; }
.pill--outline:hover, .pill--outline:focus-visible { background: rgba(22, 28, 42, .06); }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible { outline: 2px solid #2b68ff; outline-offset: 3px; }

.hero { position: relative; height: 620px; background: #fff; }
.site-header { position: absolute; z-index: 2; top: 14px; right: 16px; left: 16px; display: flex; justify-content: space-between; align-items: flex-start; }
.primary-nav { display: flex; gap: 24px; align-items: center; color: var(--ink); font-size: 10px; font-weight: 500; letter-spacing: .09em; line-height: 16px; text-transform: uppercase; }
.hero__content { position: absolute; top: 50%; left: 50%; display: flex; width: 410px; flex-direction: column; align-items: center; gap: 40px; transform: translate(-50%, -50%); }
.hero__content > div:first-child { display: flex; width: 100%; flex-direction: column; align-items: center; }
.brand-wordmark { width: 333px; height: 61px; }
.brand-wordmark__base { width: 100%; height: 100%; }
.hero__lead { width: 410px; margin-top: 16px; font-size: 14px; font-weight: 300; letter-spacing: .015em; line-height: 22px; text-align: center; }
.hero__stats { display: flex; gap: 32px; }
.hero-stat { display: flex; width: 120px; align-items: flex-start; gap: 8px; }
.hero-stat strong { font-family: var(--display); font-size: 28px; font-weight: 400; line-height: 28px; }
.hero-stat span { font-size: 10px; font-weight: 500; letter-spacing: .1em; line-height: 14px; text-transform: uppercase; }
.sector-tags { position: absolute; bottom: 0; left: 50%; display: flex; width: 680px; gap: 4px; padding: 16px; transform: translateX(-50%); }
.sector-tags span { display: flex; height: 32px; align-items: center; justify-content: center; padding: 8px 12px; border: .5px solid var(--ink); border-radius: 999px; font-size: 10px; font-weight: 500; letter-spacing: .1em; line-height: 16px; text-transform: uppercase; white-space: nowrap; }
.sector-tags .sector-tags__mobile { display: none; }
.sector-tags__more { flex: 1; letter-spacing: .18em !important; }

.showcase { height: 637px; }
.showcase__image { height: 614px; overflow: hidden; }
.showcase__image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.image-with-noise { position: relative; }
.image-with-noise::after { position: absolute; z-index: 1; inset: 0; background: url("/assets/images/noise-small.png") repeat; background-size: 512px 512px; content: ""; mix-blend-mode: soft-light; opacity: .08; pointer-events: none; }
.caption { display: flex; height: 23px; align-items: center; gap: 8px; padding: 8px 40px 0; font-size: 10px; font-weight: 500; letter-spacing: .1em; line-height: 14px; text-transform: uppercase; }
.caption__tick { width: 2px; height: 9px; background: var(--ink); }
.caption__bars { margin-left: 10px; letter-spacing: 7px; }

.manifesto { position: relative; height: 624px; }
.manifesto p { position: absolute; top: 258px; left: 50%; width: min(554px, calc(100vw - 80px)); font-family: var(--display); font-size: 24px; font-weight: 300; letter-spacing: .02em; line-height: 34px; }

.scale { position: relative; height: 736px; padding: 0 var(--page-gutter); }
.scale h2, .projects h2, .process h2 { font-family: var(--display); font-size: 36px; font-weight: 500; line-height: 40px; }
.scale h2 { width: 441px; }
.scale__metrics { position: absolute; top: 152px; left: calc(50% - 340px); display: flex; gap: 44px; }
.scale-card { width: 296px; }
.line-field { overflow: hidden; width: 100%; margin-bottom: 16px; border-radius: 4px; background: repeating-linear-gradient(101deg, transparent 0 9px, rgba(22, 28, 42, .42) 9.5px 10px, transparent 10.5px 13px); }
.scale-card--short .line-field { height: 135px; }
.scale-card--medium .line-field { height: 271px; }
.scale-card--tall .line-field { height: 322px; }
.scale-card strong { display: block; font-family: var(--display); font-size: 48px; font-weight: 300; letter-spacing: -.02em; line-height: 52px; }
.scale-card p { margin-top: 4px; font-family: var(--body); font-size: 18px; font-weight: 300; letter-spacing: .02em; line-height: 24px; }

.projects { position: relative; height: 768px; overflow: hidden; }
.project-tile { position: absolute; overflow: hidden; opacity: 0; transform: translateY(26px) scale(.965); transition: opacity 650ms cubic-bezier(.22, 1, .36, 1) var(--tile-delay, 0ms), transform 820ms cubic-bezier(.22, 1, .36, 1) var(--tile-delay, 0ms); }
.projects.is-visible .project-tile { opacity: 1; transform: translateY(0) scale(1); }
.project-tile img { width: 100%; height: 100%; object-fit: cover; }
.project-tile__overlay { position: absolute; inset: 0; }
.project-tile--a { top: 51px; left: -49.56px; width: 180.56px; height: 191px; }
.project-tile--a img { height: 234.61px; object-position: center bottom; }
.project-tile--b { top: 145px; left: 267px; width: 170px; height: 120.27px; }
.project-tile--b img { height: 141.35%; object-position: center 33%; }
.project-tile--c { top: -107px; left: 551px; width: 287px; height: 262px; }
.project-tile--d { top: 50px; left: 1016px; width: 158px; height: 140px; }
.project-tile--d img { width: 125.95%; max-width: none; height: 142.14%; object-position: center; transform: translate(-10.25%, -14.9%); }
.project-tile--e { top: 384px; left: 50px; width: 156px; height: 92px; }
.project-tile--f { top: 556.5px; left: 162px; width: 171px; height: 211.37px; }
.project-tile--g { top: 321px; left: 1160px; width: 192px; height: 171.1px; }
.project-tile--g img { height: 181.89px; object-position: center top; }
.project-tile--h { top: 582.24px; left: 1027px; width: 164px; height: 84.53px; }
.project-tile--i { top: 603.73px; left: 474px; width: 110.3px; height: 100px; }
.project-tile--j { top: 625px; left: 720px; width: 227px; height: 175px; }
.project-tile--k { top: 695px; left: 1318px; width: 294px; height: 311px; }
.project-tile--k img { height: 382px; object-position: center bottom; }
.project-tile--l { top: -121px; left: 1371px; width: 158.22px; height: 171.93px; }
.project-tile--l img { height: 199px; object-position: center bottom; }
.projects__intro { position: absolute; top: 301px; left: 50%; display: flex; width: 418px; flex-direction: column; align-items: center; text-align: center; transform: translateX(-50%); }
.projects__intro p { width: 360px; margin-top: 16px; font-size: 14px; font-weight: 300; letter-spacing: .015em; line-height: 22px; }
.projects__intro .pill { margin-top: 24px; }
.projects__button { padding-right: 6px; }
.projects__button img { width: 16px; height: 16px; }

.process { display: grid; height: 798px; grid-template-columns: 1fr 1fr; gap: 24px; padding: 128px var(--page-gutter); }
.process__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 66px 40px; }
.process-card { display: flex; min-width: 0; flex-direction: column; gap: 24px; }
.process-card > img { width: 28px; height: 28px; }
.process-card h3 { margin-bottom: 8px; font-family: var(--display); font-size: 14px; font-weight: 500; line-height: 22px; }
.process-card p { max-width: 320px; font-size: 14px; font-weight: 300; letter-spacing: .015em; line-height: 22px; }

.impact { position: relative; height: 624px; overflow: hidden; background: var(--mist); }
.impact > img { position: absolute; top: 0; right: 0; width: 1231px; max-width: none; height: 624px; object-fit: contain; }
.impact__copy { position: absolute; z-index: 2; top: 204px; left: 10.7%; width: 532px; font-family: var(--display); font-size: 24px; font-weight: 400; letter-spacing: .02em; line-height: 34px; }
.impact__copy p + p { margin-top: 12px; }

.proof { display: flex; height: 392px; align-items: stretch; gap: 76px; padding: 80px var(--page-gutter); border-bottom: 1px solid var(--line); }
.proof__feature { display: flex; width: 491px; flex: 0 0 491px; flex-direction: column; justify-content: space-between; padding: 32px; background: var(--mist); }
.proof__feature > img { width: 132px; height: 23px; filter: brightness(0) saturate(100%); }
.proof__feature strong { display: block; font-family: var(--display); font-size: 36px; font-weight: 500; line-height: 40px; }
.proof__feature p { width: 353px; margin-top: 16px; font-size: 14px; font-weight: 300; letter-spacing: .015em; line-height: 22px; }
.proof__grid { display: grid; flex: 1; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px 48px; }
.proof__grid article { display: flex; min-width: 0; flex-direction: column; gap: 8px; }
.proof-logo { display: flex; height: 48px; align-items: flex-end; }
.proof-logo img { display: block; width: auto; max-width: none; }
.proof-logo--pfizer img { width: 85px; height: 34.802px; margin-bottom: 1.418px; }
.proof-logo--caltech { padding-bottom: 6px; }
.proof-logo--caltech img { width: 83px; height: 20.007px; transform: scaleY(-1); }
.proof-logo--siemens { padding-bottom: 6.53px; }
.proof-logo--siemens img { width: 100.103px; height: 15.927px; filter: brightness(0) saturate(100%); }
.proof-logo--nasa { padding-bottom: 5.336px; }
.proof-logo--nasa img { width: 68px; height: 18.964px; }
.proof__grid p { max-width: 334px; font-size: 14px; font-weight: 300; letter-spacing: .015em; line-height: 22px; }
.wordmark { display: flex; align-items: flex-end; font-size: 17px; font-weight: 800; letter-spacing: .02em; line-height: 14.47px; }

.testimony { position: relative; height: 600px; }
.testimony blockquote { position: absolute; top: 174px; left: 50%; width: 510px; }
.quote-mark { position: absolute; top: -48px; left: -49px; width: 43.5px; height: 18.98px; }
.testimony blockquote > p { font-family: var(--body); font-size: 18px; font-weight: 300; letter-spacing: .02em; line-height: 24px; }
.testimony blockquote footer { margin-top: 34px; font-size: 14px; font-weight: 300; letter-spacing: .015em; line-height: 22px; }
.testimony blockquote footer span { color: rgba(22, 28, 42, .7); }
.logo-strip { position: absolute; right: 0; bottom: 0; left: 0; display: grid; height: 96px; grid-template-columns: repeat(7, 1fr); border-top: 1px solid var(--line); }
.logo-item { position: relative; display: flex; align-items: center; justify-content: center; padding: 0; border: 0; border-right: 1px solid var(--line); background: transparent; color: inherit; cursor: pointer; }
.logo-item:last-child { border-right: 0; }
.logo-item::before { position: absolute; top: -1px; left: 0; width: 100%; height: 2px; background: var(--ink); content: ""; opacity: 0; transform: scaleX(0); transform-origin: left; }
.logo-strip__active { background: rgba(238, 238, 245, .3); }
.logo-strip__active::before { opacity: 1; animation: logo-progress 4200ms linear both; }
.logo-item.is-hovered::before { opacity: 1; transform: scaleX(1); animation: none; }
.logo-item img { width: auto; }
.logo-item:nth-child(1) img { width: 87px; height: 44.66px; }
.logo-item:nth-child(2) img { width: 87.47px; height: 36.1px; }
.logo-item:nth-child(3) img { width: 107.89px; height: 32.23px; }
.logo-item:nth-child(4) img { width: 116.84px; height: 32.13px; }
.logo-item:nth-child(5) img { width: 107.4px; height: 25.57px; }
.logo-item:nth-child(6) img { width: 72.95px; height: 27.22px; }
.logo-item:nth-child(7) img { width: 126px; height: 35.79px; }

@keyframes logo-progress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.contact { height: 780px; overflow: hidden; background: var(--night); }
.contact > img { width: 100%; height: 816px; object-fit: cover; }
.contact-form { position: absolute; z-index: 2; top: 50%; left: 50%; display: flex; width: 454px; flex-direction: column; align-items: center; gap: 16px; padding: 48px; background: #fff; transform: translate(-50%, -50%); }
.contact-form__intro { text-align: center; }
.contact-form h2 { font-family: var(--display); font-size: 28px; font-weight: 500; line-height: 32px; }
.contact-form__intro p { margin-top: 12px; font-size: 14px; font-weight: 300; letter-spacing: .015em; line-height: 22px; }
.form-fields { display: flex; width: 100%; flex-direction: column; gap: 8px; }
.form-fields label { display: block; }
.form-fields__split { display: grid; grid-template-columns: 1fr 1fr; }
.form-fields input { width: 100%; height: 42px; padding: 10px 0; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; background: transparent; color: var(--ink); font-family: var(--body); font-size: 14px; font-weight: 300; letter-spacing: .015em; line-height: 22px; outline-offset: 0; }
.form-fields input::placeholder { color: rgba(22, 28, 42, .6); opacity: 1; }
.project-select { position: relative; width: 100%; }
.project-select__trigger { display: flex; width: 100%; height: 42px; align-items: center; gap: 8px; padding: 10px 0; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; background: transparent; color: var(--ink); cursor: pointer; font-family: var(--body); font-size: 14px; font-weight: 300; letter-spacing: .015em; line-height: 22px; text-align: left; }
.project-select__value { min-width: 0; flex: 1; }
.project-select__value.is-placeholder { color: rgba(22, 28, 42, .6); }
.project-select__trigger img { width: 11px; height: 12px; flex: 0 0 auto; transition: transform 180ms ease; }
.project-select.is-open .project-select__trigger img { transform: rotate(180deg); }
.project-select__menu { position: absolute; z-index: 5; top: calc(100% + 6px); right: 0; left: 0; margin: 0; padding: 4px; border: 1px solid var(--line); background: #fff; box-shadow: 0 14px 34px rgba(22, 28, 42, .12); list-style: none; opacity: 0; pointer-events: none; transform: translateY(-6px); transition: opacity 160ms ease, transform 160ms ease; visibility: hidden; }
.project-select.is-open .project-select__menu { opacity: 1; pointer-events: auto; transform: translateY(0); visibility: visible; }
.project-select__menu [role="option"] { padding: 9px 10px; color: var(--ink); cursor: pointer; font-family: var(--body); font-size: 14px; font-weight: 300; letter-spacing: .015em; line-height: 22px; }
.project-select__menu [role="option"]:hover,
.project-select__menu [role="option"]:focus-visible,
.project-select__menu [role="option"][aria-selected="true"] { background: var(--mist); outline: 0; }
.pill--submit { width: 100%; min-height: 44px; border: 0; cursor: pointer; }
.form-note { color: rgba(22, 28, 42, .7); font-size: 11px; font-weight: 300; letter-spacing: .015em; line-height: 16px; text-align: center; }
.form-status { width: 100%; color: var(--ink); font-size: 11px; line-height: 16px; text-align: center; }
.form-status:empty { display: none; }

.site-footer { position: relative; height: 285px; background: var(--night); color: #fff; font-size: 10px; font-weight: 500; letter-spacing: .1em; line-height: 16px; text-transform: uppercase; }
.site-footer__logo { position: absolute; top: 34px; left: 40px; }
.site-footer__logo img { width: 133px; height: 22px; }
.site-footer__logo:hover img { opacity: 1; }
.office { position: absolute; top: 31px; width: 228px; }
.office--sa { left: 34.2%; }
.office--uk { left: 55%; }
.office--us { left: 75.8%; }
.office span { display: block; margin-bottom: 24px; color: var(--muted); }
.office a { display: inline-block; margin-bottom: 12px; }
.office p { max-width: 228px; }
.site-footer__copyright { position: absolute; bottom: 16px; left: 40px; color: var(--muted); }
.site-footer__nav { position: absolute; bottom: 16px; left: calc(50% - 226px); display: flex; gap: 24px; }
.site-footer__credit { position: absolute; right: 40px; bottom: 16px; color: var(--muted); }

@media (max-width: 900px) {
  :root { --page-gutter: 16px; }

  .hero { height: 585px; }
  .site-header { top: 14px; right: 16px; left: 16px; }
  .primary-nav { gap: 20px; font-size: 10px; }
  .hero__content { top: 250.5px; width: min(310px, calc(100vw - 32px)); gap: 24px; }
  .brand-wordmark { width: 210px; height: 38.058px; }
  .hero__lead { width: min(310px, 100%); }
  .sector-tags {
    width: 100%;
    height: 144px;
    align-content: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 4px;
    padding: 16px;
  }
  .sector-tags span { font-weight: 400; }
  .sector-tags .sector-tags__mobile { display: flex; }
  .sector-tags__more { flex: 0 0 64px; height: 32px !important; }

  .showcase { height: 353px; overflow: hidden; }
  .showcase__image { position: relative; height: 353px; }
  .showcase__image img {
    position: absolute;
    top: 0;
    left: 50%;
    width: 596px;
    max-width: none;
    height: 355px;
    object-fit: cover;
    object-position: center bottom;
    transform: translateX(-50%);
  }
  .caption { display: none; }

  .manifesto { display: flex; height: 446px; align-items: center; padding: 48px 16px 24px; }
  .manifesto p {
    position: static;
    width: min(370px, 100%);
    font-size: 24px;
    line-height: 34px;
  }

  .scale { height: 562px; overflow: hidden; padding: 24px 16px 0; }
  .scale h2, .projects h2, .process h2 { font-size: 28px; line-height: 32px; }
  .scale h2 { width: 441px; }
  .scale__metrics { top: 112px; left: 16px; width: auto; gap: 44px; overflow: visible; }
  .scale-card { width: 296px; flex: 0 0 296px; }
  .scale-card--medium, .scale-card--tall { margin-top: 0; }
  .scale-card--short .line-field { height: 135px; }
  .scale-card--medium .line-field { height: 271px; }
  .scale-card--tall .line-field { height: 322px; }
  .scale-card strong { font-size: 48px; line-height: 52px; }
  .scale-card p { font-size: 18px; line-height: 24px; }

  .projects { height: 874px; }
  .projects__intro { z-index: 2; top: 381px; width: min(306px, calc(100vw - 64px)); }
  .projects__intro p { width: 100%; margin-top: 8px; }
  .projects__intro .pill { margin-top: 24px; }
  .project-tile img { width: 100%; max-width: none; height: 100%; object-fit: cover; transform: none; }
  .project-tile--a { top: 245.6px; left: -305.38px; width: 118.81px; height: 125.68px; }
  .project-tile--b { top: 307.45px; left: -97.08px; width: 111.862px; height: 79.138px; }
  .project-tile--c { top: 99.43px; left: 89.8px; width: 188.849px; height: 172.399px; }
  .project-tile--d { top: 669.36px; left: 594.49px; width: 193.455px; height: 204.641px; }
  .project-tile--e { top: 578.22px; left: 17.69px; width: 72.581px; height: 65.801px; }
  .project-tile--f { top: 623.3px; left: 184.22px; width: 149.368px; height: 115.152px; }
  .project-tile--g { top: 423.26px; left: 490.52px; width: 126.338px; height: 112.587px; }
  .project-tile--h { top: 595.16px; left: 403.01px; width: 107.914px; height: 55.621px; }
  .project-tile--i { top: 583.32px; left: 375.47px; width: 107.914px; height: 55.621px; }
  .project-tile--j { top: 244.94px; left: 355.77px; width: 103.966px; height: 92.121px; }
  .project-tile--k { top: 578.23px; left: -166.17px; width: 112.52px; height: 139.085px; }
  .project-tile--l { top: 105.99px; left: 386.42px; width: 59.959px; height: 75.415px; }

  .process {
    display: flex;
    height: 696px;
    flex-direction: column;
    gap: 32px;
    padding: 24px 16px;
  }
  .process__grid { display: flex; flex-direction: column; gap: 24px; }
  .process-card { display: grid; grid-template-columns: 24px minmax(0, 1fr); gap: 8px; }
  .process-card > img { width: 24px; height: 24px; }
  .process-card > div { display: flex; flex-direction: column; gap: 4px; }
  .process-card h3 { margin: 0; font-size: 14px; line-height: 22px; }
  .process-card p { max-width: none; }

  .impact { height: 625px; }
  .impact > img { top: 225px; right: -274px; left: auto; width: 986px; height: 400px; object-fit: cover; object-position: center bottom; }
  .impact__copy { top: 16px; left: 16px; width: min(370px, calc(100% - 32px)); font-size: 24px; line-height: 34px; }

  .proof { height: 684.64px; flex-direction: column; gap: 24px; padding: 16px; overflow: hidden; }
  .proof__feature {
    width: 100%;
    min-height: 182.64px;
    flex: 0 0 182.64px;
    justify-content: flex-start;
    gap: 40px;
    padding: 24px;
  }
  .proof__feature > img { width: 116.501px; height: 18.64px; }
  .proof__feature strong { font-size: 24px; line-height: 24px; }
  .proof__feature p { width: 100%; margin-top: 8px; }
  .proof__grid { display: flex; flex-direction: column; gap: 8px; padding: 0 24px; }
  .proof__grid article { gap: 8px; }
  .proof__grid p { max-width: none; }

  .testimony { height: 684.64px; overflow: hidden; }
  .testimony blockquote { top: 196px; left: 40px; width: min(322px, calc(100% - 80px)); }
  .testimony blockquote > p { font-family: var(--body); font-size: 18px; line-height: 24px; }
  .testimony blockquote footer { margin-top: 40px; font-size: 14px; line-height: 22px; }
  .quote-mark { top: -45.64px; left: 0; width: 43.5px; height: 18.982px; }
  .logo-strip {
    right: auto;
    bottom: 0;
    left: calc(50% - 396px);
    width: 1109px;
    height: 79px;
    overflow: hidden;
    grid-template-columns: repeat(7, 1fr);
  }
  .logo-item img { max-width: none; max-height: none; }

  .contact { height: 872px; }
  .contact > img { height: 872px; }
  .contact-form { width: min(370px, calc(100% - 32px)); padding: 40px 16px; }
  .form-fields__split { grid-template-columns: 1fr 1fr; }

  .site-footer { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .project-tile { opacity: 1; transform: none; }
  .logo-strip__active::before { animation: none; transform: scaleX(1); }
}
