@font-face {
  font-family: "Alimama FangYuanTi";
  src:
    local("AlimamaFangYuanTiVF-Thin"),
    local("Alimama FangYuanTi VF Thin"),
    url("assets/fonts/AlimamaFangYuanTiVF-Thin.ttf") format("truetype");
  font-weight: 200 400;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: "MediBridge French Accents";
  src: url("assets/fonts/NotoSansSC-VF.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: block;
  unicode-range:
    U+00C0, U+00C2, U+00C6-00CB, U+00CE-00CF, U+00D4,
    U+00D9-00DC, U+00E0, U+00E2, U+00E6-00EB, U+00EE-00EF,
    U+00F4, U+00F9-00FC, U+00FF, U+0152-0153, U+0178;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/Manrope-VariableFont-wght.ttf") format("truetype");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-sans: "MediBridge French Accents", "Alimama FangYuanTi", "Alibaba PuHuiTi", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  --font-display: "MediBridge French Accents", "Alimama FangYuanTi", "Alibaba PuHuiTi", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  --bg-ivory: #FFFFFF;
  --bg-cream: #FFFFFF;
  --bg-soft: #FFFFFF;
  --white: #FFFFFF;
  --navy: #36322F;
  --navy-2: #36322F;
  --text: #36322F;
  --button-navy: #061D3D;
  --hero-title-family: var(--font-display);
  --hero-title-size: clamp(43px, 4.5vw, 62px);
  --hero-title-weight: 400;
  --hero-title-line-height: 1.05;
  --hero-title-letter-spacing: 0;
  --hero-title-color: #36322F;
  --hero-title-max-width: 860px;
  --hero-subtitle-family: var(--font-sans);
  --hero-subtitle-size: 14.4px;
  --hero-subtitle-weight: 300;
  --hero-subtitle-line-height: 1.68;
  --hero-subtitle-letter-spacing: 0;
  --hero-subtitle-color: #36322F;
  --hero-subtitle-max-width: 672px;
  --muted: #6F6A61;
  --bronze: #B98242;
  --feature-gold: #c9833a;
  --gold: #C6A064;
  --border-gold: #E8D7B8;
  --teal: #007C7A;
  --teal-soft: #5DAEAA;
  --medical-blue: #EAF1F5;
  --border-light: rgba(6, 29, 61, 0.12);
  --shadow-soft: 0 12px 34px rgba(6, 29, 61, 0.055);
  --site-max-width: 1400px;
  --site-gutter-desktop: 48px;
  --site-gutter-tablet: 32px;
  --site-gutter-mobile: 20px;
}

html[data-language="fr"] {
  --font-sans: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Manrope", "Helvetica Neue", Arial, sans-serif;
}

html[data-language="fr"] body {
  font-synthesis: none;
  font-kerning: normal;
}

/* Keep the wordmark consistent while French page copy uses Manrope. */
html[data-language="fr"] .brand-title {
  font-family: "Alimama FangYuanTi", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg-ivory);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

.container,
.site-container,
.page-container,
.section-container,
.nav-container,
.footer-container {
  width: 100%;
  max-width: var(--site-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--site-gutter-desktop);
  padding-right: var(--site-gutter-desktop);
  box-sizing: border-box;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.52);
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: 0 8px 30px rgba(6, 29, 61, 0.045);
  backdrop-filter: blur(18px) saturate(132%);
  -webkit-backdrop-filter: blur(18px) saturate(132%);
  transition: background-color 320ms ease, border-color 320ms ease, box-shadow 320ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.9);
  border-bottom-color: rgba(54, 50, 47, 0.1);
  box-shadow: 0 10px 32px rgba(6, 29, 61, 0.075);
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .site-header {
    background: rgba(255, 255, 255, 0.82);
  }
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 250px;
  gap: 10px;
}

.brand-mark {
  width: 86px;
  height: auto;
}

.brand-name {
  display: grid;
  gap: 1px;
  min-width: 150px;
}

.brand-title {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1;
  white-space: nowrap;
}

.brand-subtitle {
  color: var(--navy-2);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.15;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
}

.main-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  font-size: 10px;
  font-weight: 400;
  color: var(--navy-2);
}

.main-nav a {
  position: relative;
  padding: 27px 0 23px;
  white-space: nowrap;
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 17px;
  height: 1px;
  background: var(--gold);
}

.language {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  color: var(--navy);
  font-size: 10px;
  font-weight: 400;
}

.language-option {
  appearance: none;
  border: 0;
  padding: 0;
  background: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  transition: color 180ms ease;
}

.language-option.active,
.language-option:hover {
  color: var(--feature-gold);
}

.language-separator {
  color: rgba(54, 50, 47, 0.38);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 4px;
  border: 1px solid transparent;
  padding: 13px 22px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(6, 29, 61, 0.12);
}

.button-primary,
.header-cta {
  background: var(--button-navy);
  color: var(--white);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.62);
  border-color: var(--bronze);
  color: var(--navy);
}

.hero {
  min-height: 370px;
  background-image:
    linear-gradient(to right, rgba(251, 248, 242, 0.96) 0%, rgba(251, 248, 242, 0.84) 34%, rgba(251, 248, 242, 0.18) 68%, rgba(251, 248, 242, 0.02) 100%),
    url("assets/hero-bg.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.hero-grid {
  display: block;
  min-height: 370px;
}

.hero-copy {
  padding: 62px 16px 42px 0;
}

.eyebrow,
.feature-label {
  margin: 0 0 17px;
  color: var(--feature-gold, var(--bronze));
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.27em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.home-hero h1,
.feature-hero h1 {
  margin: 0;
  max-width: var(--hero-title-max-width);
  color: var(--hero-title-color);
  font-family: var(--hero-title-family);
  font-style: normal !important;
  font-synthesis-style: none;
  font-size: var(--hero-title-size);
  font-weight: var(--hero-title-weight);
  letter-spacing: var(--hero-title-letter-spacing);
  line-height: var(--hero-title-line-height);
  text-align: left;
}

.journey-title,
.cta-title {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-style: normal !important;
  font-synthesis-style: none;
  font-weight: 500;
  line-height: 0.97;
}

.gold-rule {
  width: 58px;
  height: 2px;
  margin: 26px 0 26px;
  background: var(--bronze);
}

.hero p,
.page-hero p,
.home-hero p,
.feature-hero-copy > p:not(.feature-label) {
  max-width: var(--hero-subtitle-max-width);
  color: var(--hero-subtitle-color);
  font-family: var(--hero-subtitle-family);
  font-size: var(--hero-subtitle-size);
  font-weight: var(--hero-subtitle-weight);
  letter-spacing: var(--hero-subtitle-letter-spacing);
  line-height: var(--hero-subtitle-line-height);
  text-align: left;
}

.hero p {
  margin: 0 0 32px;
}

.hero-nowrap {
  white-space: nowrap;
}

.hero-media {
  display: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 370px;
  object-fit: cover;
  object-position: center right;
}

.section {
  padding: 42px 0;
}

.featured {
  padding-top: 22px;
  background: linear-gradient(180deg, var(--bg-ivory), var(--bg-cream));
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin: 0 0 24px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.23em;
  text-align: center;
  text-transform: uppercase;
}

.section-title::before,
.section-title::after {
  content: "";
  width: min(120px, 15vw);
  height: 1px;
  background: var(--border-gold);
}

.journey-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  margin-bottom: 32px;
}

.journey-row:last-child {
  margin-bottom: 0;
}

.journey-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid rgba(232, 215, 184, 0.65);
  box-shadow: none;
}

.journey-content {
  max-width: 620px;
}

.package-label {
  margin: 0 0 8px;
  color: var(--bronze);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.journey-title {
  white-space: nowrap;
  font-size: clamp(32px, 2.7vw, 40px);
}

.journey-subtitle {
  margin: 5px 0 16px;
  color: var(--bronze);
  font-size: 14.5px;
  font-weight: 700;
}

.journey-description {
  max-width: 620px;
  margin: 0;
  color: var(--text);
  font-size: 13.5px;
  line-height: 1.62;
  text-align: justify;
  text-align-last: left;
  hyphens: auto;
}

.journey-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.highlight {
  display: grid;
  justify-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}

.icon {
  width: 35px;
  height: 35px;
  color: var(--navy);
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.quote-banner {
  min-height: 128px;
  display: grid;
  place-items: center;
  background-image: url("assets/quote-health-choice.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-top: 1px solid rgba(232, 215, 184, 0.58);
  border-bottom: 1px solid rgba(232, 215, 184, 0.58);
}

.quote-copy {
  color: var(--white);
  text-align: center;
}

.quote-copy blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(25px, 2.45vw, 34px);
  font-style: italic !important;
  line-height: 1;
}

.quote-copy p {
  margin: 7px 0 0;
  font-size: 12px;
  font-weight: 700;
}

.included {
  padding: 28px 0 28px;
  background: var(--bg-ivory);
}

.included-card {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  border: 1px solid var(--border-gold);
  background: #FFFFFF;
  box-shadow: var(--shadow-soft);
}

.included-item {
  min-height: 100px;
  display: grid;
  place-items: center;
  gap: 9px;
  padding: 14px 10px;
  border-right: 1px solid rgba(6, 29, 61, 0.08);
  color: var(--navy);
  font-size: 9.5px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}

.included-item:last-child {
  border-right: 0;
}

.cta-section {
  overflow: hidden;
  background: var(--bg-soft);
  border-top: 1px solid rgba(232, 215, 184, 0.54);
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(470px, 0.95fr) minmax(560px, 1.05fr);
  align-items: center;
  min-height: 184px;
}

.cta-copy {
  padding: 22px 34px 20px 0;
}

.cta-title {
  max-width: 430px;
  font-size: clamp(27px, 2.5vw, 34px);
  line-height: 0.98;
}

.cta-copy p {
  max-width: 445px;
  margin: 9px 0 0;
  font-size: 9.2px;
  line-height: 1.38;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.cta-actions .button {
  min-height: 29px;
  padding: 9px 18px;
  font-size: 9px;
}

.cta-media {
  height: 100%;
  min-height: 184px;
  margin-right: 0;
}

.cta-media img {
  width: 100%;
  height: 100%;
  min-height: 184px;
  object-fit: cover;
  object-position: center;
}

/* Health Journeys personalization copy over the supplied full-width image. */
.health-personalization-banner {
  height: 295px;
  min-height: 295px;
  display: flex;
  align-items: center;
  background-color: #F7F2EC;
  background-image: url("assets/health-journey-personalization-bg.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.health-personalization-banner .cta-grid {
  width: 100%;
  height: 295px;
  min-height: 295px;
  display: flex;
  align-items: center;
}

.health-personalization-banner .cta-copy {
  width: min(70%, 900px);
  padding-top: 38px;
  padding-right: 28px;
  padding-bottom: 38px;
}

.health-personalization-banner .cta-title {
  width: max-content;
  max-width: none;
  font-size: 1em;
  white-space: nowrap;
}

.health-personalization-text {
  font-size: clamp(27px, 2.5vw, 34px);
  width: 100%;
  max-width: 100%;
}

.health-personalization-body {
  width: 17.35em;
  max-width: 100%;
}

.health-personalization-body > p {
  width: 100%;
  max-width: 100%;
  margin: 9px 0 0;
  font-size: 11.04px;
  line-height: 1.38;
}

@media (max-width: 1023px) {
  .health-personalization-banner {
    height: 295px;
    min-height: 295px;
    background-position: 62% center;
  }

  .health-personalization-banner .cta-grid {
    height: 295px;
    min-height: 295px;
  }

  .health-personalization-banner .cta-copy {
    width: min(76%, 820px);
    padding-top: 34px;
    padding-bottom: 34px;
  }
}

@media (max-width: 767px) {
  .health-personalization-banner {
    height: 295px;
    min-height: 295px;
    max-height: 295px;
    align-items: center;
    background-position: 68% center;
  }

  .health-personalization-banner .cta-grid {
    height: 295px;
    min-height: 295px;
    max-height: 295px;
    align-items: center;
  }

  .health-personalization-banner .cta-copy {
    width: 100%;
    padding-top: 24px;
    padding-right: 0;
    padding-bottom: 24px;
  }

  .health-personalization-banner .cta-title {
    width: auto;
    max-width: 100%;
    white-space: normal;
  }

  .health-personalization-text {
    width: 100%;
  }

  .health-personalization-body {
    width: 100%;
  }
}

.site-footer {
  background: var(--bg-ivory);
  border-top: 1px solid rgba(6, 29, 61, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.05fr) repeat(4, minmax(120px, 0.72fr));
  gap: 30px;
  padding: 38px 0 24px;
}

.footer-brand {
  min-width: 0;
  margin-bottom: 14px;
}

.footer-description {
  max-width: 300px;
  margin: 0;
  color: var(--text);
  font-size: 12px;
  line-height: 1.72;
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.socials a {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(6, 29, 61, 0.28);
  border-radius: 50%;
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
}

.footer-heading {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 9px;
  color: var(--text);
  font-size: 12px;
}

.footer-bottom {
  padding: 0 0 24px;
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.page-hero {
  padding: 110px 0 72px;
  background: linear-gradient(90deg, var(--bg-ivory), var(--bg-cream));
  border-bottom: 1px solid rgba(232, 215, 184, 0.6);
}

.page-hero p {
  margin: 24px 0 0;
}

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

.placeholder-card {
  min-height: 210px;
  padding: 30px;
  border: 1px solid var(--border-gold);
  background: #FFFFFF;
}

.placeholder-card h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
}

.placeholder-card p {
  margin: 0;
  color: var(--text);
  line-height: 1.68;
}

.home-page {
  background: var(--bg-soft);
}

.home-hero {
  position: relative;
  width: 100%;
  min-height: 568px;
  aspect-ratio: 2600 / 1204;
  overflow: hidden;
  background: var(--bg-soft);
}

.home-hero-carousel {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.home-hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity 1300ms ease-in-out;
  will-change: transform, opacity;
}

.home-hero-slide.active {
  opacity: 1;
  animation: homeHeroSlowZoom 5200ms ease-in-out forwards;
}

.home-hero-slide.exiting {
  opacity: 0;
  animation: none;
}

@keyframes homeHeroSlowZoom {
  from {
    transform: scale(1.015) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.055) translate3d(-0.4%, -0.2%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero-slide,
  .home-hero-slide.active {
    animation: none;
    transform: scale(1.015);
    transition: opacity 600ms ease;
  }
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(251, 248, 242, 0.08) 0%, rgba(251, 248, 242, 0.1) 44%, rgba(251, 248, 242, 0) 72%);
  pointer-events: none;
}

.home-hero-inner {
  position: relative;
  z-index: 1;
  min-height: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.home-hero-copy {
  max-width: 1040px;
  padding-top: 52px;
}

.home-hero h1 {
  max-width: 1040px;
}

.home-philosophy h2,
.home-heading,
.hospital-tech-home h2,
.begin-journey-home h2,
.journey-card-body h3,
.why-card h3 {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 500;
}

.home-hero p {
  max-width: 920px;
  margin: 34px 0 0;
  white-space: nowrap;
}

.home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.home-hero-dots {
  width: max-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
}

.home-hero-dot {
  display: block;
  width: 24px;
  height: 3px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(54, 50, 47, 0.34);
  cursor: pointer;
  transition: background-color 180ms ease, opacity 180ms ease;
}

.home-hero-dot.active,
.home-hero-dot:hover {
  background: var(--hero-title-color);
}

.home-actions .button,
.home-wide-button,
.begin-journey-home .button {
  min-height: 39px;
  padding: 12px 24px;
  font-size: 10px;
}

.home-philosophy {
  display: block;
  padding: 32px 0 18px;
  color: inherit;
  text-align: center;
  background: var(--bg-soft);
}

.home-label,
.home-label-link {
  display: inline-block;
  margin: 0;
  color: var(--navy);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.2em;
  line-height: 1;
  text-transform: uppercase;
}

.home-label-link {
  color: var(--bronze);
}

.home-star {
  display: block;
  margin: 9px 0 10px;
  color: var(--bronze);
  font-size: 9px;
  line-height: 1;
}

.home-philosophy h2 {
  font-size: clamp(28px, 3.1vw, 40px);
  line-height: 1.12;
}

.home-section-copy {
  max-width: 760px;
  margin: 17px auto 0;
  color: var(--navy-2);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.7;
  text-align: center;
}

.keyword-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.keyword-row i {
  width: 4px;
  height: 4px;
  align-self: center;
  border-radius: 50%;
  background: var(--bronze);
}

.home-section {
  padding: 25px 0 24px;
}

.home-section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  margin: 0 0 24px;
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-align: center;
  text-transform: uppercase;
}

.home-section-title::before,
.home-section-title::after {
  content: "";
  width: min(250px, 28vw);
  height: 1px;
  background: var(--border-gold);
}

.home-section-title::after {
  box-shadow: -50vw 19px 0 -49.8vw var(--bronze);
}

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

.journey-card-home {
  overflow: hidden;
  border: 1px solid rgba(6, 29, 61, 0.12);
  border-radius: 7px;
  background: #FFFFFF;
  box-shadow: 0 16px 34px rgba(6, 29, 61, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.journey-card-home:hover,
.why-card:hover,
.program-item:hover,
.included-feature-item:hover,
.collection-row:hover,
.signature-card:hover,
.about-feature-card:hover {
  transform: translateY(-2px);
  border-color: rgba(185, 130, 66, 0.45);
  box-shadow: 0 18px 38px rgba(6, 29, 61, 0.1);
}

.journey-card-home img {
  width: 100%;
  aspect-ratio: 16 / 9.5;
  object-fit: cover;
}

.journey-card-body {
  position: relative;
  min-height: 102px;
  padding: 24px 82px 20px 28px;
}

.journey-card-body h3 {
  font-size: 24px;
  line-height: 1.15;
}

.journey-card-body p {
  margin: 16px 0 0;
  color: var(--bronze);
  font-size: 12px;
  font-weight: 700;
}

.journey-card-body span {
  position: absolute;
  right: 30px;
  bottom: 24px;
  color: var(--bronze);
  font-size: 23px;
}

.home-note {
  margin: 28px 0 0;
  color: var(--navy);
  font-size: 12.5px;
  font-weight: 700;
  text-align: center;
}

.featured-programs-home {
  text-align: center;
}

.program-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin: 32px auto 24px;
  max-width: 910px;
}

.program-item {
  display: grid;
  justify-items: center;
  gap: 13px;
  min-height: 106px;
  padding: 2px 19px 0;
  border-right: 1px solid rgba(6, 29, 61, 0.14);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.42;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.program-item:last-child {
  border-right: 0;
}

.home-icon {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: var(--navy);
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-icon .accent {
  stroke: var(--bronze);
}

.home-wide-button {
  min-width: 330px;
  background: transparent;
}

.why-china-home {
  padding-top: 4px;
  text-align: center;
}

.home-heading {
  margin-top: 10px;
  font-size: clamp(27px, 3vw, 36px);
  line-height: 1.13;
}

.why-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 28px;
}

.why-card {
  min-height: 168px;
  padding: 23px 20px 19px;
  border: 1px solid rgba(6, 29, 61, 0.12);
  border-radius: 7px;
  background: #FFFFFF;
  color: inherit;
  text-align: center;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.why-card .home-icon {
  width: 35px;
  height: 35px;
  margin: 0 auto 12px;
}

.why-card h3 {
  font-size: 20px;
  line-height: 1.18;
}

.why-card p {
  margin: 13px 0 0;
  color: var(--navy-2);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.55;
}

.hospital-tech-home {
  position: relative;
  padding: 54px 0 60px;
  background-image: url("assets/hospital-tech-bg.png");
  background-position: center;
  background-size: cover;
  text-align: center;
}

.hospital-tech-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(251, 248, 242, 0.08);
}

.hospital-tech-content {
  position: relative;
  z-index: 1;
}

.hospital-tech-home h2 {
  margin-top: 14px;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.08;
}

.hospital-tech-home p {
  max-width: 675px;
  margin: 24px auto 0;
  color: var(--navy-2);
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.7;
}

.hospital-tech-home p + p {
  margin-top: 14px;
}

.hospital-tech-home .button {
  margin-top: 26px;
}

.begin-journey-home {
  padding: 34px 0 32px;
  background-image: url("assets/begin-journey.png");
  background-position: center;
  background-size: cover;
}

.begin-journey-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 40px;
}

.begin-journey-home h2 {
  font-size: clamp(33px, 4vw, 47px);
  line-height: 1.08;
}

.begin-journey-home p {
  max-width: 390px;
  margin: 26px 0 0;
  color: var(--navy-2);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.7;
}

.featured-page {
  --feature-navy: #36322F;
  --feature-gold: #c9833a;
  --feature-border: rgba(9, 43, 85, 0.22);
  --feature-border-soft: rgba(9, 43, 85, 0.14);
  background: #FFFFFF;
  color: var(--feature-navy);
}

.feature-hero {
  min-height: 520px;
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(to right, rgba(251,248,243,0.96) 0%, rgba(251,248,243,0.78) 34%, rgba(251,248,243,0.12) 68%, rgba(251,248,243,0.04) 100%),
    linear-gradient(to bottom, rgba(251,248,243,0) 72%, #FFFFFF 100%),
    url("assets/feature-hero.png");
  background-position: center right;
  background-size: cover;
  background-repeat: no-repeat;
}

.feature-hero-inner {
  display: flex;
  align-items: center;
  min-height: 520px;
}

.feature-hero-copy {
  max-width: 1100px;
  padding-top: 30px;
}

.feature-label {
  margin-bottom: 14px;
}

.feature-hero h1 {
  max-width: 1100px;
  white-space: nowrap;
}

.feature-panel h2,
.collection-copy h3 {
  margin: 0;
  color: var(--feature-navy);
  font-family: var(--font-display);
  font-weight: 500;
}

.feature-rule {
  width: 46px;
  height: 1px;
  margin: 18px 0 16px;
  background: var(--feature-gold);
}

.feature-hero-copy > p:not(.feature-label) {
  margin: 0;
}

.feature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 26px;
}

.feature-actions.centered {
  justify-content: center;
  margin-top: 34px;
}

.feature-actions .button {
  min-width: 228px;
  min-height: 38px;
  padding: 12px 24px;
  font-size: 9.5px;
}

.feature-card-shell {
  padding: 20px 0 0;
}

.included-feature {
  margin-top: -20px;
}

.feature-panel {
  border: 1px solid var(--feature-border);
  border-radius: 8px;
  background: #FFFFFF;
  padding: 32px 36px;
}

.feature-panel h2 {
  font-size: clamp(33px, 3.5vw, 46px);
  line-height: 1.12;
  text-align: center;
}

.feature-subtitle {
  max-width: 850px;
  margin: 14px auto 28px;
  color: var(--feature-navy);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}

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

.included-feature-item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 28px;
  min-height: 132px;
  border: 1px solid var(--feature-border-soft);
  border-radius: 8px;
  padding: 26px 32px;
  background: #FFFFFF;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.feature-icon-circle {
  width: 78px;
  height: 78px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(201, 131, 58, 0.42);
  border-radius: 50%;
  color: var(--feature-gold);
}

.feature-icon-circle.small {
  width: 58px;
  height: 58px;
}

.feature-icon-circle.tiny {
  width: 54px;
  height: 54px;
  margin: 0 auto 15px;
}

.feature-icon-circle svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-icon-circle.small svg,
.feature-icon-circle.tiny svg {
  width: 30px;
  height: 30px;
}

.included-feature-item h3,
.promise-grid h3 {
  margin: 0;
  color: var(--feature-navy);
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 500;
  line-height: 1.14;
}

.included-feature-item p,
.promise-grid p {
  margin: 12px 0 0;
  color: var(--feature-navy);
  font-size: 12.2px;
  font-weight: 700;
  line-height: 1.55;
}

.collections-feature .feature-panel {
  padding-top: 28px;
}

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

.collection-row {
  display: grid;
  grid-template-columns: 276px 58px minmax(250px, 0.72fr) minmax(340px, 1fr);
  align-items: center;
  gap: 18px;
  min-height: 0;
  border: 1px solid var(--feature-border-soft);
  border-radius: 8px;
  padding: 7px 18px 7px 14px;
  background: #FFFFFF;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.collection-row img {
  width: 100%;
  height: auto;
  aspect-ratio: 343 / 160;
  border-radius: 4px;
  object-fit: cover;
  object-position: center center;
}

.collection-copy {
  min-width: 0;
}

@media (min-width: 1161px) {
  .collection-row > .feature-icon-circle.small,
  .collection-row > .collection-copy {
    transform: translateX(25px);
  }
}

.collection-copy h3 {
  font-size: 32px;
  line-height: 1.12;
  white-space: nowrap;
}

.collection-copy p {
  max-width: 255px;
  margin: 13px 0 0;
  color: var(--feature-navy);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
}

.collection-row:nth-child(4) .collection-copy p {
  max-width: 260px;
}

.collection-row ul {
  columns: 2;
  column-gap: 18px;
  margin: 0;
  padding-left: 16px;
  color: var(--feature-navy);
  font-size: 12.42px;
  font-weight: 700;
  line-height: 1.82;
  overflow-x: auto;
}

.collection-row li {
  white-space: nowrap;
}

.collection-row li.collection-item-two-line {
  white-space: normal;
}

.collection-row li::marker {
  color: var(--feature-gold);
}

.signature-feature .feature-panel {
  padding-left: 24px;
  padding-right: 24px;
}

.signature-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.signature-card {
  position: relative;
  overflow: hidden;
  min-height: 286px;
  border: 1px solid rgba(6, 29, 61, 0.12);
  border-radius: 4px;
  color: #FFFFFF;
  cursor: pointer;
  box-shadow: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.signature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(0,0,0,0.84) 0%, rgba(0,0,0,0.46) 40%, rgba(0,0,0,0) 74%);
  pointer-events: none;
}

.signature-card img {
  width: 100%;
  height: 100%;
  min-height: 286px;
  object-fit: cover;
  object-position: center center;
}

.signature-card-copy {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 16px;
  z-index: 2;
  text-align: center;
}

.signature-card-copy h3 {
  margin: 0;
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.08;
}

.signature-card-copy p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 9.5px;
  font-weight: 700;
  line-height: 1.35;
}

.promise-feature {
  padding-bottom: 30px;
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 30px;
}

.promise-grid article {
  min-height: 178px;
  padding: 0 28px;
  border-right: 1px solid var(--feature-border-soft);
  text-align: center;
}

.promise-grid article:last-child {
  border-right: 0;
}

.promise-grid h3 {
  color: var(--feature-gold);
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 700;
}

.promise-grid p {
  font-size: 12px;
}

@media (max-width: 767px) {
  .feature-panel {
    padding: 24px 18px;
  }

  .feature-panel h2 {
    font-size: 30px;
  }

  .included-feature-grid,
  .promise-grid {
    grid-template-columns: 1fr;
  }

  .included-feature-item {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 14px;
    padding: 22px;
    text-align: center;
  }

  .collection-row {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 14px;
    text-align: center;
  }

  .collection-row img {
    height: auto;
    aspect-ratio: 343 / 160;
  }

  .collection-copy h3 {
    white-space: normal;
  }

  .collection-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .collection-row ul {
    columns: 1;
    justify-self: stretch;
    text-align: left;
  }

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

  .promise-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--feature-border-soft);
    padding: 20px 0;
  }

  .promise-grid article:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 1160px) {
  .header-inner {
    flex-wrap: wrap;
    gap: 12px 24px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .main-nav a {
    padding: 8px 0 14px;
  }

  .main-nav a.active::after {
    bottom: 6px;
  }

  .included-card {
    grid-template-columns: repeat(4, 1fr);
  }

  .included-item:nth-child(4) {
    border-right: 0;
  }
}

@media (max-width: 1050px) {
  .main-nav {
    display: none;
  }

  .about-story-row > h2 {
    margin-left: 0;
    margin-right: 0;
  }

  .about-difference-grid {
    gap: 10px;
  }

  .about-feature-card {
    padding-right: 8px;
    padding-left: 8px;
  }

  .health-personalization-banner .cta-title {
    width: 100%;
    max-width: 100%;
    white-space: normal;
  }
}

@media (max-width: 767px) {
  .collection-row {
    grid-template-columns: 1fr;
  }

  .collection-row > ul {
    grid-column: auto;
    columns: 1;
  }

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

@media (max-width: 420px) {
  .signature-grid {
    grid-template-columns: 1fr;
  }
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.2);
}

.floating-whatsapp svg {
  display: block;
  width: 32px;
  height: 32px;
  fill: currentColor;
}

@media (max-width: 767px) {
  .floating-whatsapp {
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom));
    width: 50px;
    height: 50px;
  }

  .floating-whatsapp svg {
    width: 29px;
    height: 29px;
  }
}

/*
 * Responsive overlap repair.
 * Keep the desktop composition unchanged; only let compact layouts grow with
 * wrapped Hero content and keep the existing navigation available.
 */
.mobile-nav-panel {
  display: contents;
}

@media (max-width: 1050px) {
  .header-inner {
    position: relative;
    justify-content: space-between;
  }

  .nav-toggle {
    position: relative;
    z-index: 2;
    display: inline-flex;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-left: auto;
    padding: 0;
    border: 1px solid rgba(6, 29, 61, 0.18);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--navy);
    cursor: pointer;
  }

  .nav-toggle span {
    display: block;
    width: 19px;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .site-header.menu-open .nav-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .site-header.menu-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.menu-open .nav-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .mobile-nav-panel {
    position: absolute;
    top: calc(100% - 1px);
    right: var(--site-gutter-desktop);
    left: var(--site-gutter-desktop);
    z-index: 30;
    display: none;
    max-height: calc(100vh - var(--site-header-height, 95px) - 20px);
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding: 22px;
    border: 1px solid rgba(6, 29, 61, 0.1);
    border-radius: 0 0 6px 6px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 18px 36px rgba(6, 29, 61, 0.13);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .site-header.menu-open .mobile-nav-panel {
    display: flex;
  }

  .mobile-nav-panel .main-nav {
    display: flex;
    flex: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .mobile-nav-panel .main-nav a {
    padding: 11px 0;
    font-size: 12px;
  }

  .mobile-nav-panel .main-nav a.active::after {
    bottom: 6px;
  }

  .mobile-nav-panel .language {
    align-self: flex-start;
  }

  .mobile-nav-panel .header-cta {
    align-self: flex-start;
  }

  .hero,
  .feature-hero,
  .whychina-hero,
  .about-hero,
  .faq-hero,
  .consultation-hero,
  .hospital-hero,
  .news-hero {
    height: auto;
    min-height: 600px;
    aspect-ratio: auto;
  }

  .hero-grid,
  .feature-hero-inner,
  .whychina-hero-inner,
  .about-hero-inner,
  .faq-hero-content,
  .consultation-hero-inner,
  .hospital-hero-inner,
  .news-hero-inner {
    height: auto;
    min-height: 600px;
    box-sizing: border-box;
  }

  .hero-copy,
  .feature-hero-copy,
  .whychina-hero-copy,
  .about-hero-inner,
  .faq-hero-content,
  .consultation-hero-copy,
  .hospital-hero-copy,
  .news-hero-copy {
    box-sizing: border-box;
    padding-bottom: 64px;
  }

  .faq-hero-content {
    height: auto;
  }

  .included-feature {
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  .mobile-nav-panel {
    right: var(--site-gutter-mobile);
    left: var(--site-gutter-mobile);
  }

  .mobile-nav-panel .header-cta {
    width: 100%;
  }
}

@media (max-width: 1023px) {
  .container,
  .site-container,
  .page-container,
  .section-container,
  .nav-container,
  .footer-container {
    padding-left: var(--site-gutter-tablet);
    padding-right: var(--site-gutter-tablet);
  }

  .hero-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .cta-copy {
    padding-right: 0;
  }

  .journey-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .journey-row.reverse .journey-content {
    order: 2;
  }

  .journey-row.reverse .journey-media {
    order: 1;
  }

  .journey-title {
    white-space: normal;
  }

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

  .home-hero,
  .home-hero-inner {
    min-height: 520px;
  }

  .home-card-grid,
  .begin-journey-inner {
    grid-template-columns: 1fr;
  }

  .program-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 0;
  }

  .program-item:nth-child(3) {
    border-right: 0;
  }

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

  .hospital-tech-home {
    padding: 48px 0;
  }
}

@media (max-width: 767px) {
  .container,
  .site-container,
  .page-container,
  .section-container,
  .nav-container,
  .footer-container {
    padding-left: var(--site-gutter-mobile);
    padding-right: var(--site-gutter-mobile);
  }

  .header-inner {
    min-height: 74px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 62px;
  }

  .brand-title {
    font-size: 18px;
  }

  .brand-subtitle {
    font-size: 7px;
  }

  .header-cta {
    display: none;
  }

  .main-nav {
    gap: 16px;
    font-size: 11px;
  }

  .hero-copy {
    padding-top: 66px;
    padding-bottom: 58px;
  }

  .hero-media,
  .hero-media img {
    min-height: 360px;
  }

  .section {
    padding: 52px 0;
  }

  .section-title {
    gap: 14px;
    font-size: 13px;
    letter-spacing: 0.16em;
  }

  .journey-highlights,
  .included-card {
    grid-template-columns: repeat(2, 1fr);
  }

  .included-item:nth-child(2),
  .included-item:nth-child(6) {
    border-right: 0;
  }

  .journey-title,
  .cta-title {
    font-size: 40px;
  }

  .journey-description {
    font-size: 14.5px;
  }

  .quote-banner {
    min-height: 118px;
  }

  .footer-grid,
  .placeholder-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .home-hero,
  .home-hero-inner {
    min-height: 620px;
  }

  .home-hero::after {
    background: linear-gradient(180deg, rgba(251, 248, 242, 0.88) 0%, rgba(251, 248, 242, 0.58) 48%, rgba(251, 248, 242, 0.16) 100%);
  }

  .home-hero-slide {
    object-position: 68% center;
  }

  .home-hero-copy {
    max-width: var(--hero-title-max-width);
    padding-top: 20px;
  }

  .home-hero p {
    margin-top: 22px;
    white-space: normal;
  }

  .home-actions {
    gap: 12px;
    margin-top: 24px;
  }

  .home-hero-dots {
    gap: 8px;
    margin-top: 24px;
  }

  .home-hero-dot {
    width: 22px;
  }

  .home-actions .button,
  .home-wide-button,
  .begin-journey-home .button {
    width: 100%;
    min-width: 0;
  }

  .home-philosophy {
    padding-top: 28px;
  }

  .home-philosophy h2,
  .home-heading,
  .hospital-tech-home h2,
  .begin-journey-home h2 {
    font-size: 30px;
  }

  .keyword-row {
    gap: 9px;
    font-size: 10px;
  }

  .home-section-title {
    gap: 14px;
    font-size: 13px;
    letter-spacing: 0.16em;
  }

  .journey-card-body {
    padding: 20px 58px 18px 20px;
  }

  .journey-card-body h3 {
    font-size: 22px;
  }

  .program-row,
  .why-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .program-item {
    border-right: 0;
    border-bottom: 1px solid rgba(6, 29, 61, 0.1);
    padding-bottom: 18px;
  }

  .hospital-tech-home {
    padding: 42px 0;
  }

  .begin-journey-home {
    padding: 34px 0;
  }
}
/* Why China page */
.whychina-page {
  --wc-accent: var(--feature-gold);
  --wc-border: rgba(54, 50, 47, 0.14);
  --wc-rule: rgba(54, 50, 47, 0.13);
  background: #FFFFFF;
  color: var(--text);
}

.whychina-page svg {
  width: 37px;
  height: 37px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.whychina-eyebrow,
.whychina-intro h2,
.whychina-modern-intro h2,
.whychina-perceptions h3,
.whychina-modern-card h3,
.whychina-wellness-grid h3 {
  font-family: var(--font-sans);
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.whychina-hero {
  aspect-ratio: 1981 / 794;
  min-height: 0;
  background-image: url("assets/why-china-hero.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  border-bottom: 1px solid rgba(6, 29, 61, 0.08);
}

.whychina-hero-inner {
  height: 100%;
  display: flex;
  align-items: center;
}

.whychina-hero-copy {
  max-width: 690px;
  padding-top: 28px;
}

.whychina-eyebrow {
  margin: 0 0 24px;
  color: var(--wc-accent);
  font-size: 11px;
}

.whychina-hero h1,
.whychina-architecture h2,
.whychina-wellness-card h2,
.whychina-cta-copy h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0;
}

.whychina-hero h1 {
  max-width: 720px;
  font-size: clamp(49px, 5vw, 72px);
  line-height: 1.04;
}

.whychina-hero h1 span,
.whychina-architecture h2 span,
.whychina-cta-copy h2 span {
  color: var(--wc-accent);
}

.whychina-hero-copy > p {
  max-width: 640px;
  margin: 24px 0 0;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.72;
}

.whychina-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}

.whychina-actions .button {
  min-width: 210px;
  min-height: 42px;
  padding: 13px 23px;
  font-size: 10px;
}

.whychina-strip {
  padding: 34px 0 26px;
}

.whychina-perceptions {
  display: grid;
  grid-template-columns: 1.15fr repeat(5, 1fr);
  align-items: stretch;
}

.whychina-intro {
  padding: 0 34px 0 0;
}

.whychina-intro h2,
.whychina-modern-intro h2 {
  margin: 0;
  color: var(--wc-accent);
  font-size: 12px;
}

.whychina-intro p,
.whychina-modern-intro p {
  margin: 24px 0 0;
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.75;
}

.whychina-perceptions article {
  min-height: 162px;
  padding: 0 25px;
  border-left: 1px solid var(--wc-rule);
  color: var(--wc-accent);
  text-align: center;
}

.whychina-perceptions h3 {
  min-height: 35px;
  margin: 18px 0 0;
  color: var(--navy);
  font-size: 10px;
  letter-spacing: 0.09em;
}

.whychina-modern-card h3 {
  min-height: 35px;
  margin: 18px 0 0;
  color: var(--navy);
  font-size: 12px;
  letter-spacing: 0.09em;
}

.whychina-perceptions article p,
.whychina-modern-card article p {
  margin: 12px auto 0;
  color: var(--text);
  font-size: 10px;
  font-weight: 650;
  line-height: 1.68;
}

.whychina-stat-section {
  padding: 18px 0 28px;
}

.whychina-stat-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.95fr 1.18fr 1fr;
  align-items: center;
  min-height: 238px;
  border: 1px solid var(--wc-border);
  border-radius: 8px;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.95) 45%, rgba(255,255,255,0.82) 60%, rgba(255,255,255,0.24) 76%, rgba(255,255,255,0) 100%),
    url("assets/why-china-stat.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.whychina-stat-number {
  padding: 30px 30px 28px 76px;
}

.whychina-stat-number strong {
  display: block;
  color: var(--wc-accent);
  font-family: var(--font-display);
  font-size: clamp(72px, 7.4vw, 108px);
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 0.85;
}

.whychina-stat-number span {
  display: block;
  margin-top: 15px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.18em;
  line-height: 1.14;
  text-transform: uppercase;
}

.whychina-stat-copy {
  min-height: 148px;
  padding: 10px 42px 10px 44px;
  border-left: 1px solid var(--wc-border);
}

.whychina-stat-copy p {
  margin: 0;
  color: var(--text);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.72;
}

.whychina-stat-copy i,
.whychina-modern-intro i,
.whychina-wellness-card > i {
  display: block;
  width: 40px;
  height: 2px;
  margin: 18px 0;
  background: var(--wc-accent);
}

.whychina-architecture {
  min-height: 320px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("assets/why-china-architecture.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.whychina-architecture .site-container {
  display: flex;
  justify-content: center;
}

.whychina-architecture h2 {
  max-width: 720px;
  font-size: clamp(32px, 3.15vw, 48px);
  line-height: 1.06;
  text-align: center;
}

.whychina-architecture .no-wrap {
  white-space: nowrap;
}

.whychina-modern-section {
  padding: 28px 0 22px;
}

.whychina-modern-card {
  display: grid;
  grid-template-columns: 1.52fr repeat(4, 1fr);
  min-height: 250px;
  border: 1px solid var(--wc-border);
  border-radius: 8px;
  background: #FFFFFF;
}

.whychina-modern-intro {
  padding: 38px 32px 30px;
}

.whychina-modern-intro p {
  margin-top: 0;
}

.whychina-modern-card article {
  padding: 42px 24px 28px;
  border-left: 1px solid var(--wc-rule);
  color: var(--wc-accent);
  text-align: center;
}

.whychina-wellness-section {
  padding: 0 0 24px;
}

.whychina-wellness-card {
  border: 1px solid var(--wc-border);
  border-radius: 8px;
  background: #FFFFFF;
  padding: 22px 22px 24px;
  text-align: center;
}

.whychina-wellness-card h2 {
  font-size: clamp(31px, 3vw, 45px);
  line-height: 1.1;
}

.whychina-wellness-card > i {
  margin: 10px auto 10px;
}

.whychina-wellness-card > p {
  max-width: 780px;
  margin: 0 auto 24px;
  color: var(--text);
  font-size: 13.2px;
  font-weight: 700;
  line-height: 1.62;
}

.whychina-wellness-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
}

.whychina-wellness-grid article {
  min-height: 86px;
  padding: 0 12px;
  border-left: 1px solid var(--wc-rule);
  color: var(--wc-accent);
}

.whychina-wellness-grid article:first-child {
  border-left: 0;
}

.whychina-wellness-grid svg {
  width: 27px;
  height: 27px;
  margin: 0 auto 12px;
}

.whychina-wellness-grid h3 {
  margin: 0;
  color: var(--navy);
  font-size: 10.8px;
  letter-spacing: 0.08em;
}

.whychina-cta-section {
  padding: 0 0 28px;
}

.whychina-cta-card {
  min-height: 184px;
  border: 1px solid var(--wc-border);
  border-radius: 8px;
  overflow: hidden;
  background-image: url("assets/why-china-cta.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.whychina-cta-copy {
  width: 52%;
  margin-left: auto;
  padding: 34px 52px 28px 26px;
  transform: translateX(90px);
}

.whychina-cta-copy h2 {
  font-size: clamp(30px, 3vw, 45px);
  line-height: 1.08;
}

.whychina-cta-copy p {
  max-width: 430px;
  margin: 18px 0 0;
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.62;
}

@media (max-width: 1160px) {
  .collection-row {
    grid-template-columns: 230px 58px minmax(210px, 0.8fr) minmax(280px, 1fr);
    gap: 14px;
  }

  .collection-copy h3 {
    font-size: 28px;
  }

  .signature-grid {
    gap: 14px;
  }
}

@media (max-width: 1023px) {
  .feature-hero,
  .feature-hero-inner {
    min-height: 500px;
  }

  .feature-hero {
    background-position: center right;
  }

  .included-feature-grid,
  .promise-grid {
    grid-template-columns: 1fr 1fr;
  }

  .collection-row {
    grid-template-columns: 210px 58px 1fr;
  }

  .collection-row ul {
    grid-column: 1 / -1;
    columns: 2;
    padding-left: 28px;
  }

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

  .promise-grid article:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 767px) {
  :root {
    --hero-title-size: 38px;
  }

  .feature-hero,
  .feature-hero-inner {
    min-height: 560px;
  }

  .feature-hero {
    background-image:
      linear-gradient(to bottom, rgba(251,248,243,0.95) 0%, rgba(251,248,243,0.82) 52%, rgba(251,248,243,0.28) 100%),
      linear-gradient(to bottom, rgba(251,248,243,0) 72%, #FFFFFF 100%),
      url("assets/feature-hero.png");
    background-position: 70% center;
  }

  .feature-hero-copy {
    padding-top: 0;
  }

  .feature-hero h1 {
    white-space: normal;
  }

  .feature-actions,
  .feature-actions.centered {
    display: grid;
    grid-template-columns: 1fr;
  }

.feature-actions .button {
  width: 100%;
}

}

@media (max-width: 1160px) {
  .whychina-perceptions,
  .whychina-modern-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .whychina-intro,
  .whychina-modern-intro {
    grid-column: 1 / -1;
  }

  .whychina-perceptions article:nth-of-type(odd),
  .whychina-modern-card article:nth-of-type(odd) {
    border-left: 0;
  }

  .whychina-stat-card {
    grid-template-columns: 1fr;
  }

  .whychina-stat-copy {
    border-left: 0;
    border-top: 1px solid var(--wc-border);
  }

  .whychina-wellness-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 0;
  }
}

@media (max-width: 767px) {
  .whychina-hero,
  .whychina-hero-inner {
    min-height: 590px;
  }

  .whychina-hero {
    background-position: 67% center;
  }

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

  .whychina-actions,
  .whychina-actions .button {
    width: 100%;
  }

  .whychina-perceptions,
  .whychina-modern-card,
  .whychina-cta-card {
    grid-template-columns: 1fr;
  }

  .whychina-perceptions article,
  .whychina-modern-card article {
    border-left: 0;
    border-top: 1px solid var(--wc-rule);
  }

  .whychina-stat-number {
    padding: 30px 24px;
  }

  .whychina-stat-number span {
    font-size: 24px;
  }

  .whychina-architecture {
    min-height: 300px;
    padding-top: 56px;
    padding-bottom: 56px;
  }

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

  .whychina-wellness-grid article:nth-child(odd) {
    border-left: 0;
  }

  .whychina-cta-copy {
    padding: 30px 24px;
  }
}

/* Consultation page */
.consultation-page {
  --consult-accent: var(--bronze);
  --consult-border: rgba(185, 130, 66, 0.18);
  background: #FFFFFF;
  color: var(--text);
}

.consultation-hero {
  position: relative;
  aspect-ratio: 1817 / 866;
  min-height: 360px;
  background: url("assets/consultation-hero-new.png") center / contain no-repeat #FFFFFF;
  border-bottom: 1px solid rgba(6, 29, 61, 0.06);
}

.consultation-hero-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

.consultation-hero-copy {
  width: 500px;
  max-width: 48%;
  padding-bottom: 10px;
}

.consultation-eyebrow {
  margin: 0 0 22px;
  color: var(--consult-accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.22em;
  line-height: 1;
  text-transform: uppercase;
}

.consultation-hero h1,
.consultation-form-heading h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 500;
}

.consultation-hero h1 {
  font-size: clamp(44px, 4.8vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.018em;
}

.consultation-hero-copy > p {
  max-width: 520px;
  margin: 26px 0 0;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.75;
}

.consultation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 30px;
}

.consultation-actions .button {
  min-width: 228px;
  min-height: 42px;
  padding: 13px 24px;
}

.consultation-intro {
  padding: 34px 0 40px;
}

.consultation-narrow {
  max-width: var(--site-max-width);
}

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

.consultation-feature-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 22px;
  align-items: center;
  min-height: 136px;
  border: 1px solid var(--consult-border);
  border-radius: 3px;
  background: #FFFFFF;
  padding: 28px 34px;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.consultation-feature-card:hover {
  transform: translateY(-2px);
  border-color: rgba(185, 130, 66, 0.45);
  box-shadow: 0 18px 38px rgba(6, 29, 61, 0.1);
}

.consultation-feature-card svg,
.consultation-interest svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: var(--consult-accent);
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.consultation-feature-card h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.1;
}

.consultation-feature-card p {
  margin: 10px 0 0;
  color: var(--text);
  font-size: 11px;
  font-weight: 650;
  line-height: 1.55;
}

.consultation-form-card {
  margin-top: 28px;
  border: 1px solid var(--consult-border);
  border-radius: 4px;
  background: #FFFFFF;
  padding: 42px 56px 32px;
}

.consultation-form-heading {
  margin-bottom: 28px;
  text-align: center;
}

.consultation-form-heading h2 {
  font-size: clamp(34px, 3.4vw, 50px);
  line-height: 1.08;
}

.consultation-form-heading p {
  margin: 14px 0 0;
  color: var(--text);
  font-size: 14.4px;
  font-weight: 700;
}

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

.consultation-form-card label,
.consultation-interest legend {
  color: var(--navy);
  font-size: 13.2px;
  font-weight: 900;
  line-height: 1.35;
}

.consultation-form-card input,
.consultation-form-card select,
.consultation-form-card textarea {
  width: 100%;
  min-height: 45px;
  margin-top: 8px;
  border: 1px solid rgba(6, 29, 61, 0.12);
  border-radius: 2px;
  background: #FFFFFF;
  color: var(--text);
  font: 700 12px/1.4 var(--font-sans);
  padding: 0 15px;
}

.consultation-form-card textarea {
  min-height: 92px;
  padding-top: 14px;
  resize: vertical;
}

.consultation-form-card input::placeholder,
.consultation-form-card textarea::placeholder {
  color: rgba(54, 50, 47, 0.48);
}

.consultation-form-card select {
  color: rgba(54, 50, 47, 0.58);
}

.consultation-interest {
  margin: 20px 0 18px;
  padding: 0;
  border: 0;
}

.consultation-interest legend {
  margin: 0 0 11px;
  padding: 0;
}

.consultation-interest-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px 12px;
}

.consultation-interest label {
  min-width: 0;
}

.consultation-interest input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.consultation-interest span {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 66px;
  border: 1px solid rgba(6, 29, 61, 0.1);
  border-radius: 3px;
  background: #FFFFFF;
  padding: 12px 14px;
  color: var(--text);
  font-size: 13.2px;
  font-weight: 800;
  line-height: 1.32;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.consultation-interest svg {
  width: 25px;
  height: 25px;
}

.consultation-interest input:checked + span {
  border-color: rgba(185, 130, 66, 0.58);
  background: rgba(185, 130, 66, 0.055);
  box-shadow: inset 0 0 0 1px rgba(185, 130, 66, 0.18);
}

.consultation-textarea-label {
  display: block;
  margin-top: 18px;
}

.consultation-disclaimer {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  margin: 20px 0 0;
  color: var(--text);
  font-size: 13.2px !important;
  font-weight: 700 !important;
  line-height: 1.55 !important;
}

.consultation-disclaimer input {
  min-height: 18px;
  height: 18px;
  margin: 0;
  padding: 0;
  accent-color: var(--button-navy);
}

.consultation-submit {
  margin-top: 22px;
  text-align: center;
}

.consultation-submit .button {
  min-width: 330px;
  min-height: 44px;
  border: 0;
  cursor: pointer;
}

.consultation-submit p {
  margin: 16px 0 0;
  color: var(--text);
  font-size: 13.2px;
  font-weight: 700;
}

@media (max-width: 1023px) {
  .consultation-hero-copy {
    max-width: 56%;
  }

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

  .consultation-form-card {
    padding: 34px 32px 28px;
  }
}

@media (max-width: 767px) {
  .consultation-hero {
    min-height: 540px;
    aspect-ratio: auto;
    background-size: auto 100%;
    background-position: 64% center;
  }

  .consultation-hero-copy {
    width: auto;
    max-width: 100%;
  }

  .consultation-hero h1 {
    font-size: 40px;
  }

  .consultation-actions,
  .consultation-actions .button,
  .consultation-submit .button {
    width: 100%;
    min-width: 0;
  }

  .consultation-feature-grid,
  .consultation-form-grid,
  .consultation-interest-grid {
    grid-template-columns: 1fr;
  }

  .consultation-feature-card {
    padding: 24px;
  }

  .consultation-form-card {
    padding: 28px 18px 24px;
  }
}

/* About Us page */
.about-page {
  background: #FFFFFF;
}

.about-hero {
  aspect-ratio: 1817 / 728;
  min-height: 0;
  background-image: url("assets/about-hero.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.about-hero-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 7.6%;
  padding-bottom: 7.6%;
}

.about-kicker,
.about-story-label strong {
  color: var(--feature-gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  line-height: 1;
  text-transform: uppercase;
}

.about-kicker {
  margin: 0 0 26px;
}

.about-hero h1 {
  max-width: 560px;
  margin: 0;
  color: var(--hero-title-color);
  font-family: var(--hero-title-family);
  font-size: clamp(36px, 4.3vw, 61px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.05;
}

.about-hero p:not(.about-kicker) {
  max-width: 536px;
  margin: 24px 0 0;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.75;
}

.about-story {
  padding-top: 34px;
}

.about-story-row {
  display: grid;
  grid-template-columns: 150px minmax(285px, 0.9fr) minmax(420px, 1.35fr);
  column-gap: 44px;
  padding: 44px 0;
  border-bottom: 1px solid var(--border-light);
}

.about-story-row:first-child {
  border-top: 0;
}

.about-story-label {
  min-height: 154px;
  padding-left: 26px;
  border-right: 1px solid var(--border-light);
}

.about-story-label span {
  display: block;
  margin-bottom: 12px;
  color: var(--feature-gold);
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
}

.about-story-label strong {
  display: block;
  white-space: nowrap;
}

.about-story h2,
.about-panel h2,
.about-process-section h2,
.about-cta h2 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0;
}

.about-story h2 {
  font-size: 34px;
  line-height: 1.1;
}

@media (min-width: 1024px) {
  .about-story-row > h2 {
    margin-left: 40px;
    margin-right: -40px;
  }
}

.about-story-copy {
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.72;
}

.about-story-copy p {
  margin: 0;
}

.about-story-copy p + p {
  margin-top: 15px;
}

.about-difference-section {
  padding-top: 30px;
}

.about-panel {
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 24px 20px 18px;
}

.about-panel h2,
.about-process-section h2 {
  text-align: center;
  font-size: 31px;
  line-height: 1.15;
}

.about-difference-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.about-feature-card {
  min-height: 174px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 28px 18px 20px;
  text-align: center;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.about-feature-card svg,
.about-process-step svg {
  width: 38px;
  height: 38px;
  color: var(--feature-gold);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.about-feature-card svg {
  margin: 0 auto 16px;
}

.about-feature-card h3,
.about-process-step h3 {
  margin: 0;
  color: var(--text);
  font-size: 14.95px;
  font-weight: 800;
  line-height: 1.25;
}

@media (min-width: 1024px) {
  .about-difference-grid .about-feature-card:nth-child(n + 2) h3 {
    white-space: nowrap;
  }
}

.about-feature-card p,
.about-process-step p {
  margin: 9px 0 0;
  color: var(--text);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.55;
}

.about-process-section {
  padding-top: 42px;
  text-align: center;
}

.about-process {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 36px;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  overflow: visible;
}

.about-process::before {
  content: "";
  position: absolute;
  top: -16px;
  left: 7%;
  right: 7%;
  height: 1px;
  background: var(--border-light);
}

.about-process-step {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  min-height: 108px;
  padding: 26px 20px 20px;
  text-align: left;
}

.about-process-step + .about-process-step {
  border-left: 1px solid var(--border-light);
}

.about-step-number {
  position: absolute;
  top: -30px;
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  color: var(--feature-gold);
  font-size: 8px;
  font-weight: 800;
  transform: translateX(-50%);
}

.about-process-note {
  margin: 22px 0 0;
  color: var(--text);
  font-size: 13.8px;
  font-weight: 800;
}

.about-cta-section {
  padding-top: 34px;
  padding-bottom: 28px;
}

.about-cta {
  min-height: 164px;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  padding: 38px 48px;
  background-image: url("assets/about-cta.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.about-cta h2 {
  max-width: 480px;
  font-size: 32px;
  line-height: 1.12;
}

.about-cta p {
  max-width: 520px;
  margin: 12px 0 0;
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.55;
}

.about-cta-actions {
  display: flex;
  gap: 18px;
  margin-top: 22px;
}

.about-page .site-footer {
  padding-top: 28px;
}

@media (max-width: 1023px) {
  .about-hero {
    background-size: cover;
    background-position: center center;
  }

  .about-story-row {
    grid-template-columns: 120px 1fr;
    gap: 28px;
  }

  .about-story-copy {
    grid-column: 2;
  }

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

  .about-process-step:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--border-light);
  }

  .about-process-step:nth-child(4) {
    border-top: 1px solid var(--border-light);
  }
}

@media (max-width: 767px) {
  .about-hero {
    min-height: 430px;
    aspect-ratio: auto;
    background-size: auto 100%;
    background-position: 58% center;
  }

  .about-hero-inner {
    justify-content: flex-start;
    padding-top: 76px;
  }

  .about-hero h1 {
    font-size: 40px;
  }

  .about-hero p:not(.about-kicker) {
    max-width: 330px;
    font-size: 12px;
  }

  .about-story-row {
    grid-template-columns: 1fr;
    padding: 34px 0;
  }

  .about-story-label {
    min-height: 0;
    padding-left: 0;
    border-right: 0;
  }

  .about-story-copy {
    grid-column: auto;
  }

  .about-difference-grid,
  .about-process {
    grid-template-columns: 1fr;
  }

  .about-panel {
    padding: 24px 14px 16px;
  }

  .about-process::before,
  .about-step-number {
    display: none;
  }

  .about-process-step,
  .about-process-step:nth-child(3),
  .about-process-step:nth-child(4) {
    border-left: 0;
    border-top: 1px solid var(--border-light);
  }

  .about-process-step:first-child {
    border-top: 0;
  }

  .about-cta {
    padding: 30px 24px;
    background-position: 64% center;
  }

  .about-cta-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* FAQ page */
.faq-page {
  --faq-accent: var(--feature-gold);
  --faq-border: var(--border-light);
  background: #FFFFFF;
  color: var(--text);
}

.faq-hero {
  position: relative;
  aspect-ratio: 1952 / 806;
  min-height: 0;
  display: grid;
  place-items: center;
  background-image: url("assets/faq-hero.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  text-align: center;
}

.faq-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.faq-hero-content {
  position: relative;
  z-index: 1;
  padding-top: 34px;
}

.faq-eyebrow {
  margin: 0 0 22px;
  color: var(--faq-accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.24em;
  line-height: 1;
  text-transform: uppercase;
}

.faq-hero h1 {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 76px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.04;
}

.faq-hero p:not(.faq-eyebrow) {
  max-width: 720px;
  margin: 24px auto 0;
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.65;
}

.faq-hero-actions {
  display: flex;
  justify-content: center;
  gap: 26px;
  margin-top: 32px;
}

.faq-hero-actions .button {
  min-width: 270px;
  min-height: 48px;
}

.faq-content {
  padding-top: 68px;
  padding-bottom: 34px;
}

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

.faq-group {
  padding-bottom: 60px;
  border-bottom: 1px solid var(--faq-border);
}

.faq-group + .faq-group {
  margin-top: 54px;
}

.faq-group-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 44px;
}

.faq-group-heading span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--faq-accent);
  border-radius: 999px;
  color: var(--faq-accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.faq-group-heading h2 {
  margin: 0;
  color: var(--faq-accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.faq-item {
  border-bottom: 1px solid var(--faq-border);
}

.faq-question {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 0 0 25px;
  border: 0;
  background: transparent;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.28;
  text-align: left;
  cursor: pointer;
}

.faq-item + .faq-item .faq-question {
  padding-top: 28px;
}

.faq-question span {
  color: var(--faq-accent);
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 260ms ease;
}

.faq-question[aria-expanded="true"] + .faq-answer {
  max-height: 720px;
}

.faq-answer p,
.faq-answer ol {
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
}

.faq-answer p {
  margin: 0 0 22px;
}

.faq-answer ol {
  margin: 0 0 22px 18px;
  padding: 0;
}

.faq-answer li {
  padding-left: 4px;
}

.faq-bottom-section {
  padding-top: 18px;
  padding-bottom: 36px;
}

.faq-bottom-cta {
  min-height: 178px;
  display: grid;
  grid-template-columns: minmax(330px, 0.9fr) 1px minmax(260px, 0.75fr) 1fr;
  align-items: center;
  gap: 38px;
  border: 1px solid var(--faq-border);
  border-radius: 7px;
  overflow: hidden;
  padding: 30px 48px;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.98) 46%, rgba(255,255,255,0.86) 62%, rgba(255,255,255,0.1) 100%),
    url("assets/faq-cta.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.faq-bottom-copy h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(34px, 3.3vw, 48px);
  font-weight: 500;
  line-height: 1.08;
  white-space: nowrap;
}

.faq-bottom-copy p {
  max-width: 390px;
  margin: 14px 0 0;
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.55;
}

.faq-bottom-divider {
  width: 1px;
  height: 88px;
  background: var(--faq-border);
}

.faq-bottom-cta .button {
  justify-self: start;
  min-width: 260px;
  min-height: 48px;
}

@media (max-width: 1023px) {
  .faq-grid {
    gap: 42px;
  }

  .faq-question {
    font-size: 17px;
  }

  .faq-bottom-cta {
    grid-template-columns: 1fr;
    gap: 18px;
    background-position: 65% center;
  }

  .faq-bottom-divider {
    display: none;
  }
}

@media (max-width: 767px) {
  .faq-hero {
    min-height: 500px;
    aspect-ratio: auto;
    background-size: auto 100%;
  }

  .faq-hero h1 {
    font-size: 42px;
  }

  .faq-hero p:not(.faq-eyebrow) {
    font-size: 13px;
  }

  .faq-hero-actions,
  .faq-hero-actions .button,
  .faq-bottom-cta .button {
    width: 100%;
  }

  .faq-hero-actions {
    flex-direction: column;
    gap: 14px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .faq-group,
  .faq-group + .faq-group {
    margin-top: 34px;
    padding-bottom: 34px;
  }

  .faq-group-heading {
    margin-bottom: 28px;
  }

  .faq-question {
    font-size: 16px;
  }

  .faq-bottom-cta {
    padding: 26px 22px;
  }

  .faq-bottom-copy h2 {
    font-size: 32px;
  }
}

/* Hospitals & Technology page */
.hospital-page {
  --hospital-accent: var(--feature-gold);
  --hospital-border: var(--border-light);
  background: #FFFFFF;
  color: var(--text);
}

.hospital-page svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hospital-hero {
  min-height: clamp(520px, 41.3vw, 806px);
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 28%, rgba(255, 255, 255, 0.42) 55%, rgba(255, 255, 255, 0.04) 82%), url("assets/hospital-hero.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--hospital-border);
}

.hospital-hero-inner {
  min-height: inherit;
  display: flex;
  align-items: center;
}

.hospital-hero-copy {
  width: min(100%, 720px);
  padding: 58px 0 50px;
}

.hospital-eyebrow {
  margin: 0 0 25px;
  color: var(--hospital-accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.26em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hospital-hero h1 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(48px, 5.35vw, 82px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.02;
}

.hospital-hero-copy > p:not(.hospital-eyebrow) {
  width: min(100%, 650px);
  margin: 32px 0 0;
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.78;
}

.hospital-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 34px;
}

.hospital-actions .button {
  min-width: 248px;
  min-height: 47px;
  padding: 13px 28px;
}

.hospital-network,
.hospital-diagnostics,
.hospital-client-journey {
  padding: 46px 0 0;
}

.hospital-section-heading {
  width: min(100%, 950px);
  margin: 0 auto 46px;
  text-align: center;
}

.hospital-section-heading h2,
.hospital-client-journey h2 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(34px, 3.2vw, 47px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.12;
}

.hospital-section-heading p {
  margin: 20px auto 0;
  max-width: 930px;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.75;
}

.hospital-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

.hospital-card {
  min-width: 0;
  overflow: hidden;
  background: #FFFFFF;
  border: 1px solid var(--hospital-border);
  border-radius: 7px;
  box-shadow: 0 12px 28px rgba(54, 50, 47, 0.035);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.hospital-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 131, 58, 0.45);
  box-shadow: 0 18px 34px rgba(54, 50, 47, 0.08);
}

.hospital-card img {
  width: 100%;
  height: 205px;
  object-fit: cover;
  object-position: center;
  border-bottom: 1px solid var(--hospital-border);
}

.hospital-card-body {
  min-height: 186px;
  padding: 34px 14px 26px;
  text-align: center;
}

.hospital-card-title {
  min-height: 70px;
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(22px, 1.65vw, 26px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
}

.hospital-card-title-single {
  white-space: nowrap;
}

.hospital-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  margin-top: 22px;
  padding: 6px 18px;
  color: var(--hospital-accent);
  border: 1px solid var(--border-gold);
  border-radius: 999px;
  background: #FFFFFF;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}

.hospital-card-details {
  max-height: 0;
  margin: 0;
  padding: 0;
  opacity: 0;
  overflow: hidden;
  text-align: left;
  list-style: none;
  transition: max-height 260ms ease, opacity 200ms ease, margin-top 220ms ease;
}

.hospital-card:hover .hospital-card-details,
.hospital-card:focus-within .hospital-card-details {
  max-height: 230px;
  margin-top: 24px;
  opacity: 1;
}

.hospital-card-details li {
  position: relative;
  padding-left: 16px;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.62;
}

.hospital-card-details li + li {
  margin-top: 11px;
}

.hospital-card-details li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--hospital-accent);
}

.hospital-diagnostics {
  padding-top: 58px;
}

.hospital-diagnostics .hospital-section-heading {
  margin-bottom: 32px;
}

.hospital-diagnostics .hospital-section-heading h2,
.hospital-client-journey h2 {
  white-space: nowrap;
}

.hospital-diagnostics .hospital-section-heading p {
  max-width: 650px;
  margin-top: 13px;
  font-size: 12px;
  line-height: 1.62;
}

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

.hospital-tech-card {
  min-height: 168px;
  padding: 27px 12px 22px;
  background: #FFFFFF;
  border: 1px solid var(--hospital-border);
  border-radius: 7px;
  text-align: center;
}

.hospital-tech-card svg {
  width: 46px;
  height: 46px;
  margin: 0 auto 17px;
  color: var(--hospital-accent);
}

.hospital-tech-card h3 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.18;
}

.hospital-tech-card p {
  margin: 9px 0 0;
  color: var(--text);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.45;
}

.hospital-client-journey {
  padding-top: 58px;
  padding-bottom: 42px;
}

.hospital-client-journey h2 {
  text-align: center;
}

.hospital-journey-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.hospital-journey-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 16px;
  min-height: 106px;
  padding: 20px 22px;
  background: #FFFFFF;
  border: 1px solid var(--hospital-border);
  border-radius: 7px;
}

.hospital-journey-card svg {
  width: 48px;
  height: 48px;
  color: var(--hospital-accent);
}

.hospital-journey-card h3 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}

.hospital-journey-card p {
  margin: 8px 0 0;
  color: var(--text);
  font-size: 10.5px;
  font-weight: 700;
  line-height: 1.45;
}

.hospital-disclaimer {
  display: grid;
  grid-template-columns: 46px auto 1fr;
  align-items: center;
  gap: 20px;
  margin-top: 34px;
  padding: 24px 28px;
  background: #FFFFFF;
  border: 1px solid var(--hospital-border);
  border-radius: 7px;
}

.hospital-disclaimer svg {
  width: 38px;
  height: 38px;
  color: var(--hospital-accent);
}

.hospital-disclaimer h3 {
  margin: 0;
  color: var(--hospital-accent);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
}

.hospital-disclaimer p {
  margin: 0;
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.55;
}

@media (max-width: 1180px) {
  .hospital-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hospital-tech-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .hospital-diagnostics .hospital-section-heading h2,
  .hospital-client-journey h2 {
    white-space: normal;
  }
}

@media (max-width: 760px) {
  .hospital-hero {
    min-height: 560px;
    background-position: 64% center;
  }

  .hospital-hero-copy {
    padding: 54px 0 44px;
  }

  .hospital-hero h1 {
    font-size: 42px;
  }

  .hospital-actions,
  .hospital-actions .button {
    width: 100%;
  }

  .hospital-card-grid,
  .hospital-tech-grid,
  .hospital-journey-grid {
    grid-template-columns: 1fr;
  }

  .hospital-card-title-single {
    white-space: normal;
  }

  .hospital-card-details {
    max-height: none;
    margin-top: 22px;
    opacity: 1;
  }

  .hospital-disclaimer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hospital-disclaimer svg {
    margin: 0 auto;
  }
}

/* News & Insights page */
.news-page {
  --news-accent: var(--feature-gold);
  --news-border: var(--border-light);
  background: #FFFFFF;
  color: var(--text);
}

.news-page svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.news-hero {
  min-height: clamp(430px, 41.3vw, 806px);
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.88) 31%, rgba(255, 255, 255, 0.36) 58%, rgba(255, 255, 255, 0.02) 86%), url("assets/news-hero.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--news-border);
}

.news-hero-inner {
  min-height: inherit;
  display: flex;
  align-items: center;
}

.news-hero-copy {
  width: min(100%, 660px);
  padding: 54px 0 50px;
}

.news-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 44px;
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.news-hero h1 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(54px, 5vw, 78px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.05;
}

.news-title-rule {
  display: block;
  width: 74px;
  height: 2px;
  margin: 28px 0 28px;
  background: var(--news-accent);
}

.news-hero-copy > p {
  max-width: 620px;
  margin: 0;
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.76;
}

.news-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 30px;
}

.news-hero-actions .button {
  min-width: 206px;
  min-height: 47px;
  padding: 13px 25px;
}

.news-pills-section {
  padding: 34px 0 14px;
}

.news-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.news-pill {
  min-height: 34px;
  padding: 8px 16px;
  border: 1px solid var(--news-border);
  border-radius: 999px;
  background: #FFFFFF;
  color: var(--text);
  font: 800 10px/1 var(--font-sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.news-pill.active {
  border-color: var(--news-accent);
  background: var(--news-accent);
  color: #FFFFFF;
}

.news-featured-section {
  padding: 24px 0 34px;
}

.news-featured-card {
  display: grid;
  grid-template-columns: 0.93fr 1.25fr;
  gap: 54px;
  align-items: center;
  padding: 22px;
  background: #FFFFFF;
  border: 1px solid var(--news-border);
  border-radius: 8px;
}

.news-featured-card img {
  width: 100%;
  height: 370px;
  object-fit: cover;
  object-position: center;
  border-radius: 5px;
}

.news-featured-copy {
  padding: 14px 36px 14px 0;
}

.news-label,
.news-card-category,
.news-section-bar h2 {
  color: var(--news-accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.25em;
  line-height: 1.2;
  text-transform: uppercase;
}

.news-label {
  margin: 0 0 28px;
}

.news-featured-copy h2 {
  max-width: 680px;
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(34px, 3.1vw, 50px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.15;
}

.news-featured-copy > p:not(.news-label) {
  max-width: 640px;
  margin: 28px 0 28px;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.82;
}

.news-featured-copy .button,
.news-card .button {
  min-width: 270px;
  min-height: 44px;
  padding: 12px 22px;
}

.news-upcoming-section {
  padding: 0 0 40px;
}

.news-section-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.news-section-bar h2 {
  margin: 0;
}

.news-section-bar a {
  color: var(--news-accent);
  font-size: 13px;
  font-weight: 700;
}

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

.news-card {
  display: flex;
  min-width: 0;
  min-height: 620px;
  flex-direction: column;
  overflow: hidden;
  background: #FFFFFF;
  border: 1px solid var(--news-border);
  border-radius: 8px;
}

.news-card > img {
  width: 100%;
  height: 204px;
  object-fit: cover;
  object-position: center;
  border-bottom: 1px solid var(--news-border);
}

.news-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px 20px 22px;
}

.news-card-category {
  margin: 0 0 22px;
  font-size: 10px;
  letter-spacing: 0.2em;
}

.news-card h3 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(22px, 1.72vw, 28px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.16;
}

.news-card-body > p:not(.news-card-category) {
  margin: 26px 0 0;
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.74;
}

.news-meta {
  display: flex;
  gap: 16px;
  margin-top: auto;
  padding-top: 30px;
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
}

.news-meta span + span::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin: 0 12px 2px 0;
  border-radius: 50%;
  background: var(--news-border);
}

.news-card .button {
  width: 100%;
  min-width: 0;
  margin-top: 22px;
}

.news-lower-section {
  padding: 0 0 40px;
}

.news-lower-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.news-info-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 22px;
  min-height: 294px;
  padding: 38px 42px;
  background: #FFFFFF;
  border: 1px solid var(--news-border);
  border-radius: 8px;
}

.news-icon-circle {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  color: var(--news-accent);
}

.news-icon-circle svg {
  width: 34px;
  height: 34px;
}

.news-info-card h2 {
  margin: 0 0 22px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(32px, 2.7vw, 44px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.06;
}

.news-info-card p {
  margin: 0;
  color: var(--text);
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.78;
}

.news-info-card p + p {
  margin-top: 22px;
}

.news-consult-card {
  align-items: start;
}

.news-consult-card .button {
  min-width: 280px;
  margin-top: 30px;
}

.news-disclaimer {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
  padding: 18px 28px;
  background: #FFFFFF;
  border: 1px solid var(--news-border);
  border-radius: 6px;
}

.news-disclaimer svg {
  width: 34px;
  height: 34px;
  color: var(--news-accent);
}

.news-disclaimer p {
  margin: 0;
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.55;
}

@media (max-width: 1180px) {
  .news-featured-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .news-featured-copy {
    padding: 0 10px 10px;
  }

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

  .news-lower-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .news-hero {
    min-height: 560px;
    background-position: 64% center;
  }

  .news-breadcrumb {
    margin-bottom: 28px;
  }

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

  .news-hero-actions,
  .news-hero-actions .button,
  .news-featured-copy .button,
  .news-consult-card .button {
    width: 100%;
  }

  .news-pills {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .news-pill {
    flex: 0 0 auto;
  }

  .news-featured-card {
    padding: 16px;
  }

  .news-featured-card img,
  .news-card > img {
    height: 220px;
  }

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

  .news-card {
    min-height: 0;
  }

  .news-section-bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .news-info-card,
  .news-disclaimer {
    grid-template-columns: 1fr;
  }

  .news-info-card {
    padding: 28px 24px;
  }
}

/* Global Hero alignment refresh */
:root {
  --hero-eyebrow-color: var(--feature-gold);
  --hero-eyebrow-size: 10px;
  --hero-eyebrow-weight: 800;
  --hero-eyebrow-spacing: 0.22em;
  --hero-top-offset: clamp(72px, 7.6vw, 100px);
  --hero-rule-width: 58px;
  --hero-rule-height: 2px;
  --hero-rule-gap: 26px;
}

.main-nav a[href$="hospitals-technology/index.html"],
.main-nav a[href="./index.html"].active[href*="hospitals-technology"] {
  display: none;
}

.hero,
.feature-hero {
  aspect-ratio: 1952 / 806;
  min-height: 0;
  background-color: #FFFFFF;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.hero {
  background-image: url("assets/hero-health-journeys-2600.png");
}

.feature-hero {
  background-image: url("assets/hero-featured-programs-2600.png");
}

.hero-grid,
.feature-hero-inner,
.whychina-hero-inner,
.hospital-hero-inner,
.consultation-hero-inner,
.news-hero-inner {
  min-height: 100%;
  height: 100%;
  align-items: flex-start;
}

.hero-copy,
.feature-hero-copy,
.whychina-hero-copy,
.hospital-hero-copy,
.consultation-hero-copy,
.news-hero-copy {
  padding-top: var(--hero-top-offset);
}

.about-hero-inner {
  justify-content: flex-start;
  padding-top: var(--hero-top-offset);
}

.faq-hero-content {
  padding-top: var(--hero-top-offset);
}

.eyebrow,
.feature-label,
.whychina-eyebrow,
.about-kicker,
.faq-eyebrow,
.hospital-eyebrow,
.consultation-eyebrow,
.news-eyebrow {
  margin: 0 0 26px;
  color: var(--hero-eyebrow-color);
  font-family: var(--font-sans);
  font-size: var(--hero-eyebrow-size);
  font-weight: var(--hero-eyebrow-weight);
  letter-spacing: var(--hero-eyebrow-spacing);
  line-height: 1;
  text-transform: uppercase;
}

/* Match the primary hero eyebrows to the About Us hero lockup. */
.hero .hero-copy > .eyebrow,
.feature-hero .feature-hero-copy > .feature-label,
.whychina-hero .whychina-hero-copy > .whychina-eyebrow,
.faq-hero .faq-hero-content > .faq-eyebrow {
  margin: 0 0 26px;
  color: var(--hero-eyebrow-color);
  font-family: var(--font-sans);
  font-size: var(--hero-eyebrow-size);
  font-weight: var(--hero-eyebrow-weight);
  letter-spacing: var(--hero-eyebrow-spacing);
  line-height: 1;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.home-hero h1,
.feature-hero h1,
.whychina-hero h1,
.about-hero h1,
.faq-hero h1,
.hospital-hero h1,
.consultation-hero h1,
.news-hero h1 {
  max-width: var(--hero-title-max-width);
  color: var(--hero-title-color);
  font-family: var(--hero-title-family);
  font-size: var(--hero-title-size);
  font-weight: var(--hero-title-weight);
  letter-spacing: var(--hero-title-letter-spacing);
  line-height: var(--hero-title-line-height);
}

.home-hero h1 {
  max-width: 980px;
}

.feature-hero h1 {
  max-width: 1120px;
  white-space: nowrap;
}

.whychina-hero h1 {
  max-width: 960px;
}

.about-hero h1 {
  max-width: 860px;
}

.whychina-hero h1 span {
  color: inherit;
}

.hero h1::after,
.page-hero h1::after,
.home-hero h1::after,
.feature-hero h1::after,
.whychina-hero h1::after,
.about-hero h1::after,
.faq-hero h1::after,
.hospital-hero h1::after,
.consultation-hero h1::after,
.news-hero h1::after {
  content: "";
  display: block;
  width: var(--hero-rule-width);
  height: var(--hero-rule-height);
  margin: var(--hero-rule-gap) 0 var(--hero-rule-gap);
  background: var(--bronze);
}

.faq-hero h1::after {
  margin-left: auto;
  margin-right: auto;
}

.hero-copy > .gold-rule,
.feature-hero-copy > .feature-rule,
.news-hero-copy > .news-title-rule {
  display: none;
}

.hero-copy > p:not(.eyebrow),
.home-hero-copy > p,
.feature-hero-copy > p:not(.feature-label),
.whychina-hero-copy > p,
.about-hero p:not(.about-kicker),
.faq-hero p:not(.faq-eyebrow),
.hospital-hero-copy > p:not(.hospital-eyebrow),
.consultation-hero-copy > p,
.news-hero-copy > p,
.page-hero p:not(.eyebrow) {
  margin-top: 0;
}

@media (max-width: 760px) {
  :root {
    --hero-top-offset: 72px;
  }

  .hero,
  .feature-hero {
    min-height: 520px;
    aspect-ratio: auto;
    background-size: auto 100%;
  }

  .feature-hero h1 {
    white-space: normal;
  }
}

/* Targeted footer and page-section refinements */
.site-footer {
  background: #FFFFFF;
  border-top: 0;
}

.site-footer .footer-grid {
  max-width: var(--site-max-width);
  grid-template-columns: minmax(320px, 1.12fr) repeat(3, minmax(140px, 0.56fr)) minmax(190px, 0.72fr);
  justify-content: center;
  column-gap: clamp(38px, 3.2vw, 70px);
  row-gap: 34px;
  padding-top: clamp(66px, 6vw, 92px);
  padding-bottom: 34px;
}

.site-footer .footer-brand {
  margin-bottom: 26px;
}

.site-footer .footer-brand .brand-title {
  color: #000000;
  font-size: clamp(28px, 2.1vw, 38px);
  letter-spacing: 0.18em;
  line-height: 1;
}

.site-footer .footer-description {
  max-width: 430px;
  color: var(--text);
  font-size: clamp(15px, 1vw, 17px);
  font-weight: 400;
  line-height: 1.55;
}

.site-footer .socials {
  gap: 20px;
  margin-top: 34px;
}

.site-footer .socials a {
  width: 42px;
  height: 42px;
  border-color: rgba(54, 50, 47, 0.26);
  border-width: 2px;
  color: #000000;
  font-size: 16px;
  font-weight: 700;
}

.site-footer .footer-heading {
  margin-bottom: 26px;
  color: #000000;
  font-size: clamp(13px, 0.88vw, 15px);
  font-weight: 700;
  letter-spacing: 0.34em;
  line-height: 1;
}

.site-footer .footer-links {
  gap: 16px;
  color: var(--text);
  font-size: clamp(14px, 0.94vw, 16px);
  font-weight: 400;
  line-height: 1.2;
}

.site-footer .footer-links a {
  color: inherit;
}

.site-footer .footer-bottom {
  max-width: var(--site-max-width);
  padding-top: 0;
  padding-bottom: clamp(38px, 4vw, 56px);
  color: var(--text);
  font-size: clamp(14px, 0.94vw, 16px);
  font-weight: 400;
  text-align: center;
  border-top: 0;
}

.faq-hero-content,
.consultation-hero-copy {
  text-align: center;
}

.consultation-hero-inner {
  justify-content: center;
}

.consultation-hero-copy {
  width: min(860px, 100%);
  max-width: 860px;
  margin-right: auto;
  margin-left: auto;
}

.consultation-hero-copy > p {
  margin-right: auto;
  margin-left: auto;
}

.consultation-hero h1::after {
  margin-right: auto;
  margin-left: auto;
}

.consultation-actions {
  justify-content: center;
}

.about-story-label {
  border-right: 0;
}

.about-story-copy {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.74;
}

@media (max-width: 1023px) {
  .site-footer .footer-grid {
    grid-template-columns: minmax(0, 1fr) repeat(2, minmax(150px, 1fr));
    justify-content: stretch;
    column-gap: 42px;
    padding-top: 56px;
  }

  .site-footer .footer-description {
    max-width: 420px;
  }
}

@media (max-width: 767px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 44px;
    padding-bottom: 28px;
  }

  .site-footer .footer-brand .brand-title {
    font-size: 30px;
  }

  .site-footer .footer-description,
  .site-footer .footer-links {
    font-size: 16px;
  }

  .site-footer .footer-heading {
    margin-bottom: 18px;
    font-size: 15px;
  }

  .site-footer .socials {
    gap: 14px;
    margin-top: 24px;
  }

  .site-footer .socials a {
    width: 42px;
    height: 42px;
    font-size: 15px;
  }

  .site-footer .footer-bottom {
    padding-bottom: 40px;
    font-size: 14px;
  }
}

/* Responsive safety layer: preserve desktop styling while preventing collisions. */
html,
body {
  max-width: 100%;
  overflow-x: clip;
}

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

.site-container > *,
.header-inner > *,
.footer-grid > *,
.hero-grid > *,
.feature-hero-inner > *,
.journey-row > *,
.collection-row > *,
.consultation-form-grid > *,
.consultation-interest-grid > *,
.news-feature-grid > *,
.news-grid > * {
  min-width: 0;
}

@media (max-width: 1100px) {
  .site-header {
    height: 88px;
    min-height: 88px;
  }

  body {
    --site-header-height: 88px;
  }

  .header-inner {
    gap: 12px;
  }

  .brand {
    min-width: 210px;
  }

  .brand-mark {
    width: 66px;
  }

  .brand-title {
    font-size: 19px;
  }

  .brand-subtitle {
    font-size: 8px;
  }

  .main-nav {
    justify-content: flex-start;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }

  .main-nav a {
    flex: 0 0 auto;
  }

  .header-cta {
    display: none;
  }

  .feature-hero h1,
  .hospital-hero h1,
  .news-hero h1 {
    white-space: normal;
  }

  .button {
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }
}

@media (max-width: 1023px) {
  :root {
    --hero-title-size: clamp(40px, 6vw, 56px);
    --hero-subtitle-size: 15px;
  }

  .hero h1,
  .page-hero h1,
  .home-hero h1,
  .feature-hero h1,
  .whychina-hero h1,
  .about-hero h1,
  .faq-hero h1,
  .hospital-hero h1,
  .consultation-hero h1,
  .news-hero h1 {
    width: 100%;
    max-width: min(100%, 820px);
    overflow-wrap: anywhere;
  }

  .hero-copy,
  .feature-hero-copy,
  .whychina-hero-copy,
  .hospital-hero-copy,
  .consultation-hero-copy,
  .news-hero-copy,
  .about-hero-inner,
  .faq-hero-content {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .hero-copy > p:not(.eyebrow),
  .home-hero-copy > p,
  .feature-hero-copy > p:not(.feature-label),
  .whychina-hero-copy > p:not(.whychina-eyebrow),
  .about-hero p:not(.about-kicker),
  .faq-hero p:not(.faq-eyebrow),
  .hospital-hero-copy > p:not(.hospital-eyebrow),
  .consultation-hero-copy > p:not(.consultation-eyebrow),
  .news-hero-copy > p:not(.news-eyebrow),
  .page-hero p:not(.eyebrow) {
    width: 100%;
    max-width: min(100%, var(--hero-subtitle-max-width));
    overflow-wrap: anywhere;
  }

  .feature-actions,
  .whychina-actions,
  .hospital-actions,
  .consultation-actions,
  .faq-hero-actions,
  .news-actions,
  .home-actions,
  .cta-actions,
  .about-cta-actions {
    flex-wrap: wrap;
  }

  .collection-row {
    grid-template-columns: minmax(180px, 0.8fr) 50px minmax(0, 1fr);
  }

  .collection-row > ul {
    grid-column: 1 / -1;
  }

  .site-footer .footer-links a,
  .site-footer .footer-heading {
    white-space: normal;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 767px) {
  :root {
    --hero-title-size: clamp(34px, 10vw, 44px);
    --hero-subtitle-size: 14px;
    --hero-reference-top: calc(var(--site-header-height, 88px) + 58px);
    --hero-reference-eyebrow-gap: 18px;
    --hero-reference-rule-gap: 20px;
  }

  .site-header {
    height: 82px;
    min-height: 82px;
  }

  body {
    --site-header-height: 82px;
  }

  .header-inner {
    justify-content: flex-start;
    padding-right: var(--site-gutter-mobile);
    padding-left: var(--site-gutter-mobile);
  }

  .brand {
    min-width: 0;
    max-width: 100%;
  }

  .brand-mark {
    width: 58px;
  }

  .brand-name {
    min-width: 0;
  }

  .brand-title {
    font-size: clamp(16px, 5.2vw, 20px);
    white-space: nowrap;
  }

  .brand-subtitle {
    max-width: 210px;
    font-size: 7px;
    white-space: normal;
  }

  .main-nav {
    display: none;
  }

  .hero,
  .feature-hero,
  .whychina-hero,
  .about-hero,
  .faq-hero,
  .consultation-hero,
  .hospital-hero,
  .news-hero {
    min-height: 560px;
    height: auto;
    aspect-ratio: auto;
    background-size: cover;
  }

  .hero-grid,
  .feature-hero-inner,
  .whychina-hero-inner,
  .hospital-hero-inner,
  .consultation-hero-inner,
  .news-hero-inner,
  .faq-hero-content {
    min-height: 560px;
    height: auto;
  }

  .hero-copy,
  .feature-hero-copy,
  .whychina-hero-copy,
  .hospital-hero-copy,
  .consultation-hero-copy,
  .news-hero-copy,
  .about-hero-inner,
  .faq-hero-content {
    padding-top: var(--hero-reference-top);
    padding-bottom: 48px;
  }

  .hero h1,
  .page-hero h1,
  .home-hero h1,
  .feature-hero h1,
  .whychina-hero h1,
  .about-hero h1,
  .faq-hero h1,
  .hospital-hero h1,
  .consultation-hero h1,
  .news-hero h1,
  .journey-title,
  .cta-title,
  .feature-panel h2,
  .whychina-architecture h2,
  .about-page h2,
  .news-page h2 {
    max-width: 100%;
    font-size: clamp(32px, 9vw, 42px);
    line-height: 1.08;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .eyebrow,
  .feature-label,
  .whychina-eyebrow,
  .about-kicker,
  .faq-eyebrow,
  .hospital-eyebrow,
  .consultation-eyebrow,
  .news-eyebrow {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .consultation-hero .consultation-eyebrow > span {
    max-width: calc(100vw - (2 * var(--site-gutter-mobile)));
    white-space: normal;
  }

  .feature-actions,
  .whychina-actions,
  .hospital-actions,
  .consultation-actions,
  .faq-hero-actions,
  .news-actions,
  .home-actions,
  .cta-actions,
  .about-cta-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .feature-actions .button,
  .whychina-actions .button,
  .hospital-actions .button,
  .consultation-actions .button,
  .faq-hero-actions .button,
  .news-actions .button,
  .home-actions .button,
  .cta-actions .button,
  .about-cta-actions .button {
    width: 100%;
    min-width: 0;
  }

  .journey-row,
  .feature-panel,
  .included-feature-grid,
  .collection-row,
  .signature-grid,
  .promise-grid,
  .whychina-perceptions,
  .whychina-modern-card,
  .whychina-stat-card,
  .whychina-cta-card,
  .about-story-grid,
  .about-values-grid,
  .about-process-grid,
  .faq-grid,
  .faq-bottom-cta,
  .hospital-grid,
  .hospital-process-grid,
  .consultation-feature-grid,
  .consultation-form-grid,
  .consultation-interest-grid,
  .news-feature-grid,
  .news-grid,
  .news-info-card {
    grid-template-columns: 1fr;
  }

  .collection-row > *,
  .collection-row > ul,
  .whychina-modern-intro,
  .whychina-intro {
    grid-column: auto;
  }

  .collection-row {
    gap: 18px;
  }

  .collection-row img,
  .journey-media img,
  .signature-card img {
    width: 100%;
    height: auto;
  }

  .included-card,
  .journey-highlights,
  .whychina-wellness-grid,
  .hospital-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .included-item,
  .journey-highlights > *,
  .whychina-wellness-grid > *,
  .hospital-trust-grid > * {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .consultation-form-card,
  .feature-panel,
  .about-cta,
  .faq-bottom-cta,
  .news-info-card,
  .news-disclaimer {
    padding-right: 22px;
    padding-left: 22px;
  }

  .consultation-interest label,
  .consultation-interest span,
  .faq-item,
  .hospital-card,
  .signature-card,
  .included-feature-item {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .whychina-architecture .no-wrap,
  .feature-hero h1,
  .hospital-stat strong,
  .news-meta,
  .news-label {
    white-space: normal;
  }

  .health-personalization-banner,
  .health-personalization-banner .cta-grid {
    height: auto;
    min-height: 295px;
    max-height: none;
  }

  .health-personalization-banner .cta-copy {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .health-personalization-banner .cta-title,
  .health-personalization-text,
  .health-personalization-body {
    width: 100%;
    max-width: 100%;
    white-space: normal;
  }

  .health-personalization-body > p {
    overflow-wrap: anywhere;
  }

  .site-footer .footer-grid > div {
    width: 100%;
  }
}

@media (max-width: 420px) {
  :root {
    --site-gutter-mobile: 20px;
    --hero-title-size: clamp(32px, 10vw, 39px);
  }

  .included-card,
  .journey-highlights,
  .whychina-wellness-grid,
  .hospital-trust-grid {
    grid-template-columns: 1fr;
  }

  .consultation-form-card,
  .feature-panel,
  .about-cta,
  .faq-bottom-cta,
  .news-info-card,
  .news-disclaimer {
    padding-right: 18px;
    padding-left: 18px;
  }
}

/* Shared Hero text refinements: preserve layout and alignment. */
.hero-copy > p:not(.eyebrow),
.home-hero-copy > p,
.feature-hero-copy > p:not(.feature-label),
.whychina-hero-copy > p:not(.whychina-eyebrow),
.about-hero p:not(.about-kicker),
.faq-hero p:not(.faq-eyebrow),
.hospital-hero-copy > p:not(.hospital-eyebrow),
.consultation-hero-copy > p:not(.consultation-eyebrow),
.news-hero-copy > p:not(.news-eyebrow),
.page-hero p:not(.eyebrow) {
  max-width: var(--hero-subtitle-max-width);
  font-size: var(--hero-subtitle-size);
  font-weight: var(--hero-subtitle-weight);
}

/* Shared header layout matched to the approved navigation reference. */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 95px;
  min-height: 95px;
  box-sizing: border-box;
  padding: 0;
  background: #FFFFFF;
  border-bottom: 1px solid rgba(54, 50, 47, 0.07);
  box-shadow: none;
  transition:
    background-color 360ms ease,
    border-color 360ms ease,
    box-shadow 360ms ease,
    backdrop-filter 360ms ease;
}

.site-header.has-image-hero {
  position: fixed;
  right: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.18);
  border-bottom-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 28px rgba(6, 29, 61, 0.035);
  backdrop-filter: blur(18px) saturate(125%);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: rgba(54, 50, 47, 0.1);
  box-shadow: 0 6px 20px rgba(6, 29, 61, 0.045);
  backdrop-filter: blur(14px) saturate(110%);
  -webkit-backdrop-filter: blur(14px) saturate(110%);
}

body.has-image-hero {
  --hero-top-offset: max(
    clamp(72px, 7.6vw, 100px),
    calc(var(--site-header-height, 95px) + 24px)
  );
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .site-header.has-image-hero {
    background: rgba(255, 255, 255, 0.72);
  }

  .site-header.is-scrolled {
    background: #FFFFFF;
  }
}

.header-inner {
  height: 100%;
  min-height: 0;
  max-height: 100%;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 16px;
  padding-block: 0;
}

.brand {
  min-width: 248px;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  margin-block: 0;
  padding-block: 0;
}

.brand-mark {
  width: 78px;
  height: auto;
  max-height: 52px;
  margin-block: 0;
}

.brand-name {
  min-width: 160px;
  gap: 3px;
  margin-block: 0;
  padding-block: 0;
}

.brand-title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 0.98;
}

.brand-subtitle {
  color: var(--feature-gold);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1;
  white-space: nowrap;
}

.main-nav {
  height: 100%;
  min-width: 0;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.1vw, 20px);
  color: var(--navy-2);
  font-size: 12px;
  font-weight: 400;
}

.main-nav a {
  padding: 10px 0 12px;
  color: inherit;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
  transition: color 180ms ease;
}

.main-nav a.active,
.main-nav a:hover {
  color: var(--feature-gold);
  font-weight: 400;
}

.main-nav a.active::after {
  bottom: 5px;
  height: 1px;
  background: var(--feature-gold);
}

.language {
  flex: 0 0 auto;
  align-self: center;
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 16px;
  border-left: 1px solid rgba(185, 130, 66, 0.3);
  color: var(--navy);
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}

.header-cta {
  flex: 0 0 auto;
  align-self: center;
  height: auto;
  min-height: 40px;
  margin-block: 0;
  padding: 13px 18px;
  font-size: 10px;
}

@media (max-width: 1160px) {
  .site-header {
    height: 95px;
    min-height: 95px;
    padding: 0;
  }

  .header-inner {
    height: 100%;
    min-height: 0;
    max-height: 100%;
    flex-wrap: nowrap;
    gap: 16px;
    padding-block: 0;
  }

  .main-nav {
    order: initial;
    width: auto;
    justify-content: center;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .main-nav a {
    padding: 10px 0 12px;
  }
}

@media (max-width: 767px) {
  .site-header {
    height: 95px;
    min-height: 95px;
  }

  .header-inner {
    height: 100%;
    min-height: 0;
    max-height: 100%;
    padding-block: 0;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 62px;
  }

  .brand-title {
    font-size: 18px;
  }

  .brand-subtitle {
    font-size: 7px;
    letter-spacing: 0.06em;
  }

  .header-cta {
    display: none;
  }
}

/* Consultation page full-width shell and full-bleed hero background. */
.consultation-page {
  width: 100%;
  max-width: none;
  margin: 0;
  overflow-x: clip;
}

.consultation-page > section {
  width: 100%;
  max-width: none;
}

.consultation-hero {
  width: 100%;
  min-height: 440px;
  aspect-ratio: 1817 / 866;
  background-image: url("assets/consultation-hero-new.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #FFFFFF;
}

.consultation-hero-inner {
  width: 100%;
  max-width: var(--site-max-width);
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 767px) {
  .consultation-hero {
    min-height: 540px;
    aspect-ratio: auto;
    background-size: cover;
    background-position: 62% center;
    background-repeat: no-repeat;
  }
}

/* Requested hero refinements: Consultation, Why China, and FAQ only. */
.consultation-hero {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: 0;
  aspect-ratio: 1817 / 866;
  background:
    url("assets/consultation-hero-new.png")
    center center / cover
    no-repeat;
  overflow: hidden;
}

.consultation-hero-inner {
  position: relative;
  inset: auto;
  width: 100%;
  height: 100%;
  max-width: var(--site-max-width);
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.consultation-hero-copy,
.whychina-hero-copy {
  padding-top: clamp(180px, calc(11vw + 50px), 215px);
}

.hero-copy,
.feature-hero-copy,
.hospital-hero-copy,
.news-hero-copy,
.about-hero-inner,
.faq-hero-content {
  padding-top: calc(var(--hero-top-offset) + 50px);
}

.faq-hero {
  width: 100%;
  max-width: none;
  background-image: url("assets/faq-hero-new.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.faq-hero-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.faq-hero h1 {
  width: 100%;
  max-width: none;
  text-align: center;
}

.faq-hero h1::after {
  margin-right: auto;
  margin-left: auto;
}

.faq-hero p:not(.faq-eyebrow) {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

@media (max-width: 767px) {
  .consultation-hero {
    min-height: 540px;
    aspect-ratio: auto;
  }

  .consultation-hero-copy,
  .whychina-hero-copy {
    padding-top: calc(var(--site-header-height, 95px) + 102px);
  }
}

/* New non-Homepage hero artwork and unified desktop proportions. */
.hero {
  background-image: url("assets/hero-health-journeys-2600.png");
}

.feature-hero {
  background-image: url("assets/hero-featured-programs-2600.png");
}

.whychina-hero {
  background-image: url("assets/why-china-hero-2600.png");
}

.about-hero {
  background-image: url("assets/about-hero-2600.png");
}

.faq-hero {
  background-image: url("assets/faq-hero-2600.png");
}

.consultation-hero {
  background-image: url("assets/consultation-hero-2600.png");
}

.hospital-hero {
  background-image: url("assets/hospital-hero-2600.png");
}

.news-hero {
  background-image: url("assets/news-hero-2600.png");
}

@media (min-width: 768px) {
  .hero,
  .feature-hero,
  .whychina-hero,
  .about-hero,
  .faq-hero,
  .consultation-hero,
  .hospital-hero,
  .news-hero {
    width: 100%;
    max-width: none;
    min-height: 0;
    aspect-ratio: 2600 / 1204;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
}

/* Standardize Hero vertical rhythm to the current Why China reference. */
:root {
  --hero-reference-top: clamp(180px, calc(11vw + 50px), 215px);
  --hero-reference-eyebrow-gap: 26px;
  --hero-reference-rule-gap: 26px;
}

.hero-copy,
.feature-hero-copy,
.whychina-hero-copy,
.hospital-hero-copy,
.consultation-hero-copy,
.news-hero-copy,
.about-hero-inner,
.faq-hero-content {
  padding-top: var(--hero-reference-top);
}

.eyebrow,
.feature-label,
.whychina-eyebrow,
.about-kicker,
.faq-eyebrow,
.hospital-eyebrow,
.consultation-eyebrow,
.news-eyebrow {
  margin-top: 0;
  margin-bottom: var(--hero-reference-eyebrow-gap);
}

.hero h1::after,
.page-hero h1::after,
.home-hero h1::after,
.feature-hero h1::after,
.whychina-hero h1::after,
.about-hero h1::after,
.faq-hero h1::after,
.hospital-hero h1::after,
.consultation-hero h1::after,
.news-hero h1::after {
  margin-top: var(--hero-reference-rule-gap);
  margin-bottom: var(--hero-reference-rule-gap);
}

.hero-copy > p:not(.eyebrow),
.home-hero-copy > p,
.feature-hero-copy > p:not(.feature-label),
.whychina-hero-copy > p:not(.whychina-eyebrow),
.about-hero p:not(.about-kicker),
.faq-hero p:not(.faq-eyebrow),
.hospital-hero-copy > p:not(.hospital-eyebrow),
.consultation-hero-copy > p:not(.consultation-eyebrow),
.news-hero-copy > p:not(.news-eyebrow),
.page-hero p:not(.eyebrow) {
  margin-top: 0;
}

.home-hero-inner {
  align-items: flex-start;
}

.home-hero-copy {
  padding-top: calc(var(--hero-reference-top) + 36px);
}

.page-hero {
  padding-top: var(--hero-reference-top);
}

@media (max-width: 767px) {
  :root {
    --hero-reference-top: calc(var(--site-header-height, 95px) + 102px);
  }

  .home-hero-copy {
    padding-top: calc(var(--hero-reference-top) + 36px);
  }
}

/* FAQ and Consultation: explicitly follow the Why China Hero rhythm. */
.faq-hero {
  display: block;
}

.faq-hero-content {
  height: 100%;
  box-sizing: border-box;
  justify-content: flex-start;
  padding-top: var(--hero-reference-top);
}

.consultation-hero-inner {
  align-items: flex-start;
}

.consultation-hero-copy {
  padding-top: var(--hero-reference-top);
}

.faq-hero .faq-eyebrow,
.consultation-hero .consultation-eyebrow {
  margin: 0 0 var(--hero-reference-eyebrow-gap);
  color: var(--hero-eyebrow-color);
  font-family: var(--font-sans);
  font-size: var(--hero-eyebrow-size);
  font-weight: var(--hero-eyebrow-weight);
  letter-spacing: var(--hero-eyebrow-spacing);
  line-height: 1;
  text-transform: uppercase;
}

.faq-hero h1::after,
.consultation-hero h1::after {
  margin-top: var(--hero-reference-rule-gap);
  margin-bottom: var(--hero-reference-rule-gap);
}

.faq-hero p:not(.faq-eyebrow),
.consultation-hero-copy > p:not(.consultation-eyebrow) {
  margin-top: 0;
}

.faq-hero-actions,
.consultation-actions {
  margin-top: 28px;
}

/*
 * Targeted Consultation eyebrow centering.
 * Keep the paragraph in normal flow for unchanged vertical rhythm, but anchor
 * its text independently to the horizontal center of the full Hero.
 */
.consultation-hero .consultation-eyebrow {
  display: block;
  width: 100%;
  height: 1em;
  align-self: auto;
  margin-right: 0;
  margin-left: 0;
  padding-right: 0;
  padding-left: 0;
  text-align: center;
  transform: none;
}

.consultation-hero .consultation-eyebrow > span {
  position: absolute;
  left: 50%;
  display: block;
  box-sizing: border-box;
  width: max-content;
  max-width: calc(100% - 32px);
  margin: 0;
  padding-left: var(--hero-eyebrow-spacing);
  text-align: center;
  white-space: nowrap;
  transform: translateX(-50%);
}

/* Match only the FAQ and Featured Programs divider box and paint to the standard Hero rule. */
.faq-hero h1::after,
.feature-hero h1::after {
  display: block;
  box-sizing: border-box;
  width: var(--hero-rule-width);
  min-width: var(--hero-rule-width);
  max-width: var(--hero-rule-width);
  height: var(--hero-rule-height);
  min-height: var(--hero-rule-height);
  max-height: var(--hero-rule-height);
  flex: 0 0 var(--hero-rule-height);
  background-color: var(--bronze);
  background-image: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  opacity: 1;
  transform: none;
}

/* Exact copy requested at 125% size with normal body weight. */
.text-up-25-home-section {
  font-size: 16.25px;
  font-weight: 400;
}

.text-up-25-keywords {
  font-size: 13.75px;
  font-weight: 400;
}

.text-up-25-home-note {
  font-size: 15.625px;
  font-weight: 400;
}

.included-feature-item p.text-up-25-feature-card {
  font-size: 15.25px;
  font-weight: 400;
}

.feature-subtitle.text-up-25-feature-subtitle {
  font-size: 16.25px;
  font-weight: 400;
}

.collection-copy p.text-up-25-collection {
  font-size: 15px;
  font-weight: 400;
}

.whychina-stat-copy p.text-up-25-stat,
.whychina-stat-copy p.text-up-25-stat strong {
  font-size: 15px;
  font-weight: 400;
}

/* Footer matched to the approved compact five-column reference. */
.site-footer {
  width: 100%;
  background: #FFFFFF;
  border: 0;
  box-shadow: none;
}

.site-footer .footer-grid {
  width: 100%;
  max-width: var(--site-max-width);
  margin-right: auto;
  margin-left: auto;
  padding: 34px var(--site-gutter-desktop) 8px;
  display: grid;
  grid-template-columns:
    minmax(270px, 1.55fr)
    minmax(145px, 1fr)
    minmax(120px, 0.85fr)
    minmax(125px, 0.9fr)
    minmax(170px, 0.8fr);
  column-gap: clamp(30px, 2.4vw, 46px);
  row-gap: 0;
  align-items: start;
  justify-content: stretch;
}

.site-footer .footer-grid > div {
  min-width: 0;
}

.site-footer .footer-brand {
  min-width: 0;
  margin: 0 0 13px;
  display: inline-flex;
}

.site-footer .footer-brand .brand-name {
  min-width: 0;
}

.site-footer .footer-brand .brand-title {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1;
}

.site-footer .footer-description {
  max-width: 290px;
  margin: 0;
  color: var(--text);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.7;
}

.site-footer .socials {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.site-footer .socials a {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(54, 50, 47, 0.14);
  border-radius: 50%;
  background: #ffffff;
  color: #111111;
  font-size: 11px;
  font-weight: 700;
}

.site-footer .social-icon {
  width: 16px;
  height: 16px;
  display: block;
  fill: currentColor;
}

.site-footer .social-icon-instagram {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.site-footer .social-icon-instagram .social-icon-dot {
  fill: currentColor;
  stroke: none;
}

.site-footer .footer-heading {
  margin: 2px 0 17px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-footer .footer-links {
  display: grid;
  gap: 9px;
  color: var(--text);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.45;
}

.site-footer .footer-links a {
  color: inherit;
  white-space: nowrap;
}

.site-footer .footer-bottom {
  width: 100%;
  max-width: var(--site-max-width);
  margin-right: auto;
  margin-left: auto;
  padding: 3px var(--site-gutter-desktop) 18px;
  border: 0;
  color: var(--text);
  font-size: 10px;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
}

@media (max-width: 1023px) {
  .site-footer .footer-grid {
    padding-right: var(--site-gutter-tablet);
    padding-left: var(--site-gutter-tablet);
    grid-template-columns: minmax(260px, 1.2fr) repeat(2, minmax(150px, 1fr));
    column-gap: 36px;
    row-gap: 30px;
  }

  .site-footer .footer-bottom {
    padding-right: var(--site-gutter-tablet);
    padding-left: var(--site-gutter-tablet);
  }
}

@media (max-width: 767px) {
  .site-footer .footer-grid {
    padding: 34px var(--site-gutter-mobile) 14px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-footer .footer-description {
    max-width: 330px;
    font-size: 12px;
  }

  .site-footer .footer-heading {
    margin-bottom: 14px;
    font-size: 11px;
  }

  .site-footer .footer-links {
    gap: 8px;
    font-size: 12px;
  }

  .site-footer .footer-bottom {
    padding: 0 var(--site-gutter-mobile) 24px;
    font-size: 10px;
  }
}

/* Refine the large heading scale after switching to Alimama FangYuanTi. */
:root {
  --hero-title-size: clamp(36px, 3.8vw, 54px);
  --hero-title-weight: 400;
  --hero-subtitle-size: 14.2px;
  --hero-subtitle-weight: 300;
  --hero-eyebrow-size: 9px;
  --hero-eyebrow-weight: 300;
}

.hero h1,
.page-hero h1,
.home-hero h1,
.feature-hero h1,
.whychina-hero h1,
.about-hero h1,
.faq-hero h1,
.hospital-hero h1,
.consultation-hero h1,
.news-hero h1 {
  font-size: var(--hero-title-size);
  font-weight: var(--hero-title-weight);
  line-height: 1.08;
}

.journey-title,
.cta-title {
  font-size: clamp(25px, 2.2vw, 32px);
  font-weight: 400;
  line-height: 1.16;
}

.home-philosophy h2,
.hospital-tech-home h2,
.begin-journey-home h2,
.feature-panel h2,
.whychina-architecture h2,
.whychina-wellness-card h2,
.whychina-cta-copy h2,
.consultation-form-heading h2,
.about-story h2,
.about-panel h2,
.about-process-section h2,
.about-cta h2,
.faq-bottom-copy h2,
.hospital-section-heading h2,
.hospital-client-journey h2,
.news-featured-copy h2,
.news-info-card h2,
.placeholder-card h2 {
  font-size: clamp(27px, 2.6vw, 38px);
  font-weight: 400;
  line-height: 1.14;
}

@media (max-width: 1023px) {
  :root {
    --hero-title-size: clamp(33px, 5vw, 47px);
  }

  .journey-title,
  .cta-title,
  .home-philosophy h2,
  .hospital-tech-home h2,
  .begin-journey-home h2,
  .feature-panel h2,
  .whychina-architecture h2,
  .whychina-wellness-card h2,
  .whychina-cta-copy h2,
  .consultation-form-heading h2,
  .about-story h2,
  .about-panel h2,
  .about-process-section h2,
  .about-cta h2,
  .faq-bottom-copy h2,
  .hospital-section-heading h2,
  .hospital-client-journey h2,
  .news-featured-copy h2,
  .news-info-card h2,
  .placeholder-card h2 {
    font-size: clamp(26px, 4.8vw, 34px);
  }
}

/* Typography weight pass: titles regular, small text lighter and a touch smaller. */
h1,
h2,
h3,
h4,
h5,
h6,
.brand-title,
.site-footer .footer-brand .brand-title,
.section-title,
.home-section-title,
.news-section-bar h2,
.journey-title,
.cta-title,
.hospital-card-title,
.hospital-card-title-single,
.news-featured-copy h2,
.news-info-card h2,
.feature-panel h2,
.about-page h2,
.whychina-page h2,
.consultation-page h2,
.faq-page h2,
.hospital-page h2,
.news-page h2 {
  font-family: var(--font-display);
  font-weight: 400;
}

p,
li,
.main-nav a,
.language,
.button,
.brand-subtitle,
.eyebrow,
.feature-label,
.whychina-eyebrow,
.about-kicker,
.faq-eyebrow,
.hospital-eyebrow,
.consultation-eyebrow,
.news-eyebrow,
.journey-subtitle,
.feature-subtitle,
.keyword-row,
.home-label,
.news-pill,
.footer-heading,
.site-footer .footer-description,
.site-footer .footer-links,
.site-footer .footer-bottom,
.consultation-form label,
.consultation-form input,
.consultation-form textarea,
.consultation-form select {
  font-family: var(--font-sans);
  font-weight: 300;
}

.hero-copy > p:not(.eyebrow),
.home-hero-copy > p,
.feature-hero-copy > p,
.whychina-hero-copy > p,
.about-hero p,
.faq-hero p,
.hospital-hero p,
.consultation-hero p,
.news-hero p {
  font-size: var(--hero-subtitle-size);
  font-weight: var(--hero-subtitle-weight);
}

.main-nav a,
.language {
  font-size: 14px;
}

.button {
  font-size: 12px;
  font-weight: 300;
}

.brand-subtitle,
.eyebrow,
.feature-label,
.whychina-eyebrow,
.about-kicker,
.faq-eyebrow,
.hospital-eyebrow,
.consultation-eyebrow,
.news-eyebrow {
  font-size: var(--hero-eyebrow-size);
  font-weight: var(--hero-eyebrow-weight);
}

.section-title,
.home-section-title,
.news-section-bar h2 {
  font-size: 13px;
  font-weight: 400;
}

.journey-subtitle,
.feature-subtitle,
.home-section-copy,
.home-modern-copy,
.home-cultural-copy,
.footer-description,
.site-footer .footer-description {
  font-size: clamp(13px, 0.9vw, 14.5px);
  font-weight: 300;
}

.keyword-row,
.home-label,
.news-pill,
.site-footer .footer-links,
.site-footer .footer-bottom {
  font-size: 11px;
  font-weight: 300;
}

@media (max-width: 767px) {
  :root {
    --hero-title-size: clamp(29px, 8vw, 37px);
  }

  .journey-title,
  .cta-title,
  .home-philosophy h2,
  .hospital-tech-home h2,
  .begin-journey-home h2,
  .feature-panel h2,
  .whychina-architecture h2,
  .whychina-wellness-card h2,
  .whychina-cta-copy h2,
  .consultation-form-heading h2,
  .about-story h2,
  .about-panel h2,
  .about-process-section h2,
  .about-cta h2,
  .faq-bottom-copy h2,
  .hospital-section-heading h2,
  .hospital-client-journey h2,
  .news-featured-copy h2,
  .news-info-card h2,
  .placeholder-card h2 {
    font-size: clamp(24px, 7vw, 31px);
    line-height: 1.16;
  }
}

/* Shared Hero eyebrow style, using the About Us Hero kicker as the reference. */
.hero-eyebrow {
  color: var(--hero-eyebrow-color);
  font-family: var(--font-sans);
  font-size: var(--hero-eyebrow-size);
  font-style: normal;
  font-weight: var(--hero-eyebrow-weight);
  letter-spacing: var(--hero-eyebrow-spacing);
  line-height: 1;
  text-transform: uppercase;
}

.site-header .brand-title {
  font-size: 23.4px;
}

@media (max-width: 767px) {
  .site-header .brand-title {
    font-size: 19.1px;
  }
}

/*
 * Global Hero eyebrow lockup.
 * Values match the final computed style of the About Us Hero kicker.
 */
.about-hero .about-hero-inner > .hero-eyebrow,
.hero .hero-copy > .hero-eyebrow,
.feature-hero .feature-hero-copy > .hero-eyebrow,
.whychina-hero .whychina-hero-copy > .hero-eyebrow,
.faq-hero .faq-hero-content > .hero-eyebrow,
.consultation-hero .consultation-hero-copy > .hero-eyebrow,
.hospital-hero .hospital-hero-copy > .hero-eyebrow,
.news-hero .news-hero-copy > .hero-eyebrow,
.page-hero .site-container > .hero-eyebrow {
  color: rgb(201, 131, 58);
  font-family: "Alimama FangYuanTi", "Alibaba PuHuiTi", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  font-size: 14.2px;
  font-style: normal;
  font-weight: 300;
  letter-spacing: 3.124px;
  line-height: 14.2px;
  text-transform: uppercase;
  opacity: 1;
}

/* Why China: increase only the two requested headings by 15%. */
.whychina-intro h2 {
  font-size: 13.8px;
}

.whychina-architecture h2 {
  font-size: clamp(31.05px, 2.99vw, 43.7px);
}

/* Existing Hero CTAs use the FAQ Hero buttons as their shared visual standard. */
.home-hero .home-actions,
.feature-hero .feature-actions,
.whychina-hero .whychina-actions,
.faq-hero .faq-hero-actions,
.consultation-hero .consultation-actions,
.hospital-hero .hospital-actions,
.news-hero .news-hero-actions,
.page-hero .cta-actions {
  gap: 26px;
}

.home-hero .home-actions .button,
.feature-hero .feature-actions .button,
.whychina-hero .whychina-actions .button,
.faq-hero .faq-hero-actions .button,
.consultation-hero .consultation-actions .button,
.hospital-hero .hospital-actions .button,
.news-hero .news-hero-actions .button,
.page-hero .cta-actions .button {
  min-width: 270px;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.09em;
  line-height: 1;
  text-transform: uppercase;
}

.home-hero .button-primary,
.feature-hero .button-primary,
.whychina-hero .button-primary,
.faq-hero .button-primary,
.consultation-hero .button-primary,
.hospital-hero .button-primary,
.news-hero .button-primary,
.page-hero .button-primary {
  background-color: var(--button-navy);
  border-color: transparent;
  color: var(--white);
}

.home-hero .home-actions .button-secondary,
.feature-hero .feature-actions .button-secondary,
.whychina-hero .whychina-actions .button-secondary,
.faq-hero .faq-hero-actions .button-secondary,
.consultation-hero .consultation-actions .button-secondary,
.hospital-hero .hospital-actions .button-secondary,
.news-hero .news-hero-actions .button-secondary,
.page-hero .cta-actions .button-secondary {
  background-color: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--bronze);
  color: var(--navy);
}

.home-hero .button:hover,
.feature-hero .button:hover,
.whychina-hero .button:hover,
.faq-hero .button:hover,
.consultation-hero .button:hover,
.hospital-hero .button:hover,
.news-hero .button:hover,
.page-hero .button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(6, 29, 61, 0.12);
}

@media (max-width: 1023px) {
  .whychina-architecture h2 {
    font-size: clamp(29.9px, 5.52vw, 39.1px);
  }
}

@media (max-width: 767px) {
  .whychina-architecture h2 {
    font-size: clamp(27.6px, 8.05vw, 35.65px);
  }

  .home-hero .home-actions,
  .feature-hero .feature-actions,
  .whychina-hero .whychina-actions,
  .faq-hero .faq-hero-actions,
  .consultation-hero .consultation-actions,
  .hospital-hero .hospital-actions,
  .news-hero .news-hero-actions,
  .page-hero .cta-actions {
    gap: 12px;
  }

  .home-hero .home-actions .button,
  .feature-hero .feature-actions .button,
  .whychina-hero .whychina-actions .button,
  .faq-hero .faq-hero-actions .button,
  .consultation-hero .consultation-actions .button,
  .hospital-hero .hospital-actions .button,
  .news-hero .news-hero-actions .button,
  .page-hero .cta-actions .button {
    width: 100%;
    min-width: 0;
  }
}

.health-personalization-banner .cta-copy > .eyebrow {
  font-size: 10.8px;
}

.consultation-interest input[type="checkbox"],
.consultation-disclaimer input[type="checkbox"] {
  width: 18px;
  min-width: 18px;
  min-height: 18px;
  margin: 0;
  padding: 0;
}

/* Final responsive stabilization: preserve desktop design and prevent collisions. */
@media (max-width: 1160px) {
  .main-nav {
    gap: 12px;
    font-size: 12px;
  }

  .main-nav a {
    font-size: 12px;
  }

  .collection-copy h3 {
    white-space: normal;
  }

  .faq-bottom-copy h2 {
    white-space: normal;
  }

  .whychina-cta-copy {
    width: 58%;
    padding-right: 28px;
    transform: none;
  }

  .collection-row ul {
    overflow-x: visible;
  }

  .collection-row li,
  .collection-row li.collection-item-two-line {
    white-space: normal;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 1023px) {
  .main-nav {
    display: none;
  }

  .hero-nowrap {
    white-space: normal;
  }

  .home-hero h1,
  .page-hero h1,
  .hero h1,
  .feature-hero h1,
  .whychina-hero h1,
  .about-hero h1,
  .faq-hero h1,
  .consultation-hero h1,
  .hospital-hero h1,
  .news-hero h1 {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .about-story-label strong {
    white-space: normal;
  }

  .about-story-row > h2 {
    margin-left: 0;
    margin-right: 0;
  }

  .about-difference-grid {
    gap: 10px;
  }

  .about-feature-card {
    padding-right: 8px;
    padding-left: 8px;
  }

  .included-feature-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .included-feature-item {
    min-width: 0;
    padding-right: 22px;
    padding-left: 22px;
  }

  .included-feature-item h3,
  .included-feature-item p {
    overflow-wrap: anywhere;
  }

  .whychina-cta-card {
    min-height: 0;
    background-position: center center;
  }

  .whychina-cta-copy {
    width: min(100%, 560px);
    margin-left: auto;
    padding: 34px 28px;
    transform: none;
  }

  .whychina-cta-copy h2,
  .whychina-cta-copy p,
  .whychina-cta-copy .whychina-actions {
    width: 100%;
    max-width: 100%;
  }

  .health-personalization-banner .cta-title {
    width: 100%;
    max-width: 100%;
    white-space: normal;
  }

  .consultation-interest input[type="checkbox"],
  .consultation-disclaimer input[type="checkbox"] {
    width: 18px;
    min-width: 18px;
    min-height: 18px;
    margin: 0;
    padding: 0;
  }
}

@media (max-width: 767px) {
  .home-hero-copy,
  .hero-copy,
  .feature-hero-copy,
  .whychina-hero-copy,
  .about-hero-inner,
  .faq-hero-content,
  .consultation-hero-copy,
  .hospital-hero-copy,
  .news-hero-copy {
    width: 100%;
    max-width: 100%;
  }

  .why-card-grid,
  .program-row,
  .journey-card-grid {
    min-width: 0;
  }

  .why-card,
  .program-item,
  .journey-card-home {
    min-width: 0;
  }

  .collection-row ul {
    width: 100%;
    columns: 1;
    column-width: auto;
    overflow-x: visible;
  }

  .collection-row li,
  .collection-row li.collection-item-two-line {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .news-pills {
    flex-wrap: wrap;
    overflow-x: visible;
    padding-bottom: 0;
  }

  .news-pill {
    flex: 0 1 auto;
    max-width: 100%;
    white-space: normal;
  }

  .whychina-cta-copy {
    width: 100%;
    padding: 28px 22px;
  }

  .whychina-cta-copy h2 {
    overflow-wrap: anywhere;
  }

  .consultation-form-card input,
  .consultation-form-card select,
  .consultation-form-card textarea {
    max-width: 100%;
  }

  .consultation-interest input[type="checkbox"],
  .consultation-disclaimer input[type="checkbox"] {
    width: 18px;
    min-width: 18px;
  }
}

@media (max-width: 420px) {
  .why-card-grid {
    grid-template-columns: 1fr;
  }
}

/* Include the common 1024px tablet viewport in the stacked tablet layout. */
@media (max-width: 1050px) {
  .main-nav {
    display: none;
  }

  .about-story-row > h2 {
    margin-left: 0;
    margin-right: 0;
  }

  .about-difference-grid {
    gap: 10px;
  }

  .about-feature-card {
    padding-right: 8px;
    padding-left: 8px;
  }

  .included-feature-grid {
    grid-template-columns: 1fr;
  }

  .collection-row {
    grid-template-columns: 210px 58px minmax(0, 1fr);
  }

  .collection-row > ul {
    grid-column: 1 / -1;
    width: 100%;
    columns: 2;
  }

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

  .health-personalization-banner .cta-title {
    width: 100%;
    max-width: 100%;
    white-space: normal;
  }
}

/* Mobile overrides must follow the 1024px tablet rules above. */
@media (max-width: 767px) {
  .collection-row {
    grid-template-columns: 1fr;
  }

  .collection-row > ul {
    grid-column: auto;
    columns: 1;
  }

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

@media (max-width: 420px) {
  .signature-grid {
    grid-template-columns: 1fr;
  }
}
