:root {
  color-scheme: light;
  --navy: #0f1b2d;
  --gold: #c8a23a;
  --sun: #e0b21f;
  --pollen: #f4d35e;
  --olive: #5b6b3f;
  --bark: #4a3526;
  --ivory: #f6f1e6;
  --white: #fffaf1;
  --muted: rgba(15, 27, 45, 0.66);
  --line: rgba(15, 27, 45, 0.18);
  --line-light: rgba(246, 241, 230, 0.24);
  --font-sans: "Avenir Next", "Segoe UI", Arial, Helvetica, sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;
  --header-height: 76px;
  --page-pad: clamp(22px, 4.4vw, 72px);
  --ease: cubic-bezier(0.2, 0.72, 0, 1);
}

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

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
  color: var(--navy);
  background: var(--ivory);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--navy);
  background: var(--pollen);
}

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

button {
  color: inherit;
  font: inherit;
}

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

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 300;
  padding: 10px 14px;
  color: var(--ivory);
  background: var(--navy);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 220;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
}

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

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section-label p {
  margin: 0;
}

.section-label > span {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.58rem;
}

.section-label.light {
  color: rgba(246, 241, 230, 0.68);
}

.section-label.dark {
  color: rgba(15, 27, 45, 0.68);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  width: 100vw;
  max-width: 100vw;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 0 var(--page-pad);
  color: var(--ivory);
  border-bottom: 1px solid var(--line-light);
  transition:
    color 220ms ease,
    background 220ms ease,
    border-color 220ms ease,
    transform 220ms ease;
}

.site-header.scrolled,
.site-header.menu-active {
  color: var(--navy);
  background: rgba(246, 241, 230, 0.96);
  border-color: var(--line);
  backdrop-filter: blur(14px);
}

.brand,
.footer-brand {
  width: fit-content;
  display: inline-flex;
  align-items: center;
}

.brand {
  flex: 0 0 auto;
}

.brand-logo {
  width: 156px;
  height: auto;
  filter: brightness(0) invert(1);
  transition:
    filter 220ms ease,
    opacity 220ms ease;
}

.site-header.scrolled .brand-logo,
.site-header.menu-active .brand-logo {
  filter: none;
}

.brand:hover .brand-logo,
.footer-brand:hover .footer-logo {
  opacity: 0.76;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.desktop-nav a,
.header-cta {
  position: relative;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.header-cta span {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  color: var(--navy);
  background: var(--pollen);
  border-radius: 50%;
  font-size: 0.72rem;
  transition: transform 220ms var(--ease);
}

.header-cta:hover span {
  transform: translate(3px, -3px);
}

.menu-toggle {
  position: relative;
  z-index: 230;
  width: 44px;
  height: 44px;
  justify-self: end;
  display: none;
  padding: 0;
  color: currentColor;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  top: 21px;
  left: 11px;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: transform 220ms var(--ease);
}

.menu-toggle span:first-child {
  transform: translateY(-4px);
}

.menu-toggle span:last-child {
  transform: translateY(4px);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 180;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  padding: calc(var(--header-height) + 38px) var(--page-pad) 34px;
  color: var(--navy);
  background: var(--ivory);
  visibility: hidden;
  transform: translateY(-100%);
  transition:
    transform 420ms var(--ease),
    visibility 0s linear 420ms;
}

.mobile-menu.open {
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
}

.mobile-menu nav a {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: baseline;
  gap: 14px;
  padding: 15px 0 18px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-serif);
  font-size: 3.5rem;
  line-height: 0.95;
}

.mobile-menu nav span {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 800;
}

.mobile-contact {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--navy);
  font-size: 1rem;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: max(760px, 96svh);
  overflow: hidden;
  isolation: isolate;
  color: var(--ivory);
  background: var(--navy);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -2;
}

.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
}

.hero-poster {
  transition:
    opacity 700ms ease,
    transform 1400ms var(--ease);
}

.js .hero-poster {
  transform: scale(1.035);
}

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

.hero-media video {
  position: absolute;
  inset: 0;
  opacity: 0;
  filter: saturate(0.84) contrast(1.04);
  transition: opacity 700ms ease;
}

.hero.video-ready .hero-media video {
  opacity: 1;
}

.hero.video-ready .hero-poster {
  opacity: 0;
}

.hero-overlay {
  z-index: -1;
  background: rgba(15, 27, 45, 0.58);
}

.hero-content {
  min-height: max(760px, 96svh);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  grid-template-rows: auto 1fr auto;
  gap: 32px;
  padding: calc(var(--header-height) + 40px) var(--page-pad) 146px;
}

.hero-kicker {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 {
  grid-column: 1 / -1;
  align-self: end;
  margin: 0;
  font-family: var(--font-serif);
  font-size: 7.6rem;
  font-weight: 400;
  line-height: 0.88;
}

.hero-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.08em;
}

.hero-line > span {
  display: block;
}

.hero-line-accent {
  color: var(--pollen);
  font-style: italic;
}

.js .hero-line > span {
  transform: translateY(112%);
  transition: transform 920ms var(--ease);
}

.js .hero-line:nth-child(2) > span {
  transition-delay: 100ms;
}

.is-ready .hero-line > span {
  transform: translateY(0);
}

.hero-summary {
  grid-column: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 36px;
}

.hero-summary p {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.62;
}

.js [data-intro] {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 620ms ease 420ms,
    transform 620ms var(--ease) 420ms;
}

.is-ready [data-intro] {
  opacity: 1;
  transform: translateY(0);
}

.arrow-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
  font-size: 0.68rem;
  font-weight: 800;
  white-space: nowrap;
  text-transform: uppercase;
}

.arrow-link span {
  transition: transform 200ms var(--ease);
}

.arrow-link:hover span {
  transform: translateY(4px);
}

.hero-disciplines {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  color: var(--ivory);
  background: rgba(15, 27, 45, 0.82);
  border-top: 1px solid var(--line-light);
  backdrop-filter: blur(10px);
}

.hero-disciplines span {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 var(--page-pad);
  border-right: 1px solid var(--line-light);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-disciplines span:last-child {
  border-right: 0;
}

.hero-disciplines b {
  color: var(--pollen);
  font-size: 0.58rem;
}

.intro {
  background: var(--ivory);
}

.intro-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.45fr);
  align-items: end;
  gap: 90px;
  margin-top: 62px;
}

.intro-heading h2,
.services-heading h2,
.moments-head h2,
.approach-heading h2,
.studio-copy h2,
.contact h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 6.2rem;
  font-weight: 400;
  line-height: 0.93;
}

.intro-heading h2 em,
.services-heading h2 em,
.approach-heading h2 em,
.studio-copy h2 em {
  color: var(--olive);
  font-weight: 400;
}

.intro-heading > p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

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

.principle-line article {
  min-height: 190px;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-content: center;
  gap: 8px 18px;
  padding: 32px;
  border-right: 1px solid var(--line);
}

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

.principle-line article > span {
  grid-row: 1 / 3;
  padding-top: 8px;
  font-size: 0.62rem;
  font-weight: 800;
}

.principle-line h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 2.3rem;
  font-weight: 400;
  line-height: 1;
}

.principle-line p {
  max-width: 280px;
  margin: 8px 0 0;
  color: var(--muted);
}

.services {
  padding-top: 150px;
  padding-bottom: 160px;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.services-heading {
  display: grid;
  grid-template-columns: 0.28fr minmax(0, 1fr) minmax(260px, 0.42fr);
  align-items: end;
  gap: 42px;
}

.services-heading > p {
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.7;
}

.services-workspace {
  display: grid;
  grid-template-columns: minmax(330px, 0.78fr) minmax(0, 1.22fr);
  margin-top: 92px;
  border: 1px solid var(--navy);
  border-radius: 4px;
  overflow: hidden;
}

.service-tabs {
  display: flex;
  flex-direction: column;
  background: var(--ivory);
}

.service-tab {
  position: relative;
  min-height: 118px;
  display: grid;
  grid-template-columns: 34px 1fr 26px;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  text-align: left;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition:
    color 220ms ease,
    background 220ms ease;
}

.service-tab:last-child {
  border-bottom: 0;
}

.service-tab:hover {
  background: rgba(244, 211, 94, 0.24);
}

.service-tab.is-active {
  color: var(--navy);
  background: var(--pollen);
}

.service-tab > span {
  align-self: start;
  padding-top: 5px;
  font-size: 0.62rem;
  font-weight: 800;
}

.service-tab strong {
  font-family: var(--font-serif);
  font-size: 1.72rem;
  font-weight: 400;
  line-height: 1.08;
}

.service-tab > i {
  justify-self: end;
  font-size: 1.05rem;
  font-style: normal;
  opacity: 0;
  transform: translateX(-8px);
  transition:
    opacity 200ms ease,
    transform 200ms var(--ease);
}

.service-tab.is-active > i {
  opacity: 1;
  transform: translateX(0);
}

.service-stage {
  min-width: 0;
  min-height: 620px;
  color: var(--ivory);
  background: var(--navy);
  border-left: 1px solid var(--navy);
}

.service-panel {
  min-height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  animation: panel-in 420ms var(--ease) both;
}

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

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.panel-copy {
  max-width: 720px;
  padding: 54px 54px 44px;
}

.panel-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 36px;
  color: var(--pollen);
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
}

.panel-kicker::before {
  content: "";
  width: 26px;
  height: 2px;
  background: currentColor;
}

.panel-copy h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 3.65rem;
  font-weight: 400;
  line-height: 0.98;
}

.panel-copy > p:last-child {
  max-width: 590px;
  margin: 30px 0 0;
  color: rgba(246, 241, 230, 0.68);
  font-size: 1rem;
  line-height: 1.7;
}

.panel-foot {
  display: grid;
  grid-template-columns: minmax(180px, 0.36fr) minmax(0, 0.64fr);
  border-top: 1px solid var(--line-light);
}

.panel-foot ul {
  min-height: 205px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 30px 34px;
  list-style: none;
}

.panel-foot li {
  color: rgba(246, 241, 230, 0.7);
  font-size: 0.64rem;
  font-weight: 800;
  text-transform: uppercase;
}

.panel-foot li + li {
  margin-top: 1px;
}

.service-artifact {
  min-width: 0;
  min-height: 205px;
  border-left: 1px solid var(--line-light);
}

.artifact-strategy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 38px;
  background: var(--gold);
}

.artifact-strategy > div {
  display: grid;
  grid-template-columns: 88px 1fr 24px;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  color: var(--navy);
  border-bottom: 1px solid rgba(15, 27, 45, 0.36);
}

.artifact-strategy > div:last-child {
  border-bottom: 0;
}

.artifact-strategy b,
.artifact-strategy i {
  font-size: 0.62rem;
  font-style: normal;
  text-transform: uppercase;
}

.artifact-strategy span {
  height: 7px;
  background: var(--navy);
  transform-origin: left;
  animation: artifact-grow 700ms var(--ease) both;
}

.artifact-strategy > div:nth-child(2) span {
  width: 72%;
  animation-delay: 80ms;
}

.artifact-strategy > div:nth-child(3) span {
  width: 88%;
  animation-delay: 160ms;
}

@keyframes artifact-grow {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.artifact-brand {
  position: relative;
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  align-items: center;
  gap: 28px;
  padding: 28px 36px 46px;
  overflow: hidden;
  background: var(--olive);
}

.artifact-brand strong {
  font-family: var(--font-serif);
  font-size: 7rem;
  font-weight: 400;
  line-height: 1;
}

.artifact-brand > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: rgba(246, 241, 230, 0.76);
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
}

.artifact-brand > i {
  position: absolute;
  bottom: 0;
  width: 25%;
  height: 18px;
}

.artifact-brand > i:nth-of-type(1) {
  left: 0;
  background: var(--navy);
}

.artifact-brand > i:nth-of-type(2) {
  left: 25%;
  background: var(--gold);
}

.artifact-brand > i:nth-of-type(3) {
  left: 50%;
  background: var(--pollen);
}

.artifact-brand > i:nth-of-type(4) {
  left: 75%;
  background: var(--ivory);
}

.artifact-development {
  padding: 30px;
  color: var(--navy);
  background: var(--pollen);
}

.artifact-data {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-content: center;
  gap: 0 10px;
  padding: 26px 30px;
  color: var(--ivory);
  background: var(--olive);
}

.artifact-data > div {
  min-width: 0;
  display: grid;
  justify-items: center;
  gap: 11px;
}

.artifact-data span {
  font-size: 0.56rem;
  font-weight: 800;
  text-transform: uppercase;
}

.artifact-data i {
  width: 100%;
  height: 54px;
  display: block;
  border: 1px solid rgba(246, 241, 230, 0.72);
  border-radius: 50%;
  box-shadow:
    inset 0 -8px 0 rgba(246, 241, 230, 0.09),
    inset 0 -16px 0 rgba(246, 241, 230, 0.06);
}

.artifact-data strong {
  grid-column: 1 / -1;
  margin-top: 20px;
  padding: 10px;
  color: var(--navy);
  background: var(--pollen);
  font-size: 0.58rem;
  text-align: center;
  text-transform: uppercase;
}

.artifact-bar {
  height: 34px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  border: 1px solid var(--navy);
}

.artifact-bar i {
  width: 7px;
  height: 7px;
  background: var(--navy);
  border-radius: 50%;
}

.artifact-bar span {
  margin-left: auto;
  font-size: 0.56rem;
  font-weight: 800;
  text-transform: uppercase;
}

.artifact-build {
  min-height: 112px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  border-right: 1px solid var(--navy);
  border-bottom: 1px solid var(--navy);
  border-left: 1px solid var(--navy);
}

.artifact-build b {
  height: 100%;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--navy);
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
}

.artifact-build b:nth-child(3) {
  border-right: 0;
}

.artifact-build span {
  grid-column: 1 / -1;
  padding: 7px 10px;
  color: var(--ivory);
  background: var(--navy);
  font-size: 0.56rem;
  font-weight: 800;
  text-transform: uppercase;
}

.artifact-ai {
  display: grid;
  align-content: center;
  padding: 26px 34px;
  color: var(--navy);
  background: var(--ivory);
}

.artifact-ai > div {
  min-height: 46px;
  display: grid;
  grid-template-columns: 1fr 30px;
  align-items: center;
  padding: 0 12px;
  border-top: 1px solid var(--navy);
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
}

.artifact-ai > div:last-child {
  border-bottom: 1px solid var(--navy);
}

.artifact-ai > div:nth-child(2) {
  margin-left: 32px;
  color: var(--ivory);
  background: var(--olive);
}

.artifact-ai > div:nth-child(3) {
  margin-left: 64px;
  color: var(--navy);
  background: var(--gold);
}

.artifact-ai b {
  justify-self: end;
  font-size: 0.58rem;
}

.moments {
  color: var(--ivory);
  background: var(--olive);
}

.moments-head {
  display: grid;
  grid-template-columns: 0.28fr 1fr;
  align-items: end;
  gap: 40px;
  padding-top: 140px;
  padding-bottom: 110px;
}

.moments-head h2 {
  color: var(--ivory);
}

.moments-head h2 em {
  color: var(--pollen);
  font-weight: 400;
}

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

.moment-row {
  min-height: 220px;
  display: grid;
  grid-template-columns: 54px minmax(320px, 1.25fr) minmax(250px, 0.65fr) 170px 44px;
  align-items: center;
  gap: 34px;
  padding: 38px var(--page-pad);
  border-bottom: 1px solid var(--line-light);
  transition:
    color 260ms ease,
    background 260ms ease;
}

.moment-row:hover {
  color: var(--navy);
  background: var(--pollen);
}

.moment-number {
  align-self: start;
  padding-top: 8px;
  font-size: 0.62rem;
  font-weight: 800;
}

.moment-row h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 3.3rem;
  font-weight: 400;
  line-height: 1;
}

.moment-row > p {
  margin: 0;
  color: rgba(246, 241, 230, 0.68);
  line-height: 1.65;
}

.moment-row:hover > p {
  color: rgba(15, 27, 45, 0.72);
}

.moment-row ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.moment-row li {
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
}

.moment-arrow {
  justify-self: end;
  font-size: 1.8rem;
  transition: transform 220ms var(--ease);
}

.moment-row:hover .moment-arrow {
  transform: translate(5px, 5px);
}

.approach {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(430px, 1fr);
  gap: 10%;
  background: var(--ivory);
}

.approach-heading {
  position: sticky;
  top: 120px;
  height: fit-content;
}

.approach-heading h2 {
  margin-top: 52px;
  font-size: 5.4rem;
}

.approach-heading > p {
  max-width: 500px;
  margin: 38px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.approach-steps {
  position: relative;
  padding-left: 72px;
}

.approach-line {
  position: absolute;
  top: 0;
  bottom: 80px;
  left: 20px;
  width: 2px;
  overflow: hidden;
  background: rgba(15, 27, 45, 0.13);
}

.approach-line i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--gold);
  transform: scaleY(var(--approach-progress, 0));
  transform-origin: top;
}

.approach-step {
  min-height: 420px;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 24px;
  padding: 12px 0 96px;
  border-top: 1px solid var(--line);
}

.approach-step > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--ivory);
  border: 1px solid var(--navy);
  border-radius: 50%;
  font-size: 0.62rem;
  font-weight: 800;
}

.step-kicker {
  margin: 7px 0 34px;
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
}

.approach-step h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1;
}

.approach-step div > p:not(.step-kicker) {
  max-width: 590px;
  margin: 28px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.approach-step ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 42px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.approach-step li {
  position: relative;
  padding-left: 14px;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
}

.approach-step li::before {
  content: "";
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--gold);
}

.studio {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  min-height: 860px;
  background: var(--bark);
}

.studio-media {
  position: relative;
  min-height: 860px;
  overflow: hidden;
}

.studio-media img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: center;
  transform: translateY(var(--parallax, -5%)) scale(1.04);
  will-change: transform;
}

.studio-media > span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 7px 10px;
  color: var(--ivory);
  background: rgba(15, 27, 45, 0.86);
  font-size: 0.58rem;
  font-weight: 800;
  text-transform: uppercase;
}

.studio-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 110px var(--page-pad);
  color: var(--ivory);
  border-left: 1px solid rgba(246, 241, 230, 0.2);
}

.studio-copy .section-label.dark {
  color: rgba(246, 241, 230, 0.66);
}

.studio-copy h2 {
  margin-top: 52px;
  font-size: 5.4rem;
}

.studio-copy h2 em {
  color: var(--pollen);
}

.studio-lead {
  max-width: 650px;
  margin: 46px 0 0;
  font-family: var(--font-serif);
  font-size: 1.55rem;
  line-height: 1.45;
}

.studio-copy > p:not(.studio-lead) {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(246, 241, 230, 0.66);
  line-height: 1.7;
}

.studio-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 54px;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.studio-values span {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact {
  color: var(--ivory);
  background: var(--navy);
}

.contact-inner {
  padding: 150px var(--page-pad) 140px;
}

.contact h2 {
  max-width: 1200px;
  margin-top: 60px;
  font-size: 7.4rem;
}

.contact h2 em {
  color: var(--pollen);
  font-weight: 400;
}

.contact-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 90px;
  padding: 22px 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  font-size: 2.6rem;
  font-weight: 700;
}

.contact-link i {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: var(--pollen);
  border-radius: 50%;
  font-size: 1rem;
  font-style: normal;
  transition: transform 220ms var(--ease);
}

.contact-link:hover i {
  transform: translate(4px, -4px);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 40px;
  padding: 48px var(--page-pad) 38px;
  border-top: 1px solid var(--line-light);
}

.footer-brand {
  min-width: 92px;
}

.footer-logo {
  width: 92px;
  height: auto;
  transition: opacity 220ms ease;
}

.site-footer nav {
  display: flex;
  gap: 28px;
}

.site-footer nav a,
.footer-meta {
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-footer nav a:hover {
  color: var(--pollen);
}

.footer-meta {
  justify-self: end;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  color: rgba(246, 241, 230, 0.56);
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 650ms ease,
    transform 650ms var(--ease);
}

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

@media (max-width: 1180px) {
  .hero h1 {
    font-size: 6.3rem;
  }

  .intro-heading h2,
  .services-heading h2,
  .moments-head h2 {
    font-size: 5.2rem;
  }

  .approach-heading h2,
  .studio-copy h2 {
    font-size: 4.7rem;
  }

  .contact h2 {
    font-size: 6.2rem;
  }

  .services-heading {
    grid-template-columns: 0.25fr minmax(0, 1fr) minmax(220px, 0.42fr);
  }

  .services-workspace {
    grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  }

  .panel-copy h3 {
    font-size: 3.15rem;
  }

  .moment-row {
    grid-template-columns: 46px minmax(290px, 1.15fr) minmax(220px, 0.65fr) 120px 34px;
    gap: 24px;
  }

  .moment-row h3 {
    font-size: 2.75rem;
  }

  .approach {
    gap: 7%;
  }
}

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

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
    position: fixed;
    top: 11px;
    right: 14px;
    color: var(--navy);
    background: var(--pollen);
    border: 1px solid var(--navy);
    border-radius: 50%;
  }

  .mobile-menu {
    display: flex;
  }

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

  .hero h1 {
    font-size: 5.2rem;
  }

  .hero-summary {
    grid-column: 1;
    max-width: 570px;
  }

  .intro-heading,
  .services-heading,
  .moments-head,
  .approach {
    grid-template-columns: 1fr;
  }

  .intro-heading,
  .services-heading {
    gap: 44px;
  }

  .intro-heading > p,
  .services-heading > p {
    max-width: 620px;
  }

  .principle-line {
    grid-template-columns: 1fr;
  }

  .principle-line article {
    min-height: 150px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

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

  .service-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .service-tab {
    border-right: 1px solid var(--line);
  }

  .service-tab:nth-child(2) {
    border-right: 0;
  }

  .service-tab:nth-child(4) {
    border-right: 0;
  }

  .service-tab:last-child {
    grid-column: 1 / -1;
    border-right: 0;
  }

  .service-stage {
    border-top: 1px solid var(--navy);
    border-left: 0;
  }

  .moments-head {
    gap: 50px;
  }

  .moment-row {
    grid-template-columns: 42px 1fr 44px;
    gap: 20px;
  }

  .moment-row h3 {
    font-size: 2.9rem;
  }

  .moment-row > p {
    grid-column: 2;
  }

  .moment-row ul {
    grid-column: 2;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }

  .moment-arrow {
    grid-column: 3;
    grid-row: 1;
  }

  .approach {
    gap: 86px;
  }

  .approach-heading {
    position: static;
  }

  .approach-heading > p {
    max-width: 620px;
  }

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

  .studio-media {
    min-height: 680px;
  }

  .studio-copy {
    min-height: 720px;
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

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

  .site-footer nav {
    justify-self: end;
  }

  .footer-meta {
    grid-column: 1 / -1;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 66px;
    --page-pad: 20px;
  }

  .section-shell {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .site-header {
    padding-right: 14px;
  }

  .mobile-menu nav a {
    font-size: 2.6rem;
  }

  .hero {
    min-height: max(730px, 94svh);
  }

  .hero-media img,
  .hero-media video {
    object-position: 58% center;
  }

  .hero-overlay {
    background: rgba(15, 27, 45, 0.65);
  }

  .hero-content {
    min-height: max(730px, 94svh);
    grid-template-rows: auto 1fr auto;
    padding-top: calc(var(--header-height) + 34px);
    padding-bottom: 138px;
  }

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

  .hero h1 {
    min-width: 0;
    max-width: 100%;
    font-size: 2.85rem;
    line-height: 0.92;
  }

  .hero-line,
  .hero-line > span {
    min-width: 0;
    max-width: 100%;
  }

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

  .hero-summary p {
    max-width: 340px;
    font-size: 0.96rem;
  }

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

  .hero-disciplines span {
    min-height: 48px;
    padding: 0 20px;
    border-bottom: 1px solid var(--line-light);
  }

  .hero-disciplines span:nth-child(2) {
    border-right: 0;
  }

  .hero-disciplines span:nth-child(4) {
    border-right: 0;
  }

  .hero-disciplines span:nth-child(5) {
    grid-column: 1 / -1;
    border-bottom: 0;
    border-right: 0;
  }

  .intro-heading {
    margin-top: 44px;
  }

  .intro-heading h2,
  .services-heading h2,
  .moments-head h2,
  .approach-heading h2,
  .studio-copy h2 {
    font-size: 3.55rem;
  }

  .intro-heading > p {
    font-size: 1rem;
  }

  .principle-line {
    margin-top: 70px;
  }

  .principle-line article {
    padding: 28px 10px;
  }

  .principle-line h3 {
    font-size: 2rem;
  }

  .services {
    padding-top: 96px;
    padding-bottom: 100px;
  }

  .services-heading {
    display: block;
  }

  .services-heading h2 {
    margin-top: 44px;
  }

  .services-heading > p {
    margin-top: 32px;
  }

  .services-workspace {
    margin-top: 64px;
  }

  .service-tabs {
    grid-template-columns: 1fr;
  }

  .service-tab {
    min-height: 78px;
    grid-template-columns: 28px 1fr 22px;
    padding: 16px 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-tab:nth-child(3) {
    border-bottom: 1px solid var(--line);
  }

  .service-tab:last-child {
    grid-column: auto;
    border-bottom: 0;
  }

  .service-tab strong {
    font-size: 1.25rem;
  }

  .service-panel {
    min-height: 690px;
  }

  .panel-copy {
    padding: 38px 24px 34px;
  }

  .panel-kicker {
    margin-bottom: 26px;
  }

  .panel-copy h3 {
    font-size: 2.55rem;
  }

  .panel-copy > p:last-child {
    margin-top: 24px;
  }

  .panel-foot {
    grid-template-columns: 1fr;
  }

  .panel-foot ul {
    min-height: 0;
    padding: 24px;
    border-bottom: 1px solid var(--line-light);
  }

  .service-artifact {
    min-height: 190px;
    border-left: 0;
  }

  .artifact-brand strong {
    font-size: 5.2rem;
  }

  .artifact-ai > div:nth-child(2) {
    margin-left: 20px;
  }

  .artifact-ai > div:nth-child(3) {
    margin-left: 40px;
  }

  .moments-head {
    display: block;
    padding-top: 96px;
    padding-bottom: 70px;
  }

  .moments-head h2 {
    margin-top: 44px;
  }

  .moment-row {
    min-height: 0;
    grid-template-columns: 30px 1fr 30px;
    align-items: start;
    gap: 16px;
    padding-top: 34px;
    padding-bottom: 38px;
  }

  .moment-row h3 {
    font-size: 2.25rem;
  }

  .moment-row > p {
    font-size: 0.94rem;
  }

  .approach {
    gap: 66px;
  }

  .approach-heading h2 {
    margin-top: 44px;
  }

  .approach-steps {
    padding-left: 42px;
  }

  .approach-line {
    left: 11px;
  }

  .approach-step {
    min-height: 0;
    grid-template-columns: 38px 1fr;
    gap: 14px;
    padding-bottom: 80px;
  }

  .approach-step > span {
    width: 34px;
    height: 34px;
  }

  .approach-step h3 {
    font-size: 2.45rem;
  }

  .approach-step ul {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .studio-media {
    min-height: 520px;
  }

  .studio-copy {
    min-height: 0;
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .studio-copy h2 {
    margin-top: 44px;
  }

  .studio-lead {
    font-size: 1.3rem;
  }

  .studio-values {
    grid-template-columns: 1fr;
  }

  .contact-inner {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .contact h2 {
    margin-top: 46px;
    font-size: 4rem;
  }

  .contact-link {
    margin-top: 64px;
    font-size: 1.35rem;
  }

  .contact-link span {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .contact-link i {
    width: 42px;
    height: 42px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .site-footer nav {
    justify-self: start;
    flex-wrap: wrap;
    gap: 16px 24px;
  }

  .footer-meta {
    grid-column: auto;
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 2.65rem;
  }

  .intro-heading h2,
  .services-heading h2,
  .moments-head h2,
  .approach-heading h2,
  .studio-copy h2 {
    font-size: 3.05rem;
  }

  .panel-copy h3 {
    font-size: 2.25rem;
  }

  .moment-row h3,
  .approach-step h3 {
    font-size: 2.05rem;
  }

  .contact h2 {
    font-size: 3.35rem;
  }

  .mobile-menu nav a {
    font-size: 2.25rem;
  }
}

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

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

  .js .hero-line > span,
  .js [data-intro],
  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .studio-media img {
    transform: scale(1.04);
  }
}
