/* =========================================================
FONTS
- DM Serif Display (headings)
- Inter (UI / micro / nav)
- Spectral (body text)
========================================================= */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Inter:wght@400;500;600&family=Spectral:ital,wght@0,400;0,500;1,400;1,500&display=swap');
/* =========================================================
GLOBAL TOKENS
========================================================= */
:root {
  /* layout */
  --nav-h: 96px;
  --container: 1120px;
  --site-pad: 0px;
  --wrap-w: min(calc(100vw - (var(--site-pad) * 2)), var(--container));

  /* shared spacing */
  --split-gap: 56px;
  --grid-gap: 24px;

  /* fonts */
  --font-serif: "DM Serif Display", serif;
  --font-sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-body: "Spectral", serif;

  /* colors */
  --paper: #F6F5F2;

  /* hero */
  --hero-bg: #1f2a44;
  --hero-text: #ffffff;

  /* whyvn (Figma) */
  --teal-90: rgba(47,111,122,.90);
  --teal-head-85: rgba(15,76,92,.85);
  --charcoal: #1F2328;
  --muted: #5F6E72;
}

/* =========================================================
RESET / PAGE OFFSET
========================================================= */
html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

/* =========================================================
SECTION SUBHEADING (GLOBAL)
========================================================= */
.ka-section-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-style: italic;
  font-size: 22px;
  line-height: 30px;
  letter-spacing: 0;
  color: var(--muted);
  margin: 0;
}

.ka-section-sub--center {
  text-align: center;
}

body {
  padding-top: var(--nav-h);
  background: var(--paper);
}

/* =========================
NAVBAR
========================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  height: 96px;
  background: #F6F5F2;
  border-bottom: 1px solid rgba(31, 35, 40, 0.08);
  transform: translateY(0);
  transition:
    transform 0.24s ease,
    background-color 0.24s ease,
    border-color 0.24s ease;
  will-change: transform;
}

body.nav-hidden .site-header {
  transform: translateY(calc(-1 * var(--nav-h)));
}

body.nav-revealed .site-header {
  transform: translateY(0);
}

.site-header__inner {
  width: var(--wrap-w);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-sizing: border-box;
}

.nav-logo {
  width: 118px;
  height: 41px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 0 0 auto;
  text-decoration: none;
}

.nav-logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.nav-right {
  flex: 1 1 auto;
  min-width: 0;
  height: 41px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  box-sizing: border-box;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  flex-wrap: nowrap;
  white-space: nowrap;
  min-width: 0;
  flex: 1 1 auto;
}

.site-nav a,
.nav-contact {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition:
    color 0.22s ease,
    border-color 0.22s ease,
    background-color 0.22s ease,
    opacity 0.22s ease;
}

.site-nav a {
  color: #1F2328;
  position: relative;
  white-space: nowrap;
  display: inline-block;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: #0F4C5C;
  opacity: 0;
  transform: scaleX(0.72);
  transform-origin: center;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.site-nav a:hover {
  color: #0F4C5C;
}

.site-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-contact {
  width: 90px;
  height: 41px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(15, 76, 92, 0.30);
  color: #0F4C5C;
  background: transparent;
  white-space: nowrap;
  box-sizing: border-box;
  flex: 0 0 auto;
}

.nav-contact:hover {
  background: rgba(15, 76, 92, 0.06);
  border-color: rgba(15, 76, 92, 0.42);
}

.ka-container {
  width: var(--wrap-w);
  height: 100%;
  margin: 0 auto;
  position: relative;
}

.nav-reveal-zone {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 24px;
  z-index: 10001;
  background: transparent;
}

@media (max-width: 1119px) {
  .site-header {
    height: 88px;
  }

  body {
    padding-top: 88px;
  }

  html {
    scroll-padding-top: 88px;
  }

  .site-header__inner {
    gap: 14px;
  }

 .nav-logo {
  width: 108px;
  height: 39px;
}

  .ka-footer__brand img {
  width: auto;
  height: 26px;
}


  .nav-right {
    gap: 12px;
    overflow: hidden;
  }

  .site-nav {
    gap: 10px;
    justify-content: flex-end;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 2px;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    flex: 0 0 auto;
    font-size: 12px;
    letter-spacing: 0.03em;
  }

  .nav-contact {
    width: auto;
    height: 39px;
    padding: 10px 12px;
    font-size: 12px;
    letter-spacing: 0.03em;
  }
}

/* =========================================================
HERO (HTML embed)
========================================================= */
.ka-hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  overflow: hidden;
}

.ka-hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background-image: url("https://khai2-preview.carrd.co/assets/images/image01.jpg?v=a5b02c7f");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.ka-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.48);
  z-index: 1;
  pointer-events: none;
}

.ka-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  z-index: 0;
}

/* Wrapper testo hero = 1120 centrato */
#heroText {
  position: absolute;
  z-index: 2;
  top: clamp(132px, 16vh, 180px);
  left: 0;
  width: min(600px, 54vw);
  max-width: 600px;
  color: var(--hero-text);

  display: flex;
  flex-direction: column;
  gap: 22px;
}

.ka-hero__eyebrow {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 13px;
  line-height: 18px;
  letter-spacing: .18em;
  color: rgba(255,255,255,.9);
  text-transform: uppercase;
  margin: 0;
}

.ka-hero__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 68px;
  line-height: 82px;
  margin: 0;
  color: rgba(255,255,255,.9);
  max-width: 600px;
}

.ka-hero__sub {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 400;
  font-size: 23px;
  line-height: 30px;
  color: rgba(255,255,255,.85);
  max-width: 600px;
  margin: 0;
}

.ka-hero__cta {
  display: flex;
  gap: 16px;
  margin-top: 8px;
  align-items: center;
}

.ka-btn {
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.05em;
}

.ka-btn--ghost {
  font-weight: 500;
  border: 1px solid rgba(255,255,255,.8);
  color: rgba(255,255,255,1);
  padding: 12px 18px;
  border-radius: 999px;
}

.ka-btn--text {
  font-weight: 400;
  color: rgba(255,255,255,.8);
}

.ka-btn {
  transition:
    color 0.22s ease,
    background-color 0.22s ease,
    border-color 0.22s ease,
    opacity 0.22s ease;
}

.ka-btn--ghost:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.95);
}

.ka-btn--text:hover {
  color: rgba(255,255,255,1);
}

@media (max-width: 1279px) {
  .ka-hero__title {
    font-size: 60px;
    line-height: 72px;
  }

  .ka-hero__sub {
    font-size: 21px;
    line-height: 29px;
  }
}

@media (max-width: 899px) {
  .ka-hero {
    min-height: max(680px, calc(100vh - var(--nav-h)));
  }

  #heroText {
    top: 128px;
    width: min(620px, 100%);
  }

  .ka-hero__title {
    font-size: 52px;
    line-height: 1.04;
    max-width: 100%;
  }

  .ka-hero__sub {
    font-size: 19px;
    line-height: 28px;
    max-width: 100%;
  }
}

@media (max-width: 719px) {
  .ka-hero {
    min-height: 620px;
  }

  #heroText {
    top: 112px;
    width: 100%;
    gap: 18px;
  }

  .ka-hero__title {
    font-size: 42px;
    line-height: 1.04;
  }

  .ka-hero__sub {
    font-size: 17px;
    line-height: 26px;
  }

  .ka-hero__cta {
    flex-wrap: wrap;
    gap: 12px;
  }
}

/* =========================================================
WHY VIETNAM NOW (range-based desktop-first pattern)
========================================================= */
.ka-wyvn {
  background: var(--paper);
  width: 100%;
}

.ka-wyvn__boat--mobile {
  display: none;
}

.ka-wyvn__wrap {
  width: var(--wrap-w);
  margin: 0 auto;
  padding: 88px 0;
}

.ka-wyvn__top {
  display: grid;
  grid-template-columns: minmax(360px, 464px) minmax(0, 1fr);
  column-gap: clamp(32px, 4vw, var(--split-gap));
  align-items: start;
}

.ka-micro {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-90);
  margin: 0 0 14px 0;
}

.ka-wyvn__left {
  min-width: 0;
  padding: 0 0 0 10px;
  box-sizing: border-box;
}

.ka-wyvn__h1 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 64px;
  line-height: 68px;
  color: var(--teal-90);
  margin: 0;
  max-width: 430px;
}

.ka-wyvn__intro {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 29px;
  letter-spacing: 0.012em;
  text-align: left;
  color: rgba(31, 35, 40, 0.78);
  margin: 16px 0 0 0;
  max-width: 392px;
}

.ka-wyvn__insights {
  margin-top: 22px;
  display: grid;
  gap: 0;
}

.ka-insight {
  display: grid;
  grid-template-columns: 30px 1fr;
  column-gap: 12px;
  align-items: start;
  padding: 12px 0;
  border-top: 1px solid rgba(47, 111, 122, 0.12);
}

.ka-insight:first-child {
  border-top: 1px solid rgba(47, 111, 122, 0.16);
}

.ka-insight__meta {
  padding-top: 2px;
}

.ka-insight__index {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 10px;
  line-height: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(47, 111, 122, 0.34);
}

.ka-insight__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: var(--teal-head-85);
  margin: 0 0 4px 0;
}

.ka-insight__body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.008em;
  color: rgba(31, 35, 40, 0.72);
  margin: 0;
  max-width: 286px;
}

.ka-wyvn__boat {
  width: 100%;
  aspect-ratio: 600 / 706;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  background: #d9d9d9;
}

.ka-wyvn__boatImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.ka-wyvn__focus {
  width: 100%;
  margin-top: 88px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ka-wyvn__focusMedia {
  width: min(820px, 100%);
  aspect-ratio: 820 / 360;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  background: #d9d9d9;
}

.ka-wyvn__focusImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.ka-wyvn__focusCard {
  width: min(820px, 100%);
  margin-top: 20px;
  padding: 0;
  background: transparent;
  text-align: left;
}

.ka-wyvn__focusCard .ka-micro {
  margin: 0 0 12px 0;
}

.ka-wyvn__focusTitle {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 25px;
  line-height: 31px;
  color: var(--teal-head-85);
  margin: 0 0 12px 0;
  max-width: 620px;
}

.ka-wyvn__focusBody {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 29px;
  letter-spacing: 0.012em;
  color: rgba(31, 35, 40, 0.78);
  margin: 0;
  max-width: 640px;
  text-align: left;
}

@media (max-width: 1279px) {
  .ka-wyvn__wrap {
    padding: 80px 0;
  }

  .ka-wyvn__top {
    grid-template-columns: minmax(300px, 390px) minmax(0, 1fr);
  }

  .ka-wyvn__h1 {
    font-size: 56px;
    line-height: 60px;
    max-width: 380px;
  }

  .ka-wyvn__intro {
    max-width: 360px;
  }

  .ka-wyvn__focus {
    margin-top: 72px;
  }
}

@media (max-width: 899px) {
  .ka-wyvn__wrap {
    padding: 72px 0 84px;
  }

  .ka-wyvn__top {
    grid-template-columns: 1fr;
    row-gap: 28px;
  }

  .ka-wyvn__left {
    padding: 0;
  }

  .ka-wyvn__h1 {
    font-size: 56px;
    line-height: 60px;
    max-width: none;
  }

  .ka-wyvn__intro,
  .ka-insight__body {
    max-width: none;
  }

  .ka-wyvn__boat {
    aspect-ratio: 16 / 10;
  }

  .ka-wyvn__focus {
    margin-top: 72px;
  }

  .ka-wyvn__focusMedia,
  .ka-wyvn__focusCard,
  .ka-wyvn__focusTitle,
  .ka-wyvn__focusBody {
    width: 100%;
    max-width: 100%;
  }

  .ka-wyvn__focusTitle {
    font-size: 22px;
    line-height: 28px;
  }
}

@media (max-width: 719px) {
  .ka-wyvn__wrap {
    padding: 64px 0 76px;
  }

  .ka-insight {
    grid-template-columns: 28px 1fr;
    column-gap: 10px;
  }

  .ka-wyvn__boat {
    aspect-ratio: 4 / 3;
  }
}

/* =========================================================
SERVICES (range-based desktop-first pattern)
========================================================= */
.ka-services {
  background: var(--paper);
  width: 100%;
}

.ka-services__wrap {
  width: var(--wrap-w);
  margin: 0 auto;
  padding: 88px 0 104px;
}

.ka-services__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 464px);
  column-gap: clamp(32px, 4vw, var(--split-gap));
  align-items: start;
}

.ka-services__eyebrow {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 13px;
  line-height: 18px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal-90);
  margin: 0 0 18px 0;
}

.ka-services__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 72px;
  line-height: 78px;
  letter-spacing: 0;
  color: var(--teal-90);
  margin: 0;
}

.ka-services__intro {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 29px;
  letter-spacing: 0.012em;
  color: rgba(31, 35, 40, 0.78);
  margin: 0;
  max-width: 464px;
  padding-top: 6px;
}

.ka-process {
  margin-top: 88px;
  position: relative;
  height: 72px;
  --ka-process-center-y: 24px;
}

.ka-process__line {
  position: absolute;
  left: 16.6667%;
  right: 16.6667%;
  top: var(--ka-process-center-y);
  height: 1px;
  background: rgba(47, 111, 122, 0.20);
  transform: translateY(-0.5px);
}

.ka-process__row {
  position: relative;
  z-index: 1;
  height: 72px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: clamp(16px, 2vw, var(--grid-gap));
  align-items: start;
}

.ka-step {
  position: relative;
  height: 72px;
}

.ka-step__num {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0.18em;
  color: rgba(47, 111, 122, 0.90);
  margin: 0;
}

.ka-step__node {
  position: absolute;
  left: 50%;
  top: var(--ka-process-center-y);
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(47, 111, 122, 0.60);
  transform: translate(-50%, -50%);
  margin: 0;
}

.ka-step__label {
  position: absolute;
  left: 50%;
  top: 38px;
  transform: translateX(-50%);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.05em;
  color: rgba(31, 35, 40, 0.88);
  margin: 0;
  white-space: nowrap;
}

.ka-services__cards {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, var(--grid-gap));
  align-items: stretch;
}

.ka-card {
  position: relative;
  background: #FBFAF7;
  border: 1px solid rgba(47,111,122,.18);
  border-radius: 16px;
  padding: 22px 20px 18px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.ka-card::before {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  background: rgba(47,111,122,.42);
  margin-bottom: 12px;
}

.ka-card__phase {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal-90);
  margin: 0 0 12px 0;
}

.ka-card__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 26px;
  line-height: 30px;
  color: var(--teal-head-85);
  margin: 0 0 14px 0;
}

.ka-card__bullets {
  margin: 0;
  padding-left: 18px;
  list-style: disc;
  list-style-position: outside;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 29px;
  letter-spacing: 0.012em;
  color: rgba(31, 35, 40, 0.78);
}

.ka-card__bullets li {
  display: list-item;
  margin: 0 0 1px 0;
  padding-left: 0;
}

.ka-card__deliverable {
  margin-top: auto;
  padding-top: 22px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: var(--teal-90);
}

/* ---------- desktop narrow ---------- */
@media (max-width: 1279px) {
  .ka-services__wrap {
    padding: 80px 0 96px;
  }

  .ka-services__head {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  }

  .ka-services__title {
    font-size: 64px;
    line-height: 70px;
  }

  .ka-services__intro {
    max-width: 390px;
  }

  .ka-process {
    margin-top: 72px;
  }

  .ka-card {
    min-height: 400px;
  }
}
/* ---------- tablet landscape / transition ---------- */
@media (max-width: 899px) {
  .ka-services__wrap {
    padding: 72px 0 84px;
  }

  .ka-services__head {
    grid-template-columns: 1fr;
    row-gap: 22px;
  }

  .ka-services__title {
    font-size: 56px;
    line-height: 1.05;
  }

  .ka-services__intro {
    max-width: 100%;
    padding-top: 0;
  }

  .ka-process {
    margin-top: 36px;
    height: auto;
  }

  .ka-process__line {
    display: block;
    left: 16.6667%;
    right: 16.6667%;
  }

  .ka-process__row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    height: 72px;
    column-gap: 16px;
  }

  .ka-services__cards {
    margin-top: 28px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

/* ---------- stacked mobile ---------- */
@media (max-width: 719px) {
  .ka-services__wrap {
    padding: 64px 0 76px;
  }

  .ka-process__line {
    display: none;
  }

  .ka-process__row {
    grid-template-columns: 1fr;
    row-gap: 16px;
    height: auto;
  }

  .ka-step {
    height: 60px;
  }

  .ka-step__label {
    top: 34px;
  }

  .ka-services__cards {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
OWM (range-based desktop-first pattern)
========================================================= */
.ka-owm {
  background: var(--paper);
  width: 100%;
  overflow-x: clip;
}

.ka-owm__wrap {
  width: var(--wrap-w);
  margin: 0 auto;
  padding: 88px 0 104px;
}

.ka-owm__introblock {
  display: grid;
  grid-template-columns: minmax(0, 556px) minmax(320px, 464px);
  column-gap: clamp(40px, 7vw, 100px);
  align-items: start;
}

.ka-owm__introtext {
  min-width: 0;
}

.ka-owm__introtext p,
.ka-owm__listlead,
.ka-owm__list {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 29px;
  letter-spacing: 0.012em;
  color: rgba(31, 35, 40, 0.78);
}

.ka-owm__introtext p {
  margin: 0;
}

.ka-owm__introtext p + p {
  margin-top: 18px;
}

.ka-owm__listlead {
  margin: 28px 0 6px 0;
}

.ka-owm__list {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.ka-owm__list li {
  position: relative;
  margin: 0;
  padding-left: 14px;
}

.ka-owm__list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
}

.ka-owm__closing {
  margin-top: 28px !important;
}

.ka-owm__titlecol {
  min-width: 0;
}

.ka-owm__eyebrow {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-90);
  margin: 0 0 18px 0;
}

.ka-owm__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 72px;
  line-height: 78px;
  letter-spacing: 0;
  color: var(--teal-90);
  margin: 0;
}

.ka-owm__visualblock {
  margin-top: 56px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.ka-owm__media {
  width: 100vw;
  aspect-ratio: 2048 / 796;
  overflow: hidden;
  line-height: 0;
}

.ka-owm__mediaimg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ka-owm__grid {
  width: var(--wrap-w);
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 40px);
}

.ka-owm__item {
  min-width: 0;
  padding-top: 18px;
  position: relative;
}

.ka-owm__item::before {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  background: rgba(47, 111, 122, 0.32);
  margin-bottom: 14px;
}

.ka-owm__h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 28px;
  line-height: 32px;
  color: var(--teal-head-85);
  margin: 0 0 10px 0;
}

.ka-owm__p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 29px;
  letter-spacing: 0.012em;
  color: rgba(31, 35, 40, 0.78);
  margin: 0;
  max-width: 336px;
}

@media (max-width: 1279px) {
  .ka-owm__wrap {
    padding: 80px 0 96px;
  }

  .ka-owm__introblock {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
    column-gap: 56px;
  }

  .ka-owm__title {
    font-size: 62px;
    line-height: 68px;
  }

  .ka-owm__visualblock {
    margin-top: 48px;
  }

  .ka-owm__grid {
    margin-top: 32px;
    gap: 28px;
  }
}

@media (max-width: 899px) {
  .ka-owm__wrap {
    padding: 72px 0 84px;
  }

  .ka-owm__introblock {
    display: flex;
    flex-direction: column;
    row-gap: 28px;
  }

  .ka-owm__titlecol {
    order: 1;
  }

  .ka-owm__introtext {
    order: 2;
  }

  .ka-owm__title {
    font-size: 56px;
    line-height: 1.05;
  }

  .ka-owm__visualblock {
    margin-top: 40px;
  }

  .ka-owm__grid {
    margin-top: 28px;
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 719px) {
  .ka-owm__wrap {
    padding: 64px 0 76px;
  }

  .ka-owm__item {
    padding-top: 14px;
  }
}

/* =========================================================
WHY WORK WITH US
========================================================= */
.ka-whywork {
  background: var(--paper);
  width: 100%;
}

.ka-whywork__wrap {
  width: var(--wrap-w);
  margin: 0 auto;
  padding: 88px 0 96px;
}

.ka-whywork__subsection--intro {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ka-whywork__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.ka-whywork__micro {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-90);
  margin: 0;
}

.ka-whywork__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 60px;
  line-height: 0.96;
  letter-spacing: 0;
  color: var(--teal-90);
  text-align: center;
  margin: 12px 0 18px 0;
  max-width: 520px;
}

.ka-whywork__introLead {
  max-width: 520px;
}

.ka-whywork__introBody {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 29px;
  letter-spacing: 0.012em;
  color: rgba(31, 35, 40, 0.78);
  text-align: center;
  margin: 6px 0 0 0;
  max-width: 420px;
}

.ka-whywork__imageWrap {
  width: 100%;
  margin-top: 24px;
  line-height: 0;
  overflow: hidden;
  border-radius: 5px;
  background: #d9d9d9;
}

.ka-whywork__image {
  display: block;
  width: 100%;
  height: 385px;
  object-fit: cover;
  object-position: center;
}

.ka-whywork__subsection--positioning {
  margin-top: 64px;
}

.ka-whywork__bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  column-gap: 56px;
  align-items: start;
}

.ka-whywork__bottomLeft,
.ka-whywork__bottomRight {
  min-width: 0;
}

.ka-whywork__micro--bottom {
  margin-bottom: 12px;
}

.ka-whywork__positioningTitle {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 44px;
  line-height: 0.96;
  letter-spacing: 0;
  color: var(--teal-90);
  margin: 0;
  max-width: 420px;
}

.ka-whywork__bottomRight {
  text-align: right;
  padding-top: 4px;
}

.ka-whywork__positioningBody {
  text-align: right;
  margin: 0 0 22px 0;
}

.ka-whywork__positioningNote {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 29px;
  letter-spacing: 0.012em;
  color: rgba(31, 35, 40, 0.78);
  text-align: right;
  margin: 0;
}

@media (max-width: 1279px) {
  .ka-whywork__title {
    font-size: 54px;
  }

  .ka-whywork__image {
    height: 292px;
  }

  .ka-whywork__subsection--positioning {
    margin-top: 56px;
  }

  .ka-whywork__bottom {
    grid-template-columns: minmax(0, 1fr) 300px;
    column-gap: 44px;
  }

  .ka-whywork__positioningTitle {
    font-size: 40px;
  }
}

@media (max-width: 899px) {
  .ka-whywork__wrap {
    padding: 72px 0 84px;
  }

  .ka-whywork__title {
    font-size: 48px;
    max-width: 460px;
  }

  .ka-whywork__introLead,
  .ka-whywork__introBody {
    max-width: 520px;
  }

  .ka-whywork__imageWrap {
    margin-top: 24px;
  }

  .ka-whywork__image {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .ka-whywork__subsection--positioning {
    margin-top: 44px;
  }

  .ka-whywork__bottom {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }

  .ka-whywork__bottomRight {
    text-align: left;
    padding-top: 0;
  }

  .ka-whywork__positioningTitle {
    font-size: 38px;
    max-width: none;
  }

  .ka-whywork__positioningBody,
  .ka-whywork__positioningNote {
    text-align: left;
    margin: 0;
    max-width: none;
  }
}

@media (max-width: 719px) {
  .ka-whywork__wrap {
    padding: 64px 0 76px;
  }

  .ka-whywork__title {
    font-size: 42px;
    max-width: 340px;
  }

  .ka-whywork__introLead,
  .ka-whywork__introBody,
  .ka-whywork__positioningBody,
  .ka-whywork__positioningNote {
    font-size: 15px;
    line-height: 27px;
  }

  .ka-whywork__positioningTitle {
    font-size: 34px;
  }
}

/* =========================================================
FAQ
========================================================= */
.ka-faq {
  background: var(--paper);
  width: 100%;
}

.ka-faq__wrap {
  width: var(--wrap-w);
  margin: 0 auto;
  padding: 96px 0;
}

.ka-faq__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.ka-faq__micro {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-90);
}

.ka-faq__title {
  margin: 10px 0 0 0;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: 0;
  color: var(--teal-90);
  text-align: center;
}

.ka-faq__list {
  width: min(820px, 100%);
  margin: 48px auto 0;
}

.ka-faq__item {
  border-top: 1px solid rgba(31, 35, 40, 0.20);
}

.ka-faq__item:last-child {
  border-bottom: 1px solid rgba(31, 35, 40, 0.20);
}

.ka-faq__summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 24px;
  column-gap: 20px;
  align-items: start;
  padding: 24px 0;
}

.ka-faq__summary::-webkit-details-marker {
  display: none;
}

.ka-faq__question {
  display: block;
  margin: 0;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 17px;
  line-height: 28px;
  letter-spacing: 0;
  color: var(--charcoal);
}

.ka-faq__icon {
  position: relative;
  width: 24px;
  height: 24px;
  margin-top: 3px;
  opacity: 0.72;
  transition: opacity 220ms ease;
}

.ka-faq__icon::before,
.ka-faq__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 1px;
  background: rgba(15, 76, 92, 0.82);
  transform: translate(-50%, -50%);
  transition: opacity 220ms ease, transform 260ms ease;
}

.ka-faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.ka-faq__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 280ms ease;
}

.ka-faq__panel > * {
  min-height: 0;
}

.ka-faq__answer {
  overflow: hidden;
  margin: 0;
  padding: 0 44px 0 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0;
  color: var(--muted);
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 220ms ease, transform 280ms ease, padding 280ms ease;
}

.ka-faq__item[open] .ka-faq__panel {
  grid-template-rows: 1fr;
}

.ka-faq__item[open] .ka-faq__answer {
  padding: 0 44px 24px 0;
  opacity: 1;
  transform: translateY(0);
}

.ka-faq__item[open] .ka-faq__icon {
  opacity: 1;
}

.ka-faq__item[open] .ka-faq__icon::after {
  opacity: 0;
}

.ka-faq__item:hover .ka-faq__icon {
  opacity: 1;
}

@media (max-width: 899px) {
  .ka-faq__wrap {
    padding: 72px 0 84px;
  }

  .ka-faq__title {
    font-size: 48px;
  }

  .ka-faq__list {
    margin-top: 40px;
  }
}

@media (max-width: 719px) {
  .ka-faq__wrap {
    padding: 64px 0 76px;
  }

  .ka-faq__title {
    font-size: 42px;
  }

  .ka-faq__list {
    margin-top: 32px;
  }

  .ka-faq__summary {
    grid-template-columns: minmax(0, 1fr) 20px;
    column-gap: 14px;
    padding: 20px 0;
  }

  .ka-faq__question,
  .ka-faq__answer {
    font-size: 17px;
    line-height: 28px;
  }

  .ka-faq__answer,
  .ka-faq__item[open] .ka-faq__answer {
    padding-right: 0;
  }

  .ka-faq__icon {
    width: 20px;
    height: 20px;
  }
}

/* =========================================================
CONTACT
========================================================= */
.ka-contact {
  background: var(--paper);
  width: 100%;
}

.ka-contact__wrap {
  width: min(496px, 100%);
  margin: 0 auto;
  padding: 88px 0 140px;
  text-align: center;
}

.ka-contact__micro {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-90);
}

.ka-contact__title {
  margin: 14px 0 0 0;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 76px;
  line-height: 0.92;
  letter-spacing: 0;
  color: var(--teal-90);
  text-align: center;
}

.ka-contact__cta {
  margin-top: 26px;
  display: flex;
  justify-content: center;
}

.ka-contact__button {
  min-width: 132px;
  height: 44px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(15, 76, 92, 0.26);
  background: transparent;
  text-decoration: none;
  box-sizing: border-box;

  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.02em;
  color: #0F4C5C;

  transition:
    background-color 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease;
}

.ka-contact__button:hover {
  background: rgba(15, 76, 92, 0.05);
  border-color: rgba(15, 76, 92, 0.38);
}

@media (max-width: 1279px) {
  .ka-contact__title {
    font-size: 68px;
  }
}

@media (max-width: 899px) {
  .ka-contact__wrap {
    width: min(520px, 100%);
    padding: 72px 0 112px;
  }

  .ka-contact__title {
    font-size: 60px;
  }
}

@media (max-width: 719px) {
  .ka-contact__wrap {
    width: 100%;
    padding: 64px 0 96px;
  }

  .ka-contact__title {
    font-size: 46px;
    line-height: 0.96;
  }

  .ka-contact__cta {
    margin-top: 24px;
  }

  .ka-contact__button {
    min-width: 124px;
    height: 42px;
    padding: 0 20px;
  }
}

/* =========================================================
FOOTER
========================================================= */
.ka-footer {
  background: var(--paper);
  width: 100%;
}

.ka-footer__wrap {
  width: var(--wrap-w);
  margin: 0 auto;
  padding: 0 0 72px;
}

.ka-footer__topline {
  width: 100%;
  height: 1px;
  background: rgba(47, 111, 122, 0.22);
}

.ka-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 292px;
  column-gap: 56px;
  align-items: start;
  padding-top: 28px;
}

.ka-footer__left,
.ka-footer__right {
  min-width: 0;
}

.ka-footer__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.ka-footer__brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  line-height: 0;
  margin: 0 0 22px 0;
}

.ka-footer__brand img {
  display: block;
  width: auto;
  height: 27px;
  margin-left: 0;
}

.ka-footer__body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 29px;
  letter-spacing: 0.012em;
  color: var(--charcoal);
}

.ka-footer__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  gap: 28px;
  padding-top: 20px;
}

.ka-footer__link,
.ka-footer__legalLink {
  text-decoration: none;
}

.ka-footer__link {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 29px;
  letter-spacing: 0.012em;
  color: var(--teal-90);
}

.ka-footer__legal {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  flex-wrap: wrap;
}

.ka-footer__legalLink {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 29px;
  letter-spacing: 0.012em;
  color: var(--charcoal);
}

.ka-footer__copyright {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 29px;
  letter-spacing: 0.012em;
  color: var(--charcoal);
}

.ka-footer__link:hover,
.ka-footer__legalLink:hover {
  opacity: 0.74;
}

@media (max-width: 899px) {
  .ka-footer__wrap {
    padding-bottom: 56px;
  }

  .ka-footer__grid {
    grid-template-columns: 1fr;
    row-gap: 28px;
    padding-top: 28px;
  }

  .ka-footer__brand img {
    margin-left: 0;
  }

  .ka-footer__right {
    align-items: flex-start;
    text-align: left;
    gap: 20px;
    padding-top: 0;
  }

  .ka-footer__legal {
    justify-content: flex-start;
    gap: 16px;
  }
}

@media (max-width: 719px) {
  .ka-footer__wrap {
    padding-bottom: 48px;
  }

  .ka-footer__brand img {
  width: auto;
  height: 24px;
  margin-left: 0;
}

  .ka-footer__body,
  .ka-footer__link,
  .ka-footer__legalLink,
  .ka-footer__copyright {
    font-size: 15px;
    line-height: 27px;
  }

  .ka-footer__legal {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

/* =========================================================
GLOBAL VIEWPORT FRAMEWORK
========================================================= */
@media (max-width: 1279px) {
  :root {
    --site-pad: 32px;
    --split-gap: 48px;
    --grid-gap: 22px;
  }
}

@media (max-width: 1119px) {
  :root {
    --site-pad: 28px;
  }
}

@media (max-width: 899px) {
  :root {
    --site-pad: 24px;
  }
}

@media (max-width: 719px) {
  :root {
    --site-pad: 20px;
  }
}

/* =========================================================
CARRD WRAPPER RESET
========================================================= */
.site-wrapper {
  height: auto !important;
  min-height: 0 !important;
  flex: 0 0 auto !important;
  overflow: visible !important;
}

/* =========================================================
   CONTACT MODAL
   ========================================================= */
.ka-modal {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.24s ease,
    visibility 0.24s ease;
}

.ka-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.ka-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.40);
  backdrop-filter: blur(2px);
}

.ka-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 720px);
  background: var(--paper);
  border-radius: 16px;
  border: 1px solid rgba(31, 35, 40, 0.12);
  box-sizing: border-box;
  padding: 30px 30px 26px;
  box-shadow: 0 28px 80px rgba(15, 20, 24, 0.18);
}

.ka-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border: 0;
  padding: 0;
  background: transparent;
  color: rgba(31, 35, 40, 0.78);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 24px;
  line-height: 1;
  transition:
    color 0.2s ease,
    opacity 0.2s ease,
    transform 0.2s ease;
}

.ka-modal__close:hover {
  color: var(--teal-head-85);
  opacity: 1;
  transform: scale(1.04);
}

.ka-modal__eyebrow {
  margin: 0 0 8px;
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 16px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-90);
}

.ka-modal__title {
  margin: 0 0 32px;
  font-family: var(--font-serif);
  font-size: 64px;
  line-height: 0.94;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--teal-90);
}

.ka-modal__form {
  margin: 0;
}

.ka-modal__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 18px;
  row-gap: 14px;
}

.ka-modal__field {
  min-width: 0;
}

.ka-modal__field--full {
  margin-top: 12px;
}

.ka-modal__field label {
  display: block;
  margin: 0 0 6px;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 18px;
  font-weight: 500;
  color: var(--charcoal);
}

.ka-modal__field input,
.ka-modal__field textarea {
  width: 100%;
  border: 1px solid rgba(47, 111, 122, 0.20);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.88);
  box-sizing: border-box;
  outline: none;
  resize: vertical;
  -webkit-appearance: none;
  appearance: none;
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: var(--charcoal);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease;
}

.ka-modal__field input {
  height: 44px;
  padding: 0 14px;
}

.ka-modal__field textarea {
  min-height: 138px;
  padding: 12px 14px;
}

.ka-modal__field input:hover,
.ka-modal__field textarea:hover {
  border-color: rgba(47, 111, 122, 0.32);
  background: #FFFFFF;
}

.ka-modal__field input:focus,
.ka-modal__field textarea:focus {
  border-color: rgba(47, 111, 122, 0.52);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(47, 111, 122, 0.10);
}

.ka-modal__field input::placeholder,
.ka-modal__field textarea::placeholder {
  color: rgba(95, 110, 114, 0.70);
}

.ka-modal__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.ka-modal__feedback {
  min-height: 22px;
  margin-top: 10px;
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 18px;
  color: var(--charcoal);
}

.ka-modal__feedback.is-error {
  color: #A33B2E;
}

.ka-modal__feedback.is-success {
  color: #246B45;
}

.ka-modal__actions {
  margin-top: -2px;
  display: flex;
  justify-content: center;
}

.ka-modal__submit {
  min-width: 220px;
  height: 44px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1px solid rgba(15, 76, 92, 0.26);
  background: transparent;
  cursor: pointer;
  box-sizing: border-box;
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #0F4C5C;
  transition:
    background-color 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease,
    opacity 0.22s ease,
    transform 0.22s ease;
}

.ka-modal__submit:hover {
  background: rgba(15, 76, 92, 0.06);
  border-color: rgba(15, 76, 92, 0.40);
  transform: translateY(-1px);
}

.ka-modal__submit:disabled {
  opacity: 0.6;
  cursor: wait;
  transform: none;
}

body.ka-modal-open {
  overflow: hidden;
}

@media (max-width: 767px) {
  .ka-modal {
    padding: 16px;
    align-items: flex-start;
    overflow-y: auto;
  }

  .ka-modal__dialog {
    width: 100%;
    margin: 32px 0;
    padding: 26px 18px 20px;
    border-radius: 14px;
  }

  .ka-modal__title {
    font-size: 42px;
    line-height: 0.98;
    margin-bottom: 22px;
  }

  .ka-modal__grid {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 14px;
  }

  .ka-modal__field--full {
    margin-top: 14px;
  }

  .ka-modal__submit {
  width: auto;
  min-width: 180px;
  max-width: 220px;
}
}

/* =========================================================
   MOBILE SMARTPHONE REFINEMENT LAYER
   Safe overrides only - desktop remains untouched
   ========================================================= */

@media (max-width: 719px) {
  :root {
    --site-pad: 10px;
  }

    /* =========================
     NAVBAR
     Mobile dedicated: top row logo + contact,
     second row scrollable nav
     ========================= */

  .site-header {
    height: 116px;
  }

  html {
    scroll-padding-top: 116px;
  }

  body {
    padding-top: 116px;
  }

  .site-header__inner {
    width: var(--wrap-w);
    height: 100%;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: 44px 32px;
    column-gap: 10px;
    row-gap: 12px;
    align-content: center;
    align-items: center;
  }

  .nav-logo {
    grid-column: 1;
    grid-row: 1;
    width: 88px;
    height: 36px;
    align-self: center;
  }

  .nav-right {
    grid-column: 1 / -1;
    grid-row: 1 / span 2;
    display: contents;
  }

  .nav-contact {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    align-self: center;
    height: 34px;
    padding: 8px 12px;
    font-size: 10px;
    line-height: 16px;
    letter-spacing: 0.01em;
    width: auto;
  }

  .site-nav {
  grid-column: 1 / -1;
  grid-row: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  min-width: 0;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0 0 2px 0;
  box-sizing: border-box;
}

.site-nav::before,
.site-nav::after {
  content: "";
  flex: 1 0 var(--site-pad);
}
  
  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    font-size: 10px;
    line-height: 16px;
    letter-spacing: 0.01em;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(15, 76, 92, 0.04);
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav a:hover {
    background: rgba(15, 76, 92, 0.08);
  }

  /* =========================
     HERO
     ========================= */

  .ka-hero {
    min-height: 560px;
  }

  #heroText {
    top: 108px;
    width: 100%;
    max-width: none;
    gap: 16px;
  }

  .ka-hero__eyebrow {
    font-size: 11px;
    line-height: 15px;
    letter-spacing: 0.15em;
  }

  .ka-hero__title {
    font-size: 34px;
    line-height: 0.98;
    max-width: 300px;
  }

  .ka-hero__sub {
    font-size: 15px;
    line-height: 23px;
    max-width: 310px;
  }

  .ka-hero__cta {
    gap: 10px;
    margin-top: 4px;
  }

  .ka-btn--ghost {
    padding: 11px 16px;
  }

  .ka-btn,
  .ka-btn--text,
  .ka-btn--ghost {
    font-size: 12px;
  }

  /* =========================
     GLOBAL TYPE / SECTION RHYTHM
     ========================= */

  .ka-micro,
  .ka-services__eyebrow,
  .ka-hero__eyebrow {
    letter-spacing: 0.14em;
  }

  .ka-wyvn__wrap,
  .ka-services__wrap,
  .ka-owm__wrap,
  .ka-whywork__wrap,
  .ka-faq__wrap,
  .ka-contact__wrap,
  .ka-footer__wrap {
    width: var(--wrap-w);
  }

     /* =========================
     WHY VIETNAM NOW
     ========================= */

  .ka-wyvn__wrap {
    padding: 60px 0 72px;
  }

  .ka-wyvn__top {
    row-gap: 24px;
  }

  .ka-wyvn__h1 {
    font-size: 30px;
    line-height: 0.98;
    max-width: 240px;
  }

  .ka-wyvn__intro {
    font-size: 14px;
    line-height: 25px;
    margin-top: 16px;
  }

 .ka-wyvn__boat--mobile {
  display: block;
  width: min(78vw, 320px);
  max-width: 100%;
  margin: 22px auto 0;
  aspect-ratio: auto;
  height: auto;
}

.ka-wyvn__boat--mobile .ka-wyvn__boatImg {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

  .ka-wyvn__top > .ka-wyvn__boat:not(.ka-wyvn__boat--mobile) {
    display: none;
  }

  .ka-wyvn__insights {
    margin-top: 18px;
  }

  .ka-insight {
    padding: 11px 0;
    grid-template-columns: 24px 1fr;
    column-gap: 8px;
  }

  .ka-insight__title {
    font-size: 16px;
    line-height: 20px;
  }

  .ka-insight__body {
    font-size: 12px;
    line-height: 19px;
  }

  .ka-wyvn__focus {
    margin-top: 60px;
  }

  .ka-wyvn__focusMedia {
    aspect-ratio: 16 / 9;
  }

  .ka-wyvn__focusTitle {
    font-size: 18px;
    line-height: 23px;
    max-width: none;
  }

  .ka-wyvn__focusBody {
    font-size: 14px;
    line-height: 24px;
    max-width: none;
  }

     /* =========================
     SERVICES
     ========================= */

  .ka-services__wrap {
    padding: 60px 0 72px;
  }

  .ka-services__head {
    grid-template-columns: 1fr;
    row-gap: 18px;
  }

  .ka-services__title {
    font-size: 30px;
    line-height: 0.98;
  }

  .ka-services__intro {
    font-size: 14px;
    line-height: 24px;
    max-width: none;
    padding-top: 0;
  }

  .ka-process {
  margin-top: 44px;
  height: 58px;
  --ka-process-center-y: 19px;
}

.ka-process__line {
  display: block;
  left: 16.6667%;
  right: 16.6667%;
  top: var(--ka-process-center-y);
}

.ka-process__row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 8px;
  align-items: start;
  height: 58px;
}

.ka-step {
  position: relative;
  height: 58px;
  display: block;
}

.ka-step__num {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  font-size: 10px;
  line-height: 12px;
  letter-spacing: 0.12em;
}

.ka-step__node {
  position: absolute;
  left: 50%;
  top: var(--ka-process-center-y);
  width: 7px;
  height: 7px;
  transform: translate(-50%, -50%);
}

.ka-step__label {
  position: absolute;
  left: 50%;
  top: 31px;
  transform: translateX(-50%);
  font-size: 11px;
  line-height: 14px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

  .ka-services__cards {
    margin-top: 34px;
    row-gap: 14px;
    grid-template-columns: 1fr;
  }

  .ka-card {
    padding: 18px 16px 18px;
    border-radius: 12px;
    min-height: auto;
  }

  .ka-card::before {
    width: 30px;
    margin-bottom: 10px;
  }

  .ka-card__phase {
    margin-bottom: 12px;
    font-size: 11px;
    line-height: 15px;
  }

  .ka-card__title {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 12px;
  }

  .ka-card__bullets {
    font-size: 13px;
    line-height: 22px;
    padding-left: 17px;
  }

  .ka-card__deliverable {
    padding-top: 18px;
    font-size: 13px;
    line-height: 20px;
  }

  .ka-services__note {
    margin-top: 44px;
    font-size: 14px;
    line-height: 24px;
  }

    /* =========================
     OUR WORKING MODEL
     ========================= */

  .ka-owm__wrap {
    padding: 60px 0 72px;
  }

  .ka-owm__title {
    font-size: 30px;
    line-height: 0.98;
    max-width: 260px;
  }

  .ka-owm__introtext p,
  .ka-owm__listlead,
  .ka-owm__list,
  .ka-owm__p {
    font-size: 14px;
    line-height: 24px;
  }

  .ka-owm__visualblock {
  margin-top: 22px;
}

.ka-owm__media {
  aspect-ratio: 16 / 9;
}

.ka-owm__mediaimg {
  object-position: center;
}

.ka-owm__h3 {
  font-size: 18px;
  line-height: 22px;
}

    /* =========================
     WHY WORK WITH US
     ========================= */

  .ka-whywork__wrap {
    padding: 60px 0 72px;
  }

  .ka-whywork__title {
    font-size: 30px;
    line-height: 0.98;
    max-width: 250px;
  }

  .ka-whywork__introLead,
  .ka-whywork__introBody,
  .ka-whywork__positioningBody,
  .ka-whywork__positioningNote {
    font-size: 14px;
    line-height: 24px;
  }

  .ka-whywork__positioningTitle {
    font-size: 18px;
    line-height: 22px;
  }

   /* =========================
     FAQ
     ========================= */

  .ka-faq__wrap {
    padding: 60px 0 72px;
  }

  .ka-faq__title {
    font-size: 30px;
    line-height: 0.98;
  }

  .ka-faq__question {
    font-size: 15px;
    line-height: 24px;
  }

  .ka-faq__answer {
    font-size: 14px;
    line-height: 24px;
  }

    /* =========================
     CONTACT
     ========================= */

 .ka-contact__wrap {
  padding: 60px 0 72px;
  text-align: center;
}
  
  .ka-contact__title {
  font-size: 30px;
  line-height: 0.98;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

  /* =========================
     FOOTER
     ========================= */

  .ka-footer__wrap {
    padding: 28px 0 34px;
  }

  .ka-footer__body,
  .ka-footer__link,
  .ka-footer__legalLink,
  .ka-footer__copyright {
    font-size: 13px;
    line-height: 22px;
  }
}

@media (max-width: 389px) {
  :root {
    --site-pad: 8px;
  }

  .site-header {
    height: 108px;
  }

  html {
    scroll-padding-top: 108px;
  }

  body {
    padding-top: 108px;
  }

  .site-header__inner {
    grid-template-columns: 1fr auto;
    grid-template-rows: 40px 30px;
    column-gap: 8px;
    row-gap: 10px;
    align-content: center;
  }

  .nav-logo {
    width: 72px;
    height: 30px;
  }
  
  .ka-footer__brand img {
  width: auto;
  height: 20px;
}

  .nav-right {
    display: contents;
  }

  .nav-contact {
    grid-column: 2;
    grid-row: 1;
    height: 30px;
    padding: 6px 9px;
    font-size: 8px;
    line-height: 13px;
    letter-spacing: 0;
  }

 .site-nav {
  grid-column: 1 / -1;
  grid-row: 2;
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: flex-start;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  padding: 0 0 2px 0;
  box-sizing: border-box;
}

.site-nav::before,
.site-nav::after {
  content: "";
  flex: 1 0 var(--site-pad);
}

  .site-nav a {
    font-size: 8px;
    line-height: 13px;
    letter-spacing: 0;
    flex: 0 0 auto;
    height: 28px;
    padding: 0 9px;
  }

  .ka-hero {
  min-height: 500px;
}

 #heroText {
  top: 84px;
  gap: 10px;
}

 .ka-hero__title {
  font-size: 29px;
  line-height: 0.98;
  max-width: 240px;
}

 .ka-hero__sub {
  font-size: 13px;
  line-height: 20px;
  max-width: 250px;
}

 .ka-hero__cta {
  gap: 8px;
  margin-top: 2px;
}
  
  .ka-btn,
  .ka-btn--text,
  .ka-btn--ghost {
    font-size: 10px;
  }

  .ka-wyvn__h1,
  .ka-services__title,
  .ka-owm__title,
  .ka-whywork__title,
  .ka-faq__title,
  .ka-contact__title {
    font-size: 28px;
  }

  .ka-card {
    padding: 16px 14px 16px;
  }

  .ka-card__title,
.ka-owm__h3,
.ka-whywork__positioningTitle {
  font-size: 17px;
  line-height: 21px;
}

  .ka-contact__title {
    max-width: 240px;
    margin-left: auto;
    margin-right: auto;
  }

  .ka-card__bullets {
    font-size: 12.5px;
    line-height: 21px;
  }

  .ka-faq__question {
  font-size: 14px;
  line-height: 22px;
}

.ka-faq__answer {
  font-size: 13px;
  line-height: 22px;
}
}
