:root {
  --ink: #090909;
  --ink-soft: #151515;
  --paper: #f3f2ee;
  --white: #ffffff;
  --grey: #9d9d99;
  --line-dark: rgba(255, 255, 255, 0.18);
  --line-light: rgba(9, 9, 9, 0.2);
  --shell: min(1440px, calc(100vw - 96px));
  --header-height: 92px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: var(--header-height);
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: "Helvetica Neue", "Nimbus Sans L", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  color: inherit;
  font: inherit;
}

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

h1,
h2,
h3,
p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  transform: translateY(-150%);
  background: var(--white);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: transform 180ms ease;
}

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

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 5px;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition:
    height 350ms var(--ease),
    background-color 350ms ease,
    border-color 350ms ease;
}

.site-header.is-scrolled {
  height: 72px;
  border-color: var(--line-dark);
  background: rgba(9, 9, 9, 0.88);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 33px;
  height: 33px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
}

.brand-mark img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

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

.site-nav > a:not(.nav-cta) {
  position: relative;
  color: rgba(255, 255, 255, 0.7);
  transition: color 200ms ease;
}

.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right center;
  background: currentColor;
  content: "";
  transition: transform 300ms var(--ease);
}

.site-nav > a:not(.nav-cta):hover {
  color: var(--white);
}

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

.nav-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 32px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  transition:
    background-color 220ms ease,
    color 220ms ease;
}

.nav-cta:hover {
  background: var(--white);
  color: var(--ink);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 12px 9px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 5px 0;
  background: var(--white);
  transition: transform 300ms var(--ease);
}

.hero {
  position: relative;
  min-height: clamp(700px, 86svh, 850px);
  overflow: hidden;
  padding: calc(var(--header-height) + 56px) 0 28px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--ink);
  background-position: center;
  background-size: 80px 80px;
}

.hero::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: radial-gradient(circle at 73% 48%, rgba(255, 255, 255, 0.09), transparent 34%);
  content: "";
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(330px, 0.6fr);
  align-items: center;
  gap: 7vw;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: clamp(30px, 4vh, 48px);
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
  animation: pulse 2.2s ease-in-out infinite;
}

.hero-title {
  max-width: 980px;
  font-size: clamp(64px, 8.2vw, 132px);
  font-weight: 500;
  line-height: 0.85;
  letter-spacing: -0.072em;
}

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

.hero-title-accent {
  color: transparent;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.98em;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.08em;
  -webkit-text-stroke: 1.2px rgba(255, 255, 255, 0.9);
}

.hero-summary {
  display: grid;
  max-width: 720px;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: clamp(32px, 4vw, 64px);
  align-items: end;
  margin-top: clamp(36px, 4.5vh, 54px);
}

.hero-intro {
  max-width: 500px;
}

.hero-slogan {
  margin-bottom: 16px;
  color: var(--white);
  font-size: clamp(21px, 1.8vw, 28px);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.hero-slogan span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
}

.hero-description {
  max-width: 480px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.55;
  letter-spacing: -0.018em;
}

.hero-actions {
  display: flex;
  min-width: max-content;
  flex-direction: column;
  align-items: flex-start;
  gap: 21px;
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--white);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  transition:
    transform 300ms var(--ease),
    background-color 220ms ease,
    color 220ms ease;
}

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

.button-light {
  background: var(--white);
  color: var(--ink);
}

.button-light:hover {
  background: transparent;
  color: var(--white);
}

.hero-art {
  position: relative;
  width: min(29vw, 420px);
  aspect-ratio: 1;
  justify-self: end;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.orbit-outer {
  inset: 0;
  animation: spin 28s linear infinite;
}

.orbit-middle {
  inset: 13%;
  border-style: dashed;
  animation: spin-reverse 20s linear infinite;
}

.orbit-inner {
  inset: 28%;
  border-color: rgba(255, 255, 255, 0.7);
}

.orbit-inner::before,
.orbit-inner::after {
  position: absolute;
  background: rgba(255, 255, 255, 0.55);
  content: "";
}

.orbit-inner::before {
  top: 50%;
  right: -52%;
  left: -52%;
  height: 1px;
}

.orbit-inner::after {
  top: -52%;
  bottom: -52%;
  left: 50%;
  width: 1px;
}

.art-logo {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 46%;
  height: 46%;
  transform: translate(-50%, -50%);
  object-fit: contain;
}

.art-cross {
  position: absolute;
  color: rgba(255, 255, 255, 0.52);
  font-size: 14px;
  font-weight: 200;
}

.art-cross-one {
  top: 12%;
  right: 14%;
}

.art-cross-two {
  bottom: 14%;
  left: 12%;
}

.hero-foot {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 22px;
  left: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-foot ul {
  display: flex;
  gap: clamp(28px, 4vw, 68px);
}

.hero-foot li::before {
  margin-right: 8px;
  color: var(--white);
  content: "•";
}

.ticker {
  overflow: hidden;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: var(--ink);
}

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

.ticker span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.ticker i {
  color: rgba(255, 255, 255, 0.35);
  font-size: 10px;
  font-style: normal;
}

.light-section {
  background: var(--paper);
  color: var(--ink);
}

.services {
  padding: clamp(76px, 8vw, 120px) 0 clamp(72px, 7vw, 110px);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  margin-bottom: clamp(52px, 6vw, 82px);
}

.section-kicker {
  padding-top: 12px;
  color: rgba(9, 9, 9, 0.48);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-kicker-light {
  color: rgba(255, 255, 255, 0.45);
}

.section-heading h2,
.company-copy h2,
.approach-intro h2,
.contact-heading h2 {
  font-size: clamp(45px, 6.2vw, 92px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.section-heading h2 span {
  display: block;
  color: rgba(9, 9, 9, 0.34);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
}

.service-list {
  border-top: 1px solid var(--ink);
}

.service-item {
  position: relative;
  display: grid;
  min-height: 220px;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: start;
  padding: 32px 0 30px;
  border-bottom: 1px solid var(--line-light);
  isolation: isolate;
}

.service-item::before {
  position: absolute;
  z-index: -1;
  inset: 0 -24px;
  transform: scaleY(0);
  transform-origin: bottom;
  background: var(--ink);
  content: "";
  transition: transform 450ms var(--ease);
}

.service-item:hover::before {
  transform: scaleY(1);
}

.service-item,
.service-item p,
.service-item .tag-list li {
  transition:
    color 320ms ease,
    border-color 320ms ease;
}

.service-item:hover {
  color: var(--white);
}

.service-item:hover p {
  color: rgba(255, 255, 255, 0.58);
}

.service-item:hover .tag-list li {
  border-color: rgba(255, 255, 255, 0.3);
}

.service-main h3 {
  margin-bottom: 18px;
  font-size: clamp(34px, 3.6vw, 56px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.05em;
}

.service-main > p {
  max-width: 630px;
  color: rgba(9, 9, 9, 0.62);
  font-size: 17px;
  line-height: 1.6;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.tag-list li {
  padding: 7px 12px;
  border: 1px solid rgba(9, 9, 9, 0.24);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.service-arrow {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 19px;
  transition:
    transform 450ms var(--ease),
    background-color 320ms ease,
    color 320ms ease;
}

.service-item:hover .service-arrow {
  transform: translateX(4px);
  background: var(--white);
  color: var(--ink);
}

.service-page-main {
  overflow: hidden;
}

.service-hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--header-height) + 72px) 0 88px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--ink);
  background-position: center;
  background-size: 80px 80px;
}

.service-hero::after {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 76% 48%, rgba(255, 255, 255, 0.1), transparent 34%);
  content: "";
  pointer-events: none;
}

.service-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(310px, 0.55fr);
  gap: clamp(48px, 8vw, 130px);
  align-items: center;
}

.service-back {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: color 200ms ease;
}

.service-back:hover {
  color: var(--white);
}

.service-hero h1 {
  max-width: 950px;
  margin-top: clamp(44px, 6vh, 72px);
  font-size: clamp(68px, 8.5vw, 132px);
  font-weight: 500;
  line-height: 0.87;
  letter-spacing: -0.07em;
}

.service-hero h1 span {
  display: block;
  color: transparent;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  -webkit-text-stroke: 1.2px rgba(255, 255, 255, 0.9);
}

.service-hero-lede {
  max-width: 660px;
  margin-top: 38px;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(18px, 1.55vw, 23px);
  line-height: 1.55;
  letter-spacing: -0.02em;
}

.service-hero-actions {
  margin-top: 34px;
}

.service-page-art {
  width: min(29vw, 410px);
}

.service-overview {
  padding: clamp(76px, 8vw, 120px) 0;
}

.service-overview-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  margin-bottom: clamp(58px, 6vw, 88px);
}

.service-overview-copy h2,
.service-principles h2,
.service-fit h2 {
  font-size: clamp(45px, 6vw, 88px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.service-overview-copy > p {
  max-width: 700px;
  margin-top: 28px;
  color: rgba(9, 9, 9, 0.6);
  font-size: 17px;
  line-height: 1.7;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line-light);
}

.capability-card {
  min-height: 250px;
  padding: 28px clamp(22px, 2.4vw, 36px) 30px;
  border-right: 1px solid var(--line-light);
}

.capability-card:first-child {
  padding-left: 0;
}

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

.capability-card h3 {
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.capability-card p {
  margin-top: 24px;
  color: rgba(9, 9, 9, 0.58);
  font-size: 14px;
  line-height: 1.68;
}

.service-principles {
  padding: clamp(80px, 8vw, 120px) 0;
  background: var(--ink);
}

.service-principles-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(460px, 1.15fr);
  gap: clamp(60px, 8vw, 130px);
}

.service-principles .section-kicker {
  margin-bottom: 38px;
}

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

.principle-list li {
  display: grid;
  grid-template-columns: minmax(150px, 0.7fr) 1fr;
  gap: 32px;
  padding: 27px 0 30px;
  border-bottom: 1px solid var(--line-dark);
}

.principle-list h3 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.principle-list p {
  color: rgba(255, 255, 255, 0.52);
  font-size: 14px;
  line-height: 1.68;
}

.service-fit {
  padding: clamp(76px, 8vw, 120px) 0;
}

.service-fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(60px, 9vw, 150px);
  align-items: start;
}

.service-fit-copy > p {
  max-width: 560px;
  margin-top: 28px;
  color: rgba(9, 9, 9, 0.6);
  font-size: 16px;
  line-height: 1.7;
}

.fit-list {
  border-top: 1px solid var(--ink);
}

.fit-list li {
  position: relative;
  padding: 22px 0 22px 30px;
  border-bottom: 1px solid var(--line-light);
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.4;
  letter-spacing: -0.025em;
}

.fit-list li::before {
  position: absolute;
  top: 31px;
  left: 2px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ink);
  content: "";
}

.related-services {
  padding: 0 0 clamp(76px, 8vw, 120px);
}

.related-services .section-kicker {
  margin-bottom: 26px;
}

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

.related-card {
  display: flex;
  min-height: 130px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 28px 24px 0;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.045em;
  transition:
    padding 350ms var(--ease),
    background-color 250ms ease,
    color 250ms ease;
}

.related-card + .related-card {
  padding-right: 0;
  padding-left: 28px;
  border-right: 0;
}

.related-card:hover {
  padding-right: 20px;
  padding-left: 20px;
  background: var(--ink);
  color: var(--white);
}

.related-arrow {
  flex: 0 0 auto;
  font-size: 18px;
}

.approach {
  padding: clamp(80px, 8vw, 120px) 0;
  background: var(--ink);
}

.approach-intro {
  display: grid;
  grid-template-columns: 1fr 1.5fr 0.5fr;
  gap: 40px;
  align-items: end;
  margin-bottom: clamp(64px, 7vw, 96px);
}

.approach-intro h2 {
  min-width: 650px;
}

.approach-lede {
  max-width: 330px;
  padding-bottom: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  line-height: 1.7;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-dark);
}

.process-item {
  min-height: 315px;
  padding: 28px clamp(22px, 2.4vw, 40px) 0;
  border-right: 1px solid var(--line-dark);
}

.process-item:first-child {
  padding-left: 0;
}

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

.process-topline {
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.process-item h3 {
  max-width: 260px;
  margin-top: 68px;
  font-size: clamp(23px, 2vw, 31px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.process-item > p {
  max-width: 260px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
  line-height: 1.65;
}

.company {
  padding: clamp(80px, 8vw, 120px) 0;
}

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

.company-copy {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0 40px;
}

.company-copy h2,
.company-text {
  grid-column: 2;
}

.company-copy .section-kicker {
  grid-column: 1;
  margin-bottom: 0;
}

.company-copy h2 {
  max-width: 1080px;
}

.company-text {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  margin-top: clamp(40px, 4.5vw, 56px);
  padding-top: 24px;
  border-top: 1px solid var(--line-light);
}

.company-text p {
  color: rgba(9, 9, 9, 0.62);
  font-size: 15px;
  line-height: 1.7;
}

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(64px, 7vw, 96px);
  border-top: 1px solid var(--ink);
}

.values article {
  min-height: 140px;
  padding: 24px 32px 0;
  border-right: 1px solid var(--line-light);
}

.values article:first-child {
  padding-left: 0;
}

.values article:last-child {
  padding-right: 0;
  border-right: 0;
}

.values h3 {
  margin-top: 0;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.values p {
  margin-top: 10px;
  color: rgba(9, 9, 9, 0.58);
  font-size: 13px;
}

.contact {
  padding: clamp(80px, 8vw, 120px) 0 clamp(70px, 7vw, 96px);
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--ink);
  background-size: 80px 80px;
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(480px, 0.85fr);
  gap: clamp(45px, 6vw, 90px);
  align-items: start;
}

.contact-heading .section-kicker {
  margin-bottom: clamp(40px, 4vw, 58px);
}

.contact-heading h2 {
  font-size: clamp(68px, 8vw, 118px);
  line-height: 0.88;
}

.contact-heading h2::first-line {
  color: var(--white);
}

.contact-form-panel {
  width: 100%;
  max-width: 660px;
  justify-self: end;
}

.contact-intro {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 17px;
  line-height: 1.65;
}

.contact-form {
  display: grid;
  gap: 22px;
  margin-top: 34px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-field {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.form-field label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-field label span {
  color: rgba(255, 255, 255, 0.3);
  font-size: 8px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--white);
  font: inherit;
  font-size: 15px;
  transition: border-color 200ms ease;
}

.form-field input,
.form-field select {
  height: 44px;
}

.form-field select {
  cursor: pointer;
}

.form-field select option {
  background: var(--ink);
  color: var(--white);
}

.form-field textarea {
  min-height: 112px;
  padding: 11px 0;
  line-height: 1.55;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--white);
}

.form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

.form-field [data-fs-field][aria-invalid="true"] {
  border-color: var(--white);
}

.form-field-error {
  min-height: 15px;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  line-height: 1.4;
}

.form-field-error:not([data-fs-active]) {
  visibility: hidden;
}

.form-notice {
  display: none;
  margin-top: 28px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.5;
}

.form-notice[data-fs-active] {
  display: block;
}

.form-submit {
  min-height: 58px;
  padding: 0 26px;
  border: 1px solid var(--white);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  transition:
    background-color 220ms ease,
    color 220ms ease,
    opacity 220ms ease;
}

.form-submit:hover:not(:disabled) {
  background: transparent;
  color: var(--white);
}

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

.form-privacy {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  line-height: 1.6;
}

.form-privacy a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
  color: rgba(255, 255, 255, 0.78);
  transition:
    border-color 200ms ease,
    color 200ms ease;
}

.form-privacy a:hover {
  border-color: var(--white);
  color: var(--white);
}

.contact-email {
  display: inline-block;
  margin-top: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  transition:
    color 200ms ease,
    border-color 200ms ease;
}

.contact-email:hover {
  border-color: var(--white);
  color: var(--white);
}

.site-footer {
  border-top: 1px solid var(--line-dark);
  background: var(--ink);
  padding: 32px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: rgba(255, 255, 255, 0.45);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.brand-footer {
  color: var(--white);
}

.footer-meta {
  display: flex;
  justify-self: end;
  gap: 38px;
}

.footer-meta a,
.footer-legal a {
  transition: color 200ms ease;
}

.footer-meta a:hover,
.footer-legal a:hover {
  color: var(--white);
}

.footer-legal {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.6;
  text-transform: none;
}

.legal-main {
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
}

.legal-hero {
  position: relative;
  min-height: 610px;
  display: flex;
  align-items: end;
  overflow: hidden;
  padding: calc(var(--header-height) + 90px) 0 86px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--ink);
  background-size: 80px 80px;
  color: var(--white);
}

.legal-hero::after {
  position: absolute;
  right: -8vw;
  bottom: -30vw;
  width: min(62vw, 820px);
  height: min(62vw, 820px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(255, 255, 255, 0.025),
    0 0 0 140px rgba(255, 255, 255, 0.018);
  content: "";
}

.legal-hero-inner {
  position: relative;
  z-index: 1;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: color 200ms ease;
}

.legal-back:hover {
  color: var(--white);
}

.legal-hero h1 {
  max-width: 980px;
  margin-top: 56px;
  font-size: clamp(72px, 10vw, 150px);
  font-weight: 500;
  line-height: 0.86;
  letter-spacing: -0.075em;
}

.legal-hero-meta {
  margin-top: 42px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-section {
  padding: clamp(76px, 9vw, 132px) 0;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(64px, 10vw, 160px);
  align-items: start;
}

.legal-summary {
  position: sticky;
  top: calc(var(--header-height) + 36px);
  padding-top: 20px;
  border-top: 1px solid var(--ink);
}

.legal-summary-label {
  margin-bottom: 22px;
  color: rgba(9, 9, 9, 0.68);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-summary p:not(.legal-summary-label) {
  max-width: 340px;
  color: rgba(9, 9, 9, 0.62);
  font-size: 15px;
  line-height: 1.7;
}

.legal-summary a {
  display: inline-block;
  margin-top: 24px;
  border-bottom: 1px solid rgba(9, 9, 9, 0.34);
  font-size: 13px;
  font-weight: 600;
}

.legal-copy {
  max-width: 820px;
}

.legal-copy section {
  padding: 0 0 52px;
  border-bottom: 1px solid var(--line-light);
}

.legal-copy section + section {
  padding-top: 52px;
}

.legal-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(30px, 3.2vw, 48px);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.legal-copy h3 {
  margin: 30px 0 10px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.legal-copy p,
.legal-copy li {
  color: rgba(9, 9, 9, 0.65);
  font-size: 15px;
  line-height: 1.75;
}

.legal-copy p + p,
.legal-copy ul + p,
.legal-copy p + ul {
  margin-top: 16px;
}

.legal-copy ul {
  display: grid;
  gap: 9px;
}

.legal-copy li {
  position: relative;
  padding-left: 20px;
}

.legal-copy li::before {
  position: absolute;
  top: 0.74em;
  left: 1px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ink);
  content: "";
}

.legal-copy a {
  border-bottom: 1px solid rgba(9, 9, 9, 0.3);
  color: var(--ink);
  transition: border-color 200ms ease;
}

.legal-copy a:hover {
  border-color: var(--ink);
}

.legal-company-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 34px;
  margin-top: 28px;
  padding: 26px;
  border: 1px solid var(--line-light);
}

.legal-company-card div {
  display: grid;
  gap: 4px;
}

.legal-company-card dt {
  color: rgba(9, 9, 9, 0.68);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-company-card dd {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.5;
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 750ms var(--ease),
    transform 900ms var(--ease);
}

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

@keyframes pulse {
  0%,
  100% {
    opacity: 0.65;
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.08);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes spin-reverse {
  to {
    transform: rotate(-360deg);
  }
}

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

@media (max-width: 1180px) {
  :root {
    --shell: min(100% - 64px, 1200px);
  }

  .hero {
    padding-top: calc(var(--header-height) + 42px);
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.47fr);
    gap: 40px;
  }

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

  .hero-actions {
    flex-direction: row;
    align-items: center;
  }

  .hero-art {
    width: min(34vw, 400px);
  }

  .service-page-art {
    width: min(34vw, 390px);
  }

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

  .capability-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-light);
  }

  .capability-card:nth-child(2) {
    padding-right: 0;
    border-right: 0;
  }

  .capability-card:nth-child(3) {
    padding-left: 0;
  }

  .approach-intro {
    grid-template-columns: 0.7fr 1.6fr;
  }

  .approach-intro h2 {
    min-width: 0;
  }

  .approach-lede {
    grid-column: 2;
  }

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

  .process-item {
    min-height: 280px;
    border-bottom: 1px solid var(--line-dark);
  }

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

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

  .process-item h3 {
    margin-top: 55px;
  }

}

@media (max-width: 840px) {
  :root {
    --shell: calc(100% - 40px);
    --header-height: 76px;
  }

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

  .js .menu-toggle {
    position: relative;
    z-index: 2;
    display: block;
  }

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

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

  .js .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    padding: 100px 20px 60px;
    opacity: 0;
    background: var(--ink);
    transition:
      opacity 300ms ease,
      visibility 300ms ease;
  }

  .js .site-nav.is-open {
    visibility: visible;
    opacity: 1;
  }

  .site-nav > a:not(.nav-cta) {
    font-size: clamp(37px, 10vw, 60px);
    font-weight: 500;
    letter-spacing: -0.05em;
  }

  .nav-cta {
    min-height: 56px;
    margin-top: 18px;
    padding: 0 22px;
    font-size: 15px;
  }

  .hero {
    min-height: auto;
    padding: calc(var(--header-height) + 42px) 0 24px;
  }

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

  .eyebrow {
    margin-bottom: 30px;
  }

  .hero-title {
    font-size: clamp(58px, 15vw, 104px);
  }

  .hero-summary {
    margin-top: 36px;
  }

  .hero-art {
    width: min(82vw, 470px);
    margin: 28px auto 58px;
    justify-self: center;
  }

  .service-hero {
    min-height: auto;
    padding: calc(var(--header-height) + 52px) 0 74px;
  }

  .service-hero-grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .service-hero h1 {
    font-size: clamp(62px, 14vw, 104px);
  }

  .service-page-art {
    width: min(62vw, 430px);
    margin: 0 auto;
  }

  .hero-foot {
    position: relative;
    bottom: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .hero-foot ul {
    width: 100%;
    flex-wrap: wrap;
    gap: 12px 28px;
  }

  .section-heading,
  .approach-intro,
  .service-overview-head {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 34px;
  }

  .service-overview-head {
    gap: 30px;
  }

  .section-heading h2,
  .company-copy h2,
  .approach-intro h2 {
    font-size: clamp(43px, 11vw, 72px);
  }

  .service-item {
    grid-template-columns: 1fr auto;
    gap: 20px;
  }

  .service-main h3 {
    font-size: clamp(31px, 6vw, 48px);
  }

  .approach-intro {
    gap: 30px;
  }

  .approach-lede {
    grid-column: auto;
  }

  .company-copy {
    grid-template-columns: 1fr;
    row-gap: 34px;
  }

  .company-copy .section-kicker,
  .company-copy h2,
  .company-text {
    grid-column: auto;
  }

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

  .contact-form-panel {
    max-width: none;
    justify-self: stretch;
  }

  .service-principles-grid,
  .service-fit-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .contact-heading h2 {
    font-size: clamp(68px, 16vw, 120px);
  }

  .legal-hero {
    min-height: 540px;
    padding: calc(var(--header-height) + 70px) 0 72px;
  }

  .legal-hero h1 {
    font-size: clamp(66px, 15vw, 112px);
  }

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

  .legal-summary {
    position: static;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
    gap: 28px;
  }

  .footer-inner > p {
    display: none;
  }

  .footer-legal {
    flex-direction: column;
    gap: 8px;
  }
}

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

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

  .hero {
    background-size: 52px 52px;
  }

  .hero-title {
    font-size: clamp(52px, 16.5vw, 78px);
    line-height: 0.9;
  }

  .hero-title-accent {
    -webkit-text-stroke-width: 0.8px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-slogan {
    font-size: 22px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .button {
    width: 100%;
  }

  .hero-art {
    width: min(84vw, 390px);
    margin-bottom: 50px;
  }

  .service-hero {
    background-size: 52px 52px;
  }

  .service-hero h1 {
    margin-top: 38px;
    font-size: clamp(46px, 13.5vw, 64px);
    line-height: 0.9;
  }

  .service-hero h1 span {
    -webkit-text-stroke-width: 0.8px;
  }

  .service-hero-lede {
    margin-top: 30px;
    font-size: 17px;
  }

  .service-page-art {
    width: min(78vw, 360px);
    margin-bottom: 0;
  }

  .hero-foot {
    font-size: 8px;
  }

  .hero-foot ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .services,
  .approach,
  .company {
    padding-block: 70px;
  }

  .section-heading {
    margin-bottom: 50px;
  }

  .service-item {
    min-height: 0;
    grid-template-columns: 1fr;
    padding: 26px 0 30px;
  }

  .service-main > p {
    font-size: 15px;
  }

  .service-arrow {
    display: none;
  }

  .tag-list {
    margin-top: 25px;
  }

  .service-overview,
  .service-principles,
  .service-fit {
    padding-block: 70px;
  }

  .service-overview-copy h2,
  .service-principles h2,
  .service-fit h2 {
    font-size: clamp(42px, 12vw, 66px);
  }

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

  .capability-card,
  .capability-card:first-child,
  .capability-card:nth-child(2),
  .capability-card:nth-child(3),
  .capability-card:last-child {
    min-height: 0;
    padding: 24px 0 28px;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .principle-list li {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .fit-list li {
    font-size: 17px;
  }

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

  .related-card,
  .related-card + .related-card {
    min-height: 105px;
    padding: 20px 0;
    border-right: 0;
  }

  .related-card:hover,
  .related-card + .related-card:hover {
    padding-right: 16px;
    padding-left: 16px;
  }

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

  .process-item,
  .process-item:first-child,
  .process-item:nth-child(2),
  .process-item:nth-child(3),
  .process-item:last-child {
    min-height: 245px;
    padding: 24px 0 30px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .process-item h3 {
    margin-top: 46px;
  }

  .company-copy .section-kicker {
    margin-bottom: 0;
  }

  .company-text {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .values {
    grid-template-columns: 1fr;
    margin-top: 50px;
  }

  .values article,
  .values article:first-child,
  .values article:last-child {
    min-height: 120px;
    padding: 22px 0 24px;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .contact {
    padding-block: 72px 60px;
    background-size: 52px 52px;
  }

  .contact-inner {
    gap: 52px;
  }

  .contact-heading .section-kicker {
    margin-bottom: 36px;
  }

  .contact-heading h2 {
    font-size: clamp(60px, 18vw, 90px);
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .contact-form {
    gap: 18px;
  }

  .legal-hero {
    min-height: 480px;
    padding: calc(var(--header-height) + 48px) 0 58px;
    background-size: 52px 52px;
  }

  .legal-hero::after {
    right: -32vw;
    bottom: -30vw;
    width: 110vw;
    height: 110vw;
  }

  .legal-hero h1 {
    margin-top: 44px;
    font-size: clamp(58px, 18vw, 88px);
  }

  .legal-hero-meta {
    margin-top: 32px;
    font-size: 10px;
  }

  .legal-layout {
    gap: 48px;
  }

  .legal-copy section {
    padding-bottom: 42px;
  }

  .legal-copy section + section {
    padding-top: 42px;
  }

  .legal-company-card {
    grid-template-columns: 1fr;
    padding: 22px;
  }

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

  .footer-meta {
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
    justify-self: start;
    gap: 14px 28px;
  }

  .footer-legal {
    margin-top: 8px;
  }
}

@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 .reveal {
    opacity: 1;
    transform: none;
  }
}
