/*! tailwindcss v4.2.1 | MIT License | https://tailwindcss.com */
@layer properties;
@layer theme, base, components, utilities;
@layer theme {
  :root, :host {
    --font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
      "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
      "Courier New", monospace;
    --spacing: 0.25rem;
    --default-transition-duration: 150ms;
    --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    --default-font-family: var(--font-sans);
    --default-mono-font-family: var(--font-mono);
  }
}
@layer base {
  *,
  ::after,
  ::before,
  ::backdrop,
  ::file-selector-button {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0 solid;
  }
  html,
  :host {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
    font-feature-settings: var(--default-font-feature-settings, normal);
    font-variation-settings: var(--default-font-variation-settings, normal);
    -webkit-tap-highlight-color: transparent;
  }
  hr {
    height: 0;
    color: inherit;
    border-top-width: 1px;
  }
  abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-size: inherit;
    font-weight: inherit;
  }
  a {
    color: inherit;
    -webkit-text-decoration: inherit;
    text-decoration: inherit;
  }
  b,
  strong {
    font-weight: bolder;
  }
  code,
  kbd,
  samp,
  pre {
    font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
    font-feature-settings: var(--default-mono-font-feature-settings, normal);
    font-variation-settings: var(--default-mono-font-variation-settings, normal);
    font-size: 1em;
  }
  small {
    font-size: 80%;
  }
  sub,
  sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
  }
  sub {
    bottom: -0.25em;
  }
  sup {
    top: -0.5em;
  }
  table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
  }
  :-moz-focusring {
    outline: auto;
  }
  progress {
    vertical-align: baseline;
  }
  summary {
    display: list-item;
  }
  ol,
  ul,
  menu {
    list-style: none;
  }
  img,
  svg,
  video,
  canvas,
  audio,
  iframe,
  embed,
  object {
    display: block;
    vertical-align: middle;
  }
  img,
  video {
    max-width: 100%;
    height: auto;
  }
  button,
  input,
  select,
  optgroup,
  textarea,
  ::file-selector-button {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    border-radius: 0;
    background-color: transparent;
    opacity: 1;
  }
  :where(select:is([multiple], [size])) optgroup {
    font-weight: bolder;
  }
  :where(select:is([multiple], [size])) optgroup option {
    padding-inline-start: 20px;
  }
  ::file-selector-button {
    margin-inline-end: 4px;
  }
  ::placeholder {
    opacity: 1;
  }
  @supports (not (-webkit-appearance: -apple-pay-button))  or
    (contain-intrinsic-size: 1px) {
    ::placeholder {
      color: currentcolor;
      @supports (color: color-mix(in lab, red, red)) {
        color: color-mix(in oklab, currentcolor 50%, transparent);
      }
    }
  }
  textarea {
    resize: vertical;
  }
  ::-webkit-search-decoration {
    -webkit-appearance: none;
  }
  ::-webkit-date-and-time-value {
    min-height: 1lh;
    text-align: inherit;
  }
  ::-webkit-datetime-edit {
    display: inline-flex;
  }
  ::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
  }
  ::-webkit-datetime-edit,
  ::-webkit-datetime-edit-year-field,
  ::-webkit-datetime-edit-month-field,
  ::-webkit-datetime-edit-day-field,
  ::-webkit-datetime-edit-hour-field,
  ::-webkit-datetime-edit-minute-field,
  ::-webkit-datetime-edit-second-field,
  ::-webkit-datetime-edit-millisecond-field,
  ::-webkit-datetime-edit-meridiem-field {
    padding-block: 0;
  }
  ::-webkit-calendar-picker-indicator {
    line-height: 1;
  }
  :-moz-ui-invalid {
    box-shadow: none;
  }
  button,
  input:where([type="button"], [type="reset"], [type="submit"]),
  ::file-selector-button {
    appearance: button;
  }
  ::-webkit-inner-spin-button,
  ::-webkit-outer-spin-button {
    height: auto;
  }
  [hidden]:where(:not([hidden="until-found"])) {
    display: none !important;
  }
}
@layer utilities {
  .collapse {
    visibility: collapse;
  }
  .visible {
    visibility: visible;
  }
  .absolute {
    position: absolute;
  }
  .fixed {
    position: fixed;
  }
  .relative {
    position: relative;
  }
  .static {
    position: static;
  }
  .sticky {
    position: sticky;
  }
  .start {
    inset-inline-start: var(--spacing);
  }
  .end {
    inset-inline-end: var(--spacing);
  }
  .block {
    display: block;
  }
  .contents {
    display: contents;
  }
  .flex {
    display: flex;
  }
  .grid {
    display: grid;
  }
  .hidden {
    display: none;
  }
  .inline {
    display: inline;
  }
  .inline-block {
    display: inline-block;
  }
  .inline-flex {
    display: inline-flex;
  }
  .table {
    display: table;
  }
  .grow {
    flex-grow: 1;
  }
  .resize {
    resize: both;
  }
  .lowercase {
    text-transform: lowercase;
  }
  .uppercase {
    text-transform: uppercase;
  }
  .italic {
    font-style: italic;
  }
  .underline {
    text-decoration-line: underline;
  }
  .blur {
    --tw-blur: blur(8px);
    filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
  }
  .grayscale {
    --tw-grayscale: grayscale(100%);
    filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
  }
  .transition {
    transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, -webkit-backdrop-filter, backdrop-filter, display, content-visibility, overlay, pointer-events;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }
}
:root {
  --ink: #102238;
  --navy: #0b1f3a;
  --blue: #184c8c;
  --gold: #c6a15b;
  --ivory: #f5f1e8;
  --red: #a72e2e;
  --cream: #faf7f1;
  --muted: #667587;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Noto Sans SC","Microsoft YaHei","PingFang SC",Arial,sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
button,input {
  font: inherit;
}
button {
  color: inherit;
}
.shell {
  width: min(1180px,calc(100% - 48px));
  margin: 0 auto;
}
.finance-site {
  --brand: var(--blue);
  --brand-dark: var(--navy);
  --accent: var(--gold);
  --surface: #f3f6fa;
  overflow: hidden;
}
.finance-site.growth {
  --brand: var(--red);
  --brand-dark: #651d1d;
  --accent: #e0a13b;
  --surface: #faf4ec;
}
.utility-bar {
  background: var(--brand-dark);
  color: rgba(255,255,255,.72);
  font-size: 12px;
  letter-spacing: .06em;
}
.utility-inner {
  height: 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.utility-actions {
  display: flex;
  gap: 24px;
  align-items: center;
}
.utility-actions>a:hover {
  color: #fff;
}
.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  color: rgba(255,255,255,.55);
}
.lang-switch i {
  width: 1px;
  height: 10px;
  background: rgba(255,255,255,.3);
}
.lang-switch .active {
  color: #fff;
  font-weight: 700;
}
.site-header {
  height: 82px;
  border-bottom: 1px solid rgba(16,34,56,.1);
  background: rgba(255,255,255,.97);
  position: relative;
  z-index: 10;
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 34px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
}
.brand-mark {
  width: 56px;
  height: 46px;
  display: grid;
  place-items: center;
  padding: 2px;
  background: #fff;
  border: 1px solid #dbe1e8;
  overflow: hidden;
}
.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand-mark,.panel-logo,.about-seal,.admin-brand-logo {
  --registered-size: 7px;
  position: relative;
}
.brand-mark::after,.panel-logo::after,.about-seal::after,.admin-brand-logo::after {
  content: "®";
  position: absolute;
  z-index: 3;
  top: 24%;
  right: 7%;
  color: #050505;
  font: 700 var(--registered-size)/1 Arial,"Helvetica Neue",sans-serif;
  pointer-events: none;
}
.brand strong,.brand small {
  display: block;
}
.brand strong {
  font-family: "Noto Serif SC","SimSun",serif;
  font-size: 19px;
  letter-spacing: .04em;
}
.brand small {
  color: #718096;
  font-size: 8px;
  letter-spacing: .12em;
  margin-top: 4px;
  text-transform: uppercase;
}
nav {
  display: flex;
  gap: 28px;
  font-size: 14px;
}
nav a {
  position: relative;
  padding: 30px 0;
}
nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 21px;
  height: 2px;
  background: var(--brand);
  transition: .25s;
}
nav a:hover::after {
  right: 0;
}
.header-cta {
  background: var(--brand);
  color: #fff;
  padding: 13px 17px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 2px;
}
.header-cta span,.button span,.submit-button span {
  margin-left: 10px;
}
.hero {
  min-height: 700px;
  color: #fff;
  background: var(--brand-dark);
  position: relative;
}
.growth .hero {
  background: #7f2523;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 76% 25%,rgba(49,103,168,.35),transparent 30%),linear-gradient(120deg,transparent 52%,rgba(255,255,255,.035) 52%);
}
.growth .hero::before {
  background: radial-gradient(circle at 75% 20%,rgba(224,161,59,.22),transparent 32%),linear-gradient(115deg,transparent 55%,rgba(255,255,255,.05) 55%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .11;
  background-image: linear-gradient(rgba(255,255,255,.3) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.3) 1px,transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg,transparent,black 65%);
}
.hero-inner {
  min-height: 584px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.eyebrow,.section-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 22px;
}
.hero h1 {
  font-family: "Noto Serif SC","SimSun",serif;
  font-size: clamp(44px,5.2vw,72px);
  line-height: 1.16;
  letter-spacing: -.035em;
  margin: 0;
  font-weight: 700;
}
.hero h1 span {
  display: block;
}
.hero-desc {
  max-width: 620px;
  font-size: 17px;
  line-height: 1.9;
  color: rgba(255,255,255,.7);
  margin: 28px 0 34px;
}
.hero-actions {
  display: flex;
  gap: 13px;
}
.button {
  padding: 15px 22px;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,.42);
}
.button.primary {
  background: #fff;
  color: var(--brand-dark);
  border-color: #fff;
}
.growth .button.primary {
  color: var(--red);
}
.button.ghost:hover {
  background: rgba(255,255,255,.08);
}
.hero-panel {
  height: 430px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.055);
  backdrop-filter: blur(4px);
  padding: 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 30px 30px 0 rgba(0,0,0,.12);
}
.hero-panel::before {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  top: -5px;
  left: -5px;
  background: var(--accent);
  box-shadow: 411px 0 0 var(--accent),0 421px 0 var(--accent),411px 421px 0 var(--accent);
}
.panel-top {
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,.5);
  font-size: 8px;
  letter-spacing: .18em;
}
.panel-logo {
  --registered-size: 12px;
  position: relative;
  width: 170px;
  height: 170px;
  margin: 28px 0 14px;
  padding: 12px;
  background: #fff;
  border: 1px solid rgba(255,255,255,.28);
}
.panel-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.panel-title small,.panel-title strong {
  display: block;
}
.panel-title small {
  font-size: 8px;
  letter-spacing: .22em;
  color: var(--accent);
}
.panel-title strong {
  font-family: "Noto Serif SC","SimSun",serif;
  font-size: 22px;
  margin-top: 8px;
}
.panel-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: auto;
  border-top: 1px solid rgba(255,255,255,.14);
  padding-top: 18px;
}
.panel-services span {
  font-size: 11px;
  color: rgba(255,255,255,.72);
}
.panel-services b {
  font-size: 8px;
  color: var(--accent);
  margin-right: 8px;
}
.trust-strip {
  height: 116px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border-top: 1px solid rgba(255,255,255,.14);
}
.trust-strip div {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  border-right: 1px solid rgba(255,255,255,.14);
  padding-left: 24px;
}
.trust-strip div:first-child {
  border-left: 1px solid rgba(255,255,255,.14);
}
.trust-strip span {
  color: var(--accent);
  font: italic 18px Georgia,serif;
}
.section {
  padding: 112px 0;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 50px;
}
.section-head h2,.about-copy h2,.consult-section h2 {
  font-family: "Noto Serif SC","SimSun",serif;
  font-size: clamp(34px,4vw,48px);
  line-height: 1.25;
  letter-spacing: -.035em;
  margin: 0;
}
.section-head>p {
  width: 460px;
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}
.services {
  background: #fff;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border-top: 1px solid #dbe1e8;
  border-left: 1px solid #dbe1e8;
}
.service-card {
  min-height: 220px;
  padding: 26px;
  border-right: 1px solid #dbe1e8;
  border-bottom: 1px solid #dbe1e8;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: .25s;
}
.service-card:hover {
  transform: translateY(-4px);
  background: var(--brand-dark);
  color: #fff;
  box-shadow: 0 16px 30px rgba(12,31,56,.12);
}
.service-card:focus-visible {
  z-index: 2;
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}
.growth .service-card:hover {
  background: var(--red);
}
.service-index {
  font: italic 15px Georgia,serif;
  color: var(--brand);
  margin-bottom: auto;
}
.service-card:hover .service-index,.service-card:hover p {
  color: rgba(255,255,255,.64);
}
.service-card h3 {
  font-size: 18px;
  margin: 0 0 10px;
}
.service-card p {
  font-size: 13px;
  line-height: 1.75;
  color: var(--muted);
  margin: 0;
}
.card-arrow {
  position: absolute;
  top: 23px;
  right: 25px;
  color: #9aa6b3;
}
.service-open {
  margin-top: 18px;
  color: var(--brand);
  font-size: 11px;
  font-weight: 800;
  opacity: 0;
  transform: translateY(5px);
  transition: .25s;
}
.service-card:hover .service-open,.service-card:focus-visible .service-open {
  color: var(--accent);
  opacity: 1;
  transform: none;
}
.process {
  background: var(--surface);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
}
.process-step {
  padding-right: 36px;
}
.process-step>span {
  font: italic 22px Georgia,serif;
  color: var(--brand);
}
.step-line {
  height: 1px;
  background: #ccd5df;
  margin: 22px 0 28px;
  position: relative;
}
.step-line::before {
  content: "";
  position: absolute;
  left: 0;
  top: -4px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brand);
}
.process-step h3 {
  margin: 0 0 12px;
  font-size: 18px;
}
.process-step p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 13px;
  margin: 0;
}
.insights {
  background: #fff;
}
.insights-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 16px;
  align-items: stretch;
}
.insight-module {
  min-width: 0;
  display: flex;
  flex-direction: column;
  border: 1px solid #dbe1e8;
  background: #fff;
}
.insight-module>header {
  min-height: 112px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 22px 18px 18px;
  border-bottom: 1px solid #dbe1e8;
}
.insight-module>header>span {
  flex: none;
  color: var(--brand);
  font: italic 19px Georgia,serif;
}
.module-heading-button {
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
  text-align: left;
}
.insight-module>header h3 {
  margin: 0 0 5px;
  font: 700 19px "Noto Serif SC","SimSun",serif;
}
.insight-module>header p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}
.module-heading-button:hover h3,.module-heading-button:focus-visible h3 {
  color: var(--brand);
}
.module-heading-button:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 5px;
}
.module-articles {
  display: grid;
  gap: 14px;
  padding-top: 14px;
}
.module-directory {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 8px 18px 18px;
}
.module-title-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.module-title-list li {
  border-bottom: 1px solid #e5eaf0;
}
.module-title-link {
  appearance: none;
  width: 100%;
  min-height: 76px;
  padding: 10px 0;
  border: 0;
  background: none;
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 9px;
  align-items: center;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}
.module-title-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 5px;
}
.directory-title-line {
  min-width: 0;
  display: flex;
  align-items: flex-start;
  gap: 7px;
}
.directory-title-line>b {
  flex: 1;
  min-width: 0;
  display: -webkit-box;
  overflow: hidden;
  font: 700 14px/1.45 "Noto Serif SC","SimSun",serif;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.directory-meta {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  white-space: normal;
  overflow-wrap: anywhere;
}
.content-type-badge {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  padding: 2px 5px;
  border-radius: 2px;
  font: normal 800 11px/1.4 Arial,"Microsoft YaHei",sans-serif;
  letter-spacing: .03em;
  vertical-align: middle;
}
.article-badge {
  background: #e5edf6;
  color: #21558b;
}
.video-badge {
  background: #f8e9c5;
  color: #825908;
}
.graphic-badge {
  background: #e2f0e6;
  color: #22673b;
}
.module-title-link time {
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}
.module-title-link:hover b,.module-title-link:focus-visible b {
  color: var(--brand);
}
.module-title-link:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}
.module-more-button {
  margin-top: auto;
  width: 100%;
  min-height: 42px;
  padding: 10px 0 0;
  border: 0;
  border-top: 1px solid #dbe1e8;
  background: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}
.module-more-button span {
  color: var(--accent);
  font-size: 17px;
}
.module-more-button:hover,.module-more-button:focus-visible {
  color: var(--brand-dark);
}
.module-more-button:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}
.article-card {
  min-height: 350px;
  padding: 32px;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  border-top: 3px solid transparent;
  transition: .25s;
}
.article-card:hover {
  border-color: var(--brand);
  transform: translateY(-4px);
}
.article-1 {
  background: var(--brand-dark);
  color: #fff;
}
.growth .article-1 {
  background: var(--red);
}
.article-meta {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--brand);
  font-weight: 800;
  letter-spacing: .08em;
}
.article-1 .article-meta {
  color: var(--accent);
}
.policy-number {
  width: max-content;
  max-width: 100%;
  margin-top: 18px;
  padding: 5px 8px;
  background: #e8edf2;
  color: #596979;
  font-size: 10px;
  line-height: 1.5;
}
.article-1 .policy-number {
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.78);
}
.article-card h3 {
  font-family: "Noto Serif SC","SimSun",serif;
  font-size: 24px;
  line-height: 1.45;
  margin: 54px 0 18px;
}
.article-card p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 13px;
  margin: 0 0 24px;
}
.article-1 p {
  color: rgba(255,255,255,.66);
}
.article-card a {
  margin-top: auto;
  font-size: 12px;
  font-weight: 800;
}
.article-card a span {
  margin-left: 8px;
  color: var(--brand);
}
.article-1 a span {
  color: var(--accent);
}
.media-video-card {
  overflow: hidden;
  border: 1px solid #dbe1e8;
  background: #f4f7fa;
}
.media-video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  background: #071528;
  object-fit: contain;
}
.media-video-card>div {
  padding: 16px 17px 18px;
}
.media-video-category {
  display: block;
  margin-bottom: 7px;
  color: var(--brand);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
}
.media-video-card h3 {
  margin: 0 0 8px;
  font: 700 16px/1.5 "Noto Serif SC","SimSun",serif;
}
.media-video-card p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.6;
}
.media-video-card a {
  display: inline-flex;
  gap: 6px;
  margin-top: 12px;
  color: var(--brand);
  font-size: 10px;
  font-weight: 800;
}
.media-video-card a span {
  color: var(--accent);
}
.module-title-link {
  grid-template-columns: 48px minmax(0,1fr);
}
.directory-date {
  align-self: stretch;
  min-width: 0;
  padding-right: 8px;
  border-right: 1px solid #cfd7e1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  white-space: nowrap;
}
.directory-date b {
  font: 500 22px/1 Georgia,"Times New Roman",serif;
}
.directory-date small {
  margin-top: 4px;
  color: var(--ink);
  font: 11px/1.2 Arial,sans-serif;
}
.module-title-copy {
  align-items: flex-start;
}
.module-title-copy>b {
  flex: 1;
}
.insight-full-list a,.insight-full-list button {
  grid-template-columns: 62px minmax(0,1fr);
}
.insight-full-list .directory-date {
  padding-right: 14px;
}
.insight-full-list .directory-date b {
  font-size: 26px;
}
.insight-full-list .directory-date small {
  font-size: 12px;
}
.insight-dialog[hidden],.insight-dialog-content[hidden],.insight-pagination[hidden],.insight-full-list li[hidden] {
  display: none;
}
.insight-dialog {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(3,16,34,.76);
  backdrop-filter: blur(4px);
}
.insight-dialog-panel {
  width: min(920px,100%);
  max-height: min(820px,calc(100vh - 56px));
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #fff;
  box-shadow: 0 28px 80px rgba(0,0,0,.34);
}
.insight-dialog-panel>header {
  flex: none;
  min-height: 102px;
  padding: 22px 26px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  color: #fff;
  background: var(--brand-dark);
}
.insight-dialog-panel>header>div {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 12px;
}
.insight-dialog-panel>header>div>span {
  grid-row: 1/3;
  color: var(--accent);
  font: italic 20px Georgia,serif;
}
.insight-dialog-panel>header h3 {
  margin: 0 0 5px;
  font: 700 23px "Noto Serif SC","SimSun",serif;
}
.insight-dialog-panel>header p {
  margin: 0;
  color: rgba(255,255,255,.64);
  font-size: 12px;
}
.insight-dialog-panel>header button {
  flex: none;
  min-width: 76px;
  min-height: 36px;
  padding: 0 10px;
  border: 1px solid rgba(255,255,255,.42);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #fff;
  cursor: pointer;
}
.insight-dialog-panel>header button span {
  color: var(--accent);
  font-size: 20px;
}
.insight-dialog-content {
  min-height: 0;
  overflow: auto;
  padding: 22px 26px;
}
.insight-full-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #dbe1e8;
}
.insight-full-list li {
  border-bottom: 1px solid #dbe1e8;
}
.insight-full-list a,.insight-full-list button {
  appearance: none;
  width: 100%;
  min-height: 68px;
  padding: 12px 8px;
  border: 0;
  background: none;
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 22px;
  align-items: center;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}
.insight-full-list a>span,.insight-full-list button>span {
  min-width: 0;
  display: grid;
  gap: 4px;
}
.insight-full-list b {
  font: 700 16px/1.5 "Noto Serif SC","SimSun",serif;
}
.insight-full-list small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}
.insight-full-list time {
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}
.insight-full-list a:hover b,.insight-full-list button:hover b,.insight-full-list a:focus-visible b,.insight-full-list button:focus-visible b {
  color: var(--brand);
}
.insight-full-list button[aria-pressed="true"] {
  background: #edf3f8;
}
.single-media-stage {
  margin-bottom: 20px;
  background: #eef3f7;
}
.media-stage-placeholder {
  min-height: 112px;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  color: var(--muted);
  font-size: 14px;
}
.single-media-stage article {
  display: grid;
  grid-template-columns: minmax(0,1.3fr) minmax(220px,.7fr);
}
.single-media-stage video {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  background: #071528;
  object-fit: contain;
}
.single-media-stage article>div {
  padding: 20px;
  align-self: center;
}
.single-media-stage h4 {
  margin: 0 0 10px;
  font: 700 19px/1.5 "Noto Serif SC","SimSun",serif;
}
.single-media-stage p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}
.media-source-note {
  display: block;
  margin-top: 16px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
}
.insight-pagination {
  flex: none;
  min-height: 62px;
  padding: 12px 26px;
  border-top: 1px solid #dbe1e8;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: #f5f7f9;
}
.insight-pagination button {
  min-width: 84px;
  min-height: 36px;
  border: 1px solid var(--brand);
  background: #fff;
  color: var(--brand);
  font-weight: 700;
  cursor: pointer;
}
.insight-pagination button:disabled {
  opacity: .36;
  cursor: not-allowed;
}
.insight-pagination span {
  color: var(--muted);
  font-size: 12px;
}
.insight-pagination b {
  color: var(--brand);
}
.insight-pagination i {
  font-style: normal;
}
.insight-dialog-open {
  overflow: hidden;
}
.about {
  background: var(--surface);
  padding: 0;
}
.about-grid {
  min-height: 720px;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
}
.about-art {
  background: var(--brand-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.growth .about-art {
  background: #6e201e;
}
.about-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.08) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.08) 1px,transparent 1px);
  background-size: 54px 54px;
}
.about-number {
  position: absolute;
  left: 44px;
  top: 36px;
  font: italic 20px Georgia,serif;
  color: var(--accent);
}
.about-word {
  position: absolute;
  left: 44px;
  bottom: 30px;
  font: 700 10px Arial;
  letter-spacing: .32em;
  color: rgba(255,255,255,.45);
}
.about-seal {
  --registered-size: 15px;
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%,-50%);
  width: 220px;
  height: 220px;
  padding: 18px;
  background: #fff;
  border: 1px solid rgba(255,255,255,.5);
  box-shadow: 0 18px 45px rgba(0,0,0,.18);
}
.about-seal img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.about-copy {
  padding: 70px 0 66px 72px;
  align-self: center;
}
.company-profile-copy {
  margin: 21px 0 22px;
}
.company-profile-copy p {
  line-height: 1.9;
  color: var(--muted);
  margin: 0;
}
.company-facts {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 11px;
}
.company-facts li {
  display: flex;
  gap: 10px;
  font-size: 12px;
  line-height: 1.65;
}
.company-facts li span {
  flex: none;
  color: var(--brand);
  font-weight: 800;
}
.growth .company-facts li span {
  color: var(--red);
}
.about-copy blockquote {
  margin: 25px 0;
  padding: 14px 18px;
  border-left: 3px solid var(--accent);
  background: #fff;
  color: var(--brand-dark);
  font: 700 13px/1.7 "Noto Serif SC","SimSun",serif;
  letter-spacing: .035em;
}
.growth .about-copy blockquote {
  color: var(--red);
}
.profile-principles {
  display: grid;
  gap: 12px;
}
.profile-principles article {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  padding-top: 15px;
  border-top: 1px solid #d7dee6;
}
.profile-principles article>span {
  color: var(--brand);
  font: italic 16px Georgia,serif;
}
.profile-principles h3 {
  margin: 0 0 7px;
  font-size: 14px;
}
.profile-principles p {
  margin: 3px 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}
.value-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.value-tags b {
  padding: 5px 9px;
  background: var(--brand-dark);
  color: #fff;
  font-size: 11px;
}
.growth .value-tags b {
  background: var(--red);
}
.consult-section {
  padding: 100px 0;
  color: #fff;
  background: var(--brand-dark);
  position: relative;
}
.growth .consult-section {
  background: #2a1716;
}
.consult-section::before {
  content: "GY";
  position: absolute;
  right: -50px;
  top: -70px;
  font: bold 320px Georgia,serif;
  color: rgba(255,255,255,.025);
}
.consult-grid {
  position: relative;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 90px;
}
.consult-grid>div>p:last-child {
  color: rgba(255,255,255,.62);
  line-height: 1.8;
}
.office-location-media {
  margin: 34px 0 0;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.055);
}
.office-location-gallery {
  position: relative;
  padding: 12px 12px 54px;
}
.office-location-image-wrap {
  appearance: none;
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 16/11;
  min-height: 0;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: #071528;
  color: inherit;
  cursor: zoom-in;
  text-align: left;
}
.office-location-image-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .55s ease,filter .55s ease;
}
.office-location-image-wrap.office-image-2 img {
  object-position: center;
}
.office-location-image-wrap.office-image-3 img {
  object-fit: contain;
  object-position: center;
}
.office-location-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,transparent 62%,rgba(3,14,28,.35));
  pointer-events: none;
}
.office-location-image-wrap:hover img {
  transform: scale(1.025);
  filter: contrast(1.04) saturate(1.04);
}
.office-location-image-wrap:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}
.office-location-image-wrap>span {
  position: absolute;
  z-index: 2;
  left: 14px;
  top: 13px;
  padding: 6px 9px;
  background: rgba(7,21,40,.88);
  color: var(--accent);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .12em;
}
.office-location-image-wrap>b,.office-location-secondary b {
  position: absolute;
  z-index: 2;
  left: 14px;
  right: 14px;
  bottom: 12px;
  color: #fff;
  font-size: 11px;
  text-shadow: 0 2px 8px rgba(0,0,0,.85);
}
.office-gallery-controls {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 8px;
  display: grid;
  grid-template-columns: 38px 1fr 38px;
  align-items: center;
  gap: 10px;
}
.office-gallery-controls>button {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.08);
  color: #fff;
  cursor: pointer;
  font-size: 18px;
}
.office-gallery-controls>button:hover,.office-gallery-controls>button:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
}
.office-gallery-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}
.office-gallery-dots button {
  width: 28px;
  height: 4px;
  border: 0;
  padding: 0;
  background: rgba(255,255,255,.28);
  cursor: pointer;
  transition: background .2s ease,width .2s ease;
}
.office-gallery-dots button.active {
  width: 42px;
  background: var(--accent);
}
.office-location-media figcaption {
  display: grid;
  gap: 5px;
  padding: 15px 17px 16px;
}
.office-location-media figcaption strong {
  color: #fff;
  font: 700 16px "Noto Serif SC","SimSun",serif;
}
.office-location-media figcaption small {
  color: rgba(255,255,255,.62);
  font-size: 10px;
  line-height: 1.6;
}
.office-location-media figcaption em {
  color: rgba(255,255,255,.38);
  font-size: 9px;
  font-style: normal;
  line-height: 1.6;
}
.office-location-media figcaption a {
  width: max-content;
  margin-top: 3px;
  color: rgba(255,255,255,.48);
  font-size: 9px;
}
.office-location-media figcaption a:hover {
  color: #fff;
}
body.lightbox-open {
  overflow: hidden;
}
.office-lightbox {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 54px 24px 28px;
  background: rgba(2,10,21,.94);
  backdrop-filter: blur(6px);
}
.office-lightbox-close {
  position: fixed;
  z-index: 1002;
  top: 18px;
  right: 22px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 50%;
  background: rgba(7,21,40,.82);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}
.office-lightbox-content {
  display: grid;
  place-items: center;
  gap: 12px;
  max-width: min(1180px,94vw);
  max-height: calc(100vh - 82px);
}
.office-lightbox-content img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: calc(100vh - 120px);
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
  box-shadow: 0 22px 70px rgba(0,0,0,.55);
}
.office-lightbox-content p {
  margin: 0;
  color: #fff;
  font-size: 13px;
  letter-spacing: .06em;
}
form {
  background: #fff;
  color: var(--ink);
  padding: 32px;
  box-shadow: 18px 18px 0 rgba(0,0,0,.16);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-row label span,fieldset legend {
  display: block;
  font-size: 11px;
  color: #617084;
  margin-bottom: 8px;
}
input {
  width: 100%;
  border: 1px solid #d7dee6;
  padding: 12px;
  outline: none;
  border-radius: 0;
}
input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 2px var(--brand);
  @supports (color: color-mix(in lab, red, red)) {
    box-shadow: 0 0 0 2px color-mix(in srgb,var(--brand) 15%,transparent);
  }
}
fieldset {
  border: 0;
  padding: 0;
  margin: 22px 0;
}
.service-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.service-chips button {
  border: 1px solid #d7dee6;
  background: #fff;
  padding: 8px 10px;
  font-size: 11px;
  cursor: pointer;
}
.service-chips button:hover,.service-chips button.selected {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
}
.submit-button {
  width: 100%;
  border: 0;
  background: var(--brand);
  color: #fff;
  padding: 14px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}
.submit-button:disabled {
  opacity: .45;
  cursor: not-allowed;
}
.privacy-note {
  color: #85909e;
  display: block;
  margin-top: 10px;
  font-size: 10px;
}
.direct-call-card {
  background: #fff;
  color: var(--ink);
  padding: 38px;
  box-shadow: 18px 18px 0 rgba(0,0,0,.16);
  border-top: 4px solid var(--accent);
}
.call-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #5e6f81;
  font-size: 12px;
}
.call-card-top>span {
  color: var(--brand);
  font: italic 13px Georgia,serif;
  letter-spacing: .18em;
}
.call-card-top>b {
  font-weight: 700;
}
.contact-card-main {
  display: grid;
  grid-template-columns: minmax(0,1fr) 188px;
  gap: 30px;
  align-items: start;
}
.call-number {
  display: block;
  margin: 34px 0 12px;
  color: var(--brand-dark);
  font: 700 clamp(36px,4.5vw,58px)/1 Georgia,"Times New Roman",serif;
  letter-spacing: .025em;
}
.growth .call-number {
  color: var(--red);
}
.contact-card-info>p {
  margin: 0 0 22px;
  color: #728092;
  font-size: 12px;
  line-height: 1.7;
}
.contact-details {
  margin: 0 0 26px;
  padding: 18px 0;
  border-top: 1px solid #dfe5eb;
  border-bottom: 1px solid #dfe5eb;
  display: grid;
  gap: 11px;
}
.contact-details>div {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 14px;
  font-size: 12px;
  line-height: 1.6;
}
.contact-details dt {
  color: #7a8795;
}
.contact-details dd {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}
.contact-details dd a {
  color: var(--brand);
}
.address-with-navigation {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
}
.contact-details dd .amap-navigation {
  display: inline-flex;
  flex: none;
  align-items: center;
  padding: 4px 8px;
  border: 1px solid #b9c9dc;
  color: var(--brand);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.4;
}
.contact-details dd .amap-navigation:hover {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
}
.call-actions {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}
.call-actions a,.call-actions button {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--brand);
  padding: 8px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  text-align: center;
}
.call-actions a {
  background: var(--brand);
  color: #fff;
}
.call-actions a.office-call {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}
.growth .call-actions a.office-call {
  background: var(--red);
  border-color: var(--red);
}
.call-actions button {
  background: #fff;
  color: var(--brand);
}
.call-actions a span {
  margin-left: 8px;
}
.wechat-contact {
  margin-top: 34px;
  padding: 12px;
  background: #f5f8f2;
  border: 1px solid #dce7d8;
  text-align: center;
}
.wechat-contact img {
  display: block;
  width: 100%;
  height: auto;
  background: #fff;
}
.wechat-contact strong {
  display: block;
  margin: 12px 0 4px;
  color: #178443;
  font-size: 14px;
}
.wechat-contact span {
  display: block;
  color: #748276;
  font-size: 10px;
  line-height: 1.55;
}
footer {
  background: #071528;
  color: rgba(255,255,255,.68);
}
.growth footer {
  background: #160b0b;
}
.footer-top {
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand {
  color: #fff;
}
.footer-top>p {
  font-family: "Noto Serif SC","SimSun",serif;
  font-size: 18px;
}
.footer-bottom {
  min-height: 122px;
  padding: 20px 0 52px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 10px;
  gap: 40px;
}
.footer-bottom p {
  margin: 0;
}
.footer-bottom p:last-child {
  max-width: 680px;
  text-align: right;
  line-height: 1.6;
}
.icp-footer {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 12px;
}
.icp-footer a {
  color: rgba(255,255,255,.76);
  text-decoration: none;
}
.icp-footer a:hover,.icp-footer a:focus-visible {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.footer-back-to-top {
  position: fixed;
  z-index: 1000;
  left: 50%;
  right: auto;
  bottom: 58px;
  width: max-content;
  min-height: 0;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transform: translateX(-50%);
}
.footer-back-to-top button {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 116px;
  min-height: 32px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.68);
  background: rgba(11,31,58,.52);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  font-family: inherit;
  line-height: 1.3;
  letter-spacing: .03em;
  white-space: nowrap;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 5px 14px rgba(0,0,0,.18);
  backdrop-filter: blur(4px);
  transition: border-color .2s ease,background .2s ease,transform .2s ease;
}
.growth .footer-back-to-top button {
  background: rgba(101,29,29,.52);
}
.footer-back-to-top button:hover,.footer-back-to-top button:focus-visible {
  background: rgba(22,55,95,.68);
  border-color: #fff;
  transform: translateY(-2px);
}
.growth .footer-back-to-top button:hover,.growth .footer-back-to-top button:focus-visible {
  background: rgba(138,43,40,.68);
}
.footer-back-to-top span {
  color: #d6a84d;
  font-size: 14px;
  line-height: 1;
}
.visitor-counter {
  display: block;
  margin-top: 5px;
  color: rgba(255,255,255,.82);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: .04em;
}
.design-index {
  min-height: 100vh;
  background: #f2efe8;
  position: relative;
  overflow: hidden;
  padding: 56px 0 90px;
}
.index-grid {
  position: absolute;
  inset: 0;
  opacity: .4;
  background-image: linear-gradient(#ded9cd 1px,transparent 1px),linear-gradient(90deg,#ded9cd 1px,transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom,black,transparent 78%);
}
.index-shell {
  width: min(1120px,calc(100% - 48px));
  margin: auto;
  position: relative;
}
.index-brand {
  display: flex;
  gap: 12px;
  align-items: center;
}
.index-brand>span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: #102943;
  color: #fff;
  font: bold 22px serif;
}
.index-brand strong,.index-brand small {
  display: block;
}
.index-brand strong {
  font-family: serif;
  font-size: 17px;
}
.index-brand small {
  font-size: 8px;
  letter-spacing: .16em;
  color: #7c7b78;
  margin-top: 3px;
}
.index-intro {
  display: grid;
  grid-template-columns: .45fr 1fr .7fr;
  gap: 40px;
  align-items: end;
  margin: 88px 0 58px;
}
.index-intro>p {
  color: #a72e2e;
  font-size: 11px;
  letter-spacing: .22em;
  font-weight: bold;
}
.index-intro h1 {
  margin: 0;
  font: 700 clamp(42px,5vw,67px)/1.16 serif;
  letter-spacing: -.04em;
}
.index-intro>div {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #71706c;
  font-size: 12px;
  border-left: 1px solid #c9c4b9;
  padding-left: 20px;
}
.direction-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.direction-card {
  background: #fff;
  box-shadow: 0 18px 45px rgba(47,42,32,.08);
  transition: .3s;
}
.direction-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 55px rgba(47,42,32,.14);
}
.direction-preview {
  height: 300px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.direction-preview::after {
  content: "GY";
  position: absolute;
  right: -24px;
  bottom: -70px;
  font: bold 220px Georgia;
  color: rgba(255,255,255,.06);
}
.direction-a .direction-preview {
  background: #0b1f3a;
  color: #fff;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px);
  background-size: 42px 42px;
}
.direction-b .direction-preview {
  background: #8e2825;
  color: #fff;
  background-image: radial-gradient(circle at 80% 15%,rgba(232,177,90,.28),transparent 33%);
}
.mini-brand {
  font-size: 10px;
  letter-spacing: .18em;
}
.direction-preview strong {
  margin: auto 0;
  font: 700 34px/1.35 serif;
  max-width: 330px;
  position: relative;
  z-index: 1;
}
.mini-button {
  width: max-content;
  border: 1px solid rgba(255,255,255,.5);
  padding: 9px 14px;
  font-size: 10px;
}
.direction-meta {
  padding: 28px 30px 32px;
}
.direction-meta>span {
  color: #9a742e;
  font: italic 11px Georgia;
  letter-spacing: .12em;
}
.direction-b .direction-meta>span {
  color: #a72e2e;
}
.direction-meta h2 {
  margin: 9px 0;
  font: 700 24px serif;
}
.direction-meta p {
  color: #757b82;
  font-size: 13px;
  line-height: 1.7;
  min-height: 44px;
}
.direction-meta b {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
  font-size: 12px;
}
.direction-meta i {
  font-style: normal;
  font-size: 17px;
}
@media (max-width: 980px) {
  nav {
    display: none;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 80px 0 60px;
  }
  .hero-panel {
    display: none;
  }
  .trust-strip {
    grid-template-columns: 1fr 1fr;
    height: auto;
  }
  .trust-strip div {
    min-height: 70px;
    border-bottom: 1px solid rgba(255,255,255,.14);
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .insights-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
  .article-card {
    min-height: 280px;
  }
  .about-copy {
    padding-left: 50px;
  }
  .consult-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .contact-card-main {
    grid-template-columns: minmax(0,1fr) 220px;
  }
  .index-intro {
    grid-template-columns: 1fr;
    gap: 18px;
    margin: 65px 0 40px;
  }
  .index-intro>div {
    display: none;
  }
}
@media (max-width: 680px) {
  .shell,.index-shell {
    width: min(100% - 32px,1180px);
  }
  .utility-inner>span {
    display: none;
  }
  .utility-inner {
    justify-content: flex-end;
  }
  .utility-actions {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }
  .utility-actions>a:first-child {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    font-size: 11px;
    white-space: nowrap;
  }
  .utility-actions .lang-switch {
    display: flex;
    min-height: 40px;
    align-items: center;
    padding: 0 4px;
    color: rgba(255,255,255,.72);
  }
  .site-header {
    height: 68px;
  }
  .brand small {
    display: none;
  }
  .brand strong {
    font-size: 16px;
  }
  .brand-mark {
    width: 48px;
    height: 40px;
  }
  .header-cta {
    padding: 10px;
    font-size: 11px;
  }
  .hero-inner {
    min-height: 570px;
    padding-top: 65px;
  }
  .hero h1 {
    font-size: 43px;
  }
  .hero-desc {
    font-size: 15px;
  }
  .trust-strip {
    grid-template-columns: 1fr 1fr;
  }
  .trust-strip div {
    padding: 14px 8px;
    font-size: 11px;
    gap: 7px;
  }
  .section {
    padding: 76px 0;
  }
  .section-head {
    display: block;
    margin-bottom: 34px;
  }
  .section-head>p {
    width: auto;
    margin-top: 16px;
  }
  .section-head h2,.about-copy h2,.consult-section h2 {
    font-size: 34px;
  }
  .services-grid,.insights-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    min-height: 180px;
  }
  .insight-module>header {
    min-height: 0;
  }
  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 12px;
  }
  .process-step {
    padding-right: 14px;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-art {
    min-height: 370px;
  }
  .about-copy {
    padding: 60px 0;
  }
  .about-copy ul {
    grid-template-columns: 1fr;
  }
  .consult-section {
    padding: 76px 0;
  }
  .consult-grid {
    gap: 34px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-card-main {
    grid-template-columns: 1fr;
  }
  .call-number {
    font-size: 34px;
  }
  .call-actions {
    grid-template-columns: 1fr;
  }
  .direct-call-card {
    padding: 28px 22px;
  }
  .wechat-contact {
    width: min(100%,240px);
    margin: 8px auto 0;
  }
  .footer-top {
    padding: 35px 0;
    display: block;
  }
  .footer-top>p {
    margin-top: 24px;
  }
  .footer-bottom {
    min-height: 152px;
    padding: 24px 0 64px;
    display: block;
  }
  .footer-bottom p:last-child {
    margin-top: 16px;
    text-align: left;
  }
  .footer-back-to-top {
    left: 50%;
    right: auto;
    bottom: max(66px,calc(env(safe-area-inset-bottom) + 14px));
    width: max-content;
    transform: translateX(-50%);
  }
  .footer-back-to-top button {
    width: auto;
    min-width: 96px;
    min-height: 28px;
    padding: 0 8px;
    gap: 5px;
    font-size: 10px;
    line-height: 1.2;
    box-shadow: 0 4px 12px rgba(0,0,0,.2);
  }
  .footer-back-to-top span {
    font-size: 12px;
  }
  .direction-grid {
    grid-template-columns: 1fr;
  }
  .direction-preview {
    height: 250px;
  }
  .design-index {
    padding-top: 32px;
  }
  .index-intro {
    margin-top: 55px;
  }
  .index-intro h1 {
    font-size: 44px;
  }
}
@media (max-width:680px) {
  .module-directory {
    padding-inline: 16px;
  }
  .module-title-link {
    min-height: 56px;
  }
  .content-type-badge {
    min-width: 32px;
  }
  .insight-dialog {
    padding: 0;
    place-items: stretch;
  }
  .insight-dialog-panel {
    width: 100%;
    height: 100dvh;
    max-height: none;
  }
  .insight-dialog-panel>header {
    min-height: 88px;
    padding: 18px 16px;
  }
  .insight-dialog-panel>header h3 {
    font-size: 20px;
  }
  .insight-dialog-panel>header p {
    max-width: 210px;
    font-size: 10px;
  }
  .insight-dialog-panel>header button {
    min-width: 64px;
  }
  .insight-dialog-content {
    padding: 16px;
  }
  .single-media-stage article {
    grid-template-columns: 1fr;
  }
  .single-media-stage article>div {
    padding: 15px 16px;
  }
  .single-media-stage h4 {
    font-size: 16px;
  }
  .insight-full-list a,.insight-full-list button {
    min-height: 64px;
    padding: 10px 4px;
    gap: 10px;
  }
  .insight-full-list b {
    font-size: 14px;
  }
  .insight-full-list time {
    font-size: 10px;
  }
  .insight-pagination {
    min-height: 58px;
    padding: 10px 14px;
    gap: 12px;
  }
  .insight-pagination button {
    min-width: 70px;
  }
}
.module-title-link .directory-date {
  color: var(--brand);
}
.single-media-stage .graphic-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.single-media-stage .media-graphic {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: none;
  height: auto;
  margin: 0 auto;
  background: #fff;
  object-fit: contain;
}
.single-media-stage .graphic-stage>div {
  width: 100%;
  align-self: stretch;
}
@media (prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}
.admin-shell {
  min-height: 100vh;
  background: #f3f6fa;
  color: var(--ink);
}
.admin-header {
  height: 76px;
  padding: 0 max(24px,calc((100vw - 1180px)/2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-bottom: 1px solid #dbe1e8;
}
.admin-header>div {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #657487;
  font-size: 12px;
}
.admin-header>div a {
  color: var(--blue);
  font-weight: 700;
}
.admin-brand {
  display: flex;
  align-items: center;
  gap: 11px;
}
.admin-brand-logo,.admin-brand-mark {
  width: 48px;
  height: 40px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid #dbe1e8;
  overflow: hidden;
}
.admin-brand-logo {
  --registered-size: 6px;
  position: relative;
}
.admin-brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.admin-brand-mark {
  background: var(--navy);
  color: #fff;
  border: 0;
  font: bold 21px serif;
}
.admin-brand strong,.admin-brand small {
  display: block;
}
.admin-brand strong {
  font: 700 17px "Noto Serif SC","SimSun",serif;
}
.admin-brand small {
  margin-top: 3px;
  font-size: 8px;
  letter-spacing: .16em;
  color: #7c8997;
}
.admin-intro {
  width: min(1180px,calc(100% - 48px));
  margin: 0 auto;
  padding: 54px 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.admin-intro p {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .2em;
}
.admin-intro h1 {
  margin: 0;
  font: 700 40px serif;
}
.admin-intro>a {
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
}
.article-editor {
  width: min(1180px,calc(100% - 48px));
  margin: 0 auto;
  padding: 34px;
  box-shadow: none;
  border: 1px solid #dbe1e8;
}
.editor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.editor-grid label>span {
  display: block;
  margin-bottom: 8px;
  color: #58697c;
  font-size: 12px;
  font-weight: 700;
}
.editor-grid input,.editor-grid select,.editor-grid textarea {
  width: 100%;
  border: 1px solid #d5dde6;
  background: #fff;
  padding: 12px 13px;
  border-radius: 2px;
  outline: none;
  font: inherit;
}
.editor-grid textarea {
  resize: vertical;
  line-height: 1.75;
}
.editor-grid input:focus,.editor-grid select:focus,.editor-grid textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(24,76,140,.1);
}
.editor-wide {
  grid-column: 1/-1;
}
.english-fields {
  margin-top: 24px;
  border-top: 1px solid #e0e6ec;
  padding-top: 22px;
}
.english-fields summary {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  margin-bottom: 20px;
}
.editor-options {
  display: flex;
  gap: 28px;
  margin: 25px 0;
}
.editor-options label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}
.editor-options input {
  width: 16px;
  height: 16px;
}
.editor-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.editor-actions button,.admin-article-list button {
  border: 1px solid #cdd7e1;
  padding: 11px 18px;
  background: #fff;
  cursor: pointer;
  font-weight: 700;
}
.editor-actions .admin-primary {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.editor-actions button:disabled {
  opacity: .55;
  cursor: wait;
}
.editor-actions p {
  margin: 0 0 0 8px;
  color: #267143;
  font-size: 13px;
  font-weight: 700;
}
.article-list-section {
  width: min(1180px,calc(100% - 48px));
  margin: 0 auto;
  padding: 58px 0 90px;
}
.list-heading {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
}
.list-heading h2 {
  margin: 0;
  font: 700 28px serif;
}
.list-heading span {
  color: #7e8a98;
  font-size: 12px;
}
.admin-article-list {
  display: grid;
  gap: 12px;
}
.admin-article-list article {
  background: #fff;
  border: 1px solid #dbe1e8;
  padding: 24px 26px;
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 30px;
}
.admin-article-meta {
  grid-column: 1;
  display: flex;
  gap: 12px;
  align-items: center;
  color: #748295;
  font-size: 11px;
}
.admin-article-meta span {
  color: var(--blue);
  font-weight: 800;
}
.admin-article-meta b {
  background: #eee5d2;
  color: #856526;
  padding: 3px 7px;
}
.admin-article-meta b.draft {
  background: #e8edf2;
  color: #596979;
}
.admin-article-list h3 {
  grid-column: 1;
  margin: 10px 0 5px;
  font: 700 20px serif;
}
.admin-article-list p {
  grid-column: 1;
  margin: 0;
  color: #6f7d8c;
  font-size: 12px;
  line-height: 1.6;
}
.admin-article-list article>div:last-child {
  grid-column: 2;
  grid-row: 1/4;
  align-self: center;
  display: flex;
  gap: 8px;
}
.admin-article-list button {
  padding: 8px 13px;
  font-size: 12px;
}
.admin-article-list button.danger {
  color: #a72e2e;
}
.admin-empty {
  background: #fff;
  border: 1px dashed #cbd5df;
  padding: 42px;
  text-align: center;
  color: #758394;
}
.admin-auth-message {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: #f3f6fa;
  text-align: center;
}
.admin-auth-message>div {
  background: #fff;
  border: 1px solid #dbe1e8;
  padding: 55px;
}
.admin-auth-message .admin-brand-mark {
  margin: 0 auto 24px;
}
.admin-auth-message h1 {
  font: 700 28px serif;
}
.admin-auth-message p {
  color: #6b7989;
}
.admin-auth-message a {
  display: inline-block;
  margin-top: 18px;
  background: var(--blue);
  color: #fff;
  padding: 12px 18px;
  font-size: 13px;
}
.article-page {
  min-height: 100vh;
  background: #f6f3ec;
}
.article-site-header {
  min-height: 82px;
  padding: 14px max(24px,calc((100vw - 1060px)/2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #fff;
  border-bottom: 1px solid #dedbd3;
}
.article-header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}
.article-header-actions .article-language-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 82px;
  padding: 10px 14px;
  border: 1px solid var(--blue);
  background: var(--blue);
  color: #fff;
  letter-spacing: .05em;
}
.article-header-actions .article-language-switch:hover {
  background: var(--navy);
  border-color: var(--navy);
}
.article-detail {
  width: min(860px,calc(100% - 48px));
  margin: 0 auto;
  padding: 84px 0 110px;
}
.article-detail-meta {
  display: flex;
  gap: 15px;
  align-items: center;
  color: #7a8693;
  font-size: 12px;
}
.article-detail-meta span {
  color: var(--blue);
  font-weight: 800;
}
.article-detail-meta b {
  background: #eee3ca;
  color: #81601f;
  padding: 4px 8px;
}
.article-detail h1 {
  margin: 24px 0;
  font: 700 clamp(36px,5vw,58px)/1.3 "Noto Serif SC","SimSun",serif;
  letter-spacing: -.025em;
}
.article-lead {
  margin: 0 0 42px;
  border-left: 4px solid var(--gold);
  padding: 18px 24px;
  background: #fff;
  color: #5f6e7d;
  font-size: 16px;
  line-height: 1.9;
}
.article-body {
  font-size: 17px;
  line-height: 2;
  color: #26384c;
}
.article-body p {
  margin: 0 0 24px;
}
.article-detail aside {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid #d8d4ca;
  color: #87909a;
  font-size: 12px;
  line-height: 1.7;
}
.policy-documents {
  margin-top: 54px;
  padding-top: 30px;
  border-top: 1px solid #d8d4ca;
}
.policy-documents-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 20px;
}
.policy-documents-heading span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
}
.policy-documents-heading h2 {
  margin: 7px 0 0;
  font: 700 30px/1.3 "Noto Serif SC","SimSun",serif;
}
.policy-documents-heading p {
  max-width: 440px;
  margin: 0;
  color: #68778a;
  font-size: 13px;
  line-height: 1.75;
}
.policy-document {
  margin: 0 0 14px;
  border: 1px solid #d8d4ca;
  background: #fff;
}
.policy-document summary {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 17px 20px;
  color: var(--navy);
  font-weight: 850;
  cursor: pointer;
  list-style: none;
}
.policy-document summary::-webkit-details-marker {
  display: none;
}
.policy-document summary span {
  color: #7b8794;
  font-size: 12px;
  font-weight: 700;
}
.policy-document-frame-wrap {
  border-top: 1px solid #e1ddd4;
  background: #edf1f5;
}
.policy-document-frame {
  display: block;
  width: 100%;
  height: 72vh;
  min-height: 620px;
  border: 0;
  background: #fff;
}
.policy-document-download {
  display: inline-block;
  margin: 14px 20px 18px;
  padding: 9px 15px;
  color: #fff;
  background: var(--blue);
  font-size: 13px;
  font-weight: 800;
}
.service-detail-page {
  min-height: 100vh;
  background: #f4f1e9;
  color: var(--ink);
}
.service-detail-header {
  min-height: 82px;
  padding: 14px max(24px,calc((100vw - 1120px)/2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: #fff;
  border-bottom: 1px solid #d9dfe6;
}
.service-detail-header>div {
  display: flex;
  gap: 22px;
  align-items: center;
  font-size: 12px;
  font-weight: 800;
  color: var(--blue);
}
.service-detail-header>div a:last-child {
  padding: 9px 12px;
  border: 1px solid #cbd5df;
}
.service-detail-shell {
  width: min(960px,calc(100% - 48px));
  margin: 0 auto;
}
.service-detail-hero {
  padding: 82px 0 70px;
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.service-detail-hero::before {
  content: "GY";
  position: absolute;
  right: -40px;
  bottom: -120px;
  color: rgba(255,255,255,.035);
  font: 700 360px Georgia,serif;
}
.service-detail-hero .service-detail-shell {
  position: relative;
}
.service-detail-number {
  position: absolute;
  right: 0;
  top: -10px;
  color: var(--gold);
  font: italic 30px Georgia,serif;
}
.service-detail-hero p {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .2em;
}
.service-detail-hero h1 {
  margin: 0;
  font: 700 clamp(46px,7vw,76px)/1.15 "Noto Serif SC","SimSun",serif;
}
.service-detail-hero h2 {
  margin: 16px 0 28px;
  color: rgba(255,255,255,.82);
  font: 400 20px/1.6 "Noto Serif SC","SimSun",serif;
}
.service-detail-intro {
  max-width: 740px;
  padding: 19px 24px;
  border-left: 3px solid var(--gold);
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.72);
  font-size: 15px;
  line-height: 1.9;
}
.service-detail-content {
  padding: 70px 0 90px;
}
.service-detail-section {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 54px;
  padding: 36px 0;
  border-bottom: 1px solid #d7d4cb;
}
.service-detail-section-title {
  display: flex;
  gap: 18px;
  align-items: baseline;
}
.service-detail-section-title span {
  color: var(--blue);
  font: italic 15px Georgia,serif;
}
.service-detail-section-title h2 {
  margin: 0;
  font: 700 25px "Noto Serif SC","SimSun",serif;
}
.service-detail-section ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.service-detail-section li {
  display: flex;
  gap: 11px;
  color: #46576a;
  font-size: 14px;
  line-height: 1.75;
}
.service-detail-section li>span {
  flex: none;
  color: var(--blue);
  font-weight: 900;
}
.service-detail-section.emphasis {
  margin-top: 22px;
  padding: 34px;
  grid-template-columns: 186px 1fr;
  background: #fff;
  border: 1px solid #ded8ca;
}
.service-detail-section.emphasis ul {
  grid-template-columns: 1fr;
}
.service-detail-section.emphasis li>span {
  color: #a72e2e;
}
.service-process-section ol {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-process-section li {
  display: block;
  padding: 19px 15px;
  min-height: 126px;
  border-top: 3px solid var(--blue);
  background: #fff;
}
.service-process-section li b {
  display: block;
  margin-bottom: 20px;
  color: var(--gold);
  font: italic 13px Georgia,serif;
}
.service-process-section li span {
  color: #33465b;
  font-size: 13px;
  line-height: 1.7;
}
.service-detail-consult {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  margin-top: 62px;
  padding: 42px;
  background: var(--navy);
  color: #fff;
  box-shadow: 15px 15px 0 #d9d2c2;
}
.service-detail-consult>div:first-child>span {
  color: var(--gold);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .18em;
}
.service-detail-consult h2 {
  margin: 10px 0;
  font: 700 28px "Noto Serif SC","SimSun",serif;
}
.service-detail-consult p {
  margin: 0;
  color: rgba(255,255,255,.62);
  font-size: 13px;
  line-height: 1.75;
}
.service-detail-consult>div:last-child {
  display: grid;
  gap: 10px;
}
.service-detail-consult a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 16px;
  border: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.76);
  font-size: 12px;
}
.service-detail-consult a:first-child {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}
.service-detail-consult a b {
  font: 700 19px Georgia,serif;
}
.service-detail-disclaimer {
  margin: 38px 0 0;
  color: #7a8591;
  font-size: 11px;
  line-height: 1.7;
  text-align: center;
}
@media (max-width:680px) {
  .office-location-gallery {
    padding: 8px 8px 50px;
  }
  .office-location-image-wrap {
    aspect-ratio: 4/3;
  }
  .office-gallery-controls {
    left: 8px;
    right: 8px;
    bottom: 6px;
  }
  .office-lightbox {
    padding: 58px 10px 20px;
  }
  .admin-header {
    padding: 0 16px;
  }
  .admin-header>div>span {
    display: none;
  }
  .admin-intro,.article-editor,.article-list-section {
    width: calc(100% - 32px);
  }
  .admin-intro {
    display: block;
    padding-top: 38px;
  }
  .admin-intro>a {
    display: inline-block;
    margin-top: 18px;
  }
  .admin-intro h1 {
    font-size: 34px;
  }
  .article-editor {
    padding: 22px;
  }
  .editor-grid {
    grid-template-columns: 1fr;
  }
  .editor-wide {
    grid-column: auto;
  }
  .editor-options {
    flex-direction: column;
    gap: 12px;
  }
  .editor-actions {
    flex-wrap: wrap;
  }
  .editor-actions p {
    width: 100%;
    margin: 6px 0 0;
  }
  .admin-article-list article {
    display: block;
  }
  .admin-article-list article>div:last-child {
    margin-top: 18px;
  }
  .article-site-header {
    padding: 12px 16px;
  }
  .article-site-header .admin-brand small {
    display: none;
  }
  .article-header-actions {
    gap: 8px;
  }
  .article-header-actions>a:first-child {
    display: none;
  }
  .article-header-actions .article-language-switch {
    min-width: 76px;
    padding: 9px 10px;
  }
  .article-detail {
    width: calc(100% - 32px);
    padding-top: 55px;
  }
  .article-detail h1 {
    font-size: 34px;
  }
  .policy-documents-heading {
    align-items: flex-start;
    flex-direction: column;
  }
  .policy-document summary {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
  .policy-document-frame {
    height: 68vh;
    min-height: 480px;
  }
  .service-open {
    opacity: 1;
    transform: none;
  }
  .service-detail-header {
    padding: 12px 16px;
  }
  .service-detail-header .admin-brand small {
    display: none;
  }
  .service-detail-header>div {
    gap: 8px;
  }
  .service-detail-header>div a:first-child {
    display: none;
  }
  .service-detail-shell {
    width: calc(100% - 32px);
  }
  .service-detail-hero {
    padding: 58px 0 52px;
  }
  .service-detail-number {
    font-size: 22px;
  }
  .service-detail-hero h1 {
    font-size: 44px;
  }
  .service-detail-hero h2 {
    font-size: 17px;
  }
  .service-detail-intro {
    padding: 15px 18px;
    font-size: 13px;
  }
  .service-detail-content {
    padding: 38px 0 68px;
  }
  .service-detail-section,.service-detail-section.emphasis {
    display: block;
    padding: 30px 0;
    margin: 0;
    background: transparent;
    border-width: 0 0 1px;
  }
  .service-detail-section-title {
    margin-bottom: 22px;
  }
  .service-detail-section ul {
    grid-template-columns: 1fr;
  }
  .service-process-section ol {
    grid-template-columns: 1fr;
  }
  .service-process-section li {
    min-height: auto;
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 10px;
  }
  .service-process-section li b {
    margin: 2px 0 0;
  }
  .service-detail-consult {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-top: 42px;
    padding: 28px 22px;
    box-shadow: 8px 8px 0 #d9d2c2;
  }
  .service-detail-consult a {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
}
@property --tw-blur {
  syntax: "*";
  inherits: false;
}
@property --tw-brightness {
  syntax: "*";
  inherits: false;
}
@property --tw-contrast {
  syntax: "*";
  inherits: false;
}
@property --tw-grayscale {
  syntax: "*";
  inherits: false;
}
@property --tw-hue-rotate {
  syntax: "*";
  inherits: false;
}
@property --tw-invert {
  syntax: "*";
  inherits: false;
}
@property --tw-opacity {
  syntax: "*";
  inherits: false;
}
@property --tw-saturate {
  syntax: "*";
  inherits: false;
}
@property --tw-sepia {
  syntax: "*";
  inherits: false;
}
@property --tw-drop-shadow {
  syntax: "*";
  inherits: false;
}
@property --tw-drop-shadow-color {
  syntax: "*";
  inherits: false;
}
@property --tw-drop-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}
@property --tw-drop-shadow-size {
  syntax: "*";
  inherits: false;
}
@layer properties {
  @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
    *, ::before, ::after, ::backdrop {
      --tw-blur: initial;
      --tw-brightness: initial;
      --tw-contrast: initial;
      --tw-grayscale: initial;
      --tw-hue-rotate: initial;
      --tw-invert: initial;
      --tw-opacity: initial;
      --tw-saturate: initial;
      --tw-sepia: initial;
      --tw-drop-shadow: initial;
      --tw-drop-shadow-color: initial;
      --tw-drop-shadow-alpha: 100%;
      --tw-drop-shadow-size: initial;
    }
  }
}
