@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("assets/fonts/manrope-latin-variable.woff2") format("woff2-variations");
}

:root {
  --navy: #151a36;
  --navy-soft: #222845;
  --blue: #1d4770;
  --ink: #17233a;
  --muted: #647188;
  --line: #dbe2ea;
  --mist: #edf4f6;
  --paper: #f8fafb;
  --white: #ffffff;
  --teal: #5eb6be;
  --copper: #d18a3d;
  --plum: #b24c79;
  --max: 1180px;
  --shadow: 0 24px 60px rgba(21, 26, 54, 0.14);
  color-scheme: light;
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

.icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  flex: 0 0 auto;
  background-color: currentColor;
  -webkit-mask: var(--icon-url) center / contain no-repeat;
  mask: var(--icon-url) center / contain no-repeat;
}

.icon-arrow-down { --icon-url: url("assets/icons/arrow-down.svg"); }
.icon-arrow-left { --icon-url: url("assets/icons/arrow-left.svg"); }
.icon-arrow-right { --icon-url: url("assets/icons/arrow-right.svg"); }
.icon-arrow-up-right { --icon-url: url("assets/icons/arrow-up-right.svg"); }
.icon-menu { --icon-url: url("assets/icons/menu.svg"); }
.icon-rotate-3d { --icon-url: url("assets/icons/rotate-3d.svg"); }
.icon-send { --icon-url: url("assets/icons/send.svg"); }
.icon-undo-2 { --icon-url: url("assets/icons/undo-2.svg"); }
.icon-x { --icon-url: url("assets/icons/x.svg"); }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

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

button {
  color: inherit;
}

[hidden] {
  display: none !important;
}

.wrap {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 86px;
  background: rgba(21, 26, 54, 0.97);
  color: var(--white);
  transition: min-height 220ms ease, box-shadow 220ms ease;
}

.site-header.is-compact {
  min-height: 64px;
  box-shadow: 0 10px 30px rgba(10, 14, 34, 0.2);
}

.nav-shell {
  width: min(1240px, calc(100% - 48px));
  min-height: 86px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  transition: min-height 220ms ease;
}

.is-compact .nav-shell {
  min-height: 64px;
}

.brand {
  min-width: 323px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 66px;
  height: 66px;
  display: block;
  object-fit: contain;
  flex: 0 0 auto;
  transition: width 220ms ease, height 220ms ease;
}

.is-compact .brand-mark {
  width: 48px;
  height: 48px;
}

.brand-lockup {
  display: grid;
  align-items: start;
  gap: 4px;
  line-height: 1;
}

.brand-wordmark {
  width: 245px;
  height: auto;
  display: block;
  object-fit: contain;
  flex: 0 1 auto;
  transition: width 220ms ease;
}

.is-compact .brand-wordmark {
  width: 208px;
}

.brand-tagline {
  color: rgba(255, 255, 255, 0.92);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1.15;
  white-space: nowrap;
  transition: font-size 220ms ease;
}

.is-compact .brand-lockup {
  gap: 2px;
}

.is-compact .brand-tagline {
  font-size: 8.5px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  font-size: 14px;
}

.desktop-nav a {
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.78);
  border-bottom: 2px solid transparent;
  transition: color 160ms ease, border-color 160ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--white);
  border-color: var(--copper);
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle .icon {
  width: 22px;
  height: 22px;
}

.mobile-nav {
  position: fixed;
  inset: 64px 0 0;
  z-index: 49;
  padding: 26px 24px;
  background: var(--navy);
}

.mobile-nav a {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-size: 18px;
}

.home-hero {
  min-height: min(660px, calc(100vh - 125px));
  position: relative;
  display: flex;
  align-items: stretch;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(16, 23, 50, 0.78) 0%, rgba(16, 23, 50, 0.57) 44%, rgba(16, 23, 50, 0.12) 76%),
    url("assets/hero-singapore.jpg") center 48% / cover;
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 130px;
  background: linear-gradient(180deg, rgba(16, 23, 50, 0), rgba(16, 23, 50, 0.35));
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: min(660px, calc(100vh - 125px));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 0 62px;
}

.eyebrow {
  margin: 0 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 54px;
  height: 2px;
  background: var(--copper);
}

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

h1 {
  max-width: 850px;
  margin-bottom: 24px;
  font-size: 60px;
  line-height: 1.08;
  font-weight: 520;
}

.hero-lead {
  max-width: 700px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 21px;
}

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

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.btn-primary {
  background: var(--copper);
  color: var(--white);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.64);
  background: rgba(21, 26, 54, 0.2);
  color: var(--white);
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
}

.hero-signal {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 28px;
  display: grid;
  grid-template-columns: repeat(3, 120px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(21, 26, 54, 0.66);
  backdrop-filter: blur(12px);
}

.hero-signal div {
  min-height: 82px;
  padding: 14px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-signal div:last-child {
  border-right: 0;
}

.hero-signal strong {
  display: block;
  font-size: 21px;
}

.hero-signal span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
}

.section {
  padding: 92px 0;
}

.section.alt {
  background: var(--mist);
}

.section.navy {
  background: var(--navy);
  color: var(--white);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(300px, 0.52fr);
  gap: 58px;
  align-items: end;
  margin-bottom: 44px;
}

.kicker {
  margin-bottom: 11px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 0;
  color: var(--navy);
  font-size: 42px;
  line-height: 1.17;
  font-weight: 520;
}

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

.section-head > p,
.section-copy {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.navy .section-head > p,
.navy .section-copy {
  color: rgba(255, 255, 255, 0.72);
}

.company-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) 500px;
  gap: 66px;
  align-items: center;
}

.company-copy h2 {
  margin-bottom: 30px;
}

.company-copy p {
  color: #47566e;
  font-size: 16px;
}

.risk-architecture {
  width: 500px;
  min-height: 510px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 138px 1fr;
  grid-template-rows: auto repeat(4, 1fr);
  border: 1px solid #cfd8e3;
  border-top: 4px solid var(--copper);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.risk-architecture-head {
  grid-column: 1 / -1;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.risk-architecture-head span {
  color: var(--copper);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.risk-architecture-head strong {
  color: var(--navy);
  font-size: 14px;
}

.risk-core {
  grid-row: 2 / 6;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--navy);
  color: var(--white);
}

.risk-core span {
  color: var(--copper);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.risk-core strong {
  margin: 12px 0;
  font-size: 22px;
  line-height: 1.2;
}

.risk-core p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.risk-node {
  min-height: 92px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.risk-node:last-child {
  border-bottom: 0;
}

.risk-node > span {
  color: var(--copper);
  font-size: 12px;
  font-weight: 800;
}

.risk-node strong,
.risk-node small {
  display: block;
}

.risk-node strong {
  color: var(--navy);
  font-size: 14px;
}

.risk-node small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.services-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 28px;
}

.service-visual {
  min-height: 560px;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(21, 26, 54, 0.12), rgba(21, 26, 54, 0.76)),
    url("assets/world-map.jpg") center / cover;
  box-shadow: var(--shadow);
}

.service-visual-copy {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  color: var(--white);
}

.service-visual-copy strong {
  display: block;
  margin-bottom: 8px;
  font-size: 24px;
}

.service-visual-copy p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.service-grid,
.value-grid,
.competency-grid,
.case-grid,
.insight-grid,
.contact-grid {
  display: grid;
  gap: 18px;
}

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

.service-card {
  min-height: 271px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(209, 138, 61, 0.5);
  box-shadow: 0 16px 38px rgba(21, 26, 54, 0.1);
}

.service-number {
  display: block;
  margin-bottom: 24px;
  color: var(--copper);
  font-size: 13px;
  font-weight: 800;
}

.service-card h3 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.25;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

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

.value-item,
.competency-card,
.insight-card {
  border-top: 3px solid var(--copper);
  background: var(--white);
}

.value-item,
.competency-card {
  min-height: 220px;
  padding: 28px;
}

.value-item h3,
.competency-card h3 {
  color: var(--navy);
  font-size: 20px;
}

.value-item p,
.competency-card p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.process-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 26px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.process-item strong {
  color: var(--copper);
  font-size: 24px;
}

.process-item h3 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 21px;
}

.process-item p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

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

.case-flip {
  height: 560px;
  perspective: 1400px;
  cursor: pointer;
  outline: none;
}

.case-flip:focus-visible {
  outline: 3px solid rgba(209, 138, 61, 0.65);
  outline-offset: 4px;
}

.case-flip-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 560ms cubic-bezier(.2, .72, .2, 1);
}

.case-flip.is-flipped .case-flip-inner {
  transform: rotateY(180deg);
}

.case-face {
  position: absolute;
  inset: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.case-front img {
  width: 100%;
  height: 245px;
  flex: 0 0 auto;
  object-fit: cover;
}

.case-front-copy {
  min-height: 0;
  padding: 26px 28px 24px;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.case-face span {
  display: block;
  margin-bottom: 13px;
  color: var(--copper);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.case-face h3 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 23px;
  line-height: 1.28;
}

.case-face p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.case-action {
  margin-top: auto;
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid var(--line);
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.case-action .icon {
  width: 18px;
  height: 18px;
  color: var(--copper);
}

.case-back {
  padding: 28px;
  justify-content: space-between;
  transform: rotateY(180deg);
  background: var(--navy);
  color: var(--white);
}

.case-back h3 {
  color: var(--white);
}

.case-back p {
  margin-bottom: 13px;
  color: rgba(255, 255, 255, 0.73);
  font-size: 13px;
  line-height: 1.58;
}

.case-back p strong {
  color: var(--white);
}

.case-back .case-action {
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--white);
}

.page-hero.team-hero {
  background:
    linear-gradient(90deg, rgba(21, 26, 54, 0.9), rgba(21, 26, 54, 0.42)),
    url("assets/team-office.jpg") center / cover;
}

.team-profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.82fr);
  gap: 70px;
  align-items: start;
}

.team-profile-copy h2 {
  margin-bottom: 28px;
}

.team-profile-copy > p {
  color: #47566e;
}

.team-profile-image {
  min-height: 240px;
  margin-top: 30px;
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(21, 26, 54, 0.05), rgba(21, 26, 54, 0.44)),
    url("assets/team-collaboration.jpg") center / cover;
}

.competency-list {
  border-top: 4px solid var(--copper);
  background: var(--navy);
  color: var(--white);
}

.competency-list article {
  min-height: 130px;
  padding: 24px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.competency-list article:last-child {
  border-bottom: 0;
}

.competency-list span {
  color: var(--copper);
  font-size: 13px;
  font-weight: 800;
}

.competency-list h3 {
  margin-bottom: 7px;
  font-size: 18px;
}

.competency-list p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 46px 24px;
}

.team-member {
  min-width: 0;
  display: block;
  color: var(--ink);
}

.team-portrait {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  filter: saturate(.72) contrast(.96);
  transition: filter 220ms ease, transform 220ms ease;
}

.team-member:hover .team-portrait {
  filter: saturate(1) contrast(1);
  transform: scale(1.012);
}

.team-member-copy {
  position: relative;
  padding: 18px 30px 0 0;
  border-top: 2px solid transparent;
}

.team-member-copy > span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.team-member-copy h3 {
  margin: 0 0 5px;
  color: var(--navy);
  font-size: 19px;
  line-height: 1.25;
}

.team-member-copy .icon {
  width: 18px;
  height: 18px;
  position: absolute;
  right: 0;
  top: 20px;
  color: var(--copper);
  transition: transform 180ms ease;
}

.team-member:hover .team-member-copy .icon {
  transform: translate(2px, -2px);
}

.profile-page {
  background: var(--paper);
}

.profile-shell {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: 72px;
  align-items: start;
}

.profile-photo-wrap {
  position: sticky;
  top: 96px;
}

.profile-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
  filter: saturate(.8) contrast(.96);
}

.profile-copy .kicker {
  margin-bottom: 15px;
}

.profile-copy h1 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 52px;
}

.profile-role {
  margin-bottom: 30px;
  color: var(--copper);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.profile-intro {
  margin-bottom: 30px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.55;
}

.profile-bio p {
  color: #47566e;
}

.profile-focus {
  margin: 32px 0;
  padding: 22px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.profile-focus span {
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}

.profile-back {
  margin-bottom: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.profile-back .icon {
  width: 17px;
  height: 17px;
}

.insight-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-top: 3px solid var(--copper);
  border-radius: 6px;
}

.insight-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.insight-body {
  padding: 23px;
}

.insight-body span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.insight-body h3 {
  margin: 8px 0 10px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.3;
}

.insight-body p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.page-hero {
  min-height: 460px;
  position: relative;
  display: flex;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(21, 26, 54, 0.86), rgba(21, 26, 54, 0.52)),
    url("assets/hero-singapore.jpg") center 52% / cover;
}

.page-hero.port {
  background:
    linear-gradient(90deg, rgba(21, 26, 54, 0.88), rgba(21, 26, 54, 0.46)),
    url("assets/supply-chain-port.jpg") center / cover;
}

.page-hero.about-hero {
  background:
    linear-gradient(90deg, rgba(21, 26, 54, 0.88), rgba(21, 26, 54, 0.48)),
    url("assets/hero-about.jpg") center / cover;
}

.page-hero.services-hero {
  background:
    linear-gradient(90deg, rgba(21, 26, 54, 0.88), rgba(21, 26, 54, 0.42)),
    url("assets/hero-services.jpg") center / cover;
}

.page-hero.contact-hero {
  background:
    linear-gradient(90deg, rgba(21, 26, 54, 0.9), rgba(21, 26, 54, 0.44)),
    url("assets/hero-contact.jpg") center / cover;
}

.page-hero-inner {
  padding: 74px 0;
}

.page-hero h1 {
  max-width: 800px;
}

.page-hero p {
  max-width: 690px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
}

.split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 42px;
  align-items: stretch;
}

.image-panel {
  min-height: 500px;
  border-radius: 6px;
  background: url("assets/supply-chain-port.jpg") center / cover;
  box-shadow: var(--shadow);
}

.copy-panel {
  padding: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.copy-panel h2 {
  margin-bottom: 26px;
}

.copy-panel p {
  color: var(--muted);
}

.contact-grid {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: start;
}

.form-panel,
.contact-panel {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
  margin-bottom: 16px;
}

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

.field label {
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

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

.cf-turnstile {
  min-height: 65px;
  margin: 2px 0 14px;
}

.form-status {
  min-height: 22px;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
}

.form-status.is-success {
  color: #17663a;
}

.form-status.is-error {
  color: #a12d2d;
}

.form-panel .btn:disabled {
  cursor: wait;
  opacity: 0.68;
}

.contact-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.contact-item:first-child {
  padding-top: 0;
}

.contact-item:last-child {
  border-bottom: 0;
}

.contact-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
}

.contact-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.cta-band {
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-radius: 6px;
  background: var(--blue);
  color: var(--white);
}

.cta-band h2 {
  color: var(--white);
  font-size: 34px;
}

.cta-band p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
}

.site-footer {
  padding: 56px 0 28px;
  background: #0e132b;
  color: rgba(255, 255, 255, 0.68);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 42px;
  align-items: start;
  padding-bottom: 36px;
}

.footer-brand {
  max-width: 520px;
}

.footer-brand strong {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
  font-size: 22px;
}

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

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 10px 28px;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
}

.footer-bottom span:last-child {
  max-width: 660px;
  text-align: right;
}

@media (max-width: 1020px) {
  .desktop-nav {
    gap: 18px;
  }

  .company-intro,
  .split,
  .contact-grid,
  .team-profile-layout {
    grid-template-columns: 1fr;
  }

  .risk-architecture {
    margin-top: 16px;
  }

  .services-layout {
    grid-template-columns: 1fr;
  }

  .service-visual {
    min-height: 360px;
  }

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

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

@media (max-width: 820px) {
  .site-header,
  .site-header.is-compact,
  .nav-shell,
  .is-compact .nav-shell {
    min-height: 64px;
  }

  .nav-shell {
    width: min(100% - 28px, 1240px);
  }

  .brand {
    min-width: 0;
  }

  .brand-mark,
  .is-compact .brand-mark {
    width: 44px;
    height: 44px;
  }

  .brand-lockup,
  .is-compact .brand-lockup {
    gap: 2px;
  }

  .brand-wordmark,
  .is-compact .brand-wordmark {
    width: 150px;
  }

  .brand-tagline,
  .is-compact .brand-tagline {
    font-size: 7.5px;
    letter-spacing: 0.015em;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .home-hero,
  .hero-inner {
    min-height: 650px;
  }

  .hero-inner {
    padding: 64px 0 150px;
  }

  h1 {
    font-size: 45px;
  }

  .hero-signal {
    left: 0;
    right: auto;
    grid-template-columns: repeat(3, minmax(90px, 1fr));
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

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

  .profile-shell {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .profile-photo-wrap {
    position: static;
  }

  .profile-photo {
    max-width: 520px;
  }

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

@media (max-width: 620px) {
  .wrap {
    width: min(var(--max), calc(100% - 28px));
  }

  .home-hero {
    background:
      linear-gradient(180deg, rgba(16, 23, 50, 0.52), rgba(16, 23, 50, 0.8)),
      url("assets/hero-singapore.jpg") 57% center / cover;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 31px;
  }

  .hero-lead,
  .page-hero p {
    font-size: 17px;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-signal {
    position: static;
    width: 100%;
    margin-top: 24px;
  }

  .hero-inner {
    padding-bottom: 46px;
  }

  .hero-signal div {
    padding: 12px 10px;
  }

  .section {
    padding: 66px 0;
  }

  .risk-architecture {
    width: 100%;
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .risk-architecture-head,
  .risk-core,
  .risk-node {
    grid-column: 1;
    grid-row: auto;
  }

  .risk-core {
    min-height: 170px;
  }

  .service-grid,
  .value-grid,
  .competency-grid,
  .insight-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .case-flip {
    height: 640px;
  }

  .case-front img {
    height: 220px;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 14px;
  }

  .team-member-copy {
    padding-right: 24px;
  }

  .team-member-copy h3 {
    font-size: 16px;
  }

  .team-member-copy > span {
    font-size: 10px;
  }

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

  .profile-focus {
    grid-template-columns: 1fr;
  }

  .process-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .copy-panel,
  .form-panel,
  .contact-panel,
  .cta-band {
    padding: 24px;
  }

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .footer-bottom span:last-child {
    text-align: left;
  }
}
