@import url("https://fonts.googleapis.com/css2?family=Urbanist:wght@300;400;500;600;700&family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap");

:root {
  --navy: #0F2241;
  --navy-2: #142F58;
  --navy-3: #193C71;
  --blue: #1F4B8C;
  --blue-hover: #193C71;
  --focus: #2D5FA8;
  --oak: #85582B;
  --oak-light: #E3C8A3;
  --fg: #1A1C1B;
  --muted: #585D5A;
  --subtle: #737875;
  --bg: #FFFFFF;
  --bg-subtle: #F6F7F6;
  --border: #DCDFDC;
  --border-strong: #9A9F9C;
  --hover-bg: #ECEEEC;
  --line-inverse: rgb(255 255 255 / 0.14);
  --scrim: linear-gradient(to top, rgb(10 22 41 / 0.64) 0%, rgb(10 22 41 / 0) 60%);
  --overlay: rgb(10 22 41 / 0.56);
  --display: "Urbanist", "Zen Kaku Gothic New", sans-serif;
  --sans: "Zen Kaku Gothic New", "Hiragino Sans", "Noto Sans", system-ui, sans-serif;
  --t-display: clamp(3.25rem, 1.6rem + 8vw, 10rem);
  --t-h1: clamp(2rem, 1.5rem + 2.2vw, 3.5rem);
  --t-h2: clamp(1.625rem, 1.3rem + 1.4vw, 2.5rem);
  --t-h3: clamp(1.25rem, 1.1rem + 0.6vw, 1.625rem);
  --t-h4: 1.125rem;
  --t-lead: clamp(1rem, 0.95rem + 0.3vw, 1.125rem);
  --t-small: 0.875rem;
  --t-caption: 0.75rem;
  --gutter: clamp(1.5rem, 4vw, 4rem);
  --section: clamp(6rem, 11vw, 10rem);
  --stack: clamp(2rem, 4vw, 3.5rem);
  --header-h: 72px;
  --ease: cubic-bezier(0.2, 0, 0, 1);
  --ease-enter: cubic-bezier(0.05, 0.7, 0.1, 1);
  --ease-roll: cubic-bezier(0.65, 0, 0.35, 1);
  --slide: 6000ms;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  font-size: 1rem;
  line-height: 1.9;
  letter-spacing: 0.04em;
  color: var(--fg);
  background: var(--bg);
  overflow-wrap: anywhere;
}

body.is-locked {
  overflow: hidden;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-weight: 700;
  text-wrap: balance;
}

h2 {
  font-size: var(--t-h2);
  line-height: 1.5;
  letter-spacing: 0.03em;
}

h3 {
  font-size: var(--t-h3);
  line-height: 1.6;
  letter-spacing: 0.03em;
}

p {
  margin: 0;
  max-width: 40em;
  text-wrap: pretty;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  letter-spacing: inherit;
}

a {
  color: var(--blue);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25em;
}

a:hover {
  color: var(--blue-hover);
}

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

:focus:not(:focus-visible) {
  outline: none;
}

.on-navy :focus-visible {
  outline-color: #fff;
}

.wrap {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.block {
  padding-bottom: var(--section);
}

.display {
  font-family: var(--display);
  font-size: var(--t-display);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.muted {
  color: var(--muted);
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 24px;
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1;
  color: #fff;
  background: var(--blue);
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 160ms var(--ease), color 160ms var(--ease), border-color 160ms var(--ease), transform 80ms var(--ease);
}

.btn:hover {
  color: #fff;
  background: var(--blue-hover);
}

.btn:active {
  transform: scale(0.98);
}

.btn--sm {
  min-height: 36px;
  padding: 0 16px;
  gap: 8px;
}

.btn--lg {
  min-height: 64px;
  padding: 0 32px;
  font-size: 1rem;
  gap: 16px;
}

.btn--outline {
  color: var(--fg);
  background: transparent;
  border-color: var(--border-strong);
}

.btn--outline:hover {
  color: var(--bg);
  background: var(--fg);
  border-color: var(--fg);
}

.btn--inverse {
  color: #fff;
  background: transparent;
  border-color: currentColor;
}

.btn--inverse:hover {
  color: var(--navy);
  background: #fff;
  border-color: #fff;
}

.btn__label {
  position: relative;
  display: inline-block;
  overflow: hidden;
  line-height: 1.2;
}

.btn__label > span,
.btn__label::after {
  display: block;
  transition: transform 240ms var(--ease-roll);
}

.btn__label::after {
  content: attr(data-text);
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
}

.btn__dot {
  width: 6px;
  height: 6px;
  flex: none;
  border-radius: 50%;
  background: currentColor;
  transition: transform 240ms var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .btn:hover .btn__label > span,
  .btn:hover .btn__label::after {
    transform: translateY(-100%);
  }
  .btn:hover .btn__dot {
    transform: scale(1.5);
  }
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
}

.text-link {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--blue);
  text-underline-offset: 0.3em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 300;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 var(--gutter);
  background: var(--bg);
  color: var(--fg);
  border-bottom: 1px solid var(--border);
}

.site-header--over {
  position: absolute;
  left: 0;
  right: 0;
  background: transparent;
  color: #fff;
  border-color: transparent;
  mix-blend-mode: difference;
}

.brand {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.375rem;
  letter-spacing: -0.01em;
  line-height: 1;
  color: inherit;
  text-decoration: none;
}

.brand:hover {
  color: inherit;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-nav__links {
  display: none;
  gap: 24px;
}

.site-nav .btn {
  display: none;
}

.nav-link {
  position: relative;
  padding: 8px 0;
  font-family: var(--display);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: inherit;
  text-decoration: none;
  background: none;
  border: 0;
  cursor: pointer;
}

.nav-link:hover {
  color: inherit;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms var(--ease);
}

.nav-link:hover::after,
.nav-link[aria-current="page"]::after {
  transform: scaleX(1);
}

.site-header:not(.site-header--over) .nav-link[aria-current="page"]::after {
  background: var(--blue);
}

.drawer {
  position: fixed;
  inset: 0;
  z-index: 400;
  pointer-events: none;
}

.drawer__backdrop {
  position: absolute;
  inset: 0;
  background: var(--overlay);
  opacity: 0;
  transition: opacity 400ms var(--ease-enter);
}

.drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(100vw, 480px);
  display: flex;
  flex-direction: column;
  padding: 12px var(--gutter) 40px;
  overflow-y: auto;
  background: var(--navy);
  color: #fff;
  transform: translateX(100%);
  transition: transform 400ms var(--ease-enter);
}

.drawer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
}

.drawer.is-open {
  pointer-events: auto;
}

.drawer.is-open .drawer__backdrop {
  opacity: 1;
}

.drawer.is-open .drawer__panel {
  transform: none;
}

.drawer__list {
  margin-top: 48px;
}

.drawer__list a {
  display: grid;
  grid-template-columns: 3rem 1fr;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid rgb(255 255 255 / 0.16);
  font-family: var(--display);
  font-size: var(--t-h3);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: inherit;
  text-decoration: none;
}

.drawer__list a:hover,
.drawer__list a[aria-current="page"] {
  color: var(--oak-light);
}

.drawer__list span {
  font-size: 0.875rem;
  font-variant-numeric: tabular-nums;
  opacity: 0.7;
}

.hero {
  position: relative;
  isolation: isolate;
  height: 100svh;
  min-height: 560px;
  max-height: 960px;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__wordmark {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: grid;
  place-items: center;
  align-content: center;
  margin: 0;
  padding: 0 12px 18vh;
  pointer-events: none;
  mix-blend-mode: difference;
  color: #fff;
  font-family: var(--display);
  font-weight: 500;
  font-size: 23vw;
  line-height: 0.86;
  letter-spacing: -0.045em;
  text-align: center;
}

.hero__foot {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 6;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 64px var(--gutter) 28px;
  background: var(--scrim);
}

.hero__lead {
  max-width: 26em;
  font-size: var(--t-h4);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.hero__controls {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero__pause {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgb(255 255 255 / 0.6);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: background-color 160ms var(--ease);
}

.hero__pause:hover {
  background: rgb(255 255 255 / 0.14);
}

.hero__pause i {
  display: block;
  width: 10px;
  height: 12px;
  border-left: 3px solid;
  border-right: 3px solid;
}

.hero__pause[aria-pressed="true"] i {
  width: 0;
  height: 0;
  margin-left: 3px;
  border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent currentColor;
}

.intro {
  padding: var(--section) 0;
}

.intro__body {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.statement {
  font-size: var(--t-h3);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.02em;
  max-width: 34em;
}

.page-head {
  padding-top: 96px;
  padding-bottom: 64px;
}

.page-head h1 {
  margin: 0;
}

.legal {
  display: grid;
  gap: var(--stack);
  padding-bottom: var(--section);
}

.legal__toc {
  font-size: var(--t-small);
  color: var(--muted);
}

.legal__toc ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  counter-reset: toc;
}

.legal__toc li {
  counter-increment: toc;
  display: flex;
  gap: 12px;
}

.legal__toc li::before {
  content: counter(toc,decimal-leading-zero);
  font-family: var(--display);
  font-variant-numeric: tabular-nums;
  opacity: .6;
}

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

.legal__toc a:hover {
  color: var(--fg);
  text-decoration: underline;
  text-underline-offset: .25em;
}

.legal__body {
  max-width: 720px;
  line-height: 1.9;
  letter-spacing: .04em;
}

.legal__body>section {
  padding-top: 56px;
  margin-top: 56px;
  border-top: 1px solid var(--border);
  scroll-margin-top: calc(var(--header-h) + 24px);
}

.legal__body>section:first-child {
  padding-top: 0;
  margin-top: 0;
  border-top: 0;
}

.legal__body h2 {
  font-size: var(--t-h3);
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 20px;
}

.legal__body h3 {
  font-size: var(--t-h4);
  font-weight: 700;
  line-height: 1.5;
  margin: 36px 0 12px;
}

.legal__body h4 {
  font-size: var(--t-lead);
  font-weight: 500;
  line-height: 1.5;
  margin: 28px 0 8px;
}

.legal__body p {
  margin: 0 0 16px;
  text-wrap: pretty;
}

.legal__body ul {
  margin: 0 0 16px;
  padding-left: 1.25em;
  display: grid;
  gap: 10px;
}

.legal__body a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: .25em;
}

.legal__body a:hover {
  color: var(--blue-hover);
}

.legal__meta {
  font-size: var(--t-small);
  color: var(--muted);
}

.legal__meta strong {
  color: var(--fg);
  font-weight: 500;
}

.legal__updated {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: var(--t-small);
  color: var(--muted);
}

@media (min-width:1024px) {
  .legal {
    grid-template-columns: minmax(0,4fr) minmax(0,8fr);
    gap: 64px;
  }
  .legal__toc {
    position: sticky;
    top: calc(var(--header-h) + 24px);
    align-self: start;
  }
}

@media print {
  .site-header,
  .drawer,
  .site-footer,
  .legal__toc {
    display: none;
  }
  .legal {
    display: block;
  }
}

.lede {
  display: grid;
  gap: 24px;
  padding-bottom: var(--section);
}

.lede h2 {
  font-weight: 500;
  letter-spacing: 0.01em;
}

.lede p {
  font-size: var(--t-lead);
  line-height: 2;
  letter-spacing: 0.05em;
  color: var(--muted);
}

.split {
  display: grid;
  gap: 24px 64px;
}

.split__main {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.split__main .body {
  font-size: var(--t-lead);
  line-height: 2;
  color: var(--muted);
}

.split__main .body + .body {
  margin-top: -8px;
}

.split__statement {
  font-size: var(--t-h2);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.features {
  display: grid;
  grid-auto-rows: 1fr;
  gap: 20px;
  margin-top: var(--stack);
}

.feature {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
  padding: 40px 28px 32px;
  overflow: hidden;
  border-radius: 16px;
  color: #fff;
  background: var(--tone, var(--navy));
}

.feature__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  transition: transform 700ms var(--ease);
}

.feature::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--scrim);
}

.feature:hover .feature__media {
  transform: scale(1.04);
}

.feature h3,
.feature p {
  position: relative;
  z-index: 1;
}

.feature h3 {
  font-size: 22px;
  line-height: 1.45;
}

.feature p {
  font-size: var(--t-small);
  line-height: 1.8;
  opacity: 0.88;
}

.growth {
  background: var(--navy);
  color: #fff;
  padding: var(--section) 0;
  margin-bottom: var(--section);
}

.growth .split__main .body {
  color: #fff;
  opacity: 0.82;
}

.quotes {
  display: grid;
  gap: 0 48px;
}

.quote {
  margin: 0;
  padding: 32px 0;
  border-top: 1px solid var(--border);
}

.quote blockquote {
  margin: 0;
  font-size: var(--t-h4);
  font-weight: 500;
  line-height: 1.8;
}

.quote figcaption {
  margin-top: 16px;
  font-size: var(--t-small);
  line-height: 1.7;
  color: var(--muted);
}

.cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 48px 24px;
  border-radius: 16px;
  background: var(--navy);
  color: #fff;
}

.cta--image {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--navy) var(--cta-img) center 60% / cover no-repeat;
}

.cta--image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(0deg, rgb(10 22 41 / .88), rgb(10 22 41 / .6));
}

@media (min-width: 1024px) {
  .cta--image::before {
    background: linear-gradient(90deg, rgb(10 22 41 / .9) 0%, rgb(10 22 41 / .72) 45%, rgb(10 22 41 / .2) 100%);
  }
}

.cta__title {
  font-family: var(--display);
  font-size: clamp(2.25rem, 1.5rem + 3vw, 4.5rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.03em;
  max-width: 12em;
}

.cta p {
  max-width: 30em;
  margin-bottom: 12px;
  font-size: var(--t-small);
  line-height: 1.8;
  opacity: 0.86;
}

.tiles {
  display: grid;
  gap: 16px;
}

.tile {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
}

.tile h3 {
  font-size: var(--t-h4);
  line-height: 1.6;
  letter-spacing: 0.04em;
}

.tile p {
  font-size: var(--t-small);
  line-height: 1.8;
  color: var(--muted);
}

.tile__num {
  font-family: var(--display);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--oak);
  font-variant-numeric: tabular-nums;
}

.flow {
  display: grid;
  gap: 28px;
  margin-top: var(--stack);
}

.flow li {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.flow li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 32px;
  bottom: -28px;
  width: 1px;
  height: 28px;
  background: var(--border-strong);
}

.flow li:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 28px;
  bottom: -6px;
  z-index: 1;
  border-style: solid;
  border-width: 6px 4.5px 0;
  border-color: var(--border-strong) transparent transparent;
}

.flow__stage {
  font-family: var(--display);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--oak);
}

.flow__name {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.005em;
}

.stage {
  display: grid;
  gap: 24px 64px;
  padding: 48px 0;
  border-top: 1px solid var(--border);
}

.stage:last-child {
  border-bottom: 1px solid var(--border);
}

.stage h2 span {
  display: block;
  margin-bottom: 8px;
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--oak);
}

.stage__main {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stage__main > p:first-child {
  font-size: var(--t-lead);
  line-height: 2;
  color: var(--muted);
}

.stage__main > p + p {
  font-weight: 700;
}

.checks li {
  position: relative;
  padding: 14px 0 14px 26px;
  border-bottom: 1px solid var(--border);
  font-size: 0.9375rem;
  line-height: 1.8;
}

.checks li:first-child {
  border-top: 1px solid var(--border);
}

.checks li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 1.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

.index {
  display: grid;
  margin-top: 40px;
  border-top: 1px solid var(--border);
}

.index a {
  display: grid;
  grid-template-columns: 2.75rem 1fr;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 500;
  color: var(--fg);
  text-decoration: none;
}

.index a:hover {
  text-decoration: underline;
}

.index span {
  font-family: var(--display);
  font-size: 0.875rem;
  color: var(--subtle);
  font-variant-numeric: tabular-nums;
}

.service {
  display: grid;
  gap: 32px 64px;
  padding: 64px 0;
  border-top: 1px solid var(--border);
}

.service__head span {
  display: block;
  margin-bottom: 12px;
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--oak);
  font-variant-numeric: tabular-nums;
}

.service__main {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.service__main > p {
  font-size: var(--t-lead);
  line-height: 2;
  color: var(--muted);
}

.case {
  padding: 64px 0 0;
  border-top: 1px solid var(--border);
}

.case + .case {
  margin-top: var(--section);
}

.case__title {
  display: grid;
  gap: 12px;
  margin-bottom: 40px;
  font-size: var(--t-h1);
  line-height: 1.3;
  letter-spacing: 0.01em;
  max-width: 20em;
}

.case__title span {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--oak);
}

.case__row {
  display: grid;
  gap: 16px 64px;
  padding: 32px 0;
  border-top: 1px solid var(--border);
}

.case__row h3 {
  font-size: var(--t-h4);
  letter-spacing: 0.04em;
}

.case__row .stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.case__row .stack > p {
  color: var(--muted);
}

.results {
  margin-top: 16px;
  padding: 40px 24px;
  border-radius: 16px;
  background: var(--navy);
  color: #fff;
}

.results h3 {
  font-size: var(--t-h4);
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}

.results ul {
  display: grid;
}

.results li {
  padding: 20px 0;
  border-top: 1px solid var(--line-inverse);
  font-size: var(--t-h4);
  font-weight: 500;
  line-height: 1.7;
}

.stories {
  display: grid;
  gap: 64px 32px;
  margin-top: var(--stack);
}

.story {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.story__media {
  aspect-ratio: 4 / 3;
  margin-bottom: 8px;
  overflow: hidden;
  border-radius: 16px;
  background: var(--tone, var(--bg-subtle));
}

.story__media div {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 700ms var(--ease);
}

.story:hover .story__media div {
  transform: scale(1.04);
}

.story p {
  font-size: 0.9375rem;
  line-height: 1.9;
  color: var(--muted);
}

.contact {
  display: grid;
  gap: 64px;
}

.hq {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hq h2 {
  font-size: var(--t-h3);
}

.hq h3 {
  font-size: 1rem;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.hq p {
  font-size: var(--t-small);
  line-height: 1.8;
  color: var(--muted);
}

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

.enquiry {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.enquiry > p {
  font-size: var(--t-small);
  line-height: 1.8;
  color: var(--muted);
}

.fields {
  display: grid;
  gap: 20px 24px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label,
.field legend {
  font-size: var(--t-small);
  font-weight: 500;
  transition: color 160ms var(--ease);
}

.field:focus-within label {
  color: var(--blue);
}

.field input,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 20px;
  border: 1px solid var(--border-strong);
  border-radius: 4px;
  background: var(--bg);
  font-size: 1rem;
  transition: border-color 160ms var(--ease);
}

.field textarea {
  min-height: 160px;
  resize: vertical;
  line-height: 1.6;
}

.field input:hover,
.field textarea:hover {
  border-color: var(--muted);
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--focus);
  box-shadow: inset 0 0 0 1px var(--focus);
}

fieldset.field {
  margin: 0;
  padding: 0;
  border: 0;
}

fieldset.field legend {
  padding: 0;
  margin-bottom: 12px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  position: relative;
  cursor: pointer;
}

.chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.chip span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 18px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-size: var(--t-small);
  line-height: 1.4;
  letter-spacing: 0.04em;
  transition: background-color 160ms var(--ease), border-color 160ms var(--ease), color 160ms var(--ease), transform 80ms var(--ease);
}

.chip:hover span {
  background: var(--hover-bg);
}

.chip:active span {
  transform: scale(0.97);
}

.chip input:checked + span {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.chip input:focus-visible + span {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

.steps {
  display: grid;
  gap: 40px 32px;
  margin-top: var(--stack);
  counter-reset: step;
}

.steps li {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.steps li::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--display);
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--blue);
}

.steps h3 {
  font-size: var(--t-h4);
  letter-spacing: 0.04em;
}

.steps p {
  font-size: var(--t-small);
  line-height: 1.8;
  color: var(--muted);
}

.site-footer {
  padding: 96px var(--gutter) 32px;
  background: var(--navy);
  color: #fff;
}

.site-footer__inner {
  display: grid;
  gap: 72px;
  max-width: 1440px;
  margin: 0 auto;
}

.site-footer__top {
  display: grid;
  gap: 48px;
}

.site-footer__brand {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.01em;
}

.site-footer__index {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 32px;
}

.site-footer__index a {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-inverse);
  font-family: var(--display);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: inherit;
  text-decoration: none;
}

.site-footer__index a:hover {
  color: var(--oak-light);
}

.site-footer__index span {
  opacity: 0.6;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line-inverse);
  font-size: var(--t-caption);
  opacity: 0.7;
}

.site-footer__legal a {
  color: inherit;
}

@media (min-width: 640px) {
  .site-nav .btn {
    display: inline-flex;
  }
  .fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .fields .field--wide {
    grid-column: 1 / -1;
  }
  .cta {
    padding: 64px 48px;
  }
  .results {
    padding: 48px;
  }
  .enquiry {
    padding: 40px;
  }
}

@media (min-width: 768px) {
  .hero__wordmark {
    font-size: 12.6vw;
    white-space: nowrap;
    padding-bottom: 0;
  }
  .hero__foot {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 32px;
    padding-bottom: 32px;
  }
  .features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .tiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .results ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 40px;
  }
  .stories {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .index {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 40px;
  }
}

@media (min-width: 1024px) {
  :root {
    --header-h: 88px;
  }
  .site-nav__links {
    display: flex;
  }
  .nav-menu {
    display: none;
  }
  .page-head {
    padding-top: 128px;
  }
  .intro__body,
  .lede {
    width: 62%;
    margin-left: 34%;
  }
  .split,
  .stage,
  .case__row,
  .service {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  }
  .case__row {
    grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
  }
  .stage__head,
  .service__head {
    position: sticky;
    top: calc(var(--header-h) + 32px);
    align-self: start;
  }
  .flow {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .flow li:not(:last-child)::after {
    left: auto;
    right: -28px;
    top: 50%;
    bottom: auto;
    width: 28px;
    height: 1px;
  }
  .flow li:not(:last-child)::before {
    left: auto;
    right: -28px;
    top: calc(50% - 4px);
    bottom: auto;
    border-width: 4.5px 0 4.5px 6px;
    border-color: transparent transparent transparent var(--border-strong);
  }
  .quotes-wrap .split__main {
    gap: 0;
  }
  .quotes-wrap .split > h2 {
    position: sticky;
    top: 32px;
    align-self: start;
  }
  .contact {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  }
  .hq {
    position: sticky;
    top: calc(var(--header-h) + 32px);
    align-self: start;
  }
  .site-footer__top {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  }
  .cta {
    padding: 80px 64px;
  }
}

@media (min-width: 1200px) {
  .features {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .quotes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .quotes .quote:nth-child(even) {
    transform: translateY(56px);
  }
  .quotes-wrap {
    padding-bottom: calc(var(--section) + 56px);
  }
  .steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .cta {
    padding: 96px 80px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.cc {
  position: fixed;
  left: var(--gutter);
  right: var(--gutter);
  bottom: 24px;
  z-index: 500;
  max-width: 440px;
  max-height: calc(100svh - 48px);
  overflow-y: auto;
  padding: 28px;
  background: var(--bg);
  color: var(--fg);
  border-radius: 16px;
  box-shadow: 0 24px 48px -12px rgb(15 34 65 / .28),0 2px 6px rgb(15 34 65 / .08);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 400ms var(--ease-enter),transform 400ms var(--ease-enter);
}

.cc.is-open {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.cc__title {
  font-size: var(--t-h4);
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 8px;
}

.cc__text {
  font-size: var(--t-small);
  line-height: 1.8;
  color: var(--muted);
  margin: 0;
}

.cc__prefs {
  display: none;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--border);
}

.cc.is-managing .cc__prefs {
  display: block;
}

.cc__pref {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 4px 16px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.cc__pref-name {
  font-size: .9375rem;
  font-weight: 700;
  line-height: 1.5;
}

.cc__pref-desc {
  grid-column: 1;
  font-size: var(--t-caption);
  line-height: 1.7;
  color: var(--muted);
}

.cc__pref .switch {
  grid-row: 1 / span 2;
  grid-column: 2;
}

.cc__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.cc__actions .btn {
  flex: 1 1 auto;
}

.cc__manage {
  margin-top: 14px;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
  font-size: var(--t-small);
  font-weight: 500;
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: .25em;
}

.cc__manage:hover {
  color: var(--blue-hover);
}

.cc__when-managing {
  display: none;
}

.cc.is-managing .cc__when-managing {
  display: inline-flex;
}

.cc.is-managing .cc__manage {
  display: none;
}

.switch {
  position: relative;
  display: inline-flex;
  width: 44px;
  height: 26px;
  flex: none;
}

.switch input {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
}

.switch__track {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: var(--border-strong);
  transition: background 240ms var(--ease);
}

.switch__track::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 2px rgb(15 34 65 / .24);
  transition: transform 240ms var(--ease-roll);
}

.switch input:checked + .switch__track {
  background: var(--blue);
}

.switch input:checked + .switch__track::after {
  transform: translateX(18px);
}

.switch input:disabled {
  cursor: not-allowed;
}

.switch input:disabled + .switch__track {
  opacity: .45;
}

.switch input:focus-visible + .switch__track {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

.site-footer__legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.site-footer__legal button {
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
  color: inherit;
  font-size: inherit;
  text-decoration: underline;
  text-underline-offset: .25em;
}

.nf {
  min-height: calc(100svh - var(--header-h));
  display: grid;
  align-content: center;
  gap: 32px;
  padding-top: 96px;
  padding-bottom: var(--section);
}

.nf__code {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(7rem,3rem + 20vw,22rem);
  font-weight: 300;
  line-height: .85;
  letter-spacing: -.05em;
  color: var(--navy);
}

.nf__body {
  display: grid;
  gap: 20px;
  max-width: 34em;
}

.nf__body h1 {
  font-size: var(--t-h2);
  line-height: 1.35;
}

.nf__body p {
  margin: 0;
  color: var(--muted);
}

@media (min-width:1024px) {
  .nf {
    grid-template-columns: minmax(0,7fr) minmax(0,5fr);
    align-items: end;
    gap: 64px;
  }
}

@media (prefers-reduced-motion:reduce) {
  .cc,
  .switch__track,
  .switch__track::after {
    transition: none;
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
}

.brand__mark {
  width: 1.25em;
  height: 1.25em;
  flex: none;
}

@keyframes om-rise {
  from {
    opacity: 0;
    translate: 0 28px;
  }
  to {
    opacity: 1;
    translate: 0 0;
  }
}

@keyframes om-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes om-word {
  from {
    opacity: 0;
    translate: 0 .18em;
    letter-spacing: -.02em;
  }
  to {
    opacity: 1;
    translate: 0 0;
  }
}

@media (prefers-reduced-motion:no-preference) {
  .js-reveal [data-reveal] {
    opacity: 0;
  }
  .js-reveal [data-reveal].is-in {
    animation: om-rise 900ms var(--ease-enter) both;
    animation-delay: var(--d,0ms);
  }
  .js-reveal [data-reveal="fade"].is-in {
    animation-name: om-fade;
  }
  .js-reveal .hero__video {
    animation: om-fade 1600ms var(--ease) both;
  }
  .js-reveal .hero__wordmark {
    animation: om-word 1400ms var(--ease-enter) 200ms both;
  }
  .js-reveal .hero__foot {
    animation: om-fade 900ms var(--ease) 700ms both;
  }
  .js-reveal .site-header--over {
    animation: om-fade 900ms var(--ease) 500ms both;
  }
}

@media print {
  .js-reveal [data-reveal] {
    opacity: 1!important;
    animation: none!important;
  }
}

.enquiry__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.enquiry__sent {
  padding: 16px 20px;
  border: 1px solid var(--blue);
  border-radius: 4px;
  color: var(--blue);
  font-weight: 500;
}

.hero__wordmark {
  scale: var(--grow,1);
  will-change: scale;
}

[data-reveal]:nth-child(2) {
  --d: 90ms;
}

[data-reveal]:nth-child(3) {
  --d: 180ms;
}

[data-reveal]:nth-child(4) {
  --d: 270ms;
}

[data-reveal]:nth-child(5) {
  --d: 360ms;
}

[data-reveal]:nth-child(n+6) {
  --d: 450ms;
}

.legal__body>section[data-reveal] {
  --d: 0ms;
}

.feature--diligence {
  --tone: #0F2241;
}

.feature--diligence .feature__media {
  background-image: url(assets/imagery/service-01.jpg);
}

.feature--ingress {
  --tone: #142F58;
}

.feature--ingress .feature__media {
  background-image: url(assets/imagery/service-02.jpg);
}

.feature--bizdev {
  --tone: #193C71;
}

.feature--bizdev .feature__media {
  background-image: url(assets/imagery/service-03.jpg);
}

.feature--governance {
  --tone: #1F4B8C;
}

.feature--governance .feature__media {
  background-image: url(assets/imagery/service-04.jpg);
}

.story__media--daimler {
  --tone: #DCDFDC;
}

.story__media--daimler>div {
  background-image: url(assets/imagery/case-01.jpg);
}

.story__media--bertrandt {
  --tone: #E3C8A3;
}

.story__media--bertrandt>div {
  background-image: url(assets/imagery/case-02.jpg);
}

.cta--london {
  --cta-img: url(assets/imagery/cta-london.jpg);
}

.cta--advisory {
  --cta-img: url(assets/imagery/cta-advisory.jpg);
}

.cta--methodical {
  --cta-img: url(assets/imagery/cta-methodical.jpg);
}

.cta--engagements {
  --cta-img: url(assets/imagery/cta-engagements.jpg);
}

.cta--specialists {
  --cta-img: url(assets/imagery/cta-specialists.jpg);
}

figure.story__media {
  margin: 0;
}
