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

.service-index-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  padding: clamp(30px, 4vw, 52px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  transition: color 220ms ease, background-color 220ms ease, transform 220ms ease;
}

.service-index-card:hover {
  color: var(--white);
  background: var(--blue);
  transform: translateY(-6px);
}

.service-index-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}

.service-index-card__top span {
  color: var(--blue);
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 750;
}

.service-index-card__top img {
  width: 38px;
  height: 38px;
}

.service-index-card h3 {
  margin: auto 0 16px;
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 560;
  line-height: 1.1;
}

.service-index-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.service-index-card small {
  margin-top: 28px;
  color: var(--blue);
  font-family: var(--font-en);
  font-size: 9px;
  font-weight: 750;
  text-transform: uppercase;
}

.service-index-card:hover p,
.service-index-card:hover small,
.service-index-card:hover .service-index-card__top span {
  color: rgba(255, 255, 255, 0.72);
}

.service-index-card:hover img {
  filter: brightness(0) invert(1);
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.metric-strip article {
  min-height: 190px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metric-strip span {
  color: var(--blue);
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 750;
}

.metric-strip strong {
  display: block;
  margin-top: 54px;
  font-size: 23px;
  font-weight: 570;
  line-height: 1.25;
}

.metric-strip small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 11px;
}

.strategy-profile {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1.35fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.strategy-profile__intro {
  display: flex;
  flex-direction: column;
  min-height: 480px;
  padding: clamp(34px, 5vw, 68px);
  color: var(--white);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: var(--blue-deep);
}

.strategy-profile__intro img {
  width: 86px;
  opacity: 0.82;
}

.strategy-profile__intro h3 {
  margin: auto 0 18px;
  font-size: clamp(38px, 4.5vw, 64px);
  font-weight: 520;
  line-height: 1.05;
}

.strategy-profile__intro p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.strategy-profile__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.strategy-profile__facts article {
  min-height: 240px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.strategy-profile__facts span {
  color: var(--blue);
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 750;
}

.strategy-profile__facts h4 {
  margin: 66px 0 10px;
  font-size: 22px;
  font-weight: 580;
}

.strategy-profile__facts p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr);
  gap: clamp(50px, 9vw, 150px);
}

.article-aside {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  align-self: start;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.article-body {
  max-width: 860px;
}

.article-body h2 {
  margin: 0 0 32px;
  font-size: clamp(38px, 4.5vw, 64px);
  font-weight: 540;
  line-height: 1.12;
}

.article-body h3 {
  margin: 64px 0 20px;
  font-size: 28px;
  font-weight: 580;
}

.article-body p {
  margin: 0 0 24px;
  color: #47536a;
  font-size: 17px;
  line-height: 2;
}

.article-callout {
  margin: 58px 0;
  padding: 34px;
  color: var(--white);
  background: var(--blue-deep);
}

.article-callout p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 1000px) {
  .service-index-grid {
    grid-template-columns: 1fr 1fr;
  }

  .metric-strip {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .route-page .page-hero {
    height: 86svh;
  }

  .service-index-grid,
  .strategy-profile,
  .strategy-profile__facts,
  .article-shell {
    grid-template-columns: 1fr;
  }

  .service-index-card {
    min-height: 330px;
  }

  .metric-strip {
    grid-template-columns: 1fr;
  }

  .strategy-profile__intro {
    min-height: 390px;
  }

  .article-aside {
    position: static;
  }
}

/* Reference-aligned route pages -------------------------------------------------
   These overrides deliberately stay under .route-page so the homepage retains
   its full-height campaign hero and original navigation treatment. */

.route-page {
  --route-gutter: 42px;
  --route-shell: 1340px;
}

.route-page .shell {
  width: min(calc(100% - (var(--route-gutter) * 2)), var(--route-shell));
}

.route-page .page-hero {
  height: 360px;
  min-height: 360px;
  margin-top: var(--header-height);
  overflow: hidden;
}

.route-page .page-hero__media {
  inset: 0;
  transform: none;
}

.route-page .page-hero__art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: none;
}

.route-page .page-hero__veil {
  background-color: rgba(2, 8, 24, 0.13);
}

.route-page .page-hero__content {
  display: flex;
  align-items: flex-end;
  height: 100%;
  padding: 0;
}

.route-page .page-hero__copy {
  position: relative;
  width: min(75%, 1000px);
  max-width: none;
  min-height: 164px;
  padding: 50px 32px 28px;
  color: var(--ink);
  background-color: var(--white);
}

.route-page .page-hero__copy .eyebrow {
  position: absolute;
  top: -48px;
  left: 0;
  display: flex;
  align-items: center;
  min-width: 248px;
  min-height: 48px;
  margin: 0;
  padding: 0 28px;
  color: var(--white);
  background-color: var(--blue-deep);
  font-size: 11px;
}

.route-page .page-hero__copy h1 {
  max-width: 930px;
  font-size: clamp(40px, 4.25vw, 60px);
  font-weight: 550;
  line-height: 1.06;
}

.route-page .page-section {
  padding-block: 84px;
}

.route-page .page-heading {
  display: block;
  margin-bottom: 48px;
}

.route-page .page-heading__label {
  margin: 0 0 26px;
  font-size: 11px;
}

.route-page .page-heading h2 {
  max-width: 1040px;
  font-size: clamp(40px, 4.3vw, 60px);
  line-height: 1.08;
}

.route-page .page-heading__body {
  max-width: 780px;
  margin: 24px 0 0;
  font-size: 15px;
  line-height: 1.9;
}

.route-page .lens-card,
.route-page .value-card {
  min-height: 288px;
  padding: 30px 32px;
}

.route-page .lens-card h3,
.route-page .value-card h3 {
  margin: 64px 0 16px;
  font-size: clamp(25px, 2.3vw, 34px);
}

.route-page .value-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.route-page[data-route="wealth-management"] #section-1 .value-grid--four,
.route-page[data-route="funds-management"] #section-1 .value-grid--four {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.route-page[data-route="wealth-management"] #section-1 .value-card,
.route-page[data-route="funds-management"] #section-1 .value-card {
  min-height: 250px;
}

.route-page .service-index-grid:has(> :nth-child(2):last-child) {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.route-page .service-index-card {
  min-height: 390px;
  padding: 34px;
}

.route-page .service-index-card h3 {
  font-size: clamp(30px, 3vw, 44px);
}

.route-page .metric-strip article {
  min-height: 172px;
  padding: 26px 28px;
}

.route-page .metric-strip strong {
  margin-top: 42px;
  font-size: clamp(28px, 2.8vw, 40px);
}

.route-page .process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.route-page .process-step {
  display: flex;
  flex-direction: column;
  min-height: 270px;
  padding: 30px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.route-page .process-step h3 {
  margin-top: 72px;
  font-size: clamp(25px, 2.3vw, 34px);
}

.route-page .process-step p {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.8;
}

.route-page[data-route$="-strategy"] .strategy-profile {
  display: block;
}

.route-page[data-route$="-strategy"] .strategy-profile__intro {
  min-height: 248px;
  padding: 38px 42px;
  border-right-color: rgba(255, 255, 255, 0.2);
}

.route-page[data-route$="-strategy"] .strategy-profile__intro img {
  width: 64px;
}

.route-page[data-route$="-strategy"] .strategy-profile__intro h3 {
  margin-top: auto;
  font-size: clamp(38px, 4vw, 56px);
}

.route-page[data-route$="-strategy"] .strategy-profile__facts {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.route-page[data-route$="-strategy"] .strategy-profile__facts article {
  min-height: 220px;
  padding: 30px;
}

.route-page[data-route$="-strategy"] .strategy-profile__facts h4 {
  margin: 54px 0 10px;
  font-size: 21px;
}

@media (max-width: 1100px) {
  .route-page {
    --route-gutter: 28px;
  }

  .route-page .service-index-grid,
  .route-page .value-grid--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .route-page[data-route$="-strategy"] .strategy-profile__facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 900px) {
  .route-page {
    --route-gutter: 20px;
  }

  .route-page .menu-toggle img {
    filter: none;
  }

  .route-page .mobile-menu {
    color: var(--ink);
    background-color: var(--white);
  }

  .route-page .mobile-menu__nav {
    padding-top: 8px;
    padding-bottom: 18px;
  }

  .route-page .mobile-menu__nav > a,
  .route-page .mobile-nav-group__link {
    grid-template-columns: 1fr auto;
    min-height: 58px;
    padding: 14px 0;
    border-bottom-color: var(--line);
    font-size: 23px;
    line-height: 1.2;
  }

  .route-page .mobile-menu__nav > a > span,
  .route-page .mobile-nav-group__link > span {
    display: none;
  }

  .route-page .mobile-nav-group__trigger::after {
    color: var(--blue);
  }

  .route-page .mobile-nav-sub {
    grid-template-columns: 1fr;
    border-bottom-color: var(--line);
  }

  .route-page .mobile-nav-sub a {
    min-height: 54px;
    padding: 13px 18px;
    color: var(--ink);
    border-right: 0;
    border-bottom-color: var(--line);
    font-size: 15px;
  }

  .route-page .mobile-nav-sub a small,
  .route-page .mobile-menu__nav span,
  .route-page .mobile-menu__nav > a small,
  .route-page .mobile-nav-group__link small {
    color: var(--muted);
  }

  .route-page .mobile-nav-group:first-of-type .mobile-nav-sub a:nth-child(3) {
    color: var(--blue-deep);
    border-left: 3px solid var(--blue);
    font-weight: 650;
  }

  .route-page .mobile-nav-group:first-of-type .mobile-nav-sub a:nth-child(n + 4):nth-child(-n + 7) {
    min-height: 50px;
    padding-left: 42px;
    background-color: var(--blue-mist);
    font-size: 14px;
  }

  .route-page .mobile-menu__foot {
    color: var(--muted);
  }

  .route-page .page-hero {
    height: 270px;
    min-height: 270px;
  }

  .route-page .page-hero__copy {
    width: min(88%, 720px);
    min-height: 132px;
    padding: 44px 22px 22px;
  }

  .route-page .page-hero__copy .eyebrow {
    top: -42px;
    min-width: 200px;
    min-height: 42px;
    padding-inline: 20px;
    font-size: 10px;
  }

  .route-page .page-hero__copy h1 {
    font-size: clamp(34px, 7.5vw, 46px);
    line-height: 1.08;
  }

  .route-page .page-section {
    padding-block: 64px;
  }

  .route-page .page-heading h2 {
    font-size: clamp(36px, 7.5vw, 52px);
  }
}

@media (max-width: 640px) {
  .route-page .page-hero__copy {
    width: calc(100% - 24px);
  }

  .route-page .page-hero__copy h1 {
    font-size: clamp(32px, 9vw, 40px);
  }

  .route-page .page-section {
    padding-block: 56px;
  }

  .route-page .page-heading {
    margin-bottom: 36px;
  }

  .route-page .page-heading__label {
    margin-bottom: 18px;
  }

  .route-page .page-heading h2 {
    font-size: clamp(34px, 9vw, 44px);
  }

  .route-page .service-index-grid,
  .route-page .service-index-grid:has(> :nth-child(2):last-child),
  .route-page .value-grid--four,
  .route-page[data-route="wealth-management"] #section-1 .value-grid--four,
  .route-page[data-route="funds-management"] #section-1 .value-grid--four,
  .route-page .process-list,
  .route-page[data-route$="-strategy"] .strategy-profile__facts {
    grid-template-columns: 1fr;
  }

  .route-page .service-index-card {
    min-height: 310px;
    padding: 28px;
  }

  .route-page .metric-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .route-page .metric-strip article {
    min-height: 154px;
    padding: 22px;
  }

  .route-page .metric-strip strong {
    margin-top: 34px;
    font-size: 27px;
  }

  .route-page .process-step {
    min-height: 230px;
    padding: 26px;
  }

  .route-page .process-step h3 {
    margin-top: 50px;
  }

  .route-page[data-route$="-strategy"] .strategy-profile__intro {
    min-height: 230px;
    padding: 30px 28px;
  }

  .route-page[data-route$="-strategy"] .strategy-profile__facts article {
    min-height: 180px;
    padding: 26px;
  }

  .route-page[data-route$="-strategy"] .strategy-profile__facts h4 {
    margin-top: 42px;
  }
}
