:root {
  --background: #0b0f14;
  --surface: #111821;
  --surface-2: #17212c;
  --paper: #f7f1e8;
  --paper-2: #fffaf1;
  --ink: #101820;
  --muted: #65717d;
  --white: #ffffff;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(16, 24, 32, 0.12);
  --gold: #d7a84f;
  --gold-dark: #b8872e;
  --green: #8aa66f;
  --shadow: 0 28px 70px rgba(6, 10, 15, 0.28);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height, 78px);
  overflow-x: hidden;
}

[id] {
  scroll-margin-top: var(--header-height, 78px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 18px 0;
  color: var(--white);
  background: transparent;
  transition: background 240ms ease, border-color 240ms ease, padding 240ms ease;
}

.site-header.is-scrolled,
.site-header.is-solid {
  padding: 12px 0;
  background: rgba(11, 15, 20, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-grid;
  gap: 2px;
  flex: 0 0 auto;
}

.brand-mark {
  color: var(--gold);
  font-size: 1.34rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-subtitle {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  font-weight: 500;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-menu a {
  transition: color 180ms ease;
}

.nav-menu a:hover {
  color: var(--gold);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  grid-column: 1;
  grid-row: 1;
  background: var(--white);
  transition: transform 200ms ease;
}

.nav-toggle span:first-child {
  transform: translateY(-4px);
}

.nav-toggle span:last-child {
  transform: translateY(4px);
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 22px;
  font-size: 0.95rem;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #11100c;
  background: linear-gradient(180deg, #f3c96c 0%, var(--gold) 100%);
  box-shadow: 0 16px 42px rgba(215, 168, 79, 0.28);
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(14px);
}

.btn-dark {
  color: var(--paper-2);
  background: var(--background);
  box-shadow: 0 16px 42px rgba(6, 10, 15, 0.18);
}

.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(11, 15, 20, 0.34), rgba(11, 15, 20, 0.82)),
    radial-gradient(circle at 78% 16%, rgba(215, 168, 79, 0.22), transparent 30%),
    linear-gradient(135deg, #080b0f 0%, #101923 48%, #23301f 100%);
}

.hero-grid {
  display: grid;
  min-height: 100vh;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.8fr);
  align-items: center;
  gap: clamp(44px, 7vw, 96px);
  padding-top: 114px;
  padding-bottom: 62px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  max-width: 820px;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(3.1rem, 7vw, 6.9rem);
}

h2 {
  font-size: clamp(2.25rem, 4.7vw, 4.45rem);
}

h3 {
  margin: 0;
  color: inherit;
  font-size: 1.28rem;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 620px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.12rem, 2vw, 1.38rem);
}

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

.highlight-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.highlight-list span {
  border: 1px solid rgba(215, 168, 79, 0.22);
  border-radius: var(--radius);
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 650px;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
}

.hero-proof div {
  padding: 18px;
  background: rgba(11, 15, 20, 0.44);
}

.hero-proof strong {
  display: block;
  color: var(--gold);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1;
}

.hero-proof span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-media {
  position: relative;
  align-self: end;
  justify-self: end;
  width: min(100%, 500px);
  padding-bottom: 64px;
}

.founder-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(215, 168, 79, 0.28);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 42px 120px rgba(0, 0, 0, 0.42);
}

.founder-frame::after {
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(11, 15, 20, 0.84));
}

.founder-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.course-offer {
  position: absolute;
  right: clamp(12px, 3vw, 34px);
  bottom: 0;
  width: min(82%, 330px);
  border: 1px solid rgba(215, 168, 79, 0.36);
  border-radius: var(--radius);
  padding: 22px;
  color: var(--paper-2);
  background: rgba(14, 20, 27, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.course-offer p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.course-offer strong {
  display: block;
  color: var(--gold);
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1;
}

.course-offer strong span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.34em;
}

.course-offer ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 20px;
  padding: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 700;
  list-style: none;
}

.course-offer li::before {
  content: "+ ";
  color: var(--gold);
}

.trust-strip {
  color: rgba(255, 255, 255, 0.76);
  background: var(--background);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
}

.trust-inner span {
  padding: 18px 14px;
  text-align: center;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.section {
  padding: clamp(82px, 10vw, 138px) 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 46px;
}

.section-heading h2,
.section-heading h1 {
  color: var(--ink);
}

.why-section,
.programs-section,
.page-shell {
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.72) 0%, rgba(247, 241, 232, 1) 100%);
}

.card-grid {
  display: grid;
  gap: 18px;
}

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

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

.premium-card,
.program-card,
.contact-panel {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.86);
  box-shadow: 0 20px 48px rgba(24, 22, 17, 0.08);
}

.premium-card {
  min-height: 280px;
  padding: 32px;
}

.premium-card p,
.program-card p,
.founder-copy p,
.contact-panel p {
  color: var(--muted);
  font-size: 1rem;
}

.card-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 34px;
  border-radius: var(--radius);
  color: #17130b;
  background: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
}

.founder-section {
  color: var(--paper-2);
  background:
    radial-gradient(circle at 18% 20%, rgba(215, 168, 79, 0.16), transparent 28%),
    linear-gradient(135deg, #0b0f14 0%, #111821 55%, #1e2a1b 100%);
}

.founder-grid {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  align-items: center;
  gap: clamp(42px, 7vw, 96px);
}

.founder-portrait {
  overflow: hidden;
  border: 1px solid rgba(215, 168, 79, 0.26);
  border-radius: var(--radius);
  background: var(--surface-2);
  box-shadow: var(--shadow);
}

.founder-portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.founder-copy h1,
.founder-copy h2 {
  color: inherit;
}

.role-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.role-stack span {
  border: 1px solid rgba(215, 168, 79, 0.24);
  border-radius: var(--radius);
  padding: 10px 14px;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.92rem;
  font-weight: 800;
}

.founder-copy p {
  max-width: 620px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
}

.program-card {
  min-height: 226px;
  padding: 30px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.program-card:hover {
  transform: translateY(-4px);
  border-color: rgba(215, 168, 79, 0.46);
  background: var(--paper-2);
}

.program-card span {
  display: inline-flex;
  margin-bottom: 46px;
  color: var(--gold-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.founder-circle {
  padding: clamp(86px, 10vw, 132px) 0;
  color: var(--white);
  background:
    radial-gradient(circle at 76% 16%, rgba(215, 168, 79, 0.22), transparent 30%),
    linear-gradient(135deg, #080b0f 0%, #111821 52%, #27331f 100%);
}

.circle-inner {
  display: grid;
  justify-items: center;
  text-align: center;
}

.circle-inner h2 {
  color: var(--white);
}

.price {
  margin: 24px 0 30px;
  color: var(--gold);
  font-size: clamp(2.1rem, 6vw, 4.7rem);
  font-weight: 800;
  line-height: 1;
}

.price span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.38em;
  font-weight: 700;
}

.site-footer {
  padding: 44px 0;
  color: rgba(255, 255, 255, 0.68);
  background: var(--background);
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer p {
  margin: 0;
}

.footer-meta {
  font-size: 0.9rem;
}

.page-shell {
  min-height: 72vh;
  padding-top: 84px;
}

.page-shell h1 {
  color: var(--ink);
  font-size: clamp(2.6rem, 6vw, 5.5rem);
}

.page-shell .founder-copy h1 {
  color: var(--ink);
}

.page-shell .founder-copy p {
  color: var(--muted);
}

.contact-panel {
  max-width: 760px;
  margin-inline: auto;
  padding: clamp(30px, 5vw, 56px);
}

.contact-form {
  display: grid;
  gap: 18px;
  margin-top: 32px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 15px 16px;
  color: var(--ink);
  background: var(--paper-2);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@media (max-width: 940px) {
  .nav {
    gap: 14px;
  }

  .nav-toggle {
    display: grid;
    order: 4;
  }

  .nav-cta {
    margin-left: auto;
  }

  .nav-menu {
    position: fixed;
    inset: 76px 20px auto;
    display: grid;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(11, 15, 20, 0.96);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
    backdrop-filter: blur(18px);
  }

  .nav-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-menu a {
    padding: 18px 22px;
    border-bottom: 1px solid var(--line);
  }

  .nav-menu a:last-child {
    border-bottom: 0;
  }

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

  .hero-grid {
    padding-top: 128px;
  }

  .hero-media {
    justify-self: center;
    width: min(100%, 430px);
  }

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

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

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

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .site-header {
    padding: 12px 0;
  }

  .brand-subtitle {
    max-width: 150px;
  }

  .nav-cta {
    display: inline-flex;
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.8rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    min-height: auto;
    padding-bottom: 42px;
  }

  .hero-copy,
  .hero-lead,
  .hero-actions,
  .highlight-list,
  .hero-proof {
    max-width: calc(100vw - 28px);
  }

  h1 {
    max-width: calc(100vw - 28px);
    font-size: clamp(2.2rem, 10.8vw, 3rem);
    line-height: 1.04;
  }

  .hero-actions {
    display: grid;
  }

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

  .highlight-list span {
    flex: 1 1 100%;
    text-align: center;
  }

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

  .hero-media {
    padding-bottom: 0;
  }

  .course-offer {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 14px;
  }

  .trust-inner,
  .card-grid.three,
  .card-grid.six {
    grid-template-columns: 1fr;
  }

  .premium-card,
  .program-card {
    min-height: auto;
  }

  .founder-copy .btn,
  .contact-form .btn {
    width: 100%;
  }
}

/* EMBA original-content pages */
[data-lang] {
  display: none;
}

html.lang-zh [data-lang="zh"],
html.lang-en [data-lang="en"] {
  display: block;
}

html.lang-zh [data-lang="zh-inline"],
html.lang-en [data-lang="en-inline"] {
  display: inline;
}

.topbar {
  color: rgba(255, 255, 255, 0.78);
  background: #0e143d;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.topbar-inner {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar-contact {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
  transition: color 180ms ease;
}

.topbar-contact:hover {
  color: var(--gold);
}

.lang-switch {
  display: inline-flex;
  gap: 0;
  padding: 4px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  background: rgba(16, 24, 32, 0.05);
}

.lang-btn {
  min-width: 38px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  padding: 0 10px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
}

.lang-btn.active,
.lang-btn:hover {
  color: var(--white);
  background: #151d4f;
}

.site-header {
  position: sticky;
  background: rgba(11, 15, 20, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.site-header,
.site-header.is-scrolled,
.site-header.is-solid {
  padding: 12px 0;
}

.brand-subtitle span {
  color: inherit;
}

.page-hero {
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(215, 168, 79, 0.2), transparent 28%),
    linear-gradient(135deg, #080b0f 0%, #111821 54%, #26341f 100%);
  padding: clamp(74px, 9vw, 118px) 0;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(300px, 0.76fr);
  align-items: center;
  gap: clamp(34px, 6vw, 78px);
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.9rem, 6.5vw, 5.9rem);
}

.page-hero .hero-lead {
  max-width: 760px;
}

.hero-card,
.content-card,
.side-panel,
.faq-nav,
.cta-banner,
.tuition-card,
.admission-box,
.quick-box,
.profile-card,
.profile-photo-card {
  border-radius: var(--radius);
}

.hero-card {
  border: 1px solid rgba(215, 168, 79, 0.3);
  padding: clamp(24px, 4vw, 34px);
  color: var(--paper-2);
  background: rgba(14, 20, 27, 0.92);
  box-shadow: var(--shadow);
}

.hero-card-visual {
  overflow: hidden;
}

.hero-card-visual::before {
  display: block;
  min-height: 170px;
  margin: -34px -34px 28px;
  content: "";
  background-position: center;
  background-size: cover;
}

.module-hero-card::before {
  background-image:
    linear-gradient(180deg, rgba(11, 15, 20, 0.08), rgba(11, 15, 20, 0.5)),
    url("https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&w=1200&q=80");
}

.recognition-hero-card::before {
  background-image:
    linear-gradient(180deg, rgba(11, 15, 20, 0.08), rgba(11, 15, 20, 0.5)),
    url("https://images.unsplash.com/photo-1523580846011-d3a5bc25702b?auto=format&fit=crop&w=1200&q=80");
}

.hero-card h3,
.hero-card strong {
  color: var(--gold);
}

.hero-card p {
  color: rgba(255, 255, 255, 0.72);
}

.quick-boxes,
.stats-strip,
.module-grid,
.faq-layout,
.article-grid,
.footer-grid,
.profile-grid,
.trust-grid,
.apply-wrap {
  display: grid;
  gap: 18px;
}

.quick-boxes {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 22px;
}

.quick-box {
  border: 1px solid rgba(215, 168, 79, 0.18);
  padding: 16px;
  background: rgba(255, 255, 255, 0.06);
}

.quick-box strong {
  display: block;
  margin-bottom: 4px;
  color: var(--gold);
  font-size: 1.14rem;
}

.stats-band {
  position: relative;
  z-index: 2;
  margin-top: -38px;
}

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

.stat-item {
  border: 1px solid var(--line-dark);
  padding: 22px;
  text-align: center;
  background: var(--paper-2);
  box-shadow: 0 18px 42px rgba(24, 22, 17, 0.11);
}

.stat-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-dark);
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  line-height: 1;
}

.article-grid {
  grid-template-columns: 0.36fr 0.64fr;
  align-items: start;
}

.side-panel,
.faq-nav {
  position: sticky;
  top: 96px;
  border: 1px solid rgba(215, 168, 79, 0.26);
  padding: 28px;
  color: var(--paper-2);
  background: linear-gradient(180deg, #111821 0%, #0b0f14 100%);
  box-shadow: var(--shadow);
}

.side-panel h3,
.faq-nav h3 {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 1.55rem;
}

.side-panel p,
.faq-nav p {
  color: rgba(255, 255, 255, 0.72);
}

.side-list,
.book-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.side-item,
.book-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border: 1px solid rgba(215, 168, 79, 0.18);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(255, 255, 255, 0.06);
}

.side-icon,
.book-icon {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: var(--radius);
  color: #11100c;
  background: var(--gold);
  font-weight: 800;
}

.content-card,
.admission-box,
.profile-card {
  border: 1px solid var(--line-dark);
  padding: clamp(26px, 4vw, 38px);
  background: var(--paper-2);
  box-shadow: 0 16px 40px rgba(24, 22, 17, 0.07);
}

.content-card p {
  margin: 0 0 18px;
  color: #26323d;
}

.content-card h2,
.profile-card h2,
.faq-group-title h2 {
  color: var(--ink);
}

.quote-box {
  border: 1px solid rgba(215, 168, 79, 0.24);
  border-radius: var(--radius);
  margin: 28px 0;
  padding: 24px;
  color: #332513;
  background: #f5dfae;
  font-weight: 800;
}

.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 18% 18%, rgba(215, 168, 79, 0.16), transparent 28%),
    linear-gradient(135deg, #080b0f 0%, #111821 58%, #25321f 100%);
}

.section-dark .section-heading h2,
.section-dark .section-heading p {
  color: var(--white);
}

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

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

.visual-split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(24px, 5vw, 56px);
}

.visual-banner {
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(215, 168, 79, 0.28);
  border-radius: var(--radius);
  background-color: var(--surface);
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
}

.tour-image {
  background-image:
    linear-gradient(180deg, rgba(11, 15, 20, 0.08), rgba(11, 15, 20, 0.42)),
    url("https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&w=1400&q=80");
}

.recognition-image {
  background-image:
    linear-gradient(180deg, rgba(11, 15, 20, 0.08), rgba(11, 15, 20, 0.42)),
    url("https://images.unsplash.com/photo-1523580846011-d3a5bc25702b?auto=format&fit=crop&w=1400&q=80");
}

.module-card,
.faq-item,
.trust-card {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--paper-2);
  box-shadow: 0 14px 32px rgba(24, 22, 17, 0.07);
}

.module-card .num,
.faq-group-title .icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: var(--radius);
  color: #11100c;
  background: var(--gold);
  font-weight: 900;
}

.module-card h3,
.trust-card h3 {
  color: var(--ink);
}

.module-card p,
.trust-card p {
  color: var(--muted);
}

.profile-grid {
  grid-template-columns: 0.82fr 1.18fr;
  align-items: stretch;
}

.profile-photo-card {
  overflow: hidden;
  border: 1px solid rgba(215, 168, 79, 0.24);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.profile-photo-card img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center top;
}

.profile-badges,
.profile-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.profile-badge {
  border: 1px solid rgba(215, 168, 79, 0.24);
  border-radius: var(--radius);
  padding: 8px 12px;
  color: #7d581a;
  background: #f8e6bd;
  font-size: 0.82rem;
  font-weight: 800;
}

.profile-title {
  margin: 8px 0 18px;
  color: var(--gold-dark);
  font-weight: 800;
}

.profile-stat {
  flex: 1 1 150px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 15px;
  background: var(--paper);
}

.profile-stat strong {
  display: block;
  color: var(--gold-dark);
  font-size: 1.6rem;
  line-height: 1;
}

.book-item {
  color: var(--ink);
  background: var(--paper);
}

.book-item span {
  color: var(--muted);
}

.faq-layout {
  grid-template-columns: 0.32fr 0.68fr;
  align-items: start;
}

.faq-nav a {
  display: block;
  border: 1px solid rgba(215, 168, 79, 0.18);
  border-radius: var(--radius);
  margin-top: 10px;
  padding: 12px 14px;
  color: var(--paper-2);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 800;
}

.faq-group {
  margin-bottom: 34px;
}

.faq-group-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.faq-item {
  margin-bottom: 14px;
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: var(--radius);
  color: #11100c;
  background: var(--gold);
}

.faq-item details[open] summary::after {
  content: "-";
}

.faq-answer {
  padding: 0 22px 22px;
  color: var(--muted);
}

.cta-banner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 24px;
  border: 1px solid rgba(215, 168, 79, 0.24);
  padding: clamp(26px, 4vw, 38px);
  background: #f8e6bd;
  box-shadow: 0 16px 40px rgba(91, 64, 18, 0.12);
}

.cta-banner h2 {
  color: var(--ink);
}

.cta-banner p {
  color: #684915;
}

.footer-grid {
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-links a {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.06);
}

.footer-links a.active {
  color: #11100c;
  background: var(--gold);
}

.site-footer h4 {
  margin: 0 0 12px;
  color: var(--white);
}

.site-footer ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.disclaimer {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
}

@media (max-width: 1080px) {
  .page-hero-grid,
  .article-grid,
  .faq-layout,
  .profile-grid,
  .cta-banner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .side-panel,
  .faq-nav {
    position: relative;
    top: auto;
  }
}

@media (max-width: 760px) {
  .topbar-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 10px 0;
  }

  .page-hero {
    padding: 58px 0;
  }

  .page-hero h1 {
    font-size: clamp(2.2rem, 10.8vw, 3.1rem);
  }

  .quick-boxes,
  .stats-strip,
  .module-grid {
    grid-template-columns: 1fr;
  }

  .profile-photo-card img {
    min-height: auto;
  }
}

/* Final shared refinements */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400;500;600;700;800&family=Playfair+Display:wght@600;700;800&display=swap");

body {
  font-family: "Inter", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.7;
}

html.lang-zh body {
  letter-spacing: 0;
}

html.lang-zh h1 {
  font-size: clamp(2.65rem, 5.2vw, 5.1rem);
  line-height: 1.1;
}

html.lang-zh h2 {
  font-size: clamp(1.9rem, 3.6vw, 3.45rem);
  line-height: 1.18;
}

html.lang-zh h3 {
  font-size: 1.18rem;
  line-height: 1.35;
}

html.lang-zh p,
html.lang-zh li,
html.lang-zh .hero-lead,
html.lang-zh .content-card p,
html.lang-zh .faq-answer {
  font-size: 0.96rem;
  line-height: 1.88;
}

.topbar {
  background: #0e143d;
}

.site-header,
.site-header.is-scrolled,
.site-header.is-solid {
  position: relative;
  top: 0;
  z-index: 1000;
  padding: 0;
  color: var(--ink);
  background: rgba(255, 250, 241, 0.97);
  border-bottom: 1px solid rgba(16, 24, 32, 0.12);
  backdrop-filter: blur(14px);
}

body.header-pinned {
  padding-top: var(--header-height, 78px);
}

.site-header.is-pinned {
  position: fixed !important;
  top: 0 !important;
  right: 0;
  left: 0;
  box-shadow: 0 10px 28px rgba(16, 24, 32, 0.1);
}

.nav {
  min-height: 78px;
}

.header-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0;
  line-height: 1;
}

.brand-mark {
  color: #151d4f;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.62rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-mark span {
  color: var(--gold);
}

.brand-subtitle {
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-menu {
  gap: 22px;
  color: #384158;
  font-size: 0.88rem;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #151d4f;
}

.nav-toggle {
  border-color: var(--line-dark);
  background: var(--paper-2);
}

.nav-toggle span {
  background: var(--ink);
}

.hero,
.hero-grid {
  min-height: calc(100vh - 120px);
}

.hero-grid {
  padding-top: 72px;
}

.hero-lead {
  line-height: 1.75;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5.3vw, 5rem);
}

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

.footer-grid {
  grid-template-columns: 1.15fr 0.9fr 0.8fr;
}

.footer-programme {
  margin-top: 14px;
  color: var(--gold);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1100;
  display: grid;
  gap: 10px;
}

.floating-btn {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(215, 168, 79, 0.32);
  border-radius: 999px;
  color: #11100c;
  background: var(--gold);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  font-weight: 900;
  cursor: pointer;
}

.floating-btn.whatsapp {
  color: #ffffff;
  background: #25d6a2;
  border-color: rgba(37, 214, 162, 0.48);
}

.floating-btn.back-top {
  color: var(--paper-2);
  background: var(--surface);
}

.floating-btn span {
  line-height: 1;
}

@media (max-width: 940px) {
  .visual-split {
    grid-template-columns: 1fr;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    left: auto;
    width: min(360px, calc(100vw - 40px));
    color: rgba(255, 255, 255, 0.82);
    background: rgba(11, 15, 20, 0.97);
  }

  .nav-menu a:hover,
  .nav-menu a.active {
    color: var(--gold);
  }
}

@media (max-width: 640px) {
  html.lang-zh h1,
  .page-hero h1 {
    font-size: clamp(1.82rem, 8.2vw, 2.45rem);
    line-height: 1.16;
  }

  html.lang-zh h2 {
    font-size: clamp(1.7rem, 7vw, 2.35rem);
  }

  html.lang-zh p,
  html.lang-zh li,
  html.lang-zh .hero-lead,
  html.lang-zh .content-card p,
  html.lang-zh .faq-answer {
    font-size: 0.94rem;
    line-height: 1.82;
  }

  .site-header,
  .site-header.is-scrolled,
  .site-header.is-solid {
    padding: 0;
  }

  .brand-mark {
    font-size: 1.32rem;
  }

  .brand-subtitle {
    max-width: 210px;
    font-size: 0.48rem;
  }

  .floating-actions {
    right: 14px;
    bottom: 14px;
  }

  .visual-banner {
    min-height: 280px;
  }
}
