:root {
  --cream: #f3ecdf;
  --cream-light: #fbf7ef;
  --ink: #172221;
  --teal: #123c3b;
  --teal-deep: #0b2c2b;
  --clay: #9f472f;
  --clay-bright: #b24e34;
  --yellow: #e8bd5f;
  --line: rgba(23, 34, 33, 0.2);
  --line-light: rgba(243, 236, 223, 0.24);
  --font: "Avenir Next", "Century Gothic", "PingFang SC", "Microsoft YaHei", sans-serif;
  --content: min(1380px, calc(100vw - 96px));
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body::selection {
  background: var(--clay);
  color: var(--cream-light);
}

a {
  color: inherit;
}

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  transform: translateY(-150%);
  background: var(--cream-light);
  color: var(--teal);
  font-weight: 700;
}

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

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(243, 236, 223, 0.2);
  padding: 0 48px;
  color: var(--cream-light);
  transition: background-color .3s ease, color .3s ease, min-height .3s ease, box-shadow .3s ease;
}

.site-header.is-scrolled,
.site-header.menu-open {
  min-height: 70px;
  background: rgba(243, 236, 223, 0.95);
  box-shadow: 0 8px 30px rgba(20, 48, 46, 0.08);
  color: var(--ink);
  backdrop-filter: blur(16px);
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 30px;
  height: 30px;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 3px;
  transform: rotate(45deg);
}

.brand-mark span {
  display: block;
  background: currentColor;
}

.brand-mark span:first-child {
  grid-row: 1 / 3;
  background: var(--clay-bright);
}

.brand-mark span:nth-child(2) {
  border-radius: 50% 0 0;
}

.brand-name {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 48px);
}

.site-nav a {
  position: relative;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
}

.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--clay);
  content: "";
  transition: transform .25s var(--ease);
}

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

.nav-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 24px;
  border: 1px solid currentColor;
  padding: 8px 15px;
  transition: color .2s ease, background-color .2s ease;
}

.nav-cta:hover {
  background: var(--clay);
  color: var(--cream-light);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(0, 1.06fr) minmax(440px, .94fr);
  align-items: center;
  overflow: hidden;
  background: var(--teal);
  color: var(--cream-light);
}

.hero-grid,
.contact-grid,
.art-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(244, 236, 222, .22) 1px, transparent 1.2px);
  background-size: 24px 24px;
  mask-image: linear-gradient(90deg, black, transparent 85%);
}

.hero::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 54%;
  width: 1px;
  background: var(--line-light);
  content: "";
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(850px, 100%);
  padding: 140px 5vw 120px max(48px, calc((100vw - 1380px) / 2));
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 30px;
  color: var(--clay);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .18em;
}

.eyebrow::before {
  width: 34px;
  height: 3px;
  background: currentColor;
  content: "";
}

.eyebrow span {
  border-left: 1px solid currentColor;
  padding-left: 12px;
  opacity: .72;
}

.eyebrow--light {
  color: var(--cream-light);
}

.hero h1 {
  margin: 0;
  font-size: clamp(58px, 7vw, 116px);
  font-weight: 800;
  letter-spacing: -.07em;
  line-height: .98;
}

.hero-title-accent {
  position: relative;
  display: inline-block;
  color: var(--clay-bright);
}

.hero-title-accent::after {
  position: absolute;
  right: 2px;
  bottom: -14px;
  width: 22%;
  height: 7px;
  background: var(--yellow);
  content: "";
}

.hero-lead {
  max-width: 640px;
  margin: 46px 0 0;
  color: rgba(251, 247, 239, .72);
  font-size: clamp(17px, 1.3vw, 21px);
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 42px;
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border: 0;
  padding: 14px 20px;
  font-weight: 800;
  letter-spacing: .04em;
  text-decoration: none;
  cursor: pointer;
  transition: transform .22s var(--ease), background-color .22s ease, color .22s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button--primary {
  background: var(--clay-bright);
  color: var(--cream-light);
}

.button--primary:hover {
  background: var(--cream-light);
  color: var(--teal);
}

.button--cream {
  background: var(--cream-light);
  color: var(--teal);
}

.button--cream:hover {
  background: var(--yellow);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(251, 247, 239, .5);
  padding: 8px 0;
  font-weight: 700;
  text-decoration: none;
}

.text-link span {
  transition: transform .22s var(--ease);
}

.text-link:hover span {
  transform: translateX(5px);
}

.hero-visual {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: 720px;
}

.visual-stage {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(42vw, 650px);
  aspect-ratio: 1 / 1.08;
  transform: translate(-45%, -47%);
}

.visual-stage::before {
  position: absolute;
  top: 7%;
  right: 0;
  width: 68%;
  aspect-ratio: 1;
  border: 1px solid rgba(243, 236, 223, .36);
  border-radius: 50%;
  content: "";
}

.stage-index {
  position: absolute;
  top: 1%;
  right: 0;
  color: rgba(243, 236, 223, .3);
  font-size: clamp(70px, 8vw, 130px);
  font-weight: 800;
  line-height: 1;
}

.product-tile {
  position: absolute;
  box-shadow: 0 35px 80px rgba(5, 24, 23, .28);
}

.product-tile--back {
  top: 19%;
  left: 5%;
  width: 50%;
  height: 60%;
  transform: rotate(-9deg);
  background: var(--clay);
}

.product-tile--back::after {
  position: absolute;
  right: 16%;
  bottom: 13%;
  left: 16%;
  height: 1px;
  background: rgba(243, 236, 223, .6);
  content: "";
}

.tile-shape {
  position: absolute;
  top: 15%;
  left: 16%;
  width: 38%;
  aspect-ratio: 1;
  border: 1px solid rgba(243, 236, 223, .7);
  border-radius: 50%;
}

.product-tile--front {
  top: 26%;
  left: 27%;
  display: flex;
  width: 55%;
  height: 62%;
  flex-direction: column;
  justify-content: space-between;
  transform: rotate(3deg);
  background: var(--cream-light);
  color: var(--teal);
  padding: 24px;
}

.tile-label,
.tile-meta,
.data-card > span,
.visual-note span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
}

.tile-object {
  position: relative;
  display: block;
  width: 72%;
  aspect-ratio: 1;
  align-self: center;
  border-radius: 50%;
  background: var(--yellow);
}

.tile-object i {
  position: absolute;
  display: block;
  width: 24%;
  height: 48%;
  transform: rotate(30deg);
  border-radius: 999px 999px 12px 12px;
  background: var(--teal);
}

.tile-object i:first-child {
  top: 26%;
  left: 18%;
}

.tile-object i:nth-child(2) {
  top: 16%;
  left: 39%;
  background: var(--clay);
}

.tile-object i:nth-child(3) {
  top: 32%;
  left: 60%;
}

.data-card {
  position: absolute;
  right: -4%;
  bottom: 0;
  width: 52%;
  border: 1px solid rgba(243, 236, 223, .34);
  background: rgba(11, 44, 43, .86);
  padding: 18px;
  box-shadow: 0 24px 60px rgba(5, 24, 23, .25);
  backdrop-filter: blur(12px);
}

.data-card svg {
  display: block;
  width: 100%;
  margin-top: 12px;
  overflow: visible;
  fill: var(--yellow);
}

.chart-grid {
  fill: none;
  stroke: rgba(243, 236, 223, .12);
}

.chart-line {
  fill: none;
  stroke: var(--clay-bright);
  stroke-width: 4;
  stroke-linecap: square;
  stroke-linejoin: bevel;
}

.visual-note {
  position: absolute;
  top: 14%;
  right: 4%;
  display: flex;
  align-items: center;
  gap: 8px;
  writing-mode: vertical-rl;
}

.visual-note i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 7px rgba(232, 189, 95, .13);
}

.hero-orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(243, 236, 223, .13);
  border-radius: 50%;
}

.hero-orbit--one {
  top: 15%;
  right: -12%;
  width: 48vw;
  height: 48vw;
}

.hero-orbit--two {
  right: 18%;
  bottom: -26%;
  width: 35vw;
  height: 35vw;
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  bottom: 28px;
  left: 48px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(243, 236, 223, .55);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-decoration: none;
}

.scroll-cue i {
  display: block;
  width: 1px;
  height: 28px;
  background: currentColor;
}

.signal-strip {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--clay);
  color: var(--cream-light);
}

.signal-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 34px;
  padding: 16px 0;
  animation: ticker 24s linear infinite;
}

.signal-track span {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .2em;
  white-space: nowrap;
}

.signal-track i {
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  background: var(--yellow);
}

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

.section {
  position: relative;
  padding: 130px max(48px, calc((100vw - 1380px) / 2));
}

.section-index {
  margin-bottom: 64px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  color: rgba(23, 34, 33, .5);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
}

.section-index--light {
  border-color: var(--line-light);
  color: rgba(243, 236, 223, .55);
}

.section-index--inline {
  margin-bottom: 54px;
}

.display-title {
  margin: 0;
  font-size: clamp(46px, 5.3vw, 82px);
  font-weight: 800;
  letter-spacing: -.06em;
  line-height: 1.08;
}

.display-title em,
.contact h2 em {
  color: var(--clay);
  font-style: normal;
}

.display-title--light {
  color: var(--cream-light);
}

.display-title--light em {
  color: var(--clay-bright);
}

.intro {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 32px;
  background-color: var(--cream);
  background-image: radial-gradient(rgba(18, 60, 59, .1) .8px, transparent .8px);
  background-size: 28px 28px;
}

.intro .section-index {
  grid-column: 1 / -1;
}

.intro-heading {
  grid-column: 1 / 8;
}

.intro-copy {
  grid-column: 9 / -1;
  align-self: end;
  border-left: 3px solid var(--clay);
  padding-left: 28px;
}

.intro-copy p {
  margin: 0 0 18px;
  color: rgba(23, 34, 33, .72);
  font-size: 17px;
}

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

.principles {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 84px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.principle {
  min-height: 290px;
  border-right: 1px solid var(--line);
  padding: 28px 34px 36px 0;
}

.principle + .principle {
  padding-left: 34px;
}

.principle:last-child {
  border-right: 0;
}

.principle-no {
  display: block;
  margin-bottom: 72px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 800;
}

.principle h3,
.service-card h3,
.process-step h3,
.approach-item h3,
.fit-panel h3 {
  margin: 0 0 14px;
  font-size: 25px;
  line-height: 1.25;
}

.principle p,
.service-card p,
.process-step p,
.approach-item p {
  margin: 0;
  color: rgba(23, 34, 33, .65);
}

.section--teal {
  overflow: hidden;
  background: var(--teal);
  color: var(--cream-light);
}

.section--teal::before {
  position: absolute;
  top: -18vw;
  right: -14vw;
  width: 48vw;
  height: 48vw;
  border: 1px solid rgba(243, 236, 223, .15);
  border-radius: 50%;
  box-shadow: 0 0 0 5vw rgba(243, 236, 223, .025), 0 0 0 10vw rgba(243, 236, 223, .02);
  content: "";
}

.services-head {
  position: relative;
  display: grid;
  grid-template-columns: 2fr 1fr;
  column-gap: 10%;
}

.services-head .eyebrow {
  grid-column: 1 / -1;
}

.services-lead {
  align-self: end;
  margin: 0 0 7px;
  color: rgba(243, 236, 223, .68);
  font-size: 17px;
  line-height: 1.8;
}

.service-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 80px;
}

.service-card {
  position: relative;
  min-height: 520px;
  border: 1px solid var(--line-light);
  padding: 26px 28px 32px;
  transition: transform .28s var(--ease), border-color .28s ease, background-color .28s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(243, 236, 223, .65);
  background: rgba(243, 236, 223, .045);
}

.service-card--clay {
  border-color: var(--clay-bright);
  background: var(--clay-bright);
}

.service-card--clay:hover {
  border-color: var(--yellow);
  background: var(--clay);
}

.service-card--clay p {
  color: var(--cream-light);
}

.service-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 105px;
}

.service-number {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .15em;
}

.service-icon {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 1px solid var(--line-light);
  border-radius: 50%;
}

.service-icon svg {
  width: 54px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.service-card h3 {
  font-size: 33px;
}

.service-card p {
  min-height: 84px;
  color: rgba(243, 236, 223, .7);
}

.service-card ul {
  display: grid;
  gap: 10px;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--line-light);
  padding-top: 10px;
  font-size: 13px;
  font-weight: 700;
}

.service-card li::before {
  width: 6px;
  height: 6px;
  transform: rotate(45deg);
  background: var(--yellow);
  content: "";
}

.process {
  background: var(--cream-light);
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(320px, .8fr) minmax(0, 1.2fr);
  gap: 10%;
}

.process-sticky {
  position: sticky;
  top: 130px;
  align-self: start;
}

.process-summary {
  max-width: 470px;
  margin: 34px 0 0;
  color: rgba(23, 34, 33, .65);
  font-size: 17px;
}

.process-steps {
  margin: 0;
  border-top: 1px solid var(--line);
  padding: 0;
  list-style: none;
}

.process-step {
  position: relative;
  display: grid;
  min-height: 230px;
  grid-template-columns: 80px minmax(0, 1fr) 120px;
  align-items: center;
  gap: 22px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.step-number {
  color: var(--clay);
  font-size: 12px;
  font-weight: 800;
  align-self: start;
  padding-top: 34px;
}

.process-step h3 {
  font-size: 30px;
}

.process-step p {
  max-width: 520px;
}

.step-shape {
  display: block;
  width: 82px;
  height: 82px;
  justify-self: end;
  border: 2px solid var(--teal);
  transition: transform .4s var(--ease), background-color .3s ease;
}

.process-step:hover .step-shape {
  transform: rotate(45deg) scale(.84);
  background: var(--yellow);
}

.step-shape--one {
  border-radius: 50%;
  background: var(--clay);
}

.step-shape--two {
  transform: rotate(45deg);
  border-radius: 50% 0 50% 50%;
}

.step-shape--three {
  border-radius: 50% 50% 0 0;
  background: var(--teal);
}

.step-shape--four {
  position: relative;
  border: 0;
  background: repeating-linear-gradient(135deg, var(--clay) 0 3px, transparent 3px 10px);
}

.approach {
  display: grid;
  min-height: 940px;
  grid-template-columns: 1fr 1fr;
  padding: 0;
  background: var(--cream);
}

.approach-art {
  position: relative;
  min-height: 800px;
  overflow: hidden;
  background: var(--clay);
}

.approach-art::after {
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(243, 236, 223, .45);
  content: "";
}

.art-grid {
  background-image: linear-gradient(rgba(243, 236, 223, .14) 1px, transparent 1px), linear-gradient(90deg, rgba(243, 236, 223, .14) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: none;
}

.art-disc {
  position: absolute;
  z-index: 2;
  border-radius: 50%;
}

.art-disc--large {
  top: 11%;
  left: 13%;
  width: 57%;
  aspect-ratio: 1;
  border: 2px solid var(--cream-light);
  background: var(--teal);
  box-shadow: 25px 25px 0 var(--yellow);
}

.art-disc--small {
  right: 12%;
  bottom: 15%;
  width: 25%;
  aspect-ratio: 1;
  border: 22px solid var(--cream-light);
  background: var(--clay);
}

.art-frame {
  position: absolute;
  z-index: 3;
  top: 35%;
  left: 34%;
  width: 45%;
  aspect-ratio: 1 / 1.15;
  transform: rotate(9deg);
  border: 3px solid var(--cream-light);
}

.art-frame span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 38%;
  height: 60%;
  transform: translate(-50%, -50%);
  background: var(--cream-light);
}

.art-line {
  position: absolute;
  z-index: 4;
  bottom: 4%;
  left: 1%;
  width: 85%;
  overflow: visible;
  fill: none;
  stroke: var(--yellow);
  stroke-width: 7;
}

.art-caption {
  position: absolute;
  z-index: 4;
  right: 3%;
  bottom: 4%;
  color: var(--cream-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2em;
  writing-mode: vertical-rl;
}

.approach-copy {
  align-self: center;
  padding: 90px max(48px, calc((100vw - 1380px) / 2)) 90px 7vw;
}

.approach-list {
  margin-top: 64px;
  border-top: 1px solid var(--line);
}

.approach-item {
  display: grid;
  grid-template-columns: 65px 1fr;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
}

.approach-item > span {
  position: relative;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--clay);
  font-size: 12px;
  font-weight: 800;
}

.approach-item > span::before {
  position: absolute;
  inset: 5px;
  transform: rotate(45deg);
  border: 1px solid var(--clay);
  content: "";
}

.fit {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 28px;
  background: var(--cream-light);
}

.fit .section-index,
.fit-head {
  grid-column: 1 / -1;
}

.fit-tabs {
  grid-column: 1 / 4;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  border-top: 1px solid var(--line);
}

.fit-tabs button {
  position: relative;
  display: flex;
  min-height: 72px;
  align-items: center;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: rgba(23, 34, 33, .55);
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.fit-tabs button::before {
  width: 0;
  height: 3px;
  margin-right: 0;
  background: var(--clay);
  content: "";
  transition: width .25s var(--ease), margin-right .25s var(--ease);
}

.fit-tabs button[aria-selected="true"] {
  color: var(--ink);
}

.fit-tabs button[aria-selected="true"]::before {
  width: 30px;
  margin-right: 12px;
}

.fit-panels {
  grid-column: 5 / -1;
}

.fit-panel {
  position: relative;
  display: grid;
  min-height: 390px;
  grid-template-columns: 1.1fr .9fr;
  align-items: end;
  gap: 12%;
  overflow: hidden;
  background: var(--teal);
  color: var(--cream-light);
  padding: 52px;
}

.fit-panel::before {
  position: absolute;
  top: -150px;
  right: -80px;
  width: 350px;
  height: 350px;
  border: 70px solid rgba(199, 97, 67, .85);
  border-radius: 50%;
  content: "";
}

.fit-panel[hidden] {
  display: none;
}

.fit-panel__number {
  position: absolute;
  top: 20px;
  left: 38px;
  color: rgba(243, 236, 223, .1);
  font-size: 180px;
  font-weight: 800;
  line-height: 1;
}

.fit-panel > div,
.fit-panel > p {
  position: relative;
  z-index: 2;
}

.fit-kicker {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
}

.fit-panel h3 {
  margin-bottom: 0;
  font-size: clamp(27px, 3vw, 42px);
}

.fit-panel > p {
  margin: 0;
  color: rgba(243, 236, 223, .7);
}

.contact {
  position: relative;
  display: grid;
  min-height: 760px;
  grid-template-columns: 1fr .5fr;
  align-content: center;
  gap: 5%;
  overflow: hidden;
  background: var(--teal-deep);
  color: var(--cream-light);
  padding: 120px max(48px, calc((100vw - 1380px) / 2));
}

.contact::before {
  position: absolute;
  right: -8vw;
  bottom: -18vw;
  width: 50vw;
  height: 50vw;
  border: 1px solid rgba(243, 236, 223, .15);
  border-radius: 50%;
  box-shadow: 0 0 0 5vw rgba(243, 236, 223, .025), 0 0 0 10vw rgba(243, 236, 223, .02);
  content: "";
}

.contact-grid {
  opacity: .5;
  mask-image: linear-gradient(90deg, black, transparent 74%);
}

.contact-copy,
.contact-action,
.contact-name {
  position: relative;
  z-index: 2;
}

.contact h2 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(52px, 6.5vw, 100px);
  letter-spacing: -.07em;
  line-height: 1.02;
}

.contact-copy > p:last-child {
  max-width: 650px;
  margin: 38px 0 0;
  color: rgba(243, 236, 223, .68);
  font-size: 17px;
}

.contact-action {
  align-self: end;
  border-left: 1px solid var(--line-light);
  padding-left: 40px;
}

.copy-status {
  max-width: 290px;
  margin: 18px 0 0;
  color: rgba(243, 236, 223, .55);
  font-size: 13px;
}

.contact-name {
  grid-column: 1 / -1;
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-top: 100px;
  border-top: 1px solid var(--line-light);
  padding-top: 24px;
}

.contact-name span {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: .08em;
}

.contact-name small {
  color: rgba(243, 236, 223, .5);
  letter-spacing: .12em;
}

.contact-spark {
  position: absolute;
  z-index: 1;
  width: 26px;
  height: 26px;
  transform: rotate(45deg);
  background: var(--yellow);
}

.contact-spark--one {
  top: 17%;
  right: 19%;
}

.contact-spark--two {
  right: 9%;
  bottom: 26%;
  width: 12px;
  height: 12px;
  background: var(--clay-bright);
}

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

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

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  :root {
    --content: calc(100vw - 64px);
  }

  .site-header {
    padding: 0 32px;
  }

  .site-nav {
    gap: 22px;
  }

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

  .hero-copy {
    padding-left: 32px;
  }

  .hero h1 {
    font-size: clamp(58px, 7.8vw, 86px);
  }

  .visual-stage {
    width: 45vw;
    transform: translate(-47%, -45%);
  }

  .section {
    padding-right: 32px;
    padding-left: 32px;
  }

  .intro-heading {
    grid-column: 1 / 8;
  }

  .intro-copy {
    grid-column: 8 / -1;
  }

  .service-card {
    padding-right: 22px;
    padding-left: 22px;
  }

  .process-layout {
    gap: 6%;
  }

  .approach-copy {
    padding-right: 32px;
    padding-left: 5vw;
  }

  .fit-panel {
    gap: 7%;
    padding: 40px;
  }

  .contact {
    padding-right: 32px;
    padding-left: 32px;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 70px;
  }

  .site-header {
    min-height: 70px;
    padding: 0 22px;
  }

  .brand-name {
    font-size: 15px;
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 10px;
    border: 0;
    background: transparent;
    color: currentColor;
    cursor: pointer;
  }

  .menu-toggle__label {
    font-size: 13px;
    font-weight: 800;
  }

  .menu-toggle__icon {
    position: relative;
    display: block;
    width: 25px;
    height: 18px;
  }

  .menu-toggle__icon i {
    position: absolute;
    right: 0;
    display: block;
    width: 25px;
    height: 2px;
    background: currentColor;
    transition: top .22s ease, transform .22s ease;
  }

  .menu-toggle__icon i:first-child {
    top: 4px;
  }

  .menu-toggle__icon i:last-child {
    top: 12px;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__icon i:first-child {
    top: 8px;
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__icon i:last-child {
    top: 8px;
    transform: rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: 101;
    inset: 69px 0 auto;
    display: grid;
    gap: 0;
    transform: translateY(-120%);
    border-bottom: 1px solid var(--line);
    background: var(--cream);
    color: var(--ink);
    padding: 20px 22px 28px;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: transform .32s var(--ease), opacity .25s ease, visibility 0s linear .32s;
  }

  .site-header.menu-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transition-delay: 0s;
  }

  .site-nav a {
    border-bottom: 1px solid var(--line);
    padding: 15px 2px;
    font-size: 16px;
  }

  .site-nav .nav-cta {
    justify-content: space-between;
    border: 0;
    border-bottom: 1px solid var(--line);
    padding: 15px 2px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 70px;
  }

  .hero::after {
    display: none;
  }

  .hero-copy {
    padding: 84px 24px 50px;
  }

  .hero h1 {
    font-size: clamp(52px, 13vw, 86px);
  }

  .hero-lead {
    max-width: 580px;
  }

  .hero-visual {
    min-height: 650px;
  }

  .visual-stage {
    width: min(78vw, 580px);
    transform: translate(-50%, -49%);
  }

  .scroll-cue {
    display: none;
  }

  .section {
    padding: 92px 24px;
  }

  .section-index {
    margin-bottom: 46px;
  }

  .intro-heading,
  .intro-copy {
    grid-column: 1 / -1;
  }

  .intro-copy {
    margin-top: 20px;
  }

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

  .principle,
  .principle + .principle {
    display: grid;
    min-height: auto;
    grid-template-columns: 50px 1fr;
    gap: 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 28px 0;
  }

  .principle:last-child {
    border-bottom: 0;
  }

  .principle-no {
    margin: 5px 0 0;
  }

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

  .services-lead {
    margin-top: 30px;
  }

  .service-list {
    grid-template-columns: 1fr;
    margin-top: 54px;
  }

  .service-card {
    min-height: auto;
    padding: 24px;
  }

  .service-top {
    margin-bottom: 70px;
  }

  .service-card p {
    min-height: 0;
  }

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

  .process-sticky {
    position: static;
    margin-bottom: 60px;
  }

  .process-step {
    min-height: 210px;
    grid-template-columns: 56px 1fr 80px;
  }

  .step-shape {
    width: 62px;
    height: 62px;
  }

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

  .approach-art {
    min-height: 670px;
  }

  .approach-copy {
    padding: 90px 24px;
  }

  .fit-tabs {
    grid-column: 1 / -1;
    flex-direction: row;
  }

  .fit-tabs button {
    min-height: 64px;
    flex: 1;
    justify-content: center;
    text-align: center;
  }

  .fit-tabs button::before {
    display: none;
  }

  .fit-tabs button[aria-selected="true"] {
    border-bottom: 3px solid var(--clay);
  }

  .fit-panels {
    grid-column: 1 / -1;
  }

  .contact {
    min-height: 760px;
    grid-template-columns: 1fr;
    align-content: center;
    padding: 100px 24px 70px;
  }

  .contact-action {
    margin-top: 48px;
    border-top: 1px solid var(--line-light);
    border-left: 0;
    padding-top: 30px;
    padding-left: 0;
  }

  .contact-name {
    margin-top: 70px;
  }
}

@media (max-width: 560px) {
  .brand-mark {
    width: 25px;
    height: 25px;
  }

  .hero-copy {
    padding-top: 72px;
  }

  .hero h1 {
    font-size: clamp(37px, 12vw, 60px);
    line-height: 1.05;
  }

  .eyebrow {
    margin-bottom: 22px;
    font-size: 11px;
  }

  .hero-title-accent::after {
    bottom: -9px;
    height: 5px;
  }

  .hero-lead {
    margin-top: 36px;
    font-size: 16px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    margin-top: 34px;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 480px;
  }

  .visual-stage {
    width: 89vw;
  }

  .product-tile--front {
    padding: 16px;
  }

  .data-card {
    right: 0;
  }

  .display-title {
    font-size: clamp(40px, 12vw, 58px);
  }

  .intro {
    gap: 18px;
  }

  .intro-copy {
    padding-left: 18px;
  }

  .process-step {
    min-height: auto;
    grid-template-columns: 40px 1fr;
    gap: 12px;
    padding: 34px 0;
  }

  .step-number {
    padding-top: 8px;
  }

  .process-step h3 {
    font-size: 25px;
  }

  .step-shape {
    display: none;
  }

  .approach-art {
    min-height: 520px;
  }

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

  .fit-tabs {
    overflow-x: auto;
  }

  .fit-tabs button {
    min-width: 105px;
    font-size: 14px;
  }

  .fit-panel {
    min-height: 460px;
    grid-template-columns: 1fr;
    align-content: end;
    gap: 28px;
    padding: 30px 24px;
  }

  .fit-panel__number {
    left: 18px;
    font-size: 130px;
  }

  .contact h2 {
    font-size: clamp(43px, 12vw, 62px);
  }

  .contact-name {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }
}

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

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

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

  .signal-track {
    animation: none;
    transform: none;
  }
}
