:root {
  /* website Color palette */
  --navy: #12345b;
  --navy-deep: #0a2645;
  --blue: #1e4b7a;
  --gold: #c5a15a;
  --gold-light: #e1c986;
  --ink: #173047;
  --muted: #5c6d7c;
  --line: #dbe2e8;
  --paper: #fff;
  --mist: #f3f6f8;
  --cream: #f9f7f2;
  --display: Georgia, 'Times New Roman', serif;
  --sans: Inter, Avenir Next, Avenir, 'Segoe UI', Arial, sans-serif;
  --site-width: min(1160px, calc(100% - 48px));
  --transition: 220ms ease;
}

* { box-sizing: border-box; }
html { 
  scroll-behavior: smooth; 
  scroll-padding-top: 90px; 
}
body { 
  margin: 0; 
  background: var(--paper); 
  color: var(--ink); font-family: var(--sans); 
  font-size: 16px; 
  line-height: 1.58; 
}

body.menu-open { overflow: hidden; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
img { display: block; max-width: 100%; }

.site-width { 
  width: var(--site-width); 
  margin: 0 auto; 
}
.sr-only { 
  position: absolute; 
  width: 1px; height: 1px; 
  padding: 0; margin: -1px; 
  overflow: hidden; 
  clip: rect(0, 0, 0, 0); white-space: nowrap; 
  border: 0; 
}
.skip-link { 
  position: fixed; 
  z-index: 999; 
  left: 18px; 
  top: -100px; 
  padding: 10px 16px; 
  color: white; 
  background: var(--navy); 
  transition: top var(--transition); 
}
.skip-link:focus { top: 18px; }
.eyebrow { display: flex; 
  align-items: center; 
  gap: 10px; margin: 0 0 16px; 
  color: var(--blue); font-size: 10px; 
  font-weight: 800; 
  letter-spacing: .17em; 
  text-transform: uppercase; 
}
.eyebrow::before { content: ''; 
  width: 26px; 
  height: 1px; 
  background: currentColor; 
}
.eyebrow-light { color: #e7eef5; }
.eyebrow-gold { color: var(--gold-light); }

h1, h2, h3, p { 
  margin-top: 0; 
}
h1, h2 { 
  font-family: var(--display); 
  font-weight: 400; letter-spacing: -.035em; 
  line-height: 1.05; 
}
h1 em, h2 em { 
  color: var(--gold); 
  font-style: italic; 
  font-weight: 400; 
}
h2 { 
  margin-bottom: 0; 
  font-size: clamp(2.25rem, 4vw, 4.1rem); 
}

/* Header */
.utility-bar { 
  background: var(--navy-deep); 
  color: #ccd8e4; 
  font-size: 11px; 
}
.utility-inner { 
  min-height: 37px; 
  display: flex; align-items: center; 
  justify-content: space-between; 
  gap: 20px; 
}
.utility-inner p { 
  margin: 0; 
  font-size: 10px; 
  letter-spacing: .04em; 
}
.utility-contact { 
  display: flex; 
  gap: 24px; 
  align-items: center; 
}
.utility-contact a { 
  display: inline-flex; 
  align-items: center; gap: 7px; 
  color: inherit; text-decoration: none; 
}
.utility-contact a:hover { color: white; }
.utility-contact svg { 
  width: 13px; 
  height: 13px; fill: none; 
  stroke: var(--gold-light); 
  stroke-width: 1.7; 
}
.site-header { 
  position: sticky; 
  z-index: 50; top: 0; 
  background: rgba(255,255,255,.96); 
  border-bottom: 1px solid rgba(19,52,91,.08); 
  backdrop-filter: blur(12px); 
  transition: box-shadow var(--transition); 
}
.site-header.is-scrolled { box-shadow: 0 4px 24px rgba(18,52,91,.09); }
.nav-row { 
  /* size of the navigation row */
  min-height: 100px; /*hight of nav row*/
  display: flex; align-items: center; 
  justify-content: space-between; }
.brand { width: 111px; text-decoration: none; 
}
/* Logo size and shape */
.brand img {
  display: block;
  width: 120px;
  height: auto;
  max-height: 91px;
  object-fit: contain;
  object-position: center;
  transform: none;
  mix-blend-mode: multiply;
}
.primary-nav { 
  display: flex; align-items: center; gap: clamp(19px, 2.4vw, 37px); 
  font-size: 12px; font-weight: 700; letter-spacing: .025em; 
}
.primary-nav > a:not(.nav-cta) { 
  position: relative; 
  color: #274056; 
  text-decoration: none; 
}
.primary-nav > a:not(.nav-cta)::after { content: ''; 
  position: absolute; 
  left: 0; bottom: -8px; width: 100%; height: 1px; background: var(--gold); 
  transform: scaleX(0); transform-origin: right; 
  transition: transform var(--transition); 
}
.primary-nav > a:not(.nav-cta):hover::after { 
  transform: scaleX(1); 
  transform-origin: left; 
}
.nav-cta, .button { display: inline-flex; 
  justify-content: center; 
  align-items: center; 
  gap: 15px; border: 0; 
  text-decoration: none; 
  font-size: 11px; 
  font-weight: 800; 
  letter-spacing: .09em; 
  text-transform: uppercase; 
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition); 
}
.nav-cta { 
  padding: 14px 17px; color: white; 
  background: var(--navy); 
}
.nav-cta:hover { background: var(--blue); transform: translateY(-2px); }
.menu-toggle { 
  display: none; 
  padding: 7px 0 7px 10px; 
  border: 0; 
  background: none; }
.menu-toggle span:not(.sr-only) { 
  display: block; width: 25px; height: 2px; margin: 5px 0; background: var(--navy); 
  transition: transform var(--transition), opacity var(--transition); 
}

/* Hero */
.hero { 
  position: relative; min-height: min(725px, calc(100vh - 116px)); 
  display: grid; align-items: center; 
  overflow: hidden; background: var(--navy-deep); 
  color: white; 
}
.hero-backdrop { 
  position: absolute; 
  inset: 0; 
  background: linear-gradient(90deg, rgba(6,27,50,.92) 0%, rgba(9,36,65,.79) 46%, rgba(15,47,79,.44) 100%), 
  linear-gradient(0deg, rgba(5,23,43,.5), transparent 55%), url('FTMS-assets/images/walkerssk-singapore-1990959.jpg') center/cover; 
}
.hero-backdrop::after { 
  content: ''; 
  position: absolute; 
  inset: 0; 
  background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px); 
  background-size: 76px 76px; mask-image: linear-gradient(90deg, #000, transparent 83%); 
}
.hero-content { 
  position: relative; 
  padding: 100px 0 124px; 
}
.hero h1 { 
  max-width: 790px; 
  margin: 0 0 28px; color: white; 
  font-size: clamp(3rem, 6.4vw, 6.5rem); /* 3rem, 6.4vw, 6.5rem */
}
.hero h1 em { 
  color: var(--gold-light); 
}
.hero-lead { 
  max-width: 590px; 
  margin-bottom: 38px; 
  color: #d9e4ed; 
  font-size: clamp(1rem, 1.6vw, 1.15rem); 
  line-height: 1.75; 
}
.hero-actions { 
  display: flex; 
  align-items: center; 
  gap: 30px; 
}

.button { 
  min-height: 51px; 
  padding: 0 23px; 
}
.button-gold { 
  color: #172e47; 
  background: var(--gold-light); 
}
.button-gold:hover { color: white; background: var(--gold); transform: translateY(-3px); }

.text-link { 
  display: inline-flex; 
  align-items: center; 
  gap: 10px; 
  color: var(--blue); 
  font-size: 11px; 
  font-weight: 800; 
  letter-spacing: .06em; 
  text-decoration: none; 
  text-transform: uppercase; 
}
.text-link span { 
  font-size: 17px; 
  transition: transform var(--transition); 
}
.text-link:hover span, 
.service-card a:hover span, 
.insight-card a:hover span { 
  transform: translateX(5px); 
}
.text-link-light { 
  color: white; 
}

.scroll-prompt { 
  position: absolute; 
  right: max(24px, calc((100% - 1160px) / 2)); 
  bottom: 25px; 
  display: flex; 
  align-items: center; 
  gap: 12px; color: #e6edf4; 
  font-size: 9px; 
  font-weight: 800; 
  letter-spacing: .14em; 
  text-decoration: none; 
  text-transform: uppercase; 
}
.scroll-prompt i { 
  position: relative; width: 28px; height: 43px; border: 1px solid rgba(255,255,255,.6); 
  border-radius: 18px; 
}
.scroll-prompt i::after { content: ''; position: absolute; top: 8px; left: 50%; width: 3px; height: 7px; background: var(--gold-light); border-radius: 2px; transform: translateX(-50%); animation: scrollDot 1.7s infinite; }
@keyframes scrollDot { 0%, 100% { opacity: 1; transform: translate(-50%, 0); } 80% { opacity: 0; transform: translate(-50%, 17px); } }

/* Content framing */
.section { padding: 118px 0; }
.section-heading { margin-bottom: 56px; }
.heading-split { 
  display: flex; 
  justify-content: space-between; 
  align-items: end; 
  gap: 48px; 
}
.heading-split > div { 
  max-width: 670px; 
}
.heading-split > p { 
  max-width: 320px; 
  margin: 0 0 6px; 
  color: var(--muted); font-size: 15px; 
}
.center-heading { 
  max-width: 750px; 
  margin-right: auto; 
  margin-left: auto; 
  text-align: center; 
}
.center-heading .eyebrow { justify-content: center; }
.center-heading > p:last-child { 
  max-width: 580px; 
  margin: 23px auto 0; color: var(--muted); 
}
.trust-strip { 
  background: var(--cream); 
  border-bottom: 1px solid #e9e5db; 
}
.trust-grid { display: grid; 
  grid-template-columns: repeat(4, 1fr); 
}
.trust-grid > div { 
  min-height: 112px; display: flex; 
  flex-direction: column; justify-content: center; 
  padding: 19px clamp(13px, 2.5vw, 38px); border-right: 1px solid #ded9ce; 
}
.trust-grid > div:first-child { padding-left: 0; }
.trust-grid > div:last-child { border-right: 0; }
.trust-grid strong { margin-bottom: 4px; 
  color: var(--navy); 
  font-family: var(--display); 
  font-size: 20px; font-weight: 400; 
}
.trust-grid span { 
  color: var(--muted); 
  font-size: 10px; line-height: 1.45; 
}

/* Introduction / values */
.intro-section { padding-bottom: 105px; }
.intro-layout { 
  display: grid; grid-template-columns: 1.12fr .88fr; 
  gap: clamp(45px, 9vw, 140px); 
  align-items: end; 
}
.intro-copy h2 { max-width: 570px; }
.intro-text { padding-bottom: 3px; }
.intro-text p { 
  margin-bottom: 24px; 
  color: var(--muted); 
  font-size: 17px; 
  line-height: 1.75; 
}
.values-section { padding-top: 0; }
.value-grid { display: grid; 
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line); 
  border-left: 1px solid var(--line); 
}
.value-card { 
  position: relative; 
  min-height: 326px; padding: 29px 27px 28px; 
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); 
  transition: background var(--transition), transform var(--transition); 
}
.value-card:hover { 
  z-index: 1; background: var(--navy); 
  color: white; transform: translateY(-6px); 
  box-shadow: 0 12px 28px rgba(11,38,69,.18); 
}
.value-card:hover p, .value-card:hover .card-number { color: #cedbe7; }
.value-card:hover .line-icon { 
  color: var(--gold-light); 
}
.card-number { 
  display: block; 
  margin-bottom: 40px; color: #8b9aa7; font-size: 10px; 
  font-weight: 800; 
  letter-spacing: .12em; }
.line-icon { 
  width: 42px; 
  margin-bottom: 27px; 
  color: var(--blue); 
}
.line-icon svg, .service-icon svg { 
  width: 100%; 
  fill: none; stroke: currentColor; stroke-width: 1.45; 
  stroke-linecap: round; 
  stroke-linejoin: round; 
}
.value-card h3 { margin-bottom: 11px; 
  font-family: var(--display); font-size: 22px; font-weight: 400; 
  line-height: 1.18; 
}
.value-card p { margin: 0; 
  color: var(--muted); font-size: 12px; 
  line-height: 1.7; 
}

/* Services */
.services-section { background: var(--mist); }
.service-grid { display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 14px; 
}
.service-card { 
  position: relative; 
  display: flex; 
  flex-direction: column; 
  min-height: 330px; 
  padding: 33px; 
  background: white; border: 1px solid transparent; 
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition); 
}
.service-card:hover { 
  border-color: #cbd8e3; 
  transform: translateY(-6px); 
  box-shadow: 0 15px 30px rgba(11,38,69,.09); 
}
.service-icon { 
  width: 42px; margin-bottom: 27px; 
  color: var(--blue); 
}
.service-tag { 
  margin-bottom: 9px; 
  color: var(--gold); font-size: 9px; font-weight: 800; 
  letter-spacing: .14em; text-transform: uppercase; 
}
.service-card h3 { 
  margin-bottom: 11px; 
  color: var(--navy); font-family: var(--display); 
  font-size: 25px; font-weight: 400; 
  line-height: 1.15; 
}
.service-card > p:not(.service-tag) { 
  margin-bottom: 23px; 
  color: var(--muted); 
  font-size: 12px; 
  line-height: 1.7; 
}
.service-card a, 
.insight-card a { 
  display: inline-flex; align-items: center; 
  gap: 10px; margin-top: auto; color: var(--blue); font-size: 10px; 
  font-weight: 800; letter-spacing: .08em; text-decoration: none; 
  text-transform: uppercase; 
}
.service-card a span, 
.insight-card a span { 
  font-size: 17px; 
  transition: transform var(--transition); 
}

/* Journey */
.journey-section { 
  overflow: hidden; background: var(--navy); color: white; 
}
.journey-layout { display: grid; 
  grid-template-columns: .85fr 1.15fr; 
  gap: clamp(50px, 12vw, 170px); 
}
.journey-title h2 { color: white; }
.journey-title h2 em { color: var(--gold-light); }
.journey-title > p:last-child { 
  max-width: 440px; margin: 25px 0 0; 
  color: #becdde; font-size: 14px; 
}
.journey-list { position: relative; display: grid; gap: 0; 
  margin: 0; padding: 0; 
  list-style: none; 
}
.journey-list::before { 
  content: ''; 
  position: absolute; top: 0; bottom: 0; 
  left: 24px; width: 1px; 
  background: rgba(255,255,255,.19); 
}
.journey-list li { position: relative; 
  z-index: 1; display: flex; 
  gap: 25px; align-items: center; 
  min-height: 91px; 
}
.journey-list li > span { 
  width: 49px; height: 49px; 
  display: grid; 
  place-items: center; 
  border: 1px solid rgba(255,255,255,.28); 
  border-radius: 50%; 
  background: var(--navy); 
  color: var(--gold-light); 
  font-size: 10px; 
  font-weight: 800; 
}
.journey-list strong { 
  display: block; margin-bottom: 3px; 
  font-family: var(--display); 
  font-size: 23px; font-weight: 400; 
}
.journey-list p { margin: 0; color: #bdcddd; 
  font-size: 11px; letter-spacing: .03em; 
}

/* Advisory */
.advisory-section { 
  display: grid; grid-template-columns: 1fr 1fr; 
  min-height: 655px; 
  background: var(--navy-deep); color: white; 
}
.advisory-image { 
  min-height: 380px; 
  background: linear-gradient(90deg, rgba(7,33,60,.1), rgba(7,33,60,.56)), url('FTMS-assets/images/cegoh-skyline-255116_1920.jpg') center/cover; 
}
.advisory-panel { 
  display: flex; 
  flex-direction: column; 
  justify-content: center; max-width: 630px; 
  padding: 80px clamp(40px, 8vw, 130px); 
}
.advisory-panel h2 { color: white; }
.advisory-panel h2 em { color: var(--gold-light); }
.advisory-panel > p:not(.eyebrow) { 
  margin: 25px 0 21px; color: #c6d4e1; 
  font-size: 14px; line-height: 1.8; 
}
.advisory-list { 
  display: grid; gap: 10px; margin: 0 0 30px; 
  padding: 0; list-style: none; color: #f2f6fa; 
  font-size: 12px; 
}
.advisory-list li { position: relative; padding-left: 18px; }
.advisory-list li::before { 
  content: '—'; 
  position: absolute; 
  left: 0; 
  color: var(--gold-light); 
}
.button-outline { 
  align-self: flex-start; 
  color: white; border: 1px solid rgba(255,255,255,.64); 
  background: transparent; 
}
.button-outline:hover { 
  border-color: var(--gold-light); 
  background: var(--gold-light); color: var(--navy-deep); 
  transform: translateY(-3px); 
}

/* Industries / insights -Across sectors */
.industries-section { 
  background: var(--cream); 
}
.industries-layout { 
  display: grid; 
  grid-template-columns: .85fr 1.15fr; 
  gap: clamp(50px, 12vw, 165px); 
  align-items: end; 
}
.industries-copy h2 { max-width: 510px; }
.industries-copy > p:last-child { 
  max-width: 480px; 
  margin: 24px 0 0; 
  color: var(--muted); font-size: 16px; 
}
.industry-list { 
  display: grid; grid-template-columns: repeat(2, 1fr);
  flex-direction: column; 
  align-items: flex-start;
  flex-wrap: wrap; gap: 12px; 
}
.industry-list span { 
  padding: 12px 16px; border: 1px solid #d8d1c4; 
  color: var(--navy); 
  font-size: 25px; font-weight: 400; 
}
.insight-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.insight-card {
  min-height: 350px;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 30px; border: 1px solid var(--line);
  background: white;
  color: var(--navy); text-align: left; font: inherit; cursor: pointer;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.insight-card:hover,
.insight-card.is-active {
  background: var(--navy); border-color: var(--navy);
  transform: translateY(-5px);
}
.insight-meta {
  margin-bottom: 28px;
  color: var(--gold); font-size: 9px; font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.insight-meta span { color: #9fb1c4; }
.insight-card h3 {
  max-width: 360px;
  margin-bottom: 25px; color: var(--navy);
  font-family: var(--display); font-size: clamp(1.5rem, 2.2vw, 2.15rem);
  font-weight: 400; line-height: 1.12;
}
/* text/meta colours when the box is navy (hover or selected) */
.insight-card:hover 
.insight-meta,
.insight-card.is-active 
.insight-meta { 
  color: var(--gold-light); 
}
.insight-card:hover h3,
.insight-card:hover 
.insight-toggle,
.insight-card.is-active h3,
.insight-card.is-active 
.insight-toggle { 
  color: white; 
}
.insight-source { 
  display: none; 
}
.insight-toggle {
  margin-top: auto; color: var(--blue);
  font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
}
.insight-toggle::before { content: 'Read more +'; }
.insight-card.is-active .insight-toggle::before { content: 'Close \2212'; }
/* Shared, swapping detail panel (reuses the FAQ grid-row collapse trick) */
.insight-detail {
  display: grid; grid-template-rows: 0fr;
  margin-top: 15px;
  transition: grid-template-rows 300ms ease;
}
.insight-detail.is-open { grid-template-rows: 1fr; }
.insight-detail-inner {
  min-height: 0; overflow: hidden;
  color: var(--muted); font-size: 14px; line-height: 1.8;
}
.insight-detail.is-open .insight-detail-inner {
  padding: 30px; border: 1px solid var(--line); background: var(--mist);
}

/* FAQs "Not sure about this part - might remove" */
.faq-section { background: var(--mist); }
.faq-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px, 12vw, 160px); }
.faq-copy h2 { max-width: 440px; }
.faq-copy > p:last-of-type { 
  max-width: 430px; margin: 24px 0; 
  color: var(--muted); font-size: 14px; 
}
.faq-list { border-top: 1px solid #cfd9e2; }
.faq-item { border-bottom: 1px solid #cfd9e2; }
.faq-item button { width: 100%; min-height: 78px; 
  display: flex; align-items: center; 
  justify-content: space-between; 
  gap: 25px; 
  padding: 18px 0; border: 0; 
  background: none; 
  color: var(--navy); text-align: left; font-family: var(--display); 
  font-size: 20px; 
}
.faq-item button i { position: relative; flex: 0 0 22px; width: 22px; height: 22px; 
  border: 1px solid #9daebb; border-radius: 50%; 
}
.faq-item button i::before, .faq-item button i::after { 
  content: ''; position: absolute; 
  top: 50%; left: 50%; width: 8px; height: 1px; background: var(--blue); 
  transform: translate(-50%, -50%); 
  transition: transform var(--transition); 
}
.faq-item button i::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item.is-open button i::after { transform: translate(-50%, -50%) rotate(0); }
.faq-answer {
  display: grid; grid-template-rows: 0fr; 
  transition: grid-template-rows 280ms ease; 
}
.faq-answer p { 
  min-height: 0; margin: 0; 
  overflow: hidden; color: var(--muted); 
  font-size: 13px; line-height: 1.75; 
}
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
.faq-item.is-open .faq-answer p { padding-bottom: 24px; }

/* Contact / footer */
.contact-section { 
  padding: 110px 0; 
  background: var(--navy-deep); 
  color: white; 
}
.contact-layout { 
  display: grid; grid-template-columns: .85fr 1.15fr; 
  gap: clamp(50px, 11vw, 150px); 
}
.contact-copy h2 { 
  max-width: 470px; 
  color: white; 
}
.contact-copy h2 em { color: var(--gold-light);}
.contact-copy > p:last-of-type { 
  max-width: 430px; margin: 25px 0 28px; 
  color: #c7d6e4; font-size: 14px; 
}
.contact-details { 
  display: grid; 
  gap: 6px; 
}
/* Contact details size */
.contact-details a { 
  color: var(--gold-light); 
  font-size: 16px; 
  text-decoration: underline ; 
}
.consultation-form { 
  display: grid; gap: 16px; align-self: start; padding: 34px; 
  background: white; color: var(--navy); 
}
.consultation-form label { 
  display: grid; 
  gap: 6px; color: #456077; font-size: 9px; 
  font-weight: 800; letter-spacing: .11em; 
  text-transform: uppercase; 
}
.form-row { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 16px; 
}
.consultation-form input, .consultation-form select, .consultation-form textarea { 
  width: 100%; padding: 11px 0; 
  border: 0; border-bottom: 1px solid #cfd9e2; 
  border-radius: 0; outline: none; 
  background: transparent; 
  color: var(--ink); font-size: 13px; font-weight: 500; resize: vertical; 
  transition: border-color var(--transition); 
}
.consultation-form select { cursor: pointer; }
.consultation-form input:focus, .consultation-form select:focus, .consultation-form textarea:focus { border-color: var(--gold); }
.consultation-form textarea { min-height: 68px; }
.consultation-form .button { justify-self: start; margin-top: 5px; }
.form-message { 
  min-height: 1.2em; margin: -6px 0 0; 
  color: var(--blue); font-size: 12px; 
}
.site-footer { background: #071d34; color: white; }
.footer-top { 
  display: grid; 
  grid-template-columns: 1.5fr .7fr 1fr; gap: 60px; 
  padding: 59px 0 47px; 
}
/* Footer brand logo */
.footer-brand img {
  display: block;
  width: 120px;
  max-width: 100%;
  height: auto;
  max-height: 74px;
  object-fit: contain;
  object-position: center;
  transform: scale(1.7);
  filter: brightness(0) invert(1) sepia(.2);
  opacity: .96;
}
/* Footer brand text (under logo) */
.footer-brand p {
  max-width: 317px; margin: 50px 0 0; 
  color: #a9bbc9; 
  font-size: 16px; 
}
.footer-links { 
  display: grid; 
  align-content: start; 
  gap: 9px; 
}
.footer-links h3 { 
  margin: 0 0 9px; 
  color: var(--gold-light); font-size: 10px; 
  font-weight: 800; letter-spacing: .13em; 
  text-transform: uppercase; 
}
.footer-links a, .footer-links address { 
  color: #d6e1ea; font-size: 12px; font-style: normal; 
  text-decoration: none; 
}
.footer-links a:hover { color: var(--gold-light); }
.footer-links address { margin-top: 7px; color: #9fb3c4; line-height: 1.65; }
.footer-bottom { 
  min-height: 66px; display: flex; 
  align-items: center; justify-content: space-between; 
  gap: 20px; border-top: 1px solid rgba(255,255,255,.13); 
  color: #91a8b9; font-size: 10px; 
}
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; gap: 19px; }
.footer-bottom a { 
  color: inherit; 
  text-decoration: none; 
}
.footer-bottom a:hover { color: white; }

/* Motion */
.reveal { 
  opacity: 0; transform: translateY(20px); 
  transition: opacity 700ms ease, transform 700ms ease; 
}
.reveal.is-visible { 
  opacity: 1; 
  transform: translateY(0); 
}
@media (prefers-reduced-motion: reduce) { 
  *, *::before, *::after { 
    scroll-behavior: auto !important; 
    animation-duration: .01ms !important; 
    animation-iteration-count: 1 !important; 
    transition-duration: .01ms !important; 
  } 
}

/* Responsive */
@media (max-width: 900px) {
  :root { --site-width: min(100% - 36px, 650px); }
  .utility-inner p { display: none; }
  .utility-inner { justify-content: center; }
  .utility-contact { gap: 17px; } .industry-list { flex-direction: row; }

  .primary-nav { gap: 17px; }
  .primary-nav > a:not(.nav-cta) { display: none; }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .journey-layout, .industries-layout, .faq-layout, .contact-layout { grid-template-columns: 1fr; }
  .advisory-section { grid-template-columns: 1fr; }
  .advisory-image { min-height: 330px; }
  .advisory-panel { max-width: none; padding: 72px max(24px, calc((100% - 650px) / 2)); }
  .insight-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1.2fr .8fr; }
  .footer-links:last-child { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  :root { --site-width: calc(100% - 32px); }
  .utility-contact a { font-size: 10px; }
  .utility-contact a:last-child { display: none; }
  .nav-row { min-height: 69px; } 
  .brand { width: 98px; } 
  .brand img { width: 92px; height: 61px; }
  .menu-toggle { display: block; z-index: 2; }
  .menu-toggle[aria-expanded='true'] span:nth-of-type(2) { 
    transform: translateY(7px) rotate(45deg); 
  }
  .menu-toggle[aria-expanded='true'] span:nth-of-type(3) { opacity: 0; }
  .menu-toggle[aria-expanded='true'] span:nth-of-type(4) { transform: translateY(-7px) rotate(-45deg); }
  .primary-nav { 
    position: absolute; 
    inset: 69px 0 auto; 
    display: grid; gap: 0; 
    padding: 15px 16px 23px; 
    background: white; 
    border-bottom: 1px solid var(--line); 
    box-shadow: 0 12px 23px rgba(18,52,91,.1); 
    transform: translateY(-125%); opacity: 0; 
    pointer-events: none; 
    transition: transform var(--transition), opacity var(--transition); 
  }
  .primary-nav.is-open { 
    transform: translateY(0); 
    opacity: 1; pointer-events: auto; 
  }
  .primary-nav > a:not(.nav-cta) { 
    display: block; padding: 15px 0; 
    border-bottom: 1px solid #edf0f3; 
  }
  .primary-nav .nav-cta { 
    justify-self: start; 
    margin-top: 16px; 
  }
  .hero { min-height: 620px; }
  .hero-content { padding: 78px 0 96px; }
  .hero h1 { font-size: clamp(2.85rem, 14vw, 4.4rem); }
  .hero-actions { 
    align-items: flex-start; 
    flex-direction: column; gap: 24px; 
  }
  .scroll-prompt { display: none; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid > div { 
    min-height: 100px; padding: 15px; 
    border-bottom: 1px solid #ded9ce; 
  }
  .trust-grid > div:first-child { padding-left: 0; }
  .trust-grid > div:nth-child(2) { border-right: 0; }
  .trust-grid > div:nth-child(3) { padding-left: 0; border-bottom: 0; }
  .trust-grid > div:last-child { border-bottom: 0; }
  .section { padding: 77px 0; }
  .intro-section { padding-bottom: 73px; }
  .intro-layout, .heading-split { 
    grid-template-columns: 1fr; 
    display: grid; gap: 24px; 
  }
  .heading-split { align-items: start; }
  .heading-split > p { margin: 0; }
  .section-heading { margin-bottom: 38px; }
  .value-grid, .service-grid, .insight-grid, .footer-top { 
    grid-template-columns: 1fr; 
  }
  .value-card { 
    min-height: 258px; 
  }
  .service-card { 
    min-height: 290px; padding: 28px; 
  }
  
  .journey-layout, .industries-layout, .faq-layout, .contact-layout { gap: 42px; }

  .advisory-image { 
    min-height: 280px; 
  }
  .advisory-panel { 
    padding: 65px 16px; 
  }
  .insight-card {
    min-height: 285px;
  }

  .faq-item button { 
    min-height: 67px; font-size: 18px; 
  }
  .form-row { 
    grid-template-columns: 1fr; gap: 16px; 
  }

  .consultation-form { 
    padding: 26px 22px; 
  }

  .footer-top { 
    gap: 36px; padding: 46px 0 38px; 
  }
  .footer-links:last-child { 
    grid-column: auto; 
  }
  .footer-bottom { 
    min-height: 84px; 
    align-items: flex-start; 
    flex-direction: column; 
    justify-content: center; 
    gap: 6px; 
  }
}
