:root {
  --navy: #08285c;
  --navy-deep: #061b3e;
  --blue: #4e7db8;
  --ink: #13213a;
  --muted: #657185;
  --line: #dfe4eb;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
}

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

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 24px 0;
  border-bottom: 1px solid rgba(8, 40, 92, 0.12);
}

.brand {
  display: inline-flex;
}

.brand img {
  display: block;
  width: 136px;
  height: auto;
}

nav {
  display: flex;
  gap: 34px;
  color: #435069;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

nav a {
  padding: 8px 0;
  transition: color 160ms ease;
}

nav a:hover,
nav a:focus-visible {
  color: var(--blue);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 80px;
  align-items: center;
  min-height: 650px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 88px 0 104px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 calc((100vw - 100%) / -2);
  z-index: -1;
  background-image:
    linear-gradient(rgba(8, 40, 92, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 40, 92, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 18%,
    black 82%,
    transparent 100%
  );
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 26px;
  color: var(--navy-deep);
  font-size: clamp(3.4rem, 6.3vw, 6.4rem);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.hero-intro {
  max-width: 670px;
  margin-bottom: 32px;
  color: #536078;
  font-size: clamp(1.08rem, 1.45vw, 1.28rem);
  line-height: 1.75;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.text-link span {
  font-size: 1.2rem;
  transition: transform 160ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateX(4px);
}

.path-card {
  padding: 34px 34px 20px;
  background: var(--navy-deep);
  color: var(--white);
  box-shadow: 18px 18px 0 rgba(78, 125, 184, 0.14);
}

.path-label {
  margin-bottom: 18px;
  color: #9ab4d5;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.path-card ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.path-card li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.step-number {
  color: #7d9cc5;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.path-card strong,
.path-card li span:last-child {
  display: block;
}

.path-card strong {
  margin-bottom: 8px;
}

.path-card li span:last-child {
  color: #b7c5d8;
  font-size: 0.85rem;
  line-height: 1.5;
}

.section-shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 110px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 50px;
  align-items: start;
  margin-bottom: 68px;
}

.section-heading .eyebrow {
  margin-top: 13px;
}

h2 {
  margin-bottom: 0;
  color: var(--navy-deep);
  font-size: clamp(2.1rem, 4vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

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

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

.service-grid article {
  min-height: 310px;
  padding: 34px 34px 40px 0;
}

.service-grid article + article {
  padding-left: 34px;
  border-left: 1px solid var(--line);
}

.service-grid article > span {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-grid h3 {
  margin: 68px 0 18px;
  color: var(--navy);
  font-size: 1.28rem;
}

.service-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.75;
}

.approach {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: start;
}

.approach-copy {
  padding-top: 45px;
  border-top: 3px solid var(--blue);
}

.approach-copy p {
  color: #56637a;
  font-size: 1.05rem;
  line-height: 1.8;
}

.approach-copy p + p {
  margin-top: 24px;
}

.location {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  padding: 92px max(24px, calc((100vw - 1180px) / 2));
  background: var(--navy-deep);
  color: var(--white);
}

.location h2 {
  color: var(--white);
}

.location .eyebrow {
  color: #8faed4;
}

.location > p {
  max-width: 540px;
  margin: 0;
  color: #c2cedd;
  font-size: 1.05rem;
  line-height: 1.8;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 34px 0;
}

footer img {
  width: 88px;
  height: auto;
}

footer p {
  margin: 0;
  color: #7c8798;
  font-size: 0.76rem;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 58px;
    min-height: auto;
    padding-top: 72px;
  }

  .path-card {
    max-width: 620px;
  }

  .section-heading,
  .approach,
  .location {
    grid-template-columns: 1fr;
    gap: 42px;
  }

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

  .service-grid article,
  .service-grid article + article {
    min-height: 0;
    padding: 34px 0;
    border-left: 0;
  }

  .service-grid article + article {
    border-top: 1px solid var(--line);
  }

  .service-grid h3 {
    margin-top: 32px;
  }

  .approach-copy {
    padding-top: 32px;
  }
}

@media (max-width: 640px) {
  .site-header,
  .hero,
  .section-shell,
  footer {
    width: min(100% - 32px, 1180px);
  }

  .site-header {
    align-items: flex-start;
    padding: 20px 0;
  }

  .brand img {
    width: 106px;
  }

  nav {
    gap: 14px;
    font-size: 0.7rem;
  }

  nav a:nth-child(2) {
    display: none;
  }

  .hero {
    padding: 60px 0 84px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.4rem);
  }

  .path-card {
    padding: 28px 24px 12px;
    box-shadow: 10px 10px 0 rgba(78, 125, 184, 0.14);
  }

  .section-shell {
    padding: 82px 0;
  }

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

  .section-heading .eyebrow {
    margin-top: 0;
  }

  .location {
    padding: 72px 16px;
  }

  footer {
    align-items: flex-end;
  }

  footer p {
    max-width: 190px;
    text-align: right;
    line-height: 1.5;
  }
}

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

  * {
    transition: none !important;
  }
}
