@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@400;500;600;700&family=Source+Sans+3:wght@300;400;600;700&display=swap");

:root {
  --bg: #eef3f5;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-strong: #ffffff;
  --ink: #163449;
  --ink-soft: #3f5d73;
  --accent: #0c3d54;
  --accent-deep: #082f42;
  --accent-2: #6bb2e1;
  --line: rgba(22, 52, 73, 0.18);
  --hero-overlay: rgba(8, 48, 68, 0.706);
  --shadow: 0 18px 48px rgba(9, 31, 44, 0.14);
  --radius: 20px;
  --max: 1520px;
  --header-h: 82px;
  --hero-header-offset: 88px;
  --font-heading: "Josefin Sans", "Avenir Next", Avenir, sans-serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
  --type-copy-sm: clamp(1.05rem, 1rem + 0.22vw, 1.14rem);
  --type-copy-md: clamp(1.12rem, 1.03rem + 0.38vw, 1.28rem);
  --type-copy-lg: clamp(1.16rem, 1.03rem + 0.62vw, 1.42rem);
  --type-title-sm: clamp(1.34rem, 1.14rem + 0.92vw, 1.9rem);
  --type-title-md: clamp(1.64rem, 1.32rem + 1.46vw, 2.55rem);
  --type-title-lg: clamp(1.94rem, 1.46rem + 2.48vw, 3.5rem);
  --type-hero-title: clamp(2.25rem, 1.62rem + 3.05vw, 3.75rem);
  --title-leading: 1.12;
  --hero-title-leading: 1.16;
  --title-leading-tight: 1.1;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--type-copy-sm);
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(107, 178, 225, 0.2), transparent 28%),
    linear-gradient(180deg, #eff4f7 0%, #f8fbfc 45%, #edf2f4 100%);
}

body.menu-open,
body.search-open {
  overflow: hidden;
}

body.menu-open::before {
  content: "";
  position: fixed;
  inset: var(--header-h) 0 0 0;
  z-index: 29;
  background: rgba(7, 26, 37, 0.28);
  -webkit-backdrop-filter: blur(20px) saturate(1.08);
  backdrop-filter: blur(20px) saturate(1.08);
  pointer-events: none;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 30;
  height: var(--header-h);
  background: rgba(12, 61, 84, 0.58);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition:
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 260ms ease,
    border-color 260ms ease;
  will-change: transform;
}

.site-header.is-hidden {
  transform: translateY(calc(-100% - 4px));
}

.header-inner,
.section-inner,
.footer-inner,
.search-panel-inner {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

@media (min-width: 1024px) {
  .header-inner {
    width: min(calc(100% - 28px), 1580px);
  }
}

.brand,
.brand-mark,
.brand-text,
.menu-button,
.site-nav a,
.eyebrow,
.hero h1,
.section-heading h2,
.feature-panel h2,
.split-copy h2,
.content-card h2,
.service-card h3,
.link-panel h3,
.notice-panel h3,
.footer-copy h2,
.button,
.button-secondary {
  font-family: var(--font-heading);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}

.brand-logo {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  background: #fff;
  -webkit-mask: url("/images/site-icons/ssplogo.svg") center / contain no-repeat;
  mask: url("/images/site-icons/ssplogo.svg") center / contain no-repeat;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brand-text {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}

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

.icon-button,
.menu-button {
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.icon-button {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
}

.icon-button:hover,
.menu-button:hover {
  background: rgba(255, 255, 255, 0.08);
}

.menu-button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  display: block;
  width: 24px;
  height: 1.5px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-lines {
  position: relative;
}

.menu-lines::before {
  position: absolute;
  top: -7px;
}

.menu-lines::after {
  position: absolute;
  top: 7px;
}

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

.menu-button[aria-expanded="true"] .menu-lines::before {
  transform: translateY(7px) rotate(45deg);
}

.menu-button[aria-expanded="true"] .menu-lines::after {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  position: fixed;
  top: var(--header-h);
  right: 16px;
  width: min(380px, calc(100% - 32px));
  padding: 20px;
  background: rgba(7, 31, 44, 0.84);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  box-shadow: var(--shadow);
  z-index: 1;
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.site-nav a {
  display: block;
  padding: 14px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.84rem;
}

.site-nav a:last-child {
  border-bottom: 0;
}

.hero {
  position: relative;
  min-height: 80svh;
  display: grid;
  place-items: center;
  overflow: clip;
  padding: calc(var(--header-h) + var(--hero-header-offset)) 20px 80px;
  color: #fff;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
}

.hero::before {
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(107, 178, 225, 0.15), transparent 42%),
    linear-gradient(180deg, rgba(5, 30, 43, 0.25), rgba(5, 30, 43, 0.25)),
    var(--hero-image, linear-gradient(135deg, #24485d, #0c3044));
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}

.hero::after {
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(10, 36, 50, 0.28), rgba(10, 36, 50, 0.48)),
    linear-gradient(0deg, var(--hero-overlay), var(--hero-overlay));
  mix-blend-mode: multiply;
}

.hero--home::after {
  background:
    linear-gradient(180deg, rgba(6, 28, 40, 0.12), rgba(6, 28, 40, 0.3)),
    linear-gradient(0deg, rgba(8, 48, 68, 0.58), rgba(8, 48, 68, 0.58));
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.03);
  animation: heroCrossfade 54s infinite;
}

.hero-slide:nth-child(1) {
  animation-delay: 0s;
}

.hero-slide:nth-child(2) {
  animation-delay: 6s;
}

.hero-slide:nth-child(3) {
  animation-delay: 12s;
}

.hero-slide:nth-child(4) {
  animation-delay: 18s;
}

.hero-slide:nth-child(5) {
  animation-delay: 24s;
}

.hero-slide:nth-child(6) {
  animation-delay: 30s;
}

.hero-slide:nth-child(7) {
  animation-delay: 36s;
}

.hero-slide:nth-child(8) {
  animation-delay: 42s;
}

.hero-slide:nth-child(9) {
  animation-delay: 48s;
}

.hero.hero-slideshow::before {
  background:
    linear-gradient(135deg, rgba(107, 178, 225, 0.16), transparent 42%),
    linear-gradient(180deg, rgba(5, 30, 43, 0.2), rgba(5, 30, 43, 0.2));
}

.patient-billing-copy {
  padding-bottom: 65px;
}

@keyframes heroPulse {
  from {
    transform: scale(1.03);
  }
  to {
    transform: scale(1.1);
  }
}

@keyframes heroCrossfade {
  0% {
    opacity: 0;
    transform: scale(1.03);
  }

  5%,
  20% {
    opacity: 1;
  }

  28% {
    opacity: 0;
    transform: scale(1.08);
  }

  100% {
    opacity: 0;
    transform: scale(1.08);
  }
}

.hero-content {
  --hero-scroll-progress: 0;
  position: relative;
  z-index: 3;
  width: min(100%, 1240px);
  display: grid;
  justify-items: center;
  text-align: center;
  transform: scale(calc(1 + (var(--hero-scroll-progress) * 0.055)));
  opacity: calc(1 - (var(--hero-scroll-progress) * 0.68));
  will-change: transform, opacity;
}

.hero-content--wide {
  width: min(100%, 1440px);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.78);
}

.eyebrow--body {
  font-family: var(--font-body);
  font-weight: 400;
}

.hero h1,
.section-heading h2,
.feature-panel h2,
.split-copy h2,
.content-card h2 {
  margin: 0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: var(--title-leading);
  font-weight: 600;
}

.hero h1 {
  font-size: clamp(2.1rem, 1.68rem + 2.35vw, 3.4rem);
  font-weight: 700;
  line-height: var(--hero-title-leading);
  letter-spacing: 0.06em;
}

.hero-title--nowrap {
  display: block;
  width: min(100%, 24ch);
  margin-inline: auto;
  text-align: center;
  text-wrap: balance;
  white-space: normal;
}

@media (min-width: 1500px) {
  .hero-title--nowrap {
    width: auto;
    max-width: none;
    white-space: nowrap;
    text-wrap: initial;
  }
}

.hero-divider,
.section-divider {
  width: min(560px, 100%);
  height: 1px;
  margin: 26px auto;
  background: rgba(255, 255, 255, 0.4);
}

/* Hero supporting copy */
.hero p {
  margin: 0 auto;
  max-width: 46rem;
  font-size: clamp(1.08rem, 1rem + 0.46vw, 1.28rem);
  font-weight: 400;
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.05rem;
}

.page-band {
  background: var(--accent);
  height: 58px;
  position: relative;
  box-shadow: none;
  overflow: visible;
}

.page-band::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: min(130px, 22vw);
  height: 100%;
  background: #6bb2e1;
  z-index: 1;
}

.page-band::after {
  content: "";
  position: absolute;
  top: 0;
  left: calc(min(130px, 22vw) - 42px);
  width: 42px;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(7, 25, 36, 0) 0%,
    rgba(7, 25, 36, 0.06) 30%,
    rgba(7, 25, 36, 0.18) 72%,
    rgba(7, 25, 36, 0.28) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.section {
  padding: 88px 0;
}

.home-about-intro {
  background: #fff;
  padding-top: 50px;
  padding-bottom: 25px;
}

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

.section-heading h2 {
  font-size: var(--type-title-lg);
  color: var(--ink);
}

.section-divider {
  background: rgba(22, 52, 73, 0.22);
}

.section-frame {
  --parallax-bg:
    linear-gradient(rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.84)),
    var(--frame-image-mobile, var(--frame-image, radial-gradient(circle at center, rgba(107, 178, 225, 0.22), transparent 50%)));
  position: relative;
  background: var(--parallax-bg);
  background-position: center;
  background-size: cover;
}

.section-frame--clear {
  --parallax-bg: var(--frame-image-mobile, var(--frame-image));
  background: var(--parallax-bg);
  background-position: center;
  background-size: cover;
}

.section-frame.is-fixed {
  background-attachment: fixed;
}

.mobile-sticky-bg {
  display: none;
}

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

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

.section-heading--light h2 {
  color: #fff;
}

.section-heading--light .section-divider {
  background: rgba(255, 255, 255, 0.68);
}

.feature-panel,
.content-card,
.service-card,
.link-panel,
.notice-panel {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-panel {
  background: var(--accent);
  color: #fff;
  padding: 34px;
}

.feature-panel h2 {
  font-weight: 500;
  letter-spacing: 0.12em;
}

.feature-panel p,
.feature-panel li {
  font-size: var(--type-copy-sm);
  font-weight: 400;
  line-height: 1.68;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.86);
}

.feature-panel-media {
  width: 100%;
  margin-top: 28px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.feature-panel-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

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

.content-card {
  background: rgba(255, 255, 255, 0.92);
  padding: 42px;
}

.content-card p,
.split-copy p,
.notice-panel p,
.service-card p,
.link-panel p {
  font-size: var(--type-copy-sm);
  font-weight: 400;
  color: var(--ink-soft);
  line-height: 1.72;
}

.list-checks {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}

.list-checks li {
  position: relative;
  padding-left: 26px;
  font-weight: 600;
}

.list-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #73c4f8;
}

.home-story-section {
  padding-top: 190px;
  padding-bottom: 156px;
}

.home-story {
  position: relative;
  width: min(1360px, 100%);
  margin: 0 auto;
}

.home-story-card {
  position: relative;
  background: rgba(255, 255, 255, 0.97);
  padding: 122px 54px 68px;
  box-shadow: var(--shadow);
}

.home-story-ribbon {
  position: absolute;
  left: 28px;
  right: 28px;
  top: -34px;
  background: var(--accent);
  color: #fff;
  min-height: 104px;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 22px 38px;
  box-shadow: 0 8px 18px rgba(6, 24, 35, 0.14);
}

.home-story-ribbon h2 {
  margin: 0;
  display: block;
  position: relative;
  top: 2px;
  color: #fff;
  font-size: var(--type-title-md);
  font-family: "Josefin Sans", "Avenir Next", Avenir, sans-serif;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.home-story-ribbon-line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.52);
}

.home-story-body {
  width: min(1080px, 100%);
  padding-bottom: 8px;
}

.home-story .home-story-body p {
  margin: 0 0 18px;
  font-size: var(--type-copy-lg);
  line-height: 1.7;
  color: #3b5060;
}

.home-story-band {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
  background: var(--accent);
  color: #fff;
  padding: 34px 38px;
  margin: 34px -54px 0;
  box-shadow: 0 10px 22px rgba(6, 24, 35, 0.14);
}

.home-story-band-copy h3 {
  margin: 0 0 26px;
  font-family: var(--font-body);
  font-size: var(--type-copy-md);
  font-weight: 700;
  letter-spacing: 0.03em;
}

.list-checks--home {
  gap: 18px;
  margin-top: 0;
}

.list-checks--home li {
  font-size: var(--type-copy-md);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
}

.list-checks--home li::before {
  font-size: 1.5rem;
  line-height: 1;
  top: -2px;
}

.home-story-band-media {
  min-height: 260px;
}

.home-story-band-media img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.media-slab {
  min-height: 360px;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08)),
    var(--media-image, linear-gradient(135deg, #eaf2f6, #d9e7ee));
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.split-copy {
  align-self: center;
  padding: 20px 0;
}

.service-card {
  background: rgba(255, 255, 255, 0.96);
  padding: 28px;
  border: 1px solid rgba(22, 52, 73, 0.08);
}

.service-card-divider {
  width: 54%;
  height: 1px;
  background: rgba(22, 52, 73, 0.34);
  margin: 16px 0 22px;
}

.service-card-icon {
  width: 62px;
  height: 62px;
  border: 2px solid rgba(12, 61, 84, 0.22);
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  color: var(--accent);
  font-size: 1.7rem;
}

.service-card-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.service-card-glyph {
  display: block;
  background: currentColor;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.service-card-glyph--labtest {
  width: 44px;
  height: 32px;
  -webkit-mask-image: url("/images/site-icons/labtest.svg");
  mask-image: url("/images/site-icons/labtest.svg");
}

.service-card-glyph--microscope {
  width: 30px;
  height: 48px;
  -webkit-mask-image: url("/images/site-icons/microscope.svg");
  mask-image: url("/images/site-icons/microscope.svg");
}

.service-card-glyph--hospital {
  width: 42px;
  height: 34px;
  -webkit-mask-image: url("/images/site-icons/hospital.svg");
  mask-image: url("/images/site-icons/hospital.svg");
}

.service-card h3,
.link-panel h3,
.notice-panel h3 {
  margin: 0 0 16px;
  font-size: var(--type-title-sm);
  line-height: var(--title-leading-tight);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}

.action-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 700;
}

.button {
  background: var(--accent);
  color: #fff;
}

.button-secondary {
  border: 1px solid rgba(22, 52, 73, 0.24);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
}

.services-preview-home {
  padding: 0 0 0;
  background: #edf3f6;
  position: relative;
  z-index: 2;
  isolation: isolate;
}

.services-intro {
  background: #fff;
  padding-top: 50px;
  padding-bottom: 25px;
}

.services-intro .section-heading h2 {
  font-size: clamp(1.82rem, 1.46rem + 1.82vw, 2.85rem);
}

.hero--services::before {
  background:
    linear-gradient(135deg, rgba(107, 178, 225, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(5, 30, 43, 0.16), rgba(5, 30, 43, 0.2)),
    var(--hero-image);
  background-size: cover;
  background-position: center;
}

.services-overview {
  background:
    linear-gradient(rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.86)),
    var(--frame-image);
  background-position: center;
  background-size: cover;
}

.services-top-grid {
  grid-template-columns: minmax(0, 1.14fr) minmax(0, 0.86fr);
  gap: clamp(44px, 4.6vw, 96px);
  align-items: start;
}

.services-overview .section-inner {
  width: min(calc(100% - 88px), 1450px);
}

.services-panel-stack {
  background: var(--accent);
  padding: 34px;
  box-shadow: var(--shadow);
}

.services-overview .feature-panel {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.68);
  padding: 28px 26px;
}

.services-overview .feature-panel-head {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 22px;
  align-items: start;
}

.services-overview .feature-panel-icon {
  width: 74px;
  height: 74px;
  border: 2px solid rgba(255, 255, 255, 0.74);
  display: grid;
  place-items: center;
  color: #fff;
}

.services-overview .feature-panel-icon::before {
  content: "";
  display: block;
  background: currentColor;
  width: 44px;
  height: 44px;
}

.services-overview .feature-panel-icon--labtest::before {
  -webkit-mask: url("/images/site-icons/labtest.svg") center / contain no-repeat;
  mask: url("/images/site-icons/labtest.svg") center / contain no-repeat;
}

.services-overview .feature-panel-icon--microscope::before {
  width: 34px;
  height: 54px;
  -webkit-mask: url("/images/site-icons/microscope.svg") center / contain no-repeat;
  mask: url("/images/site-icons/microscope.svg") center / contain no-repeat;
}

.services-overview .feature-panel-icon--hospital::before {
  width: 42px;
  height: 42px;
  -webkit-mask: url("/images/site-icons/hospital.svg") center / contain no-repeat;
  mask: url("/images/site-icons/hospital.svg") center / contain no-repeat;
}

.services-overview .feature-panel-copy h2 {
  margin: 0 0 10px;
  font-size: clamp(1.36rem, 1.16rem + 0.9vw, 1.84rem);
  line-height: 1.18;
  letter-spacing: 0.05em;
}

.services-overview .feature-panel-copy p {
  margin: 0;
  font-size: var(--type-copy-sm);
  line-height: 1.64;
}

.services-overview .split-copy {
  align-self: start;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(18, 48, 68, 0.08);
  box-shadow: 0 14px 28px rgba(10, 31, 44, 0.1);
  padding: 0 38px 34px;
}

.services-overview .split-copy h2 {
  margin: 0;
  display: block;
  position: relative;
  top: 2px;
  height: 0.84em;
  overflow: hidden;
  font-size: clamp(1.74rem, 1.42rem + 1.36vw, 2.32rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
}

.services-overview .split-copy .split-copy-heading {
  margin: 0 -38px 28px;
  padding: 26px 38px 16px;
  background: rgba(111, 150, 172, 0.28);
  border-bottom: 1px solid rgba(18, 48, 68, 0.12);
}

.services-list-intro {
  margin: 0 0 14px;
  font-size: var(--type-copy-md);
  line-height: 1.54;
}

.services-overview .list-checks {
  margin-top: 0;
  gap: 14px;
}

.services-overview .list-checks li {
  font-size: var(--type-copy-md);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.services-summary {
  width: min(1220px, 100%);
  margin: 64px auto 0;
}

.services-summary h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: clamp(1.42rem, 1.22rem + 1.12vw, 2.1rem);
  font-weight: 700;
  line-height: 1.34;
}

.services-summary .section-divider {
  width: 100%;
  margin: 26px 0 30px;
}

.services-summary p {
  margin: 0 0 10px;
  color: #2e3c49;
  font-size: var(--type-copy-lg);
  line-height: 1.7;
}

.services-summary p:last-child {
  margin-bottom: 0;
}

.hero--patient-resources::before {
  background:
    linear-gradient(135deg, rgba(107, 178, 225, 0.1), transparent 42%),
    linear-gradient(180deg, rgba(5, 30, 43, 0.12), rgba(5, 30, 43, 0.18)),
    var(--hero-image);
  background-size: cover;
  background-position: center;
}

.hero--utility {
  min-height: 62svh;
}

.hero--privacy-policy::before,
.hero--sitemap::before {
  background:
    linear-gradient(135deg, rgba(107, 178, 225, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(5, 30, 43, 0.28), rgba(5, 30, 43, 0.34)),
    var(--hero-image);
  background-size: cover;
  background-position: center;
}

.patient-resources-overview {
  background: #fff;
}

.patient-resources-overview .section-inner {
  width: min(calc(100% - 88px), 1480px);
}

.patient-resources-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
}

.patient-billing-copy {
  padding: 84px 72px 84px 18px;
  max-width: 600px;
  align-self: center;
}

.patient-billing-icon {
  display: block;
  width: 50px;
  height: 62px;
  margin-bottom: 28px;
  background: var(--accent);
  -webkit-mask: url("/images/site-icons/billing.svg") center / contain no-repeat;
  mask: url("/images/site-icons/billing.svg") center / contain no-repeat;
}

.patient-billing-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 1.56rem + 2.25vw, 3.45rem);
  font-weight: 400;
  line-height: var(--title-leading);
  letter-spacing: 0.03em;
}

.patient-billing-copy .section-divider {
  width: min(100%, 370px);
  margin: 26px 0 34px;
}

.patient-billing-copy p {
  margin: 0;
  color: #2e3c49;
  font-size: var(--type-copy-lg);
  line-height: 1.72;
}

.patient-billing-link {
  margin-top: 28px;
}

.patient-billing-link a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-family: "Josefin Sans", "Avenir Next", Avenir, sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.patient-billing-link a::after {
  content: "↓";
  font-size: 1rem;
  line-height: 1;
}

.patient-pathology-stage {
  --parallax-bg:
    linear-gradient(rgba(205, 227, 241, 0.82), rgba(205, 227, 241, 0.82)),
    url("/images/patient-resources/fixedbg1.jpeg");
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 72px 0 72px 0;
  background: var(--parallax-bg);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.patient-pathology-card {
  width: min(100%, 650px);
  margin-left: -56px;
  border-radius: 0;
  box-shadow: 0 18px 40px rgba(9, 31, 44, 0.18);
  padding: 34px 30px 34px 30px;
}

.patient-pathology-card h2 {
  font-size: clamp(1.68rem, 1.42rem + 1.08vw, 2.2rem);
  line-height: var(--title-leading);
}

.patient-pathology-card .section-divider {
  width: min(100%, 280px);
  margin: 24px 0 30px;
  background: rgba(255, 255, 255, 0.72);
}

.patient-pathology-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: var(--type-copy-md);
  line-height: 1.76;
}

.patient-pathology-card p + p {
  margin-top: 12px;
}

.patient-contact {
  position: relative;
  z-index: 2;
  isolation: isolate;
  padding: 0;
  background: transparent;
}

.patient-contact .section-inner {
  width: 100%;
  max-width: none;
}

.patient-contact-panel {
  border-radius: 0;
  box-shadow: none;
  padding: 72px 24px 76px;
}

.patient-contact-panel h2 {
  font-size: clamp(1.84rem, 1.48rem + 1.46vw, 2.55rem);
  line-height: var(--title-leading);
}

.patient-contact-panel .section-divider {
  width: min(100%, 460px);
  margin: 24px auto 28px;
  background: rgba(255, 255, 255, 0.72);
}

.patient-contact-panel p {
  max-width: 880px;
  font-size: var(--type-copy-lg);
  line-height: 1.68;
}

.patient-contact-panel .button-secondary {
  min-width: 278px;
  min-height: 74px;
  font-size: 1.14rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.patient-privacy-section {
  position: relative;
  --parallax-bg:
    linear-gradient(rgba(248, 251, 253, 0.87), rgba(248, 251, 253, 0.87)),
    var(--privacy-image);
  background: var(--parallax-bg);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.patient-privacy-section .section-inner {
  width: min(calc(100% - 88px), 1480px);
}

.patient-privacy-card {
  width: min(100%, 1120px);
  margin: 0 auto;
  border-radius: 0;
  box-shadow: 0 26px 54px rgba(9, 31, 44, 0.14);
  background: rgba(255, 255, 255, 0.93);
  padding: 58px 54px 56px;
}

.patient-privacy-icon {
  display: inline-flex;
  color: var(--accent);
  margin-bottom: 12px;
}

.patient-privacy-card h2 {
  margin: 0;
  font-size: clamp(1.72rem, 1.38rem + 1.4vw, 2.45rem);
  line-height: var(--title-leading);
  letter-spacing: 0.08em;
}

.patient-privacy-card .section-divider {
  width: min(100%, 620px);
  margin: 28px 0 34px;
}

.patient-privacy-card p {
  margin: 0;
  color: #2f3d49;
  font-size: var(--type-copy-lg);
  line-height: 1.78;
}

.patient-privacy-card p + p {
  margin-top: 22px;
}

.policy-card {
  display: grid;
  gap: 0;
}

.policy-card .policy-meta {
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: var(--type-copy-sm);
}

.policy-card h3 {
  margin: 0 0 14px;
  font-family: var(--font-heading);
  font-size: var(--type-title-sm);
  line-height: var(--title-leading-tight);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
}

.policy-card h3:not(:first-of-type) {
  margin-top: 30px;
}

.policy-card p + p {
  margin-top: 14px;
}

.policy-list {
  margin: 0 0 8px;
  padding-left: 22px;
  color: var(--ink-soft);
}

.policy-list li + li {
  margin-top: 8px;
}

.policy-card a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

@media (max-width: 1500px) {
  .services-overview .section-inner {
    width: min(calc(100% - 80px), 1360px);
  }

  .services-top-grid {
    gap: 32px;
  }

  .services-overview .feature-panel-copy h2 {
    font-size: 1.56rem;
  }

  .services-overview .split-copy {
    padding: 32px 30px 30px;
  }

  .services-overview .split-copy .split-copy-heading {
    margin: -32px -30px 26px;
    padding: 24px 30px 14px;
  }

  .services-overview .split-copy h2 {
    font-size: 1.94rem;
  }
}

@media (max-width: 1300px) {
  .services-overview .section-inner {
    width: min(calc(100% - 68px), 1220px);
  }

  .services-top-grid {
    gap: 24px;
  }

  .services-panel-stack {
    padding: 24px;
  }

  .services-overview .feature-panel {
    padding: 22px 20px;
  }

  .services-overview .feature-panel-head {
    grid-template-columns: 56px 1fr;
    gap: 16px;
  }

  .services-overview .feature-panel-icon {
    width: 56px;
    height: 56px;
  }

  .services-overview .feature-panel-copy h2 {
    font-size: 1.28rem;
  }

  .services-overview .feature-panel-copy p {
    font-size: 1.05rem;
  }

  .services-overview .split-copy {
    padding: 28px 24px 26px;
  }

  .services-overview .split-copy .split-copy-heading {
    margin: -28px -24px 24px;
    padding: 18px 24px 16px;
  }

  .services-overview .split-copy h2 {
    font-size: 1.64rem;
  }

  .services-list-intro {
    font-size: 1.08rem;
  }

  .services-overview .list-checks li {
    font-size: 1.08rem;
  }

  .patient-resources-overview .section-inner,
  .patient-privacy-section .section-inner {
    width: min(calc(100% - 72px), 1280px);
  }

  .patient-billing-copy {
    padding: 72px 52px 72px 10px;
  }

  .patient-billing-copy h2 {
    font-size: 3rem;
  }

  .patient-pathology-card {
    margin-left: -34px;
    width: min(100%, 610px);
  }

  .patient-pathology-card h2 {
    font-size: 2rem;
  }

  .patient-privacy-card {
    width: min(100%, 1000px);
    padding: 52px 46px 50px;
  }
}

@media (min-width: 921px) {
  .services-summary h3 {
    font-size: clamp(1.62rem, 2.15vw, 2.45rem);
  }
}

.services-preview-hero {
  background: var(--accent);
  padding: 56px 0 148px;
  margin-bottom: -112px;
}

.services-preview-hero .section-heading {
  max-width: 760px;
  margin: 0 auto;
}

.services-preview-cards {
  align-items: stretch;
}

.services-preview-home .service-card {
  border-radius: 0;
  padding: 30px 22px 34px;
  border: 1px solid rgba(18, 48, 68, 0.24);
  box-shadow: 0 10px 18px rgba(10, 31, 44, 0.12);
}

.services-preview-home .service-card-icon {
  width: 74px;
  height: 74px;
  margin-bottom: 18px;
  border: 0;
  background: var(--accent);
  color: #fff;
  font-size: 2rem;
}

.services-preview-home .service-card-icon img {
  width: 44px;
  height: 44px;
  filter: brightness(0) invert(1);
}

.services-preview-home .service-card-glyph {
  color: #fff;
}

.services-preview-home .service-card-glyph--labtest {
  width: 44px;
  height: 44px;
}

.services-preview-home .service-card-glyph--microscope {
  width: 34px;
  height: 54px;
}

.services-preview-home .service-card-glyph--hospital {
  width: 42px;
  height: 42px;
}

.notice-panel {
  background: var(--accent);
  color: #fff;
  text-align: center;
  padding: 56px 24px;
}

.notice-panel h2 {
  font-weight: 500;
  letter-spacing: 0.12em;
}

.notice-panel p {
  font-weight: 400;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.84);
  max-width: 720px;
  margin: 18px auto 0;
}

.notice-panel .button-secondary {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  background: transparent;
}

.link-panel {
  background: rgba(255, 255, 255, 0.9);
  padding: 28px;
}

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

.link-list a {
  font-weight: 700;
  color: var(--accent);
}

.site-footer {
  background: transparent;
  color: #fff;
  padding: 0;
  position: relative;
  z-index: 2;
  isolation: isolate;
}

.site-footer .footer-inner {
  width: 100%;
  max-width: none;
}

.footer-link-strip {
  background: #e5edf2;
  border-top: 1px solid rgba(18, 48, 68, 0.08);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 68px clamp(28px, 6vw, 72px);
}

.footer-link-strip a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 88px;
  text-align: center;
  font-family: "Josefin Sans", "Avenir Next", Avenir, sans-serif;
  font-size: 1.18rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 18px 24px;
  border: 1px solid rgba(12, 61, 84, 0.24);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 24px rgba(9, 31, 44, 0.08);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.footer-link-strip a:hover {
  transform: translateY(-2px);
  background: #fff;
  border-color: rgba(12, 61, 84, 0.4);
}

.footer-inner {
  background: var(--accent);
}

.footer-banner {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(300px, 0.6fr);
  gap: 0;
  align-items: stretch;
  margin-bottom: 0;
  width: 100%;
}

.footer-copy {
  display: grid;
  grid-template-columns: minmax(0, 430px) 1fr;
  grid-template-rows: auto 1fr;
  align-items: start;
  padding: 58px 54px 48px;
}

.footer-copy-head {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 26px;
}

.footer-rule {
  display: block;
  height: 1px;
  background: rgba(255, 255, 255, 0.7);
}

.footer-rule--top {
  flex: 1;
}

.footer-title {
  grid-column: 1;
  margin: 0;
  max-width: 400px;
  font-size: clamp(1.3rem, 2.35vw, 2rem);
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: 0.065em;
  text-transform: uppercase;
}

.footer-copy .eyebrow {
  font-size: 1rem;
  letter-spacing: 0.12em;
}

.footer-rule--bottom {
  grid-column: 2;
  align-self: center;
  width: auto;
  margin: 0 0 0 42px;
}

.footer-panel {
  min-height: 260px;
}

.footer-panel-media {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 260px;
  overflow: hidden;
}

.footer-panel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.footer-panel-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(122px, 29%);
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 10px 22px rgba(8, 27, 38, 0.26));
}

.footer-nav-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
  gap: 18px;
  padding: 28px 54px 28px;
  background: var(--accent-deep);
}

.footer-brand {
  display: grid;
  place-items: center start;
}

.footer-logo-left {
  width: 62px;
  height: 62px;
  background: #fff;
  -webkit-mask: url("/images/site-icons/ssplogo.svg") center / contain no-repeat;
  mask: url("/images/site-icons/ssplogo.svg") center / contain no-repeat;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
  justify-self: start;
  margin: 0;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border-top: 0;
  padding: 18px 54px;
  font-size: 0.88rem;
  color: var(--ink-soft);
  background: #fff;
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 35;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--accent);
  box-shadow: var(--shadow);
  cursor: pointer;
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.search-panel {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(7, 26, 37, 0.7);
  backdrop-filter: blur(10px);
  display: none;
}

.search-panel.is-open {
  display: block;
}

.search-panel-inner {
  padding-top: max(14svh, 100px);
  display: grid;
  gap: 18px;
}

.search-panel-note {
  margin: 0;
  padding-left: 6px;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-heading);
  font-size: clamp(1.18rem, 1.04rem + 0.72vw, 1.5rem);
  letter-spacing: 0.04em;
}

.search-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.search-card-top {
  display: flex;
  gap: 16px;
  align-items: center;
}

.search-card input {
  width: 100%;
  min-height: 60px;
  border: 1px solid rgba(22, 52, 73, 0.22);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  padding: 0 18px;
  font: inherit;
  font-size: 1rem;
  outline: none;
  box-shadow: none;
}

.search-card input:focus {
  border-color: rgba(22, 52, 73, 0.28);
  box-shadow: 0 0 0 1px rgba(22, 52, 73, 0.12);
}

.search-close-button {
  width: 60px;
  min-width: 60px;
  height: 60px;
  border: 1px solid rgba(22, 52, 73, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.search-close-icon,
.search-close-icon::before,
.search-close-icon::after {
  display: block;
  width: 28px;
  height: 1.8px;
  background: currentColor;
  content: "";
}

.search-close-icon {
  position: relative;
  background: transparent;
}

.search-close-icon::before {
  position: absolute;
  transform: rotate(45deg);
}

.search-close-icon::after {
  position: absolute;
  transform: rotate(-45deg);
}

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

.search-results:empty {
  display: none;
}

.search-results li {
  border: 1px solid rgba(22, 52, 73, 0.09);
  border-radius: 16px;
  padding: 16px 18px;
}

.search-results a {
  display: block;
}

.search-results strong {
  display: block;
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}

.muted {
  color: var(--ink-soft);
}

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

@media (max-width: 1024px) {
  body {
    overflow-x: hidden;
  }

  .home-story-section,
  .patient-privacy-section,
  .services-overview {
    --mobile-sticky-scale: 1.14;
    --mobile-sticky-position: center;
    position: relative;
    overflow: visible;
    isolation: isolate;
    background: transparent;
    background-attachment: scroll;
  }

  .home-story-section .mobile-sticky-bg,
  .patient-privacy-section .mobile-sticky-bg,
  .services-overview .mobile-sticky-bg {
    display: block;
    position: sticky;
    top: 0;
    height: 100svh;
    margin-bottom: -100svh;
    z-index: 0;
    background: var(--parallax-bg);
    background-position: var(--mobile-sticky-position);
    background-size: cover;
    transform: scale(var(--mobile-sticky-scale));
    transform-origin: center;
    pointer-events: none;
  }

  .home-story-section > *,
  .patient-privacy-section > *,
  .services-overview > * {
    position: relative;
    z-index: 1;
  }

  .patient-resources-overview {
    padding-top: 48px;
    padding-bottom: 44px;
  }

  .services-overview {
    --parallax-bg:
      linear-gradient(rgba(244, 248, 250, 0.74), rgba(244, 248, 250, 0.74)),
      linear-gradient(rgba(8, 30, 43, 0.08), rgba(8, 30, 43, 0.08)),
      var(--frame-image-mobile, var(--frame-image));
    --mobile-sticky-scale: 1;
    --mobile-sticky-position: center 43%;
    overflow: visible;
  }

  .services-overview .mobile-sticky-bg {
    filter: none;
    transform: none;
  }

  .patient-pathology-stage {
    --parallax-bg:
      linear-gradient(rgba(205, 227, 241, 0.74), rgba(205, 227, 241, 0.74)),
      url("/images/patient-resources/fixedbg1.jpeg");
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: var(--parallax-bg);
    background-position: center 44%;
    background-size: cover;
    background-attachment: scroll;
  }

  .patient-pathology-stage .mobile-sticky-bg {
    display: none;
  }

  .patient-privacy-section {
    --parallax-bg:
      linear-gradient(rgba(248, 251, 253, 0.76), rgba(248, 251, 253, 0.76)),
      var(--privacy-image);
    --mobile-sticky-scale: 1;
    --mobile-sticky-position: center 48%;
  }

  .home-story-section {
    --mobile-sticky-scale: 1;
    --mobile-sticky-position: center 42%;
  }

  .home-story-section .mobile-sticky-bg {
    transform: none;
  }

  .services-top-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .services-overview .section-inner {
    width: min(calc(100% - 40px), 860px);
  }

  .services-panel-stack,
  .services-overview .split-copy,
  .services-summary {
    width: min(100%, 760px);
    margin-left: auto;
    margin-right: auto;
  }

  .services-panel-stack {
    margin-top: 12px;
    padding: 26px;
  }

  .services-overview .split-copy {
    width: min(100%, 42rem);
    padding: 28px 26px 26px;
    text-align: left;
  }

  .services-overview .split-copy .split-copy-heading {
    margin: -28px -26px 22px;
    padding: 18px 26px 16px;
  }

  .services-overview .split-copy h2,
  .services-summary h3 {
    text-align: left;
  }

  .services-overview .split-copy .section-divider,
  .services-summary .section-divider {
    margin-left: 0;
    margin-right: 0;
  }

  .services-list-intro {
    width: auto;
    margin-left: 0;
    margin-right: 0;
    text-align: left;
    font-size: 1.12rem;
  }

  .services-overview .list-checks {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    text-align: left;
  }

  .services-overview .list-checks li {
    display: block;
    width: auto;
    margin: 0;
    padding-left: 26px;
    text-align: left;
  }

  .services-overview .list-checks li::before {
    position: absolute;
    transform: none;
  }

  .services-overview .feature-panel-copy h2 {
    font-size: 1.4rem;
  }

  .services-summary {
    margin-top: 44px;
    width: min(100%, 42rem);
    padding: 28px 26px 24px;
    background: rgba(248, 251, 252, 0.9);
    border: 1px solid rgba(18, 48, 68, 0.14);
    box-shadow: 0 14px 28px rgba(10, 31, 44, 0.1);
    text-align: left;
  }

  .services-summary p {
    text-align: left;
  }

  .patient-resources-overview .section-inner,
  .patient-privacy-section .section-inner {
    width: min(calc(100% - 32px), 900px);
  }

  .patient-resources-grid {
    grid-template-columns: 1fr;
  }

  .patient-billing-copy {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }

  .patient-pathology-stage {
    max-width: none;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  .patient-billing-copy {
    padding: 24px 0 20px;
  }

  .patient-billing-copy h2,
  .patient-pathology-card h2 {
    font-size: 2.5rem;
  }

  .patient-billing-copy .section-divider {
    width: min(100%, 340px);
  }

  .patient-pathology-stage {
    display: grid;
    place-items: center;
    padding: 44px 0;
    background: var(--parallax-bg);
    background-position: center 44%;
    background-size: cover;
  }

  .patient-pathology-card {
    width: min(calc(100% - 32px), 980px);
    margin: 0 auto;
  }

  .patient-contact-panel {
    padding: 60px 24px 64px;
  }

  .patient-contact-panel .button-secondary {
    min-width: 260px;
    min-height: 68px;
  }

  .patient-privacy-card {
    width: min(100%, 860px);
    padding: 48px 38px 46px;
  }

  .patient-privacy-card h2 {
    font-size: 2.3rem;
  }
}

@media (max-width: 920px) {
  :root {
    --hero-header-offset: 112px;
    --type-copy-sm: 1.08rem;
    --type-copy-md: 1.16rem;
    --type-copy-lg: 1.2rem;
    --type-title-sm: clamp(1.3rem, 1.14rem + 0.8vw, 1.68rem);
    --type-title-md: clamp(1.56rem, 1.3rem + 1.28vw, 2.08rem);
    --type-title-lg: clamp(1.86rem, 1.45rem + 2vw, 2.8rem);
    --type-hero-title: clamp(2.18rem, 1.72rem + 2.65vw, 3.1rem);
  }

  .hero-content {
    margin-top: 0;
  }

  .grid-2,
  .grid-3,
  .footer-banner {
    grid-template-columns: 1fr;
  }

  .footer-link-strip,
  .footer-nav-row {
    grid-template-columns: 1fr;
  }

  .footer-link-strip {
    min-height: 220px;
    padding: 28px 32px;
    gap: 22px;
  }

  .footer-nav {
    justify-content: center;
    justify-self: center;
  }

  .footer-link-strip a {
    min-height: 76px;
    padding: 16px 22px;
    line-height: 1.2;
    font-size: 1.28rem;
    letter-spacing: 0.06em;
  }

  .hero {
    min-height: 78svh;
  }

  .content-card,
  .feature-panel,
  .service-card,
  .link-panel {
    padding: 28px;
  }

  .home-story-card {
    padding: 92px 28px 40px;
  }

  .home-story-ribbon {
    left: 16px;
    right: 16px;
    top: -22px;
    min-height: 88px;
    padding: 20px 24px;
  }

  .home-story-ribbon h2 {
    white-space: normal;
    font-size: var(--type-title-md);
  }

  .home-story-ribbon-line {
    display: none;
  }

  .home-story-band {
    position: static;
    margin: 12px -16px 0;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px;
  }

  .home-story-body p {
    font-size: 1.12rem;
  }

  .home-story-band-media,
  .home-story-band-media img {
    min-height: 220px;
  }

  .services-preview-hero {
    padding: 46px 0 118px;
    margin-bottom: -84px;
  }

  .services-panel-stack {
    padding: 22px;
  }

  .services-overview .section-inner {
    width: min(calc(100% - 32px), 820px);
  }

  .services-overview .feature-panel-head {
    grid-template-columns: 64px 1fr;
    gap: 18px;
  }

  .services-overview .feature-panel-icon {
    width: 64px;
    height: 64px;
  }

  .services-overview .split-copy {
    padding: 26px 28px 24px;
  }

  .services-overview .split-copy .split-copy-heading {
    margin: -26px -28px 22px;
    padding: 20px 28px 12px;
  }

  .services-summary {
    margin-top: 42px;
    padding: 26px 24px 22px;
  }

  .footer-copy,
  .footer-nav-row {
    padding-left: 28px;
    padding-right: 28px;
  }

  .footer-copy {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    justify-items: center;
    text-align: center;
  }

  .footer-banner {
    width: 100%;
  }

  .footer-copy-head {
    justify-content: center;
    flex-direction: column;
    gap: 14px;
  }

  .footer-title {
    max-width: 100%;
  }

  .footer-rule--top {
    flex: 0 0 auto;
    width: min(220px, 60vw);
  }

  .footer-rule--bottom {
    grid-column: 1;
    width: min(220px, 60vw);
    margin: 22px 0 0;
    justify-self: center;
  }

  .footer-brand {
    place-items: center;
  }

  .patient-resources-overview .section-inner,
  .patient-privacy-section .section-inner {
    width: min(calc(100% - 32px), 820px);
  }

  .patient-billing-copy {
    max-width: 100%;
  }

  .patient-pathology-stage {
    max-width: none;
  }

  .patient-billing-copy {
    padding: 18px 0 20px;
  }

  .patient-billing-copy h2 {
    font-size: 2.25rem;
  }

  .patient-billing-copy p,
  .patient-pathology-card p,
  .patient-privacy-card p {
    font-size: var(--type-copy-sm);
  }

  .patient-pathology-stage {
    display: grid;
    place-items: center;
    padding: 36px 0;
    background: var(--parallax-bg);
    background-position: center 44%;
    background-size: cover;
  }

  .patient-pathology-card {
    width: min(calc(100% - 32px), 860px);
    margin: 0 auto;
    padding: 28px 24px 30px;
  }

  .patient-pathology-card h2 {
    font-size: 1.9rem;
  }

  .patient-contact-panel h2 {
    font-size: 1.95rem;
  }

  .patient-contact-panel p {
    font-size: var(--type-copy-sm);
  }

  .patient-privacy-card {
    padding: 42px 30px 40px;
  }

  .patient-privacy-card h2 {
    font-size: 2rem;
  }
}

@media (max-width: 800px) {
  .services-overview .section-inner {
    width: min(calc(100% - 32px), 760px);
  }

  .services-panel-stack {
    padding: 22px;
  }

  .services-overview .feature-panel {
    padding: 24px 22px;
  }

  .services-overview .feature-panel-copy h2 {
    font-size: clamp(1.22rem, 1.08rem + 0.72vw, 1.44rem);
  }

  .services-overview .split-copy {
    padding: 24px 24px 22px;
  }

  .services-overview .split-copy .split-copy-heading {
    margin: -24px -24px 20px;
    padding: 16px 24px 14px;
  }

  .services-summary {
    padding: 24px 22px 20px;
  }
}

@media (min-width: 921px) {
  :root {
    --hero-header-offset: 132px;
  }

  .services-preview-home .service-card h3 {
    font-size: clamp(1.46rem, 1.28rem + 0.46vw, 1.74rem);
  }

  .feature-panel p {
    font-size: var(--type-copy-md);
  }

  .content-card p,
  .service-card p,
  .link-panel p {
    font-size: var(--type-copy-md);
  }

  .split-copy p,
  .notice-panel p {
    font-size: var(--type-copy-sm);
  }

  .list-checks li {
    font-size: var(--type-copy-md);
  }
}

@media (max-width: 720px) {
  :root {
    --header-h: 78px;
    --type-copy-sm: 1.08rem;
    --type-copy-md: 1.14rem;
    --type-copy-lg: 1.16rem;
    --type-title-sm: clamp(1.24rem, 1.1rem + 0.74vw, 1.5rem);
    --type-title-md: clamp(1.48rem, 1.26rem + 1.12vw, 1.86rem);
    --type-title-lg: clamp(1.72rem, 1.38rem + 1.8vw, 2.28rem);
    --type-hero-title: clamp(1.98rem, 1.58rem + 2.2vw, 2.58rem);
  }

  .brand-text {
    display: none;
  }

  .menu-label {
    display: none;
  }

  .header-inner {
    padding-top: 4px;
    padding-bottom: 4px;
  }

  .brand-logo {
    width: 52px;
    height: 52px;
  }

  .menu-button {
    min-height: 52px;
    padding-top: 14px;
    padding-bottom: 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-left-color: rgba(255, 255, 255, 0.22);
    border-radius: 10px;
  }

  .section {
    padding: 90px 0 68px 0;
  }

  .hero--utility {
    min-height: 50svh;
  }

  .page-band {
    height: 44px;
  }

  .patient-contact {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .patient-privacy-section {
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .services-intro {
    padding-top: 28px;
    padding-bottom: 8px;
  }

  .home-about-intro {
    padding-top: 28px;
    padding-bottom: 8px;
  }

  .home-story-section {
    --frame-image-mobile:
      linear-gradient(rgba(128, 196, 238, 0.26), rgba(128, 196, 238, 0.26)),
      url("/images/home/whowearemobile.jpg");
  }

  .home-about-intro .section-heading {
    margin-bottom: 34px;
  }

  .services-intro .section-heading {
    margin-bottom: 34px;
  }

  .services-preview-home {
    padding-top: 56px;
  }

  .services-preview-hero {
    padding: 46px 0 118px;
    margin-bottom: -84px;
  }

  .services-panel-stack {
    padding: 0;
    background: transparent;
    box-shadow: none;
  }

  .services-overview .feature-panel {
    background: var(--accent);
    padding: 24px 22px;
  }

  .services-overview .feature-panel-head {
    grid-template-columns: 52px 1fr;
    gap: 14px;
    align-items: start;
  }

  .services-overview .feature-panel-copy h2 {
    font-size: 1.22rem;
  }

  .services-overview .feature-panel-copy p {
    font-size: 1.04rem;
    line-height: 1.62;
  }

  .services-overview .feature-panel-icon {
    width: 52px;
    height: 52px;
  }

  .services-overview .feature-panel-icon::before {
    width: 30px;
    height: 30px;
  }

  .services-overview .feature-panel-icon--microscope::before {
    width: 24px;
    height: 40px;
  }

  .services-overview .feature-panel-icon--hospital::before {
    width: 28px;
    height: 28px;
  }

  .services-overview .split-copy {
    width: 100%;
    padding: 22px 20px 20px;
  }

  .services-overview .split-copy .split-copy-heading {
    margin: -22px -20px 18px;
    padding: 15px 20px 13px;
  }

  .services-overview .section-inner {
    width: min(calc(100% - 32px), 720px);
  }

  .services-summary {
    width: 100%;
    margin-top: 34px;
    padding: 22px 18px 20px;
  }

  .services-summary h3 {
    font-size: 1.42rem;
  }

  .services-summary p {
    font-size: var(--type-copy-sm);
  }

  .services-list-intro {
    font-size: 1.02rem;
    line-height: 1.48;
  }

  .services-overview .list-checks li {
    font-size: 1.04rem;
  }

  .footer-link-strip {
    min-height: 196px;
    padding: 22px 28px;
    gap: 18px;
  }

  .footer-link-strip a {
    min-height: 68px;
    padding: 14px 18px;
    line-height: 1.2;
    font-size: 1.14rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .search-panel-inner {
    gap: 14px;
  }

  .search-panel-note {
    padding-left: 4px;
    font-size: 1.08rem;
    letter-spacing: 0.03em;
  }

  .search-card {
    padding: 20px;
    border-radius: 24px;
  }

  .search-card-top {
    gap: 12px;
    align-items: stretch;
  }

  .search-close-button {
    width: 56px;
    min-width: 56px;
    height: 56px;
    border-radius: 14px;
  }

  .back-to-top {
    width: 48px;
    height: 48px;
  }

  .hero p {
    font-size: 1.08rem;
    line-height: 1.6;
    letter-spacing: 0.05rem;
  }

  .hero h1 {
    font-size: clamp(1.68rem, 6.8vw, 2.2rem);
  }

  .hero .hero-title--nowrap {
    white-space: normal;
  }

  .patient-resources-overview .section-inner,
  .patient-privacy-section .section-inner {
    width: min(calc(100% - 32px), 720px);
  }

  .patient-resources-overview {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .patient-billing-copy {
    padding: 10px 0 20px;
  }

  .patient-billing-icon {
    width: 42px;
    height: 52px;
    margin-bottom: 22px;
  }

  .patient-billing-copy h2 {
    font-size: var(--type-title-md);
  }

  .patient-billing-copy .section-divider {
    margin: 20px 0 24px;
  }

  .patient-billing-copy p {
    font-size: var(--type-copy-sm);
    line-height: 1.68;
  }

  .patient-billing-link {
    margin-top: 24px;
    margin-bottom: 8px;
  }

  .patient-pathology-stage {
    display: grid;
    place-items: center;
    padding: 36px 0;
    background: var(--parallax-bg);
    background-position: center 44%;
    background-size: cover;
  }

  .patient-pathology-card {
    width: min(calc(100% - 32px), 620px);
    margin: 0 auto;
    padding: 24px 20px 26px;
  }

  .patient-pathology-card h2 {
    font-size: var(--type-title-md);
  }

  .patient-pathology-card .section-divider {
    margin: 18px 0 22px;
  }

  .patient-pathology-card p {
    font-size: var(--type-copy-sm);
    line-height: 1.7;
  }

  .patient-contact-panel {
    padding: 38px 20px;
  }

  .patient-contact-panel h2 {
    font-size: var(--type-title-md);
  }

  .patient-contact-panel .section-divider {
    margin: 14px auto 18px;
  }

  .patient-contact-panel p {
    font-size: var(--type-copy-sm);
    line-height: 1.66;
  }

  .patient-contact-panel .button-secondary {
    min-width: 0;
    width: min(100%, 250px);
    min-height: 62px;
    font-size: 1rem;
  }

  .patient-contact-panel .action-row {
    margin-top: 18px;
  }

  .patient-privacy-card {
    padding: 30px 22px 32px;
  }

  .patient-privacy-card h2 {
    font-size: var(--type-title-md);
  }

  .patient-privacy-card .section-divider {
    margin: 22px 0 26px;
  }

  .patient-privacy-card p {
    font-size: var(--type-copy-sm);
    line-height: 1.72;
  }

  .hero {
    min-height: 70svh;
  }

}

@media (max-width: 640px) {
  .services-overview .feature-panel-head {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .services-overview .feature-panel-icon {
    margin-bottom: 2px;
  }

  .services-overview .feature-panel-copy h2 {
    margin-bottom: 12px;
  }
}

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

  .hero::before,
  .hero-content,
  .site-nav,
  .site-header {
    animation: none;
    transition: none;
  }
}
  .home-story-band {
    margin: 12px -28px 0;
  }
  .patient-resources-overview {
    padding-top: 40px;
    padding-bottom: 38px;
  }
