/* ============================================================
   WJ Insurance — Editorial Stylesheet
   Palette preserved. Composition reset for an editorial,
   print-led aesthetic: hairlines, column rules, italic
   numerals, restrained accent, generous negative space.
   ============================================================ */

/* ============ Tokens ============ */
:root {
  /* Colour — preserved from previous palette */
  --navy: #1a2c5b;
  --navy-deep: #122144;
  --navy-ink: #0c1a36;
  --accent: #4a8a6f;
  --accent-text: #386f59;
  --accent-soft: #b8d4c4;
  --cream: #f8f4ec;
  --paper: #fdfaf3;
  --bone: #f3eee3;
  --warm: #faf1e0;
  --ink: #1a1d24;
  --muted: #6b6f78;
  --line: #d9d1bd;
  --line-soft: #ebe5d4;
  --line-dark: rgba(255,255,255,.14);

  /* Type */
  --serif: 'Cormorant Garamond', 'Songti SC', 'Source Han Serif SC', 'Noto Serif SC', Georgia, serif;
  --sans: 'Inter Tight', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', system-ui, sans-serif;
  --mono: 'JetBrains Mono', 'IBM Plex Mono', ui-monospace, monospace;

  /* Layout */
  --container: 1280px;
  --gutter: clamp(20px, 3vw, 40px);
  --pad-y: clamp(104px, 12vw, 168px);

  /* Typographic rhythm */
  --eyebrow-track: .26em;
  --eyebrow-size: 11px;
}
[data-density="compact"] { --pad-y: clamp(72px, 8vw, 112px); }

/* ============ Reset ============ */
* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  background: var(--navy-ink);
}
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  line-height: 1.6;
  font-feature-settings: "ss01", "kern", "liga";
  overflow-x: hidden;
  /* Subtle paper grain — feels printed, not screened */
  background-image:
    radial-gradient(1200px 700px at 20% -10%, rgba(74,138,111,.04), transparent 60%),
    radial-gradient(900px 600px at 100% 100%, rgba(26,44,91,.035), transparent 55%);
  background-attachment: fixed;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { max-width: 100%; display: block; }
::selection { background: var(--navy); color: var(--paper); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ============ Logo ============ */
.logo {
  display: inline-grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto auto;
  align-items: center;
  justify-items: center;
  gap: 2px 6px;
  font-family: var(--serif);
  line-height: 1;
  min-width: 88px;
}
.logo-mark {
  grid-column: 1;
  grid-row: 1 / 2;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--navy);
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  width: 100%;
  font-feature-settings: "ss01";
}
.logo-w, .logo-j { display: inline-block; }
.logo-swoosh { grid-column: 1; grid-row: 2 / 3; height: 4px; width: 64px; margin: -2px auto 0; opacity: .9; }
.logo-swoosh svg { width: 100%; height: 100%; }
.logo-rule { grid-column: 1; grid-row: 3 / 4; width: 86px; height: 1px; background: var(--navy); margin-top: 2px; }
.logo-tag {
  grid-column: 1;
  grid-row: 4 / 5;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .42em;
  color: var(--navy);
  text-align: center;
  padding-top: 4px;
  font-weight: 500;
}

/* ============ Topbar ============ */
.topbar {
  background: var(--navy-ink);
  color: rgba(255,255,255,.75);
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .04em;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 40px;
}
.ticker { display: inline-flex; align-items: center; gap: 10px; text-transform: uppercase; letter-spacing: .14em; font-size: 10.5px; }
.dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #4ad17b;
  box-shadow: 0 0 0 3px rgba(74,209,123,.18);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(74,209,123,.18); }
  50%      { box-shadow: 0 0 0 5px rgba(74,209,123,.08); }
}
.topbar-right { display: flex; align-items: center; gap: 14px; }
.topbar-right > a { transition: color .18s; }
.topbar-right > a:hover { color: var(--accent-soft); }
.sep { opacity: .3; }
.lang-btn {
  color: rgba(255,255,255,.55);
  padding: 4px 9px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: color .18s, background .18s;
  border-radius: 0;
}
.lang-btn.on { color: #fff; background: rgba(255,255,255,.08); }
.lang-btn:hover { color: var(--accent-soft); }

/* ============ General Advice Banner (regulatory, persistent) ============ */
.ga-banner {
  background: var(--warm);
  border-bottom: 1px solid var(--line);
  font-size: 12.5px;
  line-height: 1.55;
  color: #4a3f1f;
  position: relative;
}
.ga-banner-inner {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 14px;
  padding: 10px calc(var(--gutter) + 36px) 10px var(--gutter);
  text-align: center;
}
.ga-banner-tag {
  flex-shrink: 0;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 2px 8px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.4);
  white-space: nowrap;
  margin-top: 1px;
}
.ga-banner-text { margin: 0; }
.ga-banner-close {
  position: absolute;
  top: 50%;
  right: max(14px, var(--gutter));
  width: 28px;
  height: 28px;
  transform: translateY(-50%);
  border: 1px solid rgba(74, 63, 31, .22);
  border-radius: 50%;
  color: #4a3f1f;
  background: rgba(255,255,255,.35);
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1;
  transition: background .18s, border-color .18s;
}
.ga-banner-close:hover {
  background: rgba(255,255,255,.65);
  border-color: rgba(74, 63, 31, .38);
}
@media (max-width: 720px) {
  .ga-banner-inner {
    flex-direction: column;
    gap: 6px;
    padding: 10px calc(var(--gutter) + 34px) 10px var(--gutter);
    text-align: left;
  }
  .ga-banner { font-size: 12px; }
  .ga-banner-close {
    top: 10px;
    transform: none;
  }
}

/* ============ Nav ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s;
}
.nav-scrolled {
  background: rgba(253, 250, 243, 0.86);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--line-soft);
}
.nav.nav-menu-open {
  background: var(--paper);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 40px;
}
.nav-links a {
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding: 8px 0;
  transition: color .2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width .35s cubic-bezier(.2, .7, .2, 1);
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { width: 100%; }

/* Services dropdown */
.nav-group { position: relative; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 0;
  min-width: 210px;
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s, transform .2s;
  box-shadow: 0 16px 40px -16px rgba(12, 26, 54, .22);
  z-index: 10;
}
.nav-group:hover .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown li a {
  display: block;
  padding: 10px 20px;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
  transition: color .18s, background .18s;
}
.nav-dropdown li a::after { display: none; }
.nav-dropdown li a:hover { color: var(--navy); background: var(--cream); }
.lang-zh .nav-dropdown li a { font-family: var(--sans); font-size: 13px; letter-spacing: .08em; text-transform: none; }

.nav-cta {
  background: var(--navy);
  color: #fff;
  padding: 13px 24px 12px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  transition: background .2s, transform .2s, box-shadow .25s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.nav-cta:hover {
  background: var(--navy-deep);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px -16px rgba(12, 26, 54, .45);
}
.lang-zh .nav-links { gap: 32px; }
.lang-zh .nav-links a {
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: .14em;
  text-transform: none;
}

/* Burger */
.nav-burger {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  margin-right: -10px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
}
.nav-burger span {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 1.25px;
  background: var(--navy);
  transition: top .25s ease, opacity .2s ease;
}
.nav-burger span:nth-child(1) { top: 16px; }
.nav-burger span:nth-child(2) { top: 22px; right: 18px; }
.nav-burger span:nth-child(3) { top: 28px; }
.nav-burger:hover span { background: var(--accent); }
.nav-menu-open .nav-burger { opacity: 0; pointer-events: none; }

/* Mobile drawer */
.mobile-menu {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(420px, 92vw);
  background: var(--paper);
  box-shadow: -36px 0 80px -32px rgba(12, 26, 54, .28);
  transform: translateX(100%);
  transition: transform .42s cubic-bezier(.32, .72, .24, 1);
  z-index: 60;
  padding: 32px 36px 40px;
  display: flex;
  flex-direction: column;
  visibility: hidden;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}
.mobile-menu.on { transform: translateX(0); visibility: visible; }
.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 16px;
}
.mobile-menu-eyebrow {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--muted);
}
.mobile-menu-close {
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .25s;
}
.mobile-menu-close:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  transform: rotate(90deg);
}
.mobile-menu-close svg { width: 18px; height: 18px; }
.mobile-menu-links {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
}
.mobile-menu-links li + li { border-top: 1px solid var(--line-soft); }
.mobile-menu-links a {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: baseline;
  gap: 16px;
  padding: 22px 4px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -.015em;
  color: var(--navy);
  transition: color .2s, transform .2s;
}
.mobile-menu-links a:hover { color: var(--accent-text); }
.mobile-menu-links a:hover .mobile-menu-arrow {
  transform: translateX(6px);
  color: var(--accent-text);
}
.mobile-menu-num {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .22em;
  font-weight: 500;
  color: var(--muted);
  align-self: center;
}
.mobile-menu-arrow {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--muted);
  transition: transform .25s, color .25s;
  align-self: center;
}
.lang-zh .mobile-menu-links a { font-size: 26px; }
.mobile-menu-cta {
  align-self: stretch;
  justify-content: center;
  width: 100%;
  margin-bottom: 28px;
}
.mobile-menu-services {
  border-top: 1px solid var(--line-soft);
  padding-top: 18px;
  margin-bottom: 28px;
}
.mobile-menu-services-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.mobile-menu-service-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 4px;
  font-family: var(--serif);
  font-size: 19px;
  color: var(--navy);
  border-bottom: 1px solid var(--line-soft);
  transition: color .2s;
}
.mobile-menu-service-link::after { content: '→'; font-style: italic; color: var(--muted); transition: transform .25s, color .25s; }
.mobile-menu-service-link:hover { color: var(--accent-text); }
.mobile-menu-service-link:hover::after { transform: translateX(5px); color: var(--accent-text); }
.lang-zh .mobile-menu-service-link { font-size: 17px; }

.mobile-menu-foot {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-menu-foot a {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--navy);
  transition: color .18s;
}
.mobile-menu-foot a:hover { color: var(--accent-text); }

.mobile-menu-scrim {
  position: fixed;
  inset: 0;
  background: rgba(12, 26, 54, 0);
  border: 0;
  padding: 0;
  cursor: pointer;
  z-index: 55;
  pointer-events: none;
  transition: background .3s ease;
}
.mobile-menu-scrim.on {
  background: rgba(12, 26, 54, .42);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  pointer-events: auto;
}

/* ============ Editorial primitives ============ */
.eyebrow {
  font-family: var(--mono);
  font-size: var(--eyebrow-size);
  letter-spacing: var(--eyebrow-track);
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  position: relative;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}
.lang-zh .eyebrow { letter-spacing: .18em; }

.section-title {
  font-family: var(--serif);
  font-size: clamp(40px, 5.6vw, 76px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -.02em;
  color: var(--navy);
  text-wrap: balance;
  font-feature-settings: "ss01", "kern", "liga", "onum";
}
.section-title.light { color: #fff; }
.section-title em {
  color: var(--accent-text);
  font-style: italic;
  font-weight: 500;
  font-feature-settings: "ss01";
}
.lang-zh .section-title {
  font-family: 'Songti SC', 'Source Han Serif SC', var(--serif);
  font-size: clamp(36px, 4.8vw, 64px);
  letter-spacing: 0;
  line-height: 1.18;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 32px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  transition: background .2s, color .2s, transform .25s, box-shadow .25s, border-color .2s;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
}
.lang-zh .btn {
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: .12em;
  text-transform: none;
}
.btn span[aria-hidden] {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  letter-spacing: 0;
  text-transform: none;
  transition: transform .25s;
}
.btn:hover span[aria-hidden] { transform: translateX(3px); }
.btn-primary {
  background: var(--navy);
  color: #fff;
}
.btn-primary:hover {
  background: var(--navy-deep);
  transform: translateY(-1px);
  box-shadow: 0 18px 38px -18px rgba(26,44,91,.55);
}
.btn-ghost {
  color: var(--navy);
  border: 1px solid var(--navy);
  background: transparent;
}
.btn-ghost:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.text-link {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--navy);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 3px;
  transition: color .2s, border-color .2s;
}
.text-link:hover { color: var(--accent-text); }

/* Placeholder (legacy) */
.placeholder {
  position: relative;
  width: 100%; height: 100%;
  background: var(--bone);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ph-stripes {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(-45deg, transparent 0, transparent 14px, rgba(26,44,91,.06) 14px, rgba(26,44,91,.06) 15px);
}
.ph-label {
  position: relative;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .22em;
  color: var(--navy);
  background: var(--paper);
  padding: 6px 12px;
  border: 1px solid var(--line);
  text-transform: uppercase;
}

/* ============ Hero ============ */
.hero {
  position: relative;
  background: var(--paper);
  padding-top: clamp(18px, 3svh, 32px);
  padding-bottom: 0;
  overflow: hidden;
  min-height: max(620px, calc(100svh - 136px));
  display: flex;
  align-items: stretch;
}
.hero::before {
  content: '';
  position: absolute;
  top: 4%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(74,138,111,.10) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  /* Faint vertical column rule, like a magazine page */
  content: '';
  position: absolute;
  top: 60px; bottom: 60px;
  left: calc(50% - 0.5px);
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--line-soft) 18%, var(--line-soft) 82%, transparent);
  opacity: .6;
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding-bottom: clamp(36px, 5svh, 72px);
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* Top meta — masthead flag */
.hero-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 8px 0 clamp(28px, 6svh, 72px);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-meta-mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--navy);
  text-transform: none;
  position: relative;
  padding-right: 4px;
}
.hero-meta-mark::after {
  content: '·';
  font-style: normal;
  margin-left: 10px;
  color: var(--accent-text);
}
.hero-meta-rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--line), transparent);
  max-width: 240px;
}
.hero-meta-rule:last-of-type {
  background: linear-gradient(to right, transparent, var(--line));
}
.hero-meta-label { white-space: nowrap; }

/* Body */
.hero-body {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 1fr);
  gap: clamp(40px, 6vw, 84px);
  align-items: center;
  flex: 1;
  align-self: stretch;
}
.hero-text { position: relative; z-index: 2; }
.hero-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(48px, 6.8vw, 96px);
  line-height: .98;
  letter-spacing: -.032em;
  color: var(--navy);
  margin-bottom: clamp(22px, 4svh, 34px);
  text-wrap: balance;
  font-feature-settings: "ss01", "liga", "kern";
}
.hero-title em {
  font-style: italic;
  color: var(--accent-text);
  position: relative;
  font-weight: 500;
  font-feature-settings: "ss01";
}
.hero-title em::after {
  content: '';
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: 6%;
  height: 14px;
  background: var(--accent);
  opacity: .12;
  transform: skewX(-8deg);
  z-index: -1;
}
.lang-zh .hero-title {
  font-family: 'Songti SC', 'Source Han Serif SC', var(--serif);
  font-size: clamp(44px, 6.2vw, 84px);
  letter-spacing: 0;
  line-height: 1.06;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.62;
  color: #3a3f4b;
  max-width: 500px;
  margin-bottom: clamp(24px, 4svh, 36px);
  font-weight: 400;
}
/* Drop-in: the first letter as a discreet small-cap accent */
.hero-sub::first-letter {
  font-family: var(--serif);
  font-size: 1.15em;
  font-weight: 500;
  color: var(--navy);
  margin-right: .03em;
}

.hero-ctas { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: clamp(22px, 4svh, 34px); }

.hero-langs {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--navy);
  padding-top: 6px;
}
.hero-langs::before {
  content: 'Spoken here';
  color: var(--muted);
  font-size: 10px;
  margin-right: 6px;
}
.lang-zh .hero-langs::before { content: '本所通用'; letter-spacing: .12em; }
.lang-mark {
  position: relative;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  letter-spacing: .02em;
  text-transform: none;
  color: var(--navy);
  font-weight: 500;
}
.lang-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--accent);
  opacity: .65;
}

/* Collage */
.hero-collage {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: 1.5fr 1fr;
  gap: clamp(20px, 4svh, 36px) clamp(22px, 3vw, 34px);
  aspect-ratio: 5 / 6;
  max-width: min(560px, 46vw);
  max-height: min(620px, calc(100svh - 220px));
  margin-left: auto;
  width: 100%;
}
.hero-card {
  position: relative;
  background: #fff;
  overflow: hidden;
  box-shadow:
    0 40px 90px -40px rgba(12, 26, 54, .34),
    0 10px 24px -12px rgba(12, 26, 54, .12);
  border-radius: 0;
}
.hero-card-main {
  margin: 0;
  grid-column: 1;
  grid-row: 1 / 3;
  transform: translateY(-26px);
  overflow: visible;
  background: transparent;
  box-shadow: none;
}
.hero-card-main .hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 58% 40%;
  display: block;
  filter: contrast(1.03) saturate(.94);
  box-shadow:
    0 50px 110px -42px rgba(12, 26, 54, .44),
    0 14px 30px -14px rgba(12, 26, 54, .18);
}
.hero-card-corner {
  position: absolute;
  width: 52px; height: 52px;
  pointer-events: none;
  z-index: 3;
}
.hero-card-corner-tl {
  top: -14px; left: -14px;
  border-top: 1px solid var(--accent);
  border-left: 1px solid var(--accent);
}
.hero-card-corner-br {
  bottom: -14px; right: -14px;
  border-bottom: 1px solid var(--accent);
  border-right: 1px solid var(--accent);
}
.hero-card-cap {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(12, 26, 54, .82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  padding: 10px 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.cap-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  letter-spacing: .04em;
  color: var(--accent-soft);
  text-transform: none;
  font-weight: 500;
}
.cap-text { font-size: 10px; }

/* Stat / spec card — editorial spec-sheet style */
.hero-card-stat {
  grid-column: 2;
  grid-row: 1;
  background: var(--paper);
  color: var(--ink);
  padding: clamp(26px, 2.4vw, 36px) clamp(22px, 2vw, 30px) clamp(22px, 2vw, 28px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow:
    0 30px 60px -36px rgba(12, 26, 54, .22),
    0 8px 18px -10px rgba(12, 26, 54, .08);
}
.hero-card-stat::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: var(--accent);
}
.hero-card-stat::after {
  /* Faint corner mark, top-right */
  content: '§';
  position: absolute;
  top: 14px; right: 18px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--accent-text);
  opacity: .55;
}
.stat-eyebrow {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--navy-ink);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.stat-eyebrow::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}
.stat-num {
  font-family: var(--serif);
  font-size: clamp(64px, 6.8vw, 92px);
  font-weight: 500;
  line-height: .94;
  color: var(--navy-ink);
  letter-spacing: -.024em;
  font-feature-settings: "lnum", "ss01";
}
.stat-plus {
  color: var(--accent-text);
  font-size: .42em;
  vertical-align: super;
  margin-left: 3px;
  font-style: italic;
  font-weight: 500;
}
.stat-lbl {
  font-size: 13.5px;
  color: var(--ink);
  line-height: 1.6;
  letter-spacing: 0;
  max-width: 240px;
}
.stat-rule {
  height: 1px;
  background: var(--line);
  margin: 6px 0 0;
}
.stat-foot {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--navy-ink);
}
.stat-foot-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--navy-ink);
}
.stat-foot-licensee {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  letter-spacing: .01em;
  color: var(--navy);
  font-weight: 500;
}
.stat-afsl {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  letter-spacing: .04em;
  color: var(--navy);
  text-transform: none;
  font-weight: 500;
}

/* Skyline card */
.hero-card-skyline {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  position: relative;
  transform: translateY(26px);
}
.hero-img-skyline {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 65%;
  display: block;
  filter: contrast(1.06) saturate(.88);
}
.hero-card-skyline::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 26, 54, .55), transparent 55%);
  pointer-events: none;
}
.hero-skyline-cap {
  position: absolute;
  left: 16px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #fff;
  z-index: 2;
}
.skyline-pin {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(74,138,111,.32);
}

/* ============ Stats (legacy class kept for safety) ============ */
.stats { padding: var(--pad-y) 0; background: var(--paper); }
.stats-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 96px; align-items: end; }
.stats-title {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 500;
  line-height: 1.05;
  color: var(--navy);
  letter-spacing: -.012em;
  text-wrap: balance;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  border-top: 1px solid var(--line);
  padding-top: 40px;
}
.stats-grid .stat-num {
  font-family: var(--serif);
  font-size: clamp(44px, 4.8vw, 64px);
  font-weight: 500;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 10px;
}
.stats-grid .stat-lbl {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--muted);
  letter-spacing: .18em;
  text-transform: uppercase;
}

/* ============ Quick actions ============ */
.quick {
  padding: var(--pad-y) 0;
  background: var(--paper);
  border-top: 1px solid var(--line-soft);
}
.quick-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 64px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line-soft);
}
.quick-head .section-title { max-width: 540px; }
.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.quick-card {
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  padding: 44px 36px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background .3s, transform .3s;
  color: var(--navy);
  position: relative;
}
.quick-card:last-child { border-right: 0; }
.quick-card::before {
  /* Counter, like a magazine column number */
  counter-increment: quick-counter;
  content: '0' counter(quick-counter);
  position: absolute;
  top: 32px;
  right: 32px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--accent-text);
  opacity: .9;
  letter-spacing: .02em;
}
.quick-grid { counter-reset: quick-counter; }
.quick-card:hover {
  background: #fff;
  transform: translateY(-2px);
}
.quick-icon {
  width: 48px; height: 48px;
  background: transparent;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border: 1px solid var(--line);
  border-radius: 0;
  transition: border-color .25s, color .25s;
}
.quick-card:hover .quick-icon { border-color: var(--accent); color: var(--accent-text); }
.quick-icon svg { width: 24px; height: 24px; }
.quick-t {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: -.012em;
  line-height: 1.15;
}
.quick-b {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
  max-width: 36ch;
}
.quick-cta {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--navy);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 4px;
  align-self: flex-start;
  transition: color .2s, border-color .2s;
  margin-top: 8px;
}
.quick-card:hover .quick-cta { color: var(--accent-text); }

/* ============ Services ============ */
.services {
  padding: var(--pad-y) 0;
  background: var(--cream);
  position: relative;
}
.services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--line);
}
.services-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 64px;
}
.services-head .section-title { max-width: 760px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  counter-reset: service-counter;
}
.service-card {
  background: var(--paper);
  padding: 40px 32px 32px;
  position: relative;
  cursor: pointer;
  transition: background .3s ease;
  display: flex;
  flex-direction: column;
  min-height: 340px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  counter-increment: service-counter;
}
.service-card::after {
  content: '0' counter(service-counter);
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--muted);
  letter-spacing: 0;
  transition: color .3s;
}
.service-card:hover { background: #fff; }
.service-card:hover::after { color: var(--accent-text); }
.service-card.active { background: #fff; }
.service-card.active::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
}
.service-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--accent-text);
  background: transparent;
  padding: 0 0 12px;
  border-bottom: 1px solid var(--accent);
  margin-bottom: 20px;
  align-self: flex-start;
  border-radius: 0;
}
.service-title {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.12;
  margin-bottom: 14px;
  letter-spacing: -.012em;
}
.service-body {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 24px;
  flex: 1;
}
.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  border-top: 1px solid var(--line-soft);
  padding-top: 18px;
}
.service-list li {
  font-size: 13.5px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  letter-spacing: .04em;
}
.lang-zh .service-list li { font-family: var(--sans); }
.li-mark {
  width: 6px; height: 1px;
  background: var(--accent);
  border-radius: 0;
  flex-shrink: 0;
}
.service-arrow {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  color: var(--accent-text);
  align-self: flex-end;
  opacity: 0;
  transform: translateX(-8px);
  transition: all .35s cubic-bezier(.2, .7, .2, 1);
  line-height: 1;
  margin-top: -8px;
}
.service-card.active .service-arrow,
.service-card:hover .service-arrow {
  opacity: 1;
  transform: translateX(0);
}

.service-card-catchall {
  grid-column: 1 / -1;
  min-height: 0;
  background: transparent;
  border-right: 1px dashed var(--line);
  border-bottom: 1px dashed var(--line);
  border-left: 0;
  border-top: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto auto;
  column-gap: 48px;
  row-gap: 0;
  align-items: start;
  padding: 36px 40px;
}
.service-card-catchall::after { display: none; }
.service-card-catchall:hover,
.service-card-catchall.active { background: rgba(255,255,255,.6); }
.service-card-catchall .service-tag { grid-column: 1; grid-row: 1; }
.service-card-catchall .service-title { grid-column: 1; grid-row: 2; font-size: 24px; white-space: nowrap; }
.service-card-catchall .service-body { grid-column: 2; grid-row: 1 / 3; align-self: center; margin-bottom: 0; font-size: 14px; max-width: 520px; }
.service-card-catchall .service-list {
  grid-column: 1 / -1;
  grid-row: 3;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px 24px;
  border-top: 1px dashed var(--line-soft);
  padding-top: 20px;
  margin-top: 20px;
  margin-bottom: 0;
}
.service-card-catchall .service-arrow { display: none; }

/* ============ Approach (dark chapter) ============ */
.approach {
  padding: var(--pad-y) 0;
  background: var(--navy-ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.approach::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 540px; height: 540px;
  background: radial-gradient(circle, rgba(74,138,111,.14), transparent 70%);
  pointer-events: none;
}
.approach::after {
  /* Roman chapter mark — III  (hidden on small screens) */
  content: 'III.';
  position: absolute;
  top: 56px;
  right: var(--gutter);
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  letter-spacing: .12em;
  color: rgba(255,255,255,.28);
}
.approach .eyebrow {
  color: rgba(255,255,255,.6);
}
.approach .eyebrow::before { background: var(--accent); }
.approach-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 112px;
  align-items: start;
  position: relative;
}
.approach-body {
  font-size: 17px;
  line-height: 1.78;
  color: rgba(255,255,255,.78);
  margin: 32px 0 0;
  max-width: 480px;
  font-weight: 400;
}
.approach-body::first-letter {
  font-family: var(--serif);
  font-size: 1.18em;
  color: var(--accent-soft);
  margin-right: .03em;
}

.approach-right {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line-dark);
}
.step {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line-dark);
  align-items: baseline;
  transition: padding-left .3s;
}
.step:hover { padding-left: 8px; }
.step:last-child { border-bottom: 0; }
.step-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 42px;
  color: var(--accent);
  line-height: 1;
  letter-spacing: .02em;
}
.step-t {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -.012em;
}
.step-b {
  font-size: 14.5px;
  color: rgba(255,255,255,.7);
  line-height: 1.65;
  max-width: 52ch;
}

/* ============ Bilingual ============ */
.bilingual {
  padding: var(--pad-y) 0;
  background: var(--paper);
  position: relative;
  overflow: hidden;
}
.bilingual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent 0,
    transparent 40px,
    rgba(26,44,91,.018) 40px,
    rgba(26,44,91,.018) 41px
  );
  pointer-events: none;
}
.bilingual-inner {
  display: grid;
  grid-template-columns: 1.05fr 1.25fr;
  gap: 96px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.bi-pattern {
  position: relative;
  height: 540px;
  background: var(--warm);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--line);
}
.bi-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent 0 60px, rgba(26,44,91,.05) 60px 61px),
    repeating-linear-gradient(90deg, transparent 0 60px, rgba(26,44,91,.05) 60px 61px);
  pointer-events: none;
}
.bi-pattern::after {
  /* Corner registration mark */
  content: '';
  position: absolute;
  top: 18px; left: 18px;
  width: 28px; height: 28px;
  border-top: 1px solid var(--navy);
  border-left: 1px solid var(--navy);
  opacity: .5;
}
.bi-char {
  font-family: 'Songti SC', 'Source Han Serif SC', 'Cormorant Garamond', serif;
  font-size: 320px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1;
  position: relative;
}
.bi-char:first-child {
  position: absolute;
  top: 36px;
  left: 48px;
  color: var(--accent-text);
  opacity: .82;
}
.bi-char:last-child {
  position: absolute;
  bottom: 36px;
  right: 48px;
  color: var(--navy);
}
.bi-content { position: relative; }
.bi-body {
  font-size: 17px;
  line-height: 1.78;
  color: #3a3f4b;
  margin: 28px 0 22px;
  max-width: 560px;
}
.bi-note {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--navy);
  line-height: 1.6;
  padding: 6px 0 6px 22px;
  border-left: 2px solid var(--accent);
  margin-bottom: 40px;
  max-width: 560px;
  font-weight: 500;
}
.lang-zh .bi-note { font-family: 'Songti SC', 'Source Han Serif SC', var(--serif); }

.lang-grid {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.lang-chip {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line);
  padding: 18px 24px 18px 0;
  border-radius: 0;
  transition: padding-left .25s, color .25s;
  flex: 1;
  min-width: 140px;
}
.lang-chip:last-child { border-right: 0; }
.lang-chip:hover {
  padding-left: 8px;
}
.lang-chip:hover .lang-l { color: var(--accent-text); }
.lang-k {
  font-family: 'Songti SC', 'Source Han Serif SC', var(--serif);
  font-size: 30px;
  font-weight: 500;
  color: var(--accent-text);
  width: 40px;
  text-align: center;
  border-right: 1px solid var(--line);
  padding-right: 16px;
  font-style: italic;
  line-height: 1;
}
.lang-chip:first-child .lang-k { font-style: normal; font-family: var(--serif); }
.lang-l {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--navy);
  letter-spacing: .2em;
  text-transform: uppercase;
  transition: color .2s;
}
.lang-zh .lang-l { font-family: var(--sans); letter-spacing: .08em; text-transform: none; font-size: 14px; }

/* ============ Promise ============ */
.promise {
  padding: var(--pad-y) 0;
  background: var(--cream);
  position: relative;
}
.promise::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--line);
}
.promise-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 96px;
  align-items: start;
}
.promise-body {
  font-size: 17px;
  line-height: 1.78;
  color: #3a3f4b;
  margin-top: 28px;
  max-width: 500px;
}
.promise-right {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.promise-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 28px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  border-radius: 0;
  align-items: start;
  transition: padding-left .3s;
}
.promise-card:hover { padding-left: 8px; }
.promise-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 32px;
  color: var(--accent-text);
  line-height: 1;
  font-weight: 500;
  letter-spacing: .02em;
}
.promise-t {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -.012em;
}
.promise-b {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 56ch;
}

/* ============ Testimonials (legacy) ============ */
.testimonials {
  padding: var(--pad-y) 0;
  background: var(--cream);
  text-align: center;
}
.t-stage { position: relative; max-width: 920px; margin: 32px auto; min-height: 280px; }
.t-quote {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(12px);
  transition: all .5s ease;
  pointer-events: none;
}
.t-quote.on {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}
.quote-mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 120px;
  color: var(--accent-text);
  line-height: .5;
  height: 36px;
}
.t-quote p {
  font-family: var(--serif);
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.4;
  font-weight: 400;
  font-style: italic;
  color: var(--navy);
  margin: 28px 0 32px;
  text-wrap: balance;
}
.t-quote footer {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .2em;
  color: var(--muted);
  text-transform: uppercase;
}
.t-quote footer strong { color: var(--navy); font-weight: 500; }
.t-dots { display: flex; justify-content: center; gap: 10px; margin-top: 28px; }
.t-dot {
  width: 8px; height: 8px;
  background: rgba(26,44,91,.18);
  transition: all .3s;
  border-radius: 0;
}
.t-dot.on { background: var(--accent); width: 32px; }

/* ============ Contact ============ */
.contact {
  padding: var(--pad-y) 0;
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  bottom: -180px; left: -120px;
  width: 540px; height: 540px;
  background: radial-gradient(circle, rgba(74,138,111,.18), transparent 70%);
  pointer-events: none;
}
.contact::after {
  content: 'V.';
  position: absolute;
  top: 56px;
  right: var(--gutter);
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  letter-spacing: .12em;
  color: rgba(255,255,255,.28);
}
.contact .eyebrow { color: rgba(255,255,255,.6); }
.contact .eyebrow::before { background: var(--accent); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 96px;
  position: relative;
}
.contact-body {
  font-size: 17px;
  color: rgba(255,255,255,.78);
  line-height: 1.78;
  margin: 28px 0 44px;
  max-width: 480px;
}
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 460px;
  border-top: 1px solid var(--line-dark);
}
.contact-card {
  border-bottom: 1px solid var(--line-dark);
  padding: 22px 0;
  border-top: 0;
}
.cc-label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.cc-label::before {
  content: '';
  width: 12px;
  height: 1px;
  background: var(--accent);
}
.cc-val {
  font-family: var(--serif);
  font-size: 21px;
  color: #fff;
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: -.005em;
}
.cc-sub {
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(255,255,255,.65);
  margin-top: 6px;
  letter-spacing: .04em;
}

.contact-card-qr .qr-instruction { margin: 6px 0 14px; }
.contact-card-qr .qr-row {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  margin-top: 6px;
}
.qr-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}
.qr-img {
  width: 132px; height: 132px;
  background: #fff;
  padding: 8px;
  border-radius: 0;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
  border: 1px solid rgba(255,255,255,.1);
}
.qr-caption {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}

/* Form */
.contact-form {
  background: rgba(255,255,255,.025);
  border: 1px solid var(--line-dark);
  padding: 44px 40px;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  gap: 26px;
  position: relative;
}
.contact-form::before {
  /* Tiny spec mark in the corner */
  content: 'Form · F-01';
  position: absolute;
  top: 16px; right: 20px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
.form-row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-form label > span {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,.18);
  padding: 10px 0 12px;
  color: #fff;
  font-family: var(--serif);
  font-size: 19px;
  outline: none;
  transition: border-color .25s;
  border-radius: 0;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--accent); }
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,.6);
  font-style: italic;
}
.contact-form select { background: var(--navy); cursor: pointer; }
.contact-form select option { background: var(--navy-deep); }
.contact-form textarea {
  resize: vertical;
  font-family: var(--sans);
  font-size: 14.5px;
  line-height: 1.65;
}
.form-submit {
  margin-top: 12px;
  background: var(--accent);
  color: var(--navy-ink);
  font-weight: 600;
}
.form-submit:hover {
  background: var(--accent-soft);
  transform: translateY(-1px);
  box-shadow: 0 18px 38px -18px rgba(74,138,111,.5);
}
.form-submit.sent {
  background: #4ad17b;
  color: #fff;
}
.form-fine {
  font-family: var(--mono);
  font-size: 10.5px;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
  letter-spacing: .04em;
}

/* ============ Footer ============ */
.footer {
  background: var(--navy-ink);
  color: rgba(255,255,255,.7);
  padding: 96px 0 calc(32px + env(safe-area-inset-bottom));
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(74,138,111,.4), transparent);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 96px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--line-dark);
  margin-bottom: 32px;
}
.footer-tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: rgba(255,255,255,.6);
  margin-top: 28px;
  max-width: 300px;
  line-height: 1.55;
  font-weight: 500;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-cols h5 {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 22px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.footer-cols h5::before {
  content: '';
  width: 14px;
  height: 1px;
  background: var(--accent);
}
.footer-cols a,
.footer-cols .footer-col-link {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,.7);
  padding: 8px 0;
  transition: color .2s, padding-left .25s;
  background: none;
  border: 0;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  width: 100%;
  letter-spacing: .005em;
}
.footer-cols a:hover,
.footer-cols .footer-col-link:hover {
  color: #fff;
  padding-left: 6px;
}
.footer-cols .footer-col-static { cursor: default; }
.footer-cols .footer-col-static:hover { color: rgba(255,255,255,.7); padding-left: 0; }

.footer-disclaimer {
  font-size: 11.5px;
  line-height: 1.7;
  color: rgba(255,255,255,.68);
  max-width: 920px;
  margin: 0 0 28px;
  font-family: var(--mono);
  letter-spacing: .005em;
}
.lang-zh .footer-disclaimer { font-family: var(--sans); font-size: 12px; }
.footer-disclaimer p { margin: 0 0 12px; }
.footer-disclaimer p:last-child { margin-bottom: 0; }

.footer-bot {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11.5px;
  color: rgba(255,255,255,.68);
  letter-spacing: .04em;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
}

.footer-legal {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.footer-legal .sep { opacity: .35; }
.footer-link {
  color: rgba(255,255,255,.55);
  font: inherit;
  letter-spacing: inherit;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  transition: color .2s;
  border-bottom: 1px solid transparent;
}
.footer-link:hover {
  color: var(--accent-soft);
  border-bottom-color: rgba(74, 138, 111, .5);
}

/* ============ WhatsApp float ============ */
.wa-float {
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 12px 28px rgba(37, 211, 102, .35),
    0 3px 8px rgba(0, 0, 0, .14);
  z-index: 999;
  transition: transform .25s, box-shadow .25s, background .2s;
}
.wa-float:hover {
  background: #1ebe5b;
  transform: translateY(-3px) scale(1.04);
  box-shadow:
    0 16px 36px rgba(37, 211, 102, .45),
    0 6px 14px rgba(0, 0, 0, .18);
}
.wa-float svg { width: 30px; height: 30px; fill: currentColor; }

/* ============ Modal ============ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(12, 26, 54, .62);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 1000;
  animation: modal-fade .25s ease;
}
@keyframes modal-fade { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: var(--paper);
  width: min(840px, 100%);
  max-height: calc(100vh - 48px);
  border-radius: 0;
  box-shadow:
    0 36px 96px rgba(12, 26, 54, .42),
    0 8px 22px rgba(12, 26, 54, .2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: modal-rise .32s cubic-bezier(.2, .7, .2, 1);
  border: 1px solid var(--line);
  position: relative;
}
.modal::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, var(--navy), var(--accent), var(--navy));
}
@keyframes modal-rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 40px 44px 28px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(120% 100% at 0% 0%, rgba(74,138,111,.10), transparent 55%),
    var(--paper);
}
.modal-head-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.modal-title {
  font-family: var(--serif);
  font-size: clamp(30px, 3.6vw, 40px);
  font-weight: 500;
  letter-spacing: -.015em;
  color: var(--navy);
  line-height: 1.08;
}
.modal-updated {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}
.modal-close {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  background: transparent;
  border: 1px solid var(--line);
  flex-shrink: 0;
  transition: all .25s;
}
.modal-close:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  transform: rotate(90deg);
}
.modal-close svg { width: 18px; height: 18px; }
.modal-body {
  padding: 32px 44px 44px;
  overflow-y: auto;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.7;
  scrollbar-width: thin;
}
.modal-body::-webkit-scrollbar { width: 8px; }
.modal-body::-webkit-scrollbar-thumb { background: rgba(26,44,91,.18); border-radius: 4px; }
.modal-body::-webkit-scrollbar-track { background: transparent; }
.modal-intro {
  font-family: var(--serif);
  font-style: italic;
  font-size: 21px;
  line-height: 1.55;
  color: var(--navy);
  padding: 0 0 24px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 32px;
  font-weight: 500;
}
.lang-zh .modal-intro { font-family: 'Songti SC', 'Source Han Serif SC', var(--serif); }
.modal-section { margin-bottom: 32px; }
.modal-section:last-child { margin-bottom: 0; }
.modal-section h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -.005em;
}
.modal-section h4 {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent-text);
  margin: 22px 0 10px;
  font-weight: 500;
}
.modal-section p { color: var(--ink); margin-bottom: 12px; }
.modal-section p:last-child { margin-bottom: 0; }
.modal-section ul {
  list-style: none;
  padding: 0;
  margin: 8px 0 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.modal-section li {
  position: relative;
  padding-left: 24px;
  color: var(--ink);
}
.modal-section li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 12px;
  width: 10px;
  height: 1px;
  background: var(--accent);
}
.modal-subsection { margin-top: 8px; }
.modal-after { margin-top: 16px; }
.lang-zh .modal-body, .lang-zh .modal-intro { line-height: 1.85; }

/* ============ Responsive ============ */
@media (max-width: 1024px) {
  .stats-inner,
  .approach-inner,
  .bilingual-inner,
  .contact-inner,
  .footer-top,
  .promise-inner,
  .quick-head {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .hero { min-height: 0; }
  .hero::after { display: none; }
  .hero-body {
    grid-template-columns: minmax(0, 1fr) minmax(260px, .78fr);
    gap: 32px;
    align-items: center;
  }
  .hero-title { font-size: clamp(44px, 6vw, 68px); }
  .lang-zh .hero-title { font-size: clamp(40px, 5.4vw, 62px); }
  .hero-sub { font-size: 16.5px; line-height: 1.55; }
  .hero-collage {
    max-width: min(340px, 100%);
    max-height: calc(100svh - 230px);
    aspect-ratio: 5 / 6;
    margin: 0 auto;
  }
  .services-grid,
  .quick-grid {
    grid-template-columns: repeat(2, 1fr);
    border-bottom: 1px solid var(--line);
  }
  .quick-card:nth-child(2) { border-right: 0; }
  .quick-card:nth-child(3) { border-top: 1px solid var(--line); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: block; }
  .bi-char { font-size: 220px; }
  .bi-pattern { height: 400px; }
  .bi-char:first-child { left: calc(50% - 180px); }
  .bi-char:last-child { right: calc(50% - 180px); }
  .approach::after, .contact::after { font-size: 18px; top: 40px; }
}

@media (max-width: 760px) {
  .hero {
    padding-top: 14px;
    min-height: calc(100svh - 147px);
  }
  .hero-inner { padding-bottom: 40px; }
  .hero-body {
    display: block;
    position: relative;
  }
  .hero-text {
    max-width: 100%;
    padding-bottom: 8px;
  }
  .hero-collage {
    position: absolute;
    right: -76px;
    bottom: -26px;
    z-index: 0;
    display: block;
    width: min(52vw, 190px);
    aspect-ratio: 4 / 5;
    max-width: none;
    max-height: none;
    opacity: .18;
    pointer-events: none;
  }
  .hero-card-main {
    display: block;
    transform: none;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    overflow: hidden;
  }
  .hero-card-main .hero-img { box-shadow: none; }
  .hero-card-cap,
  .hero-card-corner,
  .hero-card-stat,
  .hero-card-skyline {
    display: none;
  }
}

@media (min-width: 1025px) and (max-height: 780px) {
  .hero {
    min-height: calc(100svh - 136px);
  }
  .hero-inner {
    padding-bottom: clamp(24px, 3.5svh, 40px);
  }
  .hero-meta {
    padding-bottom: clamp(18px, 3.5svh, 36px);
  }
  .hero-title {
    font-size: clamp(44px, 5.8vw, 78px);
    margin-bottom: 20px;
  }
  .lang-zh .hero-title {
    font-size: clamp(40px, 5.3vw, 70px);
  }
  .hero-sub {
    font-size: 16.5px;
    line-height: 1.52;
    margin-bottom: 22px;
  }
  .hero-ctas {
    margin-bottom: 20px;
  }
  .hero-collage {
    max-width: min(500px, 42vw);
    max-height: calc(100svh - 190px);
  }
  .hero-card-stat {
    padding: 22px;
    gap: 10px;
  }
  .stat-num {
    font-size: clamp(54px, 5.2vw, 72px);
  }
  .stat-lbl {
    line-height: 1.45;
  }
}

@media (max-width: 640px) {
  :root {
    --gutter: 20px;
    --pad-y: clamp(72px, 14vw, 104px);
  }
  .topbar-left { display: none; }
  .topbar-right { gap: 8px; font-size: 11px; }
  .topbar-right > a:not(.lang-btn) { display: none; }
  .nav-inner { height: 76px; }

  .hero { padding-top: 14px; }
  .hero-meta {
    flex-wrap: wrap;
    gap: 10px 14px;
    padding-bottom: 20px;
    font-size: 9.5px;
    letter-spacing: .22em;
  }
  .hero-meta-rule { display: none; }
  .hero-meta-mark { font-size: 14px; }
  .hero-meta-label-secondary { display: none; }

  .hero-body { gap: 28px; }
  .hero-text .eyebrow { margin-bottom: 16px; font-size: 10px; letter-spacing: .22em; }
  .hero-title {
    font-size: clamp(34px, 8.4vw, 46px);
    line-height: 1.02;
    letter-spacing: -.025em;
    margin-bottom: 18px;
    overflow-wrap: break-word;
    text-wrap: wrap;
    max-width: 100%;
  }
  .lang-zh .hero-title { font-size: clamp(30px, 7.5vw, 40px); }
  .hero-sub { font-size: 15.5px; margin-bottom: 24px; line-height: 1.55; }
  .hero-ctas { gap: 10px; margin-bottom: 20px; }
  .hero-ctas .btn { padding: 13px 18px; font-size: 10.5px; }
  .hero-langs { gap: 12px; flex-wrap: wrap; font-size: 10px; }
  .hero-langs::before { display: none; }
  .lang-mark { font-size: 14px; }

  .hero-card-corner { width: 36px; height: 36px; }
  .hero-card-corner-tl { top: -10px; left: -10px; }
  .hero-card-corner-br { bottom: -10px; right: -10px; }

  .services-grid,
  .stats-grid,
  .quick-grid {
    grid-template-columns: 1fr;
  }
  .quick {
    padding: 56px 0;
  }
  .quick-head {
    gap: 14px;
    margin-bottom: 28px;
    padding-bottom: 20px;
  }
  .quick-head .section-title {
    font-size: clamp(32px, 8vw, 42px);
  }
  .quick-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 10px 16px;
    padding: 24px 0;
    align-items: start;
  }
  .quick-card:last-child { border-bottom: 0; }
  .quick-card:nth-child(3) { border-top: 0; }
  .quick-card::before {
    top: 24px;
    right: 0;
    font-size: 15px;
  }
  .quick-icon {
    grid-row: 1 / span 3;
    width: 42px;
    height: 42px;
    margin-bottom: 0;
  }
  .quick-icon svg {
    width: 21px;
    height: 21px;
  }
  .quick-t {
    max-width: calc(100% - 34px);
    font-size: 24px;
    line-height: 1.12;
  }
  .quick-b {
    max-width: none;
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
  }
  .quick-cta {
    font-size: 10px;
    line-height: 1.35;
    letter-spacing: .16em;
    margin-top: 2px;
  }
  .services {
    padding: 56px 0;
  }
  .services-head {
    gap: 18px;
    margin-bottom: 30px;
  }
  .service-card {
    min-height: 0;
    padding: 26px 24px 24px;
  }
  .service-card::after {
    top: 22px;
    right: 22px;
  }
  .service-tag {
    margin-bottom: 16px;
    padding-bottom: 9px;
  }
  .service-title {
    max-width: calc(100% - 34px);
    font-size: 25px;
  }
  .service-body {
    margin-bottom: 18px;
    line-height: 1.55;
  }
  .service-list {
    gap: 8px;
    margin-bottom: 10px;
    padding-top: 14px;
  }
  .service-card-catchall {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 26px 24px 24px;
  }
  .service-card-catchall .service-title {
    white-space: normal;
    font-size: 24px;
  }
  .service-card-catchall .service-body {
    max-width: none;
    margin-bottom: 18px;
    align-self: stretch;
  }
  .service-card-catchall .service-list {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 8px;
    margin-top: 0;
    padding-top: 14px;
  }

  .footer-cols { grid-template-columns: 1fr; gap: 32px; }
  .form-row.two { grid-template-columns: 1fr; gap: 26px; }
  .approach-right .step { grid-template-columns: 64px 1fr; gap: 20px; padding: 26px 0; }
  .step-num { font-size: 32px; }
  .step-t { font-size: 22px; }
  .bi-char { font-size: 150px; }
  .bi-pattern { height: 320px; }
  .bi-char:first-child { left: calc(50% - 110px); }
  .bi-char:last-child { right: calc(50% - 110px); }
  .lang-grid {
    flex-direction: column;
  }
  .lang-chip {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 18px 0;
    flex: none;
  }
  .lang-chip:last-child { border-bottom: 0; }

  .contact-form { padding: 32px 24px; }
  .contact-form::before { display: none; }
  .promise-card { grid-template-columns: 48px 1fr; gap: 18px; padding: 22px 0; }
  .promise-num { font-size: 26px; }
  .modal-overlay { padding: 12px; }
  .modal-head { padding: 26px 22px 20px; }
  .modal-body { padding: 24px 22px 30px; font-size: 14.5px; }
  .modal-title { font-size: 26px; }
  .modal-intro { font-size: 18px; }
  .modal-section h3 { font-size: 20px; }

  .wa-float {
    right: 18px;
    bottom: 18px;
    width: 54px; height: 54px;
  }
  .wa-float svg { width: 28px; height: 28px; }
}

@media (max-width: 430px) {
  .quick {
    padding: 42px 0 48px;
  }
  .quick-head {
    gap: 10px;
    margin-bottom: 18px;
    padding-bottom: 16px;
  }
  .quick-head .eyebrow {
    font-size: 9px;
    letter-spacing: .16em;
  }
  .quick-head .section-title {
    font-size: 30px;
    line-height: 1.04;
  }
  .quick-grid {
    border-top-color: var(--line-soft);
    border-bottom-color: var(--line-soft);
  }
  .quick-card {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 7px 14px;
    padding: 18px 0;
    overflow: hidden;
  }
  .quick-card::before {
    display: none;
  }
  .quick-icon {
    width: 36px;
    height: 36px;
  }
  .quick-icon svg {
    width: 19px;
    height: 19px;
  }
  .quick-t,
  .quick-b,
  .quick-cta {
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
  }
  .quick-t {
    font-size: 22px;
  }
  .quick-b {
    font-size: 13.5px;
    line-height: 1.48;
  }
  .quick-cta {
    font-size: 9px;
    letter-spacing: .12em;
  }
}

/* ============ Reduced motion ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
