:root {
  --ink: #101722;
  --ink-soft: #26364a;
  --muted: #667281;
  --paper: #f5f7fb;
  --paper-strong: #edf3f8;
  --white: #ffffff;
  --line: #d8e1eb;
  --brand-blue: #1068c8;
  --brand-blue-deep: #073865;
  --brand-blue-ink: #071f38;
  --brand-gold: #d9a33b;
  --brand-green: #3aaa35;
  --jade: var(--brand-blue);
  --jade-dark: var(--brand-blue-deep);
  --brass: var(--brand-gold);
  --wine: #7d312f;
  --shadow: 0 24px 70px rgba(3, 24, 47, 0.16);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.65;
  letter-spacing: 0;
}

body.force-desktop-preview {
  min-width: 1180px;
  overflow-x: auto;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 12px max(20px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  color: var(--white);
  background: rgba(7, 31, 56, 0.94);
  box-shadow: 0 10px 32px rgba(3, 24, 47, 0.16);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: 0;
}

.brand-logo {
  width: auto;
  height: 48px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  position: relative;
  border-radius: 4px;
  padding: 8px 12px;
  color: currentColor;
  font-size: 0.92rem;
  opacity: 0.88;
}

.site-nav a:hover,
.site-nav a.is-active {
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
}

.site-nav .nav-cta {
  margin-left: 8px;
  color: var(--white);
  background: var(--jade);
  opacity: 1;
}

.site-nav .nav-cta:hover {
  background: var(--jade-dark);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 6px;
  color: currentColor;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  min-height: 88svh;
  display: grid;
  align-items: center;
  padding: 132px 0 74px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5, 23, 43, 0.92) 0%, rgba(5, 23, 43, 0.78) 40%, rgba(5, 23, 43, 0.26) 72%, rgba(5, 23, 43, 0.1) 100%),
    url("assets/hero-shanghai-advisory.png") center / cover no-repeat;
}

.hero-inner {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brass);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.4;
}

.hero h1,
.section-heading h2,
.founder-copy h2,
.contact-heading h2,
.case-copy h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.12;
}

.hero h1 {
  max-width: 1120px;
  font-size: 3.28rem;
  font-weight: 720;
}

.hero h1 span {
  display: block;
}

.hero-lede {
  max-width: 860px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.12rem;
}

.hero-insights {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 14px;
  width: min(920px, 100%);
  margin-top: 28px;
}

.hero-insights article {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 18px 20px;
  background: rgba(7, 31, 56, 0.46);
  backdrop-filter: blur(10px);
}

.hero-insights strong {
  display: block;
  color: var(--brand-gold);
  font-size: 1rem;
}

.hero-insights ul {
  display: grid;
  gap: 7px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.hero-insights li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.96rem;
  line-height: 1.7;
}

.hero-insights li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-gold);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 11px 18px;
  font-weight: 700;
  line-height: 1.35;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--white);
  background: var(--brand-blue);
}

.button-primary:hover {
  background: var(--brand-blue-deep);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.14);
}

.positioning-band {
  color: var(--white);
  background: var(--brand-blue-ink);
}

.positioning-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 32px;
  padding: 28px 0;
}

.positioning-grid.single {
  display: block;
  text-align: center;
  overflow: hidden;
}

.brand-marquee {
  position: relative;
  overflow: hidden;
}

.brand-marquee-track {
  display: inline-block;
  min-width: max-content;
  padding-left: 100%;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.04rem;
  font-weight: 700;
  white-space: nowrap;
  animation: brand-marquee-rtl 24s linear infinite;
}

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

@keyframes brand-marquee-rtl {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-marquee-track {
    padding-left: 0;
    animation: none;
  }
}

.positioning-grid p {
  margin: 0;
}

.positioning-grid p:first-child {
  color: var(--brass);
  font-weight: 700;
}

.section {
  padding: 96px 0;
}

.section-tinted {
  background: var(--paper);
}

.section-dark {
  color: var(--white);
  background: var(--brand-blue-ink);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

.section-heading.compact {
  max-width: 1080px;
}

.section-heading h2,
.founder-copy h2,
.contact-heading h2,
.case-copy h2 {
  color: var(--ink);
  font-size: 2.2rem;
  line-height: 1.18;
}

.section-heading.compact h2 {
  white-space: nowrap;
}

.section-heading p:not(.eyebrow),
.founder-copy p,
.contact-heading p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

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

.section-heading.inverse p:not(.eyebrow) {
  opacity: 0.72;
}

.process-list span {
  color: var(--brass);
  font-size: 0.8rem;
  font-weight: 800;
}

.service-card h3,
.evidence-card h3 {
  margin: 18px 0 10px;
  color: var(--ink);
  font-size: 1.22rem;
  line-height: 1.28;
}

.service-card p,
.service-card li,
.evidence-card p,
.process-list p,
.fit-box li {
  color: var(--muted);
  font-size: 0.96rem;
}

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

.service-card {
  display: flex;
  min-height: 470px;
  flex-direction: column;
  border: 0;
  border-radius: 0;
  padding: 18px 24px 18px 0;
  background: transparent;
  box-shadow: none;
}

.service-card-talent {
  background: transparent;
}

.service-card-residence {
  background: transparent;
}

.service-card-student {
  background: transparent;
}

.service-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.38rem;
  line-height: 1.24;
}

.service-section {
  margin-top: 26px;
}

.service-section h4,
.service-problem-title {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.35;
}

.service-section p {
  margin: 0;
  min-height: 0;
  color: var(--muted);
  line-height: 1.72;
}

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

.service-problem-title {
  margin-top: 22px;
}

.service-card li {
  position: relative;
  padding-left: 18px;
}

.service-card li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brass);
}

.text-link {
  display: inline-flex;
  align-self: flex-end;
  width: fit-content;
  margin-top: auto;
  padding-top: 22px;
  color: var(--brand-blue);
  font-weight: 800;
}

.education-extension {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 32px;
  align-items: stretch;
  margin-top: 24px;
  border: 0;
  border-radius: 0;
  padding: 28px 0 0;
  background: transparent;
  box-shadow: none;
}

.education-visual {
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.education-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.education-copy {
  align-self: center;
}

.education-extension h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.44rem;
  line-height: 1.28;
}

.education-copy p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.78;
}

.founder-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 58px;
  align-items: center;
}

.founder-profile {
  display: grid;
  gap: 18px;
}

.founder-carousel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--brand-blue-ink);
  box-shadow: var(--shadow);
}

.founder-track {
  position: relative;
  min-height: 640px;
}

.founder-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 260ms ease, transform 260ms ease;
}

.founder-slide.is-active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
}

.founder-slide img {
  width: 100%;
  height: 640px;
  object-fit: cover;
  object-position: center top;
}

.founder-slide:nth-child(2) img {
  object-position: center center;
}

.founder-slide:nth-child(3) img {
  object-position: center top;
}

.founder-slide:nth-child(4) img {
  object-position: center center;
}

.founder-slide:nth-child(5) img {
  object-position: center center;
}

.founder-slide figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  border-radius: 6px;
  padding: 12px 14px;
  color: var(--white);
  background: rgba(7, 31, 56, 0.82);
  backdrop-filter: blur(12px);
  font-size: 0.92rem;
  font-weight: 800;
}

.founder-carousel-bar {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.founder-carousel-bar button {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  color: var(--white);
  background: rgba(7, 31, 56, 0.72);
  cursor: pointer;
}

.founder-carousel-bar button:hover {
  background: rgba(7, 31, 56, 0.94);
}

.founder-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.founder-dot {
  width: 7px;
  height: 7px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(255, 255, 255, 0.46);
  cursor: pointer;
}

.founder-dot.is-active {
  width: 22px;
  background: var(--brand-gold);
}

.case-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.02fr);
  gap: 46px;
  align-items: stretch;
}

.case-feature + .case-feature {
  margin-top: 112px;
}

.case-copy {
  display: flex;
  min-height: 640px;
  flex-direction: column;
}

.case-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 12px;
  margin: 0;
  border-radius: 999px;
  padding: 8px 18px;
  color: var(--brand-blue-deep);
  background: #e7eef6;
  font-weight: 800;
}

.case-badge span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand-gold);
}

.case-copy h2 {
  margin: 34px 0 0;
}

.case-summary {
  max-width: 690px;
  margin: 36px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.case-summary-list {
  display: grid;
  gap: 16px;
  max-width: 720px;
  margin: 36px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.58;
  list-style: none;
}

.case-summary-list li {
  position: relative;
  padding-left: 28px;
}

.case-summary-list li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand-gold);
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 44px;
}

.case-feature-talent .case-metrics {
  margin-top: 34px;
}

.case-feature-residence .case-metrics {
  margin-top: 50px;
}

.case-metrics div {
  display: grid;
  min-height: 116px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 8px;
  text-align: center;
  background: var(--white);
}

.case-metrics strong {
  display: block;
  color: var(--brand-blue-deep);
  font-size: 2.28rem;
  line-height: 1.05;
}

.case-metrics span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.32;
}

.case-feature-residence .case-metrics span {
  white-space: nowrap;
}

.case-actions {
  margin-top: auto;
  padding-top: 54px;
}

.case-feature-talent .case-actions {
  margin-top: 28px;
  padding-top: 0;
}

.case-feature-residence .case-actions {
  padding-top: 44px;
}

.case-actions h3 {
  margin: 0 0 20px;
  color: var(--ink);
  font-size: 1.46rem;
  line-height: 1.32;
}

.case-actions ul {
  display: grid;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.case-actions li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.42;
}

.case-actions li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand-gold);
}

.case-actions strong {
  color: #4f6175;
}

.case-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px 18px;
  align-content: space-between;
  padding-top: 76px;
}

.case-feature-residence .case-gallery {
  padding-top: 100px;
}

.case-feature-talent .case-gallery {
  gap: 24px 18px;
  align-content: space-between;
}

body.force-desktop-preview .case-feature {
  grid-template-columns: minmax(0, 0.9fr) minmax(560px, 1fr);
}

body.force-desktop-preview .case-copy {
  min-height: 670px;
}

body.force-desktop-preview .case-metrics {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.force-desktop-preview .case-feature-talent .case-metrics {
  margin-top: 34px;
}

body.force-desktop-preview .case-feature-residence .case-metrics {
  margin-top: 50px;
}

body.force-desktop-preview .case-actions {
  margin-top: auto;
}

body.force-desktop-preview .case-gallery {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-top: 76px;
}

body.force-desktop-preview .case-feature-talent .case-gallery {
  gap: 24px 18px;
  align-content: space-between;
}

body.force-desktop-preview .case-feature-residence .case-gallery {
  padding-top: 100px;
}

.case-card {
  display: block;
  border: 0;
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 16px 42px rgba(3, 24, 47, 0.14);
  cursor: zoom-in;
}

.case-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 180ms ease, filter 180ms ease;
}

.case-card:hover img,
.case-card:focus-visible img {
  transform: scale(1.025);
  filter: brightness(1.04);
}

.case-card:focus-visible {
  outline: 3px solid rgba(16, 104, 200, 0.5);
  outline-offset: 4px;
}

body.case-lightbox-open {
  overflow: hidden;
}

.case-lightbox[hidden] {
  display: none;
}

.case-lightbox {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 26px;
}

.case-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 17, 31, 0.78);
  backdrop-filter: blur(12px);
}

.case-lightbox-panel {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(560px, calc(100vw - 32px));
  max-height: calc(100vh - 42px);
  place-items: center;
}

.case-lightbox-panel figure {
  width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.35);
}

.case-lightbox-panel img {
  width: 100%;
  max-height: calc(100vh - 170px);
  object-fit: contain;
  background: #e8eef4;
}

.case-lightbox-panel figcaption {
  display: grid;
  gap: 4px;
  padding: 16px 18px 18px;
}

.case-lightbox-panel figcaption strong {
  color: var(--ink);
  font-size: 1.08rem;
}

.case-lightbox-panel figcaption span {
  color: var(--muted);
  font-size: 0.94rem;
}

.case-lightbox-close,
.case-lightbox-nav {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: var(--white);
  background: rgba(7, 31, 56, 0.76);
  cursor: pointer;
}

.case-lightbox-close {
  top: -18px;
  right: -18px;
  width: 38px;
  height: 38px;
  font-size: 1.5rem;
  line-height: 1;
}

.case-lightbox-nav {
  top: 50%;
  width: 42px;
  height: 42px;
  transform: translateY(-50%);
  font-size: 2rem;
  line-height: 1;
}

.case-lightbox-prev {
  left: -58px;
}

.case-lightbox-next {
  right: -58px;
}

.case-lightbox-close:hover,
.case-lightbox-nav:hover {
  background: rgba(7, 31, 56, 0.96);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  list-style: none;
}

.process-list li {
  min-height: 230px;
  padding: 24px 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.process-list strong {
  display: block;
  margin-top: 18px;
  color: var(--ink);
  font-size: 1rem;
}

.process-list p {
  margin: 10px 0 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 47fr) minmax(0, 53fr);
  gap: 24px 28px;
  align-items: stretch;
}

body.force-desktop-preview .contact-layout {
  grid-template-columns: minmax(0, 47fr) minmax(0, 53fr);
}

.contact-heading {
  grid-column: 1 / -1;
}

.contact-heading .eyebrow {
  margin: 0 0 14px;
  color: var(--brass);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.4;
}

body.force-desktop-preview .contact-heading,
body.force-desktop-preview .map-card {
  grid-column: 1 / -1;
}

.contact-heading h2 {
  margin: 0;
  white-space: nowrap;
}

.fit-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  border-left: 4px solid var(--brass);
  padding: 28px 26px 28px 44px;
  background: var(--white);
  box-shadow: 0 16px 48px rgba(3, 24, 47, 0.05);
}

.fit-box strong {
  color: var(--ink);
}

.fit-box ul {
  display: grid;
  gap: 18px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.fit-box li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.42;
  white-space: nowrap;
}

body.force-desktop-preview .fit-box li {
  white-space: nowrap;
}

.fit-box li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand-gold);
}

.qr-card {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 20px;
  align-items: center;
  border-radius: 8px;
  padding: 22px;
  color: var(--white);
  background: linear-gradient(145deg, var(--brand-blue-deep), var(--brand-blue-ink));
  box-shadow: var(--shadow);
}

.qr-card img {
  width: 170px;
  height: auto;
  object-fit: contain;
  border: 8px solid var(--white);
  border-radius: 8px;
  background: var(--white);
}

.qr-card strong {
  font-size: 1.22rem;
  line-height: 1.28;
}

.qr-card p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.map-card {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 47fr) minmax(0, 53fr);
  column-gap: 28px;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 56px rgba(3, 24, 47, 0.08);
}

.map-visual {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  background: var(--paper-strong);
}

.location-map {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: contain;
  object-position: center 48%;
  background: #f4f8f4;
}

.map-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
}

.map-info strong {
  color: var(--brand-blue-deep);
  font-size: 1.22rem;
  line-height: 1.28;
}

.map-info p {
  margin: 7px 0 0;
  color: var(--muted);
}

.metro-note {
  color: var(--brand-blue-deep) !important;
  font-weight: 800;
}

.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.map-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border-radius: 4px;
  padding: 8px 12px;
  color: var(--white);
  background: var(--brand-blue-deep);
  font-size: 0.9rem;
  font-weight: 800;
}

.site-footer {
  padding: 24px 0;
  color: rgba(255, 255, 255, 0.76);
  background: var(--brand-blue-ink);
}

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

.site-footer p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.site-footer a {
  color: var(--white);
  font-weight: 800;
}

@media (max-width: 1080px) {
  .service-grid,
  .founder-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-heading,
  .map-card {
    grid-column: auto;
  }

  .section-heading.compact h2,
  .contact-heading h2,
  .fit-box li {
    white-space: normal;
  }

  .case-feature {
    grid-template-columns: 1fr;
  }

  .case-gallery {
    padding-top: 0;
  }

  .case-copy {
    min-height: auto;
  }

  .case-actions {
    margin-top: 0;
  }

  .education-extension {
    grid-template-columns: 1fr;
  }

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

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

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

@media (max-width: 820px) {
  .site-header {
    min-height: 68px;
    padding: 10px 20px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 68px 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 12px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 11px 12px;
  }

  .site-nav .nav-cta {
    margin: 4px 0 0;
    text-align: center;
  }

  .hero {
    min-height: 86svh;
    align-items: end;
    padding: 104px 0 42px;
    background:
      linear-gradient(180deg, rgba(5, 23, 43, 0.28) 0%, rgba(5, 23, 43, 0.86) 54%, rgba(5, 23, 43, 0.96) 100%),
      url("assets/hero-shanghai-advisory.png") center / cover no-repeat;
  }

  .hero h1 {
    font-size: 2.42rem;
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-insights {
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

  .positioning-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .section {
    padding: 70px 0;
  }

  .section-heading h2,
  .founder-copy h2,
  .contact-heading h2,
  .case-copy h2 {
    font-size: 1.88rem;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .map-card {
    grid-template-columns: 1fr;
  }

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

  .founder-track {
    min-height: 560px;
  }

  .founder-slide img {
    height: 560px;
  }

  .case-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .case-metrics {
    grid-template-columns: 1fr;
  }

  .case-lightbox-nav {
    top: auto;
    bottom: -54px;
    transform: none;
  }

  .case-lightbox-prev {
    left: calc(50% - 54px);
  }

  .case-lightbox-next {
    right: calc(50% - 54px);
  }

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

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

  .brand-logo {
    height: 38px;
  }

  .hero h1 {
    font-size: 2.08rem;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .service-card,
  .fit-box,
  .qr-card,
  .education-extension {
    padding: 24px;
  }

  .case-gallery {
    grid-template-columns: 1fr;
  }

  .case-copy h2 {
    font-size: 2rem;
  }

  .case-summary {
    margin-top: 22px;
  }

  .qr-card {
    grid-template-columns: 1fr;
  }

  .qr-card img {
    width: min(100%, 240px);
  }

  .founder-track {
    min-height: 470px;
  }

  .founder-slide img {
    height: 470px;
  }

  .founder-slide figcaption {
    left: 14px;
    right: 14px;
    bottom: 64px;
  }

  .founder-carousel-bar {
    left: 14px;
    right: auto;
    bottom: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }
}
