:root {
  color-scheme: dark;
  --ink: #f5efe4;
  --muted: #b8b0a4;
  --soft: #e2d3bb;
  --charcoal: #10100f;
  --charcoal-2: #171715;
  --line: rgba(245, 239, 228, 0.14);
  --teal: #24c7a4;
  --red: #e34d3f;
  --gold: #d9a441;
  --steel: #7a9db5;
  --max: 1180px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(115deg, rgba(227, 77, 63, 0.16) 0%, transparent 34%),
    linear-gradient(245deg, rgba(36, 199, 164, 0.14) 0%, transparent 38%),
    linear-gradient(130deg, #0c0c0b 0%, #171412 48%, #0c1213 100%);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(245, 239, 228, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 239, 228, 0.03) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 75%);
  z-index: -2;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--ink);
  color: #111;
  font-weight: 800;
  transform: translateY(-160%);
}

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

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

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

#signal-canvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  opacity: 0.55;
  z-index: -1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--max), calc(100% - 36px));
  margin: 16px auto 0;
  padding: 10px 12px 10px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(15, 15, 14, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.28);
}

body:not(.contact-page) .site-header {
  justify-content: flex-end;
}

.brand,
.site-header nav,
.hero-actions,
.site-footer div {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(245, 239, 228, 0.28);
  border-radius: 6px;
  background: linear-gradient(135deg, var(--red), var(--gold));
  color: #15110d;
  font-size: 0.78rem;
}

.site-header nav {
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-header nav a {
  min-height: 36px;
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--soft);
  font-size: 0.88rem;
  font-weight: 700;
}

.site-header nav a:hover,
.site-header nav a:focus-visible,
.nav-contact {
  background: rgba(245, 239, 228, 0.1);
}

.social-link {
  display: grid;
  width: 38px;
  place-items: center;
  padding-inline: 0;
}

.social-link svg {
  width: 22px;
  height: 22px;
  filter: drop-shadow(0 8px 18px rgba(10, 102, 194, 0.32));
}

.section-shell {
  width: min(var(--max), calc(100% - 36px));
  margin-inline: auto;
}

.hero {
  min-height: calc(100svh - 74px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 410px;
  align-items: start;
  gap: 42px;
  padding: 0 0 52px;
}

.hero-content {
  max-width: 780px;
}

.eyebrow,
.section-kicker {
  margin-bottom: 16px;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2 {
  color: var(--ink);
  font-family: Newsreader, Georgia, serif;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 860px;
  margin-bottom: 22px;
  font-size: clamp(3.1rem, 8vw, 7.7rem);
}

h2 {
  font-size: clamp(2.35rem, 4.8vw, 5.2rem);
}

h3 {
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 720px;
  margin-bottom: 28px;
  color: #d9d0c1;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
}

.hero-actions {
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 12px 18px;
  font-weight: 800;
  line-height: 1.1;
}

.button.primary {
  background: var(--ink);
  color: #111;
}

.button.secondary {
  border: 1px solid rgba(245, 239, 228, 0.2);
  color: var(--ink);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.hero-visual {
  display: grid;
  gap: 16px;
  align-self: start;
}

.portrait-card {
  position: relative;
  min-height: 460px;
  margin: 0;
  border: 1px solid rgba(245, 239, 228, 0.18);
  border-radius: var(--radius);
  background: rgba(18, 18, 17, 0.72);
  overflow: hidden;
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.32);
}

.portrait-card img {
  display: block;
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: 50% 18%;
  filter: saturate(0.92) contrast(1.05);
}

.portrait-card-hero img {
  object-position: 50% 14%;
}

.portrait-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(12, 12, 11, 0.82) 100%);
  pointer-events: none;
}

.portrait-card figcaption {
  position: absolute;
  inset: auto 18px 18px;
  z-index: 1;
}

.portrait-card figcaption span {
  display: block;
  margin-bottom: 6px;
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.portrait-card figcaption strong {
  display: block;
  max-width: 310px;
  color: var(--ink);
  font-family: Newsreader, Georgia, serif;
  font-size: 1.45rem;
  line-height: 1.05;
}

.hero-panel {
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(18, 18, 17, 0.72);
  backdrop-filter: blur(20px);
  overflow: hidden;
}

.hero-panel div {
  position: relative;
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.hero-panel div::after {
  content: "EXP";
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(245, 239, 228, 0.22);
  border-radius: 7px;
  background: rgba(245, 239, 228, 0.08);
  color: var(--teal);
  font-family: Newsreader, Georgia, serif;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
}

.hero-panel div:nth-child(2)::after {
  content: "OPS";
  color: var(--red);
}

.hero-panel div:nth-child(3)::after {
  content: "SCM";
  color: var(--gold);
}

.hero-panel div:last-child {
  border-bottom: 0;
}

.stat-value {
  display: block;
  color: var(--gold);
  font-family: Newsreader, Georgia, serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 0.9;
}

.stat-label {
  display: block;
  margin-top: 10px;
  color: var(--soft);
  font-size: 0.94rem;
}

.ticker {
  border-block: 1px solid var(--line);
  overflow: hidden;
}

.ticker div {
  display: flex;
  width: max-content;
  animation: ticker 28s linear infinite;
}

.ticker span {
  padding: 18px 24px;
  color: var(--soft);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.logo-cloud {
  display: grid;
  grid-template-columns: 0.52fr 1.48fr;
  gap: 42px;
  align-items: center;
  padding: 58px 0 20px;
}

.logo-cloud h2 {
  max-width: 430px;
  margin-bottom: 0;
  font-size: clamp(2rem, 3.1vw, 3.2rem);
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.logo-grid article {
  position: relative;
  min-height: 72px;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(245, 239, 228, 0.14);
  border-radius: 7px;
  background:
    linear-gradient(145deg, rgba(245, 239, 228, 0.07), rgba(245, 239, 228, 0.02)),
    rgba(14, 15, 15, 0.56);
  color: rgba(245, 239, 228, 0.75);
  font-family: Newsreader, Georgia, serif;
  font-weight: 700;
  text-align: left;
}

.logo-grid .logo-fallback::before {
  content: attr(data-logo);
  display: grid;
  width: 46px;
  min-width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(245, 239, 228, 0.2);
  border-radius: 7px;
  background: linear-gradient(135deg, rgba(36, 199, 164, 0.25), rgba(217, 164, 65, 0.18));
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
}

.logo-grid img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.92);
  padding: 5px;
}

.logo-grid strong,
.logo-grid small {
  display: block;
}

.logo-grid strong {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.1;
}

.logo-grid small {
  margin-top: 5px;
  color: var(--muted);
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.25;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-35%);
  }
}

.journey-section,
.expertise-section,
.next-section,
.contact-band,
.contact-options {
  padding: 96px 0;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  gap: 44px;
  align-items: start;
  margin-bottom: 44px;
}

.split-heading p,
.next-copy p,
.contact-hero p {
  font-size: 1.07rem;
}

.journey-map {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: 1px solid var(--line);
}

.journey-map article {
  position: relative;
  min-height: 320px;
  padding: 26px;
  border-right: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(245, 239, 228, 0.055), rgba(245, 239, 228, 0.015)),
    rgba(16, 16, 15, 0.34);
}

.journey-visual {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
  margin-bottom: 18px;
}

.image-tile {
  position: relative;
  height: 360px;
  min-height: 360px;
  margin: 0;
  border: 1px solid rgba(245, 239, 228, 0.16);
  border-radius: var(--radius);
  background: rgba(18, 18, 17, 0.55);
  overflow: hidden;
}

.image-tile img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.03);
}

.image-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(12, 12, 11, 0.58) 100%);
  pointer-events: none;
}

.image-tile-wide img {
  object-position: 50% 32%;
}

.advisory-photo {
  height: 420px;
  min-height: 420px;
  margin-top: 28px;
}

.advisory-photo img {
  object-position: 50% 16%;
}

.journey-map article:last-child {
  border-right: 0;
}

.journey-icon-pair {
  position: absolute;
  top: 18px;
  right: 18px;
  display: flex;
  gap: 6px;
}

.journey-icon-pair .card-icon {
  position: static;
}

.journey-map span,
.expertise-grid span,
time {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-options article {
  position: relative;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(245, 239, 228, 0.045);
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.expertise-grid article {
  position: relative;
  min-height: 250px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(245, 239, 228, 0.055), rgba(245, 239, 228, 0.012)),
    rgba(11, 11, 10, 0.38);
}

.expertise-grid article:hover,
.advisory-lanes article:hover {
  border-color: rgba(36, 199, 164, 0.42);
  background:
    linear-gradient(145deg, rgba(36, 199, 164, 0.1), rgba(217, 164, 65, 0.045)),
    rgba(14, 15, 15, 0.72);
}

.expertise-grid article:nth-child(4n) {
  border-right: 0;
}

.expertise-grid article:nth-child(n + 5) {
  border-bottom: 0;
}

.next-section {
  position: relative;
  display: grid;
  gap: 40px;
  align-items: start;
  overflow: clip;
}

.next-heading {
  max-width: 860px;
}

.next-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
}

.next-copy {
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 104px;
}

.next-copy p {
  margin: 18px 0 0;
  padding: 0 2px;
  color: var(--soft);
  font-size: 1.02rem;
}

.advisory-lanes {
  display: grid;
  gap: 16px;
}

.advisory-lanes article {
  position: relative;
  min-height: 176px;
  padding: 28px 64px 28px 28px;
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
  background: rgba(245, 239, 228, 0.055);
  overflow: hidden;
}

.advisory-lanes article::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: 84px;
  height: 84px;
  border: 1px solid rgba(245, 239, 228, 0.08);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 239, 228, 0.08), transparent 65%);
  opacity: 0.72;
}

.advisory-lanes h3 {
  margin-bottom: 12px;
  font-family: Newsreader, Georgia, serif;
  font-size: clamp(1.55rem, 2.2vw, 2.3rem);
}

.advisory-lanes p {
  max-width: 680px;
  margin-bottom: 0;
}

.advisory-lanes article:nth-child(2) {
  border-left-color: var(--red);
}

.advisory-lanes article:nth-child(3) {
  border-left-color: var(--gold);
}

.advisory-photo {
  height: min(62vh, 520px);
  min-height: 420px;
  margin-top: 0;
  isolation: isolate;
}

.advisory-photo img {
  height: calc(100% + 72px);
  min-height: calc(100% + 72px);
  object-position: 50% calc(18% + var(--next-parallax-y, 0px));
  transform: translate3d(0, calc(var(--next-parallax-y, 0px) * -0.38), 0) scale(1.06);
  transform-origin: 50% 42%;
  transition: transform 120ms linear;
  will-change: transform, object-position;
}

.card-icon {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(245, 239, 228, 0.22);
  border-radius: 7px;
  background: rgba(245, 239, 228, 0.08);
  color: var(--teal);
  font-family: Newsreader, Georgia, serif;
  font-size: 0;
  font-weight: 700;
  line-height: 1;
  text-transform: none;
}

.card-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.card-icon::before {
  content: attr(data-icon);
  color: currentColor;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.58rem;
  font-weight: 900;
}

.flag-vn {
  background: #c91d2b;
  color: #ffd34f;
}

.flag-vn::before {
  content: "*";
  font-size: 1.05rem;
}

.flag-il {
  background:
    linear-gradient(#fff 0 22%, #2d67c4 22% 33%, #fff 33% 67%, #2d67c4 67% 78%, #fff 78%);
  color: #2d67c4;
}

.flag-il::before {
  content: "";
  width: 13px;
  height: 13px;
  background: #2d67c4;
  clip-path: polygon(50% 0, 62% 36%, 100% 36%, 69% 58%, 82% 96%, 50% 73%, 18% 96%, 31% 58%, 0 36%, 38% 36%);
}

.flag-us {
  background:
    linear-gradient(#b22234 0 8%, #fff 8% 16%, #b22234 16% 24%, #fff 24% 32%, #b22234 32% 40%, #fff 40% 48%, #b22234 48% 56%, #fff 56% 64%, #b22234 64% 72%, #fff 72% 80%, #b22234 80% 88%, #fff 88% 100%);
  color: #fff;
}

.flag-us::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  border-radius: 6px 0 3px 0;
  background: #3c3b6e;
}

.flag-us::before {
  content: "";
  z-index: 1;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
}

.icon-ai,
.icon-twin,
.icon-risk,
.icon-supply,
.icon-platform,
.icon-board,
.icon-team,
.icon-vision,
.icon-startup,
.icon-enterprise,
.icon-workflow,
.icon-founder,
.icon-playbook,
.icon-architecture,
.icon-governance,
.icon-asean {
  background: linear-gradient(135deg, rgba(36, 199, 164, 0.22), rgba(217, 164, 65, 0.16));
}

.icon-supply,
.icon-platform,
.icon-governance {
  color: var(--gold);
}

.icon-risk,
.icon-founder {
  color: var(--red);
}

.contact-band {
  margin-bottom: 42px;
  border-block: 1px solid var(--line);
  text-align: center;
}

.contact-band h2 {
  max-width: 780px;
  margin: 0 auto 28px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 28px 0 42px;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin-bottom: 0;
}

.site-footer div {
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-footer a {
  color: var(--soft);
  font-weight: 700;
}

.contact-main {
  min-height: calc(100svh - 180px);
}

.contact-hero {
  max-width: 920px;
  padding: 120px 0 58px;
}

.contact-hero h1 {
  font-size: clamp(3.5rem, 8vw, 7.5rem);
}

.contact-hero p {
  max-width: 720px;
  margin-bottom: 28px;
  color: var(--soft);
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding-top: 20px;
}

.contact-options h2 {
  font-family: Inter, system-ui, sans-serif;
  font-size: 1.2rem;
  line-height: 1.25;
}

.error-main {
  min-height: calc(100svh - 120px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 96px 0;
}

.error-main h1 {
  max-width: 860px;
  font-size: clamp(3.1rem, 8vw, 7rem);
}

.error-main p {
  max-width: 720px;
  color: var(--soft);
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header nav {
    justify-content: flex-start;
  }

  .hero,
  .split-heading,
  .logo-cloud,
  .next-section,
  .next-layout {
    grid-template-columns: 1fr;
  }

  .next-copy {
    position: static;
    order: -1;
  }

  .advisory-photo {
    height: 430px;
    min-height: 430px;
  }

  .advisory-photo img {
    height: 100%;
    min-height: 100%;
    object-position: 50% 18%;
    transform: none;
    will-change: auto;
  }

  .advisory-lanes {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .advisory-lanes article {
    min-height: 220px;
    padding: 24px 54px 24px 22px;
  }

  .hero {
    align-items: start;
    padding-top: 72px;
  }

  .hero-panel {
    width: 100%;
  }

  .hero-visual {
    max-width: 620px;
  }

  .logo-cloud {
    gap: 24px;
  }

  .logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .journey-map,
  .expertise-grid,
  .advisory-lanes,
  .contact-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .journey-map article:nth-child(2n),
  .expertise-grid article:nth-child(2n) {
    border-right: 0;
  }

  .expertise-grid article:nth-child(n) {
    border-bottom: 1px solid var(--line);
  }

  .expertise-grid article:nth-child(n + 7) {
    border-bottom: 0;
  }

  .site-footer {
    flex-direction: column;
  }

  .site-footer div {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .site-header,
  .section-shell,
  .site-footer {
    width: min(100% - 24px, var(--max));
  }

  .site-header nav a {
    padding-inline: 8px;
    font-size: 0.82rem;
  }

  .social-link {
    width: 38px;
  }

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

  h2 {
    font-size: clamp(2.3rem, 12vw, 3.4rem);
  }

  .hero {
    min-height: auto;
    padding: 56px 0 42px;
  }

  .portrait-card,
  .portrait-card img {
    min-height: 360px;
    height: 360px;
  }

  .logo-cloud {
    padding-top: 44px;
  }

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

  .logo-grid article {
    min-height: 62px;
  }

  .button {
    width: 100%;
  }

  .journey-section,
  .expertise-section,
  .next-section,
  .contact-band,
  .contact-options {
    padding: 68px 0;
  }

  .next-section {
    gap: 26px;
  }

  .next-heading h2 {
    margin-bottom: 0;
  }

  .next-copy p {
    font-size: 0.98rem;
  }

  .advisory-photo {
    height: 390px;
    min-height: 390px;
    margin-bottom: 2px;
  }

  .advisory-photo img {
    height: 100%;
    min-height: 100%;
    object-position: 50% 18%;
    transform: none;
    will-change: auto;
  }

  .journey-map,
  .expertise-grid,
  .advisory-lanes,
  .contact-options {
    grid-template-columns: 1fr;
  }

  .journey-map article,
  .expertise-grid article,
  .advisory-lanes article {
    min-height: auto;
    border-right: 0;
  }

  .advisory-lanes article {
    padding: 24px 54px 24px 22px;
  }

  .expertise-grid article:nth-child(n),
  .journey-map article {
    border-bottom: 1px solid var(--line);
  }

  .expertise-grid article:last-child,
  .journey-map article:last-child {
    border-bottom: 0;
  }
}

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

  .advisory-photo img {
    transform: none !important;
    object-position: 50% 18% !important;
  }
}
