:root {
  --navy: #002956;
  --navy-deep: #001c3b;
  --ink: #202020;
  --muted: #6f7883;
  --line: #d9dfe8;
  --paper: #ffffff;
  --soft: #f5f7f8;
  --green: #7b9c70;
  --warm: #d8c7aa;
  --radius: 8px;
  --radius-lg: 8px;
  --header-height: 118px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "NanumSquareRound", "NanumSquare", "Apple SD Gothic Neo", Arial, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
  word-break: keep-all;
}

body.menu-open {
  overflow: hidden;
}

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

button {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: var(--header-height);
  padding: 0 30px;
  color: var(--navy);
  transform: translateY(0);
  transition: height 0.28s ease, transform 0.36s ease, background 0.28s ease, color 0.28s ease,
    box-shadow 0.28s ease;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(0, 41, 86, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(16px);
  opacity: 1;
  transition: opacity 0.28s ease;
}

.site-header.is-top {
  color: #fff;
}

.site-header.is-top::before {
  opacity: 0;
}

.site-header:focus-within {
  color: var(--navy);
}

.site-header:focus-within::before {
  opacity: 1;
}

.site-header.is-compact {
  height: 88px;
}

.site-header.is-hidden {
  transform: translateY(-110%);
}

.brand {
  justify-self: start;
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  width: 101px;
  height: 59px;
  overflow: hidden;
  background: url("./assets/images/logo.png") left center / contain no-repeat;
  font-weight: 800;
  line-height: 1;
  text-indent: -9999px;
  transition: width 0.24s ease, height 0.24s ease, background-image 0.16s ease;
}

.site-header.is-top .brand {
  background-image: url("./assets/images/logo-white.png");
}

.site-header:not(.is-top) .brand,
.site-header:focus-within .brand,
body:has(.hm-headline) .site-header .brand {
  background-image: url("./assets/images/logo.png");
}

.brand-mark {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  font-size: 38px;
  letter-spacing: 0;
}

.brand-name {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  font-size: 16px;
  opacity: 0.86;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  font-size: 20px;
  font-weight: 800;
}

.desktop-nav > a,
.desktop-nav > .nav-link {
  padding: 10px 36px;
  transition: color 0.2s ease;
}

.desktop-nav > a {
  position: relative;
}

.nav-link {
  position: relative;
  padding: 10px 0;
}

.desktop-nav > a::after,
.nav-link::after {
  content: "";
  position: absolute;
  right: 36px;
  bottom: 5px;
  left: 36px;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.22s ease;
}

.desktop-nav > a:hover::after,
.desktop-nav > a:focus-visible::after,
.desktop-nav > .nav-link:hover::after,
.desktop-nav > .nav-link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-header.is-compact .brand {
  width: 86px;
  height: 50px;
}

body:has(.page-main):not(:has(.hm-headline)) .site-header:not(.is-compact) {
  color: #fff;
}

body:has(.page-main):not(:has(.hm-headline)) .site-header:not(.is-compact)::before {
  opacity: 0;
}

body:has(.page-main):not(:has(.hm-headline)) .site-header:not(.is-compact) .brand {
  background-image: url("./assets/images/logo-white.png");
}

body:has(.page-main):not(:has(.hm-headline)) .site-header.is-compact,
body:has(.page-main):not(:has(.hm-headline)) .site-header:focus-within {
  color: var(--navy);
}

body:has(.page-main):not(:has(.hm-headline)) .site-header.is-compact::before,
body:has(.page-main):not(:has(.hm-headline)) .site-header:focus-within::before {
  opacity: 1;
}

body:has(.page-main):not(:has(.hm-headline)) .site-header.is-compact .brand,
body:has(.page-main):not(:has(.hm-headline)) .site-header:focus-within .brand {
  background-image: url("./assets/images/logo.png");
}

.menu-toggle {
  justify-self: end;
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px 6px;
}

.menu-toggle span {
  display: block;
  height: 3px;
  margin: 7px 0;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.menu-active .menu-toggle span:first-child {
  transform: translateY(5px) rotate(45deg);
}

.site-header.menu-active .menu-toggle span:last-child {
  transform: translateY(-5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 35;
  display: none;
  align-content: center;
  gap: 22px;
  padding: 90px 32px;
  color: #fff;
  background: rgba(0, 41, 86, 0.96);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow-y: auto;
  transform: translateY(-100%);
  transition: opacity 0.25s ease, transform 0.35s ease, visibility 0s linear 0.35s;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0s;
}

.mobile-menu a {
  display: block;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.3;
}

.hero {
  position: relative;
  min-height: 760px;
  height: 100vh;
  overflow: hidden;
  background: var(--navy);
}

.hero-media,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.15s ease, transform 7s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1.02);
  animation: heroDrift 5.8s ease-out both;
}

@keyframes heroDrift {
  from {
    transform: scale(1.08) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 41, 86, 0.06) 0%,
    rgba(0, 41, 86, 0.08) 46%,
    rgba(0, 41, 86, 0.9) 100%
  );
}

.hero-copy {
  position: absolute;
  right: 35px;
  bottom: 54px;
  left: 35px;
  z-index: 2;
  color: #fff;
}

.hero-eyebrow {
  margin: 0 0 18px;
  font-size: clamp(16px, 1.1vw, 21px);
  font-weight: 700;
  opacity: 0.9;
}

.hero h1 {
  width: min(1120px, calc(100vw - 70px));
  margin: 0;
  font-size: clamp(48px, 4.1vw, 74px);
  line-height: 1.16;
  font-weight: 800;
  text-wrap: balance;
}

.hero h1 span {
  display: block;
}

.hero-controls {
  position: absolute;
  right: 35px;
  bottom: 48px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 18px;
  color: #fff;
}

.hero-controls button {
  width: 40px;
  height: 40px;
  font-size: 30px;
  line-height: 1;
}

.progress-track {
  width: 210px;
  height: 2px;
  background: rgba(255, 255, 255, 0.38);
}

.progress-track span {
  display: block;
  width: 33.333%;
  height: 100%;
  background: #fff;
  transition: transform 0.35s ease;
}

.intro-collage {
  position: relative;
  height: 3900px;
  overflow: visible;
  background: #fff;
}

.collage-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 760px;
  overflow: hidden;
  background: #fff;
}

.float-card {
  position: absolute;
  z-index: 1;
  width: clamp(180px, 14vw, 360px);
  height: clamp(180px, 14vw, 360px);
  overflow: hidden;
  border-radius: var(--radius);
  opacity: 0;
  transform: translate3d(0, 80vh, 0) scale(0.92);
  filter: saturate(0.82) brightness(1.05);
  will-change: transform, opacity, width, height, top, left;
}

.float-card img {
  transform: scale(1.04);
  transition: transform 0.8s ease;
}

.float-card.is-awake img {
  transform: scale(1);
}

.float-a {
  top: 9vh;
  left: 30px;
  width: clamp(220px, 14vw, 350px);
  height: clamp(310px, 20vw, 520px);
}

.float-b {
  top: 18vh;
  left: 21.5vw;
  width: clamp(220px, 14vw, 360px);
  height: clamp(220px, 14vw, 360px);
}

.float-c {
  top: 19vh;
  left: 63.5vw;
  width: clamp(250px, 15vw, 380px);
  height: clamp(250px, 15vw, 380px);
}

.float-d {
  top: 46vh;
  left: 0.4vw;
  width: clamp(250px, 14vw, 360px);
  height: clamp(300px, 22vw, 520px);
}

.float-e {
  top: 72vh;
  left: 18vw;
  width: clamp(210px, 12.5vw, 320px);
  height: clamp(210px, 12.5vw, 320px);
}

.float-f {
  top: 49vh;
  right: 1vw;
  width: clamp(260px, 17vw, 430px);
  height: clamp(260px, 17vw, 430px);
}

.float-g {
  top: 8vh;
  right: 0.8vw;
  width: clamp(260px, 14vw, 360px);
  height: clamp(230px, 13vw, 340px);
}

.float-h {
  top: 70vh;
  left: 73vw;
  width: clamp(220px, 13vw, 340px);
  height: clamp(220px, 13vw, 340px);
}

.float-target {
  top: 28vh;
  left: 50%;
  z-index: 3;
  width: clamp(230px, 14vw, 360px);
  height: clamp(230px, 14vw, 360px);
  transform-origin: center center;
}

.float-target::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.04));
  opacity: var(--target-overlay, 0);
  transition: opacity 0.08s linear;
}

.intro-statement {
  position: absolute;
  top: 69%;
  left: 50%;
  z-index: 4;
  width: min(620px, calc(100vw - 48px));
  color: var(--navy);
  text-align: center;
  transform: translate(-50%, -50%);
  opacity: 0;
  will-change: transform, opacity;
}

.intro-statement p {
  margin: 0 0 12px;
  font-size: clamp(20px, 1.8vw, 32px);
  font-weight: 800;
}

.intro-statement h2 {
  margin: 0;
  font-size: clamp(34px, 2.7vw, 56px);
  line-height: 1.28;
  font-weight: 800;
  text-wrap: balance;
}

.final-about {
  position: absolute;
  top: 50%;
  left: min(7vw, 118px);
  z-index: 5;
  width: min(650px, 46vw);
  color: #111;
  opacity: 0;
  transform: translate3d(90px, -50%, 0);
  will-change: transform, opacity;
}

.final-about strong {
  display: block;
  margin-bottom: 36px;
  font-size: clamp(18px, 1.4vw, 24px);
  font-weight: 600;
}

.final-about h2 {
  margin: 0;
  font-size: clamp(44px, 3.9vw, 74px);
  line-height: 1.16;
  font-weight: 800;
}

.final-about h2 span {
  display: block;
}

.final-about p {
  margin: 34px 0 38px;
  color: #303842;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.8;
}

.about-panel {
  position: relative;
  min-height: 780px;
  margin: 0 30px 180px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #dfe9ef;
}

.about-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.35) 44%, rgba(255, 255, 255, 0) 70%);
}

.about-copy {
  position: absolute;
  top: 50%;
  left: min(7vw, 120px);
  z-index: 2;
  width: min(720px, 52vw);
  transform: translateY(-50%);
}

.about-copy strong,
.section-head strong {
  display: block;
  margin-bottom: 44px;
  font-size: clamp(18px, 1.4vw, 24px);
  line-height: 1.5;
  font-weight: 600;
}

.about-copy h2,
.section-head h2 {
  margin: 0;
  font-size: clamp(40px, 4.25vw, 82px);
  line-height: 1.24;
  font-weight: 800;
}

.about-copy p {
  margin: 38px 0 42px;
  max-width: 650px;
  color: #2f3740;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.75;
}

.outline-button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 24px;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  white-space: nowrap;
  transition: color 0.24s ease, border-color 0.24s ease;
}

.outline-button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--navy);
  transform: translateX(-100%);
  transition: transform 0.24s ease;
}

.outline-button:hover {
  border-color: var(--navy);
  color: #fff;
}

.outline-button:hover::before {
  transform: translateX(0);
}

.outline-button span {
  margin-left: 12px;
  font-size: 22px;
}

.button-white {
  border-color: #fff;
  color: #fff;
}

.button-white::before {
  background: #fff;
}

.button-white:hover {
  border-color: #fff;
  color: var(--navy);
}

.overview-section,
.business-section,
.performance-section,
.clients-section {
  padding: 0 30px;
}

.overview-section {
  padding-bottom: 210px;
}

.section-head {
  margin-bottom: 90px;
}

.section-head h2 {
  max-width: 1100px;
  text-wrap: balance;
}

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

.overview-grid article {
  min-height: 250px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.overview-grid span {
  color: var(--muted);
  font-size: 16px;
  font-weight: 800;
}

.overview-grid strong {
  display: block;
  margin: 34px 0 18px;
  color: var(--navy);
  font-size: clamp(34px, 3vw, 60px);
  line-height: 1;
}

.overview-grid p {
  margin: 0;
  color: #46505b;
  font-size: 18px;
  line-height: 1.55;
}

.business-section {
  padding-bottom: 210px;
}

.business-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 110px;
  align-items: center;
  min-height: 840px;
  margin-bottom: 40px;
}

.business-item-reverse .business-image {
  order: 2;
}

.business-image {
  align-self: stretch;
  min-height: 650px;
  overflow: hidden;
  border-radius: var(--radius);
}

.business-copy {
  max-width: 760px;
}

.business-copy h3 {
  margin: 0 0 38px;
  font-size: clamp(40px, 3.4vw, 66px);
  line-height: 1.08;
  font-weight: 800;
  text-wrap: balance;
}

.business-copy strong {
  display: block;
  margin-bottom: 34px;
  font-size: 26px;
  font-weight: 800;
}

.business-copy p {
  margin: 0 0 42px;
  color: #333b44;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.85;
}

.performance-section {
  padding-top: 40px;
  padding-bottom: 210px;
}

.performance-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(420px, 0.9fr);
  gap: 64px;
  align-items: stretch;
}

.featured-card {
  display: grid;
  grid-template-rows: 560px auto;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--soft);
}

.featured-card div {
  padding: 34px;
}

.featured-card span,
.performance-list span,
.project-strip span {
  display: block;
  color: var(--navy);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.featured-card h3 {
  margin: 16px 0 18px;
  font-size: 34px;
}

.featured-card p {
  margin: 0;
  color: #37414d;
  font-size: 18px;
  line-height: 1.72;
}

.performance-list {
  display: grid;
  align-content: stretch;
  border-top: 1px solid var(--line);
}

.performance-list a {
  display: grid;
  align-content: center;
  min-height: 142px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.performance-list strong {
  display: block;
  margin-top: 12px;
  font-size: clamp(20px, 1.6vw, 30px);
  line-height: 1.35;
}

.project-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 80px;
}

.project-strip article {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--soft);
}

.project-strip img {
  height: 330px;
}

.project-strip span,
.project-strip h3 {
  margin-right: 26px;
  margin-left: 26px;
}

.project-strip span {
  margin-top: 28px;
}

.project-strip h3 {
  margin-top: 12px;
  margin-bottom: 30px;
  font-size: 28px;
}

.clients-section {
  padding-bottom: 210px;
  overflow: hidden;
}

.client-marquee {
  position: relative;
  margin-right: -30px;
  margin-left: -30px;
  overflow: hidden;
}

.client-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee 34s linear infinite;
}

.client-track span {
  display: grid;
  place-items: center;
  width: min(28vw, 430px);
  min-width: 280px;
  height: 230px;
  padding: 28px;
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(0, 41, 86, 0.92), rgba(34, 54, 75, 0.82)),
    url("./assets/images/records.jpg") center / cover;
  font-size: 26px;
  font-weight: 900;
  text-align: center;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.site-footer {
  margin: 100px 30px 30px;
  padding: 42px 40px 36px;
  border: 0;
  border-radius: var(--radius);
  color: #3f4750;
  background: #f4f4f4;
}

.footer-brand {
  display: block;
  width: 112px;
  height: 76px;
  margin-bottom: 22px;
  overflow: hidden;
  background: url("./assets/images/logo.png") left center / contain no-repeat;
  text-indent: -9999px;
}

.site-footer p {
  margin: 0 0 8px;
  color: #3d4650;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.6;
}

.site-footer p span {
  display: inline-block;
  margin-right: 28px;
  white-space: nowrap;
}

.site-footer small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 32;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  color: var(--navy);
  background: rgba(245, 247, 248, 0.92);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.page-main {
  padding-top: 0;
}

.page-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 680px;
  margin: 0 0 110px;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}

.page-hero img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 28, 59, 0.88), rgba(0, 41, 86, 0.42), rgba(0, 0, 0, 0.08));
}

.page-hero-copy {
  position: relative;
  z-index: 2;
  width: min(980px, calc(100vw - 120px));
  padding: 0 0 86px 64px;
}

.page-hero-copy strong {
  display: block;
  margin-bottom: 28px;
  font-size: 18px;
  font-weight: 800;
}

.page-hero-copy h1 {
  margin: 0;
  font-size: clamp(44px, 4.8vw, 84px);
  line-height: 1.12;
  font-weight: 900;
  text-wrap: balance;
}

.page-section {
  padding: 0 30px 140px;
}

.page-section.compact {
  padding-bottom: 90px;
}

.page-kicker {
  display: block;
  margin-bottom: 28px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
}

.page-section h2 {
  margin: 0 0 46px;
  font-size: clamp(36px, 3.7vw, 68px);
  line-height: 1.18;
  font-weight: 900;
  text-wrap: balance;
}

.page-section h3 {
  margin: 0 0 20px;
  font-size: clamp(26px, 2.1vw, 42px);
  line-height: 1.25;
}

.page-section p,
.page-section li {
  color: #34404c;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.8;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 72px;
  align-items: start;
}

.split-layout.reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.split-image {
  min-height: 560px;
  overflow: hidden;
  border-radius: var(--radius);
}

.message-list {
  display: grid;
  gap: 18px;
  margin: 34px 0;
  padding: 0;
  list-style: none;
}

.message-list li {
  padding: 18px 22px;
  border-left: 4px solid var(--navy);
  background: var(--soft);
}

.signature {
  margin-top: 48px;
  color: #111;
  font-size: 24px;
  font-weight: 900;
}

.value-grid,
.info-grid,
.service-grid,
.result-grid,
.client-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.value-card,
.info-card,
.service-card,
.result-card,
.client-card {
  min-height: 230px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.value-card:nth-child(2n),
.service-card:nth-child(3n + 1) {
  background: #f5f8f3;
}

.value-card span,
.info-card span,
.service-card span,
.result-card span {
  display: block;
  margin-bottom: 22px;
  color: var(--green);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.value-card strong,
.info-card strong,
.service-card strong,
.result-card strong {
  display: block;
  color: var(--navy);
  font-size: 28px;
  line-height: 1.2;
  text-wrap: balance;
}

.info-card p,
.service-card p,
.result-card p {
  margin: 20px 0 0;
  font-size: 17px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.timeline-column {
  padding: 34px;
  border-radius: var(--radius);
  background: var(--soft);
}

.timeline-column h3 {
  color: var(--navy);
}

.timeline-column ul {
  margin: 30px 0 0;
  padding-left: 20px;
}

.service-card {
  min-height: 340px;
}

.result-card {
  min-height: 260px;
}

.client-card {
  display: grid;
  place-items: center;
  min-height: 170px;
  color: var(--navy);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(246, 248, 243, 0.86)),
    url("./assets/images/records.jpg") center / cover;
  font-size: 24px;
  font-weight: 900;
  text-align: center;
}

.about-hero {
  min-height: 100vh;
  margin-bottom: 0;
}

.about-hero::after {
  background:
    linear-gradient(90deg, rgba(0, 28, 59, 0.62), rgba(0, 28, 59, 0.24), rgba(0, 18, 38, 0.56)),
    rgba(0, 0, 0, 0.08);
}

.about-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(190px, 0.55fr) minmax(420px, 1.15fr) minmax(260px, 0.65fr);
  align-items: center;
  gap: 48px;
  width: 100%;
  padding: 0 30px 30vh;
}

.about-hero-grid strong {
  font-size: clamp(24px, 2vw, 40px);
  font-weight: 900;
}

.about-hero-grid h1 {
  margin: 0;
  font-size: clamp(56px, 5.5vw, 108px);
  line-height: 1.05;
  font-weight: 900;
  text-align: center;
  text-wrap: balance;
}

.about-hero-grid p {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(16px, 1.05vw, 20px);
  font-weight: 800;
  line-height: 1.65;
}

.about-intro {
  padding: 48px 30px 170px;
  background: #fff;
}

.about-wide-media {
  height: clamp(360px, 40vw, 620px);
  overflow: hidden;
  border-radius: var(--radius);
}

.about-vision {
  width: min(1100px, 100%);
  margin: 120px auto 0;
  text-align: center;
}

.about-vision strong,
.about-section-title strong,
.about-story-block strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
}

.about-vision h2 {
  margin: 42px 0 40px;
  color: var(--navy);
  font-size: clamp(58px, 8vw, 132px);
  line-height: 0.98;
  font-weight: 900;
  text-transform: uppercase;
}

.about-vision h3 {
  margin: 0 0 24px;
  font-size: clamp(26px, 2.5vw, 42px);
  font-weight: 900;
}

.about-vision p {
  max-width: 840px;
  margin: 0 auto;
  color: #34404c;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.85;
}

.about-story {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.85fr);
  gap: 76px;
  padding: 0 30px 170px;
  background: #fff;
}

.about-story-text {
  display: grid;
  gap: 120px;
  padding-top: 20vh;
}

.about-story-block {
  min-height: 360px;
}

.about-story-block h3 {
  max-width: 620px;
  margin: 18px 0 28px;
  font-size: clamp(36px, 4.2vw, 72px);
  line-height: 1.14;
  font-weight: 900;
  text-wrap: balance;
}

.about-story-block p {
  max-width: 680px;
  color: #34404c;
  font-size: 19px;
  font-weight: 650;
  line-height: 1.85;
}

.about-story-media {
  position: sticky;
  top: 128px;
  height: calc(100vh - 170px);
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
}

.about-story-media img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 0.75s ease, transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-story-media img.is-active {
  opacity: 1;
  transform: scale(1);
}

.about-values {
  padding: 0 30px 170px;
}

.about-values > .about-section-title,
.about-way > .about-section-title {
  text-align: center;
}

.about-section-title h2 {
  margin: 22px auto 0;
  max-width: 920px;
  font-size: clamp(34px, 3.5vw, 64px);
  line-height: 1.18;
  font-weight: 900;
  text-wrap: balance;
}

.about-value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 70px;
  padding: 100px 56px 88px;
  border-radius: var(--radius);
  background: #efeeef;
}

.about-value-grid article {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 420px;
  padding: 0 42px;
  text-align: center;
}

.about-value-grid span {
  display: grid;
  place-items: center;
  width: 220px;
  height: 220px;
  margin-bottom: 36px;
  border: 1px solid rgba(0, 41, 86, 0.12);
  border-radius: 50%;
  color: rgba(0, 41, 86, 0.78);
  font-size: 64px;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.58);
}

.about-value-grid h3 {
  margin: 0 0 20px;
  color: #222;
  font-size: clamp(25px, 2.1vw, 38px);
  line-height: 1.2;
}

.about-value-grid p {
  margin: 0;
  color: #444;
  font-size: 18px;
  font-weight: 650;
  line-height: 1.75;
}

.about-way {
  padding: 0 30px 170px;
}

.about-way-media {
  height: clamp(260px, 28vw, 460px);
  margin: 70px 0 82px;
  overflow: hidden;
  border-radius: var(--radius);
}

.about-way-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 72px;
}

.about-way-column h3 {
  margin: 0 0 22px;
  color: var(--navy);
  font-size: clamp(54px, 6vw, 104px);
  line-height: 1;
  font-weight: 900;
}

.about-way-column article {
  display: grid;
  grid-template-columns: minmax(130px, 0.42fr) minmax(0, 1fr);
  gap: 34px;
  padding: 26px 0;
  border-top: 1px solid rgba(0, 41, 86, 0.18);
}

.about-way-column article:last-child {
  border-bottom: 1px solid rgba(0, 41, 86, 0.18);
}

.about-way-column strong {
  color: var(--navy);
  font-size: 24px;
  line-height: 1.15;
}

.about-way-column p {
  margin: 0;
  color: #394653;
  font-size: 18px;
  font-weight: 650;
  line-height: 1.7;
}

.service-detail-hero {
  min-height: 760px;
  margin-bottom: 0;
}

.service-detail-hero::after {
  background: linear-gradient(90deg, rgba(0, 28, 59, 0.84), rgba(0, 41, 86, 0.44), rgba(0, 0, 0, 0.08));
}

.service-hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(160px, 0.45fr) minmax(420px, 1fr) minmax(300px, 0.7fr);
  gap: 48px;
  align-items: center;
  width: 100%;
  padding: 0 30px 140px;
}

.service-hero-copy strong {
  font-size: clamp(22px, 2vw, 36px);
  font-weight: 900;
}

.service-hero-copy h1 {
  margin: 0;
  font-size: clamp(56px, 5vw, 104px);
  line-height: 1.04;
  font-weight: 900;
  text-wrap: balance;
}

.service-hero-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.7;
}

.service-detail-section {
  padding: 130px 30px;
  background: #fff;
}

.service-section-label {
  display: block;
  margin-bottom: 48px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
}

.service-section-label span {
  margin-right: 14px;
  color: #6f8aa8;
}

.service-overview-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.8fr) minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}

.service-overview-grid h2 {
  margin: 0;
  font-size: clamp(42px, 4.2vw, 78px);
  line-height: 1.1;
  font-weight: 900;
  text-wrap: balance;
}

.service-overview-grid p {
  margin: 0;
  color: #354251;
  font-size: 21px;
  font-weight: 650;
  line-height: 1.85;
}

.service-focus-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-focus-cards article {
  position: relative;
  min-height: 360px;
  padding: 34px;
  overflow: hidden;
  border-radius: var(--radius);
  color: #fff;
  background: var(--navy);
}

.service-focus-cards article:nth-child(2) {
  background: #176dcf;
}

.service-focus-cards article:nth-child(3) {
  background: #014fa8;
}

.service-focus-cards span {
  display: block;
  margin-bottom: 96px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
  font-weight: 900;
}

.service-focus-cards h3 {
  margin: 0 0 20px;
  color: #fff;
  font-size: clamp(28px, 2.4vw, 42px);
  line-height: 1.18;
}

.service-focus-cards p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.7;
}

.service-process-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.56fr) minmax(0, 1fr);
  gap: 76px;
}

.service-process-heading {
  position: sticky;
  top: 130px;
  align-self: start;
}

.service-process-heading h2 {
  margin: 0 0 26px;
  font-size: clamp(42px, 4vw, 76px);
  line-height: 1.06;
  font-weight: 900;
}

.service-process-heading p {
  color: #4a5663;
  font-size: 19px;
  font-weight: 650;
  line-height: 1.75;
}

.service-process-list {
  border-top: 1px solid rgba(0, 41, 86, 0.16);
}

.service-process-list article {
  display: grid;
  grid-template-columns: 90px minmax(170px, 0.45fr) minmax(0, 1fr);
  gap: 26px;
  padding: 34px 0;
  border-bottom: 1px solid rgba(0, 41, 86, 0.16);
}

.service-process-list span {
  color: #6f8aa8;
  font-size: 24px;
  font-weight: 900;
}

.service-process-list strong {
  color: var(--navy);
  font-size: 25px;
  line-height: 1.25;
}

.service-process-list p {
  margin: 0;
  color: #3d4855;
  font-size: 18px;
  font-weight: 650;
  line-height: 1.7;
}

.related-service-section {
  padding: 0 30px 150px;
}

.related-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.related-service-grid a {
  display: grid;
  min-height: 180px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: transform 0.24s ease, border-color 0.24s ease;
}

.related-service-grid a:hover,
.related-service-grid a:focus-visible {
  border-color: var(--navy);
  transform: translateY(-4px);
}

.related-service-grid span {
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
}

.related-service-grid strong {
  align-self: end;
  color: var(--navy);
  font-size: 24px;
}

.reveal {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(46px);
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

@media (max-width: 1199px) {
  .desktop-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    height: 70px;
    padding: 0 15px;
  }

  .site-header::before {
    opacity: 1;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.08);
  }

  .site-header.is-top::before {
    opacity: 0;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu {
    display: grid;
  }

  .brand-mark {
    font-size: 30px;
  }

  .brand-name {
    display: none;
  }

  .hero {
    min-height: 690px;
    height: 82vh;
  }

  .hero::after {
    background: linear-gradient(
      180deg,
      rgba(0, 41, 86, 0.08) 0%,
      rgba(0, 41, 86, 0.08) 46%,
      rgba(0, 41, 86, 0.98) 67%,
      rgba(0, 41, 86, 1) 100%
    );
  }

  .hero-slide {
    background-position: center top;
  }

  .hero-copy {
    right: 20px;
    bottom: 120px;
    left: 20px;
  }

  .hero-eyebrow {
    font-size: 14px;
  }

  .hero h1 {
    width: min(100%, 720px);
    font-size: 32px;
    line-height: 1.34;
  }

  .hero-controls {
    right: 16px;
    bottom: 58px;
    left: 16px;
  }

  .progress-track {
    flex: 1;
    width: auto;
  }

  .intro-collage {
    height: 3200px;
  }

  .collage-stage {
    min-height: 720px;
  }

  .float-card {
    width: 92px;
    height: 92px;
  }

  .float-a {
    top: 8vh;
    left: calc(50% - 55px);
    width: 110px;
    height: 110px;
  }

  .float-b {
    top: 30vh;
    left: 16px;
  }

  .float-c {
    top: 30vh;
    left: auto;
    right: 16px;
    width: 120px;
    height: 120px;
  }

  .float-d {
    top: 71vh;
    left: 16px;
    width: 150px;
    height: 150px;
  }

  .float-e {
    top: 78vh;
    left: auto;
    right: 16px;
    display: block;
    width: 156px;
    height: 156px;
  }

  .float-f,
  .float-g {
    display: none;
  }

  .float-h {
    top: 88vh;
    left: 16px;
    width: calc(100vw - 32px);
    height: 290px;
  }

  .float-target {
    top: 25vh;
    left: 50%;
    width: 110px;
    height: 110px;
  }

  .intro-statement {
    top: 56%;
    width: calc(100vw - 48px);
  }

  .intro-statement p {
    margin-bottom: 8px;
    font-size: 18px;
  }

  .intro-statement h2 {
    font-size: 30px;
    line-height: 1.24;
  }

  .final-about {
    top: 50%;
    right: 24px;
    left: 24px;
    width: auto;
    transform: translate3d(48px, -50%, 0);
  }

  .final-about strong,
  .section-head strong {
    margin-bottom: 24px;
    font-size: 17px;
  }

  .final-about h2,
  .section-head h2 {
    font-size: 38px;
  }

  .final-about p {
    margin: 26px 0 30px;
    font-size: 17px;
  }

  .overview-section,
  .business-section,
  .performance-section,
  .clients-section,
  .page-section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .page-main {
    padding-top: 0;
  }

  .page-hero {
    min-height: 520px;
    margin: 0 0 80px;
  }

  .page-hero-copy {
    width: auto;
    padding: 0 24px 52px;
  }

  .about-hero-grid {
    grid-template-columns: 1fr;
    align-content: end;
    gap: 22px;
    min-height: 100vh;
    padding: 0 24px 76px;
  }

  .about-hero-grid h1 {
    text-align: left;
  }

  .about-hero-grid p {
    max-width: 620px;
  }

  .about-intro,
  .about-story,
  .about-values,
  .about-way {
    padding-right: 16px;
    padding-left: 16px;
  }

  .about-intro {
    padding-top: 16px;
    padding-bottom: 110px;
  }

  .about-vision {
    margin-top: 82px;
  }

  .about-vision h2 {
    font-size: clamp(48px, 13vw, 96px);
  }

  .about-story {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-bottom: 120px;
  }

  .about-story-text {
    gap: 62px;
    padding-top: 0;
  }

  .about-story-block {
    min-height: 0;
  }

  .about-story-media {
    position: relative;
    top: auto;
    order: -1;
    height: auto;
    min-height: 0;
    aspect-ratio: 1 / 0.72;
  }

  .about-value-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 52px 22px;
  }

  .about-value-grid article {
    min-height: 0;
    padding: 0;
  }

  .about-value-grid span {
    width: 160px;
    height: 160px;
    margin-bottom: 24px;
    font-size: 46px;
  }

  .about-way-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .service-detail-hero {
    min-height: 640px;
  }

  .service-hero-copy {
    grid-template-columns: 1fr;
    align-content: end;
    gap: 22px;
    min-height: 640px;
    padding: 0 24px 70px;
  }

  .service-detail-section,
  .related-service-section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .service-overview-grid,
  .service-process-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .service-process-heading {
    position: relative;
    top: auto;
  }

  .service-focus-cards,
  .related-service-grid {
    grid-template-columns: 1fr;
  }

  .service-focus-cards article {
    min-height: 300px;
  }

  .page-section {
    padding-bottom: 96px;
  }

  .split-layout,
  .split-layout.reverse {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .split-image {
    min-height: 0;
    aspect-ratio: 1 / 0.78;
  }

  .value-grid,
  .info-grid,
  .service-grid,
  .result-grid,
  .client-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .overview-section,
  .business-section,
  .performance-section,
  .clients-section {
    padding-bottom: 120px;
  }

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

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

  .business-item,
  .business-item-reverse {
    grid-template-columns: 1fr;
    gap: 38px;
    min-height: 0;
    margin-bottom: 96px;
  }

  .business-item-reverse .business-image {
    order: 0;
  }

  .business-image {
    min-height: 0;
    aspect-ratio: 1 / 1;
  }

  .business-copy h3 {
    margin-bottom: 20px;
    font-size: 42px;
  }

  .business-copy strong {
    margin-bottom: 20px;
    font-size: 22px;
  }

  .business-copy p {
    font-size: 17px;
  }

  .performance-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .featured-card {
    grid-template-rows: 330px auto;
  }

  .performance-list a {
    min-height: 116px;
  }

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

  .client-track span {
    width: 300px;
    height: 190px;
    font-size: 22px;
  }
}

@media (max-width: 640px) {
  .outline-button {
    min-height: 50px;
    padding: 12px 18px;
    font-size: 16px;
  }

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

  .value-grid,
  .info-grid,
  .service-grid,
  .result-grid,
  .client-grid {
    grid-template-columns: 1fr;
  }

  .page-hero-copy h1 {
    font-size: 40px;
  }

  .about-hero-grid {
    padding-bottom: 56px;
  }

  .about-hero-grid h1 {
    font-size: 46px;
  }

  .about-vision h2 {
    font-size: 44px;
  }

  .about-vision p,
  .about-story-block p,
  .about-value-grid p,
  .about-way-column p {
    font-size: 16px;
  }

  .about-story-block h3 {
    font-size: 34px;
  }

  .about-section-title h2 {
    font-size: 34px;
  }

  .about-way-column article {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-hero-copy h1 {
    font-size: 44px;
  }

  .service-hero-copy p,
  .service-overview-grid p,
  .service-process-heading p,
  .service-process-list p {
    font-size: 16px;
  }

  .service-overview-grid h2,
  .service-process-heading h2 {
    font-size: 34px;
  }

  .service-process-list article {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .overview-grid article {
    min-height: 190px;
  }

  .featured-card div {
    padding: 28px;
  }

  .site-footer {
    padding-right: 16px;
    padding-left: 16px;
  }
}

/* HM reference page patterns */
body:has(.hm-headline) .site-header.is-top {
  color: var(--navy);
}

body:has(.hm-headline) .site-header.is-top::before {
  opacity: 1;
}

.hm-hero {
  position: relative;
  min-height: 100vh;
  height: 100vh;
  overflow: hidden;
  background: var(--navy-deep);
}

.hm-hero img {
  position: absolute;
  inset: 0;
  transform: scale(1.02);
}

.hm-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(0, 30, 64, 0.74), rgba(0, 30, 64, 0.12) 46%, rgba(0, 30, 64, 0.62)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.14), rgba(0, 25, 54, 0.48));
}

.hm-hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.35fr 1fr;
  align-items: center;
  gap: 36px;
  min-height: 100vh;
  padding: 64px 30px 0;
  color: #fff;
}

.hm-hero-content strong {
  font-size: 24px;
  font-weight: 900;
}

.hm-hero-content h1 {
  margin: 0;
  font-size: 64px;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
  text-align: center;
}

.hm-hero-content p {
  max-width: 390px;
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.75;
}

.hm-headline {
  width: min(100% - 60px, 1340px);
  margin: 0 auto;
  padding: 220px 0 120px;
}

.hm-headline-label,
.hm-headline > span {
  display: block;
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
}

.hm-headline > span {
  margin-top: 12px;
}

.hm-headline h1 {
  max-width: 1180px;
  margin: 26px 0 0;
  font-size: 76px;
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: 0;
}

.hm-vision-section,
.hm-values-section,
.hm-way-section,
.hm-section,
.hm-message-section,
.hm-history-list,
.hm-page-tabs,
.hm-filter-row,
.hm-project-list,
.hm-family-grid {
  width: min(100% - 60px, 1340px);
  margin: 0 auto;
}

.hm-vision-section,
.hm-values-section,
.hm-way-section,
.hm-section,
.hm-message-section {
  padding: 120px 0;
}

.hm-center-title {
  text-align: center;
}

.hm-center-title strong,
.hm-section-title strong,
.hm-text-block strong,
.hm-history-sticky strong {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
}

.hm-center-title h2 {
  margin: 24px auto 0;
  font-size: 72px;
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0;
}

.hm-center-title h3 {
  margin: 52px 0 0;
  font-size: 32px;
  font-weight: 900;
}

.hm-center-title p {
  max-width: 760px;
  margin: 24px auto 0;
  color: #3f4853;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.9;
}

.hm-split-scroll {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.86fr);
  gap: 82px;
  width: min(100% - 60px, 1340px);
  margin: 0 auto;
  padding: 80px 0 140px;
}

.hm-split-text {
  display: grid;
  gap: 140px;
  padding-top: 18vh;
}

.hm-text-block {
  display: flex;
  min-height: 58vh;
  flex-direction: column;
  justify-content: center;
}

.hm-text-block h3 {
  margin: 22px 0 0;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.2;
}

.hm-text-block p {
  max-width: 640px;
  margin: 24px 0 0;
  color: #424b56;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.9;
}

.hm-split-media {
  position: sticky;
  top: 120px;
  align-self: start;
  height: calc(100vh - 180px);
  overflow: hidden;
  border-radius: var(--radius);
  background: #e7edf3;
}

.hm-split-media img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 0.7s ease, transform 1.2s ease;
}

.hm-split-media img.is-active {
  opacity: 1;
  transform: scale(1);
}

.hm-core-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 70px;
}

.hm-core-values article {
  min-height: 430px;
  padding: 42px 34px;
  border: 1px solid rgba(0, 41, 86, 0.12);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 24px 80px rgba(0, 28, 59, 0.08);
}

.hm-core-values span {
  display: inline-grid;
  place-items: center;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: #eff4ef;
  color: var(--green);
  font-size: 36px;
  font-weight: 900;
}

.hm-core-values h3 {
  margin: 46px 0 0;
  color: var(--navy);
  font-size: 30px;
  font-weight: 900;
}

.hm-core-values p {
  margin: 18px 0 0;
  color: #515b66;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.8;
}

.hm-way-media {
  height: 430px;
  margin-top: 64px;
  overflow: hidden;
  border-radius: var(--radius);
}

.hm-way-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  margin-top: 70px;
}

.hm-way-column h3 {
  margin: 0 0 22px;
  color: var(--navy);
  font-size: 64px;
  font-weight: 900;
}

.hm-way-column article,
.hm-process-list article,
.hm-history-item,
.hm-project-card {
  border-top: 1px solid rgba(0, 41, 86, 0.17);
}

.hm-way-column article {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 28px;
  padding: 25px 0;
}

.hm-way-column strong,
.hm-way-column p {
  font-size: 18px;
  font-weight: 800;
}

.hm-way-column p {
  margin: 0;
  color: #525b65;
  line-height: 1.75;
}

.hm-message-section {
  padding-top: 0;
}

.hm-message-container {
  position: relative;
  min-height: 720px;
  padding: 74px 80px 80px 48%;
  border-radius: var(--radius);
  background: #f7f8f9;
}

.hm-message-photo {
  position: absolute;
  top: 80px;
  left: 80px;
  width: 36%;
  height: 560px;
  overflow: hidden;
  border-radius: var(--radius);
}

.hm-message-copy h2 {
  margin: 0 0 16px;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.35;
}

.hm-message-copy p {
  margin: 0 0 42px;
  color: #424b56;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.9;
}

.hm-signature {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 18px;
  color: var(--ink);
}

.hm-signature strong {
  font-size: 30px;
}

.hm-signature span {
  font-weight: 800;
}

/* CEO message page: HM reference headline and floated message image */
body:has(.hm-message-page) {
  background: #fff;
}

body:has(.hm-message-page) .site-header.is-top {
  color: #fff;
}

body:has(.hm-message-page) .site-header.is-top::before {
  opacity: 0;
}

.hm-ceo-hero {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(35, 91, 161, 0.82), rgba(0, 41, 86, 0) 52%),
    linear-gradient(180deg, #245aa5 0%, #0f3568 56%, #08264e 100%);
  color: #fff;
}

.hm-ceo-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 28, 59, 0.18));
  opacity: var(--ceo-hero-overlay, 1);
  pointer-events: none;
}

.hm-ceo-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
  width: calc(100% - 60px);
  min-height: 460px;
  margin: 0 auto;
  padding-top: 230px;
  transform: translate3d(0, var(--ceo-hero-y, 0px), 0);
  opacity: var(--ceo-hero-opacity, 1);
  transition: opacity 0.2s linear;
}

.hm-ceo-eyebrow {
  grid-column: span 2;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.hm-ceo-hero h1 {
  grid-column: span 8;
  margin: 0;
  font-size: clamp(64px, 3.15vw, 80px);
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.hm-ceo-hero p {
  grid-column: span 2;
  max-width: 420px;
  margin: 0;
  justify-self: end;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.6;
}

.hm-ceo-message-section {
  width: min(100% - 60px, 1400px);
  margin: 0 auto;
  padding: 100px 0 170px;
}

.hm-ceo-message {
  color: var(--ink);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.7;
}

.hm-ceo-message::after {
  content: "";
  display: block;
  clear: both;
}

.hm-ceo-floated-img {
  float: right;
  width: 50%;
  max-width: 700px;
  height: 492px;
  margin: 0 0 42px 56px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #e8edf2;
}

.hm-ceo-floated-img img {
  height: 116%;
  transform: translate3d(0, var(--ceo-image-y, -28px), 0) scale(1.04);
  transform-origin: center;
  transition: transform 0.18s linear;
}

.hm-ceo-message h2 {
  margin: 0 0 14px;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.4;
}

.hm-ceo-message p {
  margin: 0 0 42px;
  color: #303841;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.7;
}

.hm-ceo-signature {
  display: flex;
  gap: 28px;
  align-items: baseline;
  margin-top: 58px;
}

.hm-ceo-signature strong {
  font-size: 20px;
  font-weight: 900;
}

.hm-ceo-signature span {
  font-weight: 900;
}

body:has(.hm-message-page) .site-footer {
  margin: 0 30px 30px;
  padding: 56px 40px 46px;
  border-radius: var(--radius);
  background: #f4f4f4;
}

.hm-history-index {
  display: flex;
  gap: 14px;
  padding-bottom: 50px;
}

.hm-history-index a,
.hm-filter-row a,
.hm-arrow-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(0, 41, 86, 0.18);
  border-radius: var(--radius);
  color: var(--navy);
  font-size: 16px;
  font-weight: 900;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.hm-history-index a:hover,
.hm-filter-row a:hover,
.hm-filter-row a.active,
.hm-arrow-link:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-1px);
}

.hm-history-list {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 90px;
  padding: 50px 0 130px;
}

.hm-history-sticky {
  position: sticky;
  top: 140px;
  align-self: start;
}

.hm-history-sticky h2 {
  margin: 24px 0 0;
  font-size: 42px;
  font-weight: 900;
  line-height: 1.3;
}

.hm-history-sticky p {
  margin: 22px 0 0;
  color: #4e5964;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.8;
}

.hm-history-items {
  display: grid;
  gap: 56px;
}

.hm-history-item {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 38px;
  padding-top: 34px;
}

.hm-history-year {
  color: var(--navy);
  font-size: 32px;
  font-weight: 900;
  line-height: 1.2;
}

.hm-history-content ul,
.hm-project-content ul,
.hm-process-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hm-history-content li {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  padding: 9px 0;
}

.hm-history-content li span {
  color: var(--navy);
  font-weight: 900;
}

.hm-history-content li p {
  margin: 0;
  color: #3f4853;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.7;
}

.hm-history-content img {
  height: 250px;
  margin-top: 28px;
  border-radius: var(--radius);
}

/* History page: HM reference horizontal cards and pinned timeline */
body:has(.hm-history-page) .site-header.is-top {
  color: #fff;
}

body:has(.hm-history-page) .site-header.is-top::before {
  opacity: 0;
}

body:has(.hm-history-page) .site-footer {
  margin: 0 30px 30px;
  padding: 56px 40px 46px;
  border-radius: var(--radius);
  background: #f4f4f4;
}

.hm-history-hero {
  position: relative;
  min-height: 810px;
  overflow: hidden;
  background:
    radial-gradient(circle at 52% 0%, rgba(45, 100, 174, 0.8), rgba(0, 41, 86, 0) 53%),
    linear-gradient(180deg, #245aa5 0%, #0f3568 55%, #08264e 100%);
  color: #fff;
}

.hm-history-hero-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
  width: calc(100% - 60px);
  min-height: 430px;
  margin: 0 auto;
  padding-top: 230px;
  transform: translate3d(0, var(--history-hero-y, 0px), 0);
  opacity: var(--history-hero-opacity, 1);
  transition: opacity 0.2s linear;
}

.hm-history-eyebrow {
  grid-column: span 2;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.hm-history-hero h1 {
  grid-column: span 8;
  margin: 0;
  font-size: 80px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.hm-history-hero p {
  grid-column: span 2;
  max-width: 420px;
  margin: 0;
  justify-self: end;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.6;
}

.hm-history-awards {
  position: relative;
  width: calc(100% - 60px);
  margin: 20px auto 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.hm-history-awards-track {
  display: flex;
  width: max-content;
  transform: translate3d(var(--history-award-x, 0px), 0, 0);
  transition: transform 0.18s linear;
  will-change: transform;
}

.hm-history-awards article {
  position: relative;
  display: flex;
  flex: 0 0 calc((100vw - 60px) / 5);
  height: 330px;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 64px 46px 52px;
  border-left: 1px solid rgba(0, 41, 86, 0.16);
  background: #f8fafc;
  color: var(--navy);
  text-align: center;
}

.hm-history-awards article:nth-child(2) {
  background: #eef2f6;
}

.hm-history-awards article:nth-child(3) {
  background: #dfe5ee;
}

.hm-history-awards article:nth-child(4) {
  background: #cbd5e2;
}

.hm-history-awards article:nth-child(5) {
  background: #b7c4d3;
}

.hm-history-awards article:nth-child(6) {
  background: #aab8c8;
}

.hm-history-awards article:nth-child(7) {
  background: #9eacbd;
}

.hm-history-awards strong {
  display: block;
  max-width: 280px;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.35;
}

.hm-history-awards p {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin: 0;
  color: #31445b;
  font-size: 14px;
  font-weight: 900;
}

.hm-history-intro {
  width: min(100% - 60px, 1400px);
  margin: 0 auto;
  padding: 146px 0 82px;
}

.hm-history-intro > strong {
  display: block;
  margin-bottom: 48px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
}

.hm-history-intro > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.hm-history-intro h2 {
  margin: 0;
  font-size: 52px;
  font-weight: 900;
  line-height: 1.28;
}

.hm-history-intro p {
  margin: 0;
  color: #3f4853;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.85;
}

.hm-history-timeline {
  width: min(100% - 60px, 1400px);
  margin: 0 auto;
  padding-bottom: 150px;
}

.hm-history-period {
  display: grid;
  grid-template-columns: 32% 68%;
  align-items: start;
}

.hm-history-period-title {
  position: sticky;
  top: 118px;
  align-self: start;
  padding-top: 34px;
}

.hm-history-period-title h2 {
  margin: 0;
  color: var(--ink);
  font-size: 60px;
  font-weight: 900;
  line-height: 1.12;
}

.hm-history-years {
  min-width: 0;
}

.hm-history-row {
  display: grid;
  grid-template-columns: 24% minmax(0, 1fr) 26%;
  gap: 34px;
  min-height: 220px;
  padding: 32px 0 36px;
  border-top: 1px solid rgba(32, 32, 32, 0.3);
  opacity: var(--history-row-opacity, 0.22);
  filter: blur(var(--history-row-blur, 2px));
  transform: translate3d(0, var(--history-row-y, 28px), 0);
  transition:
    opacity 0.32s ease,
    filter 0.32s ease,
    transform 0.32s ease;
}

.hm-history-period:last-child .hm-history-row:last-child {
  border-bottom: 1px solid rgba(32, 32, 32, 0.3);
}

.hm-history-row-year {
  color: var(--ink);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.15;
}

.hm-history-row ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hm-history-row li {
  position: relative;
  padding: 0 0 9px 18px;
  color: #27313b;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.65;
}

.hm-history-row li::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
}

.hm-history-row img {
  width: 100%;
  height: 136px;
  border-radius: var(--radius);
  box-shadow: 0 34px 70px rgba(0, 28, 59, 0.17);
}

.hm-section-title {
  margin-bottom: 44px;
}

.hm-section-title span {
  color: var(--green);
}

.hm-two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 68px;
  align-items: start;
}

.hm-two-column h2,
.hm-process-intro h2 {
  margin: 0;
  font-size: 46px;
  font-weight: 900;
  line-height: 1.28;
}

.hm-two-column p,
.hm-process-intro p {
  margin: 0;
  color: #3f4853;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.9;
}

.hm-section-image {
  height: 430px;
  overflow: hidden;
  border-radius: var(--radius);
}

.hm-philosophy-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 70px;
}

.hm-philosophy-cards a {
  min-height: 360px;
  padding: 30px 26px;
  border-radius: var(--radius);
  background: #f5f7f8;
  transition: background 0.24s ease, transform 0.24s ease, box-shadow 0.24s ease;
}

.hm-philosophy-cards a:hover {
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 28, 59, 0.12);
  transform: translateY(-6px);
}

.hm-philosophy-cards span {
  color: var(--green);
  font-size: 18px;
  font-weight: 900;
}

.hm-philosophy-cards strong {
  display: block;
  margin-top: 68px;
  color: var(--navy);
  font-size: 25px;
  font-weight: 900;
  line-height: 1.35;
}

.hm-philosophy-cards p {
  margin: 22px 0 0;
  color: #4d5762;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
}

.hm-process-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1.26fr);
  gap: 80px;
}

.hm-process-intro {
  position: sticky;
  top: 140px;
  align-self: start;
}

.hm-process-intro p {
  margin-top: 20px;
}

.hm-arrow-link {
  margin-top: 36px;
}

.hm-process-list article {
  display: grid;
  grid-template-columns: 70px 240px 1fr;
  gap: 24px;
  padding: 32px 0;
}

.hm-process-list article > span {
  color: var(--green);
  font-size: 28px;
  font-weight: 900;
}

.hm-process-list strong {
  color: var(--navy);
  font-size: 24px;
  font-weight: 900;
}

.hm-process-list li {
  color: #4d5762;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.75;
}

.hm-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-bottom: 40px;
}

.hm-page-tabs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 8px;
  margin-bottom: 78px;
}

.hm-page-tabs a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 68px;
  padding: 0 22px;
  border-radius: 6px;
  background: #e3e4e4;
  color: var(--navy);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  transition:
    background 0.24s ease,
    color 0.24s ease,
    transform 0.24s ease;
}

.hm-page-tabs a:hover,
.hm-page-tabs a.active {
  background: #004fa8;
  color: #fff;
  transform: translateY(-1px);
}

.hm-page-tabs span {
  margin-left: 6px;
  color: inherit;
  font-size: 0.82em;
  opacity: 0.7;
}

.hm-company-tabs {
  margin-top: 90px;
}

.hm-filter-row span {
  margin-left: 5px;
  opacity: 0.75;
}

.hm-project-list {
  display: grid;
  gap: 34px;
  padding-bottom: 120px;
}

.hm-project-card {
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 41, 86, 0.12);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 28, 59, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.hm-project-card:hover {
  box-shadow: 0 32px 90px rgba(0, 28, 59, 0.14);
  transform: translateY(-5px);
}

.hm-project-thumb {
  min-height: 410px;
}

.hm-project-content {
  padding: 42px 48px;
}

.hm-project-content > span {
  color: var(--green);
  font-size: 16px;
  font-weight: 900;
}

.hm-project-content h2 {
  margin: 15px 0 30px;
  color: var(--navy);
  font-size: 34px;
  font-weight: 900;
  line-height: 1.28;
}

.hm-project-content li {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 18px;
  padding: 10px 0;
  border-top: 1px solid rgba(0, 41, 86, 0.1);
}

.hm-project-content li strong {
  color: var(--navy);
  font-weight: 900;
}

.hm-project-content li p {
  margin: 0;
  color: #4a5560;
  font-weight: 700;
  line-height: 1.65;
}

.hm-family-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-bottom: 120px;
}

.hm-family-card {
  display: grid;
  grid-template-columns: 34% 1fr;
  min-height: 340px;
  overflow: hidden;
  border: 1px solid rgba(0, 41, 86, 0.12);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 28, 59, 0.07);
}

.hm-family-logo {
  display: grid;
  place-items: center;
  padding: 28px;
  background: #f0f4f8;
  color: var(--navy);
  font-size: 28px;
  font-weight: 900;
  text-align: center;
}

.hm-family-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px;
}

.hm-family-info h2 {
  margin: 0;
  color: var(--navy);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.3;
}

.hm-family-info p {
  margin: 18px 0 26px;
  color: #4d5762;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.75;
}

.hm-family-info dl {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 10px 18px;
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid rgba(0, 41, 86, 0.12);
}

.hm-family-info dt,
.hm-family-info dd {
  margin: 0;
  color: #4d5762;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.55;
}

.hm-family-info dt {
  color: var(--navy);
}

/* Client page: HM company/family reference layout */
.hm-family-reference-page {
  background: #fff;
  color: var(--ink);
}

.hm-family-hero {
  min-height: 560px;
  padding: 0 30px 116px;
  background:
    linear-gradient(180deg, #0057aa 0%, #003a77 47%, #002f62 100%),
    var(--navy);
  color: #fff;
}

.hm-family-hero.reveal {
  opacity: 1;
  filter: none;
  transform: none;
  transition: none;
}

.hm-family-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr 1fr;
  align-items: start;
  gap: 30px;
  padding-top: 238px;
}

.hm-family-hero strong {
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.hm-family-hero h1 {
  margin: 0;
  font-size: clamp(64px, 4.7vw, 80px);
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.hm-family-hero p {
  max-width: 360px;
  margin: 0 0 0 auto;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.7;
}

.hm-client-family-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  width: calc(100% - 60px);
  margin: 100px auto 0;
  padding-bottom: 120px;
}

.hm-client-family-card {
  display: grid;
  grid-template-columns: minmax(280px, 45%) minmax(0, 1fr);
  gap: 30px;
  min-height: 305px;
  padding: 25px;
  border-radius: 8px;
  background: #f3f5f7;
  transition: opacity 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
}

.hm-client-family-card:hover {
  box-shadow: 0 28px 80px rgba(0, 28, 59, 0.1);
  transform: translateY(-3px);
}

.hm-client-logo-box {
  display: grid;
  place-items: center;
  min-height: 255px;
  padding: 28px;
  background: #fff;
}

.hm-client-logo-box span {
  color: #0057aa;
  font-size: clamp(30px, 2.2vw, 46px);
  font-weight: 900;
  line-height: 1.05;
  text-align: center;
}

.hm-client-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 8px 0 0;
}

.hm-client-info h2 {
  margin: 0;
  color: #141414;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.3;
}

.hm-client-info p {
  margin: 24px 0 auto;
  color: #202a35;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.7;
}

.hm-client-info dl {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 10px 18px;
  margin: 34px 0 0;
  padding: 0;
}

.hm-client-info dt,
.hm-client-info dd {
  margin: 0;
  color: #202020;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.55;
}

.hm-client-info dt {
  color: #7a838e;
}

/* Project category pages: HM projects/culture reference layout */
.hm-project-category-page {
  background: #fff;
  color: var(--ink);
}

body:has(.hm-project-category-page) .site-header.is-top {
  color: #fff;
}

body:has(.hm-project-category-page) .site-header.is-top::before {
  opacity: 0;
}

.hm-project-hero {
  min-height: 460px;
  padding: 0 30px 100px;
  background:
    linear-gradient(180deg, rgba(0, 41, 86, 0.95), rgba(0, 89, 171, 0.96)),
    var(--navy);
  color: #fff;
}

.hm-project-hero.reveal {
  opacity: 1;
  filter: none;
  transform: none;
  transition: none;
}

.hm-project-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr 1fr;
  align-items: start;
  gap: 30px;
  padding-top: 230px;
}

.hm-project-hero strong {
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.hm-project-hero h1 {
  margin: 0;
  font-size: clamp(64px, 4.7vw, 80px);
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.hm-project-hero p {
  max-width: 360px;
  margin: 0 0 0 auto;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.7;
}

.hm-project-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  width: calc(100% - 60px);
  margin: 130px auto 40px;
}

.hm-project-tabs a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 16px;
  border-radius: 5px;
  background: #e3e4e4;
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.hm-project-tabs a:hover,
.hm-project-tabs a.active {
  background: #004fa8;
  color: #fff;
  transform: translateY(-1px);
}

.hm-project-tabs span {
  margin-left: 5px;
  font-size: 0.78em;
  opacity: 0.72;
}

.hm-culture-list {
  display: grid;
  gap: 50px;
  width: calc(100% - 60px);
  margin: 0 auto;
  padding-bottom: 120px;
}

.hm-culture-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 49.6%) minmax(0, 50.4%);
  min-height: 456px;
  overflow: hidden;
  border-radius: 12px;
  background: #f3f5f7;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.hm-culture-card:hover {
  box-shadow: 0 28px 80px rgba(0, 28, 59, 0.12);
  transform: translateY(-4px);
}

.hm-culture-thumb {
  height: 456px;
  min-height: 456px;
  overflow: hidden;
  background: #dfe5ec;
}

.hm-culture-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.hm-culture-card:hover .hm-culture-thumb img {
  transform: scale(1.07);
}

.hm-culture-content {
  position: relative;
  padding: 50px 96px 25px 35px;
}

.hm-culture-arrow {
  position: absolute;
  top: 35px;
  right: 35px;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #1a1a1a;
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.hm-culture-meta {
  display: block;
  color: #838383;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
}

.hm-culture-content h2 {
  margin: 28px 0 16px;
  color: #1a1a1a;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.2;
}

.hm-culture-content p {
  max-width: 670px;
  margin: 0;
  color: #222;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
}

.hm-culture-data {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.hm-culture-data li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0;
  padding: 5px 0;
  font-size: 15px;
  line-height: 1.6;
}

.hm-culture-data span {
  color: #888;
  font-weight: 700;
}

.hm-culture-data strong {
  color: #111;
  font-weight: 700;
}

@media (max-width: 1199px) {
  .hm-hero {
    min-height: 740px;
    height: auto;
  }

  .hm-hero-content {
    grid-template-columns: 1fr;
    align-content: end;
    gap: 18px;
    min-height: 740px;
    padding: 0 24px 84px;
  }

  .hm-hero-content h1 {
    font-size: 48px;
    text-align: left;
  }

  .hm-headline {
    width: min(100% - 32px, 760px);
    padding: 140px 0 78px;
  }

  .hm-headline h1 {
    font-size: 44px;
  }

  .hm-vision-section,
  .hm-values-section,
  .hm-way-section,
  .hm-section,
  .hm-message-section,
  .hm-history-list,
  .hm-page-tabs,
  .hm-filter-row,
  .hm-project-list,
  .hm-family-grid,
  .hm-split-scroll {
    width: min(100% - 32px, 760px);
  }

  .hm-center-title h2 {
    font-size: 46px;
  }

  .hm-split-scroll,
  .hm-history-list,
  .hm-process-layout,
  .hm-two-column,
  .hm-way-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .hm-split-text {
    gap: 54px;
    padding-top: 0;
  }

  .hm-text-block {
    min-height: 0;
  }

  .hm-split-media,
  .hm-history-sticky,
  .hm-process-intro {
    position: relative;
    top: auto;
  }

  .hm-split-media {
    order: -1;
    height: 440px;
  }

  .hm-core-values,
  .hm-philosophy-cards,
  .hm-family-grid {
    grid-template-columns: 1fr;
  }

  .hm-project-hero {
    min-height: 420px;
    padding: 0 24px 78px;
  }

  .hm-family-hero {
    min-height: 420px;
    padding: 0 24px 78px;
  }

  .hm-project-hero-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 180px;
  }

  .hm-family-hero-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 180px;
  }

  .hm-project-hero h1 {
    font-size: 52px;
    text-align: left;
  }

  .hm-family-hero h1 {
    font-size: 52px;
    text-align: left;
  }

  .hm-project-hero p {
    max-width: 620px;
    margin-left: 0;
  }

  .hm-family-hero p {
    max-width: 620px;
    margin-left: 0;
  }

  .hm-project-tabs,
  .hm-culture-list,
  .hm-client-family-grid {
    width: min(100% - 32px, 760px);
  }

  .hm-project-tabs {
    grid-template-columns: 1fr 1fr;
    margin-top: 74px;
  }

  .hm-client-family-grid {
    grid-template-columns: 1fr;
    margin-top: 74px;
  }

  .hm-client-family-card {
    grid-template-columns: 1fr;
  }

  .hm-culture-card {
    grid-template-columns: 1fr;
  }

  .hm-culture-thumb,
  .hm-culture-card {
    min-height: 0;
  }

  .hm-culture-thumb {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .hm-culture-content {
    padding: 38px 34px 38px;
  }

  .hm-culture-arrow {
    top: 28px;
    right: 28px;
  }

  .hm-message-container {
    min-height: 0;
    padding: 24px;
  }

  .hm-message-photo {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: 430px;
    margin-bottom: 34px;
  }

  .hm-ceo-hero {
    min-height: 430px;
  }

  .hm-ceo-hero-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    width: min(100% - 32px, 760px);
    min-height: 430px;
    padding-top: 150px;
  }

  .hm-ceo-eyebrow,
  .hm-ceo-hero h1,
  .hm-ceo-hero p {
    grid-column: auto;
  }

  .hm-ceo-eyebrow {
    font-size: 22px;
  }

  .hm-ceo-hero h1 {
    font-size: 48px;
    text-align: left;
  }

  .hm-ceo-hero p {
    justify-self: start;
    max-width: 540px;
    font-size: 16px;
  }

  .hm-ceo-message-section {
    width: min(100% - 32px, 760px);
    padding: 72px 0 110px;
  }

  .hm-ceo-floated-img {
    float: none;
    width: 100%;
    max-width: none;
    height: 420px;
    margin: 0 0 46px;
  }

  .hm-history-hero {
    min-height: 700px;
  }

  .hm-history-hero-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    width: min(100% - 32px, 760px);
    min-height: 360px;
    padding-top: 150px;
  }

  .hm-history-eyebrow,
  .hm-history-hero h1,
  .hm-history-hero p {
    grid-column: auto;
  }

  .hm-history-eyebrow {
    font-size: 22px;
  }

  .hm-history-hero h1 {
    font-size: 48px;
    text-align: left;
  }

  .hm-history-hero p {
    justify-self: start;
    max-width: 560px;
    font-size: 16px;
  }

  .hm-history-awards {
    width: calc(100% - 32px);
  }

  .hm-history-awards article {
    flex-basis: 70vw;
    height: 280px;
    padding: 48px 32px 40px;
  }

  .hm-history-intro,
  .hm-history-timeline {
    width: min(100% - 32px, 760px);
  }

  .hm-history-intro {
    padding: 82px 0 54px;
  }

  .hm-history-intro > div,
  .hm-history-period,
  .hm-history-row {
    grid-template-columns: 1fr;
  }

  .hm-history-intro > div {
    gap: 28px;
  }

  .hm-history-intro h2 {
    font-size: 38px;
  }

  .hm-history-period-title {
    position: relative;
    top: auto;
    padding: 58px 0 20px;
  }

  .hm-history-period-title h2 {
    font-size: 46px;
  }

  .hm-history-row {
    gap: 18px;
    min-height: 0;
    padding: 28px 0;
  }

  .hm-history-row img {
    height: 250px;
  }

  .hm-history-item,
  .hm-process-list article,
  .hm-project-card,
  .hm-family-card {
    grid-template-columns: 1fr;
  }

  .hm-project-thumb {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .hm-hero-content h1,
  .hm-headline h1,
  .hm-center-title h2 {
    font-size: 36px;
  }

  .hm-hero-content p,
  .hm-center-title p,
  .hm-two-column p,
  .hm-process-intro p,
  .hm-message-copy p {
    font-size: 16px;
  }

  .hm-text-block h3,
  .hm-two-column h2,
  .hm-process-intro h2,
  .hm-history-sticky h2 {
    font-size: 32px;
  }

  .hm-project-content,
  .hm-family-info {
    padding: 26px 22px;
  }

  .hm-project-content h2 {
    font-size: 26px;
  }

  .hm-ceo-hero {
    min-height: 390px;
  }

  .hm-ceo-hero-grid {
    min-height: 390px;
    padding-top: 122px;
  }

  .hm-ceo-hero h1 {
    font-size: 42px;
  }

  .hm-ceo-message h2 {
    font-size: 22px;
  }

  .hm-ceo-message p {
    font-size: 16px;
  }

  .hm-ceo-floated-img {
    height: 320px;
  }

  .hm-history-hero {
    min-height: 640px;
  }

  .hm-history-hero-grid {
    min-height: 330px;
    padding-top: 122px;
  }

  .hm-history-hero h1 {
    font-size: 42px;
  }

  .hm-history-awards strong {
    font-size: 23px;
  }

  .hm-history-intro h2,
  .hm-history-period-title h2 {
    font-size: 34px;
  }

  .hm-history-intro p,
  .hm-history-row li {
    font-size: 16px;
  }

  .hm-history-row-year {
    font-size: 24px;
  }

  .hm-history-row img {
    height: 210px;
  }

  body:has(.hm-history-page) .site-footer {
    margin: 0 16px 16px;
    padding: 34px 22px;
  }

  body:has(.hm-message-page) .site-footer {
    margin: 0 16px 16px;
    padding: 34px 22px;
  }

  .hm-project-content li,
  .hm-family-info dl,
  .hm-history-content li,
  .hm-way-column article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hm-history-index,
  .hm-page-tabs,
  .hm-filter-row {
    gap: 8px;
  }

  .hm-history-index a,
  .hm-page-tabs a,
  .hm-filter-row a,
  .hm-arrow-link {
    min-height: 42px;
    padding: 0 14px;
    font-size: 14px;
  }

  .hm-page-tabs {
    margin-bottom: 44px;
  }

  .hm-project-hero {
    min-height: 380px;
    padding: 0 16px 62px;
  }

  .hm-family-hero {
    min-height: 380px;
    padding: 0 16px 62px;
  }

  .hm-project-hero-grid {
    padding-top: 150px;
  }

  .hm-family-hero-grid {
    padding-top: 150px;
  }

  .hm-project-hero h1 {
    font-size: 42px;
  }

  .hm-family-hero h1 {
    font-size: 42px;
  }

  .hm-project-hero strong {
    font-size: 22px;
  }

  .hm-family-hero strong {
    font-size: 22px;
  }

  .hm-project-tabs {
    grid-template-columns: 1fr;
  }

  .hm-client-family-card {
    min-height: 0;
    padding: 18px;
  }

  .hm-client-logo-box {
    min-height: 180px;
  }

  .hm-client-info h2 {
    font-size: 23px;
  }

  .hm-client-info dl {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .hm-culture-content h2 {
    font-size: 28px;
  }

  .hm-culture-data li {
    grid-template-columns: 1fr;
    gap: 2px;
    padding: 7px 0;
  }

  .hm-culture-arrow {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }
}

/* Business page: HM asset-management reference rhythm */
.hm-business-page {
  word-break: keep-all;
}

body:has(.hm-business-page) {
  background: #fff;
}

body:has(.hm-business-page) .site-header.is-top {
  color: #fff;
}

body:has(.hm-business-page) .site-header.is-top::before {
  opacity: 0;
}

body:has(.hm-business-page) .site-footer {
  margin: 0 30px 30px;
  padding: 56px 40px 46px;
  border-radius: var(--radius);
  background: #f4f4f4;
}

.hm-business-hero {
  position: relative;
  height: max(138vh, 1500px);
  margin: 0;
  background: #fff;
}

.hm-business-hero-stage {
  --business-bg-left: 0px;
  --business-bg-top: 0px;
  --business-bg-width: 100vw;
  --business-bg-height: 100vh;
  --business-bg-radius: 0px;
  --business-content-top: 50vh;
  --business-overlay-opacity: 0.62;
  --business-fg: 255 255 255;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: #fff;
}

.hm-business-hero-bg {
  position: absolute;
  top: var(--business-bg-top);
  left: var(--business-bg-left);
  z-index: 1;
  width: var(--business-bg-width);
  height: var(--business-bg-height);
  overflow: hidden;
  border-radius: var(--business-bg-radius);
  background: var(--navy-deep);
  will-change: top, left, width, height, border-radius;
}

.hm-business-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 30, 64, 0.74), rgba(0, 30, 64, 0.2) 48%, rgba(0, 30, 64, 0.62)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 25, 54, 0.42));
  opacity: var(--business-overlay-opacity);
  transition: opacity 0.18s linear;
}

.hm-business-hero-bg img {
  transform: scale(1.04);
}

.hm-business-hero-copy {
  position: absolute;
  top: var(--business-content-top);
  right: 30px;
  left: 30px;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.35fr 1fr;
  align-items: center;
  gap: 36px;
  color: rgb(var(--business-fg));
  transform: translateY(-50%);
  will-change: top, color;
}

.hm-business-hero-copy strong {
  font-size: 30px;
  font-weight: 900;
  line-height: 1.15;
}

.hm-business-hero-copy h1 {
  margin: 0;
  font-size: 64px;
  font-weight: 900;
  line-height: 1.08;
  text-align: center;
  white-space: nowrap;
}

.hm-business-hero-copy p {
  justify-self: end;
  max-width: 430px;
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.75;
}

.hm-business-section,
.hm-business-detail {
  width: min(100% - 60px, 1400px);
  margin: 0 auto;
}

.hm-business-section {
  padding: 112px 0 118px;
}

.hm-business-overview {
  padding-top: 122px;
}

.hm-business-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 86px;
  align-items: start;
}

.hm-business-label {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 42px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
}

.hm-business-label span {
  color: #777f88;
}

.hm-business-copy h2,
.hm-business-detail-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(48px, 3.2vw, 72px);
  font-weight: 900;
  line-height: 1.2;
}

.hm-business-copy p,
.hm-business-text p,
.hm-business-detail-row p,
.hm-business-detail-row li {
  color: #303a45;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.85;
}

.hm-business-copy p {
  max-width: 660px;
  margin: 36px 0 0;
}

.hm-business-photo {
  height: 390px;
  margin: 74px 0 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #edf1f5;
}

.hm-business-photo img {
  transform: scale(1.04);
}

.hm-business-text {
  padding-top: 85px;
}

.hm-business-text p {
  max-width: 690px;
  margin: 0 0 72px;
}

.hm-business-flow {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hm-business-flow li {
  position: relative;
  display: grid;
  flex: 1 1 0;
  min-height: 98px;
  place-items: center;
  padding: 18px 26px;
  border: 3px solid var(--navy);
  border-radius: 999px;
  color: var(--navy);
  background: #fff;
  text-align: center;
}

.hm-business-flow li + li {
  margin-left: 34px;
}

.hm-business-flow li + li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -37px;
  width: 38px;
  height: 3px;
  background: var(--navy);
  transform: translateY(-50%);
}

.hm-business-flow span {
  display: block;
  color: #6e8091;
  font-size: 14px;
  font-weight: 900;
}

.hm-business-flow strong {
  display: block;
  margin-top: 4px;
  font-size: 19px;
  font-weight: 900;
}

.hm-business-band {
  display: flex;
  align-items: stretch;
  width: calc(100% - 60px);
  min-height: 520px;
  margin: 0 auto 142px;
  overflow: hidden;
  border-radius: var(--radius);
}

.hm-business-band article {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1 1 0;
  min-width: 0;
  min-height: 520px;
  padding: 34px 34px 42px;
  overflow: hidden;
  background: #2d83d8;
  color: #fff;
  cursor: pointer;
  transition:
    flex-grow 0.72s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.48s ease,
    background-color 0.48s ease;
  will-change: flex-grow;
}

.hm-business-band article:hover {
  flex-grow: 2.95;
}

.hm-business-band:has(article:hover) article:not(:hover) {
  filter: saturate(0.92) brightness(0.92);
}

.hm-business-band article:nth-child(2) {
  background: #1c64c4;
}

.hm-business-band article:nth-child(4) {
  background: #002d58;
}

.hm-business-band article.is-image {
  background: #014a90;
}

.hm-business-band article.is-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 41, 86, 0.54);
}

.hm-business-band img {
  position: absolute;
  inset: 0;
  z-index: 0;
  transform: scale(1.04);
  transition: transform 0.82s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.hm-business-band article:hover img {
  transform: scale(1.12);
}

.hm-business-band span,
.hm-business-band h3,
.hm-business-band ul {
  position: relative;
  z-index: 2;
}

.hm-business-band span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  font-weight: 900;
}

.hm-business-band h3 {
  margin: auto 0 28px;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.24;
  transform-origin: left bottom;
  transition:
    transform 0.56s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.36s ease;
}

.hm-business-band article:hover h3 {
  transform: translate3d(0, -8px, 0);
}

.hm-business-band ul,
.hm-business-detail-row ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hm-business-band li {
  position: relative;
  padding-left: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.8;
  opacity: 0.84;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 0.46s ease,
    transform 0.46s cubic-bezier(0.16, 1, 0.3, 1);
}

.hm-business-band article:hover li {
  opacity: 1;
  transform: translate3d(6px, 0, 0);
}

.hm-business-band:has(article:hover) article:not(:hover) li {
  opacity: 0.58;
}

.hm-business-band li::before,
.hm-business-detail-row li::before {
  content: "";
  position: absolute;
  top: 0.85em;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
}

.hm-business-detail {
  padding: 0 0 150px;
}

.hm-business-detail-head {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) 1fr;
  gap: 82px;
  align-items: start;
  margin-bottom: 72px;
}

.hm-business-detail-head h2 {
  max-width: 760px;
}

.hm-business-detail-list {
  border-top: 1px solid rgba(0, 41, 86, 0.2);
}

.hm-business-detail-row {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) 1fr;
  gap: 82px;
  min-height: 250px;
  padding: 42px 0;
  border-bottom: 1px solid rgba(0, 41, 86, 0.2);
}

.hm-business-detail-row span {
  display: inline-block;
  margin-bottom: 24px;
  color: #6e8091;
  font-size: 18px;
  font-weight: 900;
}

.hm-business-detail-row h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(34px, 2.6vw, 52px);
  font-weight: 900;
  line-height: 1.16;
}

.hm-business-detail-row p {
  margin: 22px 0 0;
  color: #4a5360;
}

.hm-business-detail-row li {
  position: relative;
  padding: 0 0 10px 18px;
}

.hm-business-reveal {
  opacity: var(--business-reveal-opacity, 0.08);
  filter: blur(var(--business-reveal-blur, 5px));
  transform: translate3d(0, var(--business-reveal-y, 58px), 0);
  transition:
    opacity 0.32s ease,
    filter 0.32s ease,
    transform 0.32s ease;
}

@media (max-width: 1199px) {
  .hm-business-hero {
    height: 122vh;
  }

  .hm-business-hero-copy {
    grid-template-columns: 1fr;
    align-content: end;
    gap: 18px;
    top: auto;
    right: 24px;
    bottom: 78px;
    left: 24px;
    transform: none;
  }

  .hm-business-hero-copy h1 {
    font-size: 48px;
    text-align: left;
  }

  .hm-business-hero-copy p {
    justify-self: start;
    max-width: 560px;
    font-size: 16px;
  }

  .hm-business-section,
  .hm-business-detail {
    width: min(100% - 32px, 760px);
  }

  .hm-business-section {
    padding: 82px 0;
  }

  .hm-business-grid,
  .hm-business-detail-head,
  .hm-business-detail-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hm-business-photo {
    height: auto;
    margin-top: 0;
    aspect-ratio: 1 / 0.62;
  }

  .hm-business-text {
    padding-top: 0;
  }

  .hm-business-flow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .hm-business-flow li + li {
    margin-left: 0;
  }

  .hm-business-flow li + li::before {
    display: none;
  }

  .hm-business-band {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: min(100% - 32px, 760px);
  }

  .hm-business-band article {
    flex: none;
    min-height: 390px;
  }
}

@media (max-width: 640px) {
  .hm-business-hero-copy h1,
  .hm-business-copy h2,
  .hm-business-detail-head h2 {
    font-size: 38px;
  }

  .hm-business-hero-copy strong {
    font-size: 22px;
  }

  .hm-business-flow,
  .hm-business-band {
    grid-template-columns: 1fr;
  }

  .hm-business-band article {
    min-height: 340px;
    padding: 28px 24px 34px;
  }

  .hm-business-detail-row {
    min-height: 0;
    padding: 34px 0;
  }
}

/* Company overview page: HM about reference rhythm */
.hm-about-page {
  word-break: keep-all;
}

.hm-about-hero {
  position: relative;
  height: 140vh;
  margin: 0;
  background: #fff;
}

.hm-about-hero-stage {
  --hero-bg-left: 0px;
  --hero-bg-top: 0px;
  --hero-bg-width: 100vw;
  --hero-bg-height: 100vh;
  --hero-bg-radius: 0px;
  --hero-content-top: 50vh;
  --hero-overlay-opacity: 0.55;
  --hero-fg: 255 255 255;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: #fff;
}

.hm-about-hero-bg {
  position: absolute;
  top: var(--hero-bg-top);
  left: var(--hero-bg-left);
  z-index: 1;
  width: var(--hero-bg-width);
  height: var(--hero-bg-height);
  overflow: hidden;
  border-radius: var(--hero-bg-radius);
  background: var(--navy-deep);
  will-change: top, left, width, height, border-radius;
}

.hm-about-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 30, 64, 0.74), rgba(0, 30, 64, 0.18) 46%, rgba(0, 30, 64, 0.62)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 25, 54, 0.46));
  opacity: var(--hero-overlay-opacity);
  transition: opacity 0.18s linear;
}

.hm-about-hero-bg img {
  transform: scale(1.04);
}

.hm-about-hero-content {
  position: absolute;
  top: var(--hero-content-top);
  right: 30px;
  left: 30px;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.35fr 1fr;
  align-items: center;
  gap: 36px;
  color: rgb(var(--hero-fg));
  transform: translateY(-50%);
  will-change: top, color;
}

.hm-about-hero-content strong {
  font-size: 30px;
  font-weight: 900;
}

.hm-about-hero-content h1 {
  margin: 0;
  font-size: 64px;
  font-weight: 900;
  line-height: 1.08;
  text-align: center;
  white-space: nowrap;
}

.hm-about-hero-content p {
  justify-self: end;
  max-width: 420px;
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.75;
}

.hm-about-page .hm-vision-section {
  padding: 118px 0 92px;
}

.hm-about-page .hm-center-title h2 {
  max-width: 1120px;
  color: #15579b;
  font-size: 72px;
  text-transform: uppercase;
}

.hm-about-page .hm-center-title h3 {
  margin-top: 58px;
  font-size: 34px;
}

.hm-about-page .hm-center-title p {
  max-width: 820px;
  font-size: 20px;
  line-height: 1.9;
}

.hm-about-page .about-story {
  --about-media-width: calc(100vw - 60px);
  --about-media-left: 30px;
  --about-text-left: 50%;
  --about-text-width: 50%;
  --about-card-height: 250px;
  display: block;
  position: relative;
  width: auto;
  min-height: 335vh;
  margin: 0;
  padding: 0 0 150px;
}

.hm-about-page .about-story .hm-split-media {
  position: sticky;
  top: 10vh;
  z-index: 1;
  width: var(--about-media-width);
  height: 80vh;
  margin-left: var(--about-media-left);
  overflow: visible;
  border-radius: var(--radius);
  background: transparent;
  box-shadow: none;
  transition: width 0.2s linear;
}

.hm-about-page .about-story .hm-split-text {
  position: relative;
  z-index: 2;
  display: grid;
  width: var(--about-text-width);
  margin-top: -80vh;
  margin-left: var(--about-text-left);
  padding: 72vh 0 0 78px;
  gap: 0;
}

.hm-about-page .about-story .hm-text-block {
  min-height: 100vh;
}

.hm-about-page .about-story .hm-text-block strong {
  color: #111;
  font-size: 20px;
  font-weight: 800;
}

.hm-about-page .about-story .hm-text-block h3 {
  max-width: 650px;
  margin-top: 30px;
  color: #050505;
  font-size: 52px;
  font-weight: 900;
  line-height: 1.2;
}

.hm-about-page .about-story .hm-text-block p {
  max-width: 720px;
  margin-top: 30px;
  color: #444;
  font-size: 20px;
  line-height: 1.85;
}

.hm-about-page .about-story-media img {
  position: absolute;
  inset: auto;
  top: 0;
  width: calc(33.33% - 14px);
  height: var(--about-card-height);
  opacity: 1;
  border-radius: var(--radius);
  object-position: center center;
  transform: translate3d(0, 0, 0) scale(1);
  transition:
    left 0.5s linear,
    width 0.5s linear,
    height 0.5s linear,
    opacity 0.85s ease,
    transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.hm-about-page .about-story-media img:nth-child(1) {
  left: calc(66.66% + 20px);
  z-index: 3;
}

.hm-about-page .about-story-media img:nth-child(2) {
  left: calc(33.33% + 10px);
  z-index: 2;
}

.hm-about-page .about-story-media img:nth-child(3) {
  left: 0;
  z-index: 1;
}

.hm-about-page .about-story-media.is-focused {
  overflow: hidden;
  background: #e7edf3;
}

.hm-about-page .about-story-media.is-focused img {
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1.045);
}

.hm-about-page .about-story-media.is-focused img.is-active {
  z-index: 4;
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 1199px) {
  .hm-about-hero {
    height: 140vh;
  }

  .hm-about-hero-content {
    grid-template-columns: 1fr;
    align-content: end;
    gap: 18px;
  }

  .hm-about-hero-content h1 {
    font-size: 48px;
    text-align: left;
    white-space: normal;
  }

  .hm-about-hero-content p {
    max-width: 620px;
  }

  .hm-about-page .hm-vision-section {
    padding: 96px 0 76px;
  }

  .hm-about-page .hm-center-title h2 {
    font-size: 48px;
  }

  .hm-about-page .about-story {
    min-height: 0;
    padding: 0 16px 96px;
  }

  .hm-about-page .about-story .hm-split-media {
    position: relative;
    top: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 0.68;
    overflow: hidden;
    background: #e7edf3;
  }

  .hm-about-page .about-story .hm-split-media img,
  .hm-about-page .about-story-media.is-focused img {
    left: 0;
    width: 100%;
    height: 100%;
  }

  .hm-about-page .about-story .hm-split-text {
    width: 100%;
    margin-top: 42px;
    margin-left: 0;
    padding: 0;
  }

  .hm-about-page .about-story .hm-text-block {
    min-height: 0;
    padding: 28px 0;
  }

  .hm-about-page .about-story .hm-text-block h3 {
    font-size: 38px;
  }
}

@media (max-width: 640px) {
  .hm-about-hero-content {
    right: 24px;
    left: 24px;
  }

  .hm-about-hero-content h1 {
    font-size: 38px;
  }

  .hm-about-page .hm-center-title h2 {
    font-size: 34px;
  }

  .hm-about-page .hm-center-title h3 {
    font-size: 25px;
    line-height: 1.35;
  }

  .hm-about-page .hm-center-title p,
  .hm-about-page .about-story .hm-text-block p {
    font-size: 16px;
  }

}

body .site-footer,
body:has(.hm-message-page) .site-footer,
body:has(.hm-history-page) .site-footer,
body:has(.hm-business-page) .site-footer {
  margin: 100px 30px 30px;
  padding: 42px 40px 36px;
  border: 0;
  border-radius: var(--radius);
  background: #f4f4f4;
}

@media (max-width: 640px) {
  body .site-footer,
  body:has(.hm-message-page) .site-footer,
  body:has(.hm-history-page) .site-footer,
  body:has(.hm-business-page) .site-footer {
    margin: 72px 16px 16px;
    padding: 34px 24px 30px;
  }

  .footer-brand {
    width: 96px;
    height: 66px;
    margin-bottom: 18px;
  }

  .site-footer p span {
    display: block;
    margin-right: 0;
  }
}
