/*
 * GP-Fertility — 薰衣草紫 + 香槟金（品牌向）
 * ui-ux-pro-max 审计要点：浅底正文对比 ≥4.5:1；muted 勿浅于 #475569；描边在浅模下可见。
 */
:root {
  --cream: #faf9f7;
  --cream-deep: #f2f0eb;
  --white: #ffffff;
  /* 正文/标题：贴近 slate-900，满足 AA */
  --ink: #0f172a;
  /* 次要文案：skill 建议浅模 muted 不低于 #475569 */
  --ink-muted: #475569;
  /* 主紫（dusty lavender）；装饰可用 --brand，正文链接用更深色保证对比 */
  --brand: #8e7cb3;
  --brand-dark: #6f5f94;
  --brand-darker: #5a4d78;
  --brand-light: #a898c9;
  --brand-muted: #b8a9d4;
  --brand-soft: rgba(142, 124, 179, 0.16);
  --brand-softer: rgba(142, 124, 179, 0.09);
  --brand-shadow: rgba(90, 77, 120, 0.28);
  --brand-border: rgba(142, 124, 179, 0.2);
  --brand-border-strong: rgba(142, 124, 179, 0.42);
  /* 香槟金：浅底数字略加深，兼顾白卡片上的 AA */
  --gold: #e6d5a7;
  --gold-rich: #d4c194;
  --gold-on-light: #7d6338;
  --cta-text: #2d2638;
  /* 奶油/白底上的链接（不用浅紫直链正文） */
  --link: var(--brand-darker);
  --link-hover: #453a5c;
  /* 标题/链接主色（兼容旧变量名） */
  --magenta: var(--brand);
  --magenta-dark: var(--brand-dark);
  --peach: #c9bba5;
  --peach-soft: rgba(230, 213, 167, 0.38);
  /* 顶栏 CTA：金底深字 */
  --cta: var(--gold);
  --cta-hover: var(--gold-rich);
  --radius-lg: 12px;
  --radius-pill: 999px;
  --shadow-soft: 0 10px 32px rgba(0, 0, 0, 0.08);
  --font-display: "Montserrat", system-ui, sans-serif;
  --nav-h: 62px;
  --scroll-pad: 78px;
  --content-max-w: 1170px;
  /* 与顶栏一致：窄屏略增侧边留白，避免正文贴齐视口 */
  --content-pad-x: clamp(1.25rem, 3.5vw, 1.75rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--cream);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--link);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--link-hover);
  text-decoration: underline;
}

h1,
h2,
h3 {
  line-height: 1.2;
}

/* —— skip —— */
.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 999;
  padding: 0.75rem 1rem;
  background: var(--magenta);
  color: #fff;
}

.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
}

/* —— Wish #globalnav（与 Zz_www.wishforababyaustralia.com/index.html 同源规则精简版） —— */
#fixy_height_nav {
  height: var(--nav-h);
}

#globalnav {
  min-height: var(--nav-h);
  background: var(--brand);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  overflow: visible;
}

#globalnav .container--wide {
  position: relative;
  width: 100%;
  max-width: var(--content-max-w);
  margin: 0 auto;
  padding: 0 var(--content-pad-x);
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 1rem 1.35rem;
}

.globalnav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  align-self: stretch;
  line-height: 0;
  padding: 6px 0;
  position: relative;
  z-index: 2;
  margin-right: auto;
}

.globalnav__logo:hover {
  opacity: 0.88;
}

.globalnav__logo:focus-visible {
  outline: 3px solid #03aff3;
  outline-offset: 2px;
  border-radius: 4px;
}

.globalnav__logo img {
  display: block;
  height: 38px;
  width: auto;
  max-width: min(220px, 32vw);
  object-fit: contain;
  vertical-align: middle;
}

#close_nav {
  display: none;
  position: fixed;
  z-index: 102;
  right: 0.75rem;
  top: 0.55rem;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  color: #fff;
  user-select: none;
}

#globalnav.mob_open #close_nav {
  display: block;
}

#globalnav ul {
  display: flex;
  flex-wrap: nowrap;
  flex: 1 1 auto;
  justify-content: flex-end;
  align-items: stretch;
  min-width: 0;
  gap: 0.25rem 0.95rem;
  max-width: none;
  margin: 0;
  margin-left: 1.25rem;
  list-style: none;
  padding: 0;
}

#globalnav ul > li {
  position: relative;
  /* 勿收缩，否则「Why us」「First step」会在词间断行 */
  flex: 0 0 auto;
}

#globalnav ul li a {
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(0.88rem, 1.2vw, 1.05rem);
  font-weight: 700;
  line-height: 1.35;
  display: block;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 0.65rem;
  padding-right: 0.65rem;
  border-top: 3px solid transparent;
  transition: border-color 0.2s ease-in-out, color 0.2s ease-in-out;
  text-decoration: none;
  white-space: nowrap;
}

#globalnav ul li a:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}

#globalnav ul li.gn-tickets a {
  background: var(--cta);
  padding: 0.55rem 1.15rem;
  margin-top: 8px;
  margin-bottom: 8px;
  border-radius: 6px;
  color: var(--cta-text) !important;
  border-top: none;
  line-height: 1.25;
  white-space: nowrap;
}

#globalnav ul li.gn-tickets a:hover {
  background-color: var(--cta-hover);
  color: var(--cta-text) !important;
  border-color: transparent;
}

#globalnav ul li ul {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 220px;
  flex-direction: column;
  background: var(--brand-dark);
  z-index: 1001;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

#globalnav ul li ul li {
  padding: 0;
}

#globalnav ul li ul li a {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
  font-weight: 600;
  padding: 10px 15px;
  border-top: none;
}

#globalnav ul li ul li a:hover {
  color: #fff;
  background: rgba(0, 0, 0, 0.12);
}

#globalnav div > ul > li:hover > ul,
#globalnav div > ul > li:focus-within > ul,
#globalnav div > ul > li ul:hover {
  display: flex;
}

#totop {
  margin: 0;
}

#totop a {
  position: absolute;
  right: 0;
  top: 0;
  width: var(--nav-h);
  height: var(--nav-h);
  text-indent: -9999px;
  overflow: hidden;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2'%3E%3Cpath d='M12 19V5M5 12l7-7 7 7'/%3E%3C/svg%3E") center center no-repeat;
  background-size: 29px auto;
  transition: opacity 0.3s ease-in-out;
  opacity: 0;
}

#totop a.active {
  opacity: 0.5;
}

#totop a:hover {
  opacity: 1;
}

/* 头区 #open_nav：窄屏调出菜单（Wish 交互） */
#open_nav {
  display: none;
  position: fixed;
  z-index: 99;
  right: 18px;
  bottom: 18px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  background: var(--cta);
  box-shadow: 0 4px 18px rgba(58, 51, 72, 0.22);
  border: 2px solid rgba(255, 255, 255, 0.45);
}

#open_nav::before,
#open_nav::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--cta-text);
  border-radius: 1px;
}

#open_nav::before {
  top: 18px;
  box-shadow: 0 7px 0 var(--cta-text);
}

#open_nav::after {
  bottom: 18px;
}

#open_nav:focus-visible {
  outline: 3px solid #03aff3;
  outline-offset: 2px;
}

@media (max-width: 930px) {
  .nav_nice_to_have,
  #totop {
    display: none;
  }
}

/* 中等桌面宽度：保证项单行且不挤出视口 */
@media (min-width: 901px) and (max-width: 1120px) {
  #globalnav .container--wide {
    gap: 0.75rem 1rem;
  }

  #globalnav ul {
    gap: 0.25rem 0.6rem;
    margin-left: 0.75rem;
  }

  #globalnav ul li a {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    font-size: 0.86rem;
  }

  .globalnav__logo img {
    max-width: min(190px, 28vw);
    height: 34px;
  }

  #globalnav ul li.gn-tickets a {
    padding: 0.5rem 0.95rem;
    font-size: 0.82rem;
  }
}

@media (max-width: 900px) {
  #open_nav {
    display: block;
  }

  #globalnav ul {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    top: var(--nav-h);
    max-width: none;
    flex-direction: column;
    background: rgba(255, 252, 250, 0.98);
    padding: 0.5rem 0 1rem;
    box-shadow: var(--shadow-soft);
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
  }

  #globalnav.mob_open ul {
    display: flex;
  }

  #globalnav ul > li {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  #globalnav ul li a {
    font-size: 1rem;
    padding: 12px 1.25rem;
    border-top: none;
    color: #1a1a1a;
  }

  #globalnav ul li a:hover {
    color: var(--brand);
    border-color: transparent;
  }

  #globalnav ul li ul {
    position: static;
    display: flex;
    flex-direction: column;
    box-shadow: none;
    background: var(--brand-softer);
  }

  #globalnav ul li ul li a {
    color: #2f264d;
  }

  #globalnav ul li ul li a:hover {
    color: var(--brand-dark);
    background: rgba(142, 124, 179, 0.1);
  }

  #globalnav ul li.gn-tickets a {
    margin: 8px 1rem;
    text-align: center;
    border-radius: 8px;
  }
}

/* —— hero —— */
.hero {
  position: relative;
  padding: 2.25rem 0 3rem;
  background: var(--cream);
  border-top: 8px solid var(--gold);
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 40% at 15% 20%, rgba(142, 124, 179, 0.12), transparent 70%),
    radial-gradient(ellipse 45% 35% at 88% 15%, rgba(230, 213, 167, 0.2), transparent 65%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 var(--content-pad-x);
}

.hero__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.hero__title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.55rem, 4.2vw, 2.15rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero__title::after {
  content: "";
  display: block;
  width: 4.5rem;
  height: 5px;
  margin: 0.85rem auto 0;
  background: var(--gold);
  border-radius: 2px;
}

.hero__lead {
  margin: 0 0 1.75rem;
  font-weight: 600;
  color: var(--ink-muted);
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:focus-visible {
  outline: 3px solid #03aff3;
  outline-offset: 2px;
}

/* ui-ux-pro-max：可点击区域明确手势 */
.ticketshop_trigger,
.scrollnav[href] {
  cursor: pointer;
}

.btn--primary {
  background: linear-gradient(165deg, var(--brand-dark), var(--brand) 52%, var(--brand-light));
  color: #fff;
  box-shadow: 0 4px 16px var(--brand-shadow);
}

.btn--primary:hover {
  transform: translateY(-1px);
  color: #fff;
  text-decoration: none;
}

.btn--ghost {
  background: #fff;
  color: var(--link);
  border: 2px solid var(--brand-border-strong);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.92);
  color: var(--link-hover);
  text-decoration: none;
}

.hero__strap {
  margin: 2rem auto 0;
  max-width: 34rem;
  padding: 0.85rem 1.15rem;
  font-size: 0.92rem;
  color: var(--ink-muted);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-lg);
}

/* —— sections common —— */
main > section {
  scroll-margin-top: var(--scroll-pad);
}

.shell {
  max-width: var(--content-max-w);
  margin: 0 auto;
  padding: 0 var(--content-pad-x);
}

.section__title {
  margin: 0 0 1.25rem;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  color: var(--magenta);
}

.section__title--left span {
  display: block;
  width: 3.25rem;
  height: 4px;
  margin-top: 0.4rem;
  background: var(--magenta);
  border-radius: 2px;
}

/* —— About us：Wish「About the Event」同源（about_v3 + whats-on-panel），背景图可替换 —— */
.wrapper {
  padding-bottom: 6em;
}

.wrapper.full_height {
  flex-direction: column;
  min-height: calc(100vh - 45px);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* About：与 .shell / 顶栏 同一内容列；避免 flex 子项在 column 下顶满视口导致文字贴边 */
.wrapper#about.about_v3.full_height {
  align-items: stretch;
  justify-content: flex-start;
}

.wrapper#about.about_v3.full_height > .shell.about_v3__inner {
  flex: 0 1 auto;
  align-self: center;
  width: 100%;
  max-width: var(--content-max-w);
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.wrapper#about {
  padding-top: 5em;
  padding-bottom: 5em;
}

.wrapper#about.about_v3 {
  background: #fff;
  padding-top: 3em;
  padding-bottom: 3em;
  position: relative;
  overflow: hidden;
}

.wrapper#about.about_v3::before {
  position: absolute;
  content: "";
  inset: 0;
  z-index: 0;
  background-image: url("../assets/images/WechatIMG6843.jpg");
  background-position: center;
  background-size: cover;
}

@media (max-width: 1040px) {
  .wrapper#about.about_v3::before {
    background-position: 40% center;
  }
}

@media (max-width: 540px) {
  .wrapper#about.about_v3::before {
    background-position: 60% center;
    opacity: 0.35;
  }
}

.wrapper#about .about_v3__inner {
  position: relative;
  z-index: 2;
}

#about.about_v3 .text_container {
  max-width: none;
  width: 100%;
  margin-bottom: 30px;
}

#about.about_v3 .content {
  max-width: 42rem;
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}

/* Wish 内层 flex 行：与 .shell 同宽后取消左缩进，文字顶齐内容区左侧 */
.wrapper#about .section {
  display: flex;
  flex-wrap: nowrap;
  margin-left: 0;
}

.wrapper#about .column {
  flex: 1;
  box-sizing: border-box;
  padding-left: 0;
  display: flex;
  position: relative;
}

.wrapper#about .content {
  width: 100%;
  color: var(--ink);
}

.wrapper#about .about_v3__inner h2,
.wrapper#about .content h2 {
  font-size: 1.4em;
  color: var(--brand);
  line-height: 1;
  position: relative;
  margin-bottom: 1.5em;
  padding-top: 1em;
  padding-bottom: 0.66em;
  text-align: center;
  font-weight: 700;
}

.wrapper#about .about_v3__inner h2 span,
.wrapper#about .content h2 span {
  width: 100px;
  height: 4px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
}

.wrapper#about .content h2.align_left {
  text-align: left;
}

.wrapper#about .content h2.align_left span {
  left: 0;
  transform: none;
}

.wrapper#about .content p {
  margin: 0 0 1em;
  line-height: 1.5;
  color: var(--ink-muted);
}

.wrapper#about .content p.fontsize--larger {
  font-size: 1.1em;
  font-weight: 600;
  color: var(--ink);
}

.whats-on-panel {
  padding: 30px;
  border-radius: 10px;
  margin: 30px 0;
  margin-right: auto;
  background: var(--brand-softer);
  max-width: 500px;
}

body.v_jan2025 #about .whats-on-panel {
  background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.25));
  backdrop-filter: blur(5px) saturate(200%);
  -webkit-backdrop-filter: blur(5px) saturate(200%);
}

.whats-on-panel * {
  position: relative;
  z-index: 2;
}

.whats-on-panel h3 {
  color: var(--brand-dark);
  font-size: 1.1em;
  margin-bottom: 10px;
  font-weight: 700;
}

.whats-on-panel p {
  margin-bottom: 0.75rem;
}

.whats-on-panel p.button,
.whats-on-panel a.button {
  margin-bottom: 0;
  margin-top: 1rem;
}

.whats-on-panel a.button.ticketshop_trigger {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}

.whats-on-panel .button.ticketshop_trigger {
  cursor: pointer;
  margin-left: 0;
}

.whats-on-panel .button.ticketshop_trigger span {
  display: inline-block;
  border: none;
  background-color: var(--brand);
  padding: 10px 20px;
  color: #fff;
  font-size: 0.9em;
  border-radius: 5px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}

.whats-on-panel .button.ticketshop_trigger span:hover {
  background-color: var(--brand-dark);
  color: #fff;
}

@media (max-width: 740px) {
  .wrapper#about .section {
    flex-wrap: wrap;
    margin-left: 0;
  }

  .wrapper#about .column {
    padding-left: 0;
    flex: none;
    width: 100%;
  }
}

/* stats */
.stats-wrap {
  padding: 2.5rem 0;
  background: linear-gradient(180deg, #fff 0%, var(--brand-softer) 100%);
  border-block: 1px solid var(--brand-border);
}

.stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .stats {
    grid-template-columns: repeat(5, 1fr);
  }
}

.stat-card {
  background: #fff;
  border-radius: 10px;
  padding: 1rem 0.75rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.stat-card__n {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-on-light);
  margin-bottom: 0.25rem;
  font-variant-numeric: tabular-nums;
  min-height: 1.35em;
}

.stat-card__l {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink-muted);
  line-height: 1.35;
}

/* advantages — Wish-style split */
.adv {
  position: relative;
  background: #fff;
  padding: 3rem 0 5rem;
  overflow: hidden;
}

.adv::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("../assets/images/e415c65804a3417c8a894b9431ef07d9.jpg");
  background-size: cover;
  background-position: 28% center;
  -webkit-mask-image: linear-gradient(
    90deg,
    #000 0%,
    #000 38%,
    rgba(0, 0, 0, 0.88) 48%,
    rgba(0, 0, 0, 0.35) 60%,
    transparent 72%
  );
  mask-image: linear-gradient(
    90deg,
    #000 0%,
    #000 38%,
    rgba(0, 0, 0, 0.88) 48%,
    rgba(0, 0, 0, 0.35) 60%,
    transparent 72%
  );
}

@media (max-width: 740px) {
  .adv::before {
    opacity: 0.45;
    background-position: 35% center;
  }
}

@media (max-width: 540px) {
  .adv::before {
    opacity: 0.18;
  }
}

.adv__shell {
  position: relative;
  z-index: 1;
}

.adv__title {
  text-align: right;
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  color: var(--magenta);
}

.adv__title span {
  display: block;
  width: 3.25rem;
  height: 4px;
  margin-top: 0.4rem;
  margin-left: auto;
  background: var(--magenta);
  border-radius: 2px;
}

.adv__col {
  max-width: 570px;
  margin-left: auto;
  padding-left: 8vw;
  text-align: right;
}

.adv__col .lead {
  font-size: 1.08rem;
  font-weight: 600;
  margin: 0 0 1rem;
}

.adv__col p {
  margin: 0 0 1rem;
  color: var(--ink);
}

.doc-features {
  margin: 1.5rem 0 0;
  text-align: left;
}

.doc-features__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.doc-features__item:last-of-type {
  margin-bottom: 0;
}

.doc-features__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
}

.doc-features__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.doc-features__content {
  flex: 1;
  min-width: 0;
}

.doc-features__content h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  color: var(--magenta);
}

.doc-features__content p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-muted);
}

.vis-list {
  margin-top: 1.75rem;
  background: var(--peach-soft);
  backdrop-filter: blur(15px) saturate(200%);
  -webkit-backdrop-filter: blur(15px) saturate(200%);
  text-align: left;
  padding: 1.25rem 1.25rem 1.1rem;
  max-width: 500px;
  margin-left: auto;
  border-radius: 10px;
}

.vis-list h3 {
  margin: 0 0 0.45rem;
  font-size: 1.08rem;
  line-height: 1.25;
  color: var(--magenta);
}

.vis-list__sub {
  margin: 0 0 0.85rem;
  font-size: 0.93rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--ink-muted);
}

.vis-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.vis-list li {
  padding-left: 1.85rem;
  margin-bottom: 0.45rem;
  line-height: 1.45;
  font-size: 0.92rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%238e7cb3' d='M13.14 4.6 6.3 11.44 2.86 8l.94-.94 2.5 2.5 5.9-5.9.94.94z'/%3E%3C/svg%3E");
  background-size: 15px auto;
  background-repeat: no-repeat;
  background-position: 0 0.35rem;
}

.vis-list .btn {
  margin-top: 1rem;
  width: 100%;
}

/* centers */
.centers {
  padding: 3.5rem 0;
  background: var(--cream);
}

.centers__title {
  text-align: center;
  margin: 0 0 0.65rem;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  color: var(--magenta);
}

.centers__intro {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2rem;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--ink-muted);
}

.center-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .center-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.center-card {
  background: transparent;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  border: none;
}

.center-card__media {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.center-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.center-card__body {
  padding: 1rem 1.1rem 1.15rem;
}

.center-card__heading {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 0.4rem;
}

.center-card__title-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 1px 3px rgba(18, 12, 28, 0.12);
}

.center-card__body h3 {
  margin: 0;
  font-size: 1.05rem;
  color: var(--magenta);
  line-height: 1.25;
}

.center-card__body > p {
  margin: 0;
}

.center-card__body > p + p {
  margin-top: 0.55rem;
}

.center-card__tagline {
  font-size: 0.93rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--ink);
}

.center-card__fit {
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--ink-muted);
}

/* who we serve */
.who-we-serve {
  padding: 3.5rem 0 3.75rem;
  background:
    linear-gradient(180deg, var(--brand-softer) 0%, transparent 42%),
    linear-gradient(135deg, rgba(230, 213, 167, 0.22) 0%, transparent 55%),
    var(--cream-deep);
}

.who-we-serve__title {
  text-align: center;
  margin: 0 0 2rem;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  color: var(--magenta);
  position: relative;
  padding-bottom: 0.65rem;
}

.who-we-serve__title::after {
  content: "";
  display: block;
  width: 3rem;
  height: 3px;
  margin: 0.5rem auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold-rich), var(--magenta));
}

.who-we-serve__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .who-we-serve__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .who-we-serve__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.35rem;
  }
}

.serve-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.85rem 1.2rem 1.65rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--brand-border);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.serve-card:hover {
  border-color: var(--brand-border-strong);
  box-shadow: 0 12px 36px var(--brand-shadow);
}

.serve-card__icon {
  width: 4rem;
  height: 4rem;
  margin-bottom: 1.05rem;
  color: var(--brand-dark);
  position: relative;
}

.serve-card__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.35rem;
  transform: translateX(-50%);
  width: 2rem;
  height: 2px;
  border-radius: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-rich), transparent);
  opacity: 0.85;
}

.serve-card__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.serve-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}

.serve-card p {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.6;
  color: var(--ink-muted);
  flex: 1;
  max-width: 22rem;
}

/* stories */
.stories {
  padding: 3rem 0;
  background: #fff;
}

.stories__title {
  text-align: center;
  margin: 0 0 2rem;
  font-weight: 800;
  color: var(--magenta);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
}

.story-grid {
  display: grid;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 800px) {
  .story-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.story-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.story-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.story-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.story-card__body {
  padding: 1rem 1.1rem 1.2rem;
}

.story-card__body h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: var(--magenta);
}

.story-card__body blockquote {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-muted);
  font-style: italic;
}

.story-card__body blockquote cite {
  display: block;
  margin-top: 0.65rem;
  font-style: normal;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--ink);
}

/* consultation */
.consult {
  padding: 3.5rem 0;
  background: linear-gradient(165deg, var(--brand-darker) 0%, var(--brand-dark) 42%, var(--brand) 100%);
  color: rgba(255, 255, 255, 0.93);
}

.consult__glass {
  max-width: 40rem;
  margin: 0 auto;
  padding: 2rem 1.75rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  backdrop-filter: blur(12px);
  text-align: center;
}

.consult__glass h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.2rem, 2.8vw, 1.5rem);
  font-weight: 800;
  color: var(--gold);
}

.consult__glass .sub {
  margin: 0 0 0.35rem;
  opacity: 0.92;
}

.consult__glass .consult__receive {
  display: block;
  margin: 1rem 0 0.75rem;
  font-weight: 700;
}

.benefit-list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
  max-width: 26rem;
  margin-left: auto;
  margin-right: auto;
}

.benefit-list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin-bottom: 0.65rem;
  font-size: 0.92rem;
}

.benefit-list svg {
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  color: var(--gold);
}

.consult .btn--primary {
  margin-top: 1.25rem;
}

/* footer — 浅色底、Logo 原色居中，下文联系文案 */
.site-footer {
  padding: 2.25rem 0 2.75rem;
  background: var(--cream);
  text-align: center;
  border-top: 1px solid var(--brand-border);
  font-size: 0.88rem;
  color: var(--ink-muted);
}

.site-footer__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  text-decoration: none;
  margin-bottom: 0.45rem;
}

.site-footer__logo:hover {
  opacity: 0.9;
}

.site-footer__logo:focus-visible {
  outline: 3px solid #03aff3;
  outline-offset: 4px;
  border-radius: 4px;
}

.site-footer__logo img {
  display: block;
  height: 40px;
  width: auto;
  max-width: min(220px, 72vw);
  object-fit: contain;
}

.site-footer__inner {
  max-width: 36rem;
}

.site-footer__inner > .site-footer__line:first-of-type {
  margin-top: 0;
}

.site-footer__line {
  margin: 0.4rem 0;
  line-height: 1.5;
}

.site-footer__line a {
  color: var(--link);
  text-decoration: none;
  font-weight: 600;
}

.site-footer__line a:hover {
  color: var(--link-hover);
  text-decoration: underline;
}

/* modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(20, 12, 16, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s, visibility 0.22s;
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  position: relative;
  width: min(100%, 480px);
  max-height: 90vh;
  overflow-y: auto;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem 1.5rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.modal__close {
  position: absolute;
  top: 0.65rem;
  right: 0.75rem;
  width: 2.25rem;
  height: 2.25rem;
  border: 0;
  background: transparent;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: var(--ink-muted);
  border-radius: 6px;
}

.modal__close:focus-visible {
  outline: 3px solid var(--magenta);
}

.modal h3 {
  margin: 0 0 0.75rem;
  color: var(--magenta);
  font-size: 1.15rem;
  padding-right: 2rem;
}

.consult-form {
  margin-top: 1rem;
  text-align: left;
}

.consult-form p {
  margin: 0 0 0.85rem;
}

.consult-form label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
}

.consult-form .field {
  width: 100%;
  padding: 0.5rem 0.65rem;
  margin-top: 0.25rem;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
}

.consult-form .field:focus-visible {
  outline: 3px solid rgba(142, 124, 179, 0.42);
  outline-offset: 1px;
}

#consult-form-status:not(.visually-hidden) {
  margin-top: 0.75rem;
  padding: 0.65rem 0.75rem;
  font-size: 0.88rem;
  color: var(--ink);
  background: rgba(125, 211, 192, 0.15);
  border-radius: 8px;
  border: 1px solid rgba(26, 77, 77, 0.12);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
