/* Home hero */
.hero-home {
  padding-top: 32px;
}

.hero-home__content {
  position: relative;
  display: grid;
  min-height: min(650px, calc(100vh - 160px));
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: stretch;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.hero-home__copy {
  z-index: 2;
  display: flex;
  grid-column: 1 / span 6;
  grid-row: 1;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(64px, 7vw, 104px) clamp(28px, 3.8vw, 56px);
}

.hero-home__copy h1 {
  max-width: 10.5ch;
}

.hero-home__copy > p:not(.eyebrow) {
  max-width: 52ch;
  margin-top: 28px;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.45vw, 1.24rem);
  line-height: 1.72;
}

.hero-home__media {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  grid-row: 1;
  min-width: 0;
}

.hero-home__media::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgb(21 50 68 / 10%);
  content: "";
  pointer-events: none;
}

.hero-home__media > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.hero-home__media figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  min-width: 286px;
  gap: 2px;
  padding: 18px 22px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: rgb(255 255 255 / 94%);
}

.hero-home__media figcaption span,
.image-label {
  color: var(--cyan-deep);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-home__media figcaption strong {
  color: var(--navy);
  font-size: 0.82rem;
  letter-spacing: 0.035em;
}

.hero-home > .metric-strip {
  margin-top: 32px;
}

/* Home product focus */
.product-focus {
  padding-top: calc(var(--section-space) + 16px);
}

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

.product-line-card {
  min-width: 0;
  border-top: 3px solid var(--navy);
}

.product-line-card__visual {
  position: relative;
  display: grid;
  aspect-ratio: 1000 / 620;
  place-items: center;
  overflow: hidden;
  border-inline: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.product-line-card__visual img,
.product-line-row__image img,
.category-hero__visual img,
.product-hero__visual img {
  z-index: 1;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  transform: translate(var(--product-x, 0), var(--product-y, 0));
  transition: scale 260ms ease;
}

.product-line-card__visual:hover img,
.product-line-row__image:hover img {
  scale: 1;
}

.product-line-card__body {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  padding: 28px 0 0;
}

.product-line-card__index {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--cyan-deep);
  color: var(--cyan-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.product-line-card h3 {
  font-size: clamp(1.62rem, 2.35vw, 2.35rem);
}

.product-line-card h3 a {
  text-decoration: none;
}

.product-line-card__body p {
  max-width: 54ch;
  margin-top: 15px;
  color: var(--muted);
}

.product-line-card .text-link {
  margin-top: 18px;
}

/* Home about feature */
.about-feature {
  background: var(--paper);
}

.about-feature__grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(320px, 5fr);
  gap: clamp(48px, 7vw, 104px);
  align-items: center;
}

.about-feature__image {
  position: relative;
  min-height: 560px;
}

.about-feature__image img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: contain;
  object-position: center;
}

.image-label {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 13px 16px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--white);
}

.about-feature__copy > p:not(.eyebrow) {
  max-width: 56ch;
  margin-top: 28px;
  color: var(--muted);
  font-size: 1.04rem;
}

.about-feature__copy .button {
  margin-top: 36px;
}

/* Home capability */
.capability-section {
  color: var(--white);
  background: var(--navy);
}

.capability-section .section-heading--light h2,
.capability-section .section-heading--light > p,
.quality-detail .section-heading--light h2,
.quality-detail .section-heading--light > p {
  color: var(--white);
}

.capability-section .eyebrow,
.quality-detail .eyebrow {
  color: #8bd9e9;
}

.capability-section .eyebrow span,
.quality-detail .eyebrow span {
  color: #8bd9e9;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: 1px solid rgb(255 255 255 / 28%);
}

.capability {
  min-height: 292px;
  padding: 30px clamp(22px, 2.8vw, 38px) 34px;
  border-left: 1px solid rgb(255 255 255 / 28%);
}

.capability:last-child {
  border-right: 1px solid rgb(255 255 255 / 28%);
}

.capability > span {
  display: block;
  margin-bottom: 54px;
  color: #8bd9e9;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.capability h3 {
  color: var(--white);
}

.capability p {
  margin-top: 16px;
  color: #c8d7dc;
  font-size: 0.9rem;
  line-height: 1.68;
}

.capability-photo {
  position: relative;
  aspect-ratio: 1600 / 650;
  margin-top: 40px;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 24%);
}

.capability-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

/* Home products, quality and news */
.selected-products,
.latest-news {
  background: var(--white);
}

.quality-section {
  background: var(--cyan-pale);
}

.quality-section__grid {
  display: grid;
  grid-template-columns: minmax(320px, 5fr) minmax(0, 7fr);
  gap: clamp(64px, 9vw, 136px);
  align-items: center;
}

.quality-section__intro > p:not(.eyebrow) {
  max-width: 54ch;
  margin-top: 28px;
  color: var(--muted);
}

.quality-section__intro .text-link {
  margin-top: 28px;
}

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

.certificate-card {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  border: 1px solid var(--line-strong);
  background: var(--white);
}

.certificate-card img {
  width: 100%;
  height: min(480px, 42vw);
  padding: clamp(18px, 2.4vw, 34px);
  object-fit: contain;
  object-position: center;
}

.certificate-card figcaption {
  display: grid;
  gap: 2px;
  padding: 18px;
  border-top: 1px solid var(--line);
}

.certificate-card figcaption strong {
  color: var(--navy);
  font-size: 0.86rem;
}

.certificate-card figcaption span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

/* Shared page intros */
.page-intro {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(280px, 4fr);
  gap: clamp(48px, 9vw, 136px);
  align-items: end;
  padding-block: clamp(52px, 6vw, 80px);
  border-bottom: 1px solid var(--line);
}

.page-intro h1 {
  max-width: 12ch;
}

/* Products overview */
.product-line-list {
  padding-block: 24px var(--section-space);
}

.product-line-row {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
  padding-block: clamp(56px, 7vw, 96px);
  border-bottom: 1px solid var(--line);
}

.product-line-row__image {
  position: relative;
  display: grid;
  aspect-ratio: 1000 / 620;
  grid-column: 1 / span 7;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
}

.product-line-row__content {
  grid-column: 9 / -1;
}

.product-line-row:nth-child(even) .product-line-row__image {
  grid-column: 6 / -1;
  grid-row: 1;
}

.product-line-row:nth-child(even) .product-line-row__content {
  grid-column: 1 / span 4;
  grid-row: 1;
}

.product-line-row__content > span {
  display: inline-grid;
  width: 40px;
  height: 40px;
  margin-bottom: 24px;
  place-items: center;
  border: 1px solid var(--cyan-deep);
  color: var(--cyan-deep);
  font-size: 0.68rem;
  font-weight: 700;
}

.product-line-row h2 {
  font-size: clamp(2rem, 3.2vw, 3.15rem);
}

.product-line-row h2 a {
  text-decoration: none;
}

.product-line-row__content > p {
  margin-top: 20px;
  color: var(--muted);
}

.product-line-row__content ul {
  margin-top: 24px;
  border-top: 1px solid var(--line);
  list-style: none;
}

.product-line-row__content li {
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 600;
}

.product-line-row__content li a {
  display: grid;
  min-height: 42px;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding-block: 8px;
  color: inherit;
  text-decoration: none;
}

.product-line-row__content li a > span {
  color: var(--cyan-deep);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
}

.product-line-row__content li a:hover,
.product-line-row__content li a:focus-visible {
  color: var(--cyan-deep);
}

.product-line-row__content .button {
  margin-top: 28px;
}

.product-reference,
.category-products {
  background: var(--paper);
}

.series-comparison-section {
  border-top: 1px solid var(--line);
  background: var(--white);
}

.series-comparison-compact {
  margin-top: clamp(88px, 10vw, 152px);
  padding-top: clamp(64px, 7vw, 104px);
  border-top: 1px solid var(--line-strong);
}

.series-matrix__scroll-note {
  display: none;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.72rem;
}

.series-matrix {
  contain: paint;
  overflow-x: auto;
  border-top: 2px solid var(--navy);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--white);
  overscroll-behavior-inline: contain;
  scrollbar-color: var(--cyan-deep) var(--paper);
  scrollbar-gutter: stable;
}

.series-matrix:focus-visible {
  outline-offset: 4px;
}

.series-matrix table {
  width: 100%;
  min-width: 1120px;
  border-collapse: collapse;
  table-layout: fixed;
}

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

.series-matrix__col-series { width: 280px; }
.series-matrix__col-structure { width: 150px; }
.series-matrix__col-function { width: 180px; }
.series-matrix__col-element { width: 140px; }
.series-matrix__col-material { width: 140px; }
.series-matrix__col-models { width: 110px; }
.series-matrix__col-action { width: 120px; }

.series-matrix thead th {
  height: 54px;
  padding: 12px 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--navy);
  color: var(--muted);
  background: var(--paper);
  font-size: 0.66rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.09em;
  text-align: left;
  text-transform: uppercase;
}

.series-matrix tbody th,
.series-matrix tbody td {
  height: 122px;
  padding: 14px 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  background: var(--white);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.48;
  text-align: left;
  vertical-align: middle;
}

.series-matrix tbody tr:last-child th,
.series-matrix tbody tr:last-child td {
  border-bottom: 0;
}

.series-matrix thead th:first-child,
.series-matrix tbody th {
  position: sticky;
  left: 0;
  z-index: 2;
}

.series-matrix thead th:first-child {
  z-index: 3;
}

.series-matrix tbody tr:hover th,
.series-matrix tbody tr:hover td {
  background: #f8fbfc;
}

.series-matrix__identity {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  text-decoration: none;
}

.series-matrix__identity > span:last-child {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.series-matrix__identity small {
  color: var(--cyan-deep);
  font-size: 0.61rem;
  letter-spacing: 0.12em;
}

.series-matrix__identity strong {
  color: var(--navy);
  font-family: var(--display);
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}

.series-matrix__identity em {
  display: -webkit-box;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.series-matrix__thumb {
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  padding: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.series-matrix__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: translate(var(--product-x, 0), var(--product-y, 0));
}

.series-matrix__count {
  display: block;
  color: var(--navy);
  font-family: var(--display);
  font-size: 1.65rem;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.series-matrix td:nth-last-child(2) span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.67rem;
}

.series-matrix__action {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  color: var(--cyan-deep);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.series-matrix__action svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

/* Category pages */
.category-hero {
  display: grid;
  grid-template-columns: minmax(320px, 5fr) minmax(0, 7fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  padding-block: clamp(48px, 5.5vw, 76px);
}

.category-hero__copy h1 {
  max-width: 11ch;
  font-size: clamp(2.8rem, 4.4vw, 4.2rem);
}

.category-hero__copy > p:not(.eyebrow) {
  max-width: 55ch;
  margin-top: 28px;
  color: var(--muted);
  font-size: 1.04rem;
}

.category-hero__copy .button {
  margin-top: 36px;
}

.category-hero__visual {
  position: relative;
  display: grid;
  aspect-ratio: 1000 / 620;
  min-width: 0;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
}

.category-catalog {
  border-top: 1px solid var(--line);
}

.category-index {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--navy);
  border-left: 1px solid var(--line);
  list-style: none;
}

.category-index li {
  min-height: 112px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.category-index li > a {
  display: grid;
  min-height: inherit;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
  padding: 24px 20px;
  color: inherit;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease;
}

.category-index li > a:hover,
.category-index li > a:focus-visible {
  color: var(--cyan-deep);
  background: var(--paper);
}

.category-index span {
  color: var(--cyan-deep);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.category-index strong {
  color: var(--navy);
  font-size: 0.9rem;
  line-height: 1.42;
}

.category-index a:hover strong,
.category-index a:focus-visible strong {
  color: inherit;
}

.category-index em {
  align-self: end;
  color: var(--muted);
  font-size: 0.6rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.category-index--medical {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.category-directory {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(64px, 8vw, 112px);
  border-top: 2px solid var(--navy);
  border-left: 1px solid var(--line);
}

.category-detail {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: clamp(28px, 3.2vw, 46px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.category-detail:target {
  outline: 3px solid var(--cyan);
  outline-offset: -3px;
  background: color-mix(in srgb, var(--paper) 76%, var(--white));
}

.category-detail__heading {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.category-detail__heading > span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--cyan-deep);
  color: var(--cyan-deep);
  font-size: 0.64rem;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.category-detail h3 {
  font-size: clamp(1.45rem, 2vw, 2.2rem);
  line-height: 1.08;
}

.category-detail > p {
  max-width: 66ch;
  margin: 24px 0 34px 62px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.75;
}

.category-detail__series {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-left: 62px;
}

.category-detail__series a {
  display: grid;
  min-width: 112px;
  min-height: 54px;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  padding: 10px 13px;
  border: 1px solid var(--line-strong);
  color: var(--navy);
  text-decoration: none;
}

.category-detail__series a:hover,
.category-detail__series a:focus-visible {
  color: var(--white);
  border-color: var(--navy);
  background: var(--navy);
}

.category-detail__series b {
  color: var(--cyan-deep);
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
}

.category-detail__series a:hover b,
.category-detail__series a:focus-visible b {
  color: #8bd9e9;
}

.category-detail__series span {
  max-width: 20ch;
  font-size: 0.68rem;
  line-height: 1.35;
}

.category-detail__action {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: auto 0 0 62px;
  padding: 10px 0;
  border-top: 1px solid var(--navy);
  color: var(--cyan-deep);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.category-detail__action:hover,
.category-detail__action:focus-visible {
  color: var(--navy);
}

.medical-proof {
  background: var(--paper);
}

.medical-proof__grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(320px, 5fr);
  gap: clamp(48px, 7vw, 104px);
  align-items: center;
}

.medical-proof figure {
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.medical-proof figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.medical-proof__grid > div > p:not(.eyebrow) {
  margin-top: 26px;
  color: var(--muted);
}

.check-list {
  margin-top: 28px;
  border-top: 1px solid var(--line-strong);
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 13px 8px 13px 28px;
  border-bottom: 1px solid var(--line-strong);
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 600;
}

.check-list li::before {
  position: absolute;
  top: 20px;
  left: 4px;
  width: 10px;
  height: 2px;
  background: var(--cyan);
  content: "";
}

.medical-proof .button {
  margin-top: 32px;
}

/* Product detail */
.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(340px, 5fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  padding-block: clamp(48px, 5.5vw, 76px);
}

.product-hero__visual {
  position: relative;
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  padding: clamp(18px, 3vw, 48px);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
}

.product-hero__visual img {
  padding: 0;
}

.product-hero__visual figcaption {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  padding: 12px 16px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  color: var(--muted);
  background: rgb(255 255 255 / 94%);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-hero__copy h1 {
  font-size: clamp(2.7rem, 4.2vw, 4.05rem);
}

.product-hero__copy > p:not(.eyebrow, .scope-note) {
  margin-top: 28px;
  color: var(--muted);
  font-size: 1.04rem;
}

.product-hero__copy .button {
  margin-top: 36px;
}

.scope-note {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
}

.scope-note strong {
  color: var(--navy);
}

.product-information {
  background: var(--paper);
}

.two-column-heading {
  display: grid;
  grid-template-columns: minmax(280px, 4fr) minmax(0, 7fr);
  gap: clamp(56px, 9vw, 136px);
  align-items: start;
}

.two-column-heading h2 {
  font-size: clamp(2.15rem, 3.8vw, 3.7rem);
}

.two-column-heading > div:first-child > p:not(.eyebrow) {
  margin-top: 24px;
  color: var(--muted);
}

.spec-list {
  border-top: 2px solid var(--navy);
}

.spec-list > div {
  display: grid;
  grid-template-columns: minmax(150px, 0.8fr) minmax(0, 1.6fr);
  gap: 24px;
  padding-block: 17px;
  border-bottom: 1px solid var(--line-strong);
}

.spec-list dt {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.spec-list dd {
  color: var(--navy);
  font-size: 0.92rem;
  line-height: 1.55;
}

.model-section {
  background: var(--white);
}

.specification-block {
  min-width: 0;
}

.table-scroll-note {
  display: none;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.72rem;
}

.specification-block .table-wrap {
  overscroll-behavior-inline: contain;
  scrollbar-color: var(--cyan-deep) var(--paper);
  scrollbar-gutter: stable;
}

.specification-block .table-wrap:focus-visible {
  outline-offset: 4px;
}

.specification-table {
  min-width: var(--spec-min-width, 620px);
}

.specification-table thead th:first-child,
.specification-table tbody td:first-child {
  position: sticky;
  left: 0;
  z-index: 1;
}

.specification-table thead th:first-child {
  z-index: 2;
}

.specification-table tbody tr:nth-child(odd) td:first-child {
  background: var(--white);
}

.specification-table tbody tr:nth-child(even) td:first-child {
  background: var(--paper);
}

.custom-project {
  background: var(--cyan-pale);
}

.custom-project__grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(320px, 5fr);
  gap: clamp(48px, 7vw, 104px);
  align-items: center;
}

.custom-project figure {
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.custom-project figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.custom-project__grid > div > p:not(.eyebrow) {
  margin-top: 26px;
  color: var(--muted);
}

.custom-project .button {
  margin-top: 32px;
}

/* About */
.e-split-hero {
  display: grid;
  width: min(100%, 1920px);
  min-height: clamp(500px, 41vw, 620px);
  margin-inline: auto;
  grid-template-columns: minmax(0, .44fr) minmax(0, .56fr);
  border-top: 2px solid var(--navy);
  border-bottom: 1px solid var(--line);
}

.e-split-hero__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-block: clamp(48px, 6vw, 84px);
  padding-right: clamp(32px, 4vw, 68px);
  padding-left: max(var(--gutter), calc((100vw - var(--shell)) / 2));
  background: var(--white);
}

.e-split-hero__copy h1 {
  max-width: 10.5ch;
  font-size: clamp(2.9rem, 4.45vw, 4.45rem);
}

.e-split-hero__copy > p:not(.eyebrow) {
  max-width: 52ch;
  margin-top: 24px;
  color: var(--muted);
  font-size: .96rem;
  line-height: 1.68;
}

.e-split-hero__media {
  min-width: 0;
  overflow: hidden;
  background: var(--paper);
}

.e-split-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.page-hero {
  padding-top: 0;
}

.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(280px, 4fr);
  gap: clamp(48px, 9vw, 136px);
  align-items: end;
  padding-block: clamp(52px, 6vw, 80px);
}

.page-hero__grid > p {
  max-width: 54ch;
  color: var(--muted);
  font-size: 1.04rem;
}

.page-hero__image {
  width: min(1440px, 100%);
  aspect-ratio: 1920 / 760;
  margin-inline: auto;
  overflow: hidden;
}

.page-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.metric-section {
  padding-block: 24px;
}

.metric-strip--light {
  background: var(--white);
}

.story-section {
  background: var(--paper);
}

.story-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(56px, 9vw, 136px);
  align-items: start;
}

.prose {
  color: var(--muted);
  font-size: 1.04rem;
}

.prose p + p {
  margin-top: 22px;
}

.workshop-gallery {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: repeat(2, minmax(240px, 1fr));
  gap: 16px;
  padding-block: var(--section-space);
}

.workshop-gallery figure {
  position: relative;
  min-height: 0;
  overflow: hidden;
}

.workshop-gallery__large {
  grid-row: 1 / span 2;
}

.workshop-gallery img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.workshop-gallery figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 12px 16px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  color: var(--navy);
  background: rgb(255 255 255 / 94%);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process-section {
  background: var(--white);
}

.process-list {
  border-top: 2px solid var(--navy);
  list-style: none;
}

.process-list li {
  display: grid;
  min-height: 124px;
  grid-template-columns: 64px minmax(230px, 0.8fr) minmax(0, 1.3fr);
  gap: 28px;
  align-items: center;
  padding-block: 24px;
  border-bottom: 1px solid var(--line);
}

.process-list li > span {
  color: var(--cyan-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.process-list li > p {
  max-width: 64ch;
  color: var(--muted);
}

.quality-detail {
  color: var(--white);
  background: var(--navy);
}

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

.quality-detail__grid article {
  display: grid;
  grid-template-columns: 1fr minmax(180px, 0.7fr);
  align-content: start;
  gap: 16px 28px;
  padding: clamp(24px, 3vw, 40px);
  border: 1px solid rgb(255 255 255 / 28%);
}

.quality-detail__grid article > span {
  color: #8bd9e9;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.quality-detail__grid article h3,
.quality-detail__grid article p {
  grid-column: 1;
}

.quality-detail__grid article h3 {
  color: var(--white);
}

.quality-detail__grid article p {
  color: #c8d7dc;
  font-size: 0.9rem;
}

.quality-detail__grid article img {
  width: 100%;
  max-height: 360px;
  grid-column: 2;
  grid-row: 1 / span 4;
  padding: 12px;
  object-fit: contain;
  background: var(--white);
}

.quality-detail .section-action {
  margin-top: 48px;
}

/* News */
.news-list {
  display: grid;
  gap: 0;
  padding-block: 24px var(--section-space);
}

.news-list .article-card {
  display: grid;
  grid-template-columns: minmax(280px, 5fr) minmax(0, 7fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
  padding-block: clamp(40px, 5vw, 72px);
  border-top: 0;
  border-bottom: 1px solid var(--line);
}

.news-list .article-card__image {
  border: 1px solid var(--line);
}

.news-list .article-card__body {
  max-width: 66ch;
  padding: 0;
}

.news-list .article-card :is(h2, h3) {
  font-size: clamp(1.6rem, 2.8vw, 2.7rem);
}
