:root {
  --ink: #173746;
  --muted: #607884;
  --paper: #f8fbfd;
  --surface: #ffffff;
  --line: #e6e8eb;
  --teal: #1281b6;
  --teal-dark: #0b6f9f;
  --mint: #daebf7;
  --coral: #d9b46e;
  --gold: #d9b46e;
  --blue: #1281b6;
  --silver: #e6e8eb;
  --shadow: 0 20px 50px rgba(18, 129, 182, 0.14);
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Microsoft YaHei", "Noto Sans Thai", "Noto Sans", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(217, 180, 110, 0.62);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 40;
  transform: translateY(-150%);
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  padding: 8px 12px;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(230, 232, 235, 0.9);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  width: min(1240px, calc(100% - 32px));
  min-height: 82px;
  margin-inline: auto;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 86px;
  height: 72px;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand-mark img {
  width: 86px;
  height: auto;
  object-fit: contain;
}

.brand > span:not(.brand-mark) {
  display: none;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.15;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 2px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 26px);
  color: #174b55;
  font-size: 14px;
}

.site-nav a {
  position: relative;
  padding: 24px 0;
  white-space: nowrap;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 16px;
  left: 0;
  height: 2px;
  background: var(--coral);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.language-switch {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  max-width: 340px;
  flex-wrap: wrap;
  min-width: 0;
}

.language-switch[hidden] {
  display: none;
}

.language-switch button {
  min-width: 34px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  line-height: 1;
  padding: 7px 9px;
}

.language-switch button[aria-pressed="true"] {
  border-color: rgba(18, 129, 182, 0.22);
  background: var(--mint);
  color: var(--teal-dark);
  font-weight: 700;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  cursor: pointer;
  place-items: center;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: min(760px, calc(100svh - 72px));
  overflow: hidden;
  color: #fff;
  background: var(--teal);
  isolation: isolate;
}

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

.hero-media {
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.hero-media-solid {
  background:
    linear-gradient(120deg, rgba(18, 129, 182, 0.96), rgba(18, 129, 182, 0.82) 54%, rgba(218, 235, 247, 0.5)),
    var(--teal);
}

.hero-overlay {
  z-index: -1;
  background:
    radial-gradient(circle at 20% 24%, rgba(218, 235, 247, 0.18), transparent 28%),
    linear-gradient(90deg, rgba(18, 129, 182, 0.96) 0%, rgba(18, 129, 182, 0.82) 42%, rgba(18, 129, 182, 0.32) 76%, rgba(18, 129, 182, 0.08) 100%),
    linear-gradient(180deg, rgba(218, 235, 247, 0.08), rgba(11, 111, 159, 0.34));
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(1180px, calc(100% - 40px));
  min-height: inherit;
  margin-inline: auto;
  padding: 50px 0 46px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-kicker {
  color: #daebf7;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(40px, 7vw, 82px);
  line-height: 1.02;
  font-weight: 850;
  letter-spacing: 0;
}

.hero-brand-lockup {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  width: fit-content;
  margin-bottom: 20px;
  border: 1px solid rgba(218, 235, 247, 0.22);
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(18, 129, 182, 0.88), rgba(18, 129, 182, 0.45)),
    rgba(18, 129, 182, 0.22);
  box-shadow: 0 18px 48px rgba(7, 70, 105, 0.22);
  padding: 10px 14px;
  backdrop-filter: blur(16px);
}

.hero-brand-lockup img {
  width: 128px;
  height: auto;
  border-radius: 0;
  object-fit: contain;
  background: transparent;
}

.hero-brand-lockup > div {
  display: none;
}

.hero-brand-lockup strong,
.hero-brand-lockup span {
  display: block;
  line-height: 1.1;
}

.hero-brand-lockup strong {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  letter-spacing: 3px;
}

.hero-brand-lockup span {
  margin-top: 8px;
  color: #daebf7;
  font-size: 14px;
  letter-spacing: 8px;
}

.hero-copy {
  max-width: 690px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(17px, 2vw, 22px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 750;
  line-height: 1.2;
  padding: 12px 18px;
  transition:
    transform 150ms ease,
    box-shadow 150ms ease,
    background 150ms ease;
}

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

.button.primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 15px 28px rgba(217, 180, 110, 0.28);
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
}

.button.full {
  width: 100%;
}

.button-icon {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  font-size: 13px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  width: min(780px, 100%);
  margin-top: 24px;
}

.proof-pill {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  padding: 12px;
}

.proof-pill strong {
  display: block;
  color: #fff;
  font-size: 22px;
  line-height: 1.1;
}

.proof-pill span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 860px;
  margin-top: 18px;
}

.hero-directory {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  width: min(1000px, 100%);
  margin-top: 12px;
}

.hero-directory a {
  display: block;
  min-height: 96px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.13);
  padding: 14px;
}

.hero-directory strong {
  display: block;
  color: #fff;
  line-height: 1.2;
}

.hero-directory span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  line-height: 1.45;
}

.hero-trust span {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 700;
  padding: 7px 11px;
}

.banner-carousel {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #fff 0%, rgba(218, 235, 247, 0.52) 100%),
    #fff;
  padding: clamp(38px, 5vw, 64px) 0 clamp(44px, 6vw, 72px);
}

.carousel-viewport {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(11, 111, 159, 0.18);
}

.carousel-track {
  display: flex;
  gap: 0;
  width: 100%;
  transition: transform 520ms ease;
  will-change: transform;
}

.carousel-slide {
  position: relative;
  flex: 0 0 100%;
  min-height: clamp(420px, 42vw, 560px);
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--teal);
  box-shadow: none;
  isolation: isolate;
}

.carousel-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-slide::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 111, 159, 0.88) 0%, rgba(18, 129, 182, 0.58) 42%, rgba(18, 129, 182, 0.14) 78%),
    linear-gradient(180deg, rgba(7, 53, 77, 0.08), rgba(7, 53, 77, 0.72));
  content: "";
  z-index: 0;
}

.carousel-slide div {
  position: absolute;
  bottom: clamp(28px, 5vw, 58px);
  left: clamp(24px, 6vw, 72px);
  z-index: 1;
  width: min(620px, calc(100% - 48px));
  color: #fff;
}

.carousel-slide span {
  display: inline-flex;
  margin-bottom: 10px;
  border-radius: 999px;
  background: rgba(217, 180, 110, 0.88);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  padding: 6px 10px;
}

.carousel-slide h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.12;
  letter-spacing: 0;
}

.carousel-slide p {
  max-width: 560px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(15px, 1.6vw, 18px);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.carousel-dots button,
.carousel-dots span {
  width: 30px;
  height: 5px;
  border: 0;
  border-radius: 999px;
  background: rgba(18, 129, 182, 0.24);
  cursor: pointer;
  padding: 0;
  transition:
    width 180ms ease,
    background 180ms ease;
}

.carousel-dots button.is-active,
.carousel-dots button[aria-current="true"],
.carousel-dots span:first-child {
  width: 44px;
  background: var(--teal);
}

.carousel-controls {
  position: absolute;
  top: 50%;
  right: max(22px, calc((100% - 1180px) / 2 - 70px));
  left: max(22px, calc((100% - 1180px) / 2 - 70px));
  z-index: 2;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  transform: translateY(-50%);
}

.carousel-control {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  background: rgba(18, 129, 182, 0.64);
  color: #fff;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  pointer-events: auto;
  box-shadow: 0 14px 34px rgba(7, 53, 77, 0.2);
  transition:
    transform 160ms ease,
    background 160ms ease;
}

.carousel-control:hover {
  background: var(--teal);
  transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
  .carousel-track {
    transition: none;
  }
}

.intro-band {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.intro-item {
  min-height: 148px;
  background: var(--surface);
  padding: clamp(22px, 4vw, 34px);
}

.intro-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--teal-dark);
  font-size: 18px;
}

.intro-item p {
  margin: 0;
  color: var(--muted);
}

.overview-section {
  padding: clamp(48px, 6vw, 76px) 0;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(110deg, rgba(218, 235, 247, 0.65), rgba(255, 255, 255, 0.8)),
    #fff;
}

.overview-head {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.62fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 20px;
}

.overview-head h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
}

.overview-head p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

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

.overview-card {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border: 1px solid rgba(18, 129, 182, 0.18);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 34px rgba(11, 111, 159, 0.09);
  padding: 22px;
}

.overview-card::after {
  position: absolute;
  right: -34px;
  bottom: -42px;
  width: 120px;
  height: 120px;
  border: 18px solid rgba(217, 180, 110, 0.22);
  border-radius: 50%;
  content: "";
}

.overview-count {
  display: inline-grid;
  place-items: center;
  min-width: 58px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: var(--teal);
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  padding: 0 10px;
}

.overview-card strong {
  display: block;
  color: var(--teal-dark);
  font-size: 21px;
  line-height: 1.24;
}

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

.overview-card em {
  display: inline-flex;
  margin-top: 18px;
  color: var(--teal-dark);
  font-size: 13px;
  font-style: normal;
  font-weight: 850;
}

.company-section {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 8vw, 108px) 0;
  background: #fff;
}

.company-section::before {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 360px;
  height: 360px;
  border: 42px solid rgba(218, 235, 247, 0.62);
  border-radius: 50%;
  content: "";
}

.company-hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(26px, 5vw, 64px);
  align-items: stretch;
}

.company-hero h2,
.business-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 5vw, 54px);
  line-height: 1.12;
}

.company-hero p {
  margin: 16px 0 0;
  color: #174b55;
  font-size: 18px;
}

.company-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--teal);
  color: #fff;
  padding: 30px;
  box-shadow: var(--shadow);
}

.company-card img {
  width: 220px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.company-card strong {
  display: none;
}

.company-card span {
  display: none;
}

.company-card p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
}

.company-card a {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  border-radius: var(--radius);
  background: var(--gold);
  color: #fff;
  font-weight: 850;
  padding: 10px 14px;
}

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

.company-stats div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, #f8fcfe);
  padding: 18px;
}

.company-stats strong {
  display: block;
  color: var(--teal-dark);
  font-size: 22px;
}

.company-stats span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
}

.business-head {
  max-width: 880px;
  margin-top: clamp(34px, 5vw, 58px);
}

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

.business-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(11, 111, 159, 0.07);
  padding: clamp(22px, 3vw, 30px);
}

.business-card > span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: var(--teal);
  color: #fff;
  font-weight: 900;
}

.business-card h3 {
  margin: 0;
  color: var(--teal-dark);
  font-size: 25px;
  line-height: 1.22;
}

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

.business-card ul {
  display: grid;
  gap: 11px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.business-card li {
  position: relative;
  padding-left: 18px;
  color: #174b55;
}

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

.business-card b {
  color: var(--ink);
}

.section {
  padding: clamp(64px, 8vw, 104px) 0;
  background: var(--surface);
}

.section.tinted {
  background: var(--paper);
}

.section-head {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-head.align-left {
  margin-inline: 0;
  text-align: left;
}

.section-head h2,
.contact-copy h2,
.source-section h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.15;
  letter-spacing: 0;
}

.section-head p:not(.eyebrow),
.contact-copy p,
.source-section p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.package-grid,
.expert-grid,
.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.card {
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(20, 58, 50, 0.06);
  padding: 24px;
}

.card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.25;
}

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

.card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.card li {
  position: relative;
  padding-left: 18px;
  color: #174b55;
}

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

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 800;
  padding: 5px 10px;
}

.pathway {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.path-step {
  position: relative;
  min-height: 150px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, #f8fbfd);
  padding: 18px;
}

.path-step b {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
}

.path-step strong {
  display: block;
  line-height: 1.25;
}

.path-step p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.service-detail-grid,
.frontier-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.service-detail,
.frontier-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, #f8fcfe);
  padding: 22px;
}

.service-detail h3,
.frontier-panel h3,
.hospital-directory-head h3 {
  margin: 0;
  color: var(--teal-dark);
  font-size: 22px;
  line-height: 1.26;
}

.service-audience,
.frontier-panel p {
  margin: 10px 0 0;
  color: var(--muted);
}

.service-detail ul {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.service-detail li {
  position: relative;
  padding-left: 20px;
  color: #174b55;
}

.service-detail li::before {
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.service-scene-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
  margin: 0 0 24px;
}

.service-scene-grid figure,
.expert-visual-strip,
.contact-scene {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-scene-grid img,
.expert-visual-strip img,
.contact-scene img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-scene-grid img {
  aspect-ratio: 16 / 9;
}

.service-scene-grid figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(11, 111, 159, 0.72);
  color: #fff;
  font-size: 15px;
  font-weight: 850;
  padding: 10px 12px;
  backdrop-filter: blur(12px);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.visual-panel {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.visual-panel img {
  min-height: 520px;
}

.visual-panel img,
.hospital-feature figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.tech-item {
  min-height: 102px;
  border: 1px solid rgba(18, 129, 182, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  padding: 16px;
}

.tech-item strong {
  display: block;
  color: var(--teal-dark);
  line-height: 1.28;
}

.tech-item span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.hospital-feature {
  display: grid;
  grid-template-columns: minmax(340px, 0.7fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.hospital-feature figure {
  min-height: 460px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.expert-visual-strip {
  margin-bottom: 20px;
}

.expert-visual-strip img {
  aspect-ratio: 16 / 5;
}

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

.hospital-focus-content {
  height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: clamp(20px, 3vw, 28px);
}

.hospital-focus-content > h3 {
  margin: 0;
  color: var(--teal-dark);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.18;
}

.hospital-focus-content > p {
  margin: 12px 0 0;
  color: var(--muted);
}

.hospital-directory-head {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.7fr);
  gap: 24px;
  align-items: end;
  margin-top: 34px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.hospital-directory-head p {
  margin: 0;
  color: var(--muted);
}

.hospital-group-tags,
.focus-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hospital-group-tags {
  margin: 16px 0;
}

.directory-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 8px;
}

.directory-tabs button {
  border: 1px solid rgba(18, 129, 182, 0.18);
  border-radius: 999px;
  background: #fff;
  color: var(--teal-dark);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  line-height: 1;
  padding: 10px 13px;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.directory-tabs button:hover,
.directory-tabs button.is-active {
  border-color: rgba(18, 129, 182, 0.72);
  background: var(--teal);
  color: #fff;
}

.resource-controls {
  margin-bottom: 18px;
}

.hospital-group-tags span,
.focus-tags span {
  border-radius: 999px;
  background: var(--mint);
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 800;
  padding: 6px 10px;
}

.directory-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 16px 0 18px;
  border: 1px solid rgba(18, 129, 182, 0.18);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, #f7fbfd);
  color: var(--muted);
  padding: 14px 16px;
}

.compact-toolbar {
  margin-top: 18px;
}

.directory-toolbar span {
  line-height: 1.5;
}

.resource-toggle {
  flex: 0 0 auto;
  border: 0;
  border-radius: var(--radius);
  background: var(--gold);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 850;
  padding: 10px 14px;
}

.resource-toggle:hover {
  background: #c8a15d;
}

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

.hospital-profile {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 14px 32px rgba(11, 111, 159, 0.08);
}

.hospital-profile img {
  width: 100%;
  aspect-ratio: 900 / 560;
  object-fit: cover;
  background: var(--mint);
}

.hospital-profile.no-photo {
  padding-top: 0;
}

.hospital-profile-body {
  padding: 18px;
}

.hospital-profile-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.hospital-profile-meta span {
  color: var(--teal-dark);
}

.hospital-profile h3 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.28;
}

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

.hospital-profile .support-note {
  color: #174b55;
}

.resource-detail {
  margin-top: 12px;
  border-top: 1px solid rgba(18, 129, 182, 0.12);
  padding-top: 12px;
}

.resource-detail summary {
  width: fit-content;
  border-radius: 999px;
  background: rgba(18, 129, 182, 0.1);
  color: var(--teal-dark);
  cursor: pointer;
  font-size: 13px;
  font-weight: 850;
  list-style: none;
  padding: 7px 11px;
}

.resource-detail summary::-webkit-details-marker {
  display: none;
}

.resource-detail summary::after {
  content: "+";
  margin-left: 8px;
}

.resource-detail[open] summary::after {
  content: "-";
}

.resource-detail p {
  margin-top: 10px;
}

.hospital-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 18px;
}

.hospital-card h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.25;
}

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

.rank-chip {
  display: inline-flex;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(216, 100, 79, 0.12);
  color: #8a6420;
  font-size: 12px;
  font-weight: 800;
  padding: 5px 10px;
}

.rank-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

#national-hospitals.rank-list {
  display: block;
}

.rank-item {
  min-height: 132px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fbfd;
  padding: 16px;
}

.rank-item b {
  color: var(--gold);
  font-size: 12px;
}

.rank-item strong {
  display: block;
  margin-top: 6px;
  line-height: 1.25;
}

.rank-item span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.expert-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 10px;
  min-height: 260px;
  overflow: hidden;
}

.expert-support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.expert-support {
  border: 1px solid rgba(18, 129, 182, 0.18);
  border-radius: var(--radius);
  background: #fff;
  padding: 20px;
}

.expert-support h3 {
  margin: 0;
  color: var(--teal-dark);
  font-size: 20px;
  line-height: 1.26;
}

.expert-support p {
  margin: 10px 0 0;
  color: var(--muted);
}

.expert-card .expert-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.expert-photo {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(218, 235, 247, 0.88), rgba(255, 255, 255, 0.92)),
    var(--mint);
}

.expert-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.expert-photo.is-fallback {
  display: none;
}

.photo-source {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  background: rgba(217, 180, 110, 0.18);
  color: #8a6420;
  font-size: 12px;
  font-weight: 800;
  padding: 5px 9px;
}

.avatar {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  color: #fff;
  font-weight: 800;
  font-size: 20px;
}

.expert-card h3 {
  font-size: 20px;
}

.expert-card small {
  color: var(--muted);
  font-weight: 700;
}

.expert-card .focus {
  color: var(--teal-dark);
  font-weight: 800;
}

.expert-profile,
.expert-card .support-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.expert-card .support-note {
  color: #174b55;
}

.channel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}

.channel-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  grid-template-rows: 1fr auto;
  gap: 14px 16px;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(11, 111, 159, 0.07);
  padding: 0;
}

.channel-thumb {
  position: relative;
  grid-row: 1 / 3;
  min-height: 178px;
  overflow: hidden;
}

.channel-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.channel-mark {
  position: absolute;
  left: 12px;
  top: 12px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: rgba(11, 111, 159, 0.92);
  color: #fff;
  font-size: 21px;
  font-weight: 900;
}

.channel-body {
  padding: 20px 20px 0 0;
}

.channel-card h3 {
  margin: 0;
}

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

.text-link {
  align-self: end;
  justify-self: start;
  color: var(--teal-dark);
  font-weight: 800;
  white-space: nowrap;
  padding: 0 20px 20px 0;
}

.insight-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  overflow: hidden;
  padding: 0;
}

.insight-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.insight-body {
  padding: 20px;
}

.insight-card .meta {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 800;
}

.education-hub {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.education-hub article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, #f8fcfe);
  padding: 18px;
}

.education-hub h3 {
  margin: 0;
  color: var(--teal-dark);
  font-size: 19px;
  line-height: 1.28;
}

.education-hub p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.trust-section {
  padding: clamp(64px, 8vw, 104px) 0;
  background:
    linear-gradient(180deg, #fff, #f7fbfd),
    #fff;
}

.trust-head {
  max-width: 900px;
  margin-bottom: 28px;
}

.trust-head h2 {
  margin: 0;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.13;
}

.trust-head p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
}

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

.trust-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(11, 111, 159, 0.07);
  padding: 22px;
}

.trust-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 34px;
  margin-bottom: 16px;
  border-radius: var(--radius);
  background: var(--teal);
  color: #fff;
  font-weight: 900;
}

.trust-grid h3 {
  margin: 0;
  color: var(--teal-dark);
  font-size: 21px;
  line-height: 1.24;
}

.trust-grid p {
  margin: 10px 0 0;
  color: var(--muted);
}

.compliance-note {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  margin-top: 18px;
  border: 1px solid rgba(217, 180, 110, 0.5);
  border-radius: var(--radius);
  background: #fffaf0;
  padding: 18px 20px;
}

.compliance-note strong {
  color: #8a6420;
  font-size: 20px;
}

.compliance-note p {
  margin: 0;
  color: #5e513c;
}

.contact-section {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal) 58%, #1281b6);
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.68fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.contact-copy .eyebrow {
  color: #daebf7;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}

.contact-point {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  padding: 14px;
}

.contact-point strong {
  display: block;
  color: #fff;
}

.contact-point span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.contact-scene {
  margin-top: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-scene img {
  aspect-ratio: 16 / 8;
}

.contact-form {
  display: grid;
  gap: 14px;
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  padding: clamp(20px, 4vw, 30px);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #174b55;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: #f8fbfd;
  padding: 12px 13px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(18, 129, 182, 0.62);
  outline: none;
  box-shadow: 0 0 0 4px rgba(18, 129, 182, 0.1);
}

.form-note {
  min-height: 44px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.source-section {
  padding: 38px 0;
  border-top: 1px solid var(--line);
  background: #f8fbfd;
}

.source-section h2 {
  font-size: 24px;
}

.source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.source-links a {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 750;
  padding: 8px 12px;
}

.site-footer {
  background: var(--ink);
  color: #fff;
  padding: 28px 0;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.site-footer p,
.footer-meta {
  color: rgba(255, 255, 255, 0.68);
}

.footer-meta {
  display: grid;
  gap: 4px;
  text-align: right;
}

[lang="th"] body,
[lang="vi"] body,
[lang="id"] body,
[lang="ms"] body {
  line-height: 1.72;
}

h1,
h2,
h3,
p,
li,
a,
button,
span,
small,
strong,
input,
textarea {
  overflow-wrap: anywhere;
}

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

  .menu-button {
    display: grid;
    position: relative;
    z-index: 2;
    border-color: rgba(18, 129, 182, 0.22);
    background: var(--teal);
    place-self: center end;
  }

  .menu-button span {
    background: #fff;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.97);
    padding: 8px 20px 16px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px 0;
  }

  .language-switch {
    justify-self: end;
  }

  .split-section,
  .hospital-feature,
  .contact-grid,
  .hospital-directory-head,
  .overview-head,
  .company-hero {
    grid-template-columns: 1fr;
  }

  .visual-panel {
    max-height: 430px;
  }

  .hospital-feature figure {
    min-height: 340px;
  }

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

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

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

  .carousel-viewport {
    width: min(100% - 32px, 920px);
  }

  .carousel-slide {
    min-height: 470px;
  }

  .carousel-controls {
    right: 18px;
    left: 18px;
  }

  .expert-support-grid,
  .education-hub,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-scene-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 780px) {
  .header-inner {
    width: min(100% - 22px, 1240px);
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    min-height: 88px;
    padding: 10px 0 8px;
  }

  .brand {
    min-width: auto;
    grid-column: 1;
    grid-row: 1;
  }

  .brand small {
    display: none;
  }

  .site-nav {
    top: 106px;
  }

  .language-switch {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: stretch;
    justify-content: center;
    max-width: 100%;
  }

  .language-switch button {
    min-width: 28px;
    padding: 6px 7px;
  }

  .menu-button {
    position: absolute;
    top: 23px;
    right: 0;
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    object-position: 70% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(18, 129, 182, 0.96), rgba(18, 129, 182, 0.84)),
      linear-gradient(180deg, rgba(18, 129, 182, 0.22), rgba(11, 111, 159, 0.66));
  }

  .hero-content {
    width: min(100% - 32px, 1180px);
    padding: 34px 0 34px;
  }

  .hero h1 {
    font-size: clamp(38px, 13vw, 58px);
  }

  .hero-brand-lockup {
    width: fit-content;
    padding: 8px 10px;
  }

  .hero-brand-lockup img {
    width: 118px;
    height: auto;
  }

  .hero-brand-lockup strong {
    font-size: 20px;
  }

  .hero-brand-lockup span {
    letter-spacing: 5px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .banner-carousel {
    padding: 30px 0 42px;
  }

  .carousel-viewport {
    width: calc(100% - 28px);
  }

  .carousel-slide {
    min-height: 520px;
  }

  .carousel-slide::after {
    background:
      linear-gradient(180deg, rgba(18, 129, 182, 0.22), rgba(7, 53, 77, 0.82)),
      linear-gradient(90deg, rgba(18, 129, 182, 0.58), rgba(18, 129, 182, 0.16));
  }

  .carousel-slide div {
    right: 20px;
    bottom: 28px;
    left: 20px;
    width: auto;
  }

  .carousel-slide h2 {
    font-size: clamp(26px, 9vw, 38px);
  }

  .carousel-slide p {
    font-size: 15px;
  }

  .carousel-controls {
    top: auto;
    right: 28px;
    bottom: 72px;
    left: auto;
    gap: 8px;
    transform: none;
  }

  .carousel-control {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

  .button {
    width: 100%;
  }

  .hero-proof,
  .hero-directory,
  .intro-grid,
  .package-grid,
  .service-scene-grid,
  .expert-grid,
  .insight-grid,
  .channel-grid,
  .contact-points {
    grid-template-columns: 1fr;
  }

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

  .tech-grid,
  .overview-grid,
  .service-detail-grid,
  .frontier-detail-grid,
  .hospital-focus-grid,
  .rank-list,
  .hospital-directory,
  .expert-support-grid,
  .education-hub,
  .trust-grid,
  .company-stats,
  .business-grid {
    grid-template-columns: 1fr;
  }

  .directory-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .directory-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .directory-tabs button {
    flex: 0 0 auto;
  }

  .resource-toggle {
    width: 100%;
  }

  .visual-panel img {
    min-height: 320px;
  }

  .expert-visual-strip img,
  .contact-scene img {
    aspect-ratio: 4 / 3;
  }

  .compliance-note {
    grid-template-columns: 1fr;
  }

  .section-head {
    text-align: left;
  }

  .section {
    padding: 56px 0;
  }

  .channel-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  .channel-thumb {
    grid-row: auto;
    min-height: 210px;
  }

  .channel-body {
    padding: 18px 18px 0;
  }

  .channel-card .text-link {
    padding: 0 18px 18px;
  }

  .footer-grid {
    display: grid;
  }

  .footer-meta {
    text-align: left;
  }
}

@media (max-width: 430px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .brand-mark {
    width: 78px;
    height: 66px;
  }

  .brand-mark img {
    width: 78px;
  }

  .language-switch {
    max-width: 132px;
  }

  .language-switch button {
    font-size: 11px;
  }

  .carousel-slide {
    min-height: 500px;
  }

  .carousel-slide img {
    object-position: center;
  }

  .carousel-slide span {
    font-size: 11px;
  }

  .carousel-slide h2 {
    font-size: 28px;
  }

  .carousel-controls {
    right: 22px;
    bottom: 68px;
  }

  .card,
  .hospital-card,
  .rank-item,
  .path-step,
  .tech-item {
    padding: 16px;
  }
}

@media (max-width: 1060px) {
  .site-header .menu-button {
    position: fixed;
    top: 22px;
    right: 18px;
    z-index: 60;
    display: grid !important;
    border-color: rgba(18, 129, 182, 0.22);
    background: var(--teal);
  }

  .site-header .menu-button span {
    background: #fff;
  }
}
