:root {
  --ink: #17211f;
  --muted: #5d6f6b;
  --paper: #f8faf7;
  --white: #ffffff;
  --teal: #075e57;
  --teal-2: #0b7a70;
  --moss: #9dbb63;
  --coral: #d35f45;
  --amber: #d59b2d;
  --line: rgba(23, 33, 31, 0.14);
  --shadow: 0 22px 80px rgba(12, 35, 32, 0.18);
  --radius: 8px;
  color-scheme: light;
  font-family: "Sora", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

#services,
#process,
#hospitals,
#contact {
  scroll-margin-top: 92px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: clip;
}

img,
svg {
  display: block;
}

main,
section,
.section,
.hero-content,
.intro-grid,
.process-section,
.destination-section,
.destination-image,
.destination-copy,
.contact-section,
.service-card,
.timeline li,
.contact-card,
.enquiry-form {
  min-width: 0;
  max-width: 100%;
}

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

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

.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: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  height: 76px;
  padding: 0 clamp(18px, 4vw, 56px);
  background: rgba(248, 250, 247, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), #14342f 62%, var(--coral));
  border-radius: var(--radius);
  font-weight: 700;
  letter-spacing: 0;
}

.brand strong {
  display: block;
  line-height: 1.1;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.75rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #33433f;
  font-size: 0.94rem;
  font-weight: 600;
}

.nav-links a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-active {
  border-color: var(--coral);
}

.icon-button {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}

.menu-toggle {
  display: none;
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: min(760px, calc(100svh - 150px));
  isolation: isolate;
  overflow: hidden;
  background: #15322f;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    linear-gradient(90deg, rgba(7, 42, 38, 0.83) 0%, rgba(7, 42, 38, 0.58) 42%, rgba(7, 42, 38, 0.16) 100%),
    url("https://images.unsplash.com/photo-1576091160550-2173dba999ef?auto=format&fit=crop&w=2200&q=84") center / cover;
  transform: scale(1.02);
  z-index: -3;
}

.hero-shade {
  background:
    radial-gradient(circle at 22% 28%, rgba(157, 187, 99, 0.28), transparent 26%),
    linear-gradient(180deg, transparent 72%, rgba(248, 250, 247, 0.96) 100%);
  z-index: -2;
}

.hero-content {
  width: min(760px, calc(100% - 36px));
  padding: clamp(56px, 7vw, 84px) 0 34px clamp(18px, 6vw, 86px);
  color: var(--white);
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f4c08b;
}

h1,
h2,
h3,
p,
li,
dt,
dd,
td,
th,
a,
button,
label {
  overflow-wrap: break-word;
}

h1,
h2 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 680px;
  font-size: 5.7rem;
}

h2 {
  max-width: 880px;
  font-size: 4rem;
  hyphens: auto;
}

h1 span {
  display: block;
}

h1 span:first-child {
  white-space: nowrap;
}

h3 {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.3;
}

.hero-copy {
  max-width: 660px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.18rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button.primary {
  color: var(--white);
  background: var(--coral);
  box-shadow: 0 12px 34px rgba(211, 95, 69, 0.28);
}

.button.primary:hover {
  background: #bd4e38;
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(16px);
}

.button.tertiary {
  color: var(--teal);
  background: var(--white);
  border-color: rgba(7, 94, 87, 0.18);
}

.button.tertiary:hover {
  background: #eef4ef;
}

.button.full {
  width: 100%;
}

.button svg,
.service-card svg,
.feature-list svg,
.contact-card svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.market-snapshot {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  width: min(710px, 100%);
  margin: 28px 0 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
}

.market-snapshot div {
  min-width: 0;
  padding: 16px;
  background: rgba(7, 42, 38, 0.36);
}

.market-snapshot dt {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.market-snapshot dd {
  margin: 7px 0 0;
  font-weight: 700;
}

.section {
  padding: clamp(70px, 10vw, 128px) clamp(18px, 5vw, 72px);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.8fr);
  gap: clamp(34px, 7vw, 84px);
  align-items: start;
  background:
    linear-gradient(90deg, rgba(7, 94, 87, 0.06), transparent 50%),
    var(--paper);
}

.intro-copy {
  display: grid;
  gap: 18px;
  color: #40524e;
  font-size: 1.06rem;
}

.intro-copy p,
.process-copy p,
.destination-copy p,
.contact-copy p {
  margin: 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 26px;
  margin-bottom: 36px;
}

.service-band {
  background: #e9f0ea;
}

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

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 310px;
  padding: 24px;
  background: var(--white);
  border: 1px solid rgba(7, 94, 87, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 10px 36px rgba(22, 54, 49, 0.08);
}

.service-card svg {
  width: 32px;
  height: 32px;
  margin-bottom: 28px;
  color: var(--teal);
}

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

.service-card span {
  display: block;
  margin-top: 22px;
  padding-top: 16px;
  color: var(--coral);
  border-top: 1px solid var(--line);
  font-size: 0.86rem;
  font-weight: 700;
}

.process-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(320px, 1fr);
  gap: clamp(38px, 8vw, 96px);
  background: var(--white);
}

.process-copy {
  position: sticky;
  top: 110px;
  align-self: start;
  display: grid;
  gap: 24px;
}

.process-copy p:last-child {
  color: var(--muted);
  font-size: 1.05rem;
}

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

.timeline li {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 22px;
  padding: 26px;
  background: #f6f8f5;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.timeline span {
  color: var(--amber);
  font-family: "Fraunces", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.timeline p {
  margin: 8px 0 0;
  color: var(--muted);
}

.destination-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 0.8fr);
  min-height: 620px;
  background: #163631;
  color: var(--white);
}

.destination-image {
  min-height: 420px;
  background:
    linear-gradient(90deg, rgba(8, 45, 40, 0.22), rgba(8, 45, 40, 0.02)),
    url("https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?auto=format&fit=crop&w=1800&q=84") center / cover;
}

.destination-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: clamp(44px, 7vw, 86px);
}

.destination-copy p {
  color: rgba(255, 255, 255, 0.75);
}

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

.feature-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.88);
}

.feature-list li span {
  min-width: 0;
}

.feature-list svg {
  color: #f4c08b;
}


.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 0.62fr);
  gap: clamp(34px, 8vw, 92px);
  background: var(--white);
}

.contact-copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-copy p {
  color: var(--muted);
  font-size: 1.06rem;
}

.contact-card {
  display: flex;
  gap: 14px;
  align-items: start;
  width: min(100%, 520px);
  padding: 20px;
  background: #edf5ef;
  border: 1px solid rgba(7, 94, 87, 0.14);
  border-radius: var(--radius);
}

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

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

.contact-card span {
  margin-top: 4px;
  color: var(--muted);
}

.enquiry-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  background: #f6f8f5;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.enquiry-form label {
  display: grid;
  gap: 7px;
  color: #2f403c;
  font-size: 0.9rem;
  font-weight: 700;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(23, 33, 31, 0.18);
  border-radius: var(--radius);
  outline: 0;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  border-color: var(--teal-2);
  box-shadow: 0 0 0 3px rgba(11, 122, 112, 0.14);
}

.enquiry-form input:disabled,
.enquiry-form select:disabled,
.enquiry-form textarea:disabled,
.enquiry-form button:disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

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

.consent {
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
}

.referral-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  padding: 0;
  accent-color: var(--teal);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.form-note.is-success {
  color: var(--teal);
  font-weight: 700;
}

.form-note.is-error {
  color: var(--coral);
  font-weight: 700;
}

.site-footer {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
  padding: 38px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.72);
  background: #17211f;
}

.site-footer strong {
  display: block;
  color: var(--white);
}

.site-footer p {
  max-width: 680px;
  margin: 8px 0 0;
}

.footer-partner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--white);
  font-weight: 700;
}

.footer-partner svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

.footer-links {
  display: flex;
  gap: 18px;
  color: var(--white);
  font-weight: 700;
}

.admin-entry {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding: 12px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.66);
  background: #101715;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  font-weight: 700;
}

.admin-entry span {
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.admin-entry a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 6px 10px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.admin-entry svg {
  width: 16px;
  height: 16px;
}

.destination-cta {
  align-self: flex-start;
}

.hospital-hero {
  position: relative;
  min-height: min(720px, calc(100svh - 76px));
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 42, 38, 0.9) 0%, rgba(7, 42, 38, 0.68) 44%, rgba(7, 42, 38, 0.2) 100%),
    url("https://images.unsplash.com/photo-1586773860418-d37222d8fce3?auto=format&fit=crop&w=2200&q=84") center / cover;
}

.hospital-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, transparent, var(--paper));
}

.hospital-hero-content {
  position: relative;
  z-index: 1;
  width: min(900px, calc(100% - 36px));
  padding: clamp(70px, 9vw, 118px) 0 clamp(54px, 7vw, 92px) clamp(18px, 6vw, 86px);
}

.hospital-hero-content h1 {
  max-width: 880px;
  font-size: clamp(3.4rem, 7vw, 6.6rem);
}

.hospital-hero-content p:not(.eyebrow) {
  max-width: 710px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.12rem;
}

.hospital-hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(760px, 100%);
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
}

.hospital-hero-metrics div {
  padding: 18px;
  background: rgba(7, 42, 38, 0.35);
}

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

.hospital-hero-metrics strong {
  color: #f4c08b;
  font-family: "Fraunces", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.hospital-hero-metrics span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 700;
}

.hospital-network {
  padding: clamp(70px, 10vw, 128px) clamp(18px, 5vw, 72px);
  background: var(--paper);
}

.hospital-network h2,
.environment-section h2 {
  hyphens: none;
  overflow-wrap: normal;
}

.hospital-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

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

.hospital-profile {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(7, 94, 87, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 12px 42px rgba(22, 54, 49, 0.1);
}

.hospital-profile img {
  width: 100%;
  aspect-ratio: 1.2;
  object-fit: cover;
}

.hospital-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  width: auto;
  height: auto;
  min-height: 56px;
  padding: 14px 16px;
  color: var(--teal);
  background: #edf5ef;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hospital-logo svg {
  width: 20px;
  height: 20px;
}

.hospital-profile h3,
.hospital-profile p,
.hospital-tags {
  margin-right: 18px;
  margin-left: 18px;
}

.hospital-profile h3 {
  margin-top: 20px;
}

.hospital-profile p {
  margin-top: 10px;
  color: var(--muted);
}

.hospital-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
  padding: 20px 0 18px;
}

.hospital-tags span {
  padding: 6px 9px;
  color: #2f403c;
  background: #eef4ef;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
}

.environment-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(320px, 1fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: start;
  background: #17211f;
  color: var(--white);
}

.environment-section h2 {
  max-width: 680px;
}

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

.environment-image {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: #0f1715;
}

.environment-image img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.environment-image figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 10px 12px;
  color: var(--white);
  background: rgba(7, 42, 38, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 800;
  backdrop-filter: blur(14px);
}

@media (max-width: 1080px) {
  h1 {
    font-size: 5.6rem;
  }

  h2 {
    font-size: 3.35rem;
  }

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

  .market-snapshot {
    grid-template-columns: 1fr;
  }

  .hospital-hero-metrics {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .site-header {
    height: 68px;
  }

  .brand {
    min-width: 0;
  }

  .brand small,
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .mobile-nav {
    position: sticky;
    top: 68px;
    z-index: 19;
    grid-template-columns: repeat(auto-fit, minmax(118px, 1fr));
    gap: 1px;
    background: var(--line);
    border-bottom: 1px solid var(--line);
  }

  .mobile-nav.is-open {
    display: grid;
  }

  .mobile-nav a {
    min-height: 42px;
    padding: 10px 8px;
    text-align: center;
    background: var(--white);
    font-size: 0.8rem;
    font-weight: 700;
  }

  .mobile-nav a.is-active {
    color: var(--white);
    background: var(--teal);
  }

  .hospital-network .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .hospital-actions {
    justify-content: flex-start;
    width: 100%;
  }

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

  .hero-content {
    padding-left: 18px;
    padding-right: 18px;
  }

  .intro-grid,
  .process-section,
  .destination-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .process-copy {
    position: static;
  }

  .destination-section {
    min-height: 0;
  }

  .destination-image {
    order: 2;
  }

  .hospital-hero {
    min-height: 0;
  }

  .hospital-hero-content {
    width: 100%;
    padding-right: 18px;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 15px;
  }

  .section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .brand strong {
    font-size: 0.94rem;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    font-size: 0.82rem;
  }

  h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 2.15rem;
    line-height: 1.05;
  }

  .hero-content {
    width: 100%;
    padding: 52px 18px 34px;
  }

  .hero-copy {
    font-size: 1rem;
  }

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

  .hero-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-actions .button {
    justify-content: center;
    min-width: 0;
    padding-right: 12px;
    padding-left: 12px;
  }

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

  .market-snapshot div {
    padding: 12px 10px;
  }

  .market-snapshot dt {
    font-size: 0.58rem;
  }

  .market-snapshot dd {
    font-size: 0.84rem;
    overflow-wrap: anywhere;
  }

  .service-grid,
  .hospital-grid,
  .environment-gallery {
    grid-template-columns: 1fr;
  }

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

  .timeline li {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px;
  }

  .destination-copy {
    padding: 34px 18px;
  }

  .site-footer {
    flex-direction: column;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .admin-entry {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: 3rem;
  }
}

body.yunnan-travel-page {
  --yt-ink: #17312e;
  --yt-muted: #5e746d;
  --yt-paper: #f5fbf8;
  --yt-mist: #e1f3ee;
  --yt-lake: #0c6372;
  --yt-jade: #1f8a72;
  --yt-sun: #f0b33d;
  --yt-flower: #df6c4f;
  --yt-night: #16322f;
  background: var(--yt-paper);
  color: var(--yt-ink);
  font-family: "Sora", "Segoe UI", sans-serif;
}

.yunnan-travel-page h1,
.yunnan-travel-page h2 {
  font-family: "Fraunces", Georgia, serif;
  letter-spacing: 0;
}

.yunnan-travel-page .eyebrow,
.yunnan-travel-page .section-label {
  color: var(--yt-flower);
  letter-spacing: 0;
}

.yunnan-travel-page .brand-mark {
  background: linear-gradient(135deg, var(--yt-lake), var(--yt-jade) 58%, var(--yt-sun));
}

.yunnan-travel-page .nav-links a:hover,
.yunnan-travel-page .nav-links a:focus-visible,
.yunnan-travel-page .nav-links a.is-active {
  border-color: var(--yt-sun);
}

.yunnan-hero {
  position: relative;
  min-height: 820px;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background: var(--yt-night);
}

.yunnan-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(12, 54, 50, 0.88) 0%, rgba(12, 54, 50, 0.58) 46%, rgba(12, 54, 50, 0.18) 100%),
    linear-gradient(180deg, transparent 66%, rgba(22, 50, 47, 0.82) 100%),
    url("https://images.pexels.com/photos/37300945/pexels-photo-37300945.jpeg?auto=compress&cs=tinysrgb&w=2200") center / cover;
  transform: scale(1.01);
}

.yunnan-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 110px;
  z-index: -1;
  background: linear-gradient(180deg, transparent, var(--yt-paper));
}

.yunnan-hero-content {
  width: min(900px, calc(100% - 36px));
  padding: 76px 0 64px clamp(18px, 6vw, 86px);
}

.yunnan-hero-content h1 {
  max-width: 780px;
  font-size: 5.35rem;
  line-height: 1.02;
}

.yunnan-hero-content p:not(.eyebrow) {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.12rem;
}

.hero-product-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: min(760px, 100%);
  margin-top: 22px;
}

.hero-product-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 10px;
  color: #15322f;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.yunnan-hero .button.primary,
.yunnan-contact-panel .button.primary {
  color: #1a2d2a;
  background: var(--yt-sun);
  box-shadow: 0 16px 38px rgba(240, 179, 61, 0.28);
}

.yunnan-hero .button.primary:hover,
.yunnan-contact-panel .button.primary:hover {
  background: #e3a72f;
}

.yunnan-hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(820px, 100%);
  margin: 34px 0 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
}

.yunnan-hero-facts div {
  padding: 17px;
  background: rgba(14, 68, 62, 0.48);
}

.yunnan-hero-facts dt {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
  font-weight: 800;
}

.yunnan-hero-facts dd {
  margin: 8px 0 0;
  color: var(--white);
  font-weight: 800;
}

.travel-scenery-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(820px, 100%);
  margin-top: 16px;
}

.travel-scenery-strip figure {
  position: relative;
  min-height: 118px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(14, 68, 62, 0.48);
}

.travel-scenery-strip img {
  width: 100%;
  height: 100%;
  min-height: 118px;
  object-fit: cover;
}

.travel-scenery-strip figcaption {
  position: absolute;
  right: 8px;
  bottom: 8px;
  left: 8px;
  padding: 7px 8px;
  color: var(--white);
  background: rgba(18, 49, 45, 0.66);
  border-radius: var(--radius);
  font-size: 0.72rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.yunnan-intro,
.yunnan-care-band,
.yunnan-places,
.travel-boundary,
.yunnan-contact-panel {
  padding: clamp(70px, 10vw, 124px) clamp(18px, 5vw, 72px);
}

.yunnan-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.82fr);
  gap: clamp(34px, 7vw, 84px);
  background:
    linear-gradient(90deg, rgba(31, 138, 114, 0.12), transparent 54%),
    var(--yt-paper);
}

.clinic-showcase {
  padding: clamp(70px, 10vw, 124px) clamp(18px, 5vw, 72px);
  background: #f9f2df;
}

.clinic-note {
  max-width: 520px;
  margin: 0;
  color: var(--yt-muted);
  font-size: 1rem;
}

.clinic-showcase-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.clinic-showcase figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--yt-night);
  border: 1px solid rgba(23, 49, 46, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 12px 42px rgba(69, 54, 24, 0.1);
}

.clinic-showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.clinic-hero-photo {
  min-height: 620px;
}

.treatment-only-grid figure {
  min-height: 430px;
}

.clinic-showcase figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 12px 14px;
  color: var(--white);
  background: rgba(18, 49, 45, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 800;
  backdrop-filter: blur(14px);
}

.clinic-showcase figcaption strong,
.clinic-showcase figcaption span {
  display: block;
}

.clinic-showcase figcaption span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

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

.clinic-photo-grid figure {
  min-height: 300px;
}

.testimonial-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(320px, 0.72fr);
  gap: clamp(34px, 7vw, 84px);
  align-items: center;
  padding: clamp(70px, 10vw, 124px) clamp(18px, 5vw, 72px);
  background: var(--yt-paper);
}

.testimonial-copy {
  display: grid;
  gap: 22px;
}

.testimonial-copy p:not(.section-label) {
  margin: 0;
  color: var(--yt-muted);
  font-size: 1.05rem;
}

.testimonial-photo {
  position: relative;
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  background: var(--yt-night);
  border: 1px solid rgba(23, 49, 46, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 18px 54px rgba(15, 64, 59, 0.12);
}

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

.testimonial-photo figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 12px 14px;
  color: var(--white);
  background: rgba(18, 49, 45, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 800;
  backdrop-filter: blur(14px);
}

.testimonial-photo figcaption strong,
.testimonial-photo figcaption span {
  display: block;
}

.testimonial-photo figcaption span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.yunnan-intro h2,
.yunnan-care-band h2,
.clinic-showcase h2,
.testimonial-section h2,
.journey-strip h2,
.yunnan-places h2,
.travel-boundary h2,
.yunnan-contact-panel h2 {
  max-width: 820px;
  color: var(--yt-ink);
  font-size: 3.8rem;
  line-height: 1.06;
}

.yunnan-care-band {
  background:
    linear-gradient(180deg, var(--yt-mist), #f7fbf3 82%),
    var(--yt-mist);
}

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

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

.trip-care-card {
  display: flex;
  flex-direction: column;
  min-height: 290px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(12, 99, 114, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 12px 42px rgba(15, 64, 59, 0.08);
}

.trip-care-card svg {
  width: 32px;
  height: 32px;
  margin-bottom: 30px;
  color: var(--yt-lake);
}

.trip-care-card h3 {
  color: var(--yt-ink);
  font-size: 1.08rem;
}

.trip-care-card p {
  margin: 14px 0 auto;
  color: var(--yt-muted);
}

.trip-care-card span {
  display: block;
  margin-top: 22px;
  padding-top: 16px;
  color: var(--yt-flower);
  border-top: 1px solid rgba(23, 49, 46, 0.12);
  font-size: 0.86rem;
  font-weight: 800;
}

.dental-product-card {
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(12, 99, 114, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 14px 44px rgba(15, 64, 59, 0.1);
}

.dental-product-card.featured {
  border-color: rgba(240, 179, 61, 0.45);
  box-shadow: 0 18px 54px rgba(124, 80, 25, 0.14);
}

.product-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 26px;
}

.product-topline svg {
  width: 32px;
  height: 32px;
  color: var(--yt-lake);
}

.product-topline span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 9px;
  color: #21423d;
  background: #f9edc8;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
}

.dental-product-card h3 {
  color: var(--yt-ink);
  font-size: 1.12rem;
}

.dental-product-card p {
  margin: 14px 0 18px;
  color: var(--yt-muted);
}

.dental-product-card dl {
  display: grid;
  gap: 1px;
  margin: auto 0 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(23, 49, 46, 0.1);
  border-radius: var(--radius);
  background: rgba(23, 49, 46, 0.1);
}

.dental-product-card dl div {
  padding: 13px;
  background: #fbfdfb;
}

.dental-product-card dt {
  color: var(--yt-flower);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.dental-product-card dd {
  margin: 6px 0 0;
  color: var(--yt-ink);
  font-size: 0.86rem;
  font-weight: 700;
}

.journey-strip {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 84px);
  padding: clamp(70px, 10vw, 124px) clamp(18px, 5vw, 72px);
  background: #fff9e9;
}

.journey-copy {
  position: sticky;
  top: 110px;
  align-self: start;
  display: grid;
  gap: 22px;
}

.journey-copy p:last-child {
  margin: 0;
  color: var(--yt-muted);
  font-size: 1.05rem;
}

.journey-steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.journey-steps li {
  display: grid;
  grid-template-columns: 68px minmax(0, 0.34fr) minmax(0, 0.32fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 116px;
  padding: 22px;
  background: var(--white);
  border: 1px solid rgba(223, 108, 79, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 10px 34px rgba(124, 80, 25, 0.08);
}

.journey-steps span {
  color: var(--yt-sun);
  font-family: "Noto Serif SC", "Songti SC", serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.journey-steps strong {
  color: var(--yt-ink);
}

.journey-product {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 9px;
  color: #21423d;
  background: #f9edc8;
  border-radius: 999px;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 800;
}

.journey-steps p {
  margin: 0;
  color: var(--yt-muted);
}

.yunnan-places {
  background: var(--yt-night);
  color: var(--white);
}

.yunnan-places h2 {
  color: var(--white);
}

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

.place-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.place-card img {
  width: 100%;
  aspect-ratio: 1.22;
  object-fit: cover;
}

.place-card div {
  padding: 22px;
}

.place-card h3 {
  color: var(--white);
}

.place-card p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

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

.soon-card {
  min-height: 240px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.soon-card svg {
  width: 32px;
  height: 32px;
  margin-bottom: 28px;
  color: var(--yt-sun);
}

.soon-card h3 {
  color: var(--white);
}

.soon-card p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.travel-boundary {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 84px);
  align-items: start;
  background: var(--yt-paper);
}

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

.boundary-grid article {
  min-height: 220px;
  padding: 24px;
  background: var(--white);
  border: 1px solid rgba(12, 99, 114, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 12px 42px rgba(15, 64, 59, 0.08);
}

.boundary-grid svg {
  width: 30px;
  height: 30px;
  margin-bottom: 24px;
  color: var(--yt-jade);
}

.boundary-grid article:last-child svg {
  color: var(--yt-flower);
}

.boundary-grid p {
  margin: 12px 0 0;
  color: var(--yt-muted);
}

.yunnan-contact-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(300px, 0.52fr);
  gap: clamp(34px, 7vw, 84px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(12, 99, 114, 0.12), rgba(240, 179, 61, 0.18)),
    var(--yt-mist);
}

.yunnan-contact-panel p:not(.section-label) {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--yt-muted);
  font-size: 1.06rem;
}

.contact-ticket {
  display: grid;
  gap: 16px;
  padding: 24px;
  color: var(--yt-ink);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(12, 99, 114, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 20px 64px rgba(15, 64, 59, 0.14);
}

.contact-ticket > svg {
  width: 34px;
  height: 34px;
  color: var(--yt-lake);
}

.yunnan-enquiry-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  color: var(--yt-ink);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(12, 99, 114, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 20px 64px rgba(15, 64, 59, 0.14);
}

.yunnan-enquiry-form .full-line {
  grid-column: 1 / -1;
}

.yunnan-enquiry-form label {
  color: var(--yt-ink);
}

.yunnan-enquiry-form input,
.yunnan-enquiry-form select,
.yunnan-enquiry-form textarea {
  background: #fbfdfb;
  border-color: rgba(12, 99, 114, 0.16);
}

.yunnan-enquiry-form input:focus,
.yunnan-enquiry-form select:focus,
.yunnan-enquiry-form textarea:focus {
  border-color: var(--yt-jade);
  box-shadow: 0 0 0 3px rgba(31, 138, 114, 0.14);
}

.yunnan-enquiry-form .consent {
  color: var(--yt-muted);
}

.yunnan-enquiry-form .consent input {
  accent-color: var(--yt-jade);
}

.yunnan-enquiry-form .form-note {
  color: var(--yt-muted);
}

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

.contact-ticket span {
  color: var(--yt-muted);
}

@media (max-width: 1080px) {
  .trip-care-grid,
  .dental-product-grid,
  .soon-grid,
  .place-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .yunnan-hero-facts {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .yunnan-hero {
    min-height: 650px;
  }

  .yunnan-hero-content {
    width: 100%;
    padding-right: 18px;
    padding-left: 18px;
  }

  .yunnan-intro,
  .clinic-showcase-layout,
  .testimonial-section,
  .journey-strip,
  .travel-boundary,
  .yunnan-contact-panel {
    grid-template-columns: 1fr;
  }

  .journey-copy {
    position: static;
  }

  .journey-steps li {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .yunnan-hero {
    min-height: 0;
  }

  .yunnan-hero-media {
    background-position: 58% center;
  }

  .yunnan-hero-content {
    padding-top: 64px;
  }

  .yunnan-hero-content h1 {
    font-size: 3.1rem;
  }

  .yunnan-intro h2,
  .yunnan-care-band h2,
  .clinic-showcase h2,
  .testimonial-section h2,
  .journey-strip h2,
  .yunnan-places h2,
  .travel-boundary h2,
  .yunnan-contact-panel h2 {
    font-size: 2.15rem;
    line-height: 1.12;
  }

  .trip-care-grid,
  .dental-product-grid,
  .soon-grid,
  .clinic-photo-grid,
  .travel-scenery-strip,
  .place-grid,
  .boundary-grid {
    grid-template-columns: 1fr;
  }

  .trip-care-card,
  .dental-product-card,
  .soon-card,
  .clinic-hero-photo,
  .treatment-only-grid figure,
  .clinic-photo-grid figure,
  .testimonial-photo,
  .boundary-grid article {
    min-height: 0;
  }

  .clinic-hero-photo,
  .treatment-only-grid figure,
  .clinic-photo-grid figure,
  .testimonial-photo {
    aspect-ratio: 1.1;
  }

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