@charset "UTF-8";

:root {
  --navy: #10243e;
  --navy-2: #173858;
  --navy-3: #0b1b30;
  --gold: #c9933a;
  --gold-light: #e4bd73;
  --ivory: #f7f2e9;
  --ivory-2: #fcfaf6;
  --slate: #4c6680;
  --ink: #1d2f43;
  --muted: #6d7883;
  --line: #ddd8cf;
  --white: #fff;
  --coral: #b66d56;
  --header-height: 80px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  overscroll-behavior-y: none;
}

body {
  width: 100%;
  margin: 0;
  padding-top: var(--header-height);
  overflow-x: hidden;
  color: var(--ink);
  background: var(--ivory-2);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", Arial, sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  position: fixed;
  right: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

button,
summary {
  -webkit-tap-highlight-color: transparent;
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(201, 147, 58, .35);
  outline-offset: 3px;
}

h1,
h2,
h3,
p,
figure {
  margin-top: 0;
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid rgba(16, 36, 62, .08);
}

.header-inner {
  display: flex;
  width: min(1200px, calc(100% - 40px));
  height: 100%;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  gap: 12px;
}

.brand img,
.footer-brand img {
  width: 42px;
  height: 42px;
  filter: sepia(1) saturate(1.2) hue-rotate(354deg) brightness(.85);
}

.brand span,
.footer-brand span {
  display: grid;
  line-height: 1.2;
}

.brand strong,
.footer-brand strong {
  color: var(--navy);
  font-family: Georgia, "Songti SC", "SimSun", serif;
  font-size: 19px;
  letter-spacing: .05em;
}

.brand small,
.footer-brand small {
  margin-top: 5px;
  color: #7f8589;
  font-size: 12px;
  letter-spacing: .12em;
}

.site-nav ul,
.site-footer ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav ul {
  align-items: center;
  gap: 26px;
}

.site-nav a {
  position: relative;
  display: block;
  padding: 29px 0 25px;
  color: #34475c;
  font-size: 13px;
  font-weight: 600;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--navy);
}

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

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid #e5ded3;
  background: var(--ivory);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
  transition: transform .2s ease, opacity .2s ease;
}

.hero {
  display: grid;
  width: min(1200px, calc(100% - 40px));
  min-height: 590px;
  margin: 0 auto;
  grid-template-columns: .96fr 1.04fr;
  background: var(--ivory);
}

.hero-copy {
  display: flex;
  padding: 82px 54px 72px 66px;
  justify-content: center;
  flex-direction: column;
}

.eyebrow,
.section-kicker {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero h1 {
  margin-bottom: 18px;
  color: var(--navy);
  font-family: Georgia, "Songti SC", "SimSun", serif;
  font-size: clamp(48px, 5.1vw, 72px);
  font-weight: 600;
  letter-spacing: -.04em;
  line-height: 1.14;
}

.hero-subtitle {
  margin-bottom: 19px;
  color: var(--navy-2);
  font-family: Georgia, "Songti SC", "SimSun", serif;
  font-size: 24px;
  font-weight: 600;
}

.hero-subtitle span {
  padding: 0 6px;
  color: var(--gold);
}

.hero-description {
  max-width: 470px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 14px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.primary-link {
  display: inline-flex;
  min-height: 46px;
  padding: 0 22px;
  align-items: center;
  gap: 16px;
  color: var(--white);
  background: var(--gold);
  font-size: 13px;
  font-weight: 700;
  transition: background .2s ease, transform .2s ease;
}

.primary-link:hover {
  background: #b57d25;
  transform: translateY(-2px);
}

.text-link {
  color: var(--navy);
  border-bottom: 1px solid var(--gold);
  font-size: 12px;
  font-weight: 700;
}

.hero-note {
  margin: 22px 0 0;
  color: #9a9185;
  font-size: 10px;
}

.hero-visual {
  position: relative;
  min-height: 590px;
  overflow: hidden;
}

.hero-visual::before {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  width: 80px;
  content: "";
  background: linear-gradient(90deg, var(--ivory), transparent);
}

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

.hero-label {
  position: absolute;
  z-index: 2;
  padding: 9px 14px;
  color: var(--navy);
  background: rgba(255, 255, 255, .9);
  border-left: 3px solid var(--gold);
  font-size: 11px;
  font-weight: 700;
}

.hero-label-city {
  top: 42px;
  right: 28px;
}

.hero-label-hospital {
  right: 28px;
  bottom: 38px;
}

.trust-ribbon {
  color: var(--white);
  background: var(--navy);
}

.trust-inner {
  display: grid;
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 25px 38px;
  grid-template-columns: repeat(4, 1fr);
}

.trust-inner article {
  display: flex;
  min-height: 64px;
  padding: 0 24px;
  align-items: center;
  gap: 14px;
  border-right: 1px solid rgba(255, 255, 255, .16);
}

.trust-inner article:last-child {
  border-right: 0;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.icon::before {
  display: block;
  width: 26px;
  height: 26px;
  content: "";
  background-image: var(--icon-url);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  filter: var(--icon-filter, none);
}

.icon-user { --icon-url: url("../icons/user-heart.svg"); }
.icon-shield { --icon-url: url("../icons/shield-check.svg"); }
.icon-message { --icon-url: url("../icons/message.svg"); }
.icon-lock { --icon-url: url("../icons/lock.svg"); }
.icon-heart { --icon-url: url("../icons/heart.svg"); }
.icon-hand { --icon-url: url("../icons/hand-heart.svg"); }
.icon-flower { --icon-url: url("../icons/flower.svg"); }
.icon-file { --icon-url: url("../icons/file-check.svg"); }
.icon-dna { --icon-url: url("../icons/dna.svg"); }
.icon-cycle { --icon-url: url("../icons/cycle.svg"); }
.icon-clipboard { --icon-url: url("../icons/clipboard.svg"); }
.icon-chromosome { --icon-url: url("../icons/chromosome.svg"); }
.icon-chart { --icon-url: url("../icons/chart.svg"); }
.icon-badge { --icon-url: url("../icons/badge.svg"); }
.icon-age { --icon-url: url("../icons/age.svg"); }

.trust-inner .icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(228, 189, 115, .6);
  --icon-filter: invert(69%) sepia(43%) saturate(650%) hue-rotate(356deg) brightness(96%);
}

.trust-inner .icon::before {
  width: 23px;
  height: 23px;
}

.trust-inner article > div {
  display: grid;
}

.trust-inner strong {
  color: var(--white);
  font-size: 13px;
}

.trust-inner span {
  color: rgba(255, 255, 255, .58);
  font-size: 10px;
}

.section-heading {
  max-width: 700px;
  margin: 0 auto 45px;
  text-align: center;
}

.section-heading h2,
.editorial-heading h2,
.audience-intro h2,
.process-heading h2,
.hospital-heading h2,
.closing-copy h2 {
  margin-bottom: 12px;
  color: var(--navy);
  font-family: Georgia, "Songti SC", "SimSun", serif;
  font-size: clamp(30px, 3.3vw, 42px);
  font-weight: 600;
  line-height: 1.28;
}

.section-heading > p:last-child,
.editorial-heading > p:last-child,
.audience-intro > p:last-child,
.hospital-heading > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.path-section {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 92px 48px 86px;
}

.editorial-heading {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.path-layout {
  display: grid;
  position: relative;
  grid-template-columns: 1fr 80px 1fr;
  align-items: center;
}

.path-panel {
  overflow: hidden;
  background: var(--white);
  border: 1px solid #e1dbd2;
}

.path-panel img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.path-copy {
  padding: 28px 32px 30px;
}

.path-copy > span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
}

.path-copy h3 {
  margin: 7px 0 10px;
  color: var(--navy);
  font-family: Georgia, "Songti SC", "SimSun", serif;
  font-size: 23px;
}

.path-copy p {
  min-height: 50px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 12px;
}

.path-copy ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.path-copy li {
  position: relative;
  padding: 5px 0 5px 18px;
  color: #45576a;
  font-size: 12px;
}

.path-copy li::before {
  position: absolute;
  top: 13px;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  background: var(--gold);
  transform: rotate(45deg);
}

.path-connector {
  position: relative;
  height: 1px;
  background: var(--gold);
}

.path-connector::before,
.path-connector::after {
  position: absolute;
  top: -4px;
  width: 9px;
  height: 9px;
  content: "";
  background: var(--gold);
  border-radius: 50%;
}

.path-connector::before { left: -4px; }
.path-connector::after { right: -4px; }

.path-connector span {
  position: absolute;
  top: -16px;
  left: 50%;
  padding: 2px 7px;
  color: var(--gold);
  background: var(--ivory-2);
  font-size: 9px;
  white-space: nowrap;
  transform: translate(-50%, -100%);
}

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

.package-inner {
  display: grid;
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 54px 48px 40px;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 42px;
}

.package-price {
  align-self: center;
  padding-right: 35px;
  border-right: 1px solid rgba(255, 255, 255, .18);
}

.package-price > p:first-child {
  margin-bottom: 5px;
  color: var(--gold-light);
  font-size: 12px;
}

.package-price h2 {
  display: flex;
  margin-bottom: 8px;
  align-items: flex-end;
  gap: 8px;
  line-height: 1;
}

.package-price h2 strong {
  color: var(--gold-light);
  font-family: Georgia, serif;
  font-size: 60px;
  font-weight: 500;
}

.package-price h2 span {
  padding-bottom: 8px;
  color: var(--gold-light);
  font-size: 16px;
}

.package-price > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, .52);
  font-size: 12px;
}

.package-items {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.package-items article {
  display: flex;
  min-height: 118px;
  padding: 10px 12px;
  align-items: center;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .12);
  flex-direction: column;
}

.package-items article:last-child {
  border-right: 0;
}

.package-items .icon {
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
  --icon-filter: invert(72%) sepia(40%) saturate(616%) hue-rotate(355deg) brightness(98%);
}

.package-items .icon::before {
  width: 28px;
  height: 28px;
}

.package-items strong {
  margin-bottom: 3px;
  font-size: 12px;
}

.package-items span {
  color: rgba(255, 255, 255, .5);
  font-size: 9px;
}

.package-disclaimer {
  width: min(1104px, calc(100% - 96px));
  margin: 0 auto;
  padding: 14px 0 20px;
  color: rgba(255, 255, 255, .46);
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: 12px;
  text-align: center;
}

.audience-section {
  display: grid;
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 88px 48px;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 52px;
}

.audience-intro {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.audience-intro h2 {
  font-size: 38px;
}

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

.audience-card {
  min-height: 190px;
  padding: 27px 26px;
  background: var(--white);
  border: 1px solid #e3ddd3;
}

.audience-card .icon {
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  background: var(--ivory);
  border: 1px solid #e1d4c1;
  --icon-filter: invert(17%) sepia(20%) saturate(1664%) hue-rotate(171deg) brightness(88%);
}

.audience-card h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 17px;
}

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

.audience-card.card-wide {
  display: grid;
  padding: 0;
  grid-template-columns: .9fr 1.1fr;
}

.card-wide img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
}

.card-wide > div {
  padding: 24px 22px;
}

.card-wide .icon {
  margin-bottom: 13px;
}

.card-dark {
  color: var(--white);
  background: var(--navy-2);
  border-color: var(--navy-2);
}

.card-dark h3,
.card-dark p {
  color: var(--white);
}

.card-dark p {
  opacity: .62;
}

.card-dark .icon {
  border-color: rgba(228, 189, 115, .5);
  background: transparent;
  --icon-filter: invert(72%) sepia(40%) saturate(616%) hue-rotate(355deg) brightness(98%);
}

.process-section {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 72px 48px 78px;
  background: #f1ece3;
}

.process-heading {
  display: flex;
  margin-bottom: 34px;
  align-items: flex-end;
  justify-content: space-between;
}

.process-heading .section-kicker,
.process-heading h2 {
  margin-bottom: 0;
}

.process-list {
  display: grid;
  position: relative;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(5, 1fr);
  list-style: none;
}

.process-list::before {
  position: absolute;
  z-index: 0;
  top: 60px;
  right: 8%;
  left: 8%;
  height: 1px;
  content: "";
  background: #c9a86b;
}

.process-list li {
  position: relative;
  z-index: 1;
  padding: 0 12px;
  text-align: center;
}

.step-number {
  display: block;
  margin-bottom: 9px;
  color: #b7ada0;
  font-family: Georgia, serif;
  font-size: 28px;
  line-height: 1;
}

.process-list .icon {
  width: 46px;
  height: 46px;
  margin: 0 auto 15px;
  background: var(--ivory-2);
  border: 1px solid var(--gold);
  border-radius: 50%;
  --icon-filter: invert(62%) sepia(29%) saturate(1100%) hue-rotate(359deg) brightness(91%);
}

.process-list .icon::before {
  width: 22px;
  height: 22px;
}

.process-list h3 {
  margin-bottom: 5px;
  color: var(--navy);
  font-size: 14px;
}

.process-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
}

.process-note {
  margin: 27px 0 0;
  color: #8c8378;
  font-size: 12px;
  text-align: center;
}

.hospital-section {
  display: grid;
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 90px 48px;
  grid-template-columns: 1.02fr .98fr;
  gap: 24px;
}

.hospital-team {
  position: relative;
  overflow: hidden;
  background: var(--ivory);
}

.hospital-heading {
  padding: 36px 38px 26px;
}

.hospital-heading h2 {
  font-size: 34px;
}

.hospital-team > img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center 35%;
}

.team-summary {
  display: grid;
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  padding: 15px 19px;
  color: var(--white);
  background: rgba(16, 36, 62, .9);
}

.team-summary strong {
  font-size: 13px;
}

.team-summary span {
  color: rgba(255, 255, 255, .62);
  font-size: 10px;
}

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

.hospital-gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  min-height: 220px;
}

.hospital-gallery .gallery-main {
  grid-column: 1 / -1;
}

.hospital-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hospital-gallery figcaption {
  position: absolute;
  right: 13px;
  bottom: 13px;
  padding: 5px 10px;
  color: var(--navy);
  background: rgba(255, 255, 255, .9);
  font-size: 10px;
}

.cases-section {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 88px 48px 82px;
  border-top: 1px solid #e3ddd3;
}

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

.case-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid #e2dcd2;
}

.case-image {
  width: 100%;
  height: 210px;
  margin: 0;
  overflow: hidden;
  background: #eeeae3;
}

.case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

.case-image-report img {
  object-position: center 48%;
}

.case-body {
  padding: 24px 24px 26px;
}

.case-body > span {
  display: inline-block;
  margin-bottom: 9px;
  padding: 3px 8px;
  color: var(--gold);
  background: #f7efe1;
  font-size: 9px;
  font-weight: 700;
}

.case-body h3 {
  margin-bottom: 9px;
  color: var(--navy);
  font-family: Georgia, "Songti SC", "SimSun", serif;
  font-size: 20px;
}

.case-body p {
  min-height: 66px;
  margin-bottom: 17px;
  color: var(--muted);
  font-size: 12px;
}

.case-body small {
  display: block;
  padding-top: 13px;
  color: var(--slate);
  border-top: 1px solid #ebe6dd;
  font-size: 10px;
}

.case-disclaimer {
  max-width: 900px;
  margin: 25px auto 0;
  color: #948b7f;
  font-size: 12px;
  text-align: center;
}

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

.assurance-section > h2 {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.assurance-grid {
  display: grid;
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 36px 48px;
  grid-template-columns: repeat(4, 1fr);
}

.assurance-grid article {
  display: flex;
  min-height: 82px;
  padding: 0 27px;
  align-items: center;
  gap: 15px;
  border-right: 1px solid rgba(255, 255, 255, .16);
}

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

.assurance-grid .icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(228, 189, 115, .55);
  --icon-filter: invert(70%) sepia(52%) saturate(520%) hue-rotate(355deg) brightness(101%);
}

.assurance-grid article > div {
  display: grid;
}

.assurance-grid strong {
  font-size: 14px;
}

.assurance-grid span {
  color: rgba(255, 255, 255, .54);
  font-size: 10px;
}

.faq-section {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 80px 48px 88px;
}

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

.faq-grid details {
  align-self: start;
  background: var(--white);
  border: 1px solid #ded8ce;
}

.faq-grid summary {
  position: relative;
  padding: 17px 48px 17px 20px;
  color: var(--navy);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  list-style: none;
}

.faq-grid summary::-webkit-details-marker {
  display: none;
}

.faq-grid summary::before,
.faq-grid summary::after {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 12px;
  height: 1px;
  content: "";
  background: var(--gold);
}

.faq-grid summary::after {
  transform: rotate(90deg);
  transition: transform .2s ease;
}

.faq-grid details[open] summary::after {
  transform: rotate(0);
}

.faq-grid details p {
  margin: 0;
  padding: 15px 20px 19px;
  color: var(--muted);
  border-top: 1px solid #eee9e1;
  font-size: 11px;
}

.closing-section {
  color: var(--white);
  background: linear-gradient(115deg, #183d5e, var(--navy));
}

.closing-inner {
  display: grid;
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 48px;
  grid-template-columns: minmax(0, 500px) minmax(0, 380px);
  justify-content: space-between;
  gap: 80px;
}

.closing-copy .section-kicker {
  color: var(--gold-light);
}

.closing-copy h2 {
  color: var(--white);
  font-size: 32px;
}

.closing-copy > p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .62);
  font-size: 12px;
}

.closing-inner ul {
  display: grid;
  margin: 0;
  padding: 0;
  align-content: center;
  list-style: none;
  gap: 13px;
}

.closing-inner li {
  display: flex;
  align-items: center;
  gap: 13px;
}

.closing-inner .icon {
  width: 42px;
  height: 42px;
  background: var(--ivory);
  --icon-filter: invert(64%) sepia(39%) saturate(919%) hue-rotate(357deg) brightness(91%);
}

.closing-inner li span {
  display: grid;
  color: rgba(255, 255, 255, .52);
  font-size: 10px;
}

.closing-inner li strong {
  color: var(--white);
  font-size: 13px;
}

.site-footer {
  color: rgba(255, 255, 255, .7);
  background: var(--navy-3);
}

.footer-main {
  display: flex;
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 42px 48px 34px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* .footer-brand img {
  filter: brightness(0) invert(1) sepia(1) saturate(3) hue-rotate(350deg);
} */

.footer-brand strong {
  color: var(--white);
}

.footer-brand small {
  color: rgba(255, 255, 255, .46);
}

.site-footer nav ul {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px 24px;
}

.site-footer nav a {
  color: rgba(255, 255, 255, .65);
  font-size: 11px;
}

.site-footer nav a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  display: flex;
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 19px 48px 22px;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, .11);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, .4);
  font-size: 15px;
  text-align: center;
}

@media (max-width: 1100px) {
  .site-nav ul {
    gap: 17px;
  }

  .site-nav a {
    font-size: 12px;
  }

  .hero-copy {
    padding-left: 46px;
  }

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

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

  .trust-inner article:nth-child(-n+2) {
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }

  .trust-inner article:nth-child(n+3) {
    padding-top: 15px;
  }

  .package-inner {
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 25px;
  }

  .package-items {
    grid-template-columns: repeat(3, 1fr);
  }

  .package-items article:nth-child(3) {
    border-right: 0;
  }

  .package-items article:nth-child(-n+3) {
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }
}

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

  html {
    scroll-padding-top: 78px;
  }

  .site-header {
    background: #fff;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
  }

  .header-inner {
    width: 100%;
    padding: 0 20px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .brand strong {
    font-size: 16px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: 999;
    top: var(--header-height);
    right: 0;
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    height: calc(100svh - var(--header-height));
    visibility: hidden;
    padding: 12px 22px 30px;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: #fff;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, -8px, 0);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  }

  .site-nav.open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
  }

  .site-nav ul {
    display: grid;
    gap: 0;
  }

  .site-nav a {
    display: flex;
    min-height: 58px;
    padding: 0 10px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e9e3da;
    font-size: 15px;
  }

  .site-nav a::before {
    order: 2;
    content: "→";
    color: var(--gold);
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 60px 34px 48px;
  }

  .hero h1 {
    font-size: 52px;
  }

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

  .hero-visual::before {
    top: 0;
    right: 0;
    bottom: auto;
    width: auto;
    height: 70px;
    background: linear-gradient(180deg, var(--ivory), transparent);
  }

  .path-section,
  .audience-section,
  .process-section,
  .hospital-section,
  .cases-section,
  .faq-section {
    padding-right: 28px;
    padding-left: 28px;
  }

  .path-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .path-connector {
    width: 1px;
    height: 32px;
    margin: -32px auto;
  }

  .path-connector::before,
  .path-connector::after {
    top: auto;
    left: -4px;
  }

  .path-connector::before { top: -4px; }
  .path-connector::after { right: auto; bottom: -4px; }

  .path-connector span {
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
  }

  .package-inner {
    padding-right: 28px;
    padding-left: 28px;
    grid-template-columns: 1fr;
  }

  .package-price {
    padding: 0 0 28px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
    text-align: center;
  }

  .package-price h2 {
    justify-content: center;
  }

  .package-disclaimer {
    width: calc(100% - 56px);
  }

  .audience-section {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .audience-intro {
    text-align: center;
  }

  .audience-intro h2 br {
    display: none;
  }

  .process-heading {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .process-list {
    max-width: 590px;
    margin: 0 auto;
    grid-template-columns: 1fr;
  }

  .process-list::before {
    top: 36px;
    right: auto;
    bottom: 42px;
    left: 50%;
    width: 1px;
    height: auto;
  }

  .process-list li {
    display: grid;
    min-height: 132px;
    padding: 7px 0 26px;
    grid-template-columns: minmax(0, 1fr) 64px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 14px;
    text-align: initial;
  }

  .step-number {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 50%;
    width: 64px;
    margin: 0;
    text-align: center;
    transform: translateX(-50%);
  }

  .process-list .icon {
    z-index: 1;
    width: 52px;
    height: 52px;
    margin: 27px auto 0;
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .process-list h3 {
    margin: 28px 0 4px;
    align-self: end;
    grid-row: 1;
  }

  .process-list p {
    margin: 0;
    grid-row: 2;
  }

  .process-list li:nth-child(odd) h3,
  .process-list li:nth-child(odd) p {
    grid-column: 1;
    text-align: right;
  }

  .process-list li:nth-child(even) h3,
  .process-list li:nth-child(even) p {
    grid-column: 3;
    text-align: left;
  }

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

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

  .case-card {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
  }

  .case-image {
    height: 100%;
    min-height: 250px;
  }

  .case-body p {
    min-height: 0;
  }

  .assurance-grid {
    padding-right: 28px;
    padding-left: 28px;
    grid-template-columns: repeat(2, 1fr);
  }

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

  .assurance-grid article:nth-child(-n+2) {
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }

  .assurance-grid article:nth-child(n+3) {
    padding-top: 16px;
  }

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

  .closing-inner {
    padding-right: 28px;
    padding-left: 28px;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-main {
    padding-right: 28px;
    padding-left: 28px;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer nav ul {
    justify-content: flex-start;
  }

  .footer-bottom {
    padding-right: 28px;
    padding-left: 28px;
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .brand small {
    display: none;
  }

  .hero-copy {
    padding: 48px 22px 42px;
  }

  .hero h1 {
    font-size: 43px;
  }

  .hero-subtitle {
    font-size: 19px;
  }

  .hero-description {
    font-size: 13px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

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

  .hero-label {
    right: 16px;
  }

  .trust-inner {
    padding: 22px 20px;
    grid-template-columns: 1fr;
  }

  .trust-inner article,
  .trust-inner article:nth-child(2) {
    padding: 13px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }

  .trust-inner article:last-child {
    border-bottom: 0;
  }

  .path-section,
  .audience-section,
  .process-section,
  .hospital-section,
  .cases-section,
  .faq-section {
    padding: 66px 20px;
  }

  .section-heading,
  .editorial-heading {
    margin-bottom: 32px;
  }

  .section-heading h2,
  .editorial-heading h2,
  .audience-intro h2,
  .process-heading h2,
  .hospital-heading h2 {
    font-size: 29px;
  }

  .path-panel img {
    height: 190px;
  }

  .path-copy {
    padding: 24px 22px 26px;
  }

  .package-inner {
    padding: 44px 20px 32px;
  }

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

  .package-items article,
  .package-items article:nth-child(3) {
    border-right: 1px solid rgba(255, 255, 255, .12);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }

  .package-items article:nth-child(even) {
    border-right: 0;
  }

  .package-items article:nth-child(n+5) {
    border-bottom: 0;
  }

  .package-disclaimer {
    width: calc(100% - 40px);
  }

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

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

  .card-wide img {
    height: 185px;
  }

  .process-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .process-list li {
    column-gap: 10px;
  }

  .process-list h3 {
    font-size: 13px;
  }

  .process-list p {
    font-size: 12px;
  }

  .hospital-heading {
    padding: 28px 24px 20px;
  }

  .hospital-team > img {
    height: 250px;
  }

  .team-summary {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .hospital-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .hospital-gallery .gallery-main {
    grid-column: auto;
  }

  .hospital-gallery figure {
    min-height: 220px;
  }

  .case-card {
    display: block;
  }

  .case-image {
    height: 210px;
    min-height: 0;
  }

  .assurance-grid {
    padding: 30px 20px;
    grid-template-columns: 1fr;
  }

  .assurance-grid article,
  .assurance-grid article:nth-child(2),
  .assurance-grid article:nth-child(n+3) {
    padding: 15px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }

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

  .closing-inner {
    padding: 38px 24px;
    text-align: center;
  }

  .closing-copy h2 {
    font-size: 27px;
  }

  .closing-inner ul {
    width: min(100%, 255px);
    margin: 0 auto;
    text-align: left;
  }

  .footer-main,
  .footer-bottom {
    width: 100%;
    padding-right: 24px;
    padding-left: 24px;
    align-items: center;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .site-footer nav {
    width: 100%;
  }

  .site-footer nav ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    gap: 12px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
  }
}
