:root {
  --navy-950: #0a1b30;
  --navy-900: #10263f;
  --navy-800: #173554;
  --ink-800: #182536;
  --slate-700: #40536a;
  --slate-600: #53657a;
  --sky-600: #2f80ed;
  --sky-500: #55a9d9;
  --sky-100: #d9edf8;
  --sky-050: #eaf5fb;
  --surface: #ffffff;
  --surface-subtle: #f3f6f8;
  --line: #d7e0e7;
  --focus: #2f80ed;
  --display: "Source Serif 4", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --sans: "Segoe UI", Arial, Helvetica, sans-serif;
  --shadow: 0 18px 50px rgba(16, 38, 63, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink-800);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

img {
  max-width: 100%;
}

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

::selection {
  background: var(--sky-100);
  color: var(--navy-950);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  background: var(--navy-900);
  color: #fff;
  padding: 10px 16px;
  border-radius: 3px;
}

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

.container {
  width: min(100% - 96px, 1320px);
  margin-inline: auto;
}

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

h1,
h2 {
  color: var(--navy-900);
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(3.5rem, 5vw, 5rem);
  line-height: 0.99;
}

h2 {
  max-width: 800px;
  margin-bottom: 24px;
  font-size: clamp(2.4rem, 3.7vw, 3.7rem);
  line-height: 1.05;
}

h3 {
  color: var(--navy-900);
  font-size: 1.22rem;
  line-height: 1.3;
}

.eyebrow,
.section-kicker {
  margin-bottom: 22px;
  color: var(--sky-600);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.section {
  padding-block: 112px;
}

.section-subtle {
  background: var(--surface-subtle);
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--navy-900);
  border-radius: 4px;
  padding: 12px 28px;
  font-size: 0.97rem;
  font-weight: 650;
  line-height: 1.2;
  transition: transform 180ms ease-out, box-shadow 180ms ease-out,
    background-color 180ms ease-out, border-color 180ms ease-out;
}

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

.button-primary {
  background: var(--navy-900);
  color: #fff;
}

.button-primary:hover {
  background: var(--navy-800);
  box-shadow: 0 6px 18px rgba(16, 38, 63, 0.14);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.86);
  color: var(--navy-900);
}

.button-secondary:hover {
  background: var(--sky-050);
}

.button-light {
  border-color: #fff;
  background: #fff;
  color: var(--navy-900);
}

.button-light:hover {
  background: var(--sky-050);
  border-color: var(--sky-050);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.14);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: var(--navy-900);
  font-weight: 700;
  padding: 0 0 4px;
  box-shadow: inset 0 -1px var(--sky-500);
  cursor: pointer;
}

.text-link:hover .arrow-icon,
.card-link:hover .arrow-icon,
.service-card:hover .arrow-icon {
  transform: translateX(3px);
}

.arrow-icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform 180ms ease-out;
}

.line-icon {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: var(--sky-600);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.check-icon {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--sky-600);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

/* Header */

.site-header {
  position: relative;
  z-index: 100;
  height: 92px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
}

.header-inner {
  display: grid;
  width: min(100% - 76px, 1364px);
  height: 100%;
  margin-inline: auto;
  grid-template-columns: minmax(280px, 1fr) auto minmax(280px, 1fr);
  align-items: center;
  gap: 28px;
}

.wordmark {
  display: flex;
  width: fit-content;
  align-items: center;
  color: var(--navy-900);
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.1vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 0;
}

.corporate-logo {
  display: block;
  width: 250px;
  height: auto;
}

.wordmark-short {
  display: none;
}

.desktop-nav {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 42px;
}

.desktop-nav > a,
.desktop-nav button {
  position: relative;
  display: inline-flex;
  height: 100%;
  align-items: center;
  gap: 7px;
  border: 0;
  background: transparent;
  color: var(--ink-800);
  font-size: 0.96rem;
  font-weight: 560;
  cursor: pointer;
}

.desktop-nav > a::after,
.desktop-nav button::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  background: var(--sky-500);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease-out;
}

.desktop-nav > a:hover::after,
.desktop-nav > a.active::after,
.desktop-nav button:hover::after,
.desktop-nav button.active::after {
  transform: scaleX(1);
}

.desktop-nav button svg,
.mobile-services-toggle svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  transition: transform 180ms ease-out;
}

.services-menu {
  height: 100%;
}

.services-menu.open > button svg {
  transform: rotate(180deg);
}

.services-dropdown {
  position: absolute;
  top: 78px;
  left: 50%;
  display: grid;
  width: 330px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease-out, transform 160ms ease-out;
}

.services-menu.open .services-dropdown,
.services-menu:focus-within .services-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.services-dropdown p {
  margin: 0 8px 10px;
  color: var(--slate-600);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.services-dropdown a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 3px;
  padding: 10px 9px;
  color: var(--ink-800);
  font-size: 0.92rem;
  font-weight: 560;
}

.services-dropdown a:hover {
  background: var(--sky-050);
  color: var(--navy-900);
}

.services-dropdown svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--sky-600);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.header-cta {
  min-width: 226px;
  justify-self: end;
}

.menu-toggle,
.mobile-nav {
  display: none;
}

/* Home hero */

.home-hero {
  position: relative;
  min-height: 808px;
  overflow: hidden;
  background: #fff;
}

.hero-art {
  z-index: 0;
  object-fit: cover;
  object-position: center center;
}

.hero-fade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.98) 36%, rgba(255, 255, 255, 0.72) 49%, rgba(255, 255, 255, 0) 64%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 52px;
}

.hero-content h1 {
  max-width: 670px;
  margin-bottom: 22px;
  font-size: clamp(3.6rem, 5.15vw, 4.75rem);
}

.hero-intro {
  max-width: 575px;
  margin-bottom: 25px;
  color: var(--slate-700);
  font-size: 1.17rem;
  line-height: 1.55;
}

.trust-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 48px 0 0;
  color: var(--slate-700);
  font-weight: 560;
}

.trust-line > span {
  display: inline-block;
  width: 30px;
  height: 2px;
  background: var(--sky-600);
}

.hero-service-row {
  display: grid;
  width: min(100%, 610px);
  margin-top: 30px;
  grid-template-columns: repeat(4, 1fr);
}

.hero-service-row a {
  display: flex;
  min-height: 78px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-right: 1px solid var(--line);
  color: var(--ink-800);
  font-size: 0.78rem;
  font-weight: 560;
  text-align: center;
  transition: color 180ms ease-out, background-color 180ms ease-out;
}

.hero-service-row a:first-child {
  border-left: 1px solid var(--line);
}

.hero-service-row a:hover {
  background: rgba(234, 245, 251, 0.72);
  color: var(--navy-900);
}

.hero-service-row .line-icon {
  width: 28px;
  height: 28px;
}

/* Home sections */

.split-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.75fr);
  align-items: start;
  gap: 9vw;
}

.split-copy h2 {
  margin-bottom: 0;
}

.lead-copy {
  color: var(--slate-700);
  font-size: 1.1rem;
  line-height: 1.75;
}

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

.section-heading-row {
  display: grid;
  margin-bottom: 54px;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.55fr);
  align-items: end;
  gap: 64px;
}

.section-heading-row h2,
.section-heading-row p {
  margin-bottom: 0;
}

.section-heading-row > p {
  color: var(--slate-600);
  font-size: 1.02rem;
  line-height: 1.7;
}

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: #fff;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 36px 30px 30px;
  border-right: 1px solid var(--line);
  transition: background-color 180ms ease-out, transform 180ms ease-out,
    box-shadow 180ms ease-out;
}

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

.service-card:hover {
  z-index: 1;
  background: var(--sky-050);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.service-card .line-icon {
  width: 38px;
  height: 38px;
  margin-bottom: 34px;
}

.service-card h3 {
  margin-bottom: 14px;
  font-size: 1.32rem;
}

.service-card p {
  margin-bottom: 24px;
  color: var(--slate-600);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--navy-900);
  font-size: 0.88rem;
  font-weight: 700;
}

.reasons-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
  gap: 10vw;
}

.reasons-heading {
  position: sticky;
  top: 48px;
  align-self: start;
}

.reasons-heading > p:not(.section-kicker) {
  max-width: 540px;
  margin-bottom: 28px;
  color: var(--slate-600);
  font-size: 1.04rem;
}

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

.reason-list > div {
  display: grid;
  min-height: 94px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 48px 1fr;
  align-items: start;
  gap: 18px;
}

.reason-list span {
  color: var(--sky-600);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.reason-list p {
  margin: 0;
  color: var(--ink-800);
  font-size: 1.02rem;
}

.dark-section {
  background: var(--navy-900);
  color: #dce6ef;
}

.dark-section h2,
.dark-section h3 {
  color: #fff;
}

.dark-section .section-kicker {
  color: #74c1ec;
}

.light-heading > p {
  color: #b8c8d6;
}

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

.process-grid article {
  position: relative;
  padding: 18px 28px 8px 0;
  border-top: 1px solid var(--line);
}

.process-grid article:not(:last-child) {
  margin-right: 28px;
}

.process-grid article::before {
  position: absolute;
  top: -4px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sky-600);
  content: "";
}

.process-grid article > span {
  display: block;
  margin-bottom: 30px;
  color: var(--sky-600);
  font-size: 0.78rem;
  font-weight: 700;
}

.process-grid article p {
  margin-bottom: 0;
  color: var(--slate-600);
}

.process-grid-dark article {
  border-color: rgba(255, 255, 255, 0.25);
}

.process-grid-dark article p {
  color: #b8c8d6;
}

.process-grid-dark article > span {
  color: #74c1ec;
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  align-items: center;
  gap: 10vw;
}

.why-quote {
  position: relative;
  min-height: 470px;
  padding: 78px 58px;
  background: var(--surface-subtle);
  overflow: hidden;
}

.why-quote::after {
  position: absolute;
  right: -50px;
  bottom: -70px;
  width: 260px;
  height: 260px;
  border: 1px solid var(--sky-100);
  border-radius: 50%;
  content: "";
}

.why-quote > span {
  display: block;
  height: 64px;
  color: var(--sky-500);
  font-family: var(--display);
  font-size: 6rem;
  line-height: 1;
}

.why-quote blockquote {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--navy-900);
  font-family: var(--display);
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  line-height: 1.16;
}

.why-grid > div:last-child > p:not(.section-kicker) {
  color: var(--slate-600);
  font-size: 1.04rem;
}

.plain-check-list {
  display: grid;
  margin: 30px 0;
  padding: 0;
  gap: 14px;
  list-style: none;
}

.plain-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.final-cta {
  padding-block: 82px;
  background: var(--navy-900);
  color: #dce6ef;
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.final-cta .eyebrow {
  color: #74c1ec;
}

.final-cta h2 {
  max-width: 860px;
  margin-bottom: 14px;
  color: #fff;
}

.final-cta p:last-child {
  max-width: 720px;
  margin-bottom: 0;
  color: #b8c8d6;
  font-size: 1.04rem;
}

.final-cta .button {
  flex: 0 0 auto;
}

/* Inner pages */

.page-hero {
  position: relative;
  padding-block: 112px 104px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(234, 245, 251, 0.65), transparent 52%),
    #fff;
  overflow: hidden;
}

.page-hero::after {
  position: absolute;
  right: -110px;
  bottom: -230px;
  width: 520px;
  height: 520px;
  border: 1px solid var(--sky-100);
  border-radius: 50%;
  content: "";
}

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

.page-hero h1 {
  max-width: 920px;
  margin-bottom: 26px;
}

.page-intro {
  max-width: 720px;
  margin-bottom: 30px;
  color: var(--slate-700);
  font-size: 1.18rem;
  line-height: 1.65;
}

.service-hero-mark {
  position: relative;
  display: grid;
  width: 260px;
  height: 260px;
  place-items: center;
  justify-self: end;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
}

.service-hero-mark::before,
.service-hero-mark::after {
  position: absolute;
  background: var(--sky-100);
  content: "";
}

.service-hero-mark::before {
  width: 1px;
  height: 320px;
}

.service-hero-mark::after {
  width: 320px;
  height: 1px;
}

.service-hero-mark .line-icon {
  position: relative;
  z-index: 2;
  width: 76px;
  height: 76px;
}

.mark-orbit {
  position: absolute;
  width: 164px;
  height: 164px;
  border: 1px solid var(--sky-500);
  border-radius: 50%;
}

.mark-line {
  position: absolute;
  width: 210px;
  height: 45px;
  border-top: 1px dashed var(--sky-500);
  border-bottom: 1px dashed var(--sky-100);
  transform: rotate(-28deg);
}

.narrow-left > h2 {
  max-width: 780px;
}

.check-grid {
  display: grid;
  margin-top: 48px;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.check-item {
  display: flex;
  min-height: 98px;
  align-items: flex-start;
  gap: 15px;
  padding: 28px;
  background: #fff;
}

.check-item p {
  margin: 0;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.help-card {
  min-height: 270px;
  padding: 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.help-card > span {
  display: block;
  margin-bottom: 32px;
  color: var(--sky-600);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.help-card h3 {
  margin-bottom: 14px;
}

.help-card p {
  margin-bottom: 0;
  color: var(--slate-600);
}

.two-column-list {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 10vw;
}

.two-column-list > div:first-child > p:last-child {
  max-width: 560px;
  color: #b8c8d6;
}

.dark-check-list {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.dark-check-list > div {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.dark-check-list p {
  margin: 0;
}

.dark-check-list .check-icon {
  stroke: #74c1ec;
}

.outcome-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.72fr);
  align-items: start;
  gap: 9vw;
}

.stacked-list {
  display: grid;
  margin-top: 40px;
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stacked-list p {
  display: flex;
  margin: 0;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  background: #fff;
  font-weight: 560;
}

.audience-panel {
  padding: 42px;
  background: var(--surface-subtle);
}

.audience-panel h3 {
  margin-bottom: 24px;
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 500;
}

.audience-panel ul {
  display: grid;
  margin: 0;
  padding-left: 20px;
  gap: 10px;
  color: var(--slate-700);
}

/* Services overview */

.overview-mark {
  grid-template-columns: repeat(2, 62px);
  grid-template-rows: repeat(2, 62px);
  gap: 10px;
}

.overview-mark > span {
  border: 1px solid var(--sky-500);
  background: rgba(234, 245, 251, 0.7);
}

.overview-mark > span:nth-child(1) {
  background: var(--navy-900);
  border-color: var(--navy-900);
}

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

.overview-mark > span:nth-child(3) {
  transform: rotate(45deg) scale(0.72);
}

.service-detail-list {
  display: grid;
}

.service-detail {
  display: grid;
  padding-block: 62px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 110px minmax(0, 1fr) minmax(270px, 0.54fr);
  gap: 48px;
}

.service-detail:first-child {
  padding-top: 0;
}

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

.service-detail-number {
  display: flex;
  flex-direction: column;
  gap: 28px;
  color: var(--sky-600);
  font-size: 0.76rem;
  font-weight: 700;
}

.service-detail-number .line-icon {
  width: 48px;
  height: 48px;
}

.service-detail-copy h2 {
  max-width: 740px;
  font-size: clamp(2.2rem, 3vw, 3.2rem);
}

.service-detail-copy > p:not(.section-kicker) {
  max-width: 720px;
  color: var(--slate-600);
  font-size: 1.02rem;
}

.service-detail-copy .text-link {
  margin-top: 12px;
}

.service-detail-listing {
  padding: 28px;
  background: var(--surface-subtle);
}

.service-detail-listing > p {
  margin-bottom: 14px;
  color: var(--navy-900);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-detail-listing ul {
  display: grid;
  margin: 0;
  padding-left: 18px;
  gap: 9px;
  color: var(--slate-700);
}

.engagement-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.engagement-grid article {
  min-height: 260px;
  padding: 30px;
  background: #fff;
}

.engagement-grid article > span {
  display: block;
  margin-bottom: 36px;
  color: var(--sky-600);
  font-size: 0.76rem;
  font-weight: 700;
}

.engagement-grid article p {
  margin: 0;
  color: var(--slate-600);
}

/* About */

.about-stat {
  display: grid;
  width: 280px;
  height: 280px;
  align-content: center;
  justify-items: center;
  justify-self: end;
  padding: 34px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
  text-align: center;
}

.about-stat strong {
  color: var(--navy-900);
  font-family: var(--display);
  font-size: 5.4rem;
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 1;
}

.about-stat span {
  max-width: 150px;
  color: var(--slate-600);
  font-size: 0.9rem;
  font-weight: 620;
  line-height: 1.4;
}

.leadership-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1fr);
  align-items: center;
  gap: 9vw;
}

.leadership-portrait {
  width: min(100%, 430px);
  margin: 0;
  justify-self: start;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.leadership-portrait img {
  display: block;
  width: 100%;
  height: auto;
}

.leadership-grid > div:last-child > p:last-child {
  margin-bottom: 0;
  color: var(--slate-600);
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.approach-grid article {
  min-height: 300px;
  padding: 30px 26px;
  background: #fff;
}

.approach-grid article > span {
  display: block;
  margin-bottom: 38px;
  color: var(--sky-600);
  font-size: 0.74rem;
  font-weight: 700;
}

.approach-grid article p {
  margin: 0;
  color: var(--slate-600);
}

.numberless-grid article > h3:first-child {
  margin-top: 22px;
}

.help-grid.numberless-grid .help-card {
  min-height: 235px;
}

.engagement-grid.numberless-grid article,
.approach-grid.numberless-grid article {
  min-height: 240px;
}

.mission-section {
  scroll-margin-top: 20px;
}

.mission-grid {
  display: grid;
  margin-bottom: 64px;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
  align-items: end;
  gap: 9vw;
}

.mission-grid h2 {
  margin: 0;
}

.values-heading {
  margin-bottom: 24px;
}

.mission-vision {
  margin: 0;
  color: #dce6ef;
  font-family: var(--display);
  font-size: 1.65rem;
  line-height: 1.35;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.18);
}

.value-grid article {
  min-height: 230px;
  padding: 30px;
  background: var(--navy-900);
}

.value-grid .check-icon {
  margin-bottom: 28px;
  stroke: #74c1ec;
}

.value-grid article p {
  margin: 0;
  color: #b8c8d6;
}

/* FAQ */

.faq-hero h1,
.assessment-hero h1,
.legal-hero h1 {
  max-width: 900px;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  gap: 9vw;
}

.faq-layout aside {
  position: sticky;
  top: 48px;
  align-self: start;
}

.faq-layout aside h2 {
  font-size: clamp(2.2rem, 3.2vw, 3.2rem);
}

.faq-layout aside > p:last-child {
  color: var(--slate-600);
}

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

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

.faq-list summary {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--navy-900);
  font-size: 1.08rem;
  font-weight: 650;
  list-style: none;
  cursor: pointer;
}

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

.faq-plus {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.faq-plus::before,
.faq-plus::after {
  position: absolute;
  top: 10px;
  left: 3px;
  width: 16px;
  height: 2px;
  background: var(--sky-600);
  content: "";
  transition: transform 180ms ease-out;
}

.faq-plus::after {
  transform: rotate(90deg);
}

.faq-list details[open] .faq-plus::after {
  transform: rotate(0);
}

.faq-list details > div {
  padding: 0 62px 26px 0;
  color: var(--slate-600);
}

.faq-list details > div p {
  margin: 0;
}

/* Assessment and legal */

.assessment-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(500px, 1fr);
  align-items: start;
  gap: 8vw;
}

.assessment-layout h2 {
  font-size: clamp(2.3rem, 3.3vw, 3.3rem);
}

.assessment-topics {
  display: grid;
  margin-top: 34px;
  gap: 16px;
}

.assessment-topics p {
  display: flex;
  margin: 0;
  align-items: flex-start;
  gap: 12px;
  color: var(--slate-700);
}

.direct-contact {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.direct-contact a {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--navy-900);
  font-size: 1.12rem;
  font-weight: 700;
  box-shadow: inset 0 -1px var(--sky-500);
}

.direct-contact > p:last-child {
  color: var(--slate-600);
  font-size: 0.9rem;
}

.assessment-layout + * .process-grid {
  grid-template-columns: repeat(3, 1fr);
}

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

.legal-copy h2 {
  margin-top: 52px;
  font-family: var(--sans);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.legal-copy p {
  color: var(--slate-700);
  font-size: 1rem;
  line-height: 1.8;
}

.legal-copy a {
  color: var(--navy-900);
  font-weight: 700;
  box-shadow: inset 0 -1px var(--sky-500);
}

.legal-note {
  padding: 20px 22px;
  border-left: 3px solid var(--sky-500);
  background: var(--sky-050);
}

.legal-updated {
  margin-top: 52px;
  font-size: 0.86rem !important;
}

/* Footer */

.site-footer {
  background: var(--navy-950);
  color: #aebdca;
}

.footer-lead {
  display: flex;
  padding-block: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-lead > div > p:last-child {
  max-width: 580px;
  margin-bottom: 0;
}

.footer-wordmark {
  margin-bottom: 12px;
  color: #fff;
  font-family: var(--display);
  font-size: 2rem;
  letter-spacing: -0.025em;
}

.footer-logo-link {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 11px;
  border-radius: 5px;
  background: #fff;
  line-height: 0;
}

.footer-corporate-logo {
  display: block;
  width: 260px;
  height: auto;
}

.footer-grid {
  display: grid;
  padding-block: 62px;
  grid-template-columns: 1.2fr 1.1fr 1.25fr 0.65fr;
  gap: 56px;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-grid p {
  margin: 0;
}

.footer-grid > div:nth-child(3) p:last-child {
  max-width: 290px;
  margin-top: 6px;
  font-size: 0.88rem;
}

.footer-heading {
  margin-bottom: 10px !important;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  padding-block: 24px;
  justify-content: space-between;
  gap: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.78rem;
}

.footer-bottom p {
  margin: 0;
}

/* Forms */

.assessment-form {
  padding: 42px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

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

.assessment-form label {
  display: grid;
  gap: 8px;
  color: var(--ink-800);
  font-size: 0.9rem;
  font-weight: 650;
}

.assessment-form label > span,
.consent-row span > span {
  color: #b43b3b;
}

.assessment-form input,
.assessment-form select,
.assessment-form textarea {
  width: 100%;
  border: 1px solid #bfcbd5;
  border-radius: 3px;
  background: #fff;
  color: var(--ink-800);
  padding: 12px 13px;
  font-weight: 400;
}

.assessment-form textarea {
  resize: vertical;
}

.assessment-form input:hover,
.assessment-form select:hover,
.assessment-form textarea:hover {
  border-color: var(--slate-600);
}

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

.consent-row {
  display: flex !important;
  margin: 28px 0 24px;
  grid-template-columns: auto 1fr !important;
  align-items: flex-start;
  gap: 12px !important;
  color: var(--slate-700) !important;
  font-weight: 400 !important;
}

.consent-row input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.form-note {
  margin: 14px 0 0;
  color: var(--slate-600);
  font-size: 0.8rem;
}

.form-success {
  display: flex;
  min-height: 340px;
  align-items: flex-start;
  gap: 24px;
  padding: 48px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.form-success > span {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--sky-050);
  color: var(--sky-600);
  font-size: 1.5rem;
}

.form-success h2 {
  font-size: 2.4rem;
}

/* Responsive */

@media (max-width: 1180px) {
  .container {
    width: min(100% - 64px, 1080px);
  }

  .header-inner {
    width: calc(100% - 48px);
    grid-template-columns: minmax(230px, 1fr) auto minmax(220px, 1fr);
    gap: 20px;
  }

  .corporate-logo {
    width: 220px;
  }

  .desktop-nav {
    gap: 26px;
  }

  .header-cta {
    min-width: 206px;
    padding-inline: 20px;
  }

  .hero-content h1 {
    font-size: 3.75rem;
  }

  .hero-fade {
    background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.98) 42%, rgba(255, 255, 255, 0.78) 55%, rgba(255, 255, 255, 0) 74%);
  }

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

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

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

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

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

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

@media (max-width: 900px) {
  .site-header {
    height: 76px;
  }

  .header-inner {
    display: flex;
    width: calc(100% - 40px);
    justify-content: space-between;
  }

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

  .menu-toggle {
    display: flex;
    width: 46px;
    height: 46px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1px solid var(--line);
    border-radius: 3px;
    background: #fff;
  }

  .menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--navy-900);
    transition: transform 180ms ease-out;
  }

  .menu-toggle.open span:first-child {
    transform: translateY(4.5px) rotate(45deg);
  }

  .menu-toggle.open span:last-child {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .mobile-nav {
    position: absolute;
    top: 76px;
    right: 0;
    left: 0;
    display: grid;
    max-height: 0;
    padding: 0 24px;
    background: #fff;
    box-shadow: 0 18px 40px rgba(16, 38, 63, 0.12);
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transition: max-height 220ms ease-out, padding 220ms ease-out, opacity 160ms ease-out;
  }

  .mobile-nav.open {
    max-height: calc(100vh - 76px);
    padding-block: 18px 28px;
    opacity: 1;
    overflow-y: auto;
    pointer-events: auto;
  }

  .mobile-nav > a:not(.button),
  .mobile-services-toggle {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: space-between;
    border: 0;
    border-bottom: 1px solid var(--line);
    background: transparent;
    color: var(--ink-800);
    font-weight: 650;
  }

  .mobile-services-toggle svg {
    transition: transform 180ms ease-out;
  }

  .mobile-services-toggle[aria-expanded="true"] svg {
    transform: rotate(180deg);
  }

  .mobile-services {
    display: grid;
    max-height: 0;
    padding-left: 18px;
    overflow: hidden;
    transition: max-height 220ms ease-out;
  }

  .mobile-services.open {
    max-height: 300px;
  }

  .mobile-services a {
    padding: 9px 0;
    color: var(--slate-700);
    font-size: 0.92rem;
  }

  .mobile-nav .button {
    margin-top: 20px;
  }

  .home-hero {
    min-height: auto;
    padding-bottom: 70px;
  }

  .hero-art {
    opacity: 0.34;
    object-position: 62% center;
  }

  .hero-fade {
    background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.96) 62%, rgba(255, 255, 255, 0.54) 100%);
  }

  .hero-content {
    padding-top: 70px;
  }

  .hero-content h1 {
    max-width: 650px;
    font-size: clamp(3rem, 8vw, 4.2rem);
  }

  .split-copy,
  .section-heading-row,
  .reasons-grid,
  .why-grid,
  .page-hero-grid,
  .two-column-list,
  .outcome-grid,
  .leadership-grid,
  .mission-grid,
  .faq-layout,
  .assessment-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .reasons-heading {
    position: static;
  }

  .faq-layout aside {
    position: static;
  }

  .service-detail {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 34px;
  }

  .service-detail-listing {
    grid-column: 2;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 0;
  }

  .why-quote {
    min-height: 360px;
  }

  .service-hero-mark {
    display: none;
  }

  .about-stat {
    justify-self: start;
  }

  .leadership-portrait {
    width: min(100%, 430px);
  }

  .assessment-layout {
    max-width: 760px;
  }

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

@media (max-width: 640px) {
  .container {
    width: calc(100% - 40px);
  }

  .wordmark-full {
    display: none;
  }

  .wordmark-short {
    display: inline;
  }

  .wordmark {
    font-size: 1.75rem;
  }

  .corporate-logo {
    width: 185px;
  }

  .footer-corporate-logo {
    width: 220px;
  }

  .section {
    padding-block: 78px;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  .home-hero {
    padding-bottom: 52px;
  }

  .hero-content {
    padding-top: 54px;
  }

  .hero-content h1 {
    font-size: clamp(2.75rem, 13vw, 3.45rem);
  }

  .hero-intro {
    font-size: 1.04rem;
  }

  .button-row {
    display: grid;
  }

  .button-row .button {
    width: 100%;
  }

  .trust-line {
    align-items: flex-start;
    margin-top: 38px;
    font-size: 0.9rem;
  }

  .trust-line > span {
    margin-top: 10px;
  }

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

  .hero-service-row a:nth-child(2) {
    border-right: 0;
  }

  .hero-service-row a:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .service-card-grid,
  .check-grid,
  .help-grid,
  .process-grid,
  .footer-grid,
  .form-grid,
  .engagement-grid,
  .approach-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .service-detail {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .service-detail-number {
    flex-direction: row;
    align-items: center;
  }

  .service-detail-listing {
    grid-column: auto;
  }

  .service-card,
  .service-card:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .process-grid {
    gap: 36px;
  }

  .process-grid article:not(:last-child) {
    margin-right: 0;
  }

  .why-quote {
    min-height: 330px;
    padding: 52px 34px;
  }

  .final-cta-inner,
  .footer-lead,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .final-cta .button,
  .footer-lead .button {
    width: 100%;
  }

  .page-hero {
    padding-block: 78px;
  }

  .page-hero h1 {
    font-size: 3rem;
  }

  .about-stat {
    width: 230px;
    height: 230px;
  }

  .faq-list summary {
    min-height: 76px;
    font-size: 1rem;
  }

  .faq-list details > div {
    padding-right: 0;
  }

  .check-item,
  .help-card,
  .audience-panel,
  .assessment-form,
  .form-success {
    padding: 28px 24px;
  }

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

  .form-success {
    flex-direction: column;
  }

  .footer-grid {
    gap: 42px;
  }
}

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

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


/* Standalone package additions */
:root {
  --sans: "Segoe UI", Arial, Helvetica, sans-serif;
}

.hero-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.mobile-nav [aria-current="page"]:not(.button),
.mobile-services [aria-current="page"] {
  color: var(--sky-600);
}

.form-hp {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.required-note {
  margin: 0 0 22px;
  color: var(--slate-600);
  font-size: 0.8rem;
}

.required-note span {
  color: #b43b3b;
}

.form-note a,
.legal-copy a {
  color: var(--navy-900);
  text-decoration: underline;
  text-decoration-color: var(--sky-500);
  text-underline-offset: 3px;
}

.status-hero {
  min-height: 620px;
  display: flex;
  align-items: center;
}

.status-hero .page-intro {
  max-width: 720px;
}

@media (max-width: 900px) {
  html.no-js .menu-toggle {
    display: none;
  }

  html.no-js .mobile-nav {
    position: static;
    display: grid;
    max-height: none;
    padding: 18px 24px 28px;
    opacity: 1;
    overflow: visible;
    pointer-events: auto;
  }

  html.no-js .mobile-services {
    max-height: 300px;
  }
}

@media print {
  .site-header,
  .site-footer,
  .final-cta,
  .button,
  .hero-art,
  .hero-fade {
    display: none !important;
  }

  .section,
  .page-hero {
    padding-block: 28px;
  }

  body {
    color: #000;
  }
}
