:root {
  --ivory: #f7f1e6;
  --ivory-deep: #eadfcf;
  --navy: #0b1d33;
  --navy-soft: #12304f;
  --gold: #c49a4f;
  --gold-light: #e8c984;
  --warm: #fff8ec;
  --ink: #162033;
  --muted: #687286;
  --line: rgba(196, 154, 79, 0.26);
  --glass: rgba(255, 255, 255, 0.68);
  --shadow: 0 28px 80px rgba(20, 31, 49, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.72), transparent 36%),
    radial-gradient(circle at 12% 0%, rgba(232, 201, 132, 0.34), transparent 30rem),
    radial-gradient(circle at 88% 12%, rgba(18, 48, 79, 0.16), transparent 26rem),
    linear-gradient(180deg, #fffaf0 0%, #f5efe5 45%, #fff8ec 100%);
  font-family: "Optima", "Avenir Next", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

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

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 50;
  display: flex;
  width: min(1180px, calc(100% - 32px));
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 18px;
  background: rgba(255, 250, 240, 0.78);
  box-shadow: 0 14px 48px rgba(11, 29, 51, 0.12);
  backdrop-filter: blur(22px);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-symbol {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  color: var(--ivory);
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  font-size: 13px;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(232, 201, 132, 0.5);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--navy);
  font-size: 17px;
  letter-spacing: 0.02em;
}

.brand small {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: rgba(11, 29, 51, 0.76);
  font-size: 14px;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
  transition: color 180ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.main-nav a:hover {
  color: var(--navy);
}

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

.main-nav .nav-apply {
  padding: 9px 15px;
  border-radius: 999px;
  color: var(--ivory);
  background: var(--navy);
}

.main-nav .nav-apply::after {
  display: none;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: var(--navy);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ivory);
}

.section,
.section-band {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 104px 0;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.74fr);
  align-items: center;
  gap: 52px;
  padding-top: 150px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 110px -5vw 56px;
  z-index: -2;
  border-radius: 34px;
  background:
    linear-gradient(115deg, rgba(7, 20, 36, 0.96), rgba(18, 48, 79, 0.78)),
    radial-gradient(circle at 80% 26%, rgba(232, 201, 132, 0.45), transparent 24rem);
  box-shadow: 0 40px 110px rgba(7, 20, 36, 0.28);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 112px -5vw 56px;
  z-index: -1;
  border-radius: 34px;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.92), transparent 76%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  color: var(--ivory);
  font-size: clamp(52px, 8vw, 100px);
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  margin-bottom: 16px;
  color: var(--navy);
  font-size: clamp(32px, 4.3vw, 56px);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 22px;
}

.hero-subtitle {
  max-width: 720px;
  margin-bottom: 16px;
  color: var(--gold-light);
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 700;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 34px;
  color: rgba(255, 250, 240, 0.84);
  font-size: 18px;
  line-height: 1.9;
}

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

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 24px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(196, 154, 79, 0.24);
}

.btn.primary {
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.btn.secondary {
  color: var(--ivory);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.hero-visual {
  position: relative;
  min-height: 520px;
  perspective: 1200px;
}

.hero-visual.has-cms-image .world-map,
.hero-visual.has-cms-image .lifestyle-scene {
  opacity: .18;
}

.cms-hero-image,
.en-cms-hero-image {
  position: absolute;
  inset: 10% 7% auto auto;
  width: min(72%, 520px);
  height: min(72%, 420px);
  max-height: 420px;
  object-fit: contain;
  border-radius: 26px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .24);
}

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

.cms-img-cover {
  object-fit: cover;
}

.cms-img-contain {
  object-fit: contain;
}

.cms-visual-frame {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: 24px;
  position: relative;
  margin: 0 0 20px;
  flex-shrink: 0;
}

.cms-visual-frame img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
}

.cms-card-image {
  display: block;
  width: 100%;
  height: 100%;
  max-height: none;
  margin: 0;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 16px 38px rgba(11, 29, 51, 0.14);
}

.story-visual-custom {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 24px;
  margin-bottom: 22px;
}

.story-card-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

.story-visual-default {
  margin-bottom: 0;
}

.hb-story-media {
  width: 100%;
  height: 220px;
  max-height: 220px;
  min-height: 220px;
  overflow: hidden;
  border-radius: 24px;
  position: relative;
  flex: 0 0 220px;
  box-sizing: border-box;
  margin-bottom: 22px;
}

.hb-story-img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
}

.hb-story-media--custom {
  background: #f7f2e8;
}

.hb-story-media--default {
  height: 220px;
  max-height: 220px;
}

.story-grid,
.visual-story-grid,
.hb-story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 40px);
  width: 100%;
  max-width: 100%;
  align-items: stretch;
}

.story-card,
.visual-story-card,
.hb-story-card {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.story-visual,
.visual-story-media,
.story-card-media,
.hb-story-media {
  width: 100%;
  height: 220px;
  max-height: 220px;
  min-height: 220px;
  overflow: hidden;
  border-radius: 24px;
  position: relative;
  box-sizing: border-box;
}

.story-visual img,
.visual-story-media img,
.story-card-media img,
.hb-story-media img,
.hb-story-img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.service-card-media,
.service-image,
.service-card-img-wrap {
  width: 100%;
  height: 160px;
  max-height: 160px;
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 20px;
}

.safety-card-media,
.safety-image {
  width: 100%;
  height: 120px;
  max-height: 120px;
  overflow: hidden;
  border-radius: 18px;
}

.journey-card-media,
.journey-image {
  width: 100%;
  height: 140px;
  max-height: 140px;
  overflow: hidden;
  border-radius: 18px;
}

.pricing-card-media,
.pricing-image {
  width: 100%;
  height: 120px;
  max-height: 120px;
  overflow: hidden;
  border-radius: 18px;
}

.apply-cta-media,
.cta-image {
  width: 100%;
  height: 240px;
  max-height: 240px;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, .36);
}

.safety-card .cms-visual-frame {
  opacity: .95;
}

.world-map {
  position: absolute;
  right: 0;
  top: 50%;
  width: min(560px, 92vw);
  height: 390px;
  border: 1px solid rgba(232, 201, 132, 0.28);
  border-radius: 28px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 30% 28%, rgba(232, 201, 132, 0.18), transparent 14rem),
    rgba(255, 255, 255, 0.06);
  background-size: 44px 44px, 44px 44px, auto, auto;
  box-shadow: inset 0 0 70px rgba(232, 201, 132, 0.1), 0 28px 90px rgba(0, 0, 0, 0.18);
  transform: translateY(-50%) rotateY(-9deg) rotateX(5deg);
  overflow: hidden;
}

.world-map::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.14), transparent);
  transform: translateX(-110%);
  animation: sheen 7s ease-in-out infinite;
}

.map-continent {
  position: absolute;
  display: block;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 248, 236, 0.58), rgba(232, 201, 132, 0.35));
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.16));
}

.continent-a {
  left: 12%;
  top: 26%;
  width: 108px;
  height: 58px;
  transform: rotate(-18deg);
}

.continent-b {
  left: 38%;
  top: 18%;
  width: 132px;
  height: 74px;
  transform: rotate(12deg);
}

.continent-c {
  right: 14%;
  top: 44%;
  width: 116px;
  height: 66px;
  transform: rotate(-8deg);
}

.continent-d {
  left: 28%;
  bottom: 18%;
  width: 88px;
  height: 48px;
  transform: rotate(18deg);
}

.route {
  position: absolute;
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  transform-origin: left center;
}

.route::after {
  content: "";
  position: absolute;
  right: 0;
  top: -4px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 18px var(--gold-light);
}

.route-a {
  left: 22%;
  top: 42%;
  width: 260px;
  transform: rotate(-8deg);
}

.route-b {
  left: 42%;
  top: 62%;
  width: 220px;
  transform: rotate(18deg);
}

.lifestyle-scene {
  position: absolute;
  right: 8%;
  bottom: 18%;
  width: 330px;
  height: 270px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 250, 240, 0.88), rgba(255, 255, 255, 0.48)),
    radial-gradient(circle at 80% 0%, rgba(232, 201, 132, 0.28), transparent 11rem);
  box-shadow: 0 32px 80px rgba(4, 12, 22, 0.26);
  backdrop-filter: blur(18px);
  transform: rotateY(-7deg) rotateX(3deg);
}

.window-light {
  position: absolute;
  left: 24px;
  top: 24px;
  width: 108px;
  height: 78px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(232, 201, 132, 0.42), rgba(255, 248, 236, 0.84));
  box-shadow: inset 0 0 0 1px rgba(196, 154, 79, 0.22);
}

.window-light::before,
.window-light::after {
  content: "";
  position: absolute;
  background: rgba(11, 29, 51, 0.18);
}

.window-light::before {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
}

.window-light::after {
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
}

.family-figures {
  position: absolute;
  left: 42px;
  bottom: 82px;
  width: 128px;
  height: 120px;
}

.figure {
  position: absolute;
  bottom: 0;
  display: block;
  border-radius: 42px 42px 22px 22px;
}

.figure::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -30px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #d8a77a;
  transform: translateX(-50%);
}

.adult {
  left: 6px;
  width: 54px;
  height: 78px;
  background: var(--navy);
}

.child {
  right: 8px;
  width: 46px;
  height: 58px;
  background: var(--gold);
}

.child::before {
  width: 30px;
  height: 30px;
  top: -25px;
}

.speech-bubble {
  position: relative;
  left: 74px;
  top: 8px;
  display: inline-block;
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--navy);
  background: #fff;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 10px 26px rgba(11, 29, 51, 0.12);
  animation: float 3.6s ease-in-out infinite;
}

.dining-table {
  position: absolute;
  right: 28px;
  bottom: 42px;
  width: 166px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #9c673e, #6f432c);
  box-shadow: 0 24px 34px rgba(92, 54, 34, 0.22);
}

.plate,
.book,
.cup {
  position: absolute;
  display: block;
}

.plate {
  left: 26px;
  top: 22px;
  width: 36px;
  height: 22px;
  border: 3px solid rgba(255, 248, 236, 0.9);
  border-radius: 50%;
}

.book {
  right: 38px;
  top: 18px;
  width: 42px;
  height: 30px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--navy) 49%, var(--gold) 50%);
}

.cup {
  left: 76px;
  top: 15px;
  width: 20px;
  height: 26px;
  border-radius: 4px 4px 9px 9px;
  background: var(--ivory);
}

.passport-card {
  position: absolute;
  right: 26px;
  top: -28px;
  width: 94px;
  height: 126px;
  border-radius: 12px;
  background: var(--navy);
  box-shadow: 0 18px 40px rgba(4, 12, 22, 0.26);
  transform: rotate(8deg);
}

.passport-card span {
  position: absolute;
  left: 50%;
  top: 28px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  transform: translateX(-50%);
}

.passport-card strong {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 24px;
  color: var(--gold-light);
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.12em;
}

.orbit-dot {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 32px rgba(232, 201, 132, 0.8);
  animation: float 4s ease-in-out infinite;
}

.dot-a { right: 12%; top: 20%; }
.dot-b { right: 78%; top: 56%; animation-delay: -1.2s; }
.dot-c { right: 32%; bottom: 15%; animation-delay: -2s; }

.metric-panel {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 86px;
  display: grid;
  max-width: 640px;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.metric-panel div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.metric-panel strong {
  display: block;
  color: var(--gold-light);
  font-size: 34px;
}

.metric-panel span {
  color: rgba(255, 250, 240, 0.74);
  font-size: 13px;
}

.visual-story {
  display: block;
  padding-top: 40px;
}

.hb-story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 40px);
  align-items: stretch;
  width: 100%;
  max-width: 100%;
  overflow: visible;
}

.story-card {
  min-height: 330px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
  overflow: hidden;
}

.hb-story-card {
  min-width: 0;
  max-width: 100%;
  width: 100%;
  overflow: hidden;
  border-radius: 24px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.story-card-content,
.hb-story-content {
  position: relative;
  z-index: 2;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}

.hb-story-content h3,
.hb-story-content p {
  max-width: 100%;
  overflow-wrap: break-word;
}

.story-card:hover {
  transform: translateY(-8px);
  border-color: var(--line);
  box-shadow: 0 34px 86px rgba(20, 31, 49, 0.2);
}

.story-card p:last-child {
  color: var(--muted);
}

.story-illustration {
  position: relative;
  height: 136px;
  margin-bottom: 22px;
  border-radius: 20px;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 22%, rgba(232, 201, 132, 0.34), transparent 7rem),
    linear-gradient(135deg, rgba(11, 29, 51, 0.94), rgba(18, 48, 79, 0.82));
}

.passport-illustration::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 22px;
  width: 76px;
  height: 94px;
  border-radius: 10px;
  background: linear-gradient(145deg, var(--navy), #193d62);
  box-shadow: inset 0 0 0 1px rgba(232, 201, 132, 0.38);
}

.stamp {
  position: absolute;
  right: 34px;
  top: 34px;
  width: 64px;
  height: 64px;
  border: 2px solid var(--gold-light);
  border-radius: 50%;
  transform: rotate(-16deg);
}

.gold-line {
  position: absolute;
  right: 28px;
  bottom: 32px;
  width: 112px;
  height: 2px;
  background: var(--gold-light);
}

.table-illustration::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 30px;
  width: 150px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #9c673e, #6f432c);
  transform: translateX(-50%);
}

.person {
  position: absolute;
  bottom: 68px;
  width: 44px;
  height: 58px;
  border-radius: 26px 26px 14px 14px;
}

.person::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -24px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #d9ad86;
  transform: translateX(-50%);
}

.person-a {
  left: 56px;
  background: var(--gold);
}

.person-b {
  right: 56px;
  background: var(--ivory);
}

.table-line {
  position: absolute;
  left: 80px;
  right: 80px;
  top: 40px;
  height: 1px;
  background: rgba(232, 201, 132, 0.55);
}

.child-face {
  position: absolute;
  left: 48px;
  bottom: 24px;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: #d9ad86;
}

.child-face::before,
.child-face::after {
  content: "";
  position: absolute;
  top: 32px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--navy);
}

.child-face::before {
  left: 25px;
}

.child-face::after {
  right: 25px;
}

.talk-dot {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 18px rgba(232, 201, 132, 0.65);
}

.talk-dot.one {
  left: 154px;
  top: 42px;
  width: 14px;
  height: 14px;
}

.talk-dot.two {
  left: 184px;
  top: 32px;
  width: 20px;
  height: 20px;
}

.talk-dot.three {
  left: 224px;
  top: 48px;
  width: 26px;
  height: 26px;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading p {
  color: var(--muted);
  font-size: 17px;
}

.comparison-grid,
.pricing-grid,
.journey-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.compare-card,
.service-card,
.timeline-item,
.safety-card,
.journey-card,
.price-card,
.faq-list,
.apply-form {
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 20px;
  background: var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.compare-card,
.service-card,
.safety-card,
.journey-card,
.price-card {
  padding: 28px;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.compare-card:hover,
.service-card:hover,
.safety-card:hover,
.journey-card:hover,
.price-card:hover {
  transform: translateY(-8px);
  border-color: var(--line);
  box-shadow: 0 34px 86px rgba(20, 31, 49, 0.2);
}

.compare-card.highlight {
  color: var(--ivory);
  background: linear-gradient(145deg, var(--navy), var(--navy-soft));
}

.compare-card.highlight h3,
.compare-card.highlight .label {
  color: var(--gold-light);
}

.compare-card.highlight li {
  color: rgba(255, 250, 240, 0.84);
}

.label,
.service-icon,
.journey-card span {
  color: var(--gold);
  font-weight: 900;
}

.compare-card ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding-left: 20px;
}

.compare-card li,
.service-card p,
.timeline-item p,
.safety-card p,
.journey-card p,
.price-card p,
.faq-list p,
.apply-copy p {
  color: var(--muted);
}

.warm-section {
  position: relative;
}

.warm-section::before {
  content: "";
  position: absolute;
  inset: 34px -5vw;
  z-index: -1;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.38);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 280px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.5)),
    radial-gradient(circle at 100% 0%, rgba(232, 201, 132, 0.16), transparent 9rem);
}

.service-icon {
  display: inline-grid;
  width: 46px;
  height: 46px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 50%;
  background: rgba(196, 154, 79, 0.12);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.timeline-item {
  padding: 24px;
}

.timeline-item span {
  display: inline-grid;
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  color: var(--ivory);
  background: var(--navy);
}

.timeline-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 18px;
}

.navy-section {
  position: relative;
  color: var(--ivory);
}

.navy-section::before {
  content: "";
  position: absolute;
  inset: 36px -5vw;
  z-index: -1;
  border-radius: 28px;
  background:
    radial-gradient(circle at 80% 20%, rgba(232, 201, 132, 0.22), transparent 22rem),
    linear-gradient(135deg, var(--navy), #071626);
}

.navy-section h2,
.navy-section h3 {
  color: var(--ivory);
}

.navy-section .section-heading p,
.safety-card p {
  color: rgba(255, 250, 240, 0.72);
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.safety-card {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.boundary-note {
  margin-top: 22px;
  padding: 24px 28px;
  border: 1px solid rgba(232, 201, 132, 0.36);
  border-radius: 20px;
  background: rgba(232, 201, 132, 0.1);
}

.boundary-note strong {
  color: var(--gold-light);
}

.boundary-note p {
  margin: 8px 0 0;
  color: rgba(255, 250, 240, 0.78);
}

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

.journey-card {
  position: relative;
  overflow: hidden;
}

.journey-card::before {
  content: "";
  position: absolute;
  right: -30px;
  top: -30px;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: rgba(232, 201, 132, 0.14);
}

.journey-card > * {
  position: relative;
}

.price-card {
  display: grid;
  gap: 16px;
}

.price-card strong {
  color: var(--navy);
  font-size: 30px;
}

.price-card a {
  display: inline-flex;
  width: fit-content;
  border-bottom: 2px solid var(--gold);
  color: var(--gold);
  font-weight: 900;
}

.price-card.featured {
  color: var(--ivory);
  background: linear-gradient(145deg, var(--navy), var(--navy-soft));
}

.price-card.featured h3,
.price-card.featured strong {
  color: var(--gold-light);
}

.price-card.featured p {
  color: rgba(255, 250, 240, 0.76);
}

.faq-list {
  max-width: 880px;
  margin: 0 auto;
  padding: 16px;
}

details {
  border-bottom: 1px solid rgba(22, 32, 51, 0.11);
  padding: 18px 10px;
}

details:last-child {
  border-bottom: 0;
}

summary {
  color: var(--navy);
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
}

summary::marker {
  color: var(--gold);
}

details p {
  margin: 12px 0 0;
}

.apply-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(360px, 1fr);
  gap: 44px;
  align-items: start;
}

.apply-copy {
  position: sticky;
  top: 130px;
}

.apply-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 28px;
}

.apply-form label {
  display: grid;
  gap: 8px;
}

.apply-form span {
  color: var(--navy);
  font-weight: 900;
}

.apply-form input,
.apply-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(11, 29, 51, 0.14);
  border-radius: 12px;
  padding: 0 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.74);
  font: inherit;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.apply-form input:focus,
.apply-form select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(196, 154, 79, 0.14);
}

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

.form-message {
  min-height: 24px;
  margin: 0;
  color: var(--gold);
  font-weight: 900;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.form-message.show {
  opacity: 1;
  transform: translateY(0);
}

.site-footer {
  display: flex;
  width: min(1180px, calc(100% - 32px));
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 auto;
  padding: 36px 0 52px;
  border-top: 1px solid rgba(11, 29, 51, 0.12);
}

.site-footer p {
  margin: 4px 0 0;
  color: var(--muted);
}

.site-footer a {
  color: var(--gold);
  font-weight: 900;
}

.reveal {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(34px) scale(0.985);
  transition: opacity 820ms ease, transform 820ms ease, filter 820ms ease;
}

.reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.parallax {
  translate: 0 var(--parallax-y, 0);
  transition-property: opacity, transform, filter, translate;
}

@keyframes sheen {
  0%,
  42% {
    transform: translateX(-110%);
  }
  72%,
  100% {
    transform: translateX(110%);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@media (max-width: 1040px) {
  .main-nav {
    gap: 13px;
    font-size: 13px;
  }

  .hero,
  .apply-section {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: 2;
    min-height: 420px;
  }

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

  .metric-panel {
    position: static;
    max-width: none;
    grid-column: 1 / -1;
  }

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

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

  .apply-copy {
    position: static;
  }
}

@media (max-width: 760px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    left: 10px;
    right: 10px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 18px;
    background: rgba(255, 250, 240, 0.96);
    box-shadow: var(--shadow);
  }

  body.nav-open .main-nav {
    display: flex;
  }

  .main-nav a {
    padding: 13px 12px;
  }

  .main-nav .nav-apply {
    margin-top: 8px;
    text-align: center;
  }

  .section,
  .section-band {
    width: min(100% - 24px, 1180px);
    padding: 72px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 128px;
  }

  .hero::before,
  .hero::after {
    inset: 94px -12px 26px;
    border-radius: 24px;
  }

  h1 {
    max-width: 8em;
    font-size: 44px;
  }

  h2 {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 20px;
    line-height: 1.45;
  }

  .hero-copy {
    font-size: 15px;
    line-height: 1.85;
  }

  .comparison-grid,
  .pricing-grid,
  .service-grid,
  .timeline,
  .safety-grid,
  .journey-grid,
  .apply-form,
  .metric-panel {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 390px;
  }

  .world-map {
    left: 50%;
    right: auto;
    top: 44%;
    width: min(342px, 91vw);
    height: 260px;
    border-radius: 24px;
    transform: translate(-50%, -50%) rotateY(-5deg);
  }

  .lifestyle-scene {
    left: 50%;
    right: auto;
    bottom: 4px;
    width: min(312px, 86vw);
    height: 244px;
    transform: translateX(-50%);
  }

  .passport-card {
    width: 76px;
    height: 104px;
  }

  .metric-panel div {
    padding: 14px 16px;
  }

  .metric-panel strong {
    font-size: 28px;
  }

  .compare-card,
  .service-card,
  .safety-card,
  .journey-card,
  .price-card,
  .apply-form {
    padding: 22px;
  }

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

  .hb-story-media,
  .story-visual-custom {
    height: 180px;
    max-height: 180px;
    border-radius: 20px;
  }

  .hb-story-img {
    max-height: 180px;
  }

  .story-card,
  .visual-story-card,
  .hb-story-card {
    width: 100%;
  }

  .service-card-media {
    height: 140px;
    max-height: 140px;
  }

  .safety-card-media,
  .pricing-card-media {
    height: 110px;
    max-height: 110px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

.brand-logo-img {
  display: block;
  width: 48px;
  height: 48px;
  max-width: 48px;
  max-height: 48px;
  border-radius: inherit;
  object-fit: contain;
}

.site-logo-img {
  width: 48px;
  height: 48px;
  max-width: 48px;
  max-height: 48px;
  object-fit: contain;
  border-radius: 14px;
}

.apply-cta-card {
  display: grid;
  grid-template-columns: 1fr;
  align-content: center;
  min-height: 330px;
}

.apply-cta-card h3 {
  font-size: 28px;
}

.apply-cta-card p {
  color: var(--muted);
}

.apply-cta-card .full {
  grid-column: auto;
}

@media (max-width: 1100px) {
  .hb-story-grid,
  .story-grid,
  .visual-story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .site-nav,
  .top-nav,
  .navbar,
  .site-header {
    max-width: calc(100% - 24px);
  }

  .hb-story-grid,
  .story-grid,
  .visual-story-grid {
    grid-template-columns: 1fr;
  }

  .hb-story-card,
  .story-card,
  .visual-story-card {
    width: 100%;
    max-width: 100%;
  }

  .hb-story-media,
  .story-visual,
  .visual-story-media,
  .story-card-media {
    height: 180px !important;
    min-height: 180px !important;
    max-height: 180px !important;
    flex-basis: 180px;
    border-radius: 20px;
  }

  .hb-story-img {
    max-height: 180px;
  }

  .service-card-media {
    height: 140px;
    max-height: 140px;
  }

  .safety-card-media,
  .pricing-card-media {
    height: 110px;
    max-height: 110px;
  }
}

/* Final launch polish: unified footer, FAQ reveal, back-to-top */
.unified-site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(220px, .9fr) minmax(220px, .9fr);
  gap: clamp(20px, 3vw, 44px);
  align-items: start;
}
.unified-site-footer h4 { margin: 0 0 10px; color: var(--ink); }
.unified-site-footer p { margin: 6px 0; overflow-wrap: anywhere; }
.unified-site-footer small { display:block; color: var(--muted); margin-top: 4px; }
.unified-site-footer .footer-copy { font-size: .9rem; }
.footer-social-links { display:flex; flex-wrap:wrap; gap: 10px 14px; }
.footer-social-links a { white-space: nowrap; }
.back-to-top { display:inline-flex; margin-top: 12px; }
.faq-toggle-more { display:block; margin: 18px auto 0; border:0; border-radius:999px; padding:12px 22px; background: var(--ink); color:#fff; font-weight:800; cursor:pointer; }
.faq-list details.is-faq-hidden { display:none; }
.legal-content { line-height: 1.85; color: var(--muted); white-space: normal; }
@media (max-width: 860px) {
  .unified-site-footer { grid-template-columns: 1fr; }
  .unified-site-footer { width: min(100% - 24px, 1180px); }
}

/* Local final polish: keep CMS imagery inside its intended frame and avoid hero/apply overlap. */
.hero-content,
.apply-copy,
.apply-cta-card,
.hb-story-content {
  min-width: 0;
  position: relative;
  z-index: 2;
}

.hero-visual {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.cms-hero-image,
.en-cms-hero-image {
  max-width: min(72%, 520px);
  max-height: 420px;
  z-index: 4;
  pointer-events: none;
}

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

.hb-story-card,
.story-card {
  min-width: 0;
  max-width: 100%;
}

.hb-story-media,
.story-visual {
  flex-shrink: 0;
}

.apply-section {
  align-items: start;
}

.apply-copy {
  top: auto;
}

.apply-cta-card {
  justify-items: stretch;
  overflow: hidden;
}

.apply-cta-card .btn.full {
  width: min(100%, 320px);
  justify-self: end;
  text-align: center;
}

.footer-social-title {
  margin-top: 18px !important;
}

.footer-social-links a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(300px, .8fr);
  }
  .cms-hero-image,
  .en-cms-hero-image {
    width: min(68%, 440px);
    height: min(68%, 360px);
  }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-content {
    order: 1;
  }
  .hero-visual {
    order: 2;
    min-height: 380px;
  }
  .cms-hero-image,
  .en-cms-hero-image {
    inset: 12% 8% auto auto;
    width: min(70%, 430px);
    height: min(70%, 340px);
  }
}

@media (max-width: 768px) {
  .hb-story-grid,
  .story-grid,
  .visual-story-grid {
    grid-template-columns: 1fr !important;
  }
  .apply-cta-card .btn.full {
    width: 100%;
    justify-self: stretch;
  }
  .cms-hero-image,
  .en-cms-hero-image {
    width: min(82%, 340px);
    height: min(62%, 260px);
  }
}

html,
body {
  max-width: 100%;
  overflow-x: clip;
}

@supports not (overflow-x: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

@media (max-width: 980px) {
  .hero {
    min-height: auto !important;
    align-items: start !important;
    gap: 28px;
    padding-top: 120px;
    padding-bottom: 54px;
  }
  .hero-content {
    order: 1;
  }
  .hero-visual {
    order: 2;
    min-height: 320px;
  }
  .hero::before,
  .hero::after {
    inset: 92px -12px 28px;
  }
}

@media (max-width: 520px) {
  .hero {
    padding-top: 108px;
  }
  .hero-visual {
    min-height: 300px;
  }
}

@media (max-width: 980px) {
  .hero {
    align-content: start !important;
    grid-auto-rows: auto;
  }
}

@media (max-width: 980px) {
  .hero-content { order: 1 !important; }
  .hero-visual { order: 2 !important; }
  .metric-panel { order: 3 !important; }
}

/* Final visual spacing tune: separate hero artwork, metrics, and CTA buttons. */
@media (min-width: 981px) {
  .hero-visual .lifestyle-scene {
    bottom: 30%;
    transform: translateY(-18px) rotateY(-7deg) rotateX(3deg);
  }

  .hero-actions {
    position: relative;
    z-index: 4;
    transform: translateX(clamp(36px, 4.5vw, 88px));
    max-width: calc(100% - 96px);
  }

  .metric-panel {
    bottom: 92px;
  }
}

@media (min-width: 1280px) {
  .hero-actions {
    transform: translateX(clamp(52px, 5.5vw, 108px));
  }
}

@media (max-width: 980px) {
  .hero-actions {
    transform: none;
    max-width: 100%;
  }
}

/* Keep the longer English homepage heading proportionate on desktop only. */
@media (min-width: 761px) {
  .en-page .hero-content h1 {
    max-width: 13ch;
    font-size: clamp(52px, 4.6vw, 72px);
    line-height: 1.08;
    text-wrap: balance;
  }
}

/* Hero responsive polish 2026-07-20: prevent top artwork/metric cards from crowding copy. */
@media (min-width: 1321px) and (max-width: 1600px) {
  .hero {
    grid-template-columns: minmax(0, .82fr) minmax(380px, .82fr);
    gap: clamp(34px, 3vw, 48px);
  }

  .hero-content h1 {
    max-width: 9.5ch;
    font-size: clamp(50px, 5.4vw, 82px);
  }

  .en-page .hero-content h1 {
    max-width: 13.5ch;
    font-size: clamp(50px, 4.2vw, 68px);
  }

  .world-map {
    width: min(520px, 44vw);
    height: 360px;
  }

  .lifestyle-scene {
    width: 310px;
    height: 252px;
    right: 5%;
  }

  .metric-panel {
    max-width: min(560px, calc(100% - 48px));
  }
}

@media (min-width: 981px) and (max-width: 1320px) {
  .hero {
    grid-template-columns: minmax(0, .78fr) minmax(360px, .86fr);
    gap: clamp(28px, 3vw, 44px);
  }

  .hero-content h1 {
    max-width: 9.5ch;
    font-size: clamp(46px, 5.2vw, 72px);
  }

  .en-page .hero-content h1 {
    max-width: 13.5ch;
    font-size: clamp(42px, 4vw, 60px);
  }

  .hero-copy {
    max-width: 620px;
  }

  .hero-visual {
    min-height: 480px;
  }

  .world-map {
    width: min(470px, 44vw);
    height: 340px;
  }

  .lifestyle-scene {
    width: 290px;
    height: 236px;
    right: 5%;
    bottom: 32%;
  }

  .passport-card {
    top: -20px;
    right: 20px;
    width: 82px;
    height: 112px;
  }

  .metric-panel {
    left: 20px;
    right: 20px;
    bottom: 70px;
    max-width: min(520px, calc(100% - 40px));
    gap: 10px;
  }

  .metric-panel div {
    padding: 14px;
  }

  .metric-panel strong {
    font-size: 30px;
  }
}

@media (max-width: 760px) {
  .hero {
    gap: 22px;
    overflow: hidden;
    padding-bottom: 42px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-content h1 {
    max-width: 100%;
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1.08;
  }

  .en-page .hero-content h1 {
    max-width: 100%;
    font-size: clamp(32px, 9vw, 42px);
    line-height: 1.12;
  }

  .hero-subtitle {
    font-size: clamp(18px, 5vw, 21px);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    min-height: clamp(286px, 68vw, 360px);
  }

  .world-map {
    top: 48%;
    width: min(330px, 88vw);
    height: clamp(220px, 58vw, 270px);
  }

  .lifestyle-scene {
    bottom: 28px;
    width: min(286px, 78vw);
    height: 220px;
  }

  .dining-table {
    right: 20px;
    bottom: 35px;
    width: 140px;
    height: 60px;
  }

  .passport-card {
    top: -18px;
    right: 20px;
    transform: rotate(8deg) scale(.86);
  }

  .metric-panel {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    max-width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: -4px;
  }

  .metric-panel div {
    min-height: 96px;
    padding: 12px 10px;
  }

  .metric-panel strong {
    font-size: clamp(24px, 8vw, 32px);
  }

  .metric-panel span {
    font-size: 12px;
    line-height: 1.45;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 420px) {
  .hero-visual {
    min-height: 280px;
  }

  .lifestyle-scene {
    width: min(260px, 78vw);
    height: 202px;
  }

  .metric-panel {
    grid-template-columns: 1fr;
  }

  .metric-panel div {
    min-height: auto;
  }
}

/* Hero collision correction 2026-07-20 follow-up: lift the Hello lifestyle card away from metric cards. */
@media (min-width: 981px) {
  .cn-page .hero-visual .lifestyle-scene {
    bottom: 44%;
    transform: translateY(-46px) rotateY(-7deg) rotateX(3deg);
  }
}

@media (min-width: 1321px) and (max-width: 1600px) {
  .cn-page .hero-visual .lifestyle-scene {
    bottom: 46%;
    transform: translateY(-54px) rotateY(-7deg) rotateX(3deg);
  }
}

@media (min-width: 981px) and (max-width: 1320px) {
  .cn-page .hero-visual .lifestyle-scene {
    bottom: 48%;
    transform: translateY(-52px) rotateY(-7deg) rotateX(3deg);
  }
}

/* Story-to-concept spacing tune 2026-07-20: reduce the blank gap before Concept. */
.visual-story.story-section {
  padding-bottom: clamp(24px, 3vw, 44px);
}

.visual-story.story-section + #concept {
  padding-top: clamp(38px, 4vw, 58px);
}

@media (max-width: 760px) {
  .visual-story.story-section {
    padding-bottom: 30px;
  }

  .visual-story.story-section + #concept {
    padding-top: 42px;
  }
}

/* Overseas hero lifestyle restore 2026-07-20: keep the Hello card inside the pale frame on the English homepage only. */
@media (min-width: 981px) {
  .en-page .hero-visual .lifestyle-scene {
    bottom: 24%;
    transform: rotateY(-7deg) rotateX(3deg);
  }
}

@media (min-width: 1321px) and (max-width: 1600px) {
  .en-page .hero-visual .lifestyle-scene {
    bottom: 24%;
    transform: rotateY(-7deg) rotateX(3deg);
  }
}

@media (min-width: 981px) and (max-width: 1320px) {
  .en-page .hero-visual .lifestyle-scene {
    bottom: 26%;
    transform: rotateY(-7deg) rotateX(3deg);
  }
}

/* China hero visual balance 2026-07-21: place the pale frame above metrics and keep Hello inside it. */
@media (min-width: 981px) {
  .cn-page .hero-visual .world-map {
    top: 31%;
  }

  .cn-page .hero-visual .lifestyle-scene {
    bottom: 38%;
    transform: rotateY(-7deg) rotateX(3deg);
  }
}

@media (min-width: 1321px) and (max-width: 1600px) {
  .cn-page .hero-visual .world-map {
    top: 30%;
  }

  .cn-page .hero-visual .lifestyle-scene {
    bottom: 40%;
    transform: rotateY(-7deg) rotateX(3deg);
  }
}

@media (min-width: 981px) and (max-width: 1320px) {
  .cn-page .hero-visual .world-map {
    top: 31%;
  }

  .cn-page .hero-visual .lifestyle-scene {
    bottom: 39%;
    transform: rotateY(-7deg) rotateX(3deg);
  }
}
