:root {
  --ivory: #f7f1e7;
  --warm-white: #fffdf8;
  --paper: #fbf7ef;
  --charcoal: #211f1b;
  --ink: #2b2924;
  --muted: #6f746c;
  --medical-grey: #d9ddd6;
  --soft-grey: #eef0eb;
  --bamboo: #506f54;
  --bamboo-deep: #314b37;
  --bamboo-soft: #e7eee4;
  --gold: #b79b62;
  --gold-soft: #eadfca;
  --line: rgba(33, 31, 27, 0.13);
  --line-strong: rgba(33, 31, 27, 0.22);
  --shadow: 0 20px 48px rgba(48, 43, 36, 0.1);
  --radius: 8px;
  --max: 1180px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family:
    Inter,
    "Helvetica Neue",
    Arial,
    "PingFang SC",
    "Microsoft YaHei",
    sans-serif;
  font-size: 16px;
  line-height: 1.66;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.9), rgba(247, 241, 231, 0.88)),
    radial-gradient(circle at 16% 4%, rgba(231, 238, 228, 0.92), transparent 34%),
    radial-gradient(circle at 84% 12%, rgba(234, 223, 202, 0.72), transparent 28%);
}

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

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

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

button {
  color: inherit;
}

:focus-visible {
  outline: 3px solid rgba(183, 155, 98, 0.58);
  outline-offset: 3px;
}

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

.site-header {
  position: fixed;
  z-index: 40;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: var(--header-height);
  padding: 12px clamp(18px, 3vw, 40px);
  border-bottom: 1px solid transparent;
  background: rgba(247, 241, 231, 0.76);
  backdrop-filter: blur(18px);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 14px 36px rgba(33, 31, 27, 0.08);
}

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

.brand img {
  width: 42px;
  height: auto;
  max-height: 42px;
  object-fit: contain;
}

.brand span {
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 760;
  letter-spacing: 0;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  min-width: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.desktop-nav a {
  padding: 9px 10px;
  border-radius: 6px;
  white-space: nowrap;
}

.desktop-nav a:hover {
  color: var(--charcoal);
  background: rgba(255, 253, 248, 0.68);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.76);
}

.language-switcher button {
  min-width: 58px;
  height: 34px;
  padding: 0 10px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 720;
  cursor: pointer;
}

.language-switcher button.is-active {
  color: var(--charcoal);
  background: var(--gold-soft);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.78);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--charcoal);
}

.mobile-nav {
  position: fixed;
  z-index: 39;
  top: var(--header-height);
  right: 14px;
  left: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.98);
  box-shadow: var(--shadow);
}

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

.mobile-nav nav {
  display: grid;
  gap: 2px;
}

.mobile-nav a {
  padding: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--charcoal);
  font-weight: 680;
}

.mobile-nav .button {
  margin-top: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 760;
  line-height: 1.2;
  cursor: pointer;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

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

.button-primary {
  color: var(--warm-white);
  background: var(--bamboo-deep);
  border-color: var(--bamboo-deep);
}

.button-secondary {
  color: var(--charcoal);
  background: rgba(255, 253, 248, 0.7);
  border-color: var(--line-strong);
}

.button.compact {
  min-height: 38px;
  padding: 9px 13px;
  font-size: 13px;
}

.button.wide {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--bamboo-deep);
  font-weight: 760;
  cursor: pointer;
}

.text-link::after {
  content: "->";
}

main {
  overflow: hidden;
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  min-height: 760px;
  padding: calc(var(--header-height) + 42px) clamp(20px, 4vw, 64px) 56px;
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.86), rgba(247, 241, 231, 0.2));
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.eyebrow,
.card-kicker {
  margin: 0 0 14px;
  color: var(--bamboo);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy h1,
.page-hero h1 {
  max-width: 720px;
  margin: 0;
  color: var(--charcoal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 64px;
  font-weight: 500;
  line-height: 0.98;
}

.hero-copy p,
.page-hero p,
.section-heading p,
.feature-copy p,
.hospital-copy p,
.final-cta p {
  color: var(--muted);
  font-size: 18px;
}

.hero-actions,
.final-actions,
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.hero-visual picture {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-visual::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(247, 241, 231, 0.92) 0%, rgba(247, 241, 231, 0.34) 30%, rgba(247, 241, 231, 0) 62%),
    linear-gradient(0deg, rgba(247, 241, 231, 0.22), rgba(247, 241, 231, 0));
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--max);
  margin: -34px auto 0;
  padding: 0 20px;
  position: relative;
  z-index: 5;
}

.trust-bar span {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.9);
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 760;
  text-align: center;
}

.trust-bar span:first-child {
  border-radius: var(--radius) 0 0 var(--radius);
}

.trust-bar span:last-child {
  border-right: 1px solid var(--line);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.section,
.final-cta,
.legal-notice,
.site-footer,
.breadcrumbs {
  width: min(var(--max), calc(100% - 40px));
  margin-right: auto;
  margin-left: auto;
}

.section {
  padding: 88px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.wide {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 42px;
  max-width: none;
  align-items: end;
}

.section-heading h2,
.feature-copy h2,
.hospital-copy h2,
.final-cta h2,
.text-section h2,
.related-hospital h2,
.info-panel h2 {
  margin: 0;
  color: var(--charcoal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  font-weight: 500;
  line-height: 1.08;
}

.section-heading p {
  margin: 14px 0 0;
}

.need-selector {
  padding-top: 112px;
}

.need-grid,
.destination-grid,
.stage-grid,
.hospital-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.need-card,
.destination-grid article,
.stage-grid article,
.info-panel,
.summary-card,
.related-hospital,
.clinical-notes,
.legal-notice {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.76);
}

.need-card {
  min-height: 150px;
  padding: 22px;
}

.need-card span {
  display: block;
  color: var(--charcoal);
  font-size: 22px;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.18;
}

.need-card small {
  display: inline-block;
  margin-top: 24px;
  color: var(--bamboo);
  font-weight: 760;
}

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

.journey-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.9);
}

.card-media {
  display: block;
  aspect-ratio: 1.42;
  overflow: hidden;
  background: var(--soft-grey);
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-body {
  padding: 22px;
}

.card-body h3 {
  min-height: 68px;
  margin: 0;
  color: var(--charcoal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.08;
}

.card-body p {
  margin: 14px 0 0;
  color: var(--muted);
}

.card-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 22px 0 0;
}

.card-meta div {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.card-meta dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 720;
}

.card-meta dd {
  margin: 4px 0 0;
  color: var(--charcoal);
  font-weight: 780;
}

.feature-moment,
.hospital-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  align-items: center;
  gap: 48px;
}

.feature-image,
.page-hero-image {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--soft-grey);
}

.feature-image picture,
.page-hero-image picture {
  display: block;
  aspect-ratio: 1.48;
}

.feature-image img,
.page-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quiet-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.quiet-tags span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--bamboo-soft);
  color: var(--bamboo-deep);
  font-size: 13px;
  font-weight: 760;
}

.timeline-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 253, 248, 0.74);
}

.timeline-list li {
  min-height: 260px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.timeline-list li:last-child {
  border-right: 0;
}

.timeline-list span,
.number-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 13px;
  font-weight: 820;
}

.timeline-list h3 {
  margin: 0;
  color: var(--charcoal);
  font-size: 20px;
  line-height: 1.2;
}

.timeline-list p,
.destination-grid p,
.stage-grid p,
.info-panel li,
.clinical-notes p,
.legal-notice p {
  color: var(--muted);
}

.hospital-spotlight {
  padding: 52px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 253, 248, 0.92), rgba(231, 238, 228, 0.72));
}

.hospital-panel {
  min-height: 360px;
  padding: 32px;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.28), rgba(33, 31, 27, 0.34)),
    url("/assets/care-screening.webp") center / cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--warm-white);
}

.hospital-panel p,
.hospital-panel span {
  margin: 0;
  color: rgba(255, 253, 248, 0.88);
}

.hospital-panel h3 {
  max-width: 420px;
  margin: 8px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.1;
}

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

.check-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}

.check-list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.check-list.two-col {
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 32px;
}

.destination-grid article,
.stage-grid article,
.info-panel {
  padding: 24px;
}

.destination-grid h3,
.stage-grid h3 {
  margin: 0;
  color: var(--charcoal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 500;
}

.china-medical-map {
  padding-top: 34px;
}

.data-note {
  display: grid;
  gap: 8px;
  margin: 0 0 22px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(231, 238, 228, 0.58);
  color: var(--muted);
  font-size: 13px;
}

.data-note strong {
  color: var(--charcoal);
}

.city-stack {
  display: grid;
  gap: 18px;
}

.city-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.82);
  overflow: hidden;
}

.city-heading {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
  padding: 24px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255, 253, 248, 0.92), rgba(234, 223, 202, 0.34));
}

.city-heading span {
  color: var(--bamboo);
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.city-heading h3 {
  margin: 4px 0 0;
  color: var(--charcoal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  font-weight: 500;
  line-height: 1.05;
}

.city-heading p {
  margin: 0;
  color: var(--muted);
}

.city-hospital-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
}

.city-hospital-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  padding: 20px;
  background: rgba(255, 253, 248, 0.96);
}

.hospital-rank,
.national-card > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 12px;
  font-weight: 820;
}

.city-hospital-card h4,
.national-card h3 {
  margin: 0;
  color: var(--charcoal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.15;
}

.city-hospital-card p,
.national-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.hospital-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.hospital-tags span {
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--bamboo-soft);
  color: var(--bamboo-deep);
  font-size: 12px;
  font-weight: 720;
}

.hospital-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
}

.hospital-links a,
.national-card a {
  color: var(--bamboo-deep);
  font-weight: 760;
}

.national-top-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.national-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.82);
}

.national-card > span {
  margin-bottom: 14px;
}

.national-card strong {
  display: inline-block;
  margin-top: 10px;
  color: var(--charcoal);
}

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

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.78);
}

.faq-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 20px;
  border: 0;
  background: transparent;
  color: var(--charcoal);
  font-weight: 780;
  text-align: left;
  cursor: pointer;
}

.faq-item button span:first-child {
  padding-right: 16px;
}

.faq-answer {
  padding: 0 20px 18px;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 48px;
  margin-bottom: 44px;
  padding: 42px;
  border: 1px solid rgba(183, 155, 98, 0.34);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 253, 248, 0.9), rgba(234, 223, 202, 0.58));
}

.final-cta h2 {
  max-width: 640px;
}

.legal-notice {
  display: grid;
  gap: 8px;
  padding: 18px;
  margin-top: 40px;
  margin-bottom: 34px;
  font-size: 13px;
}

.legal-notice p {
  margin: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  padding: 38px 0 92px;
  border-top: 1px solid var(--line);
}

.site-footer img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.site-footer strong {
  display: block;
  margin-top: 10px;
  color: var(--charcoal);
  font-size: 14px;
}

.site-footer p {
  max-width: 620px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.site-footer nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(130px, 1fr));
  gap: 8px 20px;
  color: var(--muted);
  font-size: 13px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: calc(var(--header-height) + 28px);
  color: var(--muted);
  font-size: 13px;
}

.breadcrumbs a {
  color: var(--bamboo-deep);
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.8fr);
  gap: 48px;
  align-items: center;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 54px 0 64px;
}

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

.product-summary {
  display: grid;
  grid-template-columns: 0.8fr 0.8fr 1.4fr;
  gap: 14px;
  padding-top: 0;
}

.summary-card {
  padding: 22px;
}

.summary-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 720;
}

.summary-card strong {
  color: var(--charcoal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.18;
}

.text-section {
  padding-top: 42px;
  padding-bottom: 42px;
}

.number-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.number-grid li {
  min-height: 170px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.76);
}

.number-grid span {
  margin-bottom: 18px;
}

.number-grid p {
  margin: 0;
  color: var(--muted);
}

.clinical-notes {
  padding: 20px;
  background: rgba(231, 238, 228, 0.62);
}

.related-hospital {
  padding: 30px;
}

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

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

.info-panel ul {
  display: grid;
  gap: 10px;
  padding-left: 18px;
}

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

.contact-aside {
  position: sticky;
  top: 100px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.78);
}

.contact-aside h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 500;
}

.drawer-shell {
  position: fixed;
  z-index: 80;
  inset: 0;
  pointer-events: none;
  visibility: hidden;
}

.drawer-shell.is-open {
  pointer-events: auto;
  visibility: visible;
}

.drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(33, 31, 27, 0.28);
  opacity: 0;
  transition: opacity 180ms ease;
}

.drawer-shell.is-open .drawer-backdrop {
  opacity: 1;
}

.enquiry-drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: min(560px, 100%);
  height: 100%;
  overflow: auto;
  padding: 24px;
  background: var(--warm-white);
  box-shadow: -20px 0 48px rgba(33, 31, 27, 0.18);
  transform: translateX(100%);
  transition: transform 220ms ease;
}

.drawer-shell.is-open .enquiry-drawer {
  transform: translateX(0);
}

.drawer-close {
  position: sticky;
  top: 0;
  float: right;
  z-index: 1;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--warm-white);
  cursor: pointer;
}

.enquiry-form {
  display: grid;
  gap: 14px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.86);
}

.drawer-shell .enquiry-form {
  margin-top: 26px;
  border: 0;
  padding: 12px 4px 24px;
}

.form-heading h2,
.success-message h2 {
  margin: 0;
  color: var(--charcoal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.1;
}

.form-heading p,
.form-note,
.success-message p,
.contact-aside p {
  color: var(--muted);
}

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

.field span,
.consent-field {
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 720;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 10px 12px;
  background: var(--warm-white);
  color: var(--charcoal);
}

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

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: #9d3f34;
}

.field-error {
  min-height: 18px;
  color: #9d3f34;
  font-size: 12px;
}

.consent-field {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
}

.success-message {
  padding: 24px;
  border: 1px solid rgba(80, 111, 84, 0.28);
  border-radius: var(--radius);
  background: var(--bamboo-soft);
}

.sticky-mobile-cta {
  position: fixed;
  z-index: 50;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 12px 34px rgba(33, 31, 27, 0.14);
}

.sticky-mobile-cta a,
.sticky-mobile-cta button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--warm-white);
  color: var(--charcoal);
  font-weight: 780;
}

.sticky-mobile-cta button {
  border-color: var(--bamboo-deep);
  background: var(--bamboo-deep);
  color: var(--warm-white);
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .desktop-nav {
    display: none;
  }

  .nav-toggle {
    display: inline-block;
    order: 2;
  }

  .header-actions {
    justify-self: end;
    order: 3;
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 72px;
  }

  .site-header {
    gap: 10px;
    padding: 10px 16px;
  }

  .brand img {
    width: 38px;
  }

  .brand span {
    max-width: 128px;
    overflow: hidden;
    font-size: 13px;
    text-overflow: ellipsis;
  }

  .header-actions .button {
    display: none;
  }

  .hero-section,
  .page-hero,
  .feature-moment,
  .hospital-spotlight,
  .contact-layout,
  .section-heading.wide {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: auto;
    padding: calc(var(--header-height) + 28px) 20px 34px;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: 48px;
  }

  .hero-copy p,
  .page-hero p,
  .section-heading p,
  .feature-copy p,
  .hospital-copy p,
  .final-cta p {
    font-size: 16px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .trust-bar,
  .journey-grid,
  .need-grid,
  .destination-grid,
  .stage-grid,
  .city-heading,
  .city-hospital-list,
  .national-top-grid,
  .timeline-list,
  .product-summary,
  .number-grid,
  .hospital-detail-grid {
    grid-template-columns: 1fr;
  }

  .trust-bar {
    margin-top: 0;
  }

  .trust-bar span,
  .trust-bar span:first-child,
  .trust-bar span:last-child {
    border: 1px solid var(--line);
    border-radius: 0;
  }

  .trust-bar span:first-child {
    border-radius: var(--radius) var(--radius) 0 0;
  }

  .trust-bar span:last-child {
    border-radius: 0 0 var(--radius) var(--radius);
  }

  .section {
    padding: 64px 0;
  }

  .timeline-list li {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .timeline-list li:last-child {
    border-bottom: 0;
  }

  .hospital-spotlight {
    padding: 24px;
  }

  .final-cta {
    display: grid;
    padding: 28px;
  }

  .contact-aside {
    position: static;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 74px;
  }

  .section,
  .final-cta,
  .legal-notice,
  .site-footer,
  .breadcrumbs,
  .page-hero {
    width: min(100% - 28px, var(--max));
  }

  .language-switcher button {
    min-width: 48px;
    padding: 0 8px;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: 42px;
  }

  .section-heading h2,
  .feature-copy h2,
  .hospital-copy h2,
  .final-cta h2,
  .text-section h2,
  .related-hospital h2,
  .info-panel h2 {
    font-size: 34px;
  }

  .hero-actions,
  .final-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 360px;
  }

  .card-body h3 {
    min-height: 0;
  }

  .card-meta,
  .check-list.two-col {
    grid-template-columns: 1fr;
  }

  .sticky-mobile-cta {
    display: grid;
  }

  .enquiry-form {
    padding: 18px;
  }
}
