:root {
  --ink: #101515;
  --ink-2: #283232;
  --paper: #fafaf7;
  --white: #fff;
  --soft: #f0f3f0;
  --line: #d9dfdc;
  --muted: #697676;
  --teal: #11b7ae;
  --mint: #55dec7;
  --shell: min(1360px, calc(100vw - 96px));
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Helvetica Neue", "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

button,
a {
  font: inherit;
}

button {
  color: inherit;
}

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

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
}

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

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

.skip-link {
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 10px;
  padding: 11px 15px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform .2s ease;
}

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

.site-nav {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 82px;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: height .35s var(--ease), background-color .3s ease, border-color .3s ease;
}

.site-nav.is-scrolled {
  height: 68px;
  background: rgba(250, 250, 247, .92);
  border-color: var(--line);
  backdrop-filter: blur(14px);
}

.logo {
  position: relative;
  width: 174px;
}

.logo img {
  width: 100%;
  transition: opacity .25s ease;
}

.logo-menu {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 33px;
}

.nav-links a {
  position: relative;
  font-size: 14px;
  font-weight: 650;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}

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

.nav-links a[aria-current="page"]::after {
  background: var(--teal);
  transform: scaleX(1);
}

.nav-contact {
  justify-self: end;
  padding: 11px 7px 11px 18px;
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--white);
  background: var(--ink);
  border-radius: 40px;
  font-size: 12px;
  font-weight: 700;
}

.nav-contact span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--mint);
  border-radius: 50%;
  transition: transform .35s var(--ease);
}

.nav-contact:hover span {
  transform: rotate(45deg);
}

.menu-button {
  position: relative;
  width: 43px;
  height: 43px;
  padding: 0;
  display: none;
  background: var(--ink);
  border: 0;
  border-radius: 50%;
}

.menu-button i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 17px;
  height: 1px;
  background: var(--white);
  transform: translate(-50%, -4px);
  transition: transform .3s ease;
}

.menu-button i:last-of-type {
  transform: translate(-50%, 4px);
}

body.menu-open .menu-button {
  background: var(--mint);
}

body.menu-open .menu-button i {
  background: var(--ink);
  transform: translate(-50%, 0) rotate(45deg);
}

body.menu-open .menu-button i:last-of-type {
  transform: translate(-50%, 0) rotate(-45deg);
}

body.menu-open .site-nav {
  background: var(--ink);
  border-color: rgba(255, 255, 255, .15);
}

body.menu-open .logo-default {
  opacity: 0;
}

body.menu-open .logo-menu {
  opacity: 1;
}

.mobile-nav {
  position: fixed;
  z-index: 99;
  inset: 0;
  padding: 95px 28px 28px;
  display: flex;
  flex-direction: column;
  visibility: hidden;
  color: var(--white);
  background: var(--ink);
  clip-path: inset(0 0 100% 0);
  transition: clip-path .65s var(--ease), visibility .65s;
}

.mobile-nav.open {
  visibility: visible;
  clip-path: inset(0);
}

.mobile-nav-head {
  display: flex;
  justify-content: space-between;
  padding-bottom: 18px;
  color: #819090;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.mobile-nav nav {
  margin-top: 30px;
}

.mobile-nav nav a {
  padding: 8px 0;
  display: flex;
  gap: 14px;
  font-size: clamp(20px, 8vw, 20px);
  /* font-size: clamp(28px, 8vw, 34px); */
  font-weight: 550;
  line-height: 1.08;
  letter-spacing: -.05em;
}

.mobile-nav nav small {
  padding-top: 6px;
  color: var(--mint);
  font-size: 8px;
  letter-spacing: 0;
}

.mobile-contact {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .16);
  font-size: 13px;
}

.hero {
  padding-top: 128px;
}

.hero-meta {
  padding: 21px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .13em;
}

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

.hero-meta i {
  position: relative;
  width: 7px;
  height: 7px;
  background: var(--teal);
  border-radius: 50%;
}

.hero-main {
  padding: 53px 0 64px;
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(270px, .55fr);
  align-items: end;
  gap: 80px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(64px, 7vw, 105px);
  font-weight: 570;
  line-height: .91;
  letter-spacing: -.075em;
}

.hero h1 em,
.section-intro h2 em,
.partnership h2 em,
.contact h2 em {
  color: var(--teal);
  font-weight: 350;
  font-style: normal;
}

.hero-aside {
  padding-bottom: 5px;
}

.hero-aside > p {
  margin: 0;
  color: var(--ink-2);
  font-size: 18px;
  line-height: 1.6;
}

.hero-aside > div {
  margin-top: 30px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 19px;
}

.round-link {
  min-height: 52px;
  padding: 7px 7px 7px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--white);
  background: var(--ink);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
}

.round-link span {
  width: 38px;
  height: 38px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: var(--ink);
  background: var(--mint);
  border-radius: 50%;
  transition: transform .35s var(--ease);
}

.round-link:hover span {
  transform: rotate(45deg);
}

.under-link {
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 700;
}

.under-link span {
  margin-left: 12px;
}

.featured {
  min-height: 570px;
  display: grid;
  grid-template-columns: 28% 72%;
  background: #e8eeec;
}

.featured-copy {
  padding: 31px 31px 28px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(16, 21, 21, .13);
}

.featured-label {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.featured-title {
  margin: auto 0;
}

.featured-title > span {
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.featured-title h2 {
  margin: 12px 0 17px;
  font-size: clamp(39px, 4vw, 62px);
  font-weight: 560;
  line-height: .95;
  letter-spacing: -.065em;
}

.featured-title p {
  max-width: 290px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.featured-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.featured-links button {
  padding: 0 0 6px;
  color: var(--ink);
  background: none;
  border: 0;
  border-bottom: 1px solid var(--ink);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.featured-links button span {
  padding-left: 15px;
}

.featured-links button:last-child {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  border-bottom-color: transparent;
}

.featured-links button i {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 7px;
  font-style: normal;
}

.featured-media {
  position: relative;
  align-self: center;
  width: calc(100% - 82px);
  margin: 40px;
  padding: 0;
  background: var(--white);
  border: 0;
  border-radius: 4px;
  box-shadow: 0 28px 65px rgba(31, 52, 49, .15);
  overflow: hidden;
  cursor: pointer;
  transition: transform .65s var(--ease), box-shadow .65s var(--ease);
}

.featured-media:hover {
  transform: translateY(-6px);
  box-shadow: 0 38px 80px rgba(31, 52, 49, .2);
}

.mini-browser {
  height: 34px;
  padding: 0 13px;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #8d9997;
  background: #f5f6f4;
  border-bottom: 1px solid #e7e9e6;
}

.mini-browser i {
  width: 6px;
  height: 6px;
  background: #cfd7d3;
  border-radius: 50%;
}

.mini-browser i:first-child {
  background: var(--mint);
}

.mini-browser small {
  margin-inline: auto;
  padding-right: 32px;
  font-size: 8px;
}

.featured-media img {
  width: 100%;
}

.media-arrow {
  position: absolute;
  top: 48px;
  right: 15px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  transition: transform .4s var(--ease);
}

.featured-media:hover .media-arrow {
  transform: rotate(45deg);
}

.proof-bar {
  min-height: 95px;
  display: grid;
  grid-template-columns: 170px 170px 170px 1fr;
  border: 1px solid var(--line);
  border-top: 0;
}

.proof-bar > div {
  padding: 19px 23px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-right: 1px solid var(--line);
}

.proof-bar strong {
  font-size: 22px;
  letter-spacing: -.04em;
}

.proof-bar span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.proof-bar p {
  margin: 0;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 650;
}

.capability-ticker {
  margin-top: 75px;
  padding: 17px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.capability-track {
  width: max-content;
  display: flex;
  align-items: center;
  animation: ticker 30s linear infinite;
  will-change: transform;
}

.capability-group {
  flex: 0 0 auto;
  padding-right: 28px;
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 15px;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.capability-ticker i {
  color: var(--teal);
  font-style: normal;
}

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

.work,
.expertise,
.process,
.faq {
  padding: 125px 0;
}

.section-intro {
  padding-bottom: 62px;
  display: grid;
  grid-template-columns: 190px 1fr 330px;
  align-items: end;
  gap: 35px;
}

.section-no {
  align-self: start;
  padding-top: 9px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.section-intro h2,
.partnership h2 {
  margin: 0;
  font-size: clamp(49px, 5.6vw, 82px);
  font-weight: 560;
  line-height: .92;
  letter-spacing: -.07em;
}

.section-intro > p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 70px 18px;
}

.projects-loading,
.projects-error {
  grid-column: 1 / -1;
  min-height: 220px;
  margin: 0;
  display: grid;
  place-items: center;
  color: var(--muted);
  background: var(--soft);
  border: 1px solid var(--line);
  font-size: 15px;
  text-align: center;
}

.projects-error {
  color: #7e4545;
  background: #fbf3f1;
}

.project {
  min-width: 0;
}

.project-wide {
  grid-column: span 7;
}

.project-narrow {
  grid-column: span 5;
}

.project-half {
  grid-column: span 6;
}

.project-full {
  grid-column: 1 / -1;
}

.project-media {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 410px;
  padding: 42px;
  display: grid;
  place-items: center;
  border: 0;
  overflow: hidden;
  cursor: pointer;
}

.project-narrow .project-media {
  min-height: 540px;
}

.project-half .project-media {
  min-height: 470px;
}

.project-full .project-media {
  min-height: 560px;
  padding-inline: 11%;
}

.tone-blue { background: #e7edf7; }
.tone-sand { background: #eee9e1; }
.tone-ice { background: #e8f3f4; }
.tone-mint { background: #dfeee7; }
.tone-green { background: #e6eee7; }

.project-media img {
  width: 100%;
  box-shadow: 0 24px 55px rgba(32, 47, 47, .15);
  transition: transform .7s var(--ease);
}

.project-narrow .project-media img {
  width: 125%;
  max-width: none;
}

.project-full .project-media img {
  max-width: 1040px;
}

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

.project-open {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 7px 7px 7px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  background: var(--ink);
  border-radius: 40px;
  font-size: 10px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s ease, transform .4s var(--ease);
}

.project-open i {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--mint);
  border-radius: 50%;
  font-style: normal;
}

.project-media:hover .project-open,
.project-media:focus-visible .project-open {
  opacity: 1;
  transform: none;
}

.project footer {
  padding-top: 18px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 25px;
}

.project footer > div {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}

.project footer span {
  padding-top: 7px;
  color: var(--teal);
  font-size: 10px;
}

.project footer h3 {
  margin: 0;
  font-size: 25px;
  font-weight: 560;
  letter-spacing: -.045em;
}

.project footer p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

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

.section-intro.compact {
  padding-bottom: 55px;
}

.service-rows {
  border-bottom: 1px solid var(--line);
}

.service-rows article {
  position: relative;
  min-height: 120px;
  padding: 8px 30px;
  display: grid;
  grid-template-columns: 70px minmax(330px, .9fr) minmax(360px, 1fr);
  align-items: center;
  gap: 35px;
  border-top: 1px solid var(--line);
  overflow: hidden;
}

.service-rows article::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: var(--mint);
  transform: translateY(101%);
  transition: transform .5s var(--ease);
}

.service-rows article:hover::before {
  transform: none;
}

.service-rows article > span {
  color: var(--muted);
  font-size: 11px;
}

.service-rows h3 {
  margin: 0;
  font-size: clamp(27px, 2.8vw, 41px);
  font-weight: 530;
  line-height: 1;
  letter-spacing: -.055em;
}

.service-rows p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.service-rows article:hover p,
.service-rows article:hover > span {
  color: var(--ink-2);
}

.approach {
  padding: 115px 0;
  background: #f1f4f1;
}

.approach .section-intro {
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 28px 70px;
  padding-bottom: 55px;
}

.approach .section-intro .section-no {
  grid-column: 1 / -1;
  padding-top: 0;
}

.approach .section-intro h2 {
  max-width: 900px;
  font-size: clamp(52px, 5.15vw, 76px);
}

.approach-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.approach-pillar {
  position: relative;
  min-height: 390px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, .88);
  border: 1px solid #dde4e0;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(16, 21, 21, .035);
  transition:
    border-color .35s ease,
    box-shadow .35s var(--ease),
    transform .35s var(--ease);
}

.approach-pillar:not(:nth-child(3))::after {
  content: "→";
  position: absolute;
  z-index: 2;
  right: -28px;
  top: 50%;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--mint);
  border: 5px solid #f1f4f1;
  border-radius: 50%;
  font-size: 14px;
  transform: translateY(-50%);
}

.approach-pillar:hover {
  border-color: rgba(17, 183, 174, .42);
  box-shadow: 0 22px 55px rgba(16, 21, 21, .08);
  transform: translateY(-6px);
}

.pillar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.pillar-top span {
  color: var(--teal);
  padding: 7px 9px;
  background: rgba(17, 183, 174, .08);
  border-radius: 7px;
}

.pillar-mark {
  width: 62px;
  height: 62px;
  margin-top: 38px;
  display: grid;
  place-items: center;
  color: var(--teal);
  background: rgba(17, 183, 174, .09);
  border: 1px solid rgba(17, 183, 174, .2);
  border-radius: 18px;
}

.approach-pillar:nth-child(2) .pillar-mark {
  color: #087f79;
  background: rgba(85, 222, 199, .2);
}

.approach-pillar:nth-child(3) .pillar-mark {
  color: var(--mint);
  background: var(--ink);
  border-color: var(--ink);
}

.pillar-mark svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.approach-pillar h3 {
  max-width: 360px;
  margin: 27px 0 13px;
  font-size: 29px;
  font-weight: 540;
  line-height: 1.03;
  letter-spacing: -.045em;
}

.approach-pillar p {
  max-width: 390px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.approach-pillar ul {
  margin: auto 0 0;
  padding: 25px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  list-style: none;
}

.approach-pillar li {
  padding: 7px 11px;
  color: #536060;
  background: #f1f5f3;
  border: 1px solid #e5ebe8;
  border-radius: 30px;
  font-size: 11px;
}

.principles-intro {
  padding: 72px 0 38px;
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: 45px;
  align-items: end;
}

.principles-intro > span {
  align-self: start;
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.principles-intro h3 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(34px, 3.6vw, 52px);
  font-weight: 530;
  line-height: 1.02;
  letter-spacing: -.055em;
}

.principles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.principles article {
  min-height: 300px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, .72);
  border: 1px solid #dfe5e2;
  border-radius: 9px;
  box-shadow: 0 12px 28px rgba(32, 53, 51, .04);
  transition: transform .35s var(--ease), box-shadow .35s ease, border-color .35s ease;
}

.principles article:hover {
  border-color: #c9d8d3;
  box-shadow: 0 18px 38px rgba(32, 53, 51, .08);
  transform: translateY(-4px);
}

.principle-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.principle-top > span {
  padding: 8px 9px;
  color: var(--teal);
  background: #e8f7f4;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
}

.principle-top > i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--teal);
  background: var(--white);
  border: 1px solid #e6ebe8;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(28, 61, 57, .08);
  font-style: normal;
}

.principle-top svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.principles h3 {
  margin: 32px 0 0;
  font-size: 27px;
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -.045em;
}

.principles article > b {
  width: 27px;
  height: 2px;
  margin: 16px 0 15px;
  display: block;
  background: var(--teal);
}

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

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.process-list article {
  position: relative;
  min-height: 330px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, .62);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.process-list article:not(:last-child)::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 44px;
  left: 66px;
  right: -13px;
  height: 1px;
  background: #b9dcd6;
}

.process-list span {
  position: relative;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--teal);
  background: var(--paper);
  border: 1px solid #cfe5e0;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
}

.process-list small {
  margin-top: 52px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.process-list h3 {
  margin: 14px 0 28px;
  font-size: 25px;
  font-weight: 520;
  line-height: 1.15;
  letter-spacing: -.04em;
}

.process-list b {
  width: max-content;
  margin-top: auto;
  padding: 8px 10px;
  color: var(--ink-2);
  background: var(--soft);
  border-radius: 30px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.partnership {
  padding: 100px 0;
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 70px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.partnership-copy > p {
  max-width: 500px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

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

.partnership-points article {
  min-height: 150px;
  display: grid;
  grid-template-columns: 50px 1fr 155px;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid var(--line);
}

.partnership-points span {
  color: var(--teal);
  font-size: 11px;
}

.partnership-points h3 {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 510;
  line-height: 1.05;
  letter-spacing: -.045em;
}

.partnership-points p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  text-align: right;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.faq-grid {
  display: grid;
  grid-template-columns: 30% 70%;
  border-top: 1px solid var(--line);
}

.faq-grid > p {
  margin: 0;
  padding-top: 31px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.faq-grid > p a {
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
}

.faq-grid details {
  border-bottom: 1px solid var(--line);
}

.faq-grid summary {
  min-height: 90px;
  display: grid;
  grid-template-columns: 45px 1fr 30px;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  list-style: none;
  font-size: clamp(19px, 2vw, 29px);
  font-weight: 530;
  letter-spacing: -.035em;
}

.faq-grid summary::-webkit-details-marker {
  display: none;
}

.faq-grid summary span {
  color: var(--teal);
  font-size: 10px;
}

.faq-grid summary i {
  position: relative;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.faq-grid summary i::before,
.faq-grid summary i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 9px;
  height: 1px;
  background: var(--ink);
  transform: translate(-50%, -50%);
}

.faq-grid summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform .3s ease;
}

.faq-grid details[open] summary i::after {
  transform: translate(-50%, -50%);
}

.faq-grid details > p {
  max-width: 740px;
  margin: -5px 40px 0 60px;
  padding-bottom: 30px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.contact {
  padding: 115px 0;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}

.contact .shell {
  position: relative;
}

.contact .shell::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(85, 222, 199, .35);
  border-radius: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  box-shadow:
    0 0 0 60px rgba(85, 222, 199, .035),
    0 0 0 120px rgba(85, 222, 199, .025);
}

.contact .shell > span {
  color: var(--mint);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.contact h2 {
  position: relative;
  z-index: 2;
  max-width: 950px;
  margin: 28px 0 0;
  font-size: clamp(57px, 6.5vw, 95px);
  font-weight: 540;
  line-height: .9;
  letter-spacing: -.075em;
}

.contact h2 em {
  color: var(--mint);
}

.contact .shell > p {
  max-width: 580px;
  margin: 30px 0 0;
  color: #9babab;
  font-size: 16px;
  line-height: 1.7;
}

.contact .shell > div {
  margin-top: 35px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.contact-button {
  min-height: 58px;
  padding: 7px 7px 7px 23px;
  display: inline-flex;
  align-items: center;
  gap: 30px;
  color: var(--ink);
  background: var(--mint);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
}

.contact-button span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  transition: transform .35s var(--ease);
}

.contact-button:hover span {
  transform: rotate(45deg);
}

.contact .shell > div > a:last-child {
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, .5);
  font-size: 13px;
}

.orbit-cta {
  position: absolute;
  z-index: 3;
  right: 80px;
  top: 50%;
  width: 170px;
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--white);
  background: #071011;
  border: 1px solid rgba(85, 222, 199, .6);
  border-radius: 50%;
  text-align: center;
  transform: translateY(-50%);
  transition:
    color .35s var(--ease),
    background-color .35s var(--ease),
    border-color .35s var(--ease),
    transform .35s var(--ease),
    box-shadow .35s var(--ease);
}

.orbit-cta small {
  margin-bottom: 11px;
  color: var(--mint);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  transition: color .35s var(--ease);
}

.orbit-cta strong {
  font-size: 25px;
  font-weight: 600;
  line-height: .95;
  letter-spacing: -.045em;
}

.orbit-cta span {
  position: absolute;
  right: 27px;
  top: 26px;
  font-size: 18px;
  transition: transform .35s var(--ease);
}

.orbit-cta:hover {
  color: var(--ink);
  background: var(--mint);
  border-color: var(--mint);
  transform: translateY(-50%) scale(1.045);
  box-shadow: 0 20px 55px rgba(85, 222, 199, .18);
}

.orbit-cta:hover small {
  color: var(--ink);
}

.orbit-cta:hover span {
  transform: rotate(45deg);
}

.orbit-cta:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 5px;
}

.footer {
  color: var(--white);
  background: #071011;
}

.footer-main {
  min-height: 300px;
  padding: 65px 0;
  display: grid;
  grid-template-columns: .8fr .8fr 1.4fr;
  gap: 70px;
}

.footer-logo {
  width: 200px;
  height: max-content;
  /* padding: 12px; */
  /* background: var(--paper); */
}

.footer-main > p {
  margin: 0;
  color: #93a1a1;
  font-size: 21px;
  line-height: 1.25;
  letter-spacing: -.035em;
}

.footer-main nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.footer-main nav div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-main nav span {
  margin-bottom: 8px;
  color: #607171;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.footer-main nav a {
  font-size: 14px;
}

.footer-legal {
  min-height: 76px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  color: #667777;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: 11px;
}

.footer-legal > span:nth-child(2) {
  text-align: center;
}

.footer-legal div {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
}

.case-dialog,
.tour-dialog {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 0;
  color: var(--ink);
  background: var(--paper);
  border: 0;
  opacity: 0;
  transform: translateY(25px);
  transition:
    opacity .3s ease,
    transform .5s var(--ease),
    overlay .3s ease allow-discrete,
    display .3s ease allow-discrete;
}

.case-dialog[open],
.tour-dialog[open] {
  opacity: 1;
  transform: none;
}

@starting-style {
  .case-dialog[open],
  .tour-dialog[open] {
    opacity: 0;
    transform: translateY(25px);
  }
}

.case-dialog::backdrop,
.tour-dialog::backdrop {
  background: rgba(0, 0, 0, .65);
}

.dialog-nav {
  position: sticky;
  z-index: 5;
  top: 0;
  height: 74px;
  padding: 0 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(250, 250, 247, .92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.dialog-nav > span {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.dialog-nav button,
.tour-close {
  padding: 6px 6px 6px 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  background: var(--ink);
  border: 0;
  border-radius: 40px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
}

.dialog-nav button i,
.tour-close span {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--mint);
  border-radius: 50%;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
}

.case-shell {
  width: min(1250px, calc(100% - 96px));
  margin: auto;
  padding: 90px 0 130px;
}

.case-head {
  display: grid;
  grid-template-columns: 170px 1fr 330px;
  align-items: end;
  gap: 35px;
}

.case-head > div span,
.case-head > div small {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.case-head > div span {
  margin-bottom: 12px;
  color: var(--teal);
}

.case-head > div small {
  color: var(--muted);
}

.case-head h2 {
  margin: 0;
  font-size: clamp(58px, 7vw, 105px);
  font-weight: 550;
  line-height: .9;
  letter-spacing: -.075em;
}

.case-head > p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.case-visual {
  margin: 65px 0 0;
  padding: 55px;
  background: #e6ece9;
}

.case-visual img {
  width: 100%;
  box-shadow: 0 28px 70px rgba(31, 49, 47, .18);
}

.case-content {
  padding-top: 90px;
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 90px;
}

.case-content aside > div {
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.case-content aside span,
.case-content section > span {
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.case-content aside p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.case-content h3 {
  max-width: 760px;
  margin: 22px 0 0;
  font-size: clamp(37px, 4.8vw, 66px);
  font-weight: 520;
  line-height: .98;
  letter-spacing: -.06em;
}

.case-columns {
  margin-top: 65px;
  padding: 55px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.case-columns p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.case-outcomes {
  padding: 55px 0;
}

.case-outcomes ul {
  margin: 25px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  list-style: none;
  border-top: 1px solid var(--line);
}

.case-outcomes li {
  padding: 18px 5px;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
}

.case-outcomes li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--teal);
}

.tour-dialog {
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}

.tour-dialog > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: opacity .22s ease;
}

.tour-dialog > img.is-changing {
  opacity: 0;
}

.tour-dialog > img.tour-frame-reset {
  animation: none !important;
}

.tour-dialog > img[data-view="overview"] {
  transform-origin: 50% 50%;
  animation: tour-overview 4.2s var(--ease) both;
}

.tour-dialog > img[data-view="detail-left"] {
  transform-origin: 22% 46%;
  animation: tour-detail-left 4.2s var(--ease) both;
}

.tour-dialog > img[data-view="detail-right"] {
  transform-origin: 78% 54%;
  animation: tour-detail-right 4.2s var(--ease) both;
}

@keyframes tour-overview {
  from { transform: scale(1.03); }
  to { transform: scale(1.11); }
}

@keyframes tour-detail-left {
  from { transform: scale(1.24); }
  to { transform: scale(1.38); }
}

@keyframes tour-detail-right {
  from { transform: scale(1.26); }
  to { transform: scale(1.4); }
}

.tour-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 13, 13, .9), rgba(4, 13, 13, .22) 70%);
}

.tour-close {
  position: absolute;
  z-index: 4;
  right: 35px;
  top: 24px;
}

.tour-top,
.tour-copy,
.tour-progress {
  position: absolute;
  z-index: 2;
  left: 5vw;
  right: 5vw;
}

.tour-top {
  top: 35px;
  padding-bottom: 18px;
  display: flex;
  justify-content: space-between;
  color: #a9b6b6;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: .13em;
}

.tour-copy {
  top: 50%;
  transform: translateY(-50%);
}

.tour-copy span {
  color: var(--mint);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .13em;
}

.tour-copy h2 {
  max-width: 820px;
  margin: 18px 0 0;
  font-size: clamp(56px, 7vw, 100px);
  font-weight: 550;
  line-height: .9;
  letter-spacing: -.075em;
}

.tour-progress {
  bottom: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  align-items: center;
  gap: 8px;
}

.tour-progress i {
  position: relative;
  height: 2px;
  background: rgba(255, 255, 255, .25);
  overflow: hidden;
}

.tour-progress i.done {
  background: var(--mint);
}

.tour-progress i.active::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--mint);
  transform-origin: left;
  animation: tour-progress 4s linear forwards;
}

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

.tour-dialog.paused > img,
.tour-dialog.paused .tour-progress i.active::after {
  animation-play-state: paused;
}

.tour-progress button {
  margin-left: 12px;
  padding: 6px 0;
  color: var(--white);
  background: none;
  border: 0;
  border-bottom: 1px solid var(--white);
  cursor: pointer;
  font-size: 9px;
}

/* Contact page */
.contact-page-hero {
  position: relative;
  min-height: 635px;
  padding: 132px 0 38px;
}

.contact-hero-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 410px;
  align-items: stretch;
  gap: 70px;
}

.contact-page-hero h1 {
  max-width: 900px;
  margin: 0;
  align-self: center;
  font-size: clamp(60px, 5.45vw, 82px);
  font-weight: 560;
  line-height: .91;
  letter-spacing: -.075em;
}

.contact-page-hero h1 em,
.contact-next h2 em {
  color: var(--teal);
  font-weight: 350;
  font-style: normal;
}

.contact-hero-card {
  position: relative;
  min-height: 320px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  color: var(--white);
  background: var(--ink);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 26px 70px rgba(16, 21, 21, .15);
}

.contact-hero-card::after {
  content: "";
  position: absolute;
  right: -65px;
  top: -65px;
  width: 185px;
  height: 185px;
  border: 1px solid rgba(85, 222, 199, .25);
  border-radius: 50%;
  box-shadow: 0 0 0 35px rgba(85, 222, 199, .025);
  pointer-events: none;
}

.contact-hero-card > span {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--mint);
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.contact-hero-card > span::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  background: var(--mint);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(85, 222, 199, .08);
}

.contact-hero-card > p {
  position: relative;
  z-index: 1;
  max-width: 340px;
  margin: 29px 0 0;
  color: #b4c0bf;
  font-size: 17px;
  line-height: 1.65;
}

.contact-hero-action {
  position: relative;
  z-index: 1;
  min-height: 56px;
  margin-top: auto;
  padding: 6px 6px 6px 19px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  background: var(--mint);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 750;
}

.contact-hero-action i {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  font-style: normal;
  transition: transform .35s var(--ease);
}

.contact-hero-action:hover i {
  transform: translateY(3px);
}

.contact-hero-links {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 15px 0 0;
  padding: 13px 2px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, .13);
}

.contact-hero-links a {
  color: #9badaa;
  font-size: 12px;
  transition: color .25s ease;
}

.contact-hero-links a:first-child {
  color: var(--mint);
}

.contact-hero-links a:hover {
  color: var(--white);
}

.contact-hero-notes {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-hero-notes p {
  min-height: 68px;
  margin: 0;
  padding: 0 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--ink-2);
  border-right: 1px solid var(--line);
  font-size: 14px;
}

.contact-hero-notes p:first-child {
  padding-left: 0;
}

.contact-hero-notes p:last-child {
  padding-right: 0;
  border-right: 0;
}

.contact-hero-notes span {
  min-width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  color: var(--teal);
  background: rgba(17, 183, 174, .08);
  border-radius: 8px;
  font-size: 9px;
  font-weight: 750;
}

.inquiry-section {
  padding: 100px 0;
  color: var(--white);
  background: var(--ink);
}

.inquiry-layout {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 90px;
  align-items: start;
}

.inquiry-aside {
  position: sticky;
  top: 105px;
}

.inquiry-aside > span,
.form-heading > span {
  color: var(--mint);
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.inquiry-aside h2 {
  max-width: 440px;
  margin: 25px 0 0;
  font-size: clamp(47px, 4.4vw, 66px);
  font-weight: 540;
  line-height: .94;
  letter-spacing: -.065em;
}

.inquiry-aside > p {
  max-width: 430px;
  margin: 27px 0 0;
  color: #9cacaa;
  font-size: 16px;
  line-height: 1.7;
}

.contact-facts {
  max-width: 440px;
  margin: 55px 0 0;
}

.contact-facts > div {
  padding: 18px 0;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.contact-facts dt {
  color: #778786;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.contact-facts dd {
  margin: 0;
  color: #dbe5e3;
  font-size: 14px;
  line-height: 1.55;
}

.contact-facts a {
  color: var(--mint);
}

.inquiry-form {
  padding: 36px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 22px;
  box-shadow: 0 35px 90px rgba(0, 0, 0, .16);
}

.form-heading {
  padding-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-bottom: 1px solid var(--line);
}

.form-heading > span {
  color: var(--teal);
}

.form-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.form-grid {
  padding-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px 20px;
}

.form-grid label {
  min-width: 0;
}

.form-grid label > span {
  display: block;
  margin-bottom: 10px;
  color: #52605f;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-width: 0;
  color: var(--ink);
  background: #f5f7f5;
  border: 1px solid #e0e6e3;
  border-radius: 10px;
  font: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.form-grid input,
.form-grid select {
  height: 53px;
  padding: 0 15px;
}

.form-grid select {
  cursor: pointer;
}

.form-grid textarea {
  min-height: 155px;
  padding: 15px;
  line-height: 1.6;
  resize: vertical;
}

.form-grid input::placeholder,
.form-grid textarea::placeholder {
  color: #8b9695;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  background: var(--white);
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(17, 183, 174, .1);
}

.form-wide {
  grid-column: 1 / -1;
}

.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.form-submit {
  margin-top: 28px;
  padding-top: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid var(--line);
}

.form-submit > div {
  max-width: 390px;
}

.form-submit > div p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.form-submit > div small {
  display: block;
  margin-top: 7px;
  color: #869190;
  font-size: 10px;
  line-height: 1.45;
}

.form-submit > div a {
  color: var(--ink);
  border-bottom: 1px solid currentColor;
}

.inquiry-form.is-success #form-status {
  color: #087f69;
}

.inquiry-form.is-error #form-status {
  color: #a13e3e;
}

.form-submit button {
  min-height: 56px;
  padding: 7px 7px 7px 22px;
  display: inline-flex;
  align-items: center;
  gap: 24px;
  color: var(--white);
  background: var(--ink);
  border: 0;
  border-radius: 50px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
}

.form-submit button span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--mint);
  border-radius: 50%;
  transition: transform .35s var(--ease);
}

.form-submit button:hover span {
  transform: rotate(45deg);
}

.form-submit button:disabled {
  cursor: wait;
  opacity: .68;
}

.calendly-section {
  padding: 115px 0;
  overflow: hidden;
  background: #eef3f0;
  border-bottom: 1px solid var(--line);
}

.calendly-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 510px;
  align-items: center;
  gap: 100px;
}

.calendly-intro h2 {
  max-width: 760px;
  margin: 32px 0 0;
  font-size: clamp(54px, 5.4vw, 82px);
  font-weight: 560;
  line-height: .92;
  letter-spacing: -.07em;
}

.calendly-intro h2 em {
  color: var(--teal);
  font-weight: 350;
  font-style: normal;
}

.calendly-intro > p {
  max-width: 620px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.calendly-intro ul {
  max-width: 620px;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #ccd7d2;
}

.calendly-intro li {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--ink-2);
  border-bottom: 1px solid #ccd7d2;
  font-size: 14px;
}

.calendly-intro li span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--teal);
  background: rgba(17, 183, 174, .09);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 750;
}

.calendly-card {
  position: relative;
  padding: 38px;
  color: var(--white);
  background: var(--ink);
  border-radius: 24px;
  box-shadow: 0 35px 90px rgba(16, 21, 21, .18);
  overflow: hidden;
}

.calendly-card::before {
  content: "";
  position: absolute;
  top: -115px;
  right: -95px;
  width: 270px;
  height: 270px;
  border: 1px solid rgba(85, 222, 199, .22);
  border-radius: 50%;
  box-shadow: 0 0 0 38px rgba(85, 222, 199, .035), 0 0 0 78px rgba(85, 222, 199, .018);
  pointer-events: none;
}

.calendly-card > span,
.calendly-card h3,
.calendly-card > p,
.calendly-card dl,
.calendly-booking-button,
.calendly-card > small {
  position: relative;
  z-index: 1;
}

.calendly-card > span {
  color: var(--mint);
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.calendly-card h3 {
  margin: 20px 0 0;
  font-size: 43px;
  font-weight: 540;
  line-height: 1;
  letter-spacing: -.055em;
}

.calendly-card > p {
  max-width: 390px;
  margin: 20px 0 0;
  color: #a7b6b4;
  font-size: 15px;
  line-height: 1.65;
}

.calendly-card dl {
  margin: 34px 0 0;
}

.calendly-card dl > div {
  min-height: 49px;
  display: grid;
  grid-template-columns: 105px 1fr;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, .13);
}

.calendly-card dt {
  color: #728280;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.calendly-card dd {
  margin: 0;
  color: #e0e8e7;
  font-size: 13px;
}

.calendly-booking-button {
  min-height: 60px;
  margin-top: 32px;
  padding: 7px 7px 7px 21px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--ink);
  background: var(--mint);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 750;
  transition: transform .35s var(--ease), opacity .2s ease;
}

.calendly-booking-button span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  transition: transform .35s var(--ease);
}

.calendly-booking-button:hover {
  transform: translateY(-2px);
}

.calendly-booking-button:hover span {
  transform: rotate(45deg);
}

.calendly-booking-button.is-loading {
  pointer-events: none;
  opacity: .65;
}

.calendly-card > small {
  margin: 14px 0 0;
  display: block;
  color: #7f908e;
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
}

.contact-next {
  padding: 120px 0;
}

.contact-next > header {
  padding-bottom: 55px;
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 35px;
}

.contact-next h2 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(50px, 5.7vw, 82px);
  font-weight: 560;
  line-height: .92;
  letter-spacing: -.07em;
}

.contact-next > div {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.contact-next article {
  position: relative;
  min-height: 330px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, .62);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: border-color .3s ease, background-color .3s ease, transform .35s var(--ease);
}

.contact-next article:not(:last-child)::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 44px;
  left: 66px;
  right: -13px;
  height: 1px;
  background: #b9dcd6;
}

.contact-next article:hover {
  background: var(--white);
  border-color: rgba(17, 183, 174, .35);
  transform: translateY(-4px);
}

.contact-next article > span {
  position: relative;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--teal);
  background: var(--paper);
  border: 1px solid #c9e3de;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
}

.contact-next h3 {
  margin: 58px 0 18px;
  font-size: 25px;
  font-weight: 540;
  line-height: 1.08;
  letter-spacing: -.045em;
}

.contact-next h3::after {
  content: "";
  width: 25px;
  height: 2px;
  margin-top: 17px;
  display: block;
  background: var(--teal);
}

.contact-next article p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

@media (max-width: 1100px) {
  .contact-hero-grid {
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 45px;
  }

  .inquiry-layout {
    gap: 55px;
  }

  .inquiry-form {
    padding: 30px;
  }
}

@media (max-width: 900px) {
  .contact-page-hero {
    min-height: auto;
    padding: 130px 0 70px;
  }

  .contact-hero-grid {
    margin-top: 45px;
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .contact-page-hero h1 {
    font-size: clamp(52px, 12vw, 72px);
  }

  .contact-hero-card {
    min-height: 290px;
  }

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

  .contact-hero-notes p,
  .contact-hero-notes p:first-child,
  .contact-hero-notes p:last-child {
    min-height: 54px;
    padding: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .contact-hero-notes p:last-child {
    border-bottom: 0;
  }

  .inquiry-section {
    padding: 80px 0;
  }

  .inquiry-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .inquiry-aside {
    position: static;
  }

  .contact-facts {
    max-width: none;
  }

  .calendly-section {
    padding: 90px 0;
  }

  .calendly-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .calendly-intro h2 {
    font-size: clamp(48px, 12vw, 72px);
  }

  .calendly-card {
    max-width: 600px;
  }

  .contact-next {
    padding: 90px 0;
  }

  .contact-next > header {
    display: block;
  }

  .contact-next h2 {
    margin-top: 20px;
    font-size: clamp(46px, 12vw, 70px);
  }

  .contact-next > div {
    grid-template-columns: 1fr 1fr;
  }

  .contact-next article {
    min-height: 285px;
  }

  .contact-next article:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 560px) {
  .contact-page-hero {
    padding-top: 115px;
  }

  .contact-hero-grid {
    margin-top: 38px;
  }

  .contact-page-hero h1 {
    font-size: 49px;
  }

  .contact-hero-card {
    min-height: 305px;
    padding: 24px;
  }

  .inquiry-aside h2 {
    font-size: 46px;
  }

  .contact-facts > div {
    grid-template-columns: 85px 1fr;
  }

  .inquiry-form {
    padding: 24px 20px;
    border-radius: 16px;
  }

  .form-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

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

  .form-wide {
    grid-column: auto;
  }

  .form-submit {
    align-items: flex-start;
    flex-direction: column;
  }

  .form-submit button {
    width: 100%;
    justify-content: space-between;
  }

  .contact-hero-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .calendly-section {
    padding: 75px 0;
  }

  .calendly-intro h2 {
    font-size: 47px;
  }

  .calendly-card {
    padding: 29px 24px;
    border-radius: 18px;
  }

  .calendly-card h3 {
    font-size: 38px;
  }

  .calendly-booking-button {
    padding-left: 18px;
    font-size: 13px;
  }

  .contact-next > div {
    grid-template-columns: 1fr;
  }
}

/* Privacy policy */
.legal-hero {
  min-height: 0;
  padding: 120px 0 56px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  align-items: center;
  gap: 72px;
}

.legal-hero h1 {
  margin: 36px 0 -8px;
  font-size: clamp(62px, 6.5vw, 98px);
  font-weight: 560;
  line-height: .9;
  letter-spacing: -.078em;
}

.legal-hero h1 em {
  color: var(--teal);
  font-weight: 350;
  font-style: normal;
}

.legal-hero-summary {
  max-width: 590px;
  margin: 27px 0 0;
  padding-top: 21px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 15px;
  line-height: 1.65;
}

.legal-hero-note {
  position: relative;
  padding: 29px 30px 25px;
  color: var(--white);
  background: var(--ink);
  border: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 26px 70px rgba(16, 21, 21, .13);
}

.legal-hero-note::before {
  display: none;
}

.legal-hero-note > span,
.legal-index > span,
.legal-intro > span {
  color: var(--teal);
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.legal-hero-note > span {
  color: var(--mint);
}

.legal-hero-note > p {
  margin: 24px 0 31px;
  color: #c4cfcd;
  font-size: 15px;
  line-height: 1.65;
}

.legal-hero-note dl {
  margin: 0;
}

.legal-hero-note dl > div {
  padding: 13px 0;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.legal-hero-note dt {
  color: #71817f;
  font-size: 9px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.legal-hero-note dd {
  margin: 0;
  color: #e8efee;
  font-size: 12px;
}

.legal-hero-note a,
.legal-copy a {
  color: #079b94;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.legal-hero-note a {
  color: var(--mint);
}

.legal-content-section {
  padding: 72px 0 125px;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.legal-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 820px);
  justify-content: space-between;
  gap: 110px;
}

.legal-index {
  position: sticky;
  top: 105px;
  height: max-content;
}

.legal-index nav {
  margin-top: 25px;
  border-top: 1px solid var(--line);
}

.legal-index a {
  min-height: 47px;
  display: grid;
  grid-template-columns: 35px 1fr;
  align-items: center;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  transition: color .3s ease, padding-left .4s var(--ease);
}

.legal-index a:hover {
  padding-left: 5px;
  color: var(--ink);
}

.legal-index small {
  color: var(--teal);
  font-size: 8px;
}

.legal-intro {
  padding: 0 0 62px 90px;
}

.legal-intro > p {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--ink-2);
  font-size: clamp(23px, 2vw, 31px);
  line-height: 1.4;
  letter-spacing: -.025em;
}

.legal-copy > section {
  padding: 55px 0;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 32px;
  border-top: 1px solid var(--line);
  scroll-margin-top: 90px;
}

.legal-number {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  color: var(--teal);
  background: rgba(17, 183, 174, .08);
  border-radius: 8px;
  font-size: 9px;
  font-weight: 750;
}

.legal-copy h2 {
  margin: -7px 0 24px;
  font-size: clamp(32px, 3vw, 45px);
  font-weight: 540;
  line-height: 1;
  letter-spacing: -.055em;
}

.legal-copy h3 {
  margin: 35px 0 10px;
  font-size: 16px;
  font-weight: 750;
  letter-spacing: -.01em;
}

.legal-copy p,
.legal-copy li {
  color: #52605f;
  font-size: 15px;
  line-height: 1.78;
}

.legal-copy p {
  margin: 0 0 16px;
}

.legal-copy ul {
  margin: 20px 0 24px;
  padding: 0;
  list-style: none;
}

.legal-copy li {
  position: relative;
  padding: 8px 0 8px 24px;
  border-bottom: 1px solid #edf0ee;
}

.legal-copy li::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 2px;
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
}

.legal-copy .legal-contact {
  margin-top: 30px;
  padding: 45px;
  color: var(--white);
  background: var(--ink);
  border: 0;
  border-radius: 20px;
}

.legal-contact h2 {
  color: var(--white);
}

.legal-contact p {
  max-width: 570px;
  color: #aab8b6;
}

.legal-contact a {
  width: max-content;
  margin-top: 16px;
  padding: 15px 8px 15px 20px;
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--ink);
  background: var(--mint);
  border-radius: 40px;
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.legal-contact a span {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  transition: transform .35s var(--ease);
}

.legal-contact a:hover span {
  transform: rotate(45deg);
}

.footer-legal a[aria-current="page"] {
  color: var(--white);
}

@media (max-width: 1000px) {
  .legal-hero {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 45px;
  }

  .legal-layout {
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 60px;
  }
}

@media (max-width: 900px) {
  .legal-hero {
    min-height: auto;
    padding: 118px 0 65px;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 48px;
  }

  .legal-hero h1 {
    margin: 31px 0 0;
    font-size: clamp(59px, 13vw, 78px);
    line-height: .92;
  }

  .legal-hero-summary {
    max-width: 560px;
  }

  .legal-hero-note {
    max-width: 560px;
  }

  .legal-content-section {
    padding: 80px 0 95px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .legal-index {
    position: static;
  }

  .legal-index nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .legal-index a:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .legal-index a {
    padding-inline: 12px;
  }

  .legal-intro {
    padding-left: 0;
  }
}

@media (max-width: 560px) {
  .legal-hero {
    padding-top: 108px;
  }

  .legal-hero h1 {
    font-size: clamp(52px, 14.5vw, 62px);
  }

  .legal-hero-summary {
    margin-top: 23px;
    padding-top: 18px;
    font-size: 14px;
  }

  .legal-hero-note {
    padding: 25px 22px 20px;
  }

  .legal-index nav {
    grid-template-columns: 1fr;
  }

  .legal-index a:nth-child(odd) {
    border-right: 0;
  }

  .legal-intro {
    padding-bottom: 45px;
  }

  .legal-intro > p {
    font-size: 22px;
  }

  .legal-copy > section {
    padding: 45px 0;
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .legal-copy h2 {
    margin-top: 0;
    font-size: 35px;
  }

  .legal-copy .legal-contact {
    padding: 30px 22px;
  }

  .legal-contact a {
    width: 100%;
    justify-content: space-between;
  }
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s ease, transform .9s var(--ease);
}

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

@media (max-width: 1100px) {
  :root {
    --shell: min(100% - 56px, 1360px);
  }

  .site-nav {
    padding-inline: 28px;
  }

  .hero-main {
    gap: 45px;
  }

  .featured {
    grid-template-columns: 31% 69%;
  }

  .featured-media {
    width: calc(100% - 55px);
    margin: 28px;
  }

  .section-intro {
    grid-template-columns: 145px 1fr 290px;
  }

  .project-media {
    min-height: 350px;
  }

  .project-narrow .project-media {
    min-height: 470px;
  }

  .project-half .project-media {
    min-height: 400px;
  }

  .project-full .project-media {
    min-height: 500px;
  }

  .service-rows article {
    grid-template-columns: 60px minmax(240px, .8fr) 1fr;
    gap: 25px;
    padding-inline: 22px;
  }

  .approach-pillar {
    min-height: 390px;
    padding: 24px;
  }

  .approach-pillar h3 {
    font-size: 27px;
  }

  .case-head {
    grid-template-columns: 130px 1fr 280px;
  }
}

@media (max-width: 900px) {
  :root {
    --shell: calc(100% - 38px);
  }

  html {
    scroll-padding-top: 70px;
  }

  .site-nav {
    height: 70px;
    padding-inline: 19px;
    grid-template-columns: 1fr auto;
  }

  .site-nav.is-scrolled {
    height: 64px;
  }

  .logo {
    width: 153px;
  }

  .nav-links,
  .nav-contact {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .hero {
    padding-top: 100px;
  }

  .hero-meta {
    padding: 17px 0;
  }

  .hero-meta span:last-child {
    display: none;
  }

  .hero-main {
    padding: 39px 0 48px;
    display: block;
  }

  .hero h1 {
    font-size: clamp(49px, 13.7vw, 76px);
    line-height: .92;
  }

  .hero-aside {
    max-width: 520px;
    margin-top: 31px;
  }

  .hero-aside > p {
    font-size: 16px;
  }

  .featured {
    display: flex;
    flex-direction: column-reverse;
  }

  .featured-copy {
    min-height: 330px;
    border-top: 1px solid rgba(16, 21, 21, .13);
    border-right: 0;
  }

  .featured-title {
    margin: 48px 0;
  }

  .featured-links button {
    min-height: 42px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .featured-media {
    width: calc(100% - 38px);
    margin: 19px;
  }

  .proof-bar {
    grid-template-columns: repeat(3, 1fr);
  }

  .proof-bar > div {
    padding: 17px 12px;
    display: block;
  }

  .proof-bar strong,
  .proof-bar span {
    display: block;
  }

  .proof-bar strong {
    margin-bottom: 4px;
  }

  .proof-bar > div:nth-child(3) {
    border-right: 0;
  }

  .proof-bar p {
    grid-column: 1 / -1;
    min-height: 64px;
    justify-content: flex-start;
    border-top: 1px solid var(--line);
  }

  .capability-ticker {
    margin-top: 55px;
  }

  .work,
  .expertise,
  .process,
  .faq,
  .approach {
    padding: 90px 0;
  }

  .section-intro {
    padding-bottom: 45px;
    display: block;
  }

  .section-intro h2,
  .partnership h2 {
    margin-top: 20px;
    font-size: clamp(45px, 12vw, 70px);
  }

  .section-intro > p {
    max-width: 480px;
    margin-top: 24px;
  }

  .work-grid {
    gap: 48px 0;
  }

  .project-wide,
  .project-narrow,
  .project-half,
  .project-full {
    grid-column: 1 / -1;
  }

  .project-media,
  .project-narrow .project-media,
  .project-half .project-media,
  .project-full .project-media {
    min-height: 400px;
    padding: 34px;
  }

  .project-narrow .project-media img {
    width: 100%;
  }

  .project footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .service-rows article {
    min-height: 0;
    padding: 15px 10px;
    grid-template-columns: 35px 1fr;
    align-items: start;
    gap: 13px;
  }

  .service-rows article > span {
    padding-top: 7px;
  }

  .service-rows article > p {
    grid-column: 2;
    padding-right: 25px;
  }

  .approach-flow {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .approach-pillar {
    min-height: 350px;
    padding: 28px;
    border: 1px solid #dde4e0;
  }

  .approach-pillar:not(:nth-child(3))::after {
    display: none;
  }

  .pillar-mark {
    margin-top: 32px;
  }

  .approach-pillar ul {
    margin-top: 30px;
  }

  .approach .section-intro {
    display: block;
  }

  .approach .section-intro .section-no {
    display: block;
    margin-bottom: 20px;
  }

  .principles-intro {
    padding-top: 65px;
    display: block;
  }

  .principles-intro h3 {
    margin-top: 17px;
  }

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

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

  .process-list article::after {
    display: none;
  }

  .partnership {
    padding: 85px 0;
    display: block;
  }

  .partnership-points {
    margin-top: 55px;
  }

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

  .faq-grid > p {
    padding-bottom: 30px;
  }

  .contact .shell::after {
    right: -180px;
    opacity: .7;
  }

  .orbit-cta {
    display: none;
  }

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

  .footer-main nav {
    grid-column: 1 / -1;
  }

  .case-shell {
    width: calc(100% - 44px);
    padding-top: 60px;
  }

  .case-head {
    display: block;
  }

  .case-head h2 {
    margin-top: 38px;
  }

  .case-head > p {
    margin-top: 24px;
  }

  .case-visual {
    margin-top: 45px;
    padding: 23px;
  }

  .case-content {
    padding-top: 65px;
    display: block;
  }

  .case-content aside {
    margin-bottom: 65px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .case-columns {
    gap: 35px;
  }
}

@media (max-width: 560px) {
  .hero h1 {
    font-size: clamp(46px, 13.5vw, 63px);
  }

  .featured-copy {
    padding-inline: 22px;
  }

  .featured-media {
    width: calc(100% - 24px);
    margin: 12px;
  }

  .media-arrow {
    top: 40px;
    right: 9px;
    width: 34px;
    height: 34px;
  }

  .proof-bar p {
    padding-inline: 14px;
    font-size: 11px;
  }

  .project-media,
  .project-narrow .project-media,
  .project-half .project-media,
  .project-full .project-media {
    min-height: 270px;
    padding: 22px;
  }

  .project-open {
    opacity: 1;
    transform: none;
  }

  .approach-pillar {
    padding: 24px 20px;
  }

  .approach-pillar h3 {
    font-size: 27px;
  }

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

  .principles article {
    min-height: 270px;
  }

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

  .process-list article {
    min-height: 290px;
  }

  .partnership-points article {
    min-height: 170px;
    grid-template-columns: 35px 1fr;
  }

  .partnership-points p {
    grid-column: 2;
    text-align: left;
  }

  .faq-grid summary {
    grid-template-columns: 35px 1fr 28px;
    font-size: 18px;
  }

  .faq-grid details > p {
    margin-left: 50px;
    margin-right: 20px;
  }

  .contact {
    padding: 90px 0;
  }

  .contact h2 {
    font-size: 49px;
  }

  .contact .shell > div {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-main {
    display: block;
  }

  .footer-main > p {
    margin: 35px 0 55px;
  }

  .footer-legal {
    padding: 24px 0;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }

  .dialog-nav {
    padding-inline: 18px;
  }

  .dialog-nav > span {
    display: block;
    font-size: 9px;
    letter-spacing: .09em;
    white-space: nowrap;
  }

  .dialog-nav button {
    margin-left: auto;
  }

  .case-head h2 {
    font-size: 58px;
  }

  .case-content aside,
  .case-columns,
  .case-outcomes ul {
    grid-template-columns: 1fr;
  }

  .case-content h3 {
    font-size: 38px;
  }

  .tour-close {
    right: 17px;
    top: 16px;
  }

  .tour-copy h2 {
    font-size: 48px;
  }

  .tour-overlay {
    background: rgba(4, 13, 13, .62);
  }
}

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

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

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