@font-face {
  font-family: "Libre Baskerville";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/LibreBaskerville-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "Libre Baskerville";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/LibreBaskerville-Bold.ttf") format("truetype");
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/Roboto-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/Roboto-Medium.ttf") format("truetype");
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/Roboto-Bold.ttf") format("truetype");
}

:root {
  --color-forest: #2c3a33;
  --color-sage: #7c845a;
  --color-lichen: #9ca58b;
  --color-taupe: #9e9683;
  --color-sand: #bfb7a4;
  --color-slate: #5a6d7c;
  --color-brick: #a65d52;
  --color-paper: #fbfaf6;
  --color-ink: #26312d;
  --color-muted: #65706b;
  --color-line: rgba(44, 58, 51, 0.16);
  --font-title: "Libre Baskerville", Georgia, serif;
  --font-body: "Roboto", Arial, sans-serif;
  --content-width: 1180px;
  --header-height: 84px;
  --header-logo-width: 256px;
  --header-logo-width-mobile: 148px;
  --footer-logo-width: 86px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-ink);
  background: var(--color-paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: #fff;
  background: var(--color-forest);
  border-radius: 6px;
  transform: translateY(-140%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: var(--header-height);
  background: rgba(251, 250, 246, 0.94);
  border-bottom: 1px solid var(--color-line);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 40px, var(--content-width));
  min-height: var(--header-height);
  margin: 0 auto;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  width: var(--header-logo-width);
}

.brand img {
  width: var(--header-logo-width);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--color-line);
  border-radius: 6px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--color-forest);
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  flex: 1 1 auto;
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 11px;
  color: var(--color-forest);
  background: transparent;
  border: 0;
  border-radius: 6px;
  font: 500 0.94rem/1 var(--font-body);
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active {
  color: #fff;
  background: var(--color-forest);
  outline: none;
}

.nav-contact {
  color: #fff;
  background: var(--color-sage);
}

.submenu-toggle::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.submenu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 248px;
  margin: 0;
  padding: 8px;
  list-style: none;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  box-shadow: 0 18px 36px rgba(44, 58, 51, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.submenu a {
  display: block;
  padding: 10px 12px;
  color: var(--color-forest);
  border-radius: 6px;
  font-size: 0.94rem;
  line-height: 1.35;
  text-decoration: none;
}

.submenu a:hover,
.submenu a:focus-visible {
  color: #fff;
  background: var(--color-forest);
  outline: none;
}

.has-submenu:hover .submenu,
.has-submenu.is-open .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.section {
  width: min(100% - 40px, var(--content-width));
  margin: 0 auto;
  padding: 84px 0;
}

.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
}

.hero.section {
  width: 100%;
  padding: 0;
}

.hero-carousel,
.hero-carousel img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-carousel {
  background: var(--color-forest);
}

.hero-carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 1200ms ease, transform 7000ms ease;
}

.hero-carousel img.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(20, 30, 25, 0.88) 0%, rgba(20, 30, 25, 0.72) 42%, rgba(20, 30, 25, 0.34) 100%),
    linear-gradient(0deg, rgba(20, 30, 25, 0.42), rgba(20, 30, 25, 0.2));
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.62fr);
  align-items: center;
  width: min(100% - 40px, var(--content-width));
  margin: 0 auto;
  gap: 70px;
  padding: clamp(52px, 6vw, 65px) 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--color-sage);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--color-forest);
  font-family: var(--font-title);
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  max-width: 880px;
  font-size: 3.55rem;
  line-height: 1.05;
}

h2 {
  max-width: 880px;
  font-size: 2.55rem;
  line-height: 1.15;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.28;
}

.hero-text {
  max-width: 690px;
  margin: 28px 0 0;
  color: var(--color-muted);
  font-size: 1.12rem;
}

.hero .eyebrow,
.hero h1,
.hero .hero-text {
  color: #fff;
  text-shadow: 0 1px 22px rgba(0, 0, 0, 0.35);
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}

.button-primary {
  color: #fff;
  background: var(--color-forest);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #1e2924;
}

.button-secondary {
  color: var(--color-forest);
  background: transparent;
  border-color: var(--color-line);
}

.hero .button-primary {
  color: var(--color-forest);
  background: #fff;
}

.hero .button-primary:hover,
.hero .button-primary:focus-visible {
  color: #fff;
  background: var(--color-sage);
}

.hero .button-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
}

.hero .button-secondary:hover,
.hero .button-secondary:focus-visible {
  border-color: #fff;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--color-sage);
}

.hero-panel {
  padding-left: 34px;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-panel img {
  width: 174px;
  margin-bottom: 30px;
}

.human-panel {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-panel-quote {
  position: relative;
  min-width: 0;
  padding-top: 0;
  border-top: 0;
}

.hero-quote {
  position: relative;
  margin: 0;
  padding: 34px 24px 48px 30px;
}

.hero-quote::before,
.hero-quote::after {
  position: absolute;
  color: rgba(255, 255, 255, 0.28);
  font-family: var(--font-title);
  font-size: 5.8rem;
  line-height: 1;
  text-shadow: none;
}

.hero-quote::before {
  content: "\201C";
  top: -8px;
  left: 0;
}

.hero-quote::after {
  content: "\201D";
  right: 0;
  bottom: -52px;
}

.hero-quote p {
  margin: 0;
  color: #fff;
  font-family: var(--font-title);
  font-size: 1.28rem;
  line-height: 1.42;
  text-shadow: 0 1px 22px rgba(0, 0, 0, 0.35);
}

.hero-signature {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
}

.compact-list {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.compact-list li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.84);
}

.compact-list li::before {
  content: "";
  position: absolute;
  top: 0.74em;
  left: 0;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
}

.intro-section,
.services-preview,
.split-section {
  border-top: 1px solid var(--color-line);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.38fr) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
  margin-bottom: 40px;
}

.intro-section .section-heading,
.services-preview .section-heading,
.values-grid-section .section-heading,
.logo-gallery-section .section-heading {
  display: block;
  max-width: 960px;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  margin-left: 0;
}

.intro-grid p,
.split-section p {
  margin: 0;
  color: var(--color-muted);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 8px;
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  color: var(--color-forest);
  background: rgba(156, 165, 139, 0.12);
  border: 1px solid rgba(124, 132, 90, 0.18);
  border-radius: 8px;
}

.service-icon img {
  display: block;
  width: 24px;
  height: 24px;
  filter: brightness(0) saturate(100%) invert(18%) sepia(12%) saturate(797%) hue-rotate(91deg) brightness(96%) contrast(86%);
}

.service-card p {
  margin: 18px 0 0;
  color: var(--color-muted);
}

.service-card ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 28px;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 20px;
  color: var(--color-muted);
  line-height: 1.45;
}

.service-card li::before {
  content: "›";
  position: absolute;
  top: -0.05em;
  left: 0;
  color: var(--color-sage);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.4;
}

.service-card a,
.text-link {
  color: var(--color-forest);
  font-weight: 700;
  text-decoration-color: var(--color-sage);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.service-card a:hover,
.service-card a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  color: var(--color-brick);
}

.service-card a {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin-top: auto;
  padding: 0 14px;
  color: #fff;
  background: var(--color-forest);
  border: 1px solid var(--color-forest);
  border-radius: 6px;
  text-decoration: none;
}

.service-card a::after {
  content: "›";
  margin-left: 8px;
  font-size: 1.18rem;
  line-height: 1;
}

.service-card a:hover,
.service-card a:focus-visible {
  color: #fff;
  background: var(--color-sage);
  border-color: var(--color-sage);
  outline: none;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 54px;
}

.split-section .text-link {
  display: inline-flex;
  margin-top: 22px;
}


.inline-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.inline-facts li {
  padding: 8px 12px;
  color: var(--color-forest);
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 700;
}

.values-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding-top: 42px;
  border-top: 1px solid var(--color-line);
}

.values-strip span {
  padding: 8px 12px;
  color: var(--color-forest);
  background: rgba(156, 165, 139, 0.16);
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 700;
}

.logo-gallery-section {
  border-top: 1px solid var(--color-line);
}

.logo-gallery-shell {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 46px;
  align-items: center;
  gap: 14px;
}

.logo-gallery-viewport {
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.logo-gallery-viewport::-webkit-scrollbar {
  display: none;
}

.logo-gallery-viewport:focus-visible {
  outline: 2px solid var(--color-sage);
  outline-offset: 6px;
}

.logo-gallery-track {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: max-content;
  margin: 0;
  padding: 4px;
  list-style: none;
}

.logo-gallery-track li {
  display: grid;
  place-items: center;
  width: 176px;
  height: 104px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  flex: 0 0 auto;
}

.logo-gallery-track img {
  max-width: 100%;
  max-height: 68px;
  object-fit: contain;
  filter: saturate(0.88);
}

.logo-gallery-arrow {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--color-forest);
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 50%;
  cursor: pointer;
}

.logo-gallery-arrow span {
  display: block;
  margin-top: -2px;
  font-size: 2rem;
  line-height: 1;
}

.logo-gallery-arrow:hover,
.logo-gallery-arrow:focus-visible {
  color: #fff;
  background: var(--color-forest);
  outline: none;
}

.page-hero {
  padding-top: 64px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 34px;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--color-forest);
  font-weight: 700;
  text-decoration-color: var(--color-sage);
  text-underline-offset: 4px;
}

.breadcrumb span::before,
.breadcrumb strong::before {
  content: "/";
  margin-right: 8px;
  color: var(--color-taupe);
  font-weight: 400;
}

.breadcrumb strong {
  color: var(--color-forest);
  font-weight: 700;
}

.presentation-hero .section-heading,
.founder-section .section-heading,
.origin-section .section-heading,
.methodology-section .section-heading {
  display: block;
  max-width: 960px;
}

.presentation-hero .section-heading,
.service-hero .section-heading,
.references-hero .section-heading {
  margin-bottom: 0;
}

.origin-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 860px) minmax(150px, 220px);
  gap: 70px;
  align-items: stretch;
}

.origin-hero-logo {
  align-self: stretch;
  justify-self: end;
  width: auto;
  height: 100%;
  max-height: 230px;
  object-fit: contain;
}

.founder-section .section-heading,
.origin-section .section-heading,
.methodology-section .section-heading {
  margin-bottom: 40px;
}

.page-lead {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--color-muted);
  font-size: 1.08rem;
}

.page-hero > .section-heading.page-heading {
  grid-template-columns: minmax(150px, 0.26fr) minmax(0, 1fr);
  max-width: 1040px;
}

.page-hero > .section-heading.page-heading h1 {
  max-width: 920px;
}

.page-hero > .section-heading.page-heading .page-lead {
  max-width: 900px;
}

.contact-hero > .section-heading.page-heading {
  display: block;
}

.page-hero-image {
  margin: 54px 0 0;
}

.page-hero-image img {
  width: 100%;
  max-height: 470px;
  object-fit: cover;
  border: 1px solid var(--color-line);
  border-radius: 8px;
}

.founder-section {
  padding-top: 0;
}

.founder-card {
  min-inline-size: 0;
  margin: 0;
  padding: 26px 34px 34px;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  box-shadow: 0 18px 34px rgba(44, 58, 51, 0.08);
}

.founder-card legend {
  padding: 0 14px;
  color: var(--color-sage);
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-variant-caps: small-caps;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
}

.founder-card-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.52fr);
  gap: 42px;
  align-items: stretch;
}

.founder-copy {
  align-self: center;
}

.founder-copy p {
  margin: 18px 0 0;
  color: var(--color-muted);
}

.founder-copy p:first-child {
  margin-top: 0;
}

.founder-photo {
  margin: 0;
  min-height: 480px;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
  border-radius: 8px;
}

.founder-signature {
  display: block;
  width: min(220px, 62%);
  max-height: 78px;
  margin-top: 24px;
  margin-left: auto;
  object-fit: contain;
  object-position: right center;
}

.origin-section {
  border-top: 1px solid var(--color-line);
}

.origin-content {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(260px, 330px);
  gap: 56px;
  align-items: start;
  margin-left: 0;
}

.origin-text p {
  margin: 0;
  color: var(--color-muted);
}

.origin-text p + p {
  margin-top: 22px;
}

.origin-facts {
  padding: 24px;
  background: rgba(156, 165, 139, 0.12);
  border: 1px solid rgba(124, 132, 90, 0.22);
  border-radius: 8px;
}

.origin-facts h3 {
  font-size: 1.1rem;
}

.origin-facts ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.origin-facts li {
  position: relative;
  padding-left: 20px;
  color: var(--color-muted);
}

.origin-facts li::before {
  content: "›";
  position: absolute;
  top: -0.05em;
  left: 0;
  color: var(--color-sage);
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.4;
}

.service-hero .section-heading,
.references-hero .section-heading,
.references-section .section-heading {
  display: block;
  max-width: 960px;
}

.service-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.64fr);
  gap: 62px;
  align-items: end;
}

.service-hero-media {
  margin: 0;
}

.service-hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  box-shadow: 0 18px 34px rgba(44, 58, 51, 0.08);
}

.expertise-intro-section,
.expertise-process-section,
.expertise-field-section,
.expertise-methods-section,
.expertise-tools-section,
.expertise-deliverables-section,
.innovation-intro-section,
.innovation-chain-section,
.innovation-research-section,
.innovation-transfer-section {
  border-top: 1px solid var(--color-line);
}

.expertise-intro-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.68fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.expertise-intro-copy {
  max-width: 720px;
}

.expertise-intro-copy p {
  margin: 0;
  color: var(--color-muted);
}

.expertise-intro-copy p + p {
  margin-top: 22px;
}

.expertise-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.expertise-process-section .section-heading,
.expertise-methods-section .section-heading,
.expertise-tools-section .section-heading,
.innovation-chain-section .section-heading {
  display: block;
  max-width: 960px;
}

.expertise-process-card,
.expertise-method-card,
.expertise-tool-card {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 8px;
}

.expertise-process-card {
  min-height: 330px;
  padding: 26px;
}

.expertise-process-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--color-brick);
  font-family: var(--font-title);
}

.expertise-process-card h3,
.expertise-method-card h3,
.expertise-tool-card h3 {
  font-size: 1.15rem;
}

.expertise-process-card p,
.expertise-method-card p,
.expertise-tool-card p,
.expertise-field-copy p {
  margin: 18px 0 0;
  color: var(--color-muted);
}

.expertise-field-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1fr);
  gap: 58px;
  align-items: center;
}

.expertise-field-media {
  margin: 0;
}

.expertise-field-media img {
  width: 100%;
  object-fit: cover;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  box-shadow: 0 18px 34px rgba(44, 58, 51, 0.08);
  aspect-ratio: 4 / 3;
}

.expertise-field-copy {
  max-width: 640px;
}

.expertise-field-copy .eyebrow {
  color: var(--color-sage);
}

.expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.expertise-tags li {
  padding: 8px 12px;
  color: var(--color-forest);
  background: rgba(156, 165, 139, 0.14);
  border: 1px solid rgba(124, 132, 90, 0.2);
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 700;
}

.expertise-methods-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.expertise-method-card {
  min-height: 224px;
  overflow: hidden;
}

.expertise-method-media {
  margin: 0;
}

.expertise-method-media img {
  width: 100%;
  height: 132px;
  object-fit: cover;
}

.expertise-method-body {
  padding: 26px;
}

.expertise-tools-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.expertise-tool-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  padding: 24px;
  background: rgba(156, 165, 139, 0.12);
  border-color: rgba(124, 132, 90, 0.22);
  text-align: center;
}

.expertise-deliverables {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: 56px;
  padding: 34px;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  box-shadow: 0 18px 34px rgba(44, 58, 51, 0.08);
}

.expertise-deliverables ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.expertise-deliverables li {
  position: relative;
  padding-left: 22px;
  color: var(--color-muted);
}

.expertise-deliverables li::before {
  content: "";
  position: absolute;
  top: 0.76em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--color-brick);
  border-radius: 50%;
}

.innovation-chain {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.innovation-step {
  display: grid;
  grid-template-columns: minmax(360px, 0.7fr) minmax(0, 1fr);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  box-shadow: 0 18px 34px rgba(44, 58, 51, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.innovation-step:hover {
  border-color: rgba(44, 58, 51, 0.24);
  box-shadow: 0 24px 44px rgba(44, 58, 51, 0.09);
  transform: translateY(-3px);
}

.innovation-step-media {
  margin: 0;
  padding: 12px;
}

.innovation-step-media img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  border-radius: 6px;
}

.innovation-step-body {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-content: center;
  gap: 0 24px;
  padding: 30px 34px;
}

.innovation-step-body span {
  display: inline-flex;
  grid-row: 1 / span 2;
  margin-top: 4px;
  color: var(--color-brick);
  font-family: var(--font-title);
  font-size: 1.05rem;
}

.innovation-step-body h3 {
  position: relative;
  padding-bottom: 16px;
  font-size: 1.28rem;
}

.innovation-step-body h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 42px;
  height: 2px;
  background: var(--color-sage);
}

.innovation-step-body p {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--color-muted);
}

.innovation-research-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.innovation-research-copy {
  max-width: 740px;
}

.innovation-research-copy p {
  margin: 0;
  color: var(--color-muted);
}

.innovation-research-copy ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.innovation-research-copy li {
  position: relative;
  padding-left: 22px;
  color: var(--color-muted);
}

.innovation-research-copy li::before {
  content: "›";
  position: absolute;
  top: -0.05em;
  left: 0;
  color: var(--color-sage);
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.4;
}

.biostat-hero .breadcrumb {
  margin-bottom: 38px;
}

.biostat-hero-grid {
  max-width: 920px;
}

.biostat-hero-copy {
  max-width: 860px;
}

.biostat-hero-panel {
  display: grid;
  gap: 12px;
  padding: 24px;
  background: rgba(156, 165, 139, 0.12);
  border: 1px solid rgba(124, 132, 90, 0.22);
  border-radius: 8px;
}

.biostat-hero-panel > span {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 34px;
  color: var(--color-forest);
  font-size: 0.92rem;
  font-weight: 700;
}

.biostat-panel-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(124, 132, 90, 0.18);
  border-radius: 8px;
  flex: 0 0 auto;
}

.biostat-panel-icon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(18%) sepia(12%) saturate(797%) hue-rotate(91deg) brightness(96%) contrast(86%);
}

.biostat-hero-panel > span + span {
  border-top: 1px solid rgba(44, 58, 51, 0.12);
  padding-top: 12px;
}

.biostat-visual-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: 28px;
  align-items: center;
  max-width: 1180px;
  margin: 50px auto 0;
}

.biostat-hero-visual {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 46px;
  align-items: center;
  gap: 14px;
  max-width: none;
  margin: 0;
}

.biostat-visual-frame {
  --stat-progress-ratio: 0;
  position: relative;
  width: 100%;
  min-height: 240px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  box-shadow: 0 18px 34px rgba(44, 58, 51, 0.08);
}

.biostat-visual-frame::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  height: 4px;
  background: var(--color-lichen);
  transform: scaleX(var(--stat-progress-ratio));
  transform-origin: left center;
}

.biostat-visual-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0;
  transition: opacity 260ms ease;
}

.biostat-visual-frame img.is-active {
  opacity: 1;
}

.biostat-visual-caption {
  --stat-caption-bg: rgba(44, 58, 51, 0.58);
  position: absolute;
  right: auto;
  bottom: 14px;
  left: 14px;
  z-index: 1;
  display: flex;
  align-items: center;
  width: max-content;
  max-width: calc(100% - 28px);
  min-height: 42px;
  margin: 0;
  padding: 10px 16px;
  color: rgba(255, 255, 255, 0.94);
  background: var(--stat-caption-bg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(20, 30, 25, 0.16);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  backdrop-filter: blur(12px);
}

.biostat-visual-caption span {
  display: block;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.biostat-visual-caption span:not(.is-active) {
  position: absolute;
  pointer-events: none;
}

.biostat-visual-caption span.is-active {
  opacity: 1;
  transform: translateY(0);
}

.biostat-visual-arrow {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--color-forest);
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 50%;
  cursor: pointer;
}

.biostat-visual-arrow span {
  display: block;
  margin-top: -2px;
  font-size: 2rem;
  line-height: 1;
}

.biostat-visual-arrow:hover,
.biostat-visual-arrow:focus-visible {
  color: #fff;
  background: var(--color-forest);
  outline: none;
}

.biostat-visual-arrow:disabled {
  opacity: 0.45;
  cursor: default;
}

.biostat-visual-arrow:disabled:hover {
  color: var(--color-forest);
  background: #fff;
}

.biostat-pipeline-section,
.biostat-reading-section,
.biostat-impact-section,
.biostat-method-section,
.biostat-stack-section,
.biostat-output-section {
  border-top: 1px solid var(--color-line);
}

.biostat-section-kicker {
  max-width: 820px;
  margin-bottom: 40px;
}

.biostat-pipeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}

.biostat-pipeline li {
  position: relative;
  padding: 28px 24px 30px 0;
}

.biostat-pipeline li + li {
  padding-left: 24px;
  border-left: 1px solid var(--color-line);
}

.biostat-pipeline span,
.biostat-method-list span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--color-sage);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.biostat-pipeline h3,
.biostat-method-list h3 {
  font-size: 1.16rem;
}

.biostat-pipeline p,
.biostat-reading-copy p,
.biostat-impact-copy p,
.biostat-method-list p,
.biostat-stack-layout p {
  margin: 16px 0 0;
  color: var(--color-muted);
}

.biostat-reading-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.biostat-reading-copy {
  max-width: 740px;
}

.biostat-reading-copy p:first-child,
.biostat-impact-copy p:first-of-type,
.biostat-stack-layout p {
  margin-top: 0;
}

.biostat-impact-layout {
  display: grid;
  grid-template-columns: minmax(320px, 1.2fr) minmax(0, 1fr);
  gap: 58px;
  align-items: center;
}

.biostat-impact-media {
  margin: 0;
}

.biostat-impact-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  box-shadow: 0 18px 34px rgba(44, 58, 51, 0.08);
}

.biostat-impact-copy {
  max-width: 660px;
}

.biostat-impact-copy ul,
.biostat-output-layout ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.biostat-impact-copy li,
.biostat-output-layout li {
  position: relative;
  padding-left: 22px;
  color: var(--color-muted);
}

.biostat-impact-copy li::before,
.biostat-output-layout li::before {
  content: "›";
  position: absolute;
  top: -0.05em;
  left: 0;
  color: var(--color-sage);
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.4;
}

.biostat-method-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  counter-reset: biostat-method;
}

.biostat-method-list article {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 250px;
  padding: 30px 28px;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, rgba(156, 165, 139, 0.08) 100%);
  border: 1px solid var(--color-line);
  border-radius: 8px;
  box-shadow: 0 18px 34px rgba(44, 58, 51, 0.06);
  counter-increment: biostat-method;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.biostat-method-list article::before {
  content: counter(biostat-method, decimal-leading-zero);
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 22px;
  color: var(--color-sage);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.biostat-method-list article::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--color-sage);
  opacity: 0.72;
}

.biostat-method-list article:nth-child(2) {
  background: linear-gradient(180deg, #fff 0%, rgba(191, 183, 164, 0.12) 100%);
}

.biostat-method-list article:nth-child(2)::before {
  color: var(--color-taupe);
}

.biostat-method-list article:nth-child(2)::after {
  background: var(--color-taupe);
}

.biostat-method-list article:nth-child(3) {
  background: linear-gradient(180deg, #fff 0%, rgba(90, 109, 124, 0.08) 100%);
}

.biostat-method-list article:nth-child(3)::before {
  color: var(--color-slate);
}

.biostat-method-list article:nth-child(3)::after {
  background: var(--color-slate);
}

.biostat-method-list article:hover {
  border-color: rgba(44, 58, 51, 0.26);
  box-shadow: 0 24px 44px rgba(44, 58, 51, 0.09);
  transform: translateY(-3px);
}

.biostat-method-list h3 {
  position: relative;
  padding-bottom: 18px;
}

.biostat-method-list h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 2px;
  background: var(--color-brick);
}

.biostat-method-list p {
  max-width: none;
}

.biostat-stack-layout {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(280px, 2fr);
  gap: 52px;
  align-items: center;
}

.biostat-stack-layout h2 + p {
  max-width: 720px;
  margin-top: 22px;
}

.biostat-tool-logos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.biostat-tool-logos li {
  display: grid;
  place-items: center;
  min-height: 112px;
  padding: 8px;
}

.biostat-tool-logos img {
  max-width: 100%;
  max-height: 72px;
  object-fit: contain;
}

.biostat-output-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 56px;
  padding: 34px 0;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}

.biostat-output-layout ul {
  margin-top: 0;
}

.references-section {
  border-top: 1px solid var(--color-line);
}

.references-mosaic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}

.references-column {
  display: grid;
  gap: 20px;
}

.reference-tile {
  margin: 0;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  box-shadow: 0 18px 34px rgba(44, 58, 51, 0.06);
}

.reference-tile--soft {
  background: rgba(156, 165, 139, 0.12);
  border-color: rgba(124, 132, 90, 0.22);
}

.reference-tile span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--color-sage);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.reference-tile h3 {
  font-size: 1.1rem;
}

.reference-tile p {
  margin: 18px 0 0;
  color: var(--color-muted);
}

.reference-tile:not(.reference-tile-image) p:last-child {
  position: relative;
  margin-top: 22px;
  padding: 4px 18px 4px 20px;
  font-size: 14px;
  font-weight: bold;
  color: var(--color-forest);
  background: transparent;
  border-left: 2px solid var(--color-sage);
  border-radius: 0 6px 6px 0;
}

.reference-tile-image {
  overflow: hidden;
  min-height: 220px;
  padding: 0;
}

.reference-tile-image img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.reference-tile-image--wide img {
  aspect-ratio: 4 / 3;
}

.reference-tile-image--tall img {
  min-height: 300px;
}

.values-hero-layout {
  max-width: 1040px;
}

.values-hero-copy {
  max-width: 900px;
}

.values-hero-copy h1,
.values-hero-copy .page-lead {
  max-width: 920px;
}

.values-posture-section,
.values-grid-section,
.values-practice-section {
  border-top: 1px solid var(--color-line);
}

.values-posture {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: 56px;
  padding: 34px 0;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}

.values-posture-copy p {
  margin: 0;
  color: var(--color-muted);
}

.values-posture-copy p + p {
  margin-top: 18px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 22px;
}

.value-card {
  position: relative;
  grid-column: span 2;
  min-height: 270px;
  padding: 30px 28px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  box-shadow: 0 18px 34px rgba(44, 58, 51, 0.06);
}

.value-card:nth-child(1),
.value-card:nth-child(2) {
  grid-column: span 3;
}

.value-card::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -42px;
  width: 128px;
  height: 128px;
  background: rgba(156, 165, 139, 0.11);
  border-radius: 50%;
}

.value-card:nth-child(2)::after {
  background: rgba(191, 183, 164, 0.16);
}

.value-card:nth-child(3)::after {
  background: rgba(90, 109, 124, 0.1);
}

.value-card:nth-child(4)::after {
  background: rgba(166, 93, 82, 0.1);
}

.value-card:nth-child(5)::after {
  background: rgba(124, 132, 90, 0.12);
}

.value-card span {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--color-sage);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.value-card h3 {
  position: relative;
  padding-bottom: 16px;
}

.value-card h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 46px;
  height: 2px;
  background: var(--color-brick);
}

.value-card p {
  position: relative;
  z-index: 1;
  max-width: none;
  margin: 18px 0 0;
  color: var(--color-muted);
}

.values-practice-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.values-practice-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: values-practice;
}

.values-practice-list li {
  position: relative;
  padding: 24px 24px 24px 58px;
  background: rgba(156, 165, 139, 0.1);
  border: 1px solid rgba(124, 132, 90, 0.2);
  border-radius: 8px;
  counter-increment: values-practice;
}

.values-practice-list li::before {
  content: counter(values-practice);
  position: absolute;
  top: 24px;
  left: 22px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: #fff;
  background: var(--color-forest);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 800;
}

.values-practice-list h3 {
  font-size: 1.08rem;
}

.values-practice-list p {
  margin: 12px 0 0;
  color: var(--color-muted);
}

.methodology-section {
  border-top: 1px solid var(--color-line);
}

.method-intro {
  max-width: 760px;
  margin: 0 auto 44px;
  color: var(--color-forest);
  font-family: var(--font-title);
  font-size: clamp(1.24rem, 2vw, 1.48rem);
  line-height: 1.5;
  text-align: center;
}

.method-intro::after {
  content: "";
  display: block;
  width: 64px;
  height: 2px;
  margin: 22px auto 0;
  background: var(--color-sage);
}

.method-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 0;
}

.method-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 310px;
  padding: 28px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 8px;
}

.method-step::after {
  content: "›";
  position: absolute;
  top: 50%;
  right: -28px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 34px;
  height: 44px;
  color: var(--method-color, var(--color-forest));
  text-shadow: 0 8px 18px rgba(44, 58, 51, 0.18);
  font-family: var(--font-body);
  font-size: 2.35rem;
  font-weight: 700;
  line-height: 1;
  transform: translateY(-50%);
}

.method-step:last-child::after {
  display: none;
}

.method-number {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--method-color, var(--color-sage));
  font-family: var(--font-title);
  font-size: 0.95rem;
}

.method-step h3 {
  max-width: 190px;
  padding-bottom: 16px;
  border-bottom: 1px solid color-mix(in srgb, var(--method-color, var(--color-sage)) 42%, transparent);
  color: var(--method-color, var(--color-forest));
}

.method-step p {
  margin: 28px 0 0;
  color: var(--color-muted);
}

.method-step--cadrage {
  --method-color: var(--color-brick);
}

.method-step--collecte {
  --method-color: var(--color-sage);
}

.method-step--analyse {
  --method-color: var(--color-slate);
}

.method-step--restitution {
  --method-color: #c49a4a;
}

.method-details {
  display: grid;
  gap: 76px;
  margin-top: 86px;
}

.method-detail {
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.method-detail.is-reversed {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.88fr);
}

.method-detail.is-reversed .method-detail-media {
  order: 2;
}

.method-detail-media {
  margin: 0;
}

.method-detail-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  box-shadow: 0 18px 34px rgba(44, 58, 51, 0.08);
}

.method-detail-media--contain img {
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: 18px;
  background: #fff;
}

.method-detail-copy {
  max-width: 620px;
}

.method-detail-copy p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--color-muted);
}

.presentation-next {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-top: 0;
}

.presentation-next-link {
  display: grid;
  gap: 6px;
  min-height: 128px;
  padding: 24px;
  color: var(--color-forest);
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  text-decoration: none;
}

.presentation-next-link span {
  color: var(--color-sage);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.presentation-next-link strong {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 400;
}

.presentation-next-link:hover,
.presentation-next-link:focus-visible {
  color: #fff;
  background: var(--color-forest);
  outline: none;
}

.presentation-next-link:hover span,
.presentation-next-link:focus-visible span {
  color: rgba(255, 255, 255, 0.72);
}

.found-object-page {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(156, 165, 139, 0.16), rgba(251, 250, 246, 0) 46%),
    var(--color-paper);
}

.found-object-header,
.found-object-shell,
.found-object-footer {
  width: min(100% - 28px, 720px);
  margin-inline: auto;
}

.found-object-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0 0;
}

.found-object-brand {
  display: inline-flex;
  width: 250px;
}

.found-object-brand img {
  width: 100%;
  height: auto;
}

.found-object-kicker {
  color: var(--color-sage);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.found-object-shell {
  padding: 24px 0 54px;
}

.found-object-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(44, 58, 51, 0.1);
}

.found-object-content {
  padding: clamp(22px, 5vw, 38px);
}

.found-object-content h1 {
  max-width: 640px;
  margin-top: 10px;
  font-size: clamp(2rem, 8vw, 3rem);
  line-height: 1;
}

.found-object-media {
  margin: 0;
  background: var(--color-forest);
}

.found-object-media img {
  display: block;
  width: 100%;
  max-height: 238px;
  object-fit: cover;
}

.found-object-lead {
  margin: 18px 0 0;
  color: var(--color-muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.found-object-first-aid {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 18px;
  background: rgba(156, 165, 139, 0.14);
  border-left: 4px solid var(--color-sage);
  border-radius: 0 8px 8px 0;
}

.found-object-first-aid strong {
  color: var(--color-forest);
  font-size: 1.04rem;
}

.found-object-first-aid span {
  color: var(--color-muted);
  line-height: 1.58;
}

.found-object-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.found-object-actions li {
  display: grid;
  gap: 8px;
  align-content: start;
  justify-items: center;
  min-height: 118px;
  padding: 16px;
  background: var(--color-paper);
  border: 1px solid var(--color-line);
  border-radius: 8px;
  text-align: center;
}

.found-object-actions strong {
  color: var(--color-forest);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.found-object-actions span {
  color: var(--color-muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

.found-object-section {
  margin-top: 30px;
  padding-top: 28px;
  border-top: 1px solid var(--color-line);
}

.found-object-section h2 {
  font-size: clamp(1.45rem, 5vw, 1.9rem);
}

.found-object-section p {
  margin: 14px 0 0;
  color: var(--color-muted);
  line-height: 1.68;
}

.found-object-note-list {
  display: grid;
  gap: 14px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.found-object-note-list li {
  position: relative;
  padding-left: 22px;
  color: var(--color-muted);
  line-height: 1.62;
}

.found-object-note-list li::before {
  content: "\203A";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--color-sage);
  font-size: 1.42rem;
  font-weight: 800;
  line-height: 1;
}

.found-object-alert {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  padding: 20px;
  border: 1px solid rgba(166, 93, 82, 0.22);
  border-left: 4px solid var(--color-brick);
  border-radius: 0 8px 8px 0;
}

.found-object-alert strong {
  color: var(--color-forest);
}

.found-object-alert span {
  color: var(--color-muted);
  line-height: 1.58;
}

.found-object-contact {
  display: grid;
  gap: 14px;
  margin-top: 30px;
  padding: 22px;
  color: #fff;
  background: var(--color-forest);
  border-radius: 8px;
  font-style: normal;
}

.found-object-contact span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.found-object-contact strong {
  font-family: var(--font-title);
  font-size: 1.38rem;
  font-weight: 400;
}

.found-object-contact p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.58;
}

.found-object-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  padding: 12px 18px;
  color: var(--color-forest);
  background: #fff;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
}

.found-object-button:hover,
.found-object-button:focus-visible {
  color: #fff;
  background: var(--color-sage);
}

.found-object-footer {
  margin-top: -28px;
  padding-bottom: 36px;
  color: var(--color-muted);
  font-size: 0.86rem;
  text-align: center;
}

.found-object-footer a {
  color: var(--color-forest);
  text-decoration-color: var(--color-sage);
  text-underline-offset: 4px;
}

.legal-section {
  border-top: 1px solid var(--color-line);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(230px, 0.42fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.legal-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  display: grid;
  gap: 18px;
}

.legal-editor-card,
.legal-summary {
  padding: 24px;
  border-radius: 8px;
}

.legal-editor-card {
  background: #fff;
  border: 1px solid var(--color-line);
  box-shadow: 0 18px 34px rgba(44, 58, 51, 0.06);
}

.legal-editor-card h2 {
  font-size: 1.58rem;
}

.legal-editor-card .legal-list {
  margin-top: 18px;
}

.legal-editor-card .legal-list div {
  grid-template-columns: 1fr;
  gap: 4px;
}

.legal-editor-card .legal-list a {
  color: var(--color-forest);
  font-weight: 700;
  text-decoration-color: var(--color-sage);
  text-underline-offset: 4px;
}

.legal-summary {
  background: rgba(156, 165, 139, 0.12);
  border: 1px solid rgba(124, 132, 90, 0.22);
}

.legal-summary p:not(.eyebrow) {
  margin: 0;
  color: var(--color-forest);
}

.legal-content {
  display: grid;
  gap: 34px;
}

.legal-content article {
  padding-bottom: 34px;
  border-bottom: 1px solid var(--color-line);
}

.legal-content article:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.legal-content h2 {
  font-size: 1.72rem;
}

.legal-content p,
.legal-list {
  margin: 18px 0 0;
  color: var(--color-muted);
}

.legal-content a {
  color: var(--color-forest);
  font-weight: 700;
  text-decoration-color: var(--color-sage);
  text-underline-offset: 4px;
}

.legal-list {
  display: grid;
  gap: 14px;
}

.legal-list div {
  display: grid;
  grid-template-columns: minmax(150px, 0.38fr) minmax(0, 1fr);
  gap: 18px;
}

.legal-list dt {
  color: var(--color-forest);
  font-weight: 800;
}

.legal-list dd {
  margin: 0;
}

.contact-section {
  border-top: 1px solid var(--color-line);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.contact-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  display: grid;
  gap: 18px;
}

.contact-card,
.contact-form-panel,
.contact-result {
  border-radius: 8px;
}

.contact-card {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--color-line);
  box-shadow: 0 18px 34px rgba(44, 58, 51, 0.06);
}

.contact-card--primary {
  background: rgba(156, 165, 139, 0.12);
  border-color: rgba(124, 132, 90, 0.22);
}

.contact-card h2 {
  font-size: 1.58rem;
}

.contact-card address {
  margin-top: 18px;
  color: var(--color-muted);
  font-style: normal;
  line-height: 1.7;
}

.contact-identity-list {
  margin-top: 18px;
}

.contact-identity-list div {
  grid-template-columns: 1fr;
  gap: 4px;
}

.contact-email,
.contact-card a {
  display: inline-flex;
  margin-top: 16px;
  color: var(--color-forest);
  font-weight: 700;
  text-decoration-color: var(--color-sage);
  text-underline-offset: 4px;
}

.contact-card .contact-identity-list a {
  display: inline;
  margin-top: 0;
}

.contact-points {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--color-muted);
}

.contact-form-panel {
  padding: 32px;
  background: #fff;
  border: 1px solid var(--color-line);
  box-shadow: 0 18px 34px rgba(44, 58, 51, 0.06);
}

.contact-form-heading {
  display: block;
  margin-bottom: 26px;
}

.contact-form-heading h2 {
  font-size: 1.72rem;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--color-forest);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--color-ink);
  background: var(--color-bg);
  border: 1px solid var(--color-line);
  border-radius: 8px;
  font: inherit;
}

.contact-form textarea {
  min-height: 190px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(124, 132, 90, 0.24);
  border-color: var(--color-sage);
}

.form-consent {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  color: var(--color-muted);
  font-weight: 500;
}

.form-consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.form-honeypot {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.turnstile-slot {
  min-height: 0;
}

.turnstile-slot.cf-turnstile {
  min-height: 65px;
}

.contact-form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 8px;
}

.contact-result {
  max-width: 780px;
  padding: 34px;
  background: #fff;
  border: 1px solid var(--color-line);
  box-shadow: 0 18px 34px rgba(44, 58, 51, 0.06);
}

.contact-result--success {
  border-color: rgba(124, 132, 90, 0.38);
}

.site-footer {
  display: grid;
  align-items: center;
  justify-items: center;
  gap: 14px;
  width: min(100% - 40px, var(--content-width));
  margin: 0 auto;
  padding: 44px 0 52px;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

body::after {
  content: "";
  display: block;
  height: 0;
}

.site-footer {
  position: relative;
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100vw - var(--content-width)) / 2));
  padding-left: max(20px, calc((100vw - var(--content-width)) / 2));
  background: var(--color-forest);
}

.footer-brand {
  display: grid;
  place-items: center;
  padding-bottom: 50px;
  padding-top: 35px;
}

.site-footer img {
  width: var(--footer-logo-width);
  height: auto;
  filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.34));
}

.site-footer p {
  margin: 0;
}

.footer-legal {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.7rem;
}

.site-footer a {
  color: #fff;
  text-decoration-color: var(--color-lichen);
  text-underline-offset: 4px;
}

.maintenance-page {
  min-height: 100vh;
  background: var(--color-forest);
}

.maintenance-header {
  position: relative;
  background: rgba(251, 250, 246, 0.96);
}

.maintenance-header .header-inner {
  justify-content: center;
}

.maintenance-hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - var(--header-height));
}

.maintenance-hero-media,
.maintenance-hero-media img,
.maintenance-hero-shade {
  position: absolute;
  inset: 0;
}

.maintenance-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.maintenance-hero-shade {
  background:
    linear-gradient(90deg, rgba(20, 30, 25, 0.9) 0%, rgba(20, 30, 25, 0.78) 52%, rgba(20, 30, 25, 0.38) 100%),
    linear-gradient(0deg, rgba(20, 30, 25, 0.46), rgba(20, 30, 25, 0.14));
}

.maintenance-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.42fr);
  align-items: center;
  width: min(100% - 40px, var(--content-width));
  min-height: calc(100vh - var(--header-height));
  margin: 0 auto;
  gap: 64px;
  padding: clamp(70px, 9vw, 120px) 0;
}

.maintenance-copy {
  max-width: 720px;
}

.maintenance-copy h1,
.maintenance-copy .eyebrow,
.maintenance-copy .page-lead,
.maintenance-copy p {
  color: #fff;
}

.maintenance-copy h1 {
  font-size: clamp(2.45rem, 6vw, 4.2rem);
}

.maintenance-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 22px 0 0;
  text-shadow: 0 1px 22px rgba(0, 0, 0, 0.35);
}

.maintenance-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.maintenance-actions .button-primary {
  color: var(--color-forest);
  background: #fff;
}

.maintenance-status {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 34px;
  color: #fff;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.maintenance-status img {
  width: 118px;
  margin-bottom: 26px;
}

.maintenance-status p {
  margin: 0;
}

.maintenance-status p:last-child {
  max-width: 260px;
  font-family: var(--font-title);
  font-size: 1.45rem;
  line-height: 1.35;
}

.maintenance-footer {
  margin-top: 0;
}

.spectroware-hero {
  padding-bottom: 74px;
}

.spectroware-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(420px, 1fr);
  gap: clamp(76px, 8vw, 118px);
  align-items: center;
}

.spectroware-hero-copy h1 {
  font-size: clamp(3.2rem, 7vw, 5.6rem);
}

.spectroware-subtitle {
  margin: 14px 0 0;
  color: var(--color-forest);
  font-size: 1.34rem;
  font-weight: 700;
}

.spectroware-hero-media {
  justify-self: center;
  width: min(100%, 470px);
  margin: 0;
}

.spectroware-hero-media img,
.spectroware-interface-media img {
  width: 100%;
  border-radius: 8px;
}

.spectroware-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.spectroware-badges li {
  position: relative;
  padding: 8px 12px 8px 30px;
  color: var(--color-forest);
  background: rgba(156, 165, 139, 0.14);
  border: 1px solid rgba(124, 132, 90, 0.18);
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 800;
}

.spectroware-badges li::before,
.spectroware-check-list li::before {
  content: "";
  position: absolute;
  left: 12px;
  width: 8px;
  height: 12px;
  border-right: 2px solid var(--color-sage);
  border-bottom: 2px solid var(--color-sage);
  transform: rotate(42deg);
}

.spectroware-badges li::before {
  top: 10px;
}

.spectroware-intro-section,
.spectroware-features-section,
.spectroware-interface-section,
.spectroware-workflow-section,
.spectroware-download-section,
.spectroware-expertise-section,
.spectroware-support-section {
  border-top: 1px solid var(--color-line);
}

.spectroware-intro-section .section-heading,
.spectroware-features-section .section-heading,
.spectroware-interface-section .section-heading,
.spectroware-workflow-section .section-heading,
.spectroware-download-section .section-heading {
  display: block;
  max-width: 920px;
}

.spectroware-download-note {
  max-width: 860px;
  margin: 18px 0 0;
  color: var(--color-muted);
}

.spectroware-reading {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
}

.spectroware-reading p,
.spectroware-download-grid p,
.spectroware-expertise-section p,
.spectroware-support-panel p {
  margin: 0;
  color: var(--color-muted);
}

.spectroware-feature-list {
  display: grid;
  gap: 24px;
}

.spectroware-feature-card,
.spectroware-download-grid article {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  box-shadow: 0 18px 34px rgba(44, 58, 51, 0.05);
}

.spectroware-feature-card {
  display: grid;
  grid-template-columns: minmax(340px, 440px) minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
}

.spectroware-feature-card:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 440px);
}

.spectroware-feature-card:nth-child(even) figure {
  order: 2;
}

.spectroware-feature-card > div {
  align-self: start;
  padding: 30px 32px;
}

.spectroware-feature-card figure {
  margin: 0;
  padding: 12px;
  background: rgba(156, 165, 139, 0.08);
}

.spectroware-feature-card figure img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  border: 1px solid rgba(44, 58, 51, 0.16);
}

.spectroware-feature-card:nth-child(odd) figure img {
  border-radius: 6px;
}

.spectroware-feature-card:nth-child(even) figure img {
  border-radius: 6px;
}

.spectroware-download-grid article {
  padding: 26px;
}

.spectroware-feature-card h3 {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.42rem;
}

.spectroware-feature-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  background: var(--color-forest);
  border-radius: 8px;
}

.spectroware-feature-icon img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
}

.spectroware-feature-card p {
  margin: 18px 0 0;
  color: var(--color-muted);
}

.spectroware-interface-media {
  margin: 0;
}

.spectroware-interface-media {
  max-width: 980px;
  margin: 0 auto;
}

.spectroware-annotated-screen {
  position: relative;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  box-shadow: 0 18px 34px rgba(44, 58, 51, 0.08);
}

.spectroware-annotated-screen img {
  border: 1px solid rgba(44, 58, 51, 0.12);
}

.spectroware-check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.spectroware-check-list li {
  position: relative;
  padding-left: 32px;
  color: var(--color-muted);
}

.spectroware-check-list li::before {
  top: 5px;
  left: 2px;
}

.spectroware-timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  overflow: hidden;
}

.spectroware-timeline li {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 230px;
  padding: 26px;
  text-align: center;
}

.spectroware-timeline li + li {
  border-left: 1px solid var(--color-line);
}

.spectroware-timeline li + li::before {
  content: "";
  position: absolute;
  top: 36px;
  left: -9px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-top: 1px solid var(--color-line);
  border-right: 1px solid var(--color-line);
  transform: rotate(45deg);
}

.spectroware-timeline span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.spectroware-timeline span img {
  width: 34px;
  height: 34px;
  filter: brightness(0) saturate(100%) invert(47%) sepia(14%) saturate(710%) hue-rotate(31deg) brightness(96%) contrast(86%);
}

.spectroware-timeline p {
  margin: 16px 0 0;
  color: var(--color-muted);
}

.spectroware-expertise-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
  gap: 54px;
  align-items: start;
}

.spectroware-download-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.spectroware-download-grid article {
  display: grid;
  justify-items: center;
  text-align: center;
}

.spectroware-download-icon {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  background: rgba(156, 165, 139, 0.14);
  border: 1px solid rgba(124, 132, 90, 0.2);
  border-radius: 8px;
}

.spectroware-download-icon img {
  width: 34px;
  height: 34px;
  filter: brightness(0) saturate(100%) invert(18%) sepia(12%) saturate(797%) hue-rotate(91deg) brightness(96%) contrast(86%);
}

.spectroware-download-grid p {
  margin-top: 14px;
}

.spectroware-download-grid .button {
  margin-top: 24px;
}

.spectroware-expertise-section .button {
  margin-top: 24px;
}

.spectroware-expertise-section {
  width: 100%;
  max-width: none;
  padding-top: 70px;
  padding-right: max(20px, calc((100vw - var(--content-width)) / 2));
  padding-bottom: 70px;
  padding-left: max(20px, calc((100vw - var(--content-width)) / 2));
  background:
    linear-gradient(90deg, rgba(44, 58, 51, 0.96), rgba(44, 58, 51, 0.86)),
    var(--color-forest);
  color: #fff;
}

.spectroware-expertise-section h2,
.spectroware-expertise-section .eyebrow,
.spectroware-expertise-section p {
  color: #fff;
}

.spectroware-expertise-section .button-primary {
  color: var(--color-forest);
  background: #fff;
}

.spectroware-support-panel {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.spectroware-support-panel h2 {
  margin: 0 auto;
}

.spectroware-support-panel p {
  margin-top: 22px;
}

.spectroware-support-actions {
  display: grid;
  justify-items: center;
  gap: 28px;
  margin-top: 32px;
}

.spectroware-coffee {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  color: #fff;
  background: var(--color-brick);
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
}

.spectroware-coffee:hover,
.spectroware-coffee:focus-visible {
  background: var(--color-forest);
  outline: none;
}

.spectroware-logo-link {
  display: inline-flex;
  width: min(260px, 72vw);
}

@media (max-width: 1040px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: var(--header-height);
    right: 20px;
    left: auto;
    display: none;
    width: max-content;
    min-width: 226px;
    max-width: calc(100vw - 40px);
    padding: 14px;
    background: #fff;
    border: 1px solid var(--color-line);
    border-radius: 8px;
    box-shadow: 0 18px 36px rgba(44, 58, 51, 0.12);
  }

  .site-header.is-open .site-nav {
    display: block;
  }

  .nav-list {
    display: grid;
    gap: 4px;
    align-items: stretch;
    width: 100%;
  }

  .nav-link {
    justify-content: space-between;
    width: 100%;
    min-height: 46px;
  }

  .submenu {
    position: static;
    display: none;
    min-width: 0;
    margin: 2px 0 8px;
    padding: 4px;
    background: rgba(156, 165, 139, 0.12);
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .has-submenu.is-open .submenu {
    display: block;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 44px;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero-panel {
    display: grid;
    grid-template-columns: 108px minmax(0, 1fr);
    gap: 28px;
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
    padding-top: 32px;
  }

  .hero-panel img {
    width: 108px;
    margin: 0;
  }

  .hero-panel-quote {
    padding-top: 0;
    border-top: 0;
  }

  .section-heading,
  .split-section,
  .origin-content {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .page-hero > .section-heading.page-heading {
    grid-template-columns: 1fr;
    max-width: 860px;
  }

  .intro-grid {
    margin-left: 0;
  }

  .origin-content {
    margin-left: 0;
  }

  .origin-hero-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .origin-hero-logo {
    justify-self: start;
    width: 132px;
    height: auto;
    max-height: none;
  }


  .service-hero-layout,
  .biostat-hero-grid,
  .biostat-visual-layout,
  .expertise-intro-grid,
  .innovation-research-layout,
  .biostat-reading-grid,
  .biostat-impact-layout,
  .biostat-stack-layout,
  .expertise-field-layout,
  .expertise-deliverables,
  .values-posture,
  .values-practice-layout,
  .biostat-output-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .biostat-hero-panel {
    max-width: 540px;
  }

  .biostat-pipeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .biostat-pipeline li:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--color-line);
  }

  .biostat-pipeline li:nth-child(4) {
    border-top: 1px solid var(--color-line);
  }

  .biostat-method-list {
    grid-template-columns: 1fr;
  }

  .biostat-method-list article {
    min-height: 0;
  }

  .service-hero-media {
    max-width: 540px;
  }

  .expertise-process-grid,
  .expertise-tools-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .expertise-process-card,
  .expertise-tool-card {
    min-height: 0;
  }

  .expertise-methods-layout {
    grid-template-columns: 1fr;
  }

  .expertise-method-card {
    min-height: 0;
  }

  .references-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .value-card,
  .value-card:nth-child(1),
  .value-card:nth-child(2) {
    grid-column: auto;
    min-height: 0;
  }

  .method-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .method-step {
    min-height: 0;
  }

  .method-step::after {
    display: none;
  }

  .method-detail,
  .method-detail.is-reversed {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .method-detail.is-reversed .method-detail-media {
    order: 0;
  }

  .legal-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .legal-sidebar,
  .contact-sidebar {
    position: static;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .maintenance-hero-inner {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 44px;
  }

  .maintenance-status {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    align-items: center;
    gap: 28px;
    padding-top: 32px;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
    border-left: 0;
  }

  .maintenance-status img {
    width: 92px;
    margin: 0;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 72px;
  }

  .header-inner,
  .section {
    width: min(100% - 28px, var(--content-width));
  }

  .hero.section {
    width: 100%;
  }

  .brand,
  .brand img {
    width: var(--header-logo-width-mobile);
  }

  .section {
    padding: 58px 0;
  }

  .hero-inner {
    width: min(100% - 28px, var(--content-width));
    padding: 50px 0;
  }

  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-panel {
    grid-template-columns: 1fr;
  }

  .hero-panel-quote {
    padding-top: 0;
    border-top: 0;
  }

  .hero-quote {
    padding: 26px 18px 40px 22px;
  }

  .hero-quote::before,
  .hero-quote::after {
    font-size: 4.7rem;
  }

  .hero-quote::after {
    bottom: -40px;
  }

  .hero-quote p {
    font-size: 1.12rem;
  }

  .hero-signature {
    font-size: 0.78rem;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card {
    min-height: 0;
    padding: 22px;
  }

  .service-hero-media {
    max-width: none;
  }

  .biostat-hero-visual {
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    gap: 8px;
    margin-top: 0;
    max-width: none;
  }

  .biostat-visual-layout {
    margin-top: 34px;
  }

  .biostat-visual-arrow {
    width: 40px;
    height: 40px;
  }

  .biostat-visual-arrow span {
    font-size: 1.75rem;
  }

  .biostat-visual-caption {
    bottom: 10px;
    left: 10px;
    max-width: calc(100% - 20px);
    min-height: 38px;
    padding: 8px 12px;
    font-size: 0.74rem;
    line-height: 1.35;
  }

  .biostat-visual-caption span {
    white-space: normal;
  }

  .biostat-hero-panel {
    max-width: none;
    padding: 20px;
  }

  .biostat-pipeline {
    grid-template-columns: 1fr;
  }

  .biostat-pipeline li,
  .biostat-pipeline li + li {
    padding: 22px 0;
    border-left: 0;
    border-top: 1px solid var(--color-line);
  }

  .biostat-pipeline li:first-child {
    border-top: 0;
  }

  .biostat-tool-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .biostat-tool-logos li {
    min-height: 0;
    padding: 8px;
  }

  .biostat-tool-logos img {
    max-height: 64px;
  }

  .biostat-method-list article {
    padding: 22px;
  }

  .biostat-output-layout {
    padding: 24px 0;
  }

  .expertise-process-grid,
  .expertise-tools-grid {
    grid-template-columns: 1fr;
  }

  .expertise-process-card,
  .expertise-tool-card,
  .expertise-deliverables {
    padding: 22px;
  }

  .expertise-method-body {
    padding: 22px;
  }

  .expertise-method-media img {
    height: 124px;
  }

  .innovation-chain {
    grid-template-columns: 1fr;
  }

  .innovation-step {
    display: block;
  }

  .innovation-step-body {
    display: block;
    padding: 22px;
  }

  .innovation-step-body span {
    margin-bottom: 14px;
  }

  .innovation-step-media img {
    height: 220px;
    min-height: 0;
  }

  .expertise-tags {
    gap: 8px;
  }

  .references-mosaic {
    grid-template-columns: 1fr;
  }

  .values-grid,
  .values-practice-list {
    grid-template-columns: 1fr;
  }

  .value-card,
  .values-practice-list li {
    padding: 22px;
  }

  .contact-form-panel,
  .contact-card,
  .contact-result {
    padding: 22px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-actions {
    display: grid;
    align-items: stretch;
  }

  .values-practice-list li {
    padding-left: 54px;
  }

  .reference-tile {
    padding: 22px;
  }

  .reference-tile-image {
    min-height: 190px;
  }

  .reference-tile-image img {
    min-height: 190px;
  }

  .method-flow {
    grid-template-columns: 1fr;
  }

  .method-step {
    padding: 22px;
  }

  .method-details {
    gap: 58px;
    margin-top: 58px;
  }

  .page-hero {
    padding-top: 42px;
  }

  .page-hero-image {
    margin-top: 34px;
  }

  .founder-card {
    padding: 22px;
  }

  .founder-card-inner {
    grid-template-columns: 1fr;
  }

  .founder-photo {
    min-height: 360px;
    order: -1;
  }

  .presentation-next {
    grid-template-columns: 1fr;
  }

  .logo-gallery-shell {
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    gap: 8px;
  }

  .logo-gallery-arrow {
    width: 40px;
    height: 40px;
  }

  .logo-gallery-track {
    gap: 12px;
  }

  .logo-gallery-track li {
    width: 148px;
    height: 92px;
    padding: 14px;
  }


  .legal-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .found-object-header,
  .found-object-shell,
  .found-object-footer {
    width: min(100% - 28px, 720px);
  }

  .found-object-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .found-object-shell {
    padding-top: 18px;
  }

  .found-object-media img {
    max-height: 188px;
  }

  .found-object-actions {
    grid-template-columns: 1fr;
  }

  .found-object-actions li {
    min-height: 0;
  }

  .maintenance-hero-inner {
    width: min(100% - 28px, var(--content-width));
    padding: 50px 0;
  }

  .maintenance-actions {
    display: grid;
  }

  .maintenance-status {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1040px) {
  .spectroware-hero-grid,
  .spectroware-reading,
  .spectroware-expertise-section {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .spectroware-hero-media {
    max-width: 760px;
  }

  .spectroware-feature-card,
  .spectroware-download-grid {
    grid-template-columns: 1fr;
  }

  .spectroware-feature-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .spectroware-feature-card:nth-child(even) figure {
    order: 0;
  }

  .spectroware-feature-card:nth-child(odd) figure img,
  .spectroware-feature-card:nth-child(even) figure img {
    min-height: 260px;
    border-width: 1px;
    border-radius: 6px;
  }

  .spectroware-timeline {
    grid-template-columns: 1fr;
  }

  .spectroware-timeline li {
    min-height: 0;
  }

  .spectroware-timeline li + li {
    border-top: 1px solid var(--color-line);
    border-left: 0;
  }

  .spectroware-timeline li + li::before {
    top: -9px;
    left: calc(50% - 8px);
    transform: rotate(135deg);
  }
}

@media (max-width: 680px) {
  .spectroware-hero {
    padding-bottom: 58px;
  }

  .spectroware-hero-copy h1 {
    font-size: 3rem;
  }

  .spectroware-subtitle {
    font-size: 1.08rem;
  }

  .spectroware-download-grid {
    grid-template-columns: 1fr;
  }

  .spectroware-download-grid article {
    padding: 22px;
  }

  .spectroware-feature-card > div {
    padding: 22px;
  }

  .spectroware-feature-card:nth-child(odd) figure img,
  .spectroware-feature-card:nth-child(even) figure img {
    min-height: 220px;
  }

  .spectroware-expertise-section {
    padding-right: max(14px, calc((100vw - var(--content-width)) / 2));
    padding-left: max(14px, calc((100vw - var(--content-width)) / 2));
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-carousel img {
    transition: none;
    transform: none;
  }
}
