:root {
  --ink: #162321;
  --muted: #60706d;
  --teal: #0f8f89;
  --teal-dark: #052f31;
  --lime: #cbd600;
  --surface: #ffffff;
  --wash: #f6fbf8;
  --line: #dcebe4;
  --shadow: 0 24px 70px rgba(15, 143, 137, 0.12);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--wash);
  color: var(--ink);
  font-family: Geologica, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--lime);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 800;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 35px rgba(5, 47, 49, 0.08);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: auto;
  height: 73px;
}

.primary-nav {
  display: flex;
  align-items: center;
  color: #31413f;
  font-size: 0.95rem;
  font-weight: 750;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list > li {
  position: relative;
}

.nav-list > li > a,
.nav-parent-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-parent-link {
  padding-right: 2px;
}

.nav-chevron {
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  margin-top: 1px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.72;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-item-dropdown:hover .nav-chevron,
.nav-item-dropdown:focus-within .nav-chevron,
.nav-item-dropdown.is-open .nav-chevron {
  transform: rotate(-135deg);
  margin-top: 0;
  opacity: 1;
}

.nav-list > li > a::after,
.nav-parent-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--teal);
  transition: transform 0.2s ease;
}

.nav-list > li > a:hover::after,
.nav-list > li > a:focus-visible::after,
.nav-parent-link:hover::after,
.nav-parent-link:focus-visible::after {
  transform: scaleX(1);
}

.nav-item-dropdown-head {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.nav-submenu-toggle {
  display: none;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: rgba(15, 143, 137, 0.1);
  padding: 0;
  cursor: pointer;
}

.nav-submenu-toggle span {
  display: block;
  width: 8px;
  height: 8px;
  margin: 0 auto;
  border-right: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  transform: rotate(45deg) translate(-1px, -1px);
  transition: transform 0.2s ease;
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 30;
  width: min(22rem, 88vw);
  margin: 0;
  padding: 10px;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(15, 143, 137, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
}

.nav-submenu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  width: 14px;
  height: 14px;
  background: #fff;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  transform: translateX(-50%) rotate(45deg);
}

.nav-submenu a {
  display: block;
  border-radius: 12px;
  padding: 10px 12px;
  color: #31413f;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.35;
}

.nav-submenu a:hover,
.nav-submenu a:focus-visible {
  background: var(--wash);
  color: var(--teal-dark);
}

.nav-submenu a[aria-current="page"] {
  background: rgba(15, 143, 137, 0.1);
  color: var(--teal-dark);
}

.nav-item-dropdown.is-open .nav-submenu,
.nav-item-dropdown:hover .nav-submenu,
.nav-item-dropdown:focus-within .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-item-dropdown.is-active .nav-parent-link {
  color: var(--teal-dark);
}

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

.social-links {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.social-link {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(15, 143, 137, 0.18);
  border-radius: 50%;
  background: rgba(15, 143, 137, 0.06);
  color: var(--teal-dark);
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.social-link:hover,
.social-link:focus-visible {
  border-color: rgba(15, 143, 137, 0.38);
  background: rgba(15, 143, 137, 0.12);
  color: var(--teal);
  transform: translateY(-1px);
}

.primary-nav-social {
  display: none;
}

.social-links--footer {
  margin-top: 16px;
}

.social-links--footer .social-link {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
}

.social-links--footer .social-link:hover,
.social-links--footer .social-link:focus-visible {
  border-color: rgba(198, 214, 0, 0.45);
  background: rgba(255, 255, 255, 0.1);
  color: var(--lime);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  padding: 0 20px;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(203, 214, 0, 0.24);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(15, 143, 137, 0.1);
  padding: 0;
  cursor: pointer;
}

.nav-toggle-icon {
  display: block;
}

.nav-toggle-icon--close {
  display: none;
}

body.nav-open .nav-toggle-icon--open {
  display: none;
}

body.nav-open .nav-toggle-icon--close {
  display: block;
}

.hero {
  overflow: hidden;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 82px 0 34px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(135deg, #052f31 0%, #073d3f 46%, #0f6f6d 100%);
  background-size: 44px 44px, 44px 44px, auto;
  color: #fff;
}

.hero,
.section,
.contact-section {
  scroll-margin-top: 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.96fr);
  align-items: center;
  gap: 42px;
}

.eyebrow,
.section-kicker {
  margin: 0;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.82);
  padding: 9px 14px;
  letter-spacing: 0;
  text-transform: none;
}

.icon-badge {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-weight: 950;
}

p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  overflow-wrap: normal;
  hyphens: none;
  word-break: normal;
}

h1 {
  max-width: 820px;
  margin: 20px 0 0;
  font-size: clamp(2.1rem, 4.3vw, 3.85rem);
  line-height: 1.03;
  letter-spacing: -0.035em;
}

.hero-text {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.98rem;
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  cursor: pointer;
  font-weight: 950;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 20px 40px rgba(203, 214, 0, 0.22);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.hero-panel {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.1);
  padding: 14px 14px 78px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.hero-panel--facility {
  padding: 12px 12px 78px;
}

.facility-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.12);
}

.facility-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.facility-photo--hero {
  aspect-ratio: 1024 / 677;
  min-height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.facility-photo--profile {
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  aspect-ratio: 1024 / 677;
}

.facility-photo--page-hero {
  aspect-ratio: 1024 / 677;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
}

.facility-photo--aside {
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  aspect-ratio: 1024 / 677;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(260px, 0.98fr);
  gap: clamp(20px, 3vw, 36px);
  align-items: center;
}

.page-hero-grid .page-hero-copy {
  min-width: 0;
}

.laboratory-intro-media {
  display: grid;
  gap: 14px;
  align-content: start;
}

.lab-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(203, 214, 0, 0.18), rgba(255, 255, 255, 0.9) 42%, rgba(15, 143, 137, 0.12));
  padding: 18px;
  min-height: 292px;
}

.lab-card-grid article {
  display: flex;
  min-height: 116px;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  padding: 18px;
  box-shadow: 0 18px 45px rgba(5, 47, 49, 0.12);
}

.lab-card-grid article:nth-child(2) {
  margin-top: 28px;
}

.lab-card-grid .accent {
  background: var(--teal);
  color: #fff;
}

.lab-card-grid .lime {
  background: var(--lime);
}

.card-icon {
  color: var(--teal);
  font-size: 2rem;
  line-height: 1;
}

.accent .card-icon {
  color: var(--lime);
}

.lime .card-icon {
  color: var(--ink);
}

.lab-card-grid p {
  margin: auto 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 850;
}

.accent p {
  color: rgba(255, 255, 255, 0.7);
}

.lab-card-grid strong {
  display: block;
  margin-top: 4px;
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.stats {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: -38px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  border-radius: 22px;
  background: #fff;
  padding: 14px;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.stats div {
  border-radius: 14px;
  background: var(--wash);
  padding: 14px 8px;
  text-align: center;
}

.stats strong {
  display: block;
  color: var(--teal);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.1;
}

.stats span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.25;
}

.section {
  padding: 44px 0;
}

.services-section {
  padding-top: 52px;
}

.service-layout,
.profile-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.intro-block,
.list-panel,
.contact-form {
  border: 1px solid rgba(220, 235, 228, 0.78);
  border-radius: 28px;
  background: var(--surface);
  padding: clamp(24px, 3.4vw, 34px);
  box-shadow: var(--shadow);
}

h2 {
  margin: 12px 0 0;
  font-size: clamp(1.85rem, 3.3vw, 2.65rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.intro-block h2 {
  font-size: clamp(1.85rem, 3vw, 2.45rem);
}

.intro-block p:not(.section-kicker),
.profile-grid p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.check-list {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.check-list li {
  border-radius: 14px;
  background: var(--wash);
  padding: 11px 16px 11px 44px;
  font-weight: 850;
  position: relative;
}

.check-list li::before,
.profile-points article::before {
  content: "✓";
  position: absolute;
  left: 16px;
  color: var(--teal);
  font-weight: 950;
}

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

.service-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  padding: 20px;
  box-shadow: 0 18px 50px rgba(15, 143, 137, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-card > span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(15, 143, 137, 0.1);
  color: var(--teal);
  font-size: 1.45rem;
  line-height: 1;
}

.service-card h3,
.list-panel h3 {
  margin: 16px 0 0;
  font-size: clamp(1.25rem, 2.1vw, 1.58rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.steps h3 {
  margin: 16px 0 0;
  font-size: clamp(1rem, 1.05vw, 1.2rem);
  line-height: 1.3;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.service-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.58;
}

.service-card a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--teal);
  font-weight: 950;
}

.process-band {
  overflow: hidden;
  border-radius: 30px;
  background: var(--teal);
  color: #fff;
  box-shadow: 0 28px 70px rgba(15, 143, 137, 0.2);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
}

.process-intro {
  background: #082f31;
  padding: clamp(26px, 4vw, 42px);
}

.section-kicker.light {
  color: var(--lime);
}

.process-intro p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.72);
  margin: 18px 0 0;
  line-height: 1.8;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(11.5rem, 1fr));
  gap: 10px;
  padding: 16px;
}

.steps article {
  min-height: 190px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
  padding: 24px 20px;
  border: 1px solid transparent;
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

@media (hover: hover) and (pointer: fine) {
  .steps article:hover {
    transform: translateY(-7px);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 22px 48px rgba(2, 40, 42, 0.24);
  }

  .steps article:hover span {
    color: var(--lime);
  }
}

.steps span {
  display: inline-flex;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.85rem;
  font-weight: 950;
  transition: color 0.28s ease;
}

.steps article:has(p) h3 {
  margin-top: 40px;
}

.steps article:not(:has(p)) h3 {
  margin-top: 52px;
}

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

.section-heading h2 {
  font-size: clamp(1.85rem, 3vw, 2.45rem);
}

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

.list-panel ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 22px;
  padding: 0;
  margin: 14px 0 0;
  list-style: none;
}

.list-panel li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding: 6px 0;
  font-size: 0.9rem;
  font-weight: 850;
}

.list-panel li::after {
  content: "→";
  color: var(--teal);
}

.profile-section {
  background: #e8f6ef;
}

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

.profile-points article {
  position: relative;
  min-height: 112px;
  border-radius: 22px;
  background: #fff;
  padding: 58px 22px 20px;
  box-shadow: 0 18px 45px rgba(15, 143, 137, 0.08);
  font-size: 1.05rem;
  font-weight: 950;
  letter-spacing: -0.025em;
}

.profile-points article::before {
  top: 20px;
  font-size: 1.35rem;
}

.contact-section {
  padding: 46px 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--teal-dark);
  background-size: 42px 42px, 42px 42px, auto;
  color: #fff;
}

.contact-copy h2 {
  color: #fff;
}

address {
  display: grid;
  gap: 12px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-style: normal;
}

.contact-address a {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: start;
  column-gap: 12px;
  row-gap: 2px;
}

.contact-address a::before {
  content: "•";
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  grid-column: 1;
  grid-row: 1 / -1;
  align-self: start;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-weight: 950;
}

.contact-address-label {
  grid-column: 2;
  grid-row: 1;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-address-line {
  grid-column: 2;
  grid-row: 2;
  color: #fff;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.45;
  overflow-wrap: normal;
  word-break: normal;
}

.contact-copy {
  min-width: 0;
}

.contact-hours {
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  line-height: 1.6;
}

.contact-hours strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-intro {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.7;
}

.contact-home-link {
  margin: 18px 0 0;
}

.contact-home-link a,
.lab-home-link a {
  color: var(--teal);
  font-weight: 900;
}

.lab-home-link,
.analyses-home-link {
  margin-top: 18px;
}

.analyses-home-link a {
  color: var(--teal);
  font-weight: 900;
}

.section-heading .analyses-home-link {
  margin-top: 14px;
}

.contact-page-section {
  padding: 52px 0 58px;
}

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

.contact-highlights article {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  padding: 26px 22px;
  box-shadow: var(--shadow);
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

@media (hover: hover) and (pointer: fine) {
  .contact-highlights article:hover {
    transform: translateY(-5px);
    border-color: rgba(15, 143, 137, 0.28);
    box-shadow: 0 22px 48px rgba(15, 143, 137, 0.12);
  }
}

.contact-highlight-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(15, 143, 137, 0.1);
  color: var(--teal);
  font-size: 1.35rem;
}

.contact-highlights h3 {
  margin: 16px 0 0;
  font-size: 1.08rem;
  line-height: 1.25;
}

.contact-highlights p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.58;
}

.contact-highlights-section {
  padding-bottom: 64px;
}

.instagram-section {
  padding-top: 56px;
  padding-bottom: 56px;
  background:
    linear-gradient(180deg, rgba(15, 143, 137, 0.04) 0%, rgba(255, 255, 255, 0) 100%),
    var(--wash);
}

.instagram-section-heading {
  margin-bottom: 28px;
}

.instagram-section-heading p:not(.section-kicker):not(.instagram-profile-link) {
  max-width: 58ch;
  color: var(--muted);
  line-height: 1.7;
}

.instagram-profile-link {
  margin: 14px 0 0;
}

.instagram-profile-link a {
  color: var(--teal);
  font-weight: 900;
}

.instagram-reels-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 24px);
  margin-top: 8px;
  align-items: start;
}

.instagram-reel-card {
  min-width: 0;
}

.instagram-carousel {
  margin-top: 8px;
}

.instagram-carousel-shell {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
}

.instagram-carousel-viewport {
  overflow: hidden;
  border-radius: 24px;
  outline: 0;
}

.instagram-carousel-viewport:focus-visible {
  box-shadow: 0 0 0 4px rgba(15, 143, 137, 0.18);
}

.instagram-carousel-track {
  display: flex;
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.instagram-carousel-track .instagram-reel-card {
  flex: 0 0 50%;
  min-width: 50%;
  padding: 0 8px;
  box-sizing: border-box;
}

.instagram-embed-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
}

.instagram-embed {
  display: block;
  width: 100%;
  min-height: min(560px, 72vh);
  border: 0;
  background: #fff;
}

.instagram-reel-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--teal);
  font-size: 0.88rem;
  font-weight: 850;
}

.instagram-reel-link:hover,
.instagram-reel-link:focus-visible {
  color: var(--teal-dark);
}

.instagram-carousel-btn {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(15, 143, 137, 0.2);
  border-radius: 50%;
  background: #fff;
  color: var(--teal-dark);
  box-shadow: 0 10px 24px rgba(5, 47, 49, 0.08);
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.instagram-carousel-btn:hover,
.instagram-carousel-btn:focus-visible {
  border-color: rgba(15, 143, 137, 0.42);
  background: var(--wash);
  transform: translateY(-1px);
}

.instagram-carousel-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
}

.instagram-carousel-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 16px;
}

.instagram-carousel-dots {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.instagram-carousel-dots button {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 50%;
  background: rgba(15, 143, 137, 0.22);
  padding: 0;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.instagram-carousel-dots button.is-active {
  background: var(--teal);
  transform: scale(1.15);
}

.instagram-carousel-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.contact-map-section {
  padding: 0 0 52px;
}

.contact-map-panel {
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
  padding: 18px;
  box-shadow: var(--shadow);
}

.contact-map-frame {
  overflow: hidden;
  border-radius: 18px;
  background: var(--wash);
  aspect-ratio: 16 / 9;
}

.contact-map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
}

.contact-map-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 16px;
  margin: 14px 4px 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-map-meta a {
  color: var(--teal);
  font-weight: 850;
}

.contact-map-meta a:hover,
.contact-map-meta a:focus-visible {
  color: var(--ink);
}

.page-contact .page-hero {
  padding-bottom: 42px;
}

.page-legal .page-hero {
  padding-bottom: 36px;
}

.legal-content-section {
  padding-top: 44px;
  padding-bottom: 64px;
}

.legal-document {
  max-width: 72ch;
}

.legal-updated {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 750;
}

.legal-section + .legal-section {
  margin-top: 28px;
}

.legal-section h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  line-height: 1.35;
  color: var(--ink);
}

.legal-section p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.72;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section ul {
  margin: 0;
  padding-left: 1.2em;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.legal-section li + li {
  margin-top: 6px;
}

.legal-contact-box {
  margin-top: 36px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--wash);
}

.legal-contact-box h3 {
  margin: 0 0 8px;
  font-size: 0.95rem;
}

.legal-contact-box p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.legal-contact-box a {
  color: var(--teal);
  font-weight: 850;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 12px;
  color: var(--ink);
}

.contact-form label {
  display: grid;
  gap: 7px;
}

.contact-form span {
  color: #31413f;
  font-size: 0.84rem;
  font-weight: 850;
}

.wide {
  grid-column: 1 / -1;
}

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

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--wash);
  color: var(--ink);
  padding: 11px 14px;
  outline: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(15, 143, 137, 0.12);
}

textarea {
  resize: vertical;
  max-height: 120px;
}

.form-note {
  min-height: 1.4em;
  margin: 0;
  color: var(--teal);
  font-size: 0.9rem;
  font-weight: 800;
}

.form-note.is-error {
  color: #b42318;
}

.site-footer {
  background: #031f21;
  color: rgba(255, 255, 255, 0.74);
  padding: 0;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.95fr) minmax(0, 0.85fr) minmax(0, 1.2fr);
  gap: 28px 24px;
  padding: 40px 0 32px;
  align-items: start;
}

.footer-brand img {
  width: auto;
  height: 92px;
  filter: brightness(0) invert(1);
  opacity: 0.94;
}

.footer-brand p {
  margin: 14px 0 0;
  max-width: 34ch;
  font-size: 0.86rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.62);
}

.footer-title {
  margin: 0 0 12px;
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-contact address {
  display: grid;
  gap: 10px;
  font-style: normal;
}

.footer-contact address a::before {
  content: none;
  display: none;
}

.footer-contact-link {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 100%;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1.45;
  text-align: left;
}

.footer-contact-icon {
  display: grid;
  flex: 0 0 22px;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  color: var(--lime);
}

.footer-contact-text {
  flex: 1 1 auto;
  min-width: 0;
}

.footer-contact-link:hover,
.footer-contact-link:focus-visible {
  color: var(--lime);
}

.footer-contact-link:hover .footer-contact-icon,
.footer-contact-link:focus-visible .footer-contact-icon {
  color: #fff;
}

.footer-map-link {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1.45;
}

.footer-map-link:hover,
.footer-map-link:focus-visible {
  color: var(--lime);
}

.footer-hours-list,
.hours-list {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-hours-list li,
.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.86rem;
  line-height: 1.35;
}

.footer-hours-list li span:first-child,
.hours-list li span:first-child {
  color: rgba(255, 255, 255, 0.58);
  font-weight: 800;
}

.footer-hours-list li span:last-child,
.hours-list li span:last-child {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 850;
  text-align: right;
}

.footer-hours-list li.is-closed span:last-child,
.hours-list li.is-closed span:last-child {
  color: rgba(255, 255, 255, 0.48);
}

.contact-hours .hours-list {
  margin-top: 10px;
}

.footer-map-frame {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  aspect-ratio: 4 / 3;
}

.footer-map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 160px;
  border: 0;
}

.footer-map-link {
  display: inline-flex;
  margin-top: 10px;
  font-size: 0.8rem;
  font-weight: 850;
}

.footer-legal-bar {
  padding: 4px 0 14px;
}

.footer-legal-bar .footer-legal {
  justify-content: flex-start;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 0 22px;
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 20px;
}

.footer-bottom-start {
  display: block;
}

.footer-copyright {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: left;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  font-size: 0.72rem;
  font-weight: 700;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.42);
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: var(--lime);
}

.footer-legal span {
  color: rgba(255, 255, 255, 0.22);
  user-select: none;
}

.footer-powered {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  opacity: 0.82;
  transition: opacity 0.2s ease;
}

.footer-powered:hover,
.footer-powered:focus-visible {
  opacity: 1;
}

.footer-powered-label {
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
}

.footer-powered img {
  display: block;
  width: auto;
  height: 28px;
  max-width: min(150px, 40vw);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.58s ease, transform 0.58s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top {
  position: fixed;
  right: clamp(16px, 2.5vw, 30px);
  bottom: clamp(16px, 2.5vw, 30px);
  z-index: 45;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 29px;
  border: 1px solid rgba(15, 143, 137, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--teal-dark);
  padding: 6px 10px 6px 7px;
  box-shadow: 0 12px 30px rgba(5, 47, 49, 0.14);
  backdrop-filter: blur(10px);
  cursor: pointer;
  font-size: 0.5rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 0.24s ease, transform 0.24s ease, border-color 0.2s ease, background 0.2s ease;
}

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

.back-to-top:hover,
.back-to-top:focus-visible {
  border-color: rgba(15, 143, 137, 0.42);
  background: #fff;
}

.back-to-top-arrow {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-size: 0.7rem;
  line-height: 1;
  animation: backToTopFloat 1.8s ease-in-out infinite;
}

@keyframes backToTopFloat {
  0%,
  100% {
    transform: translateY(2px);
  }

  50% {
    transform: translateY(-3px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .steps article:hover {
    transform: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .back-to-top-arrow {
    animation: none;
  }

}

@media (max-width: 980px) {
  .header-inner {
    gap: 12px;
  }

  .header-actions {
    display: none;
  }

  .primary-nav-social {
    display: block;
    margin-top: 8px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
  }

  .social-links--nav-mobile {
    justify-content: center;
    gap: 12px;
    width: 100%;
  }

  .social-link {
    width: 36px;
    height: 36px;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
    flex-shrink: 0;
    margin-left: auto;
    color: var(--teal-dark);
  }

  .nav-item-dropdown {
    position: relative;
    width: 100%;
  }

  .primary-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 92px;
    display: block;
    max-height: calc(100svh - 110px);
    overflow: auto;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #fff;
    padding: 10px;
    box-shadow: var(--shadow);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

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

  .nav-list {
    display: grid;
    gap: 0;
    width: 100%;
  }

  .nav-list > li > a,
  .nav-parent-link {
    display: block;
    padding: 14px 12px;
    border-radius: 14px;
  }

  .nav-list > li > a:hover,
  .nav-parent-link:hover,
  .nav-submenu a:hover {
    background: var(--wash);
  }

  .nav-list > li > a::after,
  .nav-parent-link::after {
    display: none;
  }

  .nav-item-dropdown-head {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: stretch;
    gap: 4px;
  }

  .nav-parent-link .nav-chevron {
    display: none;
  }

  .nav-submenu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    min-height: 44px;
    margin-right: 4px;
    align-self: center;
  }

  .nav-submenu-toggle span {
    width: 9px;
    height: 9px;
    opacity: 0.9;
  }

  .nav-item-dropdown.is-open .nav-submenu-toggle span {
    transform: rotate(-135deg) translate(1px, 1px);
  }

  .nav-item-dropdown .nav-submenu {
    position: static;
    top: auto;
    left: auto;
    width: 100%;
    max-width: none;
    margin: 0 0 4px;
    padding: 4px 0 8px 8px;
    border: 0;
    border-left: 2px solid rgba(15, 143, 137, 0.16);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    pointer-events: none;
  }

  .nav-submenu::before {
    display: none;
  }

  .nav-item-dropdown.is-open .nav-submenu {
    display: grid;
    gap: 0;
    pointer-events: auto;
  }

  .nav-item-dropdown:hover .nav-submenu,
  .nav-item-dropdown:focus-within .nav-submenu {
    display: none;
    transform: none;
  }

  .nav-item-dropdown.is-open:hover .nav-submenu,
  .nav-item-dropdown.is-open:focus-within .nav-submenu,
  .nav-item-dropdown.is-open .nav-submenu {
    display: grid;
    transform: none;
    pointer-events: auto;
  }

  .nav-submenu a {
    padding: 6px 12px 6px 10px;
    font-size: 0.86rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
  }

  .hero-grid,
  .service-layout,
  .process-band,
  .profile-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 98px;
  }

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

  .steps article {
    min-height: auto;
  }

  .steps article:has(p) h3,
  .steps article:not(:has(p)) h3 {
    margin-top: 34px;
  }
}

@media (min-width: 981px) and (max-width: 1280px) {
  .steps h3 {
    font-size: 1.02rem;
  }

  .steps article {
    padding: 22px 16px;
  }
}

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

  .brand {
    width: auto;
  }

  .brand img {
    height: 65px;
  }

  .header-inner {
    min-height: 74px;
  }

  h1 {
    letter-spacing: -0.04em;
  }

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

  .hero-panel,
  .hero-panel--facility {
    padding: 12px 12px 72px;
  }

  .facility-photo--hero {
    min-height: 200px;
  }

  .lab-card-grid,
  .service-cards,
  .profile-points,
  .contact-form,
  .contact-highlights {
    grid-template-columns: 1fr;
  }

  .youtube-shorts-scroller {
    --youtube-slide-width: min(300px, calc(100vw - 68px));
    margin-inline: -12px;
    padding-inline: 12px 20px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 12px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .youtube-shorts-scroller::-webkit-scrollbar {
    display: none;
  }

  .youtube-shorts-grid {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 12px;
    width: max-content;
    min-width: 100%;
  }

  .youtube-short-card {
    flex: 0 0 var(--youtube-slide-width);
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .youtube-embed-frame {
    max-height: 80vh;
    max-width: none;
    margin-inline: 0;
  }

  .list-layout,
  .list-panel ul {
    grid-template-columns: 1fr;
  }

  .lab-card-grid {
    min-height: auto;
    gap: 12px;
    padding: 14px;
  }

  .lab-card-grid article {
    min-height: 122px;
  }

  .lab-card-grid article:nth-child(2) {
    margin-top: 0;
  }

  .stats {
    position: static;
    grid-template-columns: 1fr;
    margin-top: 12px;
  }

  .section,
  .contact-section {
    padding: 48px 0;
  }

  .services-section {
    padding-top: 48px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 24px 20px;
    padding: 32px 0 28px;
  }

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

  .footer-map {
    grid-column: 1 / -1;
  }

  .back-to-top {
    right: 12px;
    bottom: 12px;
    padding-right: 8px;
    font-size: 0.45rem;
  }

  .footer-top,
  .footer-legal-bar,
  .footer-bottom {
    text-align: center;
  }

  .footer-block {
    justify-self: center;
    width: 100%;
    margin-inline: auto;
  }

  .footer-contact,
  .footer-hours {
    max-width: 360px;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-brand p {
    max-width: 32ch;
    margin-inline: auto;
  }

  .social-links--footer {
    justify-content: center;
  }

  .footer-title {
    text-align: center;
  }

  .footer-contact address {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .footer-contact-link {
    width: auto;
    max-width: 100%;
    margin-inline: auto;
  }

  .footer-map-link {
    justify-content: center;
    margin-inline: auto;
  }

  .footer-hours-list li {
    justify-content: center;
    gap: 14px;
  }

  .footer-hours-list li span:last-child {
    text-align: left;
  }

  .footer-legal-bar .footer-legal {
    justify-content: center;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .footer-bottom-start {
    width: 100%;
  }

  .footer-copyright {
    text-align: center;
  }

  .footer-powered {
    align-self: center;
    justify-content: center;
    margin-inline: auto;
  }

  .footer-powered img {
    height: 26px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 28px 0 24px;
  }

  .footer-brand,
  .footer-map {
    grid-column: auto;
  }

  .footer-map-frame {
    aspect-ratio: 16 / 10;
  }
}

.page-main {
  padding-top: 70px;
}

.page-hero {
  padding: 48px 0 36px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(135deg, #052f31 0%, #073d3f 46%, #0f6f6d 100%);
  background-size: 44px 44px, 44px 44px, auto;
  color: #fff;
}

.page-hero-inner {
  max-width: none;
  text-align: left;
}

.page-hero h1 {
  margin-top: 14px;
  max-width: none;
}

.page-hero .hero-text {
  max-width: 62ch;
}

.hero-copy {
  justify-self: start;
  width: 100%;
  text-align: left;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
  font-weight: 750;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.88);
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  color: var(--lime);
}

.content-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: start;
}

.scope-list,
.linked-list-panel ul {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 14px 0 0;
  list-style: none;
}

.scope-list li,
.linked-list-panel li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding: 8px 0;
  font-size: 0.92rem;
  font-weight: 800;
}

.scope-list li::after {
  content: "✓";
  color: var(--teal);
  font-weight: 950;
}

.linked-list-panel li::after {
  content: "→";
  color: var(--teal);
}

.linked-list-panel a {
  flex: 1;
}

.list-panel h3 + h3 {
  margin-top: 28px;
}

.audience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 12px 0 0;
  list-style: none;
}

.audience-tags li {
  border-radius: 999px;
  background: var(--wash);
  padding: 8px 12px;
  font-size: 0.82rem;
  font-weight: 850;
}

.steps article p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  line-height: 1.55;
  overflow-wrap: normal;
  word-break: normal;
}

.steps h3 a {
  color: inherit;
}

.section-heading p {
  max-width: 640px;
  margin: 14px auto 0;
  color: var(--muted);
  line-height: 1.62;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  padding: 0 18px;
  box-shadow: 0 12px 34px rgba(15, 143, 137, 0.06);
}

.faq-item summary {
  cursor: pointer;
  padding: 18px 28px 18px 0;
  font-weight: 900;
  line-height: 1.35;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  float: right;
  margin-right: -28px;
  color: var(--teal);
  font-size: 1.25rem;
  font-weight: 950;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.65;
}

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

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-radius: 28px;
  background: var(--teal);
  color: #fff;
  padding: clamp(24px, 4vw, 36px);
  box-shadow: 0 28px 70px rgba(15, 143, 137, 0.2);
}

.cta-band-inner p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.cta-band .section-kicker {
  color: var(--lime);
}

.cta-band h2 {
  color: #fff;
}

@media (max-width: 980px) {
  .content-grid,
  .related-cards,
  .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .facility-photo--page-hero {
    max-width: 560px;
    margin-inline: auto;
  }

  .cta-band-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-band .btn {
    width: 100%;
  }
}

.page-laboratory .page-hero {
  padding-bottom: 42px;
}

.lab-stats-panel {
  display: grid;
  gap: 14px;
}

.lab-stats-panel article {
  border-radius: 22px;
  background: linear-gradient(135deg, #0f8f89, #0a6f6b);
  color: #fff;
  padding: 24px 22px;
  box-shadow: 0 22px 48px rgba(15, 143, 137, 0.2);
}

.lab-stats-panel strong {
  display: block;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.lab-stats-panel span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.88rem;
  font-weight: 800;
}

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

.lab-pillars article {
  border-radius: 24px;
  background: #fff;
  padding: 26px 22px;
  box-shadow: 0 18px 45px rgba(15, 143, 137, 0.08);
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s ease;
}

@media (hover: hover) and (pointer: fine) {
  .lab-pillars article:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 52px rgba(15, 143, 137, 0.14);
  }
}

.lab-pillar-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(15, 143, 137, 0.1);
  color: var(--teal);
  font-size: 1.35rem;
}

.lab-pillars h3 {
  margin: 16px 0 0;
  font-size: 1.1rem;
  line-height: 1.25;
}

.lab-pillars p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.58;
}

.laboratory-pillars-section {
  padding-bottom: 52px;
}

.lab-approach-steps {
  grid-template-columns: repeat(3, minmax(11.5rem, 1fr));
}

.laboratory-cta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
  padding: clamp(24px, 3.4vw, 34px);
  box-shadow: var(--shadow);
}

.laboratory-cta .hero-actions {
  flex-shrink: 0;
}

.laboratory-cta .btn-secondary {
  border-color: var(--line);
  background: var(--wash);
  color: var(--ink);
}

.page-analyses .page-hero {
  padding-bottom: 42px;
}

.analyses-archive-section {
  padding-bottom: 48px;
}

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

.analysis-archive-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow);
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.analysis-archive-card a {
  display: grid;
  gap: 10px;
  min-height: 100%;
  padding: 24px 22px;
  color: inherit;
}

@media (hover: hover) and (pointer: fine) {
  .analysis-archive-card:hover {
    transform: translateY(-5px);
    border-color: rgba(15, 143, 137, 0.28);
    box-shadow: 0 24px 52px rgba(15, 143, 137, 0.12);
  }

  .analysis-archive-card:hover .analysis-archive-link {
    color: var(--teal);
  }
}

.analysis-archive-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(15, 143, 137, 0.1);
  color: var(--teal);
  font-size: 1.35rem;
}

.analysis-archive-card h3 {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.25;
}

.analysis-archive-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.58;
}

.analysis-archive-link {
  margin-top: auto;
  padding-top: 4px;
  color: var(--teal);
  font-weight: 950;
  font-size: 0.9rem;
}

.analyses-archive-cta {
  padding-bottom: 64px;
}

.laboratory-cta-section {
  padding-bottom: 64px;
}

.blog-section {
  background: var(--surface);
}

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

.blog-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--surface);
  box-shadow: 0 18px 50px rgba(15, 143, 137, 0.08);
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.blog-card a {
  display: grid;
  min-height: 100%;
  color: inherit;
}

.blog-card-media {
  position: relative;
  overflow: hidden;
  margin: 0;
  aspect-ratio: 16 / 10;
  background: var(--wash);
}

.blog-card-media img,
.blog-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-body {
  display: grid;
  gap: 10px;
  padding: 20px;
}

.blog-meta,
.blog-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 900;
}

.blog-card h3 {
  margin: 0;
  font-size: clamp(1.12rem, 1.6vw, 1.35rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.blog-card p:not(.blog-meta) {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.blog-card-link {
  margin-top: auto;
  color: var(--teal);
  font-size: 0.9rem;
  font-weight: 950;
}

@media (hover: hover) and (pointer: fine) {
  .blog-card:hover {
    transform: translateY(-5px);
    border-color: rgba(15, 143, 137, 0.28);
    box-shadow: 0 24px 52px rgba(15, 143, 137, 0.14);
  }
}

.blog-section-link {
  margin: 24px 0 0;
  text-align: center;
}

.blog-section-link a {
  color: var(--teal);
  font-weight: 950;
}

.blog-archive-section {
  padding-bottom: 64px;
}

.blog-post-hero .page-hero-inner {
  max-width: 900px;
}

.blog-post-meta {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
}

.blog-post-layout {
  display: grid;
  gap: 28px;
  max-width: 920px;
}

.blog-post-image {
  overflow: hidden;
  margin: 0;
  aspect-ratio: 16 / 9;
  border-radius: 30px;
  background: var(--wash);
  box-shadow: var(--shadow);
}

.blog-post-content {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--surface);
  padding: clamp(24px, 4vw, 42px);
  box-shadow: 0 18px 50px rgba(15, 143, 137, 0.08);
}

.blog-post-content p {
  margin: 0;
  color: #354744;
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  line-height: 1.82;
}

.blog-post-content p + p {
  margin-top: 20px;
}

.blog-card-grid--related {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 780px;
  margin-inline: auto;
}

@media (max-width: 980px) {
  .lab-pillars,
  .lab-approach-steps,
  .analyses-archive-grid,
  .blog-card-grid,
  .blog-card-grid--related {
    grid-template-columns: 1fr;
  }

  .laboratory-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .laboratory-cta .hero-actions {
    width: 100%;
  }
}
