:root {
  --ink: #101820;
  --ink-2: #20343a;
  --paper: #f6f7f4;
  --surface: #ffffff;
  --mist: #e8efec;
  --teal: #14606d;
  --teal-dark: #0d3f49;
  --red: #a7382f;
  --gold: #d69a3a;
  --line: rgba(16, 24, 32, 0.14);
  --shadow: 0 18px 45px rgba(16, 24, 32, 0.16);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.65;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

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

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

.site-header.is-scrolled,
.site-header.is-open,
.page-body .site-header {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  max-width: min(58vw, 340px);
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #ffffff;
  background: var(--red);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  font-family: "Songti SC", "SimSun", serif;
  font-size: 22px;
  line-height: 1;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.2;
}

.brand__text {
  min-width: 0;
}

.brand strong {
  font-size: 17px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand small {
  margin-top: 2px;
  font-size: 12px;
  opacity: 0.78;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 15px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 0 13px;
  border-radius: 999px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  outline: none;
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-scrolled .site-nav a:focus-visible,
.site-header.is-open .site-nav a:hover,
.site-header.is-open .site-nav a:focus-visible {
  background: var(--mist);
}

.nav-cta {
  color: #ffffff;
  background: var(--teal);
}

.site-header:not(.is-scrolled):not(.is-open) .nav-cta {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.page-body .site-header:not(.is-scrolled):not(.is-open) .nav-cta {
  color: #ffffff;
  background: var(--teal);
  border-color: transparent;
}

.page-body .site-nav a:hover,
.page-body .site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  background: var(--mist);
  outline: none;
}

.nav-cta svg,
.button svg,
.contact-method svg,
.service-card svg,
.principle-list svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.icon-button {
  display: none;
  place-items: center;
  width: 42px;
  height: 42px;
  color: inherit;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  cursor: pointer;
}

.site-header.is-scrolled .icon-button,
.site-header.is-open .icon-button,
.page-body .icon-button {
  background: var(--mist);
  border-color: var(--line);
}

.hero {
  position: relative;
  min-height: 86svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #ffffff;
  isolation: isolate;
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
}

.hero__shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 11, 17, 0.88) 0%, rgba(5, 11, 17, 0.7) 40%, rgba(5, 11, 17, 0.34) 76%, rgba(5, 11, 17, 0.46) 100%),
    linear-gradient(0deg, rgba(5, 11, 17, 0.74) 0%, rgba(5, 11, 17, 0.08) 48%, rgba(5, 11, 17, 0.34) 100%);
}

.hero__content {
  padding: 148px 0 56px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
}

.hero h1,
.section h2,
.contact-copy h2,
.principles__text h2 {
  margin: 0;
  font-family: "Songti SC", "STSong", "SimSun", serif;
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 900px;
  font-size: 56px;
}

.hero__lead {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button--primary {
  color: #ffffff;
  background: var(--red);
  box-shadow: 0 14px 32px rgba(167, 56, 47, 0.28);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: #8f3029;
}

.button--secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(8px);
}

.button--secondary:hover,
.button--secondary:focus-visible {
  background: rgba(255, 255, 255, 0.22);
}

.button--light {
  color: var(--ink);
  background: var(--mist);
  border-color: var(--line);
  box-shadow: none;
}

.button--light:hover,
.button--light:focus-visible {
  background: #dce8e4;
}

.hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 800px;
  margin: 42px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.16);
}

.hero__facts div {
  padding: 16px 18px;
  background: rgba(12, 22, 28, 0.58);
  backdrop-filter: blur(10px);
}

.hero__facts dt {
  font-weight: 800;
}

.hero__facts dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.band {
  background: var(--teal-dark);
  color: #ffffff;
}

.intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 34px 0;
}

.intro__statement {
  margin: 0;
  max-width: 850px;
  font-size: 20px;
  line-height: 1.75;
}

.intro__note {
  max-width: 250px;
  padding: 15px 18px;
  border-left: 3px solid var(--gold);
  color: rgba(255, 255, 255, 0.82);
}

.section {
  padding: 88px 0;
  background: var(--paper);
}

.photo-showcase {
  background: #ffffff;
}

.photo-showcase__grid,
.photo-band__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
  align-items: center;
}

.photo-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.photo-mosaic figure,
.photo-band__grid img {
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(16, 24, 32, 0.12);
}

.photo-mosaic__large {
  grid-row: span 2;
}

.photo-mosaic__wide {
  grid-column: 1 / -1;
}

.photo-mosaic img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
}

.photo-mosaic__large img {
  min-height: 480px;
}

.photo-mosaic figcaption {
  padding: 10px 12px;
  color: rgba(16, 24, 32, 0.72);
  font-size: 14px;
  font-weight: 800;
}

.photo-band {
  background: #ffffff;
}

.photo-band__grid {
  grid-template-columns: 1.1fr 0.9fr;
}

.photo-band--reverse .photo-band__grid {
  grid-template-columns: 0.95fr 1.05fr;
}

.photo-band__grid img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.photo-band__grid h2 {
  margin: 0;
  font-family: "Songti SC", "STSong", "SimSun", serif;
  font-size: 36px;
  line-height: 1.18;
}

.photo-band__grid p:last-child {
  margin: 14px 0 0;
  color: rgba(16, 24, 32, 0.72);
}

.section--soft {
  background: var(--mist);
}

.section--deep {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(20, 96, 109, 0.88), rgba(16, 24, 32, 0.98)),
    var(--ink);
}

.section__header {
  max-width: 720px;
  margin-bottom: 34px;
}

.section__header h2,
.contact-copy h2,
.principles__text h2 {
  font-size: 40px;
}

.section__header p:last-child,
.contact-copy > p,
.principles__text p:last-child {
  margin: 14px 0 0;
  color: rgba(16, 24, 32, 0.72);
}

.section__header--light p:last-child {
  color: rgba(255, 255, 255, 0.78);
}

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

.service-card,
.principle-list article,
.booking-form,
.contact-method,
.feature-link,
.info-panel,
.wechat-qr-card,
.fortune-form,
.fortune-result,
.prep-grid div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(16, 24, 32, 0.06);
}

.service-card {
  min-height: 210px;
  padding: 24px;
}

.service-card svg {
  color: var(--teal);
}

.service-card h3,
.principle-list h3,
.steps h3 {
  margin: 16px 0 8px;
  font-size: 20px;
  line-height: 1.35;
}

.service-card p,
.principle-list p,
.steps p {
  margin: 0;
  color: rgba(16, 24, 32, 0.72);
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  min-height: 208px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 34px;
  color: var(--ink);
  background: var(--gold);
  border-radius: 8px;
  font-weight: 800;
}

.steps p {
  color: rgba(255, 255, 255, 0.76);
}

.principles {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.principle-list {
  display: grid;
  gap: 16px;
}

.principle-list article {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  column-gap: 16px;
  padding: 22px;
}

.principle-list svg {
  grid-row: span 2;
  width: 24px;
  height: 24px;
  color: var(--red);
}

.principle-list h3 {
  margin: 0 0 6px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 800;
}

details p {
  margin: 0;
  padding: 0 22px 22px;
  color: rgba(16, 24, 32, 0.72);
}

.contact-section {
  background: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 38px;
  align-items: start;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 78px;
  padding: 16px;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.contact-method:hover,
.contact-method:focus-visible {
  outline: 2px solid rgba(20, 96, 109, 0.25);
  outline-offset: 2px;
}

.contact-method svg {
  color: var(--teal);
}

.contact-method strong,
.contact-method small {
  display: block;
}

.contact-method small {
  color: rgba(16, 24, 32, 0.68);
}

.contact-hint {
  min-height: 26px;
  margin: 14px 0 0;
  color: var(--teal);
  font-weight: 700;
}

.wechat-qr-card {
  margin-top: 18px;
  padding: 18px;
}

.wechat-qr-card__placeholder,
.wechat-qr-card__image {
  display: grid;
  background: var(--paper);
  border-radius: var(--radius);
}

.wechat-qr-card__image {
  width: 100%;
  max-width: 320px;
  height: auto;
  margin: 0 auto;
  padding: 10px;
  border: 1px solid var(--line);
  object-fit: contain;
}

.wechat-qr-card__placeholder {
  place-items: center;
  min-height: 210px;
  padding: 22px;
  text-align: center;
  border: 1px dashed rgba(16, 24, 32, 0.25);
}

.wechat-qr-card__placeholder svg {
  width: 34px;
  height: 34px;
  color: var(--teal);
}

.wechat-qr-card__placeholder strong,
.wechat-qr-card__placeholder span {
  display: block;
}

.wechat-qr-card__placeholder strong {
  margin-top: 10px;
}

.wechat-qr-card__placeholder span {
  max-width: 280px;
  margin-top: 6px;
  color: rgba(16, 24, 32, 0.62);
  font-size: 14px;
}

.wechat-qr-card p {
  margin: 12px 0 0;
  color: var(--teal-dark);
  font-weight: 800;
  text-align: center;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
}

.booking-form label {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.booking-form span {
  font-weight: 800;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.booking-form textarea {
  resize: vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(20, 96, 109, 0.16);
}

.booking-form__wide,
.booking-form__button {
  grid-column: 1 / -1;
}

.booking-output {
  display: none;
  padding: 16px;
  white-space: pre-wrap;
  color: var(--ink);
  background: var(--mist);
  border: 1px solid rgba(20, 96, 109, 0.18);
  border-radius: var(--radius);
}

.booking-output.is-visible {
  display: block;
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 24px 0;
  font-size: 14px;
}

.footer__inner p {
  margin: 0;
}

.feature-section {
  background: #ffffff;
}

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

.feature-link {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 14px;
  min-height: 138px;
  padding: 22px;
  transition: transform 160ms ease, border-color 160ms ease;
}

.feature-link:hover,
.feature-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(20, 96, 109, 0.34);
  outline: none;
}

.feature-link svg,
.info-panel svg {
  width: 24px;
  height: 24px;
  color: var(--teal);
}

.feature-link strong,
.feature-link small {
  display: block;
}

.feature-link strong {
  margin-bottom: 7px;
  font-size: 18px;
}

.feature-link small {
  color: rgba(16, 24, 32, 0.68);
  line-height: 1.55;
}

.page-body {
  padding-top: 72px;
}

.page-hero {
  position: relative;
  overflow: hidden;
}

.page-hero--plain {
  background:
    linear-gradient(135deg, rgba(232, 239, 236, 0.96), rgba(255, 255, 255, 0.98)),
    var(--paper);
}

.page-hero--image {
  min-height: 460px;
  display: grid;
  align-items: end;
  color: #ffffff;
  isolation: isolate;
}

.page-hero--image img,
.page-hero__shade {
  position: absolute;
  inset: 0;
}

.page-hero--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.page-hero__shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 11, 17, 0.86), rgba(5, 11, 17, 0.38)),
    linear-gradient(0deg, rgba(5, 11, 17, 0.72), rgba(5, 11, 17, 0.18));
}

.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 42px;
  align-items: end;
  padding: 76px 0 58px;
}

.page-hero__content {
  max-width: 780px;
  padding: 96px 0 58px;
}

.page-hero h1 {
  max-width: 850px;
  margin: 0;
  font-family: "Songti SC", "STSong", "SimSun", serif;
  font-size: 48px;
  line-height: 1.16;
}

.page-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(16, 24, 32, 0.74);
  font-size: 18px;
}

.page-hero--image p {
  color: rgba(255, 255, 255, 0.84);
}

.page-hero__note {
  padding: 22px;
  color: #ffffff;
  background: var(--teal-dark);
  border-radius: var(--radius);
}

.page-hero__note strong,
.page-hero__note span {
  display: block;
}

.page-hero__note strong {
  margin-bottom: 8px;
  color: var(--gold);
}

.page-hero__note span {
  color: rgba(255, 255, 255, 0.84);
}

.split-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 46px;
  align-items: start;
}

.sticky-copy {
  position: sticky;
  top: 96px;
}

.info-stack {
  display: grid;
  gap: 16px;
}

.info-panel {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  column-gap: 16px;
  padding: 24px;
}

.info-panel svg {
  grid-row: span 2;
}

.info-panel h3 {
  margin: 0 0 6px;
  font-size: 21px;
}

.info-panel p {
  margin: 0;
  color: rgba(16, 24, 32, 0.72);
}

.cta-band {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(13, 63, 73, 0.96), rgba(16, 24, 32, 0.98)),
    var(--ink);
}

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

.cta-band h2 {
  margin: 0;
  font-family: "Songti SC", "STSong", "SimSun", serif;
  font-size: 36px;
  line-height: 1.16;
}

.cta-band p:last-child {
  max-width: 670px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.story-list {
  display: grid;
  gap: 24px;
}

.story-item {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  column-gap: 34px;
  row-gap: 12px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.story-item:first-child {
  padding-top: 0;
}

.story-item span {
  color: var(--red);
  font-weight: 800;
}

.story-item h2 {
  margin: 0;
  font-family: "Songti SC", "STSong", "SimSun", serif;
  font-size: 34px;
}

.story-item p {
  grid-column: 2;
  max-width: 780px;
  margin: 0;
  color: rgba(16, 24, 32, 0.74);
}

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

.prep-grid div {
  min-height: 132px;
  padding: 20px;
}

.prep-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.prep-grid p {
  margin: 0;
  color: rgba(16, 24, 32, 0.7);
}

.calculator-section {
  background: #ffffff;
}

.tool-layout {
  display: grid;
  grid-template-columns: 390px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.fortune-form {
  position: sticky;
  top: 94px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
}

.form-title {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.form-title svg {
  width: 28px;
  height: 28px;
  color: var(--teal);
}

.form-title h2 {
  margin: 0;
  font-size: 24px;
}

.form-title p,
.form-disclaimer {
  margin: 6px 0 0;
  color: rgba(16, 24, 32, 0.68);
  font-size: 14px;
}

.fortune-form label {
  display: grid;
  gap: 7px;
}

.fortune-form label span {
  font-weight: 800;
}

.fortune-form input,
.fortune-form select {
  width: 100%;
  min-height: 46px;
  padding: 9px 11px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.fortune-form input:focus,
.fortune-form select:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(20, 96, 109, 0.16);
}

.fortune-form__button,
.form-disclaimer {
  grid-column: 1 / -1;
}

.fortune-result {
  min-height: 560px;
  overflow: hidden;
  scroll-margin-top: 96px;
}

.result-empty {
  display: grid;
  place-items: center;
  min-height: 560px;
  padding: 28px;
  text-align: center;
}

.result-empty svg {
  width: 34px;
  height: 34px;
  color: var(--gold);
}

.result-empty h2 {
  margin: 12px 0 6px;
  font-size: 24px;
}

.result-empty p {
  max-width: 450px;
  margin: 0;
  color: rgba(16, 24, 32, 0.68);
}

.result-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(20, 96, 109, 0.96), rgba(16, 24, 32, 0.98)),
    var(--teal-dark);
}

.result-header h2 {
  margin: 0;
  font-family: "Songti SC", "STSong", "SimSun", serif;
  font-size: 30px;
  line-height: 1.2;
}

.result-header p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.result-tag {
  align-self: start;
  white-space: nowrap;
  padding: 8px 12px;
  color: var(--ink);
  background: var(--gold);
  border-radius: 8px;
  font-weight: 800;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.pillar {
  padding: 18px;
  background: #ffffff;
  text-align: center;
}

.pillar small {
  display: block;
  color: rgba(16, 24, 32, 0.56);
  font-weight: 800;
}

.pillar strong {
  display: block;
  margin: 6px 0;
  font-family: "Songti SC", "STSong", "SimSun", serif;
  font-size: 30px;
}

.pillar span {
  display: block;
  color: rgba(16, 24, 32, 0.68);
  font-size: 13px;
}

.result-section {
  padding: 24px;
  border-top: 1px solid var(--line);
}

.result-section h3 {
  margin: 0 0 14px;
  font-size: 21px;
}

.result-section p {
  margin: 0;
  color: rgba(16, 24, 32, 0.72);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.metric {
  padding: 14px;
  background: var(--paper);
  border-radius: 8px;
}

.metric strong,
.metric span {
  display: block;
}

.metric strong {
  margin-bottom: 8px;
}

.meter {
  height: 8px;
  overflow: hidden;
  background: #d8e2df;
  border-radius: 999px;
}

.meter i {
  display: block;
  height: 100%;
  background: var(--teal);
  border-radius: inherit;
}

.insight-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.insight-list li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: rgba(16, 24, 32, 0.72);
}

.insight-list svg {
  width: 20px;
  height: 20px;
  color: var(--red);
}

.result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0 24px 24px;
}

.copy-note {
  min-height: 24px;
  padding: 0 24px 24px;
  color: var(--teal);
  font-weight: 800;
}

@media (max-width: 920px) {
  .icon-button {
    display: grid;
  }

  .site-nav {
    position: fixed;
    inset: 72px 14px auto 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    color: var(--ink);
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    border-radius: 8px;
  }

  .nav-cta,
  .site-header:not(.is-scrolled):not(.is-open) .nav-cta {
    color: #ffffff;
    background: var(--teal);
    border-color: transparent;
  }

  .hero h1 {
    font-size: 44px;
  }

  .service-grid,
  .feature-grid,
  .photo-showcase__grid,
  .photo-band__grid,
  .process-layout,
  .principles,
  .contact-grid,
  .page-hero__grid,
  .split-layout,
  .tool-layout,
  .prep-grid {
    grid-template-columns: 1fr;
  }

  .sticky-copy,
  .fortune-form {
    position: static;
  }

  .story-item {
    grid-template-columns: 1fr;
  }

  .story-item p {
    grid-column: 1;
  }

  .process-layout {
    gap: 28px;
  }

  .intro__grid {
    grid-template-columns: 1fr;
  }

  .intro__note {
    max-width: none;
  }
}

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

  .site-header {
    height: 66px;
    padding: 0 14px;
  }

  .site-nav {
    top: 66px;
  }

  .hero {
    min-height: 88svh;
  }

  .hero__image {
    object-position: 54% center;
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(5, 11, 17, 0.88), rgba(5, 11, 17, 0.72)),
      linear-gradient(0deg, rgba(5, 11, 17, 0.76), rgba(5, 11, 17, 0.14));
  }

  .hero__content {
    padding: 118px 0 38px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .page-hero h1 {
    font-size: 34px;
  }

  .hero__lead,
  .intro__statement {
    font-size: 17px;
  }

  .hero__actions,
  .contact-methods,
  .steps,
  .booking-form,
  .fortune-form,
  .pillar-grid,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .hero__actions {
    display: grid;
  }

  .hero__facts {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 62px 0;
  }

  .section__header h2,
  .contact-copy h2,
  .principles__text h2 {
    font-size: 31px;
  }

  .page-body {
    padding-top: 66px;
  }

  .page-hero__grid,
  .page-hero__content {
    padding: 46px 0 40px;
  }

  .page-hero--image {
    min-height: 420px;
  }

  .feature-link,
  .info-panel {
    grid-template-columns: 1fr;
  }

  .photo-mosaic {
    grid-template-columns: 1fr;
  }

  .photo-mosaic__large {
    grid-row: auto;
  }

  .photo-mosaic__wide {
    grid-column: auto;
  }

  .photo-mosaic img,
  .photo-mosaic__large img {
    min-height: 260px;
    max-height: 430px;
  }

  .story-item h2 {
    font-size: 28px;
  }

  .cta-band__inner,
  .result-header {
    display: grid;
  }

  .cta-band h2 {
    font-size: 30px;
  }

  .service-card,
  .steps li,
  .booking-form,
  .wechat-qr-card,
  .fortune-form,
  .result-section,
  .result-header {
    padding: 18px;
  }

  .footer__inner {
    display: grid;
  }
}
