@font-face {
  font-family: Switzer;
  src: url("/assets/fonts/Switzer-Light.woff2") format("woff2");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: Switzer;
  src: url("/assets/fonts/Switzer-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}
:root {
  --paper: #f7f5ef;
  --ink: #26342c;
  --sage: #e3e9e1;
  --rule: #d7dcd2;
  --text-primary: var(--ink);
  --text-secondary: #515c52;
  --primary: var(--ink);
  --background: var(--paper);
  --background-light: #fdfbf6;
  --background-dark: #e9eae1;
  --accent: #36574a;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 150px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Switzer, Arial, sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}
button,
input,
textarea {
  font: inherit;
}
a {
  color: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid #36574a;
  outline-offset: 5px;
}
img {
  max-width: 100%;
  height: auto;
}
.skip-link {
  position: fixed;
  left: 20px;
  top: -100px;
  z-index: 1000;
  background: var(--ink);
  color: var(--paper);
  padding: 12px 22px;
}
.skip-link:focus {
  top: 12px;
}
.wrap {
  width: min(1280px, calc(100% - 112px));
  margin: auto;
}
.lab-page h1,
.lab-page h2,
.lab-page h3,
.lab-page p,
.lab-page figure {
  margin: 0;
}
.lab-page h1,
.lab-page h2,
.lab-page h3 {
  font-weight: 300;
}
.lab-page h1 {
  font-size: clamp(64px, 7.1vw, 106px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}
.lab-page h2 {
  font-size: clamp(38px, 4.2vw, 62px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  text-wrap: balance;
}
.lab-page h3 {
  font-size: 27px;
  line-height: 1.2;
  letter-spacing: -0.025em;
}
.lab-page p {
  font-size: 19px;
  line-height: 1.55;
}
.lab-page .small {
  font-size: 14px;
  line-height: 1.55;
}
.lab-page .lead {
  font-size: 25px;
  line-height: 1.38;
  letter-spacing: -0.02em;
}
.lab-page strong {
  font-weight: 400;
}
.lab-page sup {
  font-size: 0.48em;
  vertical-align: super;
  letter-spacing: 0;
}
.lab-page section {
  position: relative;
}
.section {
  padding: 112px 0;
}
.section + .section {
  border-top: 1px solid var(--rule);
}
.section-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 58px;
  align-items: start;
}
.section-top > p {
  max-width: 550px;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.stack > * + * {
  margin-top: 24px !important;
}
.actions {
  display: flex;
  gap: 26px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 36px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  min-height: 51px;
  padding: 13px 25px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  border-radius: 3px;
  font-size: 16px;
  font-weight: 400;
  transition: background 0.2s;
}
.button:hover {
  background: #3c5343;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding: 5px 0;
  font-size: 16px;
}
.text-link:hover {
  opacity: 0.72;
}
.arrow {
  font-family: Arial, sans-serif;
  font-weight: 400;
}
/* Shared navigation, including the existing enquiry and information pages. */
#navbar-container header {
  position: relative;
  inset: auto;
  height: 102px;
  padding: 0;
  box-shadow: none;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  z-index: 100;
}
#navbar-container nav {
  height: 100%;
  max-width: 1280px;
  width: calc(100% - 112px);
  padding: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#navbar-container .brand {
  display: flex;
  gap: 11px;
  align-items: center;
  text-decoration: none;
}
#navbar-container .logo {
  width: 58px;
  height: 34px;
  object-fit: contain;
  transform: none;
}
#navbar-container .brand span {
  font-size: 22px;
  letter-spacing: -0.04em;
  font-weight: 300;
}
#navbar-container .nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
#navbar-container .nav-link {
  font-size: 15px;
  font-weight: 400;
  padding: 5px 0;
  color: var(--ink);
  letter-spacing: 0;
  text-decoration: none;
}
#navbar-container .nav-link::after {
  display: none;
}
#navbar-container .nav-link[aria-current="page"] {
  border-bottom: 1px solid var(--ink);
}
#navbar-container .header-cta {
  padding: 10px 20px;
  background: none;
  border: 1px solid var(--ink);
  border-radius: 3px;
  text-decoration: none;
  color: var(--ink);
  font-size: 15px;
  font-weight: 400;
}
#navbar-container .header-cta:hover {
  background: var(--sage);
}
#navbar-container .mobile-menu-toggle {
  display: none;
}
#navbar-container .mobile-menu-backdrop {
  display: none;
}
.pcc-hero {
  padding: 75px 0 65px;
}
.pcc-hero .split {
  gap: 22px;
  grid-template-columns: 1.05fr 1fr;
  min-height: 520px;
}
.pcc-hero .product-name {
  font-size: 20px;
  margin-bottom: 27px;
}
.pcc-hero h1 {
  font-size: clamp(62px, 6.2vw, 90px);
}
.pcc-hero .lead {
  margin-top: 28px;
  max-width: 460px;
  font-size: 22px;
}
.pcc-hero .hero-product {
  width: 115%;
  max-width: none;
  margin-left: -6%;
  display: block;
}
.hero-facts {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid var(--rule);
  padding-top: 30px;
  margin-top: 28px;
  gap: 25px;
}
.hero-facts p {
  font-size: 16px;
}
.hero-facts span {
  display: block;
  font-size: 13px;
  margin-top: 5px;
}
.section-nav {
  position: sticky;
  top: 0;
  background: rgba(247, 245, 239, 0.97);
  border-block: 1px solid var(--rule);
  z-index: 50;
  backdrop-filter: blur(12px);
}
.section-nav .wrap {
  display: flex;
  gap: 32px;
  align-items: center;
  min-height: 61px;
  overflow-x: auto;
  scrollbar-width: none;
}
.section-nav a {
  font-size: 14px;
  white-space: nowrap;
  text-decoration: none;
  padding: 20px 0;
}
.section-nav a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.molecule-art {
  width: 100%;
  display: block;
}
.formula-caption {
  display: flex;
  justify-content: space-around;
  font-size: 14px;
  margin-top: 0;
}
.inset-note {
  border-top: 1px solid var(--rule);
  padding-top: 21px;
  margin-top: 27px !important;
}
.sage {
  background: var(--sage);
}
.cell-selector {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.cell-selector button {
  background: transparent;
  border: 1px solid #b9c7b9;
  border-radius: 3px;
  padding: 10px 17px;
  color: var(--ink);
  font-size: 15px;
  cursor: pointer;
}
.cell-selector button[aria-pressed="true"] {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}
.cell-figure {
  position: relative;
}
.cell-figure img {
  display: block;
  width: 100%;
}
.mechanism-copy {
  min-height: 183px;
}
.mechanism-copy h3 {
  margin-bottom: 16px;
}
.technical {
  margin-top: 45px;
  border-top: 1px solid #b9c7b9;
  border-bottom: 1px solid #b9c7b9;
}
.technical summary,
.faq-list summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding: 23px 0;
  font-size: 18px;
}
.technical summary::-webkit-details-marker,
.faq-list summary::-webkit-details-marker {
  display: none;
}
.technical summary::after,
.faq-list summary::after {
  content: "+";
  flex-shrink: 0;
}
.technical[open] summary::after,
.faq-list details[open] summary::after {
  content: "−";
}
.technical .detail-body {
  padding: 0 0 25px;
  max-width: 950px;
}
.technical p + p {
  margin-top: 17px;
}
.research-feature {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 95px;
  margin-bottom: 60px;
  align-items: center;
}
.survival-chart {
  padding: 35px 0;
  border-block: 1px solid var(--rule);
}
.survival-chart figcaption {
  font-size: 17px;
  margin-bottom: 26px;
}
.bar-row {
  display: grid;
  grid-template-columns: 86px 1fr 50px;
  gap: 16px;
  align-items: center;
  margin: 19px 0;
  font-size: 15px;
}
.bar-track {
  height: 30px;
}
.bar {
  display: block;
  height: 100%;
  background: var(--ink);
}
.bar.control {
  background: #aab8aa;
}
.bar-value {
  font-size: 25px;
}
.study-list {
  border-top: 1px solid var(--rule);
}
.study-row {
  display: grid;
  grid-template-columns: 135px 1fr 1.12fr 35px;
  gap: 32px;
  padding: 30px 0;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
  align-items: start;
}
.study-row:hover h3 {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}
.study-row p {
  font-size: 17px;
}
.study-row .study-date {
  font-size: 14px;
}
.study-row .arrow {
  font-size: 24px;
}
.study-row small {
  display: block;
  font-size: 13px;
  margin-top: 7px;
}
.pilot-facts {
  display: flex;
  gap: 32px;
  border-block: 1px solid var(--rule);
  padding: 22px 0;
  margin: 34px 0;
}
.pilot-facts span {
  font-size: 15px;
}
.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
  margin: 55px 0;
}
.metric .value {
  font-size: 72px;
  letter-spacing: -0.06em;
  line-height: 1.05;
  margin: 18px 0;
}
.metric h3 {
  font-size: 19px;
}
.metric p {
  font-size: 16px;
}
.metric + .metric {
  border-left: 1px solid var(--rule);
  padding-left: 35px;
}
.delivery-art {
  width: 90%;
  margin: auto;
  display: block;
}
.delivery-metric {
  font-size: 78px;
  line-height: 1.05;
  letter-spacing: -0.05em;
  margin: 30px 0 10px !important;
}
.spec-list {
  margin: 40px 0 0;
}
.spec-list > div {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 35px;
  padding: 19px 0;
  border-top: 1px solid var(--rule);
  font-size: 16px;
  line-height: 1.5;
}
.spec-list dt {
  font-weight: 400;
}
.spec-list dd {
  margin: 0;
}
.routine {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  margin-top: 48px;
}
.routine-number {
  font-size: 100px;
  letter-spacing: -0.06em;
  line-height: 1;
}
.routine h3 {
  margin: 18px 0 12px;
}
.days {
  display: grid;
  grid-template-columns: repeat(15, 1fr);
  gap: 8px;
  margin: 40px 0 20px;
}
.day {
  aspect-ratio: 1;
  background: #d2dccf;
  display: grid;
  place-items: center;
  font-size: 14px;
}
.day.active {
  background: var(--ink);
  color: var(--paper);
}
.quality-number {
  font-size: 105px;
  letter-spacing: -0.06em;
  line-height: 1;
  margin-bottom: 15px !important;
}
.report-list {
  margin-top: 42px;
  border-top: 1px solid var(--rule);
}
.report-list a {
  display: flex;
  justify-content: space-between;
  gap: 35px;
  padding: 21px 0;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
  font-size: 17px;
}
.report-list a:hover {
  text-decoration: underline;
}
.report-list small {
  display: block;
  font-size: 13px;
  margin-top: 5px;
}
.faq-list details {
  border-top: 1px solid var(--rule);
}
.faq-list details:last-child {
  border-bottom: 1px solid var(--rule);
}
.faq-list details p {
  font-size: 17px;
  max-width: 850px;
  padding-bottom: 25px;
}
.closing {
  background: var(--ink);
  color: var(--paper);
  padding: 90px 0;
}
.closing .button {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
.closing .split {
  align-items: end;
}
.closing p {
  max-width: 440px;
}
.lab-footer {
  padding: 42px 0 !important;
  background: var(--paper) !important;
  border: 0 !important;
}
.lab-footer .wrap {
  display: flex;
  justify-content: space-between;
  gap: 35px;
}
.lab-footer p,
.lab-footer a {
  font-size: 13px !important;
  color: var(--ink) !important;
}
.lab-footer a {
  text-decoration: none;
}
.footer-meta {
  display: flex;
  gap: 24px;
}
.lab-page .evidence-note {
  max-width: 960px;
  font-size: 14px;
  line-height: 1.55;
}
.home-hero {
  padding: 105px 0 95px;
}
.home-hero .split {
  grid-template-columns: 1.12fr 1fr;
  gap: 45px;
}
.home-hero .lead {
  margin-top: 35px;
  max-width: 550px;
}
.home-science {
  width: 100%;
  opacity: 0.95;
  mix-blend-mode: multiply;
}
.home-intro {
  padding: 70px 0;
  border-block: 1px solid var(--rule);
}
.home-intro p {
  max-width: 900px;
  font-size: 31px;
  line-height: 1.38;
  letter-spacing: -0.025em;
}
.feature-product {
  display: block;
  width: 100%;
  max-height: 530px;
  object-fit: contain;
}
.capability-row {
  display: grid;
  grid-template-columns: 75px 1fr 1.2fr;
  gap: 35px;
  border-top: 1px solid var(--rule);
  padding: 31px 0;
}
.capability-row:last-child {
  border-bottom: 1px solid var(--rule);
}
.capability-row p {
  font-size: 17px;
}
.capability-row > span {
  font-size: 14px;
}
.locations {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 35px;
}
.locations p {
  font-size: 16px;
}
.locations span {
  display: block;
  font-size: 13px;
  margin-top: 6px;
}
/* Bring secondary pages into the shared palette without changing their forms. */
body:not(.lab-page) {
  background: var(--paper);
  font-family: Switzer, Arial, sans-serif;
}
body:not(.lab-page) h1,
body:not(.lab-page) h2 {
  font-weight: 300;
  letter-spacing: -0.04em;
}
body:not(.lab-page) .hero-simple {
  background: var(--paper);
  padding: 100px 0;
  min-height: 65vh;
}
body:not(.lab-page) .hero-simple::before,
body:not(.lab-page) .hero-simple::after {
  display: none;
}
body:not(.lab-page) .hero-simple h1 {
  color: var(--ink);
}
body:not(.lab-page) .contact {
  background: var(--paper);
  padding-top: 80px;
}
body:not(.lab-page) .contact-form,
body:not(.lab-page) .contact-info {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}
body:not(.lab-page) .submit-btn {
  background: var(--ink);
  border-radius: 3px;
  box-shadow: none;
}
body:not(.lab-page) .contact-item a {
  color: var(--ink) !important;
}
body:not(.lab-page) input,
body:not(.lab-page) textarea {
  border-radius: 3px;
}
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: auto;
  max-width: 640px;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--rule);
  padding: 18px 22px;
  z-index: 200;
  transform: translateY(calc(100% + 32px));
  transition: transform 0.25s;
  box-shadow: 0 6px 25px #26342c0c;
  border-radius: 3px;
}
.cookie-banner.show {
  transform: translateY(0);
}
.cookie-content {
  display: flex;
  gap: 24px;
  align-items: center;
}
.cookie-content p {
  font-size: 13px !important;
  line-height: 1.4 !important;
  margin: 0;
}
.cookie-actions {
  display: flex;
  gap: 9px;
}
.cookie-btn {
  font-size: 13px;
  padding: 9px 14px;
  border: 1px solid var(--ink);
  border-radius: 3px;
  cursor: pointer;
}
.cookie-accept {
  background: var(--ink);
  color: var(--paper);
}
.cookie-reject {
  color: var(--ink);
  background: transparent;
}
@media (min-width: 1500px) {
  .pcc-hero .split {
    min-height: 580px;
  }
}
@media (max-width: 1000px) {
  .wrap {
    width: calc(100% - 64px);
  }
  #navbar-container nav {
    width: calc(100% - 64px);
  }
  .split,
  .section-top {
    gap: 40px;
  }
  .pcc-hero h1 {
    font-size: 65px;
  }
  .section {
    padding: 80px 0;
  }
  .research-feature {
    gap: 45px;
  }
  .study-row {
    grid-template-columns: 100px 1fr 1fr 25px;
    gap: 20px;
  }
  .metric .value {
    font-size: 58px;
  }
  .metrics {
    gap: 25px;
  }
  .metric + .metric {
    padding-left: 20px;
  }
}
@media (max-width: 768px) {
  html {
    scroll-padding-top: 90px;
  }
  .wrap {
    width: calc(100% - 40px);
  }
  #navbar-container header {
    height: 80px;
  }
  #navbar-container nav {
    width: calc(100% - 40px);
  }
  #navbar-container .logo {
    width: 49px;
    height: 30px;
  }
  #navbar-container .brand span {
    font-size: 20px;
  }
  #navbar-container .mobile-menu-toggle {
    display: block;
    position: relative;
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 12px 0 12px 20px;
    color: var(--ink);
    font-size: 15px;
    width: auto;
    height: auto;
    z-index: 102;
  }
  #navbar-container .nav-links {
    display: none;
    position: absolute;
    top: 79px;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    background: var(--paper);
    padding: 25px 20px 35px;
    transform: none;
    box-shadow: none;
    border-bottom: 1px solid var(--rule);
    flex-direction: column;
    align-items: flex-start;
    gap: 23px;
    z-index: 101;
  }
  #navbar-container .nav-links.mobile-open {
    display: flex;
  }
  #navbar-container .nav-link {
    font-size: 20px;
  }
  .lab-page h1,
  .pcc-hero h1 {
    font-size: 58px;
  }
  .lab-page h2 {
    font-size: 40px;
  }
  .lab-page h3 {
    font-size: 24px;
  }
  .lab-page p {
    font-size: 17px;
  }
  .lab-page .lead {
    font-size: 22px;
  }
  .section {
    padding: 65px 0;
  }
  .split,
  .section-top,
  .research-feature,
  .home-hero .split,
  .pcc-hero .split {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .section-top {
    margin-bottom: 35px;
  }
  .pcc-hero {
    padding: 45px 0 33px;
  }
  .pcc-hero .product-name {
    font-size: 17px;
    margin-bottom: 23px;
  }
  .pcc-hero .lead {
    margin-top: 24px;
  }
  .pcc-hero .hero-product {
    width: 100%;
    max-width: 540px;
    margin: -10px auto -25px;
  }
  .hero-facts {
    margin-top: 10px;
    padding-top: 23px;
    gap: 12px;
  }
  .hero-facts p {
    font-size: 14px;
  }
  .hero-facts span {
    font-size: 12px;
  }
  .section-nav .wrap {
    width: calc(100% - 40px);
    gap: 25px;
    min-height: 53px;
  }
  .section-nav a {
    font-size: 13px;
    padding: 17px 0;
  }
  .actions {
    gap: 22px;
    margin-top: 29px;
  }
  .button {
    font-size: 15px;
    padding: 12px 18px;
    gap: 20px;
  }
  .text-link {
    font-size: 15px;
  }
  .cell-selector {
    gap: 6px;
  }
  .cell-selector button {
    padding: 10px 12px;
    font-size: 14px;
  }
  .mechanism-copy {
    min-height: 156px;
  }
  .technical {
    margin-top: 28px;
  }
  .technical summary {
    font-size: 16px;
  }
  .study-row {
    grid-template-columns: 1fr 24px;
    gap: 12px;
  }
  .study-date {
    grid-column: 1;
  }
  .study-row h3 {
    grid-column: 1;
  }
  .study-row p {
    grid-column: 1;
  }
  .study-row > .arrow {
    grid-column: 2;
    grid-row: 2;
  }
  .research-feature {
    margin-bottom: 40px;
  }
  .metrics {
    gap: 26px;
    margin: 35px 0;
    grid-template-columns: 1fr;
  }
  .metric {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 22px;
    align-items: center;
  }
  .metric .value {
    grid-column: 1;
    grid-row: 2;
    margin: 0;
    font-size: 60px;
  }
  .metric p {
    grid-column: 2;
    grid-row: 1 / 3;
    font-size: 15px;
  }
  .metric + .metric {
    padding: 23px 0 0;
    border-left: 0;
    border-top: 1px solid var(--rule);
  }
  .pilot-facts {
    gap: 15px;
    justify-content: space-between;
  }
  .pilot-facts span {
    font-size: 13px;
  }
  .spec-list > div {
    grid-template-columns: 1fr 1.4fr;
    gap: 20px;
    font-size: 15px;
  }
  .routine {
    gap: 25px;
    margin-top: 30px;
  }
  .routine-number {
    font-size: 78px;
  }
  .routine h3 {
    font-size: 20px;
  }
  .routine p {
    font-size: 16px;
  }
  .days {
    grid-template-columns: repeat(10, 1fr);
    gap: 5px;
  }
  .day {
    font-size: 12px;
  }
  .quality-number {
    font-size: 90px;
  }
  .report-list a {
    font-size: 16px;
    gap: 20px;
  }
  .closing {
    padding: 64px 0;
  }
  .lab-footer .wrap {
    flex-direction: column;
    gap: 25px;
  }
  .home-hero {
    padding: 58px 0;
  }
  .home-hero .lead {
    margin-top: 27px;
  }
  .home-science {
    max-height: 350px;
    object-fit: contain;
  }
  .home-intro {
    padding: 48px 0;
  }
  .home-intro p {
    font-size: 25px;
  }
  .capability-row {
    grid-template-columns: 30px 1fr;
    gap: 16px;
  }
  .capability-row p {
    grid-column: 2;
  }
  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
    max-width: none;
    padding: 15px;
  }
  .cookie-content {
    gap: 15px;
    align-items: flex-start;
    flex-direction: column;
  }
  .cookie-actions {
    align-self: flex-end;
  }
  .faq-list summary {
    font-size: 17px;
  }
  body:not(.lab-page) .contact {
    padding-top: 50px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
/* Keep large figures above the paragraph defaults. */
.lab-page .delivery-metric {
  font-size: 78px;
  line-height: 1.05;
}
.lab-page .quality-number {
  font-size: 105px;
  line-height: 1;
}
.metric .value {
  white-space: nowrap;
}
@media (max-width: 768px) {
  .pcc-hero {
    padding-top: 35px;
  }
  .pcc-hero h1 {
    font-size: 50px;
  }
  .pcc-hero .actions {
    gap: 18px;
  }
  .pcc-hero .button {
    padding: 12px 14px;
    gap: 14px;
    font-size: 14px;
  }
  .pcc-hero .text-link {
    font-size: 14px;
    gap: 12px;
  }
  .cell-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }
  .cell-selector button {
    font-size: 12px;
    padding: 12px 3px;
  }
  .metric {
    grid-template-columns: 1.2fr 1fr;
  }
  .metric .value {
    font-size: 52px;
  }
  .lab-page .delivery-metric {
    font-size: 64px;
  }
  .lab-page .quality-number {
    font-size: 90px;
  }
  .section-nav .wrap {
    width: calc(100% - 62px);
    margin-left: 20px;
    padding-right: 15px;
  }
  .section-nav::after {
    content: "↔";
    position: absolute;
    right: 10px;
    top: 16px;
    font-size: 17px;
    background: var(--paper);
    pointer-events: none;
  }
}
/* Laboratory services share the same quiet editorial structure as PCC1. */
.service-hero {
  padding: 100px 0 110px;
  border-bottom: 1px solid var(--rule);
}
.service-hero .split {
  grid-template-columns: 1.1fr 1fr;
  gap: 90px;
}
.service-hero h1 {
  font-size: clamp(58px, 6.8vw, 94px);
}
.service-hero .lead {
  max-width: 540px;
  margin-top: 30px;
}
.lab-page .service-detail {
  margin-top: 20px;
  max-width: 480px;
  font-size: 18px;
}
.service-index {
  border-top: 1px solid var(--rule);
}
.service-index > a {
  display: grid;
  grid-template-columns: 24px 1fr 20px;
  gap: 22px;
  align-items: start;
  padding: 26px 0;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
}
.service-index > a:hover div {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.service-index > a > span {
  font-size: 13px;
  padding-top: 7px;
}
.service-index div {
  font-size: 31px;
  line-height: 1.2;
  letter-spacing: -0.025em;
}
.service-index small {
  display: block;
  margin-top: 9px;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 1.4;
}
.marker-list {
  margin: 0;
}
.marker-list > div {
  display: grid;
  grid-template-columns: 0.8fr 1.7fr;
  gap: 65px;
  padding: 25px 0;
  border-top: 1px solid var(--rule);
}
.marker-list > div:last-child {
  border-bottom: 1px solid var(--rule);
}
.marker-list dt {
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: -0.015em;
}
.marker-list dd {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  max-width: 750px;
}
.lab-page .source-line {
  margin-top: 30px;
  max-width: 780px;
}
.source-line a {
  text-underline-offset: 3px;
}
.kit-photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 2px;
}
.kit-photo figcaption {
  margin-top: 16px;
  font-size: 13px;
  line-height: 1.4;
}
.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: steps;
}
.process-list li {
  counter-increment: steps;
  border-top: 1px solid #b7c2b6;
  padding-top: 23px;
}
.process-list li::before {
  content: "0" counter(steps);
  display: block;
  font-size: 15px;
  margin-bottom: 33px;
}
.process-list p {
  margin-top: 17px;
  font-size: 18px;
}
.nad-context {
  padding: 38px 0 38px 45px;
  border-block: 1px solid var(--rule);
}
.capability-row h3 a {
  text-decoration: none;
}
.capability-row h3 a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
@media (max-width: 1100px) {
  .service-hero .split {
    gap: 45px;
  }
  .service-index div {
    font-size: 26px;
  }
  .service-index > a {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  .service-hero {
    padding: 42px 0 60px;
  }
  .service-hero .split {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .service-hero h1 {
    font-size: 57px;
  }
  .service-hero .lead {
    margin-top: 25px;
  }
  .service-index div {
    font-size: 28px;
  }
  .service-index > a {
    padding: 22px 0;
  }
  .marker-list > div {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 23px 0;
  }
  .marker-list dt {
    font-size: 23px;
  }
  .marker-list dd {
    font-size: 17px;
  }
  .process-list {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .process-list li {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 20px;
  }
  .process-list li::before {
    padding-top: 5px;
  }
  .process-list p {
    font-size: 17px;
    margin-top: 13px;
  }
  .nad-context {
    padding: 30px 0;
  }
  .nad-hero .actions {
    gap: 18px;
  }
  .nad-hero .actions a {
    font-size: 14px;
  }
  .nad-hero .button {
    padding-inline: 16px;
    gap: 18px;
  }
}
@media (max-width: 360px) {
  .service-hero h1 {
    font-size: 50px;
  }
  .service-index div {
    font-size: 25px;
  }
}

/* Preserve contact typography with a sequential heading outline. */
body:not(.lab-page) .contact-info > .contact-info-title {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: normal;
  text-align: left;
  margin: 0 0 32px;
}
body:not(.lab-page) .contact-item > .contact-item-title {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink);
  margin: 0 0 12px;
}
