:root {
  --ink-900: #173b3a;
  --primary-700: #0f4c45;
  --primary-800: #0b3a35;
  --brand-lime: #81cc0c;
  --lime-dark: #4f7600;
  --canvas: #f6f7f2;
  --mint: #eaf4e3;
  --white: #ffffff;
  --body: #42514d;
  --muted: #5f6f69;
  --border: #d7e1dc;
  --control-border: #7a8a84;
  --urgent: #b42318;
  --warm: #efe9df;
  --shadow: 0 12px 32px rgba(23, 59, 58, 0.1);
  --shadow-soft: 0 8px 24px rgba(23, 59, 58, 0.07);
  --radius-sm: 12px;
  --radius-button: 14px;
  --radius-card: 20px;
  --radius-media: 28px;
  --container: 1248px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --font-sans: Inter, "Noto Sans SC", "PingFang SC", "Microsoft YaHei", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "Source Serif 4", "Noto Serif SC", "Songti SC", Georgia, "Times New Roman", serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
  scroll-padding-top: 128px;
}

body {
  margin: 0;
  color: var(--body);
  background: var(--canvas);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

a {
  color: var(--primary-700);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--primary-800);
}

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

h1,
h2,
h3,
h4,
p,
ul,
ol,
dl,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink-900);
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.55rem, 5vw, 4rem);
  line-height: 1.05;
}

h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  line-height: 1.16;
}

h3 {
  font-size: clamp(1.4rem, 2.2vw, 1.75rem);
  line-height: 1.25;
}

address {
  font-style: normal;
}

::selection {
  color: var(--ink-900);
  background: #c9ec88;
}

:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px var(--white), 0 0 0 6px var(--primary-700);
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--primary-700);
  border-radius: 10px;
  transform: translateY(-160%);
  transition: transform 180ms var(--ease);
}

.skip-link:focus {
  color: var(--white);
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 96px), var(--container));
  margin-inline: auto;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--lime-dark);
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.3;
  text-transform: uppercase;
}

.lead {
  max-width: 65ch;
  color: var(--body);
  font-size: 1.125rem;
  line-height: 1.65;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-weight: 750;
  gap: 8px;
}

.text-link::after {
  content: "→";
  transition: transform 180ms var(--ease);
}

.text-link:hover::after {
  transform: translateX(4px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 24px;
  border: 1.5px solid transparent;
  border-radius: var(--radius-button);
  font-size: 1rem;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: color 180ms var(--ease), background 180ms var(--ease), border-color 180ms var(--ease), transform 180ms var(--ease), box-shadow 180ms var(--ease);
}

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

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

.button--primary:hover {
  color: var(--white);
  background: var(--primary-800);
  box-shadow: var(--shadow-soft);
}

.button--accent {
  color: var(--ink-900);
  background: var(--brand-lime);
}

.button--accent:hover {
  color: var(--ink-900);
  background: #92db25;
  box-shadow: var(--shadow-soft);
}

.button--outline {
  color: var(--primary-700);
  background: transparent;
  border-color: var(--primary-700);
}

.button--outline:hover {
  color: var(--white);
  background: var(--primary-700);
}

.button[disabled],
.button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Header */
.utility-bar {
  color: #edf7f2;
  background: var(--ink-900);
  font-size: 0.8125rem;
  line-height: 1.3;
}

.utility-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 36px;
  gap: 24px;
}

.utility-bar p {
  margin: 0;
}

.utility-bar a {
  color: inherit;
  text-decoration: none;
}

.utility-bar a:hover {
  text-decoration: underline;
}

.utility-bar__links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(215, 225, 220, 0.85);
  box-shadow: 0 4px 18px rgba(23, 59, 58, 0.04);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  min-height: 82px;
  gap: 32px;
}

.brand {
  display: block;
  flex: 0 0 238px;
}

.brand img {
  width: 238px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  gap: clamp(14px, 1.7vw, 28px);
}

.desktop-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  color: var(--body);
  font-size: 0.94rem;
  font-weight: 650;
  text-decoration: none;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--brand-lime);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms var(--ease);
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--primary-700);
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-phone {
  display: flex;
  flex-direction: column;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.2;
  text-decoration: none;
}

.header-phone strong {
  color: var(--ink-900);
  font-size: 0.95rem;
}

.header-book {
  min-height: 48px;
  padding-inline: 18px;
  font-size: 0.9rem;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 12px;
  cursor: pointer;
  background: transparent;
  border: 0;
  border-radius: 10px;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--ink-900);
  transition: transform 180ms var(--ease), opacity 180ms var(--ease);
}

.menu-toggle[aria-expanded="true"] span:nth-of-type(2) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-of-type(3) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-of-type(4) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  position: absolute;
  right: 0;
  left: 0;
  max-height: calc(100vh - 64px);
  overflow-y: auto;
  color: var(--white);
  background: var(--ink-900);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: var(--shadow);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav__inner {
  display: grid;
  padding-block: 18px 28px;
}

.mobile-nav__inner > a {
  display: flex;
  align-items: center;
  min-height: 54px;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.3rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.mobile-nav__contact {
  display: grid;
  padding-top: 20px;
  gap: 8px;
}

.mobile-nav__contact a {
  color: #dcebe5;
}

/* Global sections */
.flash-region {
  position: fixed;
  z-index: 300;
  top: 132px;
  right: 24px;
  width: min(420px, calc(100vw - 48px));
}

.flash {
  margin-bottom: 10px;
  padding: 14px 18px;
  color: var(--ink-900);
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 5px solid var(--brand-lime);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}

.flash--alert {
  border-left-color: var(--urgent);
}

.section {
  padding-block: 112px;
}

.section--compact {
  padding-block: 76px;
}

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

.section--white {
  background: var(--white);
}

.section--dark {
  color: #eaf3ef;
  background: var(--ink-900);
}

.section--dark h2,
.section--dark h3,
.section--dark .eyebrow {
  color: var(--white);
}

.section__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 32px;
}

.section__header > div {
  max-width: 760px;
}

.section__header h2 {
  margin-bottom: 16px;
}

.section__header p:last-child {
  margin-bottom: 0;
}

.split {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: center;
  gap: 24px;
}

.split__content {
  grid-column: span 5;
}

.split__media {
  grid-column: 7 / span 6;
}

.split--reverse .split__content {
  grid-column: 8 / span 5;
  order: 2;
}

.split--reverse .split__media {
  grid-column: 1 / span 6;
  order: 1;
}

.split__content h2 {
  margin-bottom: 22px;
}

.split__media img,
.media-card img {
  width: 100%;
  border-radius: var(--radius-media);
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

/* Content pages retain the legacy copy but use lightweight semantic markup.
   These selectors give unadorned split children the same editorial layout as
   the component-specific variants above. */
.split > :first-child:not(.split__content):not(.home-hero__content):not(.page-hero__content) {
  grid-column: span 5;
}

.split > :last-child:not(.split__media):not(.home-hero__media):not(.page-hero__media) {
  grid-column: 7 / span 6;
}

.split > img,
.split > figure:not(.card),
.split > figure:not(.card) img,
.dentist-profile > div:first-child img {
  width: 100%;
  border-radius: var(--radius-media);
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.split > figure:not(.card) {
  margin: 0;
}

.page-hero .split > img {
  max-height: 430px;
}

.prose {
  max-width: 72ch;
}

.prose > * + * {
  margin-top: 1.3em;
}

.prose h2,
.prose h3 {
  margin-top: 1.6em;
  margin-bottom: 0.5em;
}

.prose li + li {
  margin-top: 0.65em;
}

.notice {
  padding: 20px 22px;
  color: var(--ink-900);
  background: var(--mint);
  border: 1px solid #c9dcc2;
  border-left: 5px solid var(--lime-dark);
  border-radius: var(--radius-sm);
}

.notice h2,
.notice h3 {
  margin-bottom: 8px;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  letter-spacing: 0;
}

.notice p:last-child {
  margin-bottom: 0;
}

.notice--warning {
  background: #fff8ed;
  border-color: #efcf9d;
  border-left-color: #a15c00;
}

.section-heading {
  margin-bottom: 48px;
}

.section-action {
  margin: 40px 0 0;
  text-align: center;
}

.card {
  overflow: hidden;
  margin: 0;
  padding: 28px;
  color: var(--body);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
}

.card h3:last-child,
.card p:last-child,
.card figcaption:last-child {
  margin-bottom: 0;
}

.card > img:first-child {
  width: 100%;
  max-height: 260px;
  margin-bottom: 20px;
  border-radius: var(--radius-sm);
  object-fit: contain;
}

.section--dark .card {
  color: #dcebe5;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.section--dark .card h3,
.section--dark .card strong,
.section--dark .card a {
  color: var(--white);
}

.health-funds__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  align-items: center;
  gap: clamp(48px, 7vw, 96px);
}

.health-funds__visual {
  position: relative;
  display: grid;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4 / 3;
  place-items: center;
  justify-self: end;
  overflow: hidden;
  margin: 0;
  background:
    radial-gradient(circle at center, rgba(129, 204, 12, 0.13), transparent 56%),
    rgba(255, 255, 255, 0.46);
  border: 1px solid rgba(15, 76, 69, 0.09);
  border-radius: var(--radius-media);
  box-shadow: var(--shadow-soft);
}

.health-funds__visual::after {
  position: absolute;
  width: 72%;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(15, 76, 69, 0.07);
  border-radius: 50%;
}

.health-funds__visual img {
  position: relative;
  z-index: 1;
  width: clamp(128px, 38%, 160px);
  height: auto;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 24px;
}

.social-card {
  display: flex;
  flex-direction: column;
  min-height: 252px;
  padding: 28px;
  color: #dcebe5;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-card);
}

.social-card h3 {
  margin-bottom: 18px;
  color: var(--white);
}

.social-card p {
  margin-bottom: 24px;
}

.social-card strong {
  color: var(--white);
}

.social-card > .button,
.social-card__content > .button {
  align-self: flex-start;
  margin-top: auto;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.58);
}

.social-card > .button:hover,
.social-card__content > .button:hover {
  color: var(--ink-900);
  background: var(--white);
  border-color: var(--white);
}

.social-card--wechat {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 132px;
  align-items: center;
  gap: 20px;
}

.social-card__content {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  min-width: 0;
}

.social-card__icon {
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  border-radius: 14px;
  object-fit: contain;
}

.social-card__content h3 {
  margin-bottom: 10px;
}

.social-card__qr {
  min-width: 0;
  margin: 0;
  text-align: center;
}

.social-card__qr img {
  width: 132px;
  height: 132px;
  padding: 7px;
  background: var(--white);
  border-radius: 14px;
  object-fit: contain;
}

.social-card__qr figcaption {
  margin-top: 9px;
  color: #c8ddd6;
  font-size: 0.72rem;
  line-height: 1.3;
}

/* Home */
.home-hero {
  position: relative;
  overflow: hidden;
  padding-block: 76px 88px;
  background:
    radial-gradient(circle at 86% 10%, rgba(129, 204, 12, 0.19), transparent 28%),
    linear-gradient(135deg, #f8faf4 0%, #eaf4e3 100%);
}

.home-hero::before {
  position: absolute;
  top: -180px;
  right: -120px;
  width: 520px;
  height: 520px;
  content: "";
  border: 1px solid rgba(15, 76, 69, 0.14);
  border-radius: 50%;
}

.home-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: center;
  gap: 24px;
}

.home-hero__content {
  z-index: 1;
  grid-column: span 5;
}

.home-hero__content h1 {
  max-width: 11ch;
  margin-bottom: 24px;
}

.home-hero__content .lead {
  max-width: 52ch;
  margin-bottom: 32px;
}

.home-hero__meta {
  display: flex;
  flex-wrap: wrap;
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 650;
  gap: 10px 20px;
}

.home-hero__meta span::before {
  margin-right: 8px;
  color: var(--lime-dark);
  content: "●";
  font-size: 0.62em;
  vertical-align: 0.15em;
}

.home-hero__media {
  position: relative;
  grid-column: 6 / span 7;
  min-height: 590px;
}

.home-hero__media::after {
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 56%;
  height: 55%;
  content: "";
  background: var(--brand-lime);
  border-radius: var(--radius-media);
}

.home-hero__media img {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-media);
  object-fit: cover;
  object-position: 50% 42%;
  box-shadow: var(--shadow);
}

.hero-facts {
  display: grid;
  margin: 28px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 650;
  list-style: none;
  gap: 8px;
}

.hero-facts li::before {
  margin-right: 9px;
  color: var(--lime-dark);
  content: "●";
  font-size: 0.62em;
  vertical-align: 0.15em;
}

.hero-note {
  position: absolute;
  z-index: 2;
  bottom: 24px;
  left: -32px;
  max-width: 270px;
  padding: 18px 20px;
  color: var(--white);
  background: var(--primary-700);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.hero-note strong,
.hero-note span {
  display: block;
}

.hero-note strong {
  margin-bottom: 2px;
  font-family: var(--font-serif);
  font-size: 1.2rem;
}

.hero-note span {
  color: #d8ebe5;
  font-size: 0.82rem;
}

.trust-band {
  color: var(--white);
  background: var(--primary-700);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 38px;
  gap: 24px;
}

.trust-item {
  min-height: 122px;
  padding: 28px 28px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.trust-item:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  margin-bottom: 4px;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.18rem;
  line-height: 1.25;
}

.trust-item span {
  color: #cce0da;
  font-size: 0.86rem;
}

.statement-panel {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  gap: 64px;
}

.statement-mark {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  color: var(--ink-900);
  background: var(--brand-lime);
  border-radius: 50%;
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.1;
  text-align: center;
}

.statement-copy blockquote {
  margin: 0 0 20px;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.statement-copy p {
  max-width: 60ch;
  margin-bottom: 0;
  color: #cce0da;
}

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

.service-card,
.info-card,
.why-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease), border-color 200ms var(--ease);
}

.service-card:hover,
.info-card:hover,
.why-card:hover {
  border-color: #b7cbc2;
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 216px;
  color: var(--body);
  text-decoration: none;
}

.service-card__icon,
.service-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 26px;
  background: var(--mint);
  border-radius: 16px;
}

.service-card__icon img,
.service-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.service-card h3 {
  margin-bottom: 8px;
  font-size: 1.45rem;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.service-card > img:first-child {
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  padding: 10px;
  background: var(--mint);
  border-radius: 16px;
  object-fit: contain;
}

.service-card > a:last-child {
  position: relative;
  z-index: 1;
  align-self: flex-start;
  margin-top: auto;
  padding-top: 22px;
  font-weight: 750;
}

.service-card--notice::after {
  content: none;
}

.service-card--notice .notice {
  margin-top: auto;
}

.service-card::after {
  position: absolute;
  right: 24px;
  bottom: 22px;
  color: var(--primary-700);
  content: "↗";
  font-size: 1.25rem;
}

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

.feature-card {
  position: relative;
  display: flex;
  min-height: 370px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink-900);
  border-radius: var(--radius-media);
  isolation: isolate;
}

.feature-card > img {
  position: absolute;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.54;
  transition: transform 400ms var(--ease);
}

.feature-card::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(13, 49, 46, 0.06), rgba(13, 49, 46, 0.92));
}

.feature-card:hover > img {
  transform: scale(1.025);
}

.feature-card__content {
  align-self: end;
  width: 100%;
  padding: 32px;
}

.feature-card h3 {
  margin-bottom: 10px;
  color: var(--white);
}

.feature-card p {
  max-width: 48ch;
  margin-bottom: 20px;
  color: #e0ece8;
}

.feature-card a {
  color: var(--white);
}

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

.why-card {
  min-height: 245px;
}

.why-card__number {
  display: block;
  margin-bottom: 36px;
  color: var(--lime-dark);
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
}

.why-card h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.why-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.funds-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  padding: 42px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-media);
  gap: 42px;
}

.funds-panel h2 {
  margin-bottom: 12px;
}

.funds-panel p {
  margin-bottom: 0;
}

.funds-panel img {
  width: 100%;
  max-height: 210px;
  object-fit: contain;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 54px 58px;
  color: #dcebe5;
  background: var(--primary-700);
  border-radius: var(--radius-media);
  gap: 36px;
}

.cta-panel::after {
  position: absolute;
  right: -100px;
  bottom: -220px;
  width: 430px;
  height: 430px;
  content: "";
  border: 70px solid rgba(129, 204, 12, 0.15);
  border-radius: 50%;
}

.cta-panel > * {
  position: relative;
  z-index: 1;
}

.cta-panel h2 {
  margin-bottom: 10px;
  color: var(--white);
}

.cta-panel p {
  max-width: 58ch;
  margin-bottom: 0;
}

/* Interior pages */
.page-hero {
  padding-block: 86px 82px;
  background:
    radial-gradient(circle at 88% 20%, rgba(129, 204, 12, 0.19), transparent 25%),
    var(--mint);
}

.page-hero__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: center;
  gap: 24px;
}

.page-hero__content {
  grid-column: span 6;
}

.page-hero__content h1 {
  margin-bottom: 22px;
}

.page-hero__media {
  grid-column: 8 / span 5;
}

.page-hero__media img {
  width: 100%;
  max-height: 430px;
  border-radius: var(--radius-media);
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.breadcrumb {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.85rem;
  gap: 8px;
}

.breadcrumb a {
  font-weight: 650;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.mission-card {
  padding: 38px;
  color: var(--white);
  background: var(--primary-700);
  border-radius: var(--radius-card);
}

.mission-card:nth-child(2) {
  color: var(--ink-900);
  background: var(--brand-lime);
}

.mission-card h2,
.mission-card h3 {
  color: inherit;
}

.mission-card p:last-child {
  margin-bottom: 0;
}

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

.dentist-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
}

.dentist-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1.04;
  background: #edf1ee;
}

.dentist-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 300ms var(--ease);
}

.dentist-card:hover .dentist-card__image img {
  transform: scale(1.02);
}

.dentist-card__content {
  padding: 28px;
}

.dentist-card > img:first-child {
  width: 100%;
  aspect-ratio: 1 / 1.04;
  background: #edf1ee;
  object-fit: cover;
  object-position: center top;
}

.dentist-card > div:last-child {
  padding: 28px;
}

.dentist-card > div:last-child p:last-child {
  margin-bottom: 0;
}

.dentist-profile + .dentist-profile {
  margin-top: 96px;
  padding-top: 96px;
  border-top: 1px solid var(--border);
}

.dentist-profile > div:first-child {
  align-self: start;
}

.dentist-card__content h2,
.dentist-card__content h3 {
  margin-bottom: 8px;
  font-size: 1.55rem;
}

.dentist-card__qualifications {
  min-height: 46px;
  margin-bottom: 18px;
  color: var(--lime-dark);
  font-size: 0.82rem;
  font-weight: 750;
  line-height: 1.45;
}

.dentist-card details {
  border-top: 1px solid var(--border);
}

.dentist-card summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  cursor: pointer;
  color: var(--primary-700);
  font-weight: 750;
}

.dentist-card summary::after {
  content: "+";
  font-size: 1.3rem;
}

.dentist-card details[open] summary::after {
  content: "−";
}

.dentist-card details ul {
  padding-left: 20px;
  font-size: 0.91rem;
}

.dentist-card details li + li {
  margin-top: 8px;
}

.facility-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-areas:
    "surgery surgery scan xray"
    "airflow kids kids sterilisation";
  grid-auto-rows: clamp(205px, 17vw, 232px);
  gap: 20px;
}

.facility-card {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #edf1e9;
  border-radius: var(--radius-card);
}

.facility-card:nth-child(1) { grid-area: surgery; }
.facility-card:nth-child(2) { grid-area: scan; }
.facility-card:nth-child(3) { grid-area: airflow; }
.facility-card:nth-child(4) { grid-area: sterilisation; }
.facility-card:nth-child(5) { grid-area: kids; }
.facility-card:nth-child(6) { grid-area: xray; }

.facility-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms var(--ease);
}

.facility-card:nth-child(3) img,
.facility-card:nth-child(6) img {
  padding: 14px;
  background: var(--white);
  object-fit: contain;
}

.facility-card:hover img {
  transform: scale(1.025);
}

.facility-card figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 10px 13px;
  color: var(--white);
  background: rgba(15, 76, 69, 0.9);
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

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

.service-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  min-height: 112px;
  padding: 22px;
  color: var(--ink-900);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  text-decoration: none;
  gap: 16px;
  transition: transform 180ms var(--ease), border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}

.service-item:hover {
  color: var(--ink-900);
  border-color: #b5c9c0;
  box-shadow: var(--shadow-soft);
  transform: translateY(-3px);
}

.service-item .service-icon {
  width: 52px;
  height: 52px;
  margin: 0;
}

.service-item h2,
.service-item h3 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 750;
  letter-spacing: 0;
  line-height: 1.35;
}

.detail-list {
  display: grid;
  grid-template-columns: 1fr;
  margin: 0;
  padding: 8px 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
}

.detail-list > div {
  display: flex;
  align-items: baseline;
  min-width: 0;
  padding: 17px 0;
  border-bottom: 1px solid var(--border);
  gap: 9px;
}

.detail-list > div:last-child {
  border-bottom: 0;
}

.detail-list dt {
  flex: 0 0 78px;
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.detail-list dd {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  color: var(--ink-900);
  font-size: 0.94rem;
  line-height: 1.5;
}

.detail-list a {
  overflow-wrap: anywhere;
}

.contact-overview {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
  gap: clamp(44px, 5vw, 72px);
}

.contact-details-column {
  display: grid;
  min-width: 0;
  gap: 28px;
}

.contact-information h2 {
  margin-bottom: 28px;
}

.contact-hours h2 {
  margin-bottom: 28px;
}

.chinese-page,
.page-chinese {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", var(--font-sans);
}

.chinese-page h1,
.chinese-page h2,
.chinese-page h3,
.page-chinese h1,
.page-chinese h2,
.page-chinese h3 {
  font-family: "Noto Serif SC", "Songti SC", var(--font-serif);
}

.chinese-services {
  columns: 2;
  column-gap: 36px;
  padding: 0;
  list-style: none;
}

.chinese-services li {
  position: relative;
  break-inside: avoid;
  margin-bottom: 12px;
  padding: 14px 16px 14px 42px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.chinese-services li::before {
  position: absolute;
  top: 18px;
  left: 18px;
  color: var(--lime-dark);
  content: "✓";
  font-weight: 800;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
}

.contact-details {
  display: grid;
  gap: 18px;
}

.contact-card {
  padding: 22px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.contact-card span,
.contact-card strong,
.contact-card a {
  display: block;
}

.contact-card span {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-card strong,
.contact-card a {
  color: var(--ink-900);
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
}

.hours-list {
  margin: 0;
}

.hours-list div {
  display: flex;
  justify-content: space-between;
  padding-block: 12px;
  border-bottom: 1px solid var(--border);
  gap: 16px;
}

.hours-list dt {
  color: var(--muted);
}

.hours-list dd {
  margin: 0;
  color: var(--ink-900);
  font-weight: 750;
}

.map-frame {
  overflow: hidden;
  min-height: 520px;
  background: #dfe9e4;
  border: 0;
  border-radius: var(--radius-media);
  box-shadow: var(--shadow-soft);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
}

.form-panel {
  padding: 42px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-media);
  box-shadow: var(--shadow-soft);
}

.form-panel h2 {
  margin-bottom: 12px;
}

.form-panel__intro {
  margin-bottom: 30px;
  color: var(--muted);
}

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

.field {
  display: grid;
  gap: 7px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--ink-900);
  font-size: 0.9rem;
  font-weight: 750;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  color: var(--ink-900);
  background: var(--white);
  border: 1px solid var(--control-border);
  border-radius: var(--radius-sm);
  transition: border-color 160ms var(--ease), box-shadow 160ms var(--ease);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--primary-700);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(15, 76, 69, 0.15);
}

.field-hint {
  color: var(--muted);
  font-size: 0.78rem;
}

.field-errors,
.form-errors {
  color: var(--urgent);
  font-size: 0.86rem;
}

.form-errors {
  margin-bottom: 22px;
  padding: 16px 18px;
  background: #fff1ef;
  border-left: 4px solid var(--urgent);
  border-radius: 10px;
}

.form-errors ul {
  margin-bottom: 0;
  padding-left: 20px;
}

.form-privacy {
  margin: 18px 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Footer */
.site-footer {
  padding: 76px 0 30px;
  color: #cdded8;
  background: #102f2e;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 0.72fr 1fr 0.95fr;
  gap: 58px;
}

.site-footer h2 {
  margin-bottom: 20px;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  width: 260px;
  min-height: 76px;
  margin-bottom: 22px;
  padding: 12px;
  background: var(--white);
  border-radius: 12px;
}

.footer-logo img {
  width: 100%;
}

.site-footer__brand p {
  max-width: 42ch;
}

.footer-links,
.footer-contact {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 10px;
}

.footer-links a,
.footer-contact a,
.social-links a {
  color: #d8e6e1;
  text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover,
.social-links a:hover {
  color: var(--brand-lime);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.social-links a {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 0.8rem;
}

.footer-hours {
  margin: 0;
}

.footer-hours div {
  display: flex;
  justify-content: space-between;
  padding-block: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  gap: 12px;
}

.footer-hours dd {
  margin: 0;
  color: var(--white);
  font-weight: 700;
}

.footer-note {
  margin-top: 16px;
  color: #a8bdb6;
  font-size: 0.78rem;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 58px;
  padding-top: 24px;
  color: #9fb6af;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.78rem;
  gap: 24px;
}

.site-footer__bottom p {
  margin: 0;
}

.mobile-actions {
  display: none;
}

/* Motion */
.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 430ms var(--ease), transform 430ms var(--ease);
}

.reveal-ready [data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

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

  .site-header__inner {
    gap: 20px;
  }

  .brand,
  .brand img {
    width: 205px;
    flex-basis: 205px;
  }

  .header-phone {
    display: none;
  }

  .desktop-nav {
    gap: 16px;
  }

  .site-footer__grid {
    grid-template-columns: 1.35fr 0.65fr 1fr;
  }

  .site-footer__grid > section:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1040px) {
  .contact-overview {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 980px) {
  html {
    scroll-padding-top: 86px;
  }

  .utility-bar,
  .desktop-nav,
  .header-book {
    display: none;
  }

  .site-header__inner {
    min-height: 70px;
  }

  .site-header__actions {
    margin-left: auto;
  }

  .menu-toggle {
    display: block;
  }

  .home-hero__content {
    grid-column: span 6;
  }

  .home-hero__media {
    grid-column: 7 / span 6;
    min-height: 500px;
  }

  .hero-note {
    left: -18px;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .card-grid,
  .why-grid,
  .services-grid,
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .health-funds__layout {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 340px);
    gap: 40px;
  }

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

  .social-card--wechat {
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1fr) 148px;
  }

  .social-card__qr img {
    width: 148px;
    height: 148px;
  }

  .facility-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "surgery surgery"
      "scan xray"
      "airflow sterilisation"
      "kids kids";
    grid-auto-rows: 210px;
  }

  .split__content,
  .split--reverse .split__content {
    grid-column: span 6;
  }

  .split__media,
  .split--reverse .split__media {
    grid-column: 7 / span 6;
  }

  .split--reverse .split__content {
    order: 1;
  }

  .split--reverse .split__media {
    order: 2;
  }

  .page-hero__content {
    grid-column: span 7;
  }

  .page-hero__media {
    grid-column: 8 / span 5;
  }

  .contact-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 32px;
  }

  .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer__grid > section:last-child {
    grid-column: auto;
  }
}

@media (max-width: 767px) {
  body {
    padding-bottom: calc(58px + env(safe-area-inset-bottom));
  }

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

  .brand,
  .brand img {
    width: 188px;
    flex-basis: 188px;
  }

  .section {
    padding-block: 72px;
  }

  .section--compact {
    padding-block: 50px;
  }

  .section__header {
    display: block;
    margin-bottom: 34px;
  }

  .section__header .text-link,
  .section__header .button {
    margin-top: 12px;
  }

  .home-hero {
    padding-block: 54px 60px;
  }

  .home-hero__grid,
  .page-hero__grid,
  .split {
    grid-template-columns: 1fr;
  }

  .home-hero__content,
  .home-hero__media,
  .page-hero__content,
  .page-hero__media,
  .split__content,
  .split__media,
  .split--reverse .split__content,
  .split--reverse .split__media {
    grid-column: 1;
  }

  /* Match the specificity of the generic desktop split rules above. Without
     the full selector, their explicit 5/6-column placement wins the cascade
     and creates implicit columns on narrow screens. */
  .split > :first-child:not(.split__content):not(.home-hero__content):not(.page-hero__content),
  .split > :last-child:not(.split__media):not(.home-hero__media):not(.page-hero__media) {
    grid-column: 1;
  }

  .home-hero__content h1 {
    max-width: 12ch;
  }

  .home-hero__media {
    min-height: 360px;
    margin-top: 24px;
  }

  .home-hero__media::after {
    right: -10px;
    bottom: -10px;
  }

  .hero-note {
    right: 16px;
    bottom: 16px;
    left: 16px;
    max-width: none;
    padding: 14px 16px;
  }

  .trust-item {
    min-height: 132px;
    padding: 22px 18px;
  }

  .statement-panel {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .statement-mark {
    width: min(230px, 70%);
    justify-self: center;
  }

  .card-grid,
  .why-grid,
  .services-grid,
  .team-grid,
  .feature-grid,
  .mission-grid,
  .contact-grid,
  .funds-panel,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .health-funds__layout,
  .social-grid {
    grid-template-columns: 1fr;
  }

  .health-funds__visual {
    width: min(100%, 380px);
    aspect-ratio: 16 / 10;
    justify-self: center;
    margin-top: 12px;
  }

  .social-card--wechat {
    grid-column: 1;
  }

  .service-card,
  .why-card {
    min-height: 0;
  }

  .feature-card {
    min-height: 330px;
  }

  .funds-panel,
  .cta-panel,
  .form-panel {
    padding: 30px 24px;
  }

  .cta-panel .button-group {
    align-items: stretch;
  }

  .cta-panel .button {
    width: 100%;
  }

  .page-hero {
    padding-block: 58px;
  }

  .page-hero__media {
    margin-top: 20px;
  }

  .facility-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas:
      "surgery surgery"
      "scan xray"
      "airflow sterilisation"
      "kids kids";
    grid-auto-rows: 190px;
  }

  .dentist-profile + .dentist-profile {
    margin-top: 64px;
    padding-top: 64px;
  }

  .chinese-services {
    columns: 1;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 360px;
  }

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

  .field--full {
    grid-column: 1;
  }

  .site-footer {
    padding-top: 58px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .site-footer__bottom {
    display: grid;
    margin-top: 42px;
  }

  .mobile-actions {
    position: fixed;
    z-index: 250;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    min-height: calc(58px + env(safe-area-inset-bottom));
    padding-bottom: env(safe-area-inset-bottom);
    background: var(--white);
    border-top: 1px solid var(--border);
    box-shadow: 0 -8px 22px rgba(23, 59, 58, 0.12);
  }

  .mobile-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    color: var(--ink-900);
    font-size: 0.78rem;
    font-weight: 750;
    text-decoration: none;
    border-right: 1px solid var(--border);
    gap: 6px;
  }

  .mobile-actions a:nth-child(2) {
    color: var(--white);
    background: var(--primary-700);
  }

  .flash-region {
    top: 84px;
    right: 16px;
    width: calc(100vw - 32px);
  }
}

@media (max-width: 520px) {
  .container {
    width: calc(100% - 32px);
  }

  .brand,
  .brand img {
    width: 160px;
    flex-basis: 160px;
  }

  .site-header__inner {
    min-height: 64px;
  }

  .button-group {
    align-items: stretch;
  }

  .button-group .button {
    width: 100%;
  }

  .home-hero__media {
    min-height: 310px;
  }

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

  .trust-item strong {
    font-size: 1rem;
  }

  .trust-item span {
    font-size: 0.77rem;
  }

  .facility-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "surgery"
      "scan"
      "airflow"
      "sterilisation"
      "kids"
      "xray";
  }

  .detail-list {
    grid-template-columns: 1fr;
    padding: 22px;
  }

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

  .social-card__qr {
    justify-self: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .utility-bar,
  .site-header,
  .mobile-actions,
  .site-footer,
  .button,
  .flash-region {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .section {
    padding-block: 28px;
  }
}
