@charset "UTF-8";

:root {
  --teal: #0b5552;
  --teal-soft: #d9ecea;
  --navy: #16324a;
  --orange: #c36443;
  --sage: #789b8f;
  --ivory: #f7f4ee;
  --paper: #fffdf9;
  --white: #ffffff;
  --text: #263c3b;
  --muted: #687977;
  --line: #d8dedb;
  --container: 1200px;
  --header-height: 120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  padding-top: var(--header-height);
  overflow-x: hidden;
  color: var(--text);
  background: var(--paper);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.7;
}

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

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

button {
  color: inherit;
  font: inherit;
  -webkit-tap-highlight-color: transparent;
}

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

figure,
h1,
h2,
h3,
p,
ul,
ol,
dl,
dd {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

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

.section {
  padding: 78px 0;
}

.section-anchor {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.skip-link {
  position: fixed;
  top: 8px;
  left: -999px;
  z-index: 9999;
  padding: 8px 14px;
  color: var(--white);
  background: var(--navy);
}

.skip-link:focus {
  left: 8px;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
}

.header-main {
  display: grid;
  grid-template-columns: 260px 1fr 220px;
  height: 78px;
  align-items: center;
}

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

.brand img,
.footer-brand img {
  flex: 0 0 46px;
}

.brand span,
.footer-brand span {
  display: flex;
  flex-direction: column;
}

.brand strong,
.footer-brand strong {
  color: var(--teal);
  font-family: Georgia, "STSong", serif;
  font-size: 22px;
  letter-spacing: 0.08em;
}

.brand small,
.footer-brand small {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.header-departments {
  display: flex;
  justify-content: center;
}

.header-departments span {
  min-width: 145px;
  padding: 10px 18px;
  text-align: center;
  border: 1px solid var(--line);
  border-right: 0;
  font-size: 13px;
}

.header-departments span:last-child {
  border-right: 1px solid var(--line);
}

.header-guidance {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  color: var(--teal);
  font-size: 12px;
}

.header-guidance span::before {
  content: "◎";
  margin-right: 5px;
}

.desktop-nav {
  height: 42px;
  color: var(--white);
  background: var(--teal);
}

.desktop-nav ul {
  display: flex;
  height: 100%;
  justify-content: center;
}

.desktop-nav li {
  height: 100%;
}

.desktop-nav a {
  position: relative;
  display: flex;
  min-width: 105px;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.desktop-nav a::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: #e4a07f;
  content: "";
  transform: translateX(-50%);
  transition: width 0.2s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  width: 54%;
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 650px;
  padding: 0 0 42px;
  background: var(--ivory);
}

.hero-image {
  width: 100%;
  height: 510px;
  object-fit: cover;
  object-position: center;
}

.hero-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1.6fr 1fr 0.82fr;
  min-height: 230px;
  margin-top: -155px;
  background: rgba(255, 253, 249, 0.97);
  border: 1px solid #cec8bd;
  box-shadow: 0 16px 40px rgba(23, 50, 74, 0.12);
}

.hero-copy,
.hero-evidence,
.hero-offer {
  padding: 34px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-copy > span,
.section-heading > span,
.triage-sheet .section-heading > span,
.archive-title > span,
.team-roster header > span,
.lab-copy header > span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.hero h1 {
  margin: 8px 0;
  color: var(--teal);
  font-family: Georgia, "STSong", serif;
  font-size: clamp(42px, 3.45vw, 52px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.025em;
}

.hero-copy p {
  color: var(--navy);
  font-size: 18px;
  letter-spacing: 0.15em;
}

.hero-evidence {
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.hero-evidence li {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
}

.hero-evidence li:last-child {
  border-bottom: 0;
}

.hero-evidence span,
.about-centers article,
.principles li {
  display: flex;
  flex-direction: column;
}

.hero-evidence strong {
  font-size: 14px;
}

.hero-evidence small {
  color: var(--muted);
  font-size: 12px;
}

.hero-offer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  background: var(--orange);
}

.hero-offer > span {
  font-size: 15px;
}

.hero-offer > strong {
  margin: 3px 0;
  font-family: Georgia, serif;
  font-size: 64px;
  font-weight: 500;
  line-height: 1;
}

.hero-offer em,
.package-price em {
  font-size: 24px;
  font-style: normal;
}

.hero-offer small {
  font-size: 12px;
}

.hero-index {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--line);
}

.hero-index li {
  padding: 15px 12px;
  text-align: center;
  border-right: 1px solid var(--line);
  font-size: 13px;
}

.hero-index li:last-child {
  border-right: 0;
}

.hero-index b {
  margin-right: 7px;
  color: var(--orange);
  font-family: Georgia, serif;
}

.icon {
  display: inline-block;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
}

.icon::before {
  display: block;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
}

.icon-pin::before { background-image: url("../icons/pin.svg"); }
.icon-globe::before { background-image: url("../icons/globe.svg"); }
.icon-lab::before { background-image: url("../icons/lab.svg"); }
.icon-assessment::before { background-image: url("../icons/assessment.svg"); }
.icon-monitor::before { background-image: url("../icons/monitor.svg"); }
.icon-heart::before { background-image: url("../icons/heart.svg"); }
.icon-embryo::before { background-image: url("../icons/embryo.svg"); }
.icon-dna::before { background-image: url("../icons/dna.svg"); }
.icon-transfer::before { background-image: url("../icons/transfer.svg"); }
.icon-calendar::before { background-image: url("../icons/calendar.svg"); }
.icon-shield::before { background-image: url("../icons/shield.svg"); }
.icon-chat::before { background-image: url("../icons/chat.svg"); }
.icon-lock::before { background-image: url("../icons/lock.svg"); }
.icon-team::before { background-image: url("../icons/team.svg"); }

.directory-board {
  display: grid;
  grid-template-columns: 250px 1fr;
  border: 1px solid var(--line);
}

.directory-sign {
  display: flex;
  min-height: 480px;
  padding: 36px;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
  background: var(--teal);
}

.directory-sign span {
  color: #b7d5d1;
  font-size: 12px;
  letter-spacing: 0.14em;
}

.directory-sign h2 {
  margin: 10px 0 0;
  font-family: Georgia, "STSong", serif;
  font-size: 38px;
  font-weight: 500;
}

.directory-sign strong {
  font-size: 21px;
}

.directory-sign p {
  margin-top: 45px;
  color: #c8dcd9;
  font-size: 13px;
}

.directory-list article {
  display: grid;
  grid-template-columns: 55px 46px 150px 1fr;
  min-height: 80px;
  align-items: center;
  padding: 8px 28px;
  border-bottom: 1px solid var(--line);
}

.directory-list article:last-child {
  border-bottom: 0;
}

.directory-list em {
  color: var(--orange);
  font-family: Georgia, serif;
  font-size: 16px;
  font-style: normal;
}

.directory-list h3 {
  font-size: 16px;
}

.directory-list p {
  color: var(--muted);
  font-size: 13px;
}

.assessment {
  background: var(--ivory);
}

.assessment-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: stretch;
}

.assessment figure {
  position: relative;
  min-height: 520px;
}

.assessment figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.assessment figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 12px 22px;
  color: var(--white);
  background: var(--teal);
}

.triage-sheet {
  padding: 40px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 0;
}

.section-heading {
  margin-bottom: 38px;
  text-align: center;
}

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

.section-heading h2,
.archive-title h2,
.triage-sheet h2,
.team-roster h2,
.lab-copy h2 {
  margin: 4px 0 8px;
  color: var(--teal);
  font-family: Georgia, "STSong", serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.3;
}

.section-heading p,
.archive-title p,
.triage-sheet header p,
.team-roster header p {
  color: var(--muted);
  font-size: 14px;
}

.triage-sheet ol {
  border-top: 1px solid var(--line);
}

.triage-sheet li {
  display: grid;
  grid-template-columns: 50px 150px 1fr;
  min-height: 70px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.triage-sheet em {
  color: var(--orange);
  font-family: Georgia, serif;
  font-style: normal;
}

.triage-sheet li span {
  color: var(--muted);
  font-size: 13px;
}

.triage-sheet > small {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-size: 12px;
  text-align: right;
}

.package-folder {
  position: relative;
  display: grid;
  grid-template-columns: 220px 1fr;
  padding: 0 0 0 80px;
  background: #fbf6ec;
  border: 1px solid #d7cbbb;
  box-shadow: 12px 12px 0 #eee4d4;
}

.folder-tab {
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 0;
  display: flex;
  width: 70px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--orange);
  font-family: Georgia, "STSong", serif;
  font-size: 22px;
  letter-spacing: 0.18em;
  writing-mode: vertical-rl;
}

.package-price {
  padding: 45px 30px;
  border-right: 1px solid #d7cbbb;
}

.package-price > span {
  color: var(--orange);
  font-weight: 700;
}

.package-price > strong {
  display: block;
  margin: 12px 0;
  color: var(--orange);
  font-family: Georgia, serif;
  font-size: 66px;
  font-weight: 500;
  line-height: 1;
}

.package-price h2 {
  color: var(--teal);
  font-size: 20px;
}

.package-price small {
  color: var(--muted);
  font-size: 12px;
}

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

.package-columns article {
  padding: 38px 25px;
  border-right: 1px solid #d7cbbb;
}

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

.package-columns em {
  color: var(--orange);
  font-family: Georgia, serif;
  font-size: 22px;
  font-style: normal;
}

.package-columns h3 {
  margin: 6px 0 16px;
  color: var(--teal);
  font-size: 17px;
}

.package-columns li {
  position: relative;
  padding: 4px 0 4px 16px;
  color: var(--muted);
  font-size: 13px;
}

.package-columns li::before {
  position: absolute;
  left: 0;
  color: var(--sage);
  content: "✓";
}

.package-note {
  grid-column: 1 / -1;
  padding: 18px 28px;
  border-top: 1px solid #d7cbbb;
}

.package-note strong {
  color: var(--teal);
}

.package-note p {
  display: inline;
  margin-left: 18px;
  color: var(--muted);
  font-size: 12px;
}

.routes {
  background-color: #f3f7f6;
  background-image: linear-gradient(rgba(11, 85, 82, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(11, 85, 82, 0.045) 1px, transparent 1px);
  background-size: 36px 36px;
}

.route-board {
  position: relative;
}

.route-lane {
  display: grid;
  grid-template-columns: 245px 1fr;
  margin: 15px 0;
  background: var(--white);
  border: 1px solid var(--line);
}

.route-lane header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px;
  color: var(--white);
  background: var(--teal);
}

.route-overseas header {
  background: var(--navy);
}

.route-lane header .icon::before {
  filter: brightness(0) invert(1);
}

.route-lane header span {
  display: flex;
  flex-direction: column;
}

.route-lane header small {
  color: #d8e9e7;
  font-size: 12px;
}

.route-lane ol {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  padding: 18px 10px;
}

.route-lane li {
  position: relative;
  padding: 12px 5px;
  text-align: center;
  font-size: 13px;
}

.route-lane li::before {
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 auto 9px;
  background: var(--white);
  border: 2px solid var(--teal);
  border-radius: 50%;
  content: "";
}

.route-lane li:not(:last-child)::after {
  position: absolute;
  top: 17px;
  left: calc(50% + 5px);
  width: calc(100% - 10px);
  height: 1px;
  background: var(--teal);
  content: "";
}

.route-overseas li::before {
  border-color: var(--navy);
}

.route-overseas li:not(:last-child)::after {
  background: var(--navy);
}

.route-handoff {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  padding: 8px 15px;
  color: var(--white);
  background: var(--orange);
  font-size: 12px;
  transform: translate(-50%, -50%);
}

.lab-window {
  padding: 70px 0;
  color: var(--white);
  background: var(--navy);
}

.lab-layout {
  display: grid;
  grid-template-columns: 260px 280px 1fr;
  min-height: 310px;
}

.lab-photo {
  position: relative;
}

.lab-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lab-photo figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 10px;
  text-align: center;
  background: rgba(11, 85, 82, 0.88);
}

.embryo-window {
  display: flex;
  padding: 35px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #0d4355;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.embryo-window .icon {
  width: 86px;
  height: 86px;
  margin-bottom: 16px;
}

.embryo-window .icon::before {
  filter: brightness(0) invert(1);
  opacity: 0.72;
}

.embryo-window span {
  color: #8fc5c0;
  font-size: 12px;
  letter-spacing: 0.18em;
}

.embryo-window strong {
  margin: 4px 0 8px;
  font-family: Georgia, "STSong", serif;
  font-size: 24px;
  font-weight: 500;
}

.embryo-window p {
  color: #b9ccd1;
  font-size: 12px;
}

.lab-copy {
  padding: 24px 0 24px 34px;
}

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

.pgt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.pgt-grid article {
  padding: 24px 20px 10px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.pgt-grid article:not(:first-child) {
  padding-left: 20px;
}

.pgt-grid strong {
  color: #86d3cd;
  font-family: Georgia, serif;
  font-size: 24px;
}

.pgt-grid h3 {
  margin: 6px 0;
  font-size: 15px;
}

.pgt-grid p {
  color: #b9ccd1;
  font-size: 12px;
}

.process-path {
  position: relative;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  align-items: start;
}

.process-path::before {
  position: absolute;
  top: 56px;
  right: 5%;
  left: 5%;
  height: 2px;
  background: var(--teal);
  content: "";
}

.process-path li {
  position: relative;
  z-index: 1;
  display: flex;
  padding: 0 8px;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.process-path li:nth-child(even) {
  margin-top: 50px;
}

.process-path em {
  margin-bottom: 7px;
  color: var(--orange);
  font-family: Georgia, serif;
  font-style: normal;
}

.process-path .icon {
  width: 58px;
  height: 58px;
  padding: 12px;
  background: var(--paper);
  border: 1px solid var(--teal);
  border-radius: 50%;
}

.process-path strong {
  margin-top: 12px;
  font-size: 14px;
}

.process-path span {
  color: var(--muted);
  font-size: 12px;
}

.team {
  background: var(--ivory);
}

.team-layout {
  display: grid;
  grid-template-columns: 1fr 390px;
}

.team figure img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

.team-roster {
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 0;
}

.team-roster h2 {
  font-size: 30px;
}

.team-roster dl {
  margin-top: 24px;
  border-top: 1px solid var(--line);
}

.team-roster dl div {
  display: grid;
  grid-template-columns: 100px 1fr;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.team-roster dt {
  color: var(--teal);
  font-weight: 700;
}

.team-roster dd {
  color: var(--muted);
  font-size: 12px;
}

.compact-heading {
  margin-bottom: 24px;
}

.environment-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 5px;
}

.environment-strip img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.environment-strip figcaption {
  padding: 9px 5px;
  text-align: center;
  border: 1px solid var(--line);
  border-top: 0;
  font-size: 12px;
}

.about {
  background: var(--ivory);
}

.about-report {
  display: grid;
  grid-template-columns: 300px 1fr;
  border: 1px solid var(--line);
  background: var(--white);
}

.about-report > header {
  grid-row: 1 / 3;
  padding: 38px;
  color: var(--white);
  background: var(--teal);
}

.about-report > header span {
  color: #b9d6d3;
  font-size: 12px;
  letter-spacing: 0.12em;
}

.about-report > header h2 {
  margin: 12px 0 20px;
  font-family: Georgia, "STSong", serif;
  font-size: 30px;
  font-weight: 500;
}

.about-report > header p {
  color: #d9e8e5;
  font-size: 13px;
}

.about-centers {
  display: grid;
  grid-template-columns: 1fr 150px 1fr;
  align-items: center;
  padding: 30px;
}

.about-centers article {
  align-items: center;
  text-align: center;
}

.about-centers h3 {
  margin: 8px 0 4px;
  color: var(--teal);
}

.about-centers p {
  color: var(--muted);
  font-size: 12px;
}

.connection-line {
  position: relative;
  text-align: center;
}

.connection-line::before {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--orange);
  content: "";
}

.connection-line span {
  position: relative;
  z-index: 1;
  padding: 5px 8px;
  color: var(--orange);
  background: var(--white);
  font-size: 12px;
}

.principles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.principles li {
  padding: 20px;
  align-items: center;
  border-right: 1px solid var(--line);
  text-align: center;
}

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

.principles .icon {
  width: 34px;
  height: 34px;
}

.principles strong {
  margin: 6px 0 2px;
  color: var(--teal);
}

.principles span {
  color: var(--muted);
  font-size: 12px;
}

.knowledge-layout,
.cases-layout,
.faq-layout {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 28px;
}

.archive-title {
  padding-right: 25px;
  border-right: 1px solid var(--line);
}

.archive-title h2 {
  font-size: 30px;
}

.featured-article {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 220px;
  border: 1px solid var(--line);
}

.featured-article img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-article div {
  padding: 28px;
}

.featured-article span {
  color: var(--orange);
  font-size: 12px;
}

.featured-article h3 {
  margin: 8px 0;
  color: var(--teal);
  font-family: Georgia, "STSong", serif;
  font-size: 23px;
  font-weight: 500;
}

.featured-article p {
  color: var(--muted);
  font-size: 13px;
}

.article-index {
  grid-column: 2;
  margin-top: -10px;
}

.article-index li {
  display: grid;
  grid-template-columns: 45px 1fr 25px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.article-index em {
  color: var(--orange);
  font-family: Georgia, serif;
  font-style: normal;
}

.article-index b {
  color: var(--teal);
  font-size: 20px;
  font-weight: 400;
}

.cases {
  background: var(--ivory);
}

.case-files {
  border-top: 1px solid var(--line);
}

.case-files article {
  display: grid;
  grid-template-columns: 150px 1fr;
  min-height: 150px;
  border-bottom: 1px solid var(--line);
}

.case-files img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  filter: saturate(0.65);
}

.case-files article div {
  display: flex;
  padding: 20px 24px;
  flex-direction: column;
  justify-content: center;
}

.case-files span {
  color: var(--orange);
  font-size: 12px;
}

.case-files h3 {
  margin: 3px 0;
  color: var(--teal);
  font-size: 17px;
}

.case-files p,
.case-files small,
.case-disclaimer {
  color: var(--muted);
  font-size: 12px;
}

.case-disclaimer {
  grid-column: 2;
  margin-top: 12px;
  text-align: right;
}

.faq-list {
  border-top: 1px solid var(--line);
}

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

.faq-item h3 {
  font-size: 14px;
}

.faq-item button {
  display: flex;
  width: 100%;
  padding: 17px 4px;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
}

.faq-item button i {
  position: relative;
  width: 18px;
  height: 18px;
}

.faq-item button i::before,
.faq-item button i::after {
  position: absolute;
  top: 8px;
  left: 2px;
  width: 14px;
  height: 1px;
  background: var(--teal);
  content: "";
}

.faq-item button i::after {
  transform: rotate(90deg);
  transition: transform 0.2s ease;
}

.faq-item.is-open button i::after {
  transform: rotate(0);
}

.faq-answer {
  padding: 0 40px 18px 4px;
  color: var(--muted);
  font-size: 13px;
}

.closing {
  padding: 36px 0;
  color: var(--white);
  background: var(--teal);
}

.closing .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.closing span {
  color: #b9d6d3;
  font-size: 12px;
  letter-spacing: 0.12em;
}

.closing h2 {
  margin-top: 4px;
  font-family: Georgia, "STSong", serif;
  font-size: 28px;
  font-weight: 500;
}

.closing p {
  max-width: 330px;
  color: #d9e8e5;
  font-size: 12px;
  text-align: right;
}

.site-footer {
  padding: 50px 0 20px;
  color: #dce9e6;
  background: #073e3c;
}

.footer-grid {
  display: grid;
  grid-template-columns: 280px repeat(4, 1fr);
  gap: 35px;
}

.footer-brand {
  align-self: start;
}

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

.footer-grid > div > strong {
  display: block;
  margin-bottom: 9px;
  color: var(--white);
  font-size: 14px;
}

.footer-grid li {
  color: #aec7c3;
  font-size: 12px;
}

.footer-bottom {
  display: flex;
  margin-top: 35px;
  padding-top: 17px;
  justify-content: center;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #8eb0ab;
  font-size: 12px;
}

@media (max-width: 1100px) {
  .header-main {
    grid-template-columns: 230px 1fr 170px;
  }

  .header-departments span {
    min-width: 125px;
    padding-inline: 10px;
  }

  .desktop-nav a {
    min-width: 92px;
  }

  .hero-panel {
    grid-template-columns: 1.4fr 1fr 0.85fr;
  }

  .hero-copy,
  .hero-evidence,
  .hero-offer {
    padding: 25px;
  }
}

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

  body {
    font-size: 14px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 58px 0;
  }

  .site-header {
    height: 68px;
  }

  .header-main {
    display: flex;
    height: 68px;
    justify-content: space-between;
  }

  .brand img {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

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

  .brand small,
  .header-departments,
  .header-guidance,
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    position: relative;
    display: block;
    width: 44px;
    height: 44px;
    padding: 0;
    background: var(--ivory);
    border: 1px solid #cfc9be;
    cursor: pointer;
  }

  .menu-toggle i,
  .menu-toggle i::before,
  .menu-toggle i::after {
    position: absolute;
    left: 11px;
    width: 20px;
    height: 2px;
    background: var(--teal);
    content: "";
    transition: transform 0.2s ease, top 0.2s ease, opacity 0.2s ease;
  }

  .menu-toggle i {
    top: 20px;
  }

  .menu-toggle i::before {
    top: -7px;
    left: 0;
  }

  .menu-toggle i::after {
    top: 7px;
    left: 0;
  }

  .menu-toggle[aria-expanded="true"] i {
    background: transparent;
  }

  .menu-toggle[aria-expanded="true"] i::before {
    top: 0;
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] i::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .mobile-nav {
    position: fixed;
    top: 68px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    display: grid;
    grid-template-columns: 92px 1fr;
    overflow-y: auto;
    background: var(--paper);
  }

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

  .mobile-menu-title {
    display: flex;
    padding-top: 24px;
    flex-direction: column;
    align-items: center;
    color: var(--teal);
    background: #eaf1f1;
    border-right: 1px solid var(--line);
  }

  .mobile-menu-title span,
  .mobile-menu-title strong {
    writing-mode: vertical-rl;
  }

  .mobile-menu-title span {
    color: var(--orange);
    font-family: Georgia, serif;
    font-size: 12px;
    letter-spacing: 0.12em;
  }

  .mobile-menu-title strong {
    margin-top: 25px;
    font-family: Georgia, "STSong", serif;
    font-size: 20px;
    letter-spacing: 0.12em;
  }

  .mobile-nav ul {
    padding: 6px 18px 30px;
  }

  .mobile-nav a {
    display: grid;
    grid-template-columns: 42px 1fr;
    min-height: 86px;
    align-items: center;
    border-bottom: 1px solid var(--line);
  }

  .mobile-nav em {
    color: var(--orange);
    font-family: Georgia, serif;
    font-style: normal;
  }

  .mobile-nav a span {
    display: flex;
    flex-direction: column;
  }

  .mobile-nav a strong {
    font-size: 15px;
  }

  .mobile-nav a small {
    color: var(--muted);
    font-size: 12px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 0;
  }

  .hero-image {
    height: 340px;
    object-position: 58% center;
  }

  .hero-panel {
    display: block;
    width: 100%;
    margin-top: 0;
    border-right: 0;
    border-left: 0;
    box-shadow: none;
  }

  .hero-copy,
  .hero-evidence,
  .hero-offer {
    padding: 28px 20px;
  }

  .hero-copy {
    border-bottom: 1px solid var(--line);
  }

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

  .hero-copy p {
    font-size: 15px;
  }

  .hero-evidence {
    border-right: 0;
    border-left: 0;
  }

  .hero-offer {
    display: grid;
    grid-template-columns: 1fr auto;
    text-align: left;
  }

  .hero-offer > strong {
    grid-row: 1 / 3;
    grid-column: 2;
    font-size: 52px;
  }

  .hero-offer small {
    font-size: 13px;
  }

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

  .hero-index li {
    text-align: left;
    border-bottom: 1px solid var(--line);
  }

  .directory-board,
  .assessment-layout,
  .team-layout,
  .about-report,
  .knowledge-layout,
  .cases-layout,
  .faq-layout {
    display: block;
  }

  .directory-sign {
    min-height: 190px;
    padding: 28px;
  }

  .directory-sign p {
    margin-top: 18px;
  }

  .directory-list article {
    grid-template-columns: 38px 40px 1fr;
    padding: 18px 15px;
  }

  .directory-list article p {
    grid-column: 3;
  }

  .assessment figure {
    min-height: 280px;
  }

  .triage-sheet {
    padding: 28px 20px;
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .section-heading h2,
  .archive-title h2,
  .triage-sheet h2,
  .team-roster h2,
  .lab-copy h2 {
    font-size: 28px;
  }

  .triage-sheet li {
    grid-template-columns: 40px 1fr;
    padding: 12px 0;
  }

  .triage-sheet li span {
    grid-column: 2;
  }

  .package-folder {
    display: block;
    padding: 0 0 0 54px;
    box-shadow: 7px 7px 0 #eee4d4;
  }

  .folder-tab {
    width: 46px;
    font-size: 16px;
  }

  .package-price {
    padding: 28px 20px;
    border-right: 0;
    border-bottom: 1px solid #d7cbbb;
  }

  .package-price > strong {
    font-size: 54px;
  }

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

  .package-columns article {
    padding: 22px 17px;
    border-bottom: 1px solid #d7cbbb;
  }

  .package-note p {
    display: block;
    margin: 7px 0 0;
  }

  .route-lane {
    display: block;
  }

  .route-lane ol {
    grid-template-columns: repeat(2, 1fr);
  }

  .route-lane li:not(:last-child)::after {
    display: none;
  }

  .route-handoff {
    position: static;
    width: fit-content;
    margin: -2px auto;
    transform: none;
  }

  .lab-window {
    padding: 45px 0;
  }

  .lab-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .lab-photo,
  .embryo-window {
    min-height: 230px;
  }

  .lab-copy {
    grid-column: 1 / -1;
    padding: 30px 0 0;
  }

  .pgt-grid {
    display: block;
  }

  .pgt-grid article,
  .pgt-grid article:not(:first-child) {
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .process-path {
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
    padding-bottom: 82px;
  }

  .process-path::before {
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    height: auto;
  }

  .process-path li,
  .process-path li:nth-child(even) {
    min-height: 175px;
    margin-top: 0;
    align-items: flex-end;
    text-align: right;
  }

  .process-path li:nth-child(even) {
    align-items: flex-start;
    text-align: left;
    transform: translateY(82px);
  }

  .team figure img {
    min-height: 250px;
  }

  .team-roster {
    padding: 28px 20px;
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .environment-strip {
    grid-template-columns: 1fr 1fr;
  }

  .environment-strip figure:last-child {
    grid-column: 1 / -1;
  }

  .about-report > header {
    padding: 30px 24px;
  }

  .about-centers {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px 20px;
  }

  .connection-line {
    min-height: 28px;
  }

  .connection-line::before {
    top: 0;
    right: 50%;
    bottom: 0;
    left: auto;
    width: 1px;
    height: auto;
  }

  .connection-line span {
    top: 2px;
  }

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

  .principles li:nth-child(2) {
    border-right: 0;
  }

  .archive-title {
    margin-bottom: 22px;
    padding: 0 0 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .featured-article {
    grid-template-columns: 125px 1fr;
    min-height: 170px;
  }

  .featured-article div {
    padding: 18px;
  }

  .featured-article h3 {
    font-size: 18px;
  }

  .article-index,
  .case-disclaimer {
    margin-top: 12px;
  }

  .case-files article {
    grid-template-columns: 120px 1fr;
  }

  .case-files img {
    height: 100%;
  }

  .case-files article div {
    padding: 18px;
  }

  .closing .container,
  .footer-bottom {
    display: block;
    text-align: center;
  }

  .closing h2 {
    font-size: 24px;
  }

  .closing p {
    margin: 15px auto 0;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 18px;
    text-align: center;
  }

  .footer-brand {
    grid-column: 1 / -1;
    justify-content: center;
  }

  .footer-bottom span {
    display: block;
    margin-top: 10px;
  }
}

@media (max-width: 430px) {
  .hero-image {
    height: 290px;
  }

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

  .hero-offer > strong {
    font-size: 45px;
  }

  .lab-layout {
    display: block;
  }

  .lab-photo {
    height: 255px;
  }

  .embryo-window {
    min-height: 220px;
  }

  .featured-article {
    display: block;
  }

  .featured-article img {
    height: 190px;
  }
}
