﻿@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap");

:root {
  --navy: #0e2b57;
  --navy-deep: #0a2144;
  --blue: #2f6fdf;
  --blue-soft: #edf3fb;
  --ink: #12233f;
  --muted: #44556f;
  --line: rgba(14, 43, 87, 0.12);
  --paper: #f4f7fb;
  --card: #ffffff;
  --shadow: 0 24px 60px rgba(12, 33, 68, 0.12);
  --shadow-soft: 0 12px 32px rgba(12, 33, 68, 0.08);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.75;
}

a { color: inherit; text-decoration: none; }
.page-shell { min-height: 100vh; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(14, 43, 87, 0.08);
}
.nav-wrap, .section, .footer-wrap, .page-hero, .content-grid, .simple-content, .home-section {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}
.brand { display: inline-flex; align-items: center; }
.brand-logo { display: block; height: 48px; width: auto; object-fit: contain; }
.brand-mark {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.01em;
}
.brand-sub {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #64748d;
}
.nav-toggle {
  display: none;
  border: 0;
  background: var(--navy);
  color: #fff;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  font-weight: 600;
}
.main-nav { display: flex; align-items: center; gap: 0.4rem; }
.nav-item { position: relative; }
.nav-link, .nav-button {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.8rem 1rem;
  color: var(--navy);
  font-weight: 600;
  border-radius: 999px;
}
.nav-link:hover, .nav-button:hover { background: rgba(47, 111, 223, 0.08); }
.nav-button { border: 0; background: transparent; cursor: pointer; font: inherit; }
.dropdown {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 0;
  min-width: 290px;
  display: none;
  flex-direction: column;
  padding: 0.8rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.nav-item:hover .dropdown, .nav-item:focus-within .dropdown { display: flex; }
.dropdown a { padding: 0.75rem 0.9rem; border-radius: 12px; }
.dropdown a:hover { background: rgba(47, 111, 223, 0.08); color: var(--blue); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.45rem;
  border-radius: 6px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: #415b82; color: #fff; box-shadow: 0 10px 22px rgba(14, 43, 87, 0.14); }
.login-link { font-size: 0.92rem; padding: 0.78rem 1.15rem; }
.btn-secondary { background: #fff; color: var(--navy); border: 1px solid rgba(14, 43, 87, 0.18); }
.btn-accent { background: var(--blue); color: #fff; }
.btn-outline { border: 1px solid rgba(255, 255, 255, 0.9); color: #fff; background: transparent; }
.login-link { margin-left: 0.4rem; }

h1, h2, h3 {
  margin: 0 0 1rem;
  color: var(--navy-deep);
  line-height: 1.18;
  font-weight: 700;
}
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 3.6vw, 3.3rem); }
h3 { font-size: 1.55rem; }
p, li { color: var(--muted); font-size: 1.04rem; }

.page-hero { padding: 4rem 0 1.2rem; }
.page-hero-card {
  padding: 2.8rem;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  box-shadow: var(--shadow);
}
.page-hero-card h1, .page-hero-card p { color: #fff; }
.content-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  padding: 1.2rem 0 4rem;
}
.simple-content { padding: 1.2rem 0 4rem; }
.content-block, .contact-card, .login-card, .feature-banner, .card, .insight-card, .news-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 1.7rem;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 1.4rem;
}

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

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

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

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.card-number {
  display: inline-flex;
  width: 2.2rem;
  height: 2.2rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: rgba(47, 111, 223, 0.1);
  color: var(--navy);
  font-weight: 700;
}

.home-shell { background: #fff; }
.home-section { padding: 5.5rem 0; }
.home-kicker {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  position: relative;
  padding-bottom: 1rem;
}
.home-kicker::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 92px;
  height: 3px;
  background: var(--blue);
}
.home-kicker-light { color: #fff; }

.editorial-hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  min-height: 680px;
  background:
    radial-gradient(circle at 85% 15%, rgba(188, 226, 243, 0.9), transparent 22%),
    radial-gradient(circle at 75% 30%, rgba(79, 151, 186, 0.52), transparent 28%),
    radial-gradient(circle at 22% 55%, rgba(7, 33, 70, 0.86), transparent 40%),
    linear-gradient(rgba(8, 30, 62, 0.42), rgba(8, 30, 62, 0.32)), url('city-business.jpg') center/cover no-repeat;
}
.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 55%, rgba(255, 255, 255, 0.12), transparent 20%),
    radial-gradient(circle at 58% 48%, rgba(255, 255, 255, 0.08), transparent 16%),
    radial-gradient(circle at 38% 30%, rgba(0, 0, 0, 0.16), transparent 28%);
}
.hero-card {
  position: relative;
  z-index: 1;
  width: min(620px, calc(100% - 2rem));
  margin: 6.2rem calc((100% - min(calc(100% - 2rem), var(--max))) / 2 + 2rem) 6.2rem auto;
  padding: 3rem 2.6rem;
  background: rgba(243, 247, 252, 0.95);
  border-bottom: 8px solid #c8ab4d;
  box-shadow: var(--shadow);
}
.hero-card h1 { max-width: 12ch; font-size: clamp(2.6rem, 4.8vw, 4rem); }
.hero-card p { max-width: 30ch; font-size: 1.08rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }

.mission-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: start;
}
.mission-copy h2 { max-width: 20ch; font-size: clamp(2.2rem, 4vw, 3.6rem); line-height: 1.16; }
.mission-copy p { max-width: 44ch; }
.mission-panel {
  background: #f7f8fb;
  padding: 2rem;
  border: 1px solid rgba(14, 43, 87, 0.06);
}
.mission-link {
  display: grid;
  grid-template-columns: 174px 1fr;
  gap: 1.2rem;
  align-items: center;
  padding: 0.55rem 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy-deep);
}
.mission-thumb,
.editorial-image,
.insight-art,
.visual-frame {
  display: block;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.thumb-one { background: url('meeting-team.jpg') center/cover no-repeat; }
.thumb-two { background: url('advisory-discussion.jpg') center/cover no-repeat; }
.thumb-three { background: url('city-business.jpg') center/cover no-repeat; }
.thumb-four { background: url('boardroom-meeting.jpg') center/cover no-repeat; }
.mission-thumb {
  width: 174px;
  height: 84px;
}
.editorial-image {
  width: 100%;
  height: 180px;
  margin-bottom: 1.3rem;
}
.insight-art {
  width: 100%;
  height: 210px;
  margin-bottom: 1.2rem;
}
.visual-frame {
  border: 16px solid rgba(255, 255, 255, 0.42);
  box-shadow: var(--shadow-soft);
  width: min(100%, 360px);
  height: 230px;
  margin-left: auto;
}

.clients-band, .news-band, .cta-band { width: 100%; max-width: none; }
.clients-band {
  position: relative;
  background:
    radial-gradient(circle at 75% 18%, rgba(50, 111, 223, 0.18), transparent 10%),
    radial-gradient(circle at 59% 44%, rgba(50, 111, 223, 0.16), transparent 9%),
    linear-gradient(180deg, #0f2d5a 0%, #0e2850 100%);
  color: #fff;
  padding-bottom: 3rem;
}
.clients-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(47, 111, 223, 0.17), rgba(47, 111, 223, 0.17)),
    linear-gradient(70deg, transparent 30%, rgba(47, 111, 223, 0.12) 30.5%, transparent 31%),
    linear-gradient(18deg, transparent 45%, rgba(47, 111, 223, 0.1) 45.5%, transparent 46%);
  background-size: 0 0, 240px 240px, 220px 220px;
  opacity: 0.6;
  pointer-events: none;
}
.band-copy, .client-card-row {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}
.band-copy h2, .band-copy p { color: #fff; max-width: 18ch; }
.band-copy p { max-width: 56ch; margin-bottom: 4rem; }
.client-card-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.client-card { background: #fff; color: var(--ink); padding: 2rem; box-shadow: var(--shadow-soft); }
.client-card h3 { max-width: 12ch; }
.client-card a, .section-link { color: var(--blue); font-weight: 600; }

.outlook-section {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: start;
  background: var(--blue-soft);
  padding: 4.5rem min(4vw, 3rem);
}

.outlook-visual { display: flex; justify-content: flex-end; align-items: flex-start; padding-top: 0.75rem; }
.visual-mist {
  background:
    linear-gradient(rgba(14, 43, 87, 0.16), rgba(14, 43, 87, 0.16)),
    url('city-business.jpg') center/cover no-repeat;
  min-height: 230px;
}

.news-band {
  background: linear-gradient(180deg, #15386a 0%, #0f2e5d 100%);
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.news-head, .editorial-grid {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.news-head h2, .news-head p { color: #fff; }
.editorial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.9rem; }
.editorial-card, .insight-feature { background: #fff; box-shadow: var(--shadow-soft); }
.editorial-card { padding: 0 0 1.8rem; }
.editorial-card .tag, .insight-feature .tag { margin-left: 1.8rem; }
.editorial-card h3, .editorial-card p { padding-left: 1.8rem; padding-right: 1.8rem; }
.img-singapore { background: linear-gradient(rgba(14, 43, 87, 0.08), rgba(14, 43, 87, 0.08)), url('news-custom-1.jpg') center/cover no-repeat; }
.img-harbour { background: linear-gradient(rgba(14, 43, 87, 0.08), rgba(14, 43, 87, 0.08)), url('news-custom-3.jpg') center/cover no-repeat; }
.img-skyline { background: linear-gradient(rgba(14, 43, 87, 0.08), rgba(14, 43, 87, 0.08)), url('news-custom-2.png') center/cover no-repeat; }
.tag {
  display: inline-block;
  margin-bottom: 0.9rem;
  margin-top: 1.4rem;
  padding: 0.3rem 0.65rem;
  background: #e7ebf2;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 600;
}

.insights-section { padding-top: 5.5rem; padding-bottom: 5.5rem; }
.section-topline {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.section-topline h2 { max-width: 18ch; }
.insights-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.35rem; }
.insight-feature { padding-bottom: 1.6rem; }
.insight-feature h3, .insight-feature p { padding: 0 1.45rem; }
.art-terrain { background: url('insight-fdi.svg') center/cover no-repeat; }
.art-spiral { background: url('insight-outbound.svg') center/cover no-repeat; }
.art-glass { background: url('insight-ma.svg') center/cover no-repeat; }
.art-water { background: url('insight-partner.svg') center/cover no-repeat; }

.cta-band {
  background: linear-gradient(180deg, #173a70 0%, #0f2b57 100%);
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.cta-band-inner {
  width: min(calc(100% - 2rem), 900px);
  margin: 0 auto;
  text-align: center;
}
.cta-band-inner h2 { color: #fff; margin-bottom: 2rem; }

.site-footer {
  padding: 4rem 0 1.8rem;
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.84);
}
.footer-wrap { display: grid; gap: 2.2rem; }
.footer-grid { display: grid; grid-template-columns: 1.1fr repeat(4, 1fr); gap: 1.5rem; }
.footer-title { margin-bottom: 0.8rem; color: #fff; font-weight: 700; font-size: 0.95rem; }
.footer-logo { display: block; height: 38px; width: auto; object-fit: contain; margin-bottom: 0.8rem; }
.footer-list { display: grid; gap: 0.55rem; }`r`n.footer-list a { font-size: 0.9rem; line-height: 1.5; }`r`n.site-footer p { font-size: 0.9rem; line-height: 1.6; margin: 0 0 1rem; color: rgba(255, 255, 255, 0.68); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.95rem;
}
.footer-legal { display: flex; flex-wrap: wrap; gap: 1rem; }

form { display: grid; gap: 1rem; }
label { display: grid; gap: 0.45rem; font-weight: 600; color: var(--navy); }
input, select, textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(14, 43, 87, 0.14);
  background: rgba(255, 255, 255, 0.92);
  font: inherit;
  color: var(--ink);
}
textarea { min-height: 160px; resize: vertical; }
.two-col { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.info-list { display: grid; gap: 1rem; }
.info-item strong { display: block; margin-bottom: 0.25rem; color: var(--navy); }

.fade-up {
  opacity: 1;
  transform: none;
}
.fade-up.visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .mission-section, .outlook-section, .content-grid, .client-card-row, .editorial-grid, .insights-grid, .footer-grid, .two-col { grid-template-columns: 1fr; }
  .hero-card { margin-left: auto; margin-right: auto; }
  .section-topline { flex-direction: column; }
}

@media (max-width: 980px) {
  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .nav-item:hover .dropdown, .nav-item:focus-within .dropdown { display: none; }
  .nav-item.mobile-open .dropdown {
    position: static;
    display: flex;
    min-width: auto;
    margin-top: 0.4rem;
    box-shadow: none;
    border-radius: 16px;
  }
  .login-link { margin-left: 0; }
  .editorial-hero { min-height: auto; padding: 2rem 0 3rem; }
  .hero-card { padding: 2rem; }
  .mission-link { grid-template-columns: 1fr; }
}























@media (max-width: 760px) {
  .page-hero {
    padding: 1.25rem 0 0.75rem;
  }

  .page-hero-card {
    padding: 1.6rem;
    border-radius: 24px;
  }

  .page-hero-card h1 {
    font-size: clamp(2rem, 10vw, 2.8rem);
    line-height: 1.08;
  }

  .simple-content,
  .content-grid {
    padding-bottom: 2.2rem;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .insights-grid,
  .editorial-grid,
  .client-card-row,
  .two-col {
    grid-template-columns: 1fr;
  }

  .insight-card,
  .news-card,
  .content-block,
  .contact-card,
  .login-card,
  .card,
  .feature-banner {
    padding: 1.4rem;
  }

  .insight-card h3,
  .news-card h3,
  .content-block h3,
  .contact-card h3,
  .login-card h3,
  .card h3 {
    font-size: 1.8rem;
    line-height: 1.15;
    word-break: break-word;
  }
}

@media (max-width: 760px) {
  .nav-wrap {
    padding: 0.75rem 0;
  }

  .brand-logo {
    height: 34px;
  }

  .nav-toggle {
    padding: 0.65rem 0.9rem;
    font-size: 0.9rem;
  }
}
