@import url('/fonts/fonts.css');

:root {
  /* 字体：西文自托管，中文走系统字体（苹方 / 微软正黑 / 思源），
     不依赖 Google Fonts CDN —— 内地访问不会卡，也避免 GDPR 问题 */
  --font-sans:'Inter','PingFang HK','Microsoft JhengHei','Noto Sans TC',-apple-system,BlinkMacSystemFont,sans-serif;
  /* 中文衬线：macOS/iOS 有宋体系可用；Windows 自带的 PMingLiU 屏显质量差，
     宁可退到质量好的黑体（微软正黑），也不用难看的明体 */
  --font-serif:'Source Serif 4','Noto Serif TC','Source Han Serif TC','Songti TC','Songti SC','PingFang HK','Microsoft JhengHei',Georgia,serif;

  --paper:#f3f0e9;
  --surface:#fbfaf7;
  --ink:#171716;
  --ink-soft:#3a3835;
  --muted:#6f6c66;
  --line:#cec9bd;
  --line-hair:#e0dbd0;
  --signal:#c8242a;
  --wine:#741b24;
  --header-height:92px
}

* {
  box-sizing:border-box
}

html {
  scroll-behavior:smooth
}

body {
  color:var(--ink);
  background:var(--paper);
  margin:0;
  font-family:var(--font-sans)
}

body.menu-open {
  overflow:hidden
}

a {
  color:inherit
}

button,
a {
  -webkit-tap-highlight-color:transparent
}

section[id] {
  scroll-margin-top:var(--header-height)
}

:focus-visible {
  outline:2px solid var(--signal);
  outline-offset:4px
}

.site-header {
  z-index:50;
  min-height:var(--header-height);
  border-bottom:1px solid var(--line);
  -webkit-backdrop-filter:blur(12px);
  backdrop-filter:blur(12px);
  background:#fbfaf7f7;
  justify-content:space-between;
  align-items:center;
  gap:32px;
  padding:0 clamp(24px,5vw,72px);
  display:flex;
  position:sticky;
  top:0
}

.site-header:after {
  content:"";
  background:var(--signal);
  width:92px;
  height:2px;
  position:absolute;
  bottom:-1px;
  left:0
}

.brand {
  flex:0 0 190px;
  width:190px;
  height:58px
}

.brand img {
  object-fit:contain;
  object-position:left center;
  width:190px;
  height:58px;
  display:block
}

.header-panel {
  align-items:center;
  gap:clamp(22px,3vw,48px);
  display:flex
}

.header-panel nav {
  align-items:center;
  gap:clamp(18px,2.3vw,40px);
  display:flex
}

.header-panel nav a {
  color:#383633;
  letter-spacing:.03em;
  border-bottom:3px solid #0000;
  padding:35px 0 32px;
  font-size:13px;
  text-decoration:none
}

.header-panel nav a:hover {
  border-color:var(--signal);
  color:var(--signal)
}

.language-switch {
  color:#8a857e;
  align-items:center;
  gap:7px;
  display:flex
}

.language-switch button {
  color:inherit;
  font:inherit;
  cursor:pointer;
  background:0 0;
  border:0;
  padding:6px 2px
}

.language-switch button[aria-pressed=true] {
  color:var(--signal);
  font-weight:700
}

.header-contact {
  border:1px solid var(--ink);
  padding:12px 19px;
  font-size:13px;
  text-decoration:none;
  transition:all .2s
}

.header-contact:hover {
  color:#fff;
  background:var(--ink)
}

.menu-button {
  cursor:pointer;
  background:0 0;
  border:0;
  width:44px;
  height:44px;
  display:none
}

.menu-button span {
  background:var(--ink);
  width:24px;
  height:2px;
  margin:6px auto;
  transition:all .2s;
  display:block
}

.menu-button[aria-expanded=true] span:first-child {
  transform:translateY(4px)rotate(45deg)
}

.menu-button[aria-expanded=true] span:last-child {
  transform:translateY(-4px)rotate(-45deg)
}

.hero {
  isolation:isolate;
  border-bottom:1px solid var(--line);
  grid-template-columns:minmax(0,1.45fr) minmax(300px,.55fr);
  align-items:end;
  gap:clamp(42px,7vw,110px);
  max-width:1440px;
  min-height:680px;
  margin:0 auto;
  padding:clamp(96px,13vw,180px) clamp(24px,6vw,92px) clamp(72px,9vw,118px);
  display:grid;
  position:relative;
  overflow:hidden
}

.hero:before {
  content:"";
  z-index:-2;
  opacity:.16;
  filter:grayscale();
  background:url(/hong-kong-skyline.jpg) 50%/cover no-repeat;
  position:absolute;
  inset:0 0 0 42%
}

.hero:after {
  content:"";
  z-index:-1;
  background:#f3f0e99e;
  position:absolute;
  inset:0
}

.hero-copy {
  position:relative
}

.hero-copy:before {
  content:"";
  background:var(--signal);
  width:64px;
  height:4px;
  margin-bottom:28px;
  display:block
}

.eyebrow {
  color:var(--signal);
  letter-spacing:.2em;
  margin:0 0 28px;
  font-size:12px;
  font-weight:700
}

.hero h1 {
  letter-spacing:-.045em;
  text-wrap:balance;
  max-width:820px;
  margin:0;
  font-family:var(--font-serif);
  font-size:clamp(56px,7vw,108px);
  font-weight:400;
  line-height:.96
}

.hero-lead {
  max-width:690px;
  color:var(--muted);
  margin:36px 0 0;
  font-size:clamp(17px,1.5vw,22px);
  line-height:1.7
}

.hero-actions {
  align-items:center;
  gap:34px;
  margin-top:42px;
  display:flex
}

.button {
  padding:16px 22px;
  text-decoration:none;
  display:inline-flex
}

.button-dark {
  color:#fff;
  background:var(--ink)
}

.text-link {
  border-bottom:1px solid var(--ink);
  gap:12px;
  padding:10px 0;
  text-decoration:none;
  display:inline-flex
}

.market-card {
  color:#fff;
  background:var(--wine);
  align-self:end;
  padding:34px 30px;
  box-shadow:18px 18px #741b2424
}

.market-card>p {
  color:#e8c5c7;
  letter-spacing:.18em;
  margin:0 0 30px;
  font-size:10px
}

.market-card h2 {
  margin:0 0 24px;
  font-family:var(--font-serif);
  font-size:30px;
  font-weight:400;
  line-height:1.15
}

.market-card ul {
  margin:0;
  padding:0;
  list-style:none
}

.market-card li {
  border-top:1px solid #ffffff3d;
  grid-template-columns:34px 1fr;
  gap:8px;
  padding:11px 0;
  font-size:14px;
  display:grid
}

.market-card li span {
  color:#d7aeb1;
  font-size:10px
}

.service-strip {
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  grid-template-columns:repeat(3,1fr);
  max-width:1440px;
  margin:0 auto;
  display:grid
}

.service-strip article {
  grid-template-columns:36px 1fr;
  gap:18px;
  min-height:210px;
  padding:36px clamp(24px,3vw,52px);
  display:grid
}

.service-strip article+article {
  border-left:1px solid var(--line)
}

.service-number {
  color:var(--signal);
  padding-top:5px;
  font-size:11px
}

.service-strip h2 {
  margin:0 0 16px;
  font-family:var(--font-serif);
  font-size:23px;
  font-weight:400
}

.service-strip p {
  color:var(--muted);
  margin:0;
  font-size:14px;
  line-height:1.75
}

.proof-strip {
  border-bottom:1px solid var(--line);
  background:var(--surface);
  grid-template-columns:repeat(4,1fr);
  max-width:1440px;
  margin:0 auto;
  display:grid
}

.proof-strip div {
  border-left:1px solid var(--line);
  flex-direction:column;
  gap:10px;
  padding:34px clamp(20px,3vw,48px);
  display:flex
}

.proof-strip div:first-child {
  border-left:0
}

.proof-strip strong {
  color:var(--signal);
  font-family:var(--font-serif);
  font-size:48px;
  font-weight:400;
  line-height:1
}

.proof-strip span {
  color:var(--muted);
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:11px
}

.method-section {
  background:var(--paper);
  grid-template-columns:.8fr 1.2fr;
  gap:clamp(50px,10vw,150px);
  max-width:1440px;
  margin:0 auto;
  padding:clamp(80px,10vw,140px) clamp(24px,6vw,92px);
  display:grid
}

.method-intro h2 {
  max-width:580px;
  margin:0;
  font-family:var(--font-serif);
  font-size:clamp(38px,4.5vw,64px);
  font-weight:400;
  line-height:1.08
}

.method-steps {
  background:var(--line);
  border:1px solid var(--line);
  grid-template-columns:repeat(3,1fr);
  align-items:stretch;
  gap:1px;
  display:grid
}

.method-steps article {
  background:var(--surface);
  flex-direction:column;
  min-height:290px;
  padding:30px 24px;
  display:flex
}

.method-steps span {
  color:var(--signal);
  letter-spacing:.12em;
  font-size:11px
}

.method-steps h3 {
  margin:54px 0 12px;
  font-family:var(--font-serif);
  font-size:30px;
  font-weight:400
}

.method-steps p {
  color:var(--muted);
  margin:0;
  font-size:13px;
  line-height:1.75
}

@media (max-width:980px) {
  :root {
    --header-height:78px
  }

  .site-header {
    min-height:var(--header-height);
    padding:0 22px
  }

  .brand {
    flex-basis:142px;
    width:142px;
    height:48px
  }

  .brand img {
    width:142px;
    height:48px
  }

  .menu-button {
    display:block
  }

  .header-panel {
    inset:var(--header-height) 0 0;
    background:var(--surface);
    align-items:stretch;
    padding:36px 24px;
    display:none;
    position:fixed;
    overflow-y:auto
  }

  .header-panel.is-open {
    flex-direction:column;
    display:flex
  }

  .header-panel nav {
    flex-direction:column;
    align-items:stretch;
    gap:0
  }

  .header-panel nav a {
    border-bottom:1px solid var(--line);
    padding:17px 0;
    font-family:var(--font-serif);
    font-size:28px
  }

  .language-switch {
    margin-top:12px
  }

  .header-contact {
    text-align:center;
    margin-top:auto
  }

  .hero {
    grid-template-columns:1fr;
    min-height:auto;
    padding-top:86px
  }

  .hero h1 {
    font-size:clamp(51px,12vw,80px)
  }

  .market-card {
    width:min(100%,500px)
  }

  .service-strip {
    grid-template-columns:1fr
  }

  .proof-strip {
    grid-template-columns:repeat(2,1fr)
  }

  .proof-strip div:nth-child(3) {
    border-left:0;
    border-top:1px solid var(--line)
  }

  .proof-strip div:nth-child(4) {
    border-top:1px solid var(--line)
  }

  .method-section {
    grid-template-columns:1fr
  }

  .service-strip article+article {
    border-top:1px solid var(--line);
    border-left:0
  }

}

@media (max-width:560px) {
  .hero {
    padding:68px 22px 62px
  }

  .hero h1 {
    font-size:clamp(43px,13vw,64px)
  }

  .hero-actions {
    flex-direction:column;
    align-items:flex-start;
    gap:16px
  }

  .market-card {
    padding:24px
  }

  .proof-strip div {
    padding:25px 20px
  }

  .proof-strip strong {
    font-size:39px
  }

  .proof-strip span {
    font-size:10px;
    line-height:1.4
  }

  .method-section {
    padding:72px 22px
  }

  .method-steps {
    grid-template-columns:1fr
  }

  .method-steps article {
    min-height:220px
  }

  .method-steps h3 {
    margin-top:34px
  }

}

@media (prefers-reduced-motion:reduce) {
  html {
    scroll-behavior:auto
  }

  *,:before,:after {
    transition-duration:.01ms!important
  }

}

.authorisation-band {
  color:#fff;
  background:var(--wine);
  grid-template-columns:minmax(0,.8fr) minmax(300px,1.2fr);
  gap:clamp(32px,7vw,110px);
  max-width:1440px;
  margin:0 auto;
  padding:46px clamp(24px,6vw,92px);
  display:grid
}

.authorisation-band h2 {
  max-width:540px;
  margin:8px 0 0;
  font-family:var(--font-serif);
  font-size:clamp(26px,3vw,43px);
  font-weight:400;
  line-height:1.15
}

.authorisation-band>p {
  color:#edd9d9;
  align-self:end;
  margin:0;
  font-size:15px;
  line-height:1.8
}

.band-kicker {
  color:#e4b9bc;
  letter-spacing:.2em;
  margin:0;
  font-size:10px;
  font-weight:700
}

.content-section {
  max-width:1440px;
  margin:0 auto;
  padding:clamp(90px,10vw,148px) clamp(24px,6vw,92px)
}

.section-heading {
  max-width:930px;
  margin-bottom:64px
}

.section-heading h2,
.about-intro h2,
.contact-section h2 {
  letter-spacing:-.035em;
  margin:0;
  font-family:var(--font-serif);
  font-size:clamp(44px,5.4vw,78px);
  font-weight:400;
  line-height:1.05
}

.section-heading>p:last-child {
  max-width:650px;
  color:var(--muted);
  margin:28px 0 0;
  font-size:17px;
  line-height:1.75
}

.inline-heading {
  grid-template-columns:1.2fr .8fr;
  align-items:end;
  gap:clamp(40px,8vw,120px);
  max-width:none;
  display:grid
}

.inline-heading>p:last-child {
  margin:0
}

.intelligence-section {
  background:var(--surface)
}

.intelligence-grid {
  background:var(--line);
  border:1px solid var(--line);
  grid-template-columns:1fr 1fr;
  gap:1px;
  display:grid
}

.intelligence-card {
  background:var(--paper);
  flex-direction:column;
  min-height:610px;
  padding:clamp(34px,5vw,70px);
  display:flex
}

.dark-card {
  color:#fff;
  background:var(--ink)
}

.card-top {
  color:var(--muted);
  letter-spacing:.12em;
  justify-content:space-between;
  align-items:start;
  font-size:11px;
  display:flex
}

.dark-card .card-top {
  color:#aaa69f
}

.card-top .metric {
  color:var(--signal);
  letter-spacing:-.05em;
  font-family:var(--font-serif);
  font-size:clamp(54px,6vw,84px);
  line-height:.8
}

.intelligence-card h3 {
  max-width:500px;
  margin:84px 0 20px;
  font-family:var(--font-serif);
  font-size:clamp(32px,3.5vw,50px);
  font-weight:400;
  line-height:1.08
}

.intelligence-card>p {
  max-width:540px;
  color:var(--muted);
  margin:0;
  line-height:1.75
}

.dark-card>p {
  color:#b9b5ae
}

.intelligence-card ul {
  margin:42px 0 34px;
  padding:0;
  list-style:none
}

.intelligence-card li {
  border-top:1px solid var(--line);
  padding:12px 0;
  font-size:14px
}

.dark-card li {
  border-color:#43413d
}

.intelligence-card li:before {
  content:"↗";
  width:30px;
  color:var(--signal);
  display:inline-block
}

.intelligence-card small {
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:.12em;
  margin-top:auto
}

.dark-card small {
  color:#928f89
}

.reports-section {
  background:var(--paper)
}

.reports-section .section-heading {
  position:relative
}

.reports-section .section-tag {
  color:#a7a198;
  letter-spacing:.16em;
  margin:0;
  font-size:10px;
  position:absolute;
  bottom:5px;
  right:0
}

.featured-report {
  color:#fff;
  background:var(--ink);
  grid-template-columns:minmax(300px,.78fr) minmax(0,1.22fr);
  min-height:650px;
  display:grid;
  position:relative;
  box-shadow:18px 18px #17171614
}

.report-cover {
  background:#dfdbd2;
  justify-content:center;
  align-items:center;
  padding:clamp(36px,5vw,70px);
  display:flex
}

.report-cover img {
  object-fit:contain;
  filter:drop-shadow(0 20px 28px #0003);
  max-width:100%;
  max-height:520px;
  display:block
}

.featured-copy {
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;
  padding:clamp(42px,6vw,88px);
  display:flex
}

.featured-copy h3 {
  max-width:690px;
  margin:0;
  font-family:var(--font-serif);
  font-size:clamp(36px,4.3vw,62px);
  font-weight:400;
  line-height:1.06
}

.feature-chinese {
  font-size:17px;
  color:#d2cdc4!important;
  margin:24px 0 0!important
}

.featured-copy>p:not(.eyebrow):not(.feature-chinese) {
  color:#aaa69f;
  max-width:640px;
  margin:30px 0 0;
  line-height:1.75
}

.metadata-list {
  flex-wrap:wrap;
  gap:9px;
  margin:32px 0;
  padding:0;
  list-style:none;
  display:flex
}

.metadata-list li {
  color:#d3cfc8;
  letter-spacing:.05em;
  border:1px solid #5a5752;
  padding:7px 11px;
  font-size:11px
}

.button-light {
  color:#fff;
  border:1px solid #ffffffb3;
  gap:16px
}

.featured-copy .button-light:hover,
.contact-details .button-light:hover {
  color:var(--ink);
  background:#fff
}

.series-label {
  border-bottom:1px solid var(--ink);
  letter-spacing:.18em;
  justify-content:space-between;
  margin-top:76px;
  padding-bottom:15px;
  font-size:11px;
  font-weight:700;
  display:flex
}

.report-grid {
  grid-template-columns:repeat(3,1fr);
  display:grid
}

.report-card {
  border-bottom:1px solid var(--line);
  flex-direction:column;
  min-height:440px;
  padding:34px 30px;
  transition:background .25s,transform .25s;
  display:flex
}

.report-card:hover {
  background:var(--surface);
  transform:translateY(-4px);
  box-shadow:0 12px 24px #1717160f
}

.report-card+article {
  border-left:1px solid var(--line)
}

.report-code {
  color:var(--signal);
  letter-spacing:.14em;
  justify-content:space-between;
  font-size:10px;
  font-weight:700;
  display:flex
}

.report-card h3 {
  margin:70px 0 18px;
  font-family:var(--font-serif);
  font-size:30px;
  font-weight:400;
  line-height:1.15
}

.report-card>p {
  color:var(--muted);
  margin:0;
  font-size:14px;
  line-height:1.7
}

.tag-list {
  flex-wrap:wrap;
  gap:8px;
  margin:28px 0;
  display:flex
}

.tag-list span {
  border:1px solid var(--line);
  color:var(--muted);
  padding:6px 9px;
  font-size:10px
}

.report-card>a {
  border-top:1px solid var(--ink);
  justify-content:space-between;
  margin-top:auto;
  padding-top:15px;
  font-size:13px;
  text-decoration:none;
  display:flex
}

.report-card>a:hover {
  color:var(--signal)
}

.advisory-section {
  color:#fff;
  background:var(--wine);
  max-width:none;
  padding-left:max(24px,50vw - 628px);
  padding-right:max(24px,50vw - 628px)
}

.advisory-section .eyebrow {
  color:#e1b2b5
}

.advisory-section .section-heading>p {
  color:#e4cbcd
}

.advisory-grid {
  border-top:1px solid #ffffff40;
  grid-template-columns:repeat(3,1fr);
  display:grid
}

.advisory-grid article {
  flex-direction:column;
  min-height:500px;
  padding:38px clamp(24px,3vw,48px);
  display:flex
}

.advisory-grid article+article {
  border-left:1px solid #ffffff40
}

.large-number {
  color:#d9a8ac;
  font-family:var(--font-serif);
  font-size:60px
}

.advisory-grid h3 {
  margin:80px 0 18px;
  font-family:var(--font-serif);
  font-size:35px;
  font-weight:400
}

.advisory-grid p {
  color:#e0c8ca;
  margin:0;
  font-size:14px;
  line-height:1.75
}

.advisory-grid ul {
  margin:auto 0 0;
  padding:0;
  list-style:none
}

.advisory-grid li {
  border-top:1px solid #ffffff40;
  padding:11px 0;
  font-size:13px
}

.about-section {
  background:var(--surface)
}

.about-intro {
  grid-template-columns:1fr 1fr;
  gap:clamp(50px,9vw,150px);
  display:grid
}

.about-body {
  color:var(--muted);
  margin:45px 0 0;
  font-size:18px;
  line-height:1.8
}

.company-name {
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  flex-direction:column;
  gap:8px;
  margin-top:42px;
  padding:25px 0;
  display:flex
}

.company-name strong {
  font-size:14px
}

.company-name span {
  color:var(--muted);
  font-size:14px
}

.role-list {
  flex-wrap:wrap;
  gap:10px;
  margin:25px 0 0;
  padding:0;
  list-style:none;
  display:flex
}

.role-list li {
  border:1px solid var(--line);
  padding:8px 12px;
  font-size:11px
}

.partner-card {
  border:1px solid var(--line);
  background:var(--paper);
  grid-template-columns:.7fr 1.3fr;
  align-items:center;
  gap:clamp(40px,8vw,120px);
  margin-top:100px;
  padding:clamp(42px,6vw,80px);
  display:grid
}

.partner-logo {
  background:#fff;
  justify-content:center;
  align-items:center;
  min-height:220px;
  padding:30px;
  display:flex
}

.partner-logo img {
  width:min(100%,320px);
  height:auto;
  display:block
}

.partner-card h3 {
  max-width:650px;
  margin:0;
  font-family:var(--font-serif);
  font-size:clamp(32px,4vw,52px);
  font-weight:400;
  line-height:1.1
}

.partner-card>div:last-child>p:last-child {
  max-width:680px;
  color:var(--muted);
  margin:26px 0 0;
  line-height:1.75
}

.contact-section {
  color:#fff;
  background:var(--ink);
  grid-template-columns:1.15fr .85fr;
  gap:clamp(50px,10vw,160px);
  max-width:1440px;
  margin:0 auto;
  padding:clamp(90px,11vw,160px) clamp(24px,6vw,92px);
  display:grid
}

.contact-section>div:first-child>p:last-child {
  color:#b9b5ae;
  max-width:650px;
  margin:28px 0 0;
  font-size:17px;
  line-height:1.75
}

.contact-details {
  flex-direction:column;
  justify-content:flex-end;
  align-items:flex-start;
  gap:12px;
  display:flex
}

.contact-details>span {
  color:#8f8c86;
  letter-spacing:.1em;
  font-size:11px
}

.contact-details>a:not(.button) {
  border-bottom:1px solid #706d68;
  margin-bottom:25px;
  font-family:var(--font-serif);
  font-size:clamp(23px,3vw,38px);
  text-decoration:none
}

.contact-details .button {
  margin-top:22px
}

.legal-note {
  border-bottom:1px solid var(--line);
  max-width:1440px;
  color:var(--muted);
  background:var(--surface);
  margin:0 auto;
  padding:24px clamp(24px,6vw,92px);
  font-size:11px;
  line-height:1.7
}

footer {
  background:var(--surface);
  grid-template-columns:220px 1fr auto;
  align-items:end;
  gap:40px;
  max-width:1440px;
  margin:0 auto;
  padding:55px clamp(24px,6vw,92px);
  display:grid
}

.footer-brand img {
  width:100%;
  height:auto;
  display:block
}

footer>div {
  flex-direction:column;
  gap:6px;
  font-size:12px;
  display:flex
}

footer>div span,
footer p,
footer small {
  color:var(--muted)
}

footer p {
  margin:0;
  font-size:12px
}

footer small {
  white-space:nowrap
}

@media (max-width:980px) {
  .authorisation-band,.inline-heading,.about-intro,.contact-section,.intelligence-grid {
    grid-template-columns:1fr
  }

  .intelligence-card {
    min-height:560px
  }

  .featured-report {
    grid-template-columns:1fr
  }

  .report-cover {
    min-height:520px
  }

  .report-cover img {
    max-height:430px
  }

  .report-grid {
    grid-template-columns:1fr
  }

  .report-card {
    min-height:350px
  }

  .report-card+article {
    border-left:0
  }

  .advisory-grid {
    grid-template-columns:1fr
  }

  .advisory-grid article {
    min-height:400px
  }

  .advisory-grid article+article {
    border-top:1px solid #ffffff40;
    border-left:0
  }

  .advisory-grid h3 {
    margin-top:48px
  }

  .partner-card {
    grid-template-columns:1fr
  }

  .partner-logo {
    min-height:180px
  }

  footer {
    grid-template-columns:180px 1fr
  }

  footer p,footer small {
    grid-column:2
  }

}

@media (max-width:560px) {
  .authorisation-band {
    padding:40px 22px
  }

  .content-section {
    padding:78px 22px
  }

  .section-heading {
    margin-bottom:45px
  }

  .section-heading h2,.about-intro h2,.contact-section h2 {
    font-size:clamp(40px,12vw,58px)
  }

  .intelligence-card {
    min-height:530px;
    padding:30px 24px
  }

  .intelligence-card h3 {
    margin-top:66px
  }

  .featured-copy {
    padding:42px 25px
  }

  .report-cover {
    min-height:390px;
    padding:34px
  }

  .report-cover img {
    max-height:330px
  }

  .metadata-list {
    gap:6px
  }

  .report-card {
    padding:32px 18px
  }

  .advisory-section {
    padding-left:22px;
    padding-right:22px
  }

  .advisory-grid article {
    min-height:390px;
    padding:34px 10px
  }

  .partner-card {
    margin-top:70px;
    padding:28px 20px
  }

  .contact-section {
    padding:80px 22px
  }

  .contact-details>a:not(.button) {
    font-size:22px
  }

  footer {
    grid-template-columns:1fr;
    align-items:start;
    padding:45px 22px
  }

  .footer-brand {
    width:190px
  }

  footer p,footer small {
    grid-column:1
  }

  .reports-section .section-heading:after {
    margin-top:20px;
    display:block;
    position:static
  }

}

.button-outline {
  color:#ccc;
  border:1px solid #ffffff4d;
  border-radius:2px;
  align-items:center;
  gap:6px;
  margin-top:8px;
  padding:12px 22px;
  font-size:13px;
  text-decoration:none;
  transition:border-color .2s,color .2s;
  display:inline-flex
}

.button-outline:hover {
  color:#fff;
  border-color:#fff
}

.card-link {
  color:#888;
  margin-top:8px;
  font-size:12px;
  text-decoration:none;
  transition:color .2s;
  display:inline-block
}

.card-link:hover {
  color:#333
}

.featured-copy .report-card {
  flex-direction:column;
  display:flex
}

.report-card .report-card .card-link {
  margin-top:6px
}

.featured-copy /* ==========================================================================
   设计精修层 — 2026 改版
   原设计用 Georgia + Arial 两个系统默认字体，观感偏"未完成"。
   这一层换上 Source Serif 4 / Inter，收紧排版节奏，并加入研究机构
   惯用的细线与数字处理。放在文件末尾，便于对照原样式。
   ========================================================================== */

/* --- 基础排版 ------------------------------------------------------------ */

body {
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  font-size:16px;
  line-height:1.65;
  font-feature-settings:'kern' 1,'liga' 1
}

/* Source Serif 4 带光学尺寸轴：字号越大，笔画对比越细腻。
   大标题调到 opsz 60，字形会明显更挺拔。 */
h1,h2,h3 {
  font-variation-settings:'opsz' 32;
  text-wrap:balance
}

.hero h1 {
  font-variation-settings:'opsz' 60;
  font-weight:380;
  letter-spacing:-.032em;
  line-height:1
}

.section-heading h2,
.about-intro h2,
.contact-section h2,
.authorisation-band h2,
.method-section h2 {
  font-variation-settings:'opsz' 48;
  font-weight:390;
  letter-spacing:-.028em
}

.hero-lead,
.section-heading p,
.about-body {
  color:var(--muted);
  letter-spacing:-.003em
}

/* --- 数字：等宽对齐，研究页面里数据要能竖着对齐 ------------------------- */

.proof-strip strong,
.metric,
.large-number,
.service-number,
.report-code,
.method-steps span,
.market-card li span,
.report-facts dd {
  font-variant-numeric:tabular-nums;
  font-feature-settings:'tnum' 1
}

.proof-strip strong {
  font-family:var(--font-serif);
  font-variation-settings:'opsz' 40;
  font-weight:360;
  letter-spacing:-.02em
}

/* --- eyebrow：统一加一道短红线，作为全站的视觉签名 ---------------------- */

.eyebrow,
.band-kicker {
  align-items:center;
  gap:14px;
  display:flex
}

/* hero 已经有一道 64px 的粗红杠，这里不再重复加线 */
.eyebrow:not(.hero-copy .eyebrow):before,
.band-kicker:before {
  content:"";
  background:var(--signal);
  flex:none;
  width:26px;
  height:1px
}

.dark-card .eyebrow:before,
.authorisation-band .band-kicker:before {
  background:currentColor;
  opacity:.5
}

/* --- 导航：悬停时下划线从左展开 ----------------------------------------- */

.language-switch a {
  color:var(--muted);
  text-decoration:none;
  transition:color .2s
}

.language-switch a:hover {
  color:var(--ink)
}

.language-switch a[aria-current] {
  color:var(--ink);
  font-weight:600
}

/* --- 细线：把原来偏重的分隔线换成更克制的发丝线 ------------------------- */

.proof-strip,
.service-strip {
  border-color:var(--line-hair)
}

/* ==========================================================================
   新增页面组件：报告列表页 / 报告详情页
   ========================================================================== */

.breadcrumb {
  color:var(--muted);
  letter-spacing:.04em;
  align-items:center;
  gap:10px;
  margin-bottom:44px;
  font-size:12px;
  display:flex
}

.breadcrumb a {
  text-decoration:none;
  transition:color .2s
}

.breadcrumb a:hover {
  color:var(--signal)
}

.report-detail-grid {
  grid-template-columns:minmax(0,1fr) 370px;
  align-items:start;
  gap:clamp(48px,6vw,104px);
  display:grid
}

.report-detail-main h1 {
  letter-spacing:-.03em;
  margin:0 0 18px;
  font-family:var(--font-serif);
  font-variation-settings:'opsz' 52;
  font-size:clamp(34px,4vw,58px);
  font-weight:390;
  line-height:1.06
}

.report-detail-main .feature-chinese {
  color:var(--muted);
  margin:0 0 30px;
  font-family:var(--font-serif);
  font-size:18px
}

.report-summary {
  color:var(--ink-soft);
  border-bottom:1px solid var(--line-hair);
  max-width:640px;
  margin:0 0 46px;
  padding-bottom:40px;
  font-size:clamp(17px,1.4vw,20px);
  line-height:1.65
}

.report-detail-main h2 {
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--muted);
  margin:46px 0 22px;
  font-family:var(--font-sans);
  font-size:11px;
  font-weight:700
}

.report-contents,
.report-audience {
  max-width:640px;
  margin:0;
  padding:0;
  list-style:none
}

.report-contents li,
.report-audience li {
  border-top:1px solid var(--line-hair);
  padding:15px 0 15px 40px;
  font-size:15px;
  line-height:1.6;
  position:relative;
  counter-increment:toc
}

.report-contents {
  counter-reset:toc
}

.report-contents li:before {
  content:counter(toc,decimal-leading-zero);
  color:var(--signal);
  font-variant-numeric:tabular-nums;
  font-size:11px;
  font-weight:700;
  position:absolute;
  top:18px;
  left:0
}

.report-audience li:before {
  content:"";
  background:var(--line);
  width:14px;
  height:1px;
  position:absolute;
  top:26px;
  left:0
}

.report-enquiry {
  border-top:1px solid var(--line-hair);
  max-width:640px;
  margin-top:56px;
  padding-top:40px
}

.report-enquiry h2 {
  letter-spacing:-.02em;
  text-transform:none;
  color:var(--ink);
  margin:0 0 12px;
  font-family:var(--font-serif);
  font-size:26px;
  font-weight:400
}

.report-enquiry p {
  color:var(--muted);
  max-width:460px;
  margin:0 0 22px;
  font-size:15px
}

.report-enquiry .button-outline {
  color:var(--ink);
  border-color:var(--line)
}

.report-enquiry .button-outline:hover {
  border-color:var(--ink)
}

/* --- 详情页侧栏 ---------------------------------------------------------- */

.report-detail-side {
  background:var(--surface);
  border:1px solid var(--line-hair);
  padding:30px;
  position:sticky;
  top:calc(var(--header-height) + 24px)
}

.report-detail-side .report-cover {
  background:#dfdbd2;
  margin:-30px -30px 28px;
  padding:34px
}

.report-detail-side .report-cover img {
  width:100%;
  height:auto;
  display:block;
  box-shadow:0 14px 30px #17171626
}

.report-facts {
  margin:0 0 26px
}

.report-facts div {
  border-top:1px solid var(--line-hair);
  justify-content:space-between;
  align-items:baseline;
  gap:16px;
  padding:11px 0;
  display:flex
}

.report-facts div:first-child {
  border-top:0
}

.report-facts dt {
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--muted);
  font-size:10px;
  font-weight:700
}

.report-facts dd {
  text-align:right;
  margin:0;
  font-size:14px;
  font-weight:500
}

.report-detail-side .report-detail-side .delivery-note {
  color:var(--muted);
  margin:16px 0 22px;
  font-size:12px;
  line-height:1.55
}

/* --- 列表页与首页卡片上的标题链接 --------------------------------------- */

.report-card h3 a,
.featured-copy h3 a {
  text-decoration:none;
  transition:color .2s
}

.report-card h3 a:hover {
  color:var(--signal)
}

.report-cover a {
  width:100%;
  display:block
}

/* --- 响应式 -------------------------------------------------------------- */

@media (max-width:980px) {
  .report-detail-grid {
    grid-template-columns:1fr;
    gap:48px
  }

  .report-detail-side {
    position:static;
    order:-1
  }
}

@media (max-width:560px) {
  .report-detail-side {
    padding:24px
  }

  .report-detail-side .report-cover {
    margin:-24px -24px 22px;
    padding:26px
  }
}

/* ==========================================================================
   购买区 — 重做
   旧版用的是 var(--accent,#1a3a2a) 一个从未定义的变量兜底的深绿，
   和全站酒红 / 米纸配色冲突。改为两段式按钮：左边行动，右边价格，
   中间发丝线分隔；下方一行交付承诺。
   ========================================================================== */

.buy-block {
  flex-direction:column;
  align-items:flex-start;
  gap:13px;
  margin:30px 0 10px;
  display:flex
}

.buy-button {
  letter-spacing:.09em;
  text-transform:uppercase;
  border:1px solid;
  align-items:stretch;
  font-family:var(--font-sans);
  font-size:12px;
  font-weight:600;
  text-decoration:none;
  transition:background .22s,color .22s,border-color .22s;
  display:inline-flex
}

.buy-button>span:first-child {
  padding:15px 24px
}

.buy-price,
.buy-arrow {
  font-variant-numeric:tabular-nums;
  letter-spacing:.02em;
  border-left:1px solid;
  border-color:inherit;
  align-items:center;
  padding:15px 20px;
  display:inline-flex
}

/* 浅色底（报告卡片、详情页侧栏） */
.buy-light .buy-button {
  color:var(--paper);
  background:var(--ink);
  border-color:var(--ink)
}

.buy-light .buy-button .buy-price,
.buy-light .buy-button .buy-arrow {
  border-color:#ffffff38
}

.buy-light .buy-button:hover {
  background:var(--wine);
  border-color:var(--wine)
}

/* 深色底（首页主推报告的黑色面板） */
.buy-dark .buy-button {
  color:var(--ink);
  background:var(--paper);
  border-color:var(--paper)
}

.buy-dark .buy-button .buy-price,
.buy-dark .buy-button .buy-arrow {
  border-color:#17171626
}

.buy-dark .buy-button:hover {
  color:#fff;
  background:var(--signal);
  border-color:var(--signal)
}

.buy-dark .buy-button:hover .buy-price,
.buy-dark .buy-button:hover .buy-arrow {
  border-color:#ffffff40
}

/* 交付承诺 —— 卖数字报告，"买完马上能下载"必须说清楚 */
.buy-trust {
  color:var(--muted);
  align-items:center;
  gap:8px;
  margin:0;
  font-size:12px;
  line-height:1.5;
  display:flex
}

.buy-dark .buy-trust {
  color:#9b9790
}

.buy-trust:before {
  content:"";
  background:currentColor;
  border-radius:50%;
  flex:none;
  width:4px;
  height:4px;
  opacity:.55
}

/* 测试状态：做成明确的警示条，而不是一行灰字。
   salesMode 改成 live 之后这个样式自然就不会出现了。 */
.buy-trust.is-test {
  color:#8a5a12;
  background:#f6ecd8;
  border-left:2px solid #c98a1e;
  padding:8px 12px;
  font-weight:500
}

.buy-dark .buy-trust.is-test {
  color:#e8c98a;
  background:#3a2f18;
  border-left-color:#c98a1e
}

.buy-trust.is-test:before {
  display:none
}

/* 卡片里的购买区靠底对齐，三张卡按钮才会齐平 */
.report-card .buy-block {
  margin-top:auto
}

.report-card .buy-button {
  font-size:11px
}

.report-card .buy-button>span:first-child {
  padding:13px 18px
}

.report-card .buy-price {
  padding:13px 16px
}

/* 详情页侧栏：整块拉满宽度，价格靠右 */
.report-detail-side .buy-block {
  align-items:stretch;
  width:100%;
  margin:0 0 4px
}

.report-detail-side .buy-button {
  justify-content:space-between
}

/* --- 收尾精修 ------------------------------------------------------------ */

/* 中文副标题原来太浅，在米色底上几乎糊掉 */
.feature-chinese {
  color:var(--ink-soft);
  opacity:.82
}

.featured-copy .feature-chinese {
  color:#cfcac2;
  opacity:1
}

/* 主推报告是全站第一转化点，按钮给足分量 */
.featured-copy .buy-button {
  font-size:13px
}

.featured-copy .buy-button>span:first-child {
  padding:17px 30px
}

.featured-copy .buy-price {
  padding:17px 24px
}

/* 深色面板上的次级按钮原来是 #ccc，偏灰弱，提到接近白 */
.button-outline {
  color:#e6e2da;
  border-color:#ffffff59
}

.button-outline:hover {
  color:#fff;
  border-color:#fff
}

/* 报告卡片标题用衬线，跟全站标题体系一致 */
.report-card h3 {
  font-family:var(--font-serif);
  font-variation-settings:'opsz' 28;
  letter-spacing:-.015em
}

/* 子页面用 h1 做主标题，原 CSS 只覆盖了 h2 —— 补上，保持同一套标题样式 */
.section-heading h1 {
  letter-spacing:-.028em;
  margin:0;
  font-family:var(--font-serif);
  font-variation-settings:'opsz' 48;
  font-size:clamp(40px,4.6vw,66px);
  font-weight:390;
  line-height:1.04
}

.section-heading h1+p {
  color:var(--muted);
  max-width:620px;
  margin:26px 0 0;
  font-size:clamp(16px,1.3vw,19px)
}

.section-heading {
  position:relative
}

/* --- 中文排版微调 -------------------------------------------------------- */
/* 中文没有词间空格，大字号标题的负字距会挤在一起；行高也需要比西文宽松 */

:lang(zh) h1,
:lang(zh) h2,
:lang(zh) h3 {
  letter-spacing:.01em
}

:lang(zh) .hero h1 {
  letter-spacing:.015em;
  font-size:clamp(42px,5.4vw,82px);
  font-weight:500;
  line-height:1.28
}

:lang(zh) .section-heading h1,
:lang(zh) .section-heading h2,
:lang(zh) .about-intro h2,
:lang(zh) .contact-section h2,
:lang(zh) .authorisation-band h2,
:lang(zh) .method-section h2 {
  letter-spacing:.012em;
  font-size:clamp(32px,3.8vw,54px);
  font-weight:500;
  line-height:1.34
}

:lang(zh) .featured-copy h3,
:lang(zh) .report-detail-main h1 {
  letter-spacing:.012em;
  font-size:clamp(28px,3.1vw,44px);
  font-weight:500;
  line-height:1.35
}

:lang(zh) body {
  line-height:1.8
}

/* 中文的全角标点自带空隙，字距不必再拉开 */
:lang(zh) .eyebrow,
:lang(zh) .band-kicker,
:lang(zh) .proof-strip span {
  letter-spacing:.09em
}

/* ==========================================================================
   页眉导航 — 重做
   问题一：我加的下划线动画把 padding-bottom 从 32px 覆盖成 3px，
          导航项高度塌了，还和原有的 border-bottom 撞成两条指示线。
   问题二：更根本 —— 导航用 13px 句首大写，而全站其它小标签（eyebrow、
          数据条、购买按钮）都是大写＋宽字距。EN/繁 又比导航更粗更大。
          三组元素各用各的字体规格，所以看着别扭。现统一到同一套规格。
   ========================================================================== */

.header-panel {
  gap:clamp(26px,3.4vw,56px)
}

.header-panel nav {
  gap:clamp(24px,2.7vw,44px)
}

.header-panel nav a,
.language-switch,
.header-contact {
  letter-spacing:.14em;
  text-transform:uppercase;
  font-size:11px;
  font-weight:500
}

.header-panel nav a {
  color:var(--ink-soft);
  border-bottom:0;
  padding:38px 0 36px;
  transition:color .2s;
  position:relative
}

/* 单一指示条，贴在页眉底边上，和左下角那道红杠同一条基线 */
.header-panel nav a:after {
  content:"";
  background:var(--signal);
  width:0;
  height:2px;
  transition:width .3s cubic-bezier(.22,1,.36,1);
  position:absolute;
  bottom:-1px;
  left:0
}

.header-panel nav a:hover {
  color:var(--ink)
}

.header-panel nav a:hover:after {
  width:100%
}

/* 当前页在导航里常驻标记 */
.header-panel nav a[aria-current]:after {
  width:100%
}

.language-switch {
  color:var(--muted);
  gap:9px
}

.language-switch a {
  color:var(--muted);
  letter-spacing:inherit;
  text-decoration:none;
  transition:color .2s
}

.language-switch a:hover {
  color:var(--ink)
}

/* 当前语言不靠加粗区分 —— 加粗会破坏这一行的重量平衡，改用颜色 */
.language-switch a[aria-current] {
  color:var(--ink);
  font-weight:500
}

.header-contact {
  border-color:var(--ink);
  padding:13px 21px;
  transition:color .2s,background .2s
}

/* 手机端展开的菜单是大号衬线列表，不套上面那套大写小字规格 */
@media (max-width:980px) {
  .header-panel nav a {
    letter-spacing:0;
    text-transform:none;
    border-bottom:1px solid var(--line);
    padding:17px 0;
    font-size:26px;
    font-weight:400
  }

  .header-panel nav a:after {
    display:none
  }

  .language-switch,
  .header-contact {
    letter-spacing:.12em;
    font-size:12px
  }
}

/* 导航项撑满页眉高度，下划线才能正好落在页眉底边上，
   和左下角那道 92px 红杠同一条基线 */
.header-panel nav a {
  align-items:center;
  height:var(--header-height);
  padding:0;
  display:flex
}

.header-panel nav a:after {
  bottom:-1px
}

@media (max-width:980px) {
  .header-panel nav a {
    height:auto;
    padding:17px 0;
    display:block
  }
}

/* ==========================================================================
   修复：手机菜单展开后只有 72px 高（原站同样有这个 bug，线上实测过）

   页眉的 backdrop-filter:blur(12px) 会让它成为固定定位子元素的包含块，
   于是菜单面板的 position:fixed + inset:78px 0 0 不再相对视口，
   而是相对只有 78px 高的页眉，高度被压成内容高度。

   手机端不需要这层毛玻璃，去掉即可恢复；同时补一个显式高度兜底，
   防止以后别处再引入 transform/filter 一类属性又把它压回去。
   ========================================================================== */

@media (max-width:980px) {
  .site-header {
    -webkit-backdrop-filter:none;
    backdrop-filter:none;
    background:var(--surface)
  }

  .header-panel {
    height:calc(100dvh - var(--header-height));
    max-height:calc(100dvh - var(--header-height))
  }

  /* 语言切换和联系按钮在展开的菜单里需要喘息空间 */
  .header-panel.is-open .language-switch {
    border-bottom:1px solid var(--line);
    gap:14px;
    padding:20px 0 24px
  }

  .header-panel.is-open .header-contact {
    justify-content:center;
    margin-top:28px;
    padding:16px 22px;
    display:flex
  }
}

/* ==========================================================================
   Hero 右侧重构

   原状况（1920 宽实测）：右列仅 315px，市场卡片上方有 529px 死空间；
   天际线图 opacity:.16 之上还盖了一层 #f3f0e99e，等于完全看不见。
   那块区域实质是空的，屏幕越宽越塌。

   改法：把照片提到可见强度，右侧出血到窗口边缘，让这块变成一块真正的
   图像面板；文字一侧用渐变把图压回纸色，保证标题对比度不受影响。
   ========================================================================== */

.hero {
  align-items:stretch;
  grid-template-columns:minmax(0,1.38fr) minmax(340px,.62fr);
  min-height:min(680px,78vh);
  padding-top:clamp(80px,9vw,132px);
  padding-bottom:clamp(64px,7vw,96px)
}

/* 图像面板：从 44% 处起，向右出血出 max-width 容器，直到窗口边缘 */
.hero:before {
  opacity:1;
  filter:grayscale(1)contrast(1.06)brightness(1.02);
  inset:0 calc(-1*(50vw - 50%)) 0 44%
}

/* 遮罩：左侧实纸色 → 右侧渐次露出照片。
   替代原来那层一刀切的 #f3f0e99e。 */
.hero:after {
  background:linear-gradient(90deg,
    var(--paper) 0%,
    var(--paper) 40%,
    #f3f0e9f2 50%,
    #f3f0e9d6 66%,
    #f3f0e9b8 100%);
  inset:0 calc(-1*(50vw - 50%)) 0 0
}

/* 酒红色调层，把灰度照片拉回品牌色系 */
.hero-copy~.market-card,
.hero>.market-card {
  position:relative
}

.hero .market-card {
  align-self:end;
  box-shadow:22px 22px #741b241f,0 18px 44px #17171614
}

/* 图像面板顶端一道细线，交代这是一块有意的区域而不是背景溢出 */
.hero-panel-rule {
  border-top:1px solid #cec9bdb8;
  grid-column:2;
  grid-row:1;
  align-self:start;
  justify-content:space-between;
  gap:14px;
  padding-top:14px;
  display:flex
}

.hero-panel-rule span {
  color:#8f8a81;
  letter-spacing:.16em;
  text-transform:uppercase;
  font-size:10px;
  font-weight:600
}

@media (max-width:980px) {
  .hero {
    align-items:start;
    grid-template-columns:1fr
  }

  .hero:before {
    opacity:.2;
    inset:0
  }

  .hero:after {
    background:#f3f0e9c4;
    inset:0
  }

  .hero-panel-rule {
    display:none
  }
}

/* 渐变收尾：原方案在最右端仍盖了 72% 的纸色，把照片又洗白了一块，
   右边缘看着还是空。改成右端基本让照片露出来。 */
.hero:after {
  background:linear-gradient(90deg,
    var(--paper) 0%,
    var(--paper) 38%,
    #f3f0e9f0 48%,
    #f3f0e9c4 60%,
    #f3f0e98c 76%,
    #f3f0e963 100%)
}

.hero:before {
  background-position:58% 50%
}

/* 卡片压在照片上，需要一点分离感才不会糊在一起 */
.hero .market-card {
  box-shadow:22px 22px #741b2426,0 22px 52px #1717161f
}

/* 图注和市场卡片放进同一个网格单元（第 2 列第 1 行），
   一个贴顶一个贴底；否则图注会占掉一行，把卡片挤到折叠线以下。 */
.hero-panel-rule,
.hero .market-card {
  grid-column:2;
  grid-row:1
}

.hero-panel-rule {
  align-self:start
}

.hero .market-card {
  align-self:end
}

/* 天际线在照片下半部，面板是竖长条，cover 裁切后要把视点下移才看得到楼 */
.hero:before {
  background-position:52% 72%
}

@media (max-width:980px) {
  .hero .market-card {
    grid-column:1;
    grid-row:auto
  }
}

/* 图像左缘从 36% 起，但渐变到 42% 才开始变薄 —— 让照片的硬边
   藏在实色纸底下，露出来的过程完全由渐变控制，不留接缝。 */
.hero:before {
  inset:0 calc(-1*(50vw - 50%)) 0 36%
}

.hero:after {
  background:linear-gradient(90deg,
    var(--paper) 0%,
    var(--paper) 42%,
    #f3f0e9ee 52%,
    #f3f0e9c0 63%,
    #f3f0e989 78%,
    #f3f0e960 100%)
}

/* 图注压在照片亮部上，原来太淡，提一档并让它跟着图走 */
.hero-panel-rule {
  border-top-color:#17171633
}

.hero-panel-rule span {
  color:#6b665e
}

/* ==========================================================================
   移动端 hero 覆盖 —— 必须放在文件最末尾

   前面几轮桌面精修是逐步追加的，位置都在移动端媒体查询之后，
   同优先级下后写的胜出，于是手机上仍在用桌面的分栏图像面板参数
   （实测 375px 时 left 仍是 135px）。这里统一收口。
   ========================================================================== */

@media (max-width:980px) {
  .hero:before {
    opacity:.22;
    background-position:50% 65%;
    inset:0
  }

  .hero:after {
    background:linear-gradient(180deg,#f3f0e9e8 0%,#f3f0e9cc 55%,#f3f0e9e8 100%);
    inset:0
  }
}

/* ==========================================================================
   品牌标志 —— 中文改繁体

   原 Logo 是一整张位图，底部中文是简体「优尼华盛」，与全站公司全称
   「優尼華盛（香港）酒店管理諮詢有限公司」不一致。
   位图改不了字，故把图裁成只剩 HOTEL STRATEGIES 标准字（定制字体，不可重画），
   中文改用真实文字渲染 —— 以后随时可改、任何分辨率都清晰、可被朗读。

   比例取自原图实测：中文占标准字宽度 63%，字高 111/1400。
   ========================================================================== */

.brand,
.footer-brand {
  --brand-w:132px;
  flex-direction:column;
  align-items:flex-start;
  gap:calc(var(--brand-w)*.037);
  width:var(--brand-w);
  height:auto;
  text-decoration:none;
  display:flex
}

.brand img,
.footer-brand img {
  object-fit:fill;
  width:var(--brand-w);
  height:auto;
  display:block
}

.brand-zh {
  color:var(--ink);
  letter-spacing:.92em;
  text-indent:.04em;
  white-space:nowrap;
  font-family:'PingFang HK','Microsoft JhengHei','Noto Sans TC',sans-serif;
  font-size:calc(var(--brand-w)*.084);
  font-weight:400;
  line-height:1
}

.site-header .brand {
  flex:0 0 var(--brand-w)
}

@media (max-width:980px) {
  .brand {
    --brand-w:112px
  }
}

/* letter-spacing 会在末字后也补一份空隙，使盒子比墨迹宽一格。
   抵消掉，布局测量才和视觉一致。 */
.brand-zh {
  margin-right:-.92em
}

/* ==========================================================================
   修复：报告卡片里购买按钮不在同一条线上

   原因是 flexbox 的一个隐蔽行为 —— 卡片里有两个元素设了 margin-top:auto
   （底部链接 .report-card>a 是原有的，购买区是我后加的）。
   多个 auto 上边距会把剩余空间「平均分配」给它们，于是标题占 1 行的卡片
   各分走一半，标题占 2 行的卡片无剩余空间，按钮就错开了。
   繁体版标题长短不一才暴露出来；英文版恰好都是两行，看不出来。

   只保留购买区一个 auto：它吸收全部剩余空间，把「购买区 + 底部链接」
   作为一组推到底。这一组在三张卡里高度相同，因此两者同时对齐。
   ========================================================================== */

.report-card>.card-link {
  margin-top:14px
}

/* ==========================================================================
   修复：大标题行距过紧，Hero 标题字面意义上撞行

   换字体时我沿用了原设计的紧凑行距（hero 是 line-height:1），但
   Source Serif 4 的下伸部比原来的 Georgia 长。1920 宽实测 hero 标题：

     字号 108px  行距 108px
     下伸部(p,y) 28px + 上伸部(l,t) 81px = 109px  →  重叠 1px

   其余大标题没撞，但间隙只有 2.7–3.5px，同样偏紧。统一放宽到
   约 5–8% 字号的间隙——display 字体该有的紧凑感还在，但不再打架。
   中文标题有自己的 :lang(zh) 行距，不受影响。
   ========================================================================== */

.hero h1 {
  line-height:1.08
}

.section-heading h1,
.section-heading h2,
.about-intro h2,
.contact-section h2,
.authorisation-band h2,
.method-section h2,
.featured-copy h3,
.report-detail-main h1 {
  line-height:1.08
}

.market-card h2,
.report-card h3 {
  line-height:1.2
}
